mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 10:36:24 +08:00
feat: pugv (#927)
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -2,16 +2,26 @@ import 'package:PiliPlus/grpc/bilibili/main/community/reply/v1.pb.dart'
|
||||
show MainListReply, ReplyInfo;
|
||||
import 'package:PiliPlus/grpc/reply.dart';
|
||||
import 'package:PiliPlus/http/loading_state.dart';
|
||||
import 'package:PiliPlus/models/common/video/video_type.dart';
|
||||
import 'package:PiliPlus/pages/common/reply_controller.dart';
|
||||
import 'package:PiliPlus/pages/video/controller.dart';
|
||||
import 'package:PiliPlus/utils/id_utils.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get_state_manager/src/rx_flutter/rx_ticket_provider_mixin.dart';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
class VideoReplyController extends ReplyController<MainListReply>
|
||||
with GetSingleTickerProviderStateMixin {
|
||||
VideoReplyController({required this.aid});
|
||||
// 视频aid 请求时使用的oid
|
||||
VideoReplyController({
|
||||
required this.aid,
|
||||
required this.videoType,
|
||||
required this.heroTag,
|
||||
});
|
||||
int aid;
|
||||
final VideoType videoType;
|
||||
late final isPugv = videoType == VideoType.pugv;
|
||||
|
||||
final String heroTag;
|
||||
late final videoCtr = Get.find<VideoDetailController>(tag: heroTag);
|
||||
|
||||
@override
|
||||
dynamic get sourceId => IdUtils.av2bv(aid);
|
||||
@@ -52,9 +62,18 @@ class VideoReplyController extends ReplyController<MainListReply>
|
||||
return response.replies;
|
||||
}
|
||||
|
||||
int get _epId {
|
||||
return switch (videoCtr.epId) {
|
||||
int e => e,
|
||||
String e => int.parse(e),
|
||||
_ => throw UnsupportedError(''),
|
||||
};
|
||||
}
|
||||
|
||||
@override
|
||||
Future<LoadingState<MainListReply>> customGetData() => ReplyGrpc.mainList(
|
||||
oid: aid,
|
||||
oid: isPugv ? _epId : aid,
|
||||
type: videoType.replyType,
|
||||
mode: mode.value,
|
||||
cursorNext: cursorNext,
|
||||
offset: paginationReply?.nextOffset,
|
||||
|
||||
Reference in New Issue
Block a user