Merge branch 'main' into fix
This commit is contained in:
@ -499,4 +499,8 @@ class Api {
|
|||||||
|
|
||||||
/// 发送私信
|
/// 发送私信
|
||||||
static const String sendMsg = '${HttpString.tUrl}/web_im/v1/web_im/send_msg';
|
static const String sendMsg = '${HttpString.tUrl}/web_im/v1/web_im/send_msg';
|
||||||
|
|
||||||
|
/// 排行榜
|
||||||
|
static const String getRankApi = "/x/web-interface/ranking/v2";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -475,4 +475,27 @@ class VideoHttp {
|
|||||||
return {'status': false, 'data': []};
|
return {'status': false, 'data': []};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 视频排行
|
||||||
|
static Future getRankVideoList(int rid) async {
|
||||||
|
try {
|
||||||
|
var rankApi = "${Api.getRankApi}?rid=$rid&type=all";
|
||||||
|
var res = await Request().get(rankApi);
|
||||||
|
if (res.data['code'] == 0) {
|
||||||
|
List<HotVideoItemModel> list = [];
|
||||||
|
List<int> blackMidsList =
|
||||||
|
setting.get(SettingBoxKey.blackMidsList, defaultValue: [-1]);
|
||||||
|
for (var i in res.data['data']['list']) {
|
||||||
|
if (!blackMidsList.contains(i['owner']['mid'])) {
|
||||||
|
list.add(HotVideoItemModel.fromJson(i));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return {'status': true, 'data': list};
|
||||||
|
} else {
|
||||||
|
return {'status': false, 'data': [], 'msg': res.data['message']};
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
return {'status': false, 'data': [], 'msg': err};
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,6 +16,19 @@ List defaultNavigationBars = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
'id': 1,
|
'id': 1,
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.trending_up,
|
||||||
|
size: 21,
|
||||||
|
),
|
||||||
|
'selectIcon': const Icon(
|
||||||
|
Icons.trending_up_outlined,
|
||||||
|
size: 21,
|
||||||
|
),
|
||||||
|
'label': "排行榜",
|
||||||
|
'count': 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'id': 2,
|
||||||
'icon': const Icon(
|
'icon': const Icon(
|
||||||
Icons.motion_photos_on_outlined,
|
Icons.motion_photos_on_outlined,
|
||||||
size: 21,
|
size: 21,
|
||||||
@ -28,7 +41,7 @@ List defaultNavigationBars = [
|
|||||||
'count': 0,
|
'count': 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'id': 2,
|
'id': 3,
|
||||||
'icon': const Icon(
|
'icon': const Icon(
|
||||||
Icons.video_collection_outlined,
|
Icons.video_collection_outlined,
|
||||||
size: 20,
|
size: 20,
|
||||||
|
240
lib/models/common/rank_type.dart
Normal file
240
lib/models/common/rank_type.dart
Normal file
@ -0,0 +1,240 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:get/get.dart';
|
||||||
|
import 'package:pilipala/pages/rank/zone/index.dart';
|
||||||
|
|
||||||
|
enum RandType {
|
||||||
|
all,
|
||||||
|
creation,
|
||||||
|
animation,
|
||||||
|
music,
|
||||||
|
dance,
|
||||||
|
game,
|
||||||
|
knowledge,
|
||||||
|
technology,
|
||||||
|
sport,
|
||||||
|
car,
|
||||||
|
life,
|
||||||
|
food,
|
||||||
|
animal,
|
||||||
|
madness,
|
||||||
|
fashion,
|
||||||
|
entertainment,
|
||||||
|
film,
|
||||||
|
origin,
|
||||||
|
rookie
|
||||||
|
}
|
||||||
|
|
||||||
|
extension RankTypeDesc on RandType {
|
||||||
|
String get description => [
|
||||||
|
'全站',
|
||||||
|
'国创相关',
|
||||||
|
'动画',
|
||||||
|
'音乐',
|
||||||
|
'舞蹈',
|
||||||
|
'游戏',
|
||||||
|
'知识',
|
||||||
|
'科技',
|
||||||
|
'运动',
|
||||||
|
'汽车',
|
||||||
|
'生活',
|
||||||
|
'美食',
|
||||||
|
'动物圈',
|
||||||
|
'鬼畜',
|
||||||
|
'时尚',
|
||||||
|
'娱乐',
|
||||||
|
'影视'
|
||||||
|
][index];
|
||||||
|
|
||||||
|
String get id => [
|
||||||
|
'all',
|
||||||
|
'creation',
|
||||||
|
'animation',
|
||||||
|
'music',
|
||||||
|
'dance',
|
||||||
|
'game',
|
||||||
|
'knowledge',
|
||||||
|
'technology',
|
||||||
|
'sport',
|
||||||
|
'car',
|
||||||
|
'life',
|
||||||
|
'food',
|
||||||
|
'animal',
|
||||||
|
'madness',
|
||||||
|
'fashion',
|
||||||
|
'entertainment',
|
||||||
|
'film'
|
||||||
|
][index];
|
||||||
|
}
|
||||||
|
|
||||||
|
List tabsConfig = [
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '全站',
|
||||||
|
'type': RandType.all,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 0),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '国创相关',
|
||||||
|
'type': RandType.creation,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 168),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '动画',
|
||||||
|
'type': RandType.animation,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 1),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '音乐',
|
||||||
|
'type': RandType.music,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 3),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '舞蹈',
|
||||||
|
'type': RandType.dance,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 129),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '游戏',
|
||||||
|
'type': RandType.game,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 4),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '知识',
|
||||||
|
'type': RandType.knowledge,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 36),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '科技',
|
||||||
|
'type': RandType.technology,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 188),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '运动',
|
||||||
|
'type': RandType.sport,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 234),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '汽车',
|
||||||
|
'type': RandType.car,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 223),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '生活',
|
||||||
|
'type': RandType.life,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 160),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '美食',
|
||||||
|
'type': RandType.food,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 211),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '动物圈',
|
||||||
|
'type': RandType.animal,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 217),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '鬼畜',
|
||||||
|
'type': RandType.madness,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 119),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '时尚',
|
||||||
|
'type': RandType.fashion,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 155),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '娱乐',
|
||||||
|
'type': RandType.entertainment,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 5),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'icon': const Icon(
|
||||||
|
Icons.live_tv_outlined,
|
||||||
|
size: 15,
|
||||||
|
),
|
||||||
|
'label': '影视',
|
||||||
|
'type': RandType.film,
|
||||||
|
'ctr': Get.put<ZoneController>,
|
||||||
|
'page': const ZonePage(rid: 181),
|
||||||
|
}
|
||||||
|
];
|
@ -29,7 +29,6 @@ class BottomControl extends StatefulWidget implements PreferredSizeWidget {
|
|||||||
|
|
||||||
class _BottomControlState extends State<BottomControl> {
|
class _BottomControlState extends State<BottomControl> {
|
||||||
late PlayUrlModel videoInfo;
|
late PlayUrlModel videoInfo;
|
||||||
List<PlaySpeed> playSpeed = PlaySpeed.values;
|
|
||||||
TextStyle subTitleStyle = const TextStyle(fontSize: 12);
|
TextStyle subTitleStyle = const TextStyle(fontSize: 12);
|
||||||
TextStyle titleStyle = const TextStyle(fontSize: 14);
|
TextStyle titleStyle = const TextStyle(fontSize: 14);
|
||||||
Size get preferredSize => const Size(double.infinity, kToolbarHeight);
|
Size get preferredSize => const Size(double.infinity, kToolbarHeight);
|
||||||
|
@ -9,6 +9,7 @@ import 'package:pilipala/http/common.dart';
|
|||||||
import 'package:pilipala/pages/dynamics/index.dart';
|
import 'package:pilipala/pages/dynamics/index.dart';
|
||||||
import 'package:pilipala/pages/home/view.dart';
|
import 'package:pilipala/pages/home/view.dart';
|
||||||
import 'package:pilipala/pages/media/index.dart';
|
import 'package:pilipala/pages/media/index.dart';
|
||||||
|
import 'package:pilipala/pages/rank/index.dart';
|
||||||
import 'package:pilipala/utils/storage.dart';
|
import 'package:pilipala/utils/storage.dart';
|
||||||
import 'package:pilipala/utils/utils.dart';
|
import 'package:pilipala/utils/utils.dart';
|
||||||
import '../../models/common/dynamic_badge_mode.dart';
|
import '../../models/common/dynamic_badge_mode.dart';
|
||||||
@ -17,6 +18,7 @@ import '../../models/common/nav_bar_config.dart';
|
|||||||
class MainController extends GetxController {
|
class MainController extends GetxController {
|
||||||
List<Widget> pages = <Widget>[
|
List<Widget> pages = <Widget>[
|
||||||
const HomePage(),
|
const HomePage(),
|
||||||
|
const RankPage(),
|
||||||
const DynamicsPage(),
|
const DynamicsPage(),
|
||||||
const MediaPage(),
|
const MediaPage(),
|
||||||
];
|
];
|
||||||
|
@ -7,6 +7,7 @@ import 'package:pilipala/models/common/dynamic_badge_mode.dart';
|
|||||||
import 'package:pilipala/pages/dynamics/index.dart';
|
import 'package:pilipala/pages/dynamics/index.dart';
|
||||||
import 'package:pilipala/pages/home/index.dart';
|
import 'package:pilipala/pages/home/index.dart';
|
||||||
import 'package:pilipala/pages/media/index.dart';
|
import 'package:pilipala/pages/media/index.dart';
|
||||||
|
import 'package:pilipala/pages/rank/index.dart';
|
||||||
import 'package:pilipala/utils/event_bus.dart';
|
import 'package:pilipala/utils/event_bus.dart';
|
||||||
import 'package:pilipala/utils/feed_back.dart';
|
import 'package:pilipala/utils/feed_back.dart';
|
||||||
import 'package:pilipala/utils/storage.dart';
|
import 'package:pilipala/utils/storage.dart';
|
||||||
@ -22,6 +23,7 @@ class MainApp extends StatefulWidget {
|
|||||||
class _MainAppState extends State<MainApp> with SingleTickerProviderStateMixin {
|
class _MainAppState extends State<MainApp> with SingleTickerProviderStateMixin {
|
||||||
final MainController _mainController = Get.put(MainController());
|
final MainController _mainController = Get.put(MainController());
|
||||||
final HomeController _homeController = Get.put(HomeController());
|
final HomeController _homeController = Get.put(HomeController());
|
||||||
|
final RankController _rankController = Get.put(RankController());
|
||||||
final DynamicsController _dynamicController = Get.put(DynamicsController());
|
final DynamicsController _dynamicController = Get.put(DynamicsController());
|
||||||
final MediaController _mediaController = Get.put(MediaController());
|
final MediaController _mediaController = Get.put(MediaController());
|
||||||
|
|
||||||
@ -57,6 +59,21 @@ class _MainAppState extends State<MainApp> with SingleTickerProviderStateMixin {
|
|||||||
_homeController.flag = false;
|
_homeController.flag = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (currentPage is RankPage) {
|
||||||
|
if (_rankController.flag) {
|
||||||
|
// 单击返回顶部 双击并刷新
|
||||||
|
if (DateTime.now().millisecondsSinceEpoch - _lastSelectTime! < 500) {
|
||||||
|
_rankController.onRefresh();
|
||||||
|
} else {
|
||||||
|
_rankController.animateToTop();
|
||||||
|
}
|
||||||
|
_lastSelectTime = DateTime.now().millisecondsSinceEpoch;
|
||||||
|
}
|
||||||
|
_rankController.flag = true;
|
||||||
|
} else {
|
||||||
|
_rankController.flag = false;
|
||||||
|
}
|
||||||
|
|
||||||
if (currentPage is DynamicsPage) {
|
if (currentPage is DynamicsPage) {
|
||||||
if (_dynamicController.flag) {
|
if (_dynamicController.flag) {
|
||||||
// 单击返回顶部 双击并刷新
|
// 单击返回顶部 双击并刷新
|
||||||
|
70
lib/pages/rank/controller.dart
Normal file
70
lib/pages/rank/controller.dart
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
import 'dart:async';
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:get/get.dart';
|
||||||
|
import 'package:hive/hive.dart';
|
||||||
|
import 'package:pilipala/models/common/rank_type.dart';
|
||||||
|
import 'package:pilipala/utils/storage.dart';
|
||||||
|
|
||||||
|
class RankController extends GetxController with GetTickerProviderStateMixin {
|
||||||
|
bool flag = false;
|
||||||
|
late RxList tabs = [].obs;
|
||||||
|
RxInt initialIndex = 1.obs;
|
||||||
|
late TabController tabController;
|
||||||
|
late List tabsCtrList;
|
||||||
|
late List<Widget> tabsPageList;
|
||||||
|
Box setting = GStrorage.setting;
|
||||||
|
late final StreamController<bool> searchBarStream =
|
||||||
|
StreamController<bool>.broadcast();
|
||||||
|
late bool enableGradientBg;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void onInit() {
|
||||||
|
super.onInit();
|
||||||
|
enableGradientBg =
|
||||||
|
setting.get(SettingBoxKey.enableGradientBg, defaultValue: true);
|
||||||
|
// 进行tabs配置
|
||||||
|
setTabConfig();
|
||||||
|
}
|
||||||
|
|
||||||
|
void onRefresh() {
|
||||||
|
int index = tabController.index;
|
||||||
|
var ctr = tabsCtrList[index];
|
||||||
|
ctr().onRefresh();
|
||||||
|
}
|
||||||
|
|
||||||
|
void animateToTop() {
|
||||||
|
int index = tabController.index;
|
||||||
|
var ctr = tabsCtrList[index];
|
||||||
|
ctr().animateToTop();
|
||||||
|
}
|
||||||
|
|
||||||
|
void setTabConfig() async {
|
||||||
|
tabs.value = tabsConfig;
|
||||||
|
initialIndex.value = 0;
|
||||||
|
tabsCtrList = tabs.map((e) => e['ctr']).toList();
|
||||||
|
tabsPageList = tabs.map<Widget>((e) => e['page']).toList();
|
||||||
|
|
||||||
|
tabController = TabController(
|
||||||
|
initialIndex: initialIndex.value,
|
||||||
|
length: tabs.length,
|
||||||
|
vsync: this,
|
||||||
|
);
|
||||||
|
// 监听 tabController 切换
|
||||||
|
if (enableGradientBg) {
|
||||||
|
tabController.animation!.addListener(() {
|
||||||
|
if (tabController.indexIsChanging) {
|
||||||
|
if (initialIndex.value != tabController.index) {
|
||||||
|
initialIndex.value = tabController.index;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
final int temp = tabController.animation!.value.round();
|
||||||
|
if (initialIndex.value != temp) {
|
||||||
|
initialIndex.value = temp;
|
||||||
|
tabController.index = initialIndex.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
4
lib/pages/rank/index.dart
Normal file
4
lib/pages/rank/index.dart
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
library rank;
|
||||||
|
|
||||||
|
export './controller.dart';
|
||||||
|
export './view.dart';
|
149
lib/pages/rank/view.dart
Normal file
149
lib/pages/rank/view.dart
Normal file
@ -0,0 +1,149 @@
|
|||||||
|
import 'dart:async';
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/services.dart';
|
||||||
|
import 'package:get/get.dart';
|
||||||
|
import 'package:pilipala/utils/feed_back.dart';
|
||||||
|
import './controller.dart';
|
||||||
|
|
||||||
|
class RankPage extends StatefulWidget {
|
||||||
|
const RankPage({Key? key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<RankPage> createState() => _RankPageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _RankPageState extends State<RankPage>
|
||||||
|
with AutomaticKeepAliveClientMixin, TickerProviderStateMixin {
|
||||||
|
final RankController _rankController = Get.put(RankController());
|
||||||
|
List videoList = [];
|
||||||
|
late Stream<bool> stream;
|
||||||
|
|
||||||
|
@override
|
||||||
|
bool get wantKeepAlive => true;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
stream = _rankController.searchBarStream.stream;
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
super.build(context);
|
||||||
|
Brightness currentBrightness = MediaQuery.of(context).platformBrightness;
|
||||||
|
// 设置状态栏图标的亮度
|
||||||
|
if (_rankController.enableGradientBg) {
|
||||||
|
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
|
||||||
|
statusBarIconBrightness: currentBrightness == Brightness.light
|
||||||
|
? Brightness.dark
|
||||||
|
: Brightness.light,
|
||||||
|
));
|
||||||
|
}
|
||||||
|
return Scaffold(
|
||||||
|
extendBody: true,
|
||||||
|
extendBodyBehindAppBar: false,
|
||||||
|
appBar: _rankController.enableGradientBg
|
||||||
|
? null
|
||||||
|
: AppBar(toolbarHeight: 0, elevation: 0),
|
||||||
|
body: Stack(
|
||||||
|
children: [
|
||||||
|
// gradient background
|
||||||
|
if (_rankController.enableGradientBg) ...[
|
||||||
|
Align(
|
||||||
|
alignment: Alignment.topLeft,
|
||||||
|
child: Opacity(
|
||||||
|
opacity: 0.6,
|
||||||
|
child: Container(
|
||||||
|
width: MediaQuery.of(context).size.width,
|
||||||
|
height: MediaQuery.of(context).size.height,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
gradient: LinearGradient(
|
||||||
|
colors: [
|
||||||
|
Theme.of(context)
|
||||||
|
.colorScheme
|
||||||
|
.primary
|
||||||
|
.withOpacity(0.9),
|
||||||
|
Theme.of(context)
|
||||||
|
.colorScheme
|
||||||
|
.primary
|
||||||
|
.withOpacity(0.5),
|
||||||
|
Theme.of(context).colorScheme.surface
|
||||||
|
],
|
||||||
|
begin: Alignment.topLeft,
|
||||||
|
end: Alignment.bottomRight,
|
||||||
|
stops: const [0, 0.0034, 0.34]),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
Column(
|
||||||
|
children: [
|
||||||
|
const CustomAppBar(),
|
||||||
|
if (_rankController.tabs.length > 1) ...[
|
||||||
|
const SizedBox(height: 4),
|
||||||
|
SizedBox(
|
||||||
|
width: double.infinity,
|
||||||
|
height: 42,
|
||||||
|
child: Align(
|
||||||
|
alignment: Alignment.center,
|
||||||
|
child: TabBar(
|
||||||
|
controller: _rankController.tabController,
|
||||||
|
tabs: [
|
||||||
|
for (var i in _rankController.tabs)
|
||||||
|
Tab(text: i['label'])
|
||||||
|
],
|
||||||
|
isScrollable: true,
|
||||||
|
dividerColor: Colors.transparent,
|
||||||
|
enableFeedback: true,
|
||||||
|
splashBorderRadius: BorderRadius.circular(10),
|
||||||
|
tabAlignment: TabAlignment.center,
|
||||||
|
onTap: (value) {
|
||||||
|
feedBack();
|
||||||
|
if (_rankController.initialIndex.value == value) {
|
||||||
|
_rankController.tabsCtrList[value]().animateToTop();
|
||||||
|
}
|
||||||
|
_rankController.initialIndex.value = value;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
] else ...[
|
||||||
|
const SizedBox(height: 6),
|
||||||
|
],
|
||||||
|
Expanded(
|
||||||
|
child: TabBarView(
|
||||||
|
controller: _rankController.tabController,
|
||||||
|
children: _rankController.tabsPageList,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class CustomAppBar extends StatelessWidget implements PreferredSizeWidget {
|
||||||
|
final double height;
|
||||||
|
|
||||||
|
const CustomAppBar({
|
||||||
|
super.key,
|
||||||
|
this.height = kToolbarHeight,
|
||||||
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Size get preferredSize => Size.fromHeight(height);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final double top = MediaQuery.of(context).padding.top;
|
||||||
|
return Container(
|
||||||
|
width: MediaQuery.of(context).size.width,
|
||||||
|
height: top,
|
||||||
|
color: Colors.transparent,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
53
lib/pages/rank/zone/controller.dart
Normal file
53
lib/pages/rank/zone/controller.dart
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import 'package:get/get.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:pilipala/http/video.dart';
|
||||||
|
import 'package:pilipala/models/model_hot_video_item.dart';
|
||||||
|
|
||||||
|
class ZoneController extends GetxController {
|
||||||
|
final ScrollController scrollController = ScrollController();
|
||||||
|
RxList<HotVideoItemModel> videoList = <HotVideoItemModel>[].obs;
|
||||||
|
bool isLoadingMore = false;
|
||||||
|
bool flag = false;
|
||||||
|
OverlayEntry? popupDialog;
|
||||||
|
int zoneID = 0;
|
||||||
|
|
||||||
|
// 获取推荐
|
||||||
|
Future queryRankFeed(type, rid) async {
|
||||||
|
zoneID = rid;
|
||||||
|
var res = await VideoHttp.getRankVideoList(zoneID);
|
||||||
|
if (res['status']) {
|
||||||
|
if (type == 'init') {
|
||||||
|
videoList.value = res['data'];
|
||||||
|
} else if (type == 'onRefresh') {
|
||||||
|
videoList.clear();
|
||||||
|
videoList.addAll(res['data']);
|
||||||
|
} else if (type == 'onLoad') {
|
||||||
|
videoList.clear();
|
||||||
|
videoList.addAll(res['data']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
isLoadingMore = false;
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 下拉刷新
|
||||||
|
Future onRefresh() async {
|
||||||
|
queryRankFeed('onRefresh', zoneID);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 上拉加载
|
||||||
|
Future onLoad() async {
|
||||||
|
queryRankFeed('onLoad', zoneID);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 返回顶部并刷新
|
||||||
|
void animateToTop() async {
|
||||||
|
if (scrollController.offset >=
|
||||||
|
MediaQuery.of(Get.context!).size.height * 5) {
|
||||||
|
scrollController.jumpTo(0);
|
||||||
|
} else {
|
||||||
|
await scrollController.animateTo(0,
|
||||||
|
duration: const Duration(milliseconds: 500), curve: Curves.easeInOut);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
4
lib/pages/rank/zone/index.dart
Normal file
4
lib/pages/rank/zone/index.dart
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
library rank.zone;
|
||||||
|
|
||||||
|
export './controller.dart';
|
||||||
|
export './view.dart';
|
148
lib/pages/rank/zone/view.dart
Normal file
148
lib/pages/rank/zone/view.dart
Normal file
@ -0,0 +1,148 @@
|
|||||||
|
import 'dart:async';
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/rendering.dart';
|
||||||
|
import 'package:get/get.dart';
|
||||||
|
import 'package:pilipala/common/constants.dart';
|
||||||
|
import 'package:pilipala/common/widgets/animated_dialog.dart';
|
||||||
|
import 'package:pilipala/common/widgets/overlay_pop.dart';
|
||||||
|
import 'package:pilipala/common/skeleton/video_card_h.dart';
|
||||||
|
import 'package:pilipala/common/widgets/http_error.dart';
|
||||||
|
import 'package:pilipala/common/widgets/video_card_h.dart';
|
||||||
|
import 'package:pilipala/pages/home/index.dart';
|
||||||
|
import 'package:pilipala/pages/main/index.dart';
|
||||||
|
import 'package:pilipala/pages/rank/zone/index.dart';
|
||||||
|
|
||||||
|
class ZonePage extends StatefulWidget {
|
||||||
|
const ZonePage({Key? key, required this.rid}) : super(key: key);
|
||||||
|
|
||||||
|
final int rid;
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<ZonePage> createState() => _ZonePageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _ZonePageState extends State<ZonePage> {
|
||||||
|
final ZoneController _zoneController = Get.put(ZoneController());
|
||||||
|
List videoList = [];
|
||||||
|
Future? _futureBuilderFuture;
|
||||||
|
late ScrollController scrollController;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
_futureBuilderFuture = _zoneController.queryRankFeed('init', widget.rid);
|
||||||
|
scrollController = _zoneController.scrollController;
|
||||||
|
StreamController<bool> mainStream =
|
||||||
|
Get.find<MainController>().bottomBarStream;
|
||||||
|
StreamController<bool> searchBarStream =
|
||||||
|
Get.find<HomeController>().searchBarStream;
|
||||||
|
scrollController.addListener(
|
||||||
|
() {
|
||||||
|
if (scrollController.position.pixels >=
|
||||||
|
scrollController.position.maxScrollExtent - 200) {
|
||||||
|
if (!_zoneController.isLoadingMore) {
|
||||||
|
_zoneController.isLoadingMore = true;
|
||||||
|
_zoneController.onLoad();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final ScrollDirection direction =
|
||||||
|
scrollController.position.userScrollDirection;
|
||||||
|
if (direction == ScrollDirection.forward) {
|
||||||
|
mainStream.add(true);
|
||||||
|
searchBarStream.add(true);
|
||||||
|
} else if (direction == ScrollDirection.reverse) {
|
||||||
|
mainStream.add(false);
|
||||||
|
searchBarStream.add(false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
scrollController.removeListener(() {});
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return RefreshIndicator(
|
||||||
|
onRefresh: () async {
|
||||||
|
return await _zoneController.onRefresh();
|
||||||
|
},
|
||||||
|
child: CustomScrollView(
|
||||||
|
controller: _zoneController.scrollController,
|
||||||
|
slivers: [
|
||||||
|
SliverPadding(
|
||||||
|
// 单列布局 EdgeInsets.zero
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.fromLTRB(0, StyleString.safeSpace - 5, 0, 0),
|
||||||
|
sliver: FutureBuilder(
|
||||||
|
future: _futureBuilderFuture,
|
||||||
|
builder: (context, snapshot) {
|
||||||
|
if (snapshot.connectionState == ConnectionState.done) {
|
||||||
|
Map data = snapshot.data as Map;
|
||||||
|
if (data['status']) {
|
||||||
|
return Obx(
|
||||||
|
() => SliverList(
|
||||||
|
delegate: SliverChildBuilderDelegate((context, index) {
|
||||||
|
return VideoCardH(
|
||||||
|
videoItem: _zoneController.videoList[index],
|
||||||
|
showPubdate: true,
|
||||||
|
longPress: () {
|
||||||
|
_zoneController.popupDialog = _createPopupDialog(
|
||||||
|
_zoneController.videoList[index]);
|
||||||
|
Overlay.of(context)
|
||||||
|
.insert(_zoneController.popupDialog!);
|
||||||
|
},
|
||||||
|
longPressEnd: () {
|
||||||
|
_zoneController.popupDialog?.remove();
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}, childCount: _zoneController.videoList.length),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
return HttpError(
|
||||||
|
errMsg: data['msg'],
|
||||||
|
fn: () {
|
||||||
|
setState(() {
|
||||||
|
_futureBuilderFuture =
|
||||||
|
_zoneController.queryRankFeed('init', widget.rid);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// 骨架屏
|
||||||
|
return SliverList(
|
||||||
|
delegate: SliverChildBuilderDelegate((context, index) {
|
||||||
|
return const VideoCardHSkeleton();
|
||||||
|
}, childCount: 10),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SliverToBoxAdapter(
|
||||||
|
child: SizedBox(
|
||||||
|
height: MediaQuery.of(context).padding.bottom + 10,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
OverlayEntry _createPopupDialog(videoItem) {
|
||||||
|
return OverlayEntry(
|
||||||
|
builder: (context) => AnimatedDialog(
|
||||||
|
closeFn: _zoneController.popupDialog?.remove,
|
||||||
|
child: OverlayPop(
|
||||||
|
videoItem: videoItem, closeFn: _zoneController.popupDialog?.remove),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -173,6 +173,12 @@ class _ExtraSettingState extends State<ExtraSetting> {
|
|||||||
setKey: SettingBoxKey.enableAi,
|
setKey: SettingBoxKey.enableAi,
|
||||||
defaultVal: true,
|
defaultVal: true,
|
||||||
),
|
),
|
||||||
|
const SetSwitchItem(
|
||||||
|
title: '相关视频推荐',
|
||||||
|
subTitle: '视频详情页推荐相关视频',
|
||||||
|
setKey: SettingBoxKey.enableRelatedVideo,
|
||||||
|
defaultVal: true,
|
||||||
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
dense: false,
|
dense: false,
|
||||||
title: Text('评论展示', style: titleStyle),
|
title: Text('评论展示', style: titleStyle),
|
||||||
|
@ -17,6 +17,7 @@ class _PlaySpeedPageState extends State<PlaySpeedPage> {
|
|||||||
Box videoStorage = GStrorage.video;
|
Box videoStorage = GStrorage.video;
|
||||||
Box settingStorage = GStrorage.setting;
|
Box settingStorage = GStrorage.setting;
|
||||||
late double playSpeedDefault;
|
late double playSpeedDefault;
|
||||||
|
late List<double> playSpeedSystem;
|
||||||
late double longPressSpeedDefault;
|
late double longPressSpeedDefault;
|
||||||
late List customSpeedsList;
|
late List customSpeedsList;
|
||||||
late bool enableAutoLongPressSpeed;
|
late bool enableAutoLongPressSpeed;
|
||||||
@ -53,6 +54,9 @@ class _PlaySpeedPageState extends State<PlaySpeedPage> {
|
|||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
|
// 系统预设倍速
|
||||||
|
playSpeedSystem =
|
||||||
|
videoStorage.get(VideoBoxKey.playSpeedSystem, defaultValue: playSpeed);
|
||||||
// 默认倍速
|
// 默认倍速
|
||||||
playSpeedDefault =
|
playSpeedDefault =
|
||||||
videoStorage.get(VideoBoxKey.playSpeedDefault, defaultValue: 1.0);
|
videoStorage.get(VideoBoxKey.playSpeedDefault, defaultValue: 1.0);
|
||||||
@ -64,6 +68,7 @@ class _PlaySpeedPageState extends State<PlaySpeedPage> {
|
|||||||
videoStorage.get(VideoBoxKey.customSpeedsList, defaultValue: []);
|
videoStorage.get(VideoBoxKey.customSpeedsList, defaultValue: []);
|
||||||
enableAutoLongPressSpeed = settingStorage
|
enableAutoLongPressSpeed = settingStorage
|
||||||
.get(SettingBoxKey.enableAutoLongPressSpeed, defaultValue: false);
|
.get(SettingBoxKey.enableAutoLongPressSpeed, defaultValue: false);
|
||||||
|
// 开启动态长按倍速时不展示
|
||||||
if (enableAutoLongPressSpeed) {
|
if (enableAutoLongPressSpeed) {
|
||||||
Map newItem = sheetMenu[1];
|
Map newItem = sheetMenu[1];
|
||||||
newItem['show'] = false;
|
newItem['show'] = false;
|
||||||
@ -123,7 +128,7 @@ class _PlaySpeedPageState extends State<PlaySpeedPage> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 设定倍速弹窗
|
// 设定倍速弹窗
|
||||||
void showBottomSheet(type, i) {
|
void showBottomSheet(String type, int i) {
|
||||||
showModalBottomSheet<void>(
|
showModalBottomSheet<void>(
|
||||||
context: context,
|
context: context,
|
||||||
isScrollControlled: true,
|
isScrollControlled: true,
|
||||||
@ -159,18 +164,11 @@ class _PlaySpeedPageState extends State<PlaySpeedPage> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
void menuAction(type, index, id) async {
|
void menuAction(type, int index, id) async {
|
||||||
double chooseSpeed = 1.0;
|
double chooseSpeed = 1.0;
|
||||||
if (type == 'system' && id == -1) {
|
|
||||||
SmartDialog.showToast('系统预设倍速不支持删除');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// 获取当前选中的倍速值
|
// 获取当前选中的倍速值
|
||||||
if (type == 'system') {
|
chooseSpeed =
|
||||||
chooseSpeed = PlaySpeed.values[index].value;
|
type == 'system' ? playSpeedSystem[index] : customSpeedsList[index];
|
||||||
} else {
|
|
||||||
chooseSpeed = customSpeedsList[index];
|
|
||||||
}
|
|
||||||
// 设置
|
// 设置
|
||||||
if (id == 1) {
|
if (id == 1) {
|
||||||
// 设置默认倍速
|
// 设置默认倍速
|
||||||
@ -182,17 +180,22 @@ class _PlaySpeedPageState extends State<PlaySpeedPage> {
|
|||||||
videoStorage.put(
|
videoStorage.put(
|
||||||
VideoBoxKey.longPressSpeedDefault, longPressSpeedDefault);
|
VideoBoxKey.longPressSpeedDefault, longPressSpeedDefault);
|
||||||
} else if (id == -1) {
|
} else if (id == -1) {
|
||||||
if (customSpeedsList[index] == playSpeedDefault) {
|
late List speedsList =
|
||||||
playSpeedDefault = 1.0;
|
type == 'system' ? playSpeedSystem : customSpeedsList;
|
||||||
videoStorage.put(VideoBoxKey.playSpeedDefault, playSpeedDefault);
|
if (speedsList[index] == playSpeedDefault) {
|
||||||
|
SmartDialog.showToast('默认倍速不可删除');
|
||||||
}
|
}
|
||||||
if (customSpeedsList[index] == longPressSpeedDefault) {
|
if (speedsList[index] == longPressSpeedDefault) {
|
||||||
longPressSpeedDefault = 2.0;
|
longPressSpeedDefault = 2.0;
|
||||||
videoStorage.put(
|
videoStorage.put(
|
||||||
VideoBoxKey.longPressSpeedDefault, longPressSpeedDefault);
|
VideoBoxKey.longPressSpeedDefault, longPressSpeedDefault);
|
||||||
}
|
}
|
||||||
customSpeedsList.removeAt(index);
|
speedsList.removeAt(index);
|
||||||
await videoStorage.put(VideoBoxKey.customSpeedsList, customSpeedsList);
|
await videoStorage.put(
|
||||||
|
type == 'system'
|
||||||
|
? VideoBoxKey.playSpeedSystem
|
||||||
|
: VideoBoxKey.customSpeedsList,
|
||||||
|
speedsList);
|
||||||
}
|
}
|
||||||
setState(() {});
|
setState(() {});
|
||||||
SmartDialog.showToast('操作成功');
|
SmartDialog.showToast('操作成功');
|
||||||
@ -249,6 +252,7 @@ class _PlaySpeedPageState extends State<PlaySpeedPage> {
|
|||||||
subtitle: Text(longPressSpeedDefault.toString()),
|
subtitle: Text(longPressSpeedDefault.toString()),
|
||||||
)
|
)
|
||||||
: const SizedBox(),
|
: const SizedBox(),
|
||||||
|
if (playSpeedSystem.isNotEmpty) ...[
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(
|
padding: const EdgeInsets.only(
|
||||||
left: 14,
|
left: 14,
|
||||||
@ -272,15 +276,16 @@ class _PlaySpeedPageState extends State<PlaySpeedPage> {
|
|||||||
spacing: 8,
|
spacing: 8,
|
||||||
runSpacing: 2,
|
runSpacing: 2,
|
||||||
children: [
|
children: [
|
||||||
for (var i in PlaySpeed.values) ...[
|
for (int i = 0; i < playSpeedSystem.length; i++) ...[
|
||||||
FilledButton.tonal(
|
FilledButton.tonal(
|
||||||
onPressed: () => showBottomSheet('system', i.index),
|
onPressed: () => showBottomSheet('system', i),
|
||||||
child: Text(i.description),
|
child: Text(playSpeedSystem[i].toString()),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
)
|
||||||
|
],
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(
|
padding: const EdgeInsets.only(
|
||||||
left: 14,
|
left: 14,
|
||||||
|
@ -5,6 +5,7 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:hive/hive.dart';
|
import 'package:hive/hive.dart';
|
||||||
|
import 'package:ns_danmaku/ns_danmaku.dart';
|
||||||
import 'package:pilipala/http/constants.dart';
|
import 'package:pilipala/http/constants.dart';
|
||||||
import 'package:pilipala/http/video.dart';
|
import 'package:pilipala/http/video.dart';
|
||||||
import 'package:pilipala/models/common/reply_type.dart';
|
import 'package:pilipala/models/common/reply_type.dart';
|
||||||
@ -19,6 +20,7 @@ import 'package:pilipala/utils/utils.dart';
|
|||||||
import 'package:pilipala/utils/video_utils.dart';
|
import 'package:pilipala/utils/video_utils.dart';
|
||||||
import 'package:screen_brightness/screen_brightness.dart';
|
import 'package:screen_brightness/screen_brightness.dart';
|
||||||
|
|
||||||
|
import '../../../http/danmaku.dart';
|
||||||
import '../../../utils/id_utils.dart';
|
import '../../../utils/id_utils.dart';
|
||||||
import 'widgets/header_control.dart';
|
import 'widgets/header_control.dart';
|
||||||
|
|
||||||
@ -91,6 +93,7 @@ class VideoDetailController extends GetxController
|
|||||||
late int cacheAudioQa;
|
late int cacheAudioQa;
|
||||||
|
|
||||||
PersistentBottomSheetController? replyReplyBottomSheetCtr;
|
PersistentBottomSheetController? replyReplyBottomSheetCtr;
|
||||||
|
late bool enableRelatedVideo;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void onInit() {
|
void onInit() {
|
||||||
@ -113,7 +116,8 @@ class VideoDetailController extends GetxController
|
|||||||
autoPlay.value =
|
autoPlay.value =
|
||||||
setting.get(SettingBoxKey.autoPlayEnable, defaultValue: true);
|
setting.get(SettingBoxKey.autoPlayEnable, defaultValue: true);
|
||||||
enableHA.value = setting.get(SettingBoxKey.enableHA, defaultValue: true);
|
enableHA.value = setting.get(SettingBoxKey.enableHA, defaultValue: true);
|
||||||
|
enableRelatedVideo =
|
||||||
|
setting.get(SettingBoxKey.enableRelatedVideo, defaultValue: true);
|
||||||
if (userInfo == null ||
|
if (userInfo == null ||
|
||||||
localCache.get(LocalCacheKey.historyPause) == true) {
|
localCache.get(LocalCacheKey.historyPause) == true) {
|
||||||
enableHeart = false;
|
enableHeart = false;
|
||||||
@ -383,4 +387,86 @@ class VideoDetailController extends GetxController
|
|||||||
? replyReplyBottomSheetCtr!.close()
|
? replyReplyBottomSheetCtr!.close()
|
||||||
: print('replyReplyBottomSheetCtr is null');
|
: print('replyReplyBottomSheetCtr is null');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// 发送弹幕
|
||||||
|
void showShootDanmakuSheet() {
|
||||||
|
final TextEditingController textController = TextEditingController();
|
||||||
|
bool isSending = false; // 追踪是否正在发送
|
||||||
|
showDialog(
|
||||||
|
context: Get.context!,
|
||||||
|
builder: (BuildContext context) {
|
||||||
|
// TODO: 支持更多类型和颜色的弹幕
|
||||||
|
return AlertDialog(
|
||||||
|
title: const Text('发送弹幕'),
|
||||||
|
content: StatefulBuilder(
|
||||||
|
builder: (BuildContext context, StateSetter setState) {
|
||||||
|
return TextField(
|
||||||
|
controller: textController,
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
actions: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Get.back(),
|
||||||
|
child: Text(
|
||||||
|
'取消',
|
||||||
|
style: TextStyle(color: Theme.of(context).colorScheme.outline),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
StatefulBuilder(
|
||||||
|
builder: (BuildContext context, StateSetter setState) {
|
||||||
|
return TextButton(
|
||||||
|
onPressed: isSending
|
||||||
|
? null
|
||||||
|
: () async {
|
||||||
|
final String msg = textController.text;
|
||||||
|
if (msg.isEmpty) {
|
||||||
|
SmartDialog.showToast('弹幕内容不能为空');
|
||||||
|
return;
|
||||||
|
} else if (msg.length > 100) {
|
||||||
|
SmartDialog.showToast('弹幕内容不能超过100个字符');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setState(() {
|
||||||
|
isSending = true; // 开始发送,更新状态
|
||||||
|
});
|
||||||
|
//修改按钮文字
|
||||||
|
// SmartDialog.showToast('弹幕发送中,\n$msg');
|
||||||
|
final dynamic res = await DanmakaHttp.shootDanmaku(
|
||||||
|
oid: cid.value,
|
||||||
|
msg: textController.text,
|
||||||
|
bvid: bvid,
|
||||||
|
progress:
|
||||||
|
plPlayerController.position.value.inMilliseconds,
|
||||||
|
type: 1,
|
||||||
|
);
|
||||||
|
setState(() {
|
||||||
|
isSending = false; // 发送结束,更新状态
|
||||||
|
});
|
||||||
|
if (res['status']) {
|
||||||
|
SmartDialog.showToast('发送成功');
|
||||||
|
// 发送成功,自动预览该弹幕,避免重新请求
|
||||||
|
// TODO: 暂停状态下预览弹幕仍会移动与计时,可考虑添加到dmSegList或其他方式实现
|
||||||
|
plPlayerController.danmakuController?.addItems([
|
||||||
|
DanmakuItem(
|
||||||
|
msg,
|
||||||
|
color: Colors.white,
|
||||||
|
time: plPlayerController
|
||||||
|
.position.value.inMilliseconds,
|
||||||
|
type: DanmakuItemType.scroll,
|
||||||
|
isSend: true,
|
||||||
|
)
|
||||||
|
]);
|
||||||
|
Get.back();
|
||||||
|
} else {
|
||||||
|
SmartDialog.showToast('发送失败,错误信息为${res['msg']}');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
child: Text(isSending ? '发送中...' : '发送'),
|
||||||
|
);
|
||||||
|
})
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -268,7 +268,10 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
|
|||||||
final Color outline = t.colorScheme.outline;
|
final Color outline = t.colorScheme.outline;
|
||||||
return SliverPadding(
|
return SliverPadding(
|
||||||
padding: const EdgeInsets.only(
|
padding: const EdgeInsets.only(
|
||||||
left: StyleString.safeSpace, right: StyleString.safeSpace, top: 10),
|
left: StyleString.safeSpace,
|
||||||
|
right: StyleString.safeSpace,
|
||||||
|
top: 16,
|
||||||
|
),
|
||||||
sliver: SliverToBoxAdapter(
|
sliver: SliverToBoxAdapter(
|
||||||
child: !loadingStatus
|
child: !loadingStatus
|
||||||
? Column(
|
? Column(
|
||||||
|
@ -9,7 +9,6 @@ import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:hive/hive.dart';
|
import 'package:hive/hive.dart';
|
||||||
import 'package:nil/nil.dart';
|
|
||||||
import 'package:pilipala/common/widgets/network_img_layer.dart';
|
import 'package:pilipala/common/widgets/network_img_layer.dart';
|
||||||
import 'package:pilipala/http/user.dart';
|
import 'package:pilipala/http/user.dart';
|
||||||
import 'package:pilipala/models/common/search_type.dart';
|
import 'package:pilipala/models/common/search_type.dart';
|
||||||
@ -25,7 +24,7 @@ import 'package:pilipala/services/service_locator.dart';
|
|||||||
import 'package:pilipala/utils/storage.dart';
|
import 'package:pilipala/utils/storage.dart';
|
||||||
|
|
||||||
import '../../../services/shutdown_timer_service.dart';
|
import '../../../services/shutdown_timer_service.dart';
|
||||||
import 'widgets/header_control.dart';
|
import 'widgets/app_bar.dart';
|
||||||
|
|
||||||
class VideoDetailPage extends StatefulWidget {
|
class VideoDetailPage extends StatefulWidget {
|
||||||
const VideoDetailPage({Key? key}) : super(key: key);
|
const VideoDetailPage({Key? key}) : super(key: key);
|
||||||
@ -38,7 +37,7 @@ class VideoDetailPage extends StatefulWidget {
|
|||||||
|
|
||||||
class _VideoDetailPageState extends State<VideoDetailPage>
|
class _VideoDetailPageState extends State<VideoDetailPage>
|
||||||
with TickerProviderStateMixin, RouteAware {
|
with TickerProviderStateMixin, RouteAware {
|
||||||
late VideoDetailController videoDetailController;
|
late VideoDetailController vdCtr;
|
||||||
PlPlayerController? plPlayerController;
|
PlPlayerController? plPlayerController;
|
||||||
final ScrollController _extendNestCtr = ScrollController();
|
final ScrollController _extendNestCtr = ScrollController();
|
||||||
late StreamController<double> appbarStream;
|
late StreamController<double> appbarStream;
|
||||||
@ -65,20 +64,18 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
heroTag = Get.arguments['heroTag'];
|
heroTag = Get.arguments['heroTag'];
|
||||||
videoDetailController = Get.put(VideoDetailController(), tag: heroTag);
|
vdCtr = Get.put(VideoDetailController(), tag: heroTag);
|
||||||
videoIntroController = Get.put(
|
videoIntroController = Get.put(
|
||||||
VideoIntroController(bvid: Get.parameters['bvid']!),
|
VideoIntroController(bvid: Get.parameters['bvid']!),
|
||||||
tag: heroTag);
|
tag: heroTag);
|
||||||
videoIntroController.videoDetail.listen((value) {
|
videoIntroController.videoDetail.listen((value) {
|
||||||
videoPlayerServiceHandler.onVideoDetailChange(
|
videoPlayerServiceHandler.onVideoDetailChange(value, vdCtr.cid.value);
|
||||||
value, videoDetailController.cid.value);
|
|
||||||
});
|
});
|
||||||
bangumiIntroController = Get.put(BangumiIntroController(), tag: heroTag);
|
bangumiIntroController = Get.put(BangumiIntroController(), tag: heroTag);
|
||||||
bangumiIntroController.bangumiDetail.listen((value) {
|
bangumiIntroController.bangumiDetail.listen((value) {
|
||||||
videoPlayerServiceHandler.onVideoDetailChange(
|
videoPlayerServiceHandler.onVideoDetailChange(value, vdCtr.cid.value);
|
||||||
value, videoDetailController.cid.value);
|
|
||||||
});
|
});
|
||||||
videoDetailController.cid.listen((p0) {
|
vdCtr.cid.listen((p0) {
|
||||||
videoPlayerServiceHandler.onVideoDetailChange(
|
videoPlayerServiceHandler.onVideoDetailChange(
|
||||||
bangumiIntroController.bangumiDetail.value, p0);
|
bangumiIntroController.bangumiDetail.value, p0);
|
||||||
});
|
});
|
||||||
@ -93,16 +90,16 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
appbarStreamListen();
|
appbarStreamListen();
|
||||||
fullScreenStatusListener();
|
fullScreenStatusListener();
|
||||||
if (Platform.isAndroid) {
|
if (Platform.isAndroid) {
|
||||||
floating = videoDetailController.floating!;
|
floating = vdCtr.floating!;
|
||||||
autoEnterPip();
|
autoEnterPip();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取视频资源,初始化播放器
|
// 获取视频资源,初始化播放器
|
||||||
Future<void> videoSourceInit() async {
|
Future<void> videoSourceInit() async {
|
||||||
_futureBuilderFuture = videoDetailController.queryVideoUrl();
|
_futureBuilderFuture = vdCtr.queryVideoUrl();
|
||||||
if (videoDetailController.autoPlay.value) {
|
if (vdCtr.autoPlay.value) {
|
||||||
plPlayerController = videoDetailController.plPlayerController;
|
plPlayerController = vdCtr.plPlayerController;
|
||||||
plPlayerController!.addStatusLister(playerListener);
|
plPlayerController!.addStatusLister(playerListener);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -131,10 +128,10 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
/// 顺序播放 列表循环
|
/// 顺序播放 列表循环
|
||||||
if (plPlayerController!.playRepeat != PlayRepeat.pause &&
|
if (plPlayerController!.playRepeat != PlayRepeat.pause &&
|
||||||
plPlayerController!.playRepeat != PlayRepeat.singleCycle) {
|
plPlayerController!.playRepeat != PlayRepeat.singleCycle) {
|
||||||
if (videoDetailController.videoType == SearchType.video) {
|
if (vdCtr.videoType == SearchType.video) {
|
||||||
videoIntroController.nextPlay();
|
videoIntroController.nextPlay();
|
||||||
}
|
}
|
||||||
if (videoDetailController.videoType == SearchType.media_bangumi) {
|
if (vdCtr.videoType == SearchType.media_bangumi) {
|
||||||
bangumiIntroController.nextPlay();
|
bangumiIntroController.nextPlay();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -146,8 +143,7 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
}
|
}
|
||||||
// 播放完展示控制栏
|
// 播放完展示控制栏
|
||||||
try {
|
try {
|
||||||
PiPStatus currentStatus =
|
PiPStatus currentStatus = await vdCtr.floating!.pipStatus;
|
||||||
await videoDetailController.floating!.pipStatus;
|
|
||||||
if (currentStatus == PiPStatus.disabled) {
|
if (currentStatus == PiPStatus.disabled) {
|
||||||
plPlayerController!.onLockControl(false);
|
plPlayerController!.onLockControl(false);
|
||||||
}
|
}
|
||||||
@ -168,17 +164,17 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
|
|
||||||
/// 未开启自动播放时触发播放
|
/// 未开启自动播放时触发播放
|
||||||
Future<void> handlePlay() async {
|
Future<void> handlePlay() async {
|
||||||
await videoDetailController.playerInit();
|
await vdCtr.playerInit();
|
||||||
plPlayerController = videoDetailController.plPlayerController;
|
plPlayerController = vdCtr.plPlayerController;
|
||||||
plPlayerController!.addStatusLister(playerListener);
|
plPlayerController!.addStatusLister(playerListener);
|
||||||
videoDetailController.autoPlay.value = true;
|
vdCtr.autoPlay.value = true;
|
||||||
videoDetailController.isShowCover.value = false;
|
vdCtr.isShowCover.value = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void fullScreenStatusListener() {
|
void fullScreenStatusListener() {
|
||||||
plPlayerController?.isFullScreen.listen((bool isFullScreen) {
|
plPlayerController?.isFullScreen.listen((bool isFullScreen) {
|
||||||
if (isFullScreen) {
|
if (isFullScreen) {
|
||||||
videoDetailController.hiddenReplyReplyPanel();
|
vdCtr.hiddenReplyReplyPanel();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -190,8 +186,8 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
plPlayerController!.removeStatusLister(playerListener);
|
plPlayerController!.removeStatusLister(playerListener);
|
||||||
plPlayerController!.dispose();
|
plPlayerController!.dispose();
|
||||||
}
|
}
|
||||||
if (videoDetailController.floating != null) {
|
if (vdCtr.floating != null) {
|
||||||
videoDetailController.floating!.dispose();
|
vdCtr.floating!.dispose();
|
||||||
}
|
}
|
||||||
videoPlayerServiceHandler.onVideoDetailDispose();
|
videoPlayerServiceHandler.onVideoDetailDispose();
|
||||||
if (Platform.isAndroid) {
|
if (Platform.isAndroid) {
|
||||||
@ -207,10 +203,10 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
/// 开启
|
/// 开启
|
||||||
if (setting.get(SettingBoxKey.enableAutoBrightness, defaultValue: false)
|
if (setting.get(SettingBoxKey.enableAutoBrightness, defaultValue: false)
|
||||||
as bool) {
|
as bool) {
|
||||||
videoDetailController.brightness = plPlayerController!.brightness.value;
|
vdCtr.brightness = plPlayerController!.brightness.value;
|
||||||
}
|
}
|
||||||
if (plPlayerController != null) {
|
if (plPlayerController != null) {
|
||||||
videoDetailController.defaultST = plPlayerController!.position.value;
|
vdCtr.defaultST = plPlayerController!.position.value;
|
||||||
videoIntroController.isPaused = true;
|
videoIntroController.isPaused = true;
|
||||||
plPlayerController!.removeStatusLister(playerListener);
|
plPlayerController!.removeStatusLister(playerListener);
|
||||||
plPlayerController!.pause();
|
plPlayerController!.pause();
|
||||||
@ -226,17 +222,16 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
plPlayerController!.videoPlayerController != null) {
|
plPlayerController!.videoPlayerController != null) {
|
||||||
setState(() => isShowing = true);
|
setState(() => isShowing = true);
|
||||||
}
|
}
|
||||||
videoDetailController.isFirstTime = false;
|
vdCtr.isFirstTime = false;
|
||||||
final bool autoplay = autoPlayEnable;
|
final bool autoplay = autoPlayEnable;
|
||||||
videoDetailController.playerInit(autoplay: autoplay);
|
vdCtr.playerInit(autoplay: autoplay);
|
||||||
|
|
||||||
/// 未开启自动播放时,未播放跳转下一页返回/播放后跳转下一页返回
|
/// 未开启自动播放时,未播放跳转下一页返回/播放后跳转下一页返回
|
||||||
videoDetailController.autoPlay.value =
|
vdCtr.autoPlay.value = !vdCtr.isShowCover.value;
|
||||||
!videoDetailController.isShowCover.value;
|
|
||||||
videoIntroController.isPaused = false;
|
videoIntroController.isPaused = false;
|
||||||
if (_extendNestCtr.position.pixels == 0 && autoplay) {
|
if (_extendNestCtr.position.pixels == 0 && autoplay) {
|
||||||
await Future.delayed(const Duration(milliseconds: 300));
|
await Future.delayed(const Duration(milliseconds: 300));
|
||||||
plPlayerController?.seekTo(videoDetailController.defaultST);
|
plPlayerController?.seekTo(vdCtr.defaultST);
|
||||||
plPlayerController?.play();
|
plPlayerController?.play();
|
||||||
}
|
}
|
||||||
plPlayerController?.addStatusLister(playerListener);
|
plPlayerController?.addStatusLister(playerListener);
|
||||||
@ -259,9 +254,166 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final double videoHeight = MediaQuery.sizeOf(context).width * 9 / 16;
|
// final double videoHeight = MediaQuery.sizeOf(context).width * 9 / 16;
|
||||||
|
final sizeContext = MediaQuery.sizeOf(context);
|
||||||
|
final _context = MediaQuery.of(context);
|
||||||
|
late double defaultVideoHeight = sizeContext.width * 9 / 16;
|
||||||
|
late RxDouble videoHeight = defaultVideoHeight.obs;
|
||||||
final double pinnedHeaderHeight =
|
final double pinnedHeaderHeight =
|
||||||
statusBarHeight + kToolbarHeight + videoHeight;
|
statusBarHeight + kToolbarHeight + videoHeight.value;
|
||||||
|
// ignore: no_leading_underscores_for_local_identifiers
|
||||||
|
|
||||||
|
// 竖屏
|
||||||
|
final bool isPortrait = _context.orientation == Orientation.portrait;
|
||||||
|
// 横屏
|
||||||
|
final bool isLandscape = _context.orientation == Orientation.landscape;
|
||||||
|
final Rx<bool> isFullScreen = plPlayerController?.isFullScreen ?? false.obs;
|
||||||
|
// 全屏时高度撑满
|
||||||
|
if (isLandscape || isFullScreen.value == true) {
|
||||||
|
videoHeight.value = Get.size.height;
|
||||||
|
enterFullScreen();
|
||||||
|
} else {
|
||||||
|
videoHeight.value = defaultVideoHeight;
|
||||||
|
exitFullScreen();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 播放器面板
|
||||||
|
Widget videoPlayerPanel = FutureBuilder(
|
||||||
|
future: _futureBuilderFuture,
|
||||||
|
builder: (BuildContext context, AsyncSnapshot snapshot) {
|
||||||
|
if (snapshot.hasData && snapshot.data['status']) {
|
||||||
|
return Obx(
|
||||||
|
() {
|
||||||
|
return !vdCtr.autoPlay.value
|
||||||
|
? const SizedBox()
|
||||||
|
: PLVideoPlayer(
|
||||||
|
controller: plPlayerController!,
|
||||||
|
headerControl: vdCtr.headerControl,
|
||||||
|
danmuWidget: Obx(
|
||||||
|
() => PlDanmaku(
|
||||||
|
key: Key(vdCtr.danmakuCid.value.toString()),
|
||||||
|
cid: vdCtr.danmakuCid.value,
|
||||||
|
playerController: plPlayerController!,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
// 加载失败异常处理
|
||||||
|
return const SizedBox();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
/// tabbar
|
||||||
|
Widget tabbarBuild = Container(
|
||||||
|
width: double.infinity,
|
||||||
|
height: 45,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
border: Border(
|
||||||
|
bottom: BorderSide(
|
||||||
|
width: 1,
|
||||||
|
color: Theme.of(context).dividerColor.withOpacity(0.1),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
const SizedBox(width: 20),
|
||||||
|
Expanded(
|
||||||
|
child: TabBar(
|
||||||
|
controller: vdCtr.tabCtr,
|
||||||
|
dividerColor: Colors.transparent,
|
||||||
|
tabs: vdCtr.tabs.map((String name) => Tab(text: name)).toList(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 220,
|
||||||
|
child: Center(
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.end,
|
||||||
|
children: [
|
||||||
|
SizedBox(
|
||||||
|
height: 32,
|
||||||
|
child: TextButton(
|
||||||
|
style: ButtonStyle(
|
||||||
|
padding: MaterialStateProperty.all(EdgeInsets.zero),
|
||||||
|
),
|
||||||
|
onPressed: () => vdCtr.showShootDanmakuSheet(),
|
||||||
|
child: const Text('发弹幕', style: TextStyle(fontSize: 12)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 4),
|
||||||
|
SizedBox(
|
||||||
|
width: 34,
|
||||||
|
height: 32,
|
||||||
|
child: TextButton(
|
||||||
|
style: ButtonStyle(
|
||||||
|
padding: MaterialStateProperty.all(EdgeInsets.zero),
|
||||||
|
),
|
||||||
|
onPressed: () {
|
||||||
|
plPlayerController?.isOpenDanmu.value =
|
||||||
|
!(plPlayerController?.isOpenDanmu.value ?? false);
|
||||||
|
},
|
||||||
|
child: Obx(() => Text(
|
||||||
|
'弹',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 12,
|
||||||
|
color: (plPlayerController?.isOpenDanmu.value ??
|
||||||
|
false)
|
||||||
|
? Theme.of(context).colorScheme.primary
|
||||||
|
: Theme.of(context).colorScheme.outline,
|
||||||
|
),
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 14),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
/// 手动播放
|
||||||
|
Widget handlePlayPanel() {
|
||||||
|
return Stack(
|
||||||
|
children: [
|
||||||
|
GestureDetector(
|
||||||
|
onTap: () {
|
||||||
|
handlePlay();
|
||||||
|
},
|
||||||
|
child: NetworkImgLayer(
|
||||||
|
type: 'emote',
|
||||||
|
src: vdCtr.videoItem['pic'],
|
||||||
|
width: Get.width,
|
||||||
|
height: videoHeight.value,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Positioned(
|
||||||
|
top: 0,
|
||||||
|
left: 0,
|
||||||
|
right: 0,
|
||||||
|
child: buildCustomAppBar(),
|
||||||
|
),
|
||||||
|
Positioned(
|
||||||
|
right: 12,
|
||||||
|
bottom: 10,
|
||||||
|
child: IconButton(
|
||||||
|
tooltip: '播放',
|
||||||
|
onPressed: () => handlePlay(),
|
||||||
|
icon: Image.asset(
|
||||||
|
'assets/images/play.png',
|
||||||
|
width: 60,
|
||||||
|
height: 60,
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
Widget childWhenDisabled = SafeArea(
|
Widget childWhenDisabled = SafeArea(
|
||||||
top: MediaQuery.of(context).orientation == Orientation.portrait &&
|
top: MediaQuery.of(context).orientation == Orientation.portrait &&
|
||||||
plPlayerController?.isFullScreen.value == true,
|
plPlayerController?.isFullScreen.value == true,
|
||||||
@ -273,7 +425,7 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
children: [
|
children: [
|
||||||
Scaffold(
|
Scaffold(
|
||||||
resizeToAvoidBottomInset: false,
|
resizeToAvoidBottomInset: false,
|
||||||
key: videoDetailController.scaffoldKey,
|
key: vdCtr.scaffoldKey,
|
||||||
backgroundColor: Colors.black,
|
backgroundColor: Colors.black,
|
||||||
appBar: PreferredSize(
|
appBar: PreferredSize(
|
||||||
preferredSize: const Size.fromHeight(0),
|
preferredSize: const Size.fromHeight(0),
|
||||||
@ -299,21 +451,19 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
return SliverAppBar(
|
return SliverAppBar(
|
||||||
automaticallyImplyLeading: false,
|
automaticallyImplyLeading: false,
|
||||||
// 假装使用一个非空变量,避免Obx检测不到而罢工
|
// 假装使用一个非空变量,避免Obx检测不到而罢工
|
||||||
pinned: videoDetailController.autoPlay.value ^
|
pinned: vdCtr.autoPlay.value,
|
||||||
false ^
|
|
||||||
videoDetailController.autoPlay.value,
|
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
scrolledUnderElevation: 0,
|
scrolledUnderElevation: 0,
|
||||||
forceElevated: innerBoxIsScrolled,
|
forceElevated: innerBoxIsScrolled,
|
||||||
expandedHeight: MediaQuery.of(context).orientation ==
|
expandedHeight: MediaQuery.of(context).orientation ==
|
||||||
Orientation.landscape ||
|
Orientation.landscape ||
|
||||||
plPlayerController?.isFullScreen.value == true
|
plPlayerController?.isFullScreen.value == true
|
||||||
? MediaQuery.sizeOf(context).height -
|
? (MediaQuery.sizeOf(context).height -
|
||||||
(MediaQuery.of(context).orientation ==
|
(MediaQuery.of(context).orientation ==
|
||||||
Orientation.landscape
|
Orientation.landscape
|
||||||
? 0
|
? 0
|
||||||
: MediaQuery.of(context).padding.top)
|
: MediaQuery.of(context).padding.top))
|
||||||
: videoHeight,
|
: videoHeight.value,
|
||||||
backgroundColor: Colors.black,
|
backgroundColor: Colors.black,
|
||||||
flexibleSpace: FlexibleSpaceBar(
|
flexibleSpace: FlexibleSpaceBar(
|
||||||
background: PopScope(
|
background: PopScope(
|
||||||
@ -333,108 +483,27 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
child: LayoutBuilder(
|
child: LayoutBuilder(
|
||||||
builder: (BuildContext context,
|
builder: (BuildContext context,
|
||||||
BoxConstraints boxConstraints) {
|
BoxConstraints boxConstraints) {
|
||||||
final double maxWidth =
|
// final double maxWidth =
|
||||||
boxConstraints.maxWidth;
|
// boxConstraints.maxWidth;
|
||||||
final double maxHeight =
|
// final double maxHeight =
|
||||||
boxConstraints.maxHeight;
|
// boxConstraints.maxHeight;
|
||||||
return Stack(
|
return Stack(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
if (isShowing)
|
if (isShowing) videoPlayerPanel,
|
||||||
FutureBuilder(
|
|
||||||
future: _futureBuilderFuture,
|
|
||||||
builder: (BuildContext context,
|
|
||||||
AsyncSnapshot snapshot) {
|
|
||||||
if (snapshot.hasData &&
|
|
||||||
snapshot.data['status']) {
|
|
||||||
return Obx(
|
|
||||||
() =>
|
|
||||||
!videoDetailController
|
|
||||||
.autoPlay.value
|
|
||||||
? nil
|
|
||||||
: PLVideoPlayer(
|
|
||||||
controller:
|
|
||||||
plPlayerController!,
|
|
||||||
headerControl:
|
|
||||||
videoDetailController
|
|
||||||
.headerControl,
|
|
||||||
danmuWidget: Obx(
|
|
||||||
() => PlDanmaku(
|
|
||||||
key: Key(videoDetailController
|
|
||||||
.danmakuCid
|
|
||||||
.value
|
|
||||||
.toString()),
|
|
||||||
cid: videoDetailController
|
|
||||||
.danmakuCid
|
|
||||||
.value,
|
|
||||||
playerController:
|
|
||||||
plPlayerController!,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
return buildCustomAppBar();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
|
|
||||||
/// 关闭自动播放时 手动播放
|
/// 关闭自动播放时 手动播放
|
||||||
if (!videoDetailController
|
|
||||||
.autoPlay.value) ...<Widget>[
|
|
||||||
Obx(
|
Obx(
|
||||||
() => Visibility(
|
() => Visibility(
|
||||||
visible: videoDetailController
|
visible: !vdCtr.autoPlay.value &&
|
||||||
.isShowCover.value,
|
vdCtr.isShowCover.value,
|
||||||
child: Positioned(
|
child: Positioned(
|
||||||
top: 0,
|
top: 0,
|
||||||
left: 0,
|
left: 0,
|
||||||
right: 0,
|
right: 0,
|
||||||
child: GestureDetector(
|
child: handlePlayPanel(),
|
||||||
onTap: () {
|
|
||||||
handlePlay();
|
|
||||||
},
|
|
||||||
child: NetworkImgLayer(
|
|
||||||
type: 'emote',
|
|
||||||
src: videoDetailController
|
|
||||||
.videoItem['pic'],
|
|
||||||
width: maxWidth,
|
|
||||||
height: maxHeight,
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
|
||||||
),
|
|
||||||
Obx(
|
|
||||||
() => Visibility(
|
|
||||||
visible: videoDetailController
|
|
||||||
.isShowCover.value &&
|
|
||||||
videoDetailController
|
|
||||||
.isEffective.value,
|
|
||||||
child: Stack(
|
|
||||||
children: [
|
|
||||||
Positioned(
|
|
||||||
top: 0,
|
|
||||||
left: 0,
|
|
||||||
right: 0,
|
|
||||||
child: buildCustomAppBar(),
|
|
||||||
),
|
|
||||||
Positioned(
|
|
||||||
right: 12,
|
|
||||||
bottom: 10,
|
|
||||||
child: IconButton(
|
|
||||||
tooltip: '播放',
|
|
||||||
onPressed: () =>
|
|
||||||
handlePlay(),
|
|
||||||
icon: Image.asset(
|
|
||||||
'assets/images/play.png',
|
|
||||||
width: 60,
|
|
||||||
height: 60,
|
|
||||||
)),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)),
|
|
||||||
),
|
|
||||||
]
|
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
@ -445,17 +514,15 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
),
|
),
|
||||||
];
|
];
|
||||||
},
|
},
|
||||||
// pinnedHeaderSliverHeightBuilder: () {
|
|
||||||
// return playerStatus != PlayerStatus.playing
|
|
||||||
// ? statusBarHeight + kToolbarHeight
|
|
||||||
// : pinnedHeaderHeight;
|
|
||||||
// },
|
|
||||||
/// 不收回
|
/// 不收回
|
||||||
pinnedHeaderSliverHeightBuilder: () {
|
pinnedHeaderSliverHeightBuilder: () {
|
||||||
return MediaQuery.of(context).orientation ==
|
return MediaQuery.of(context).orientation ==
|
||||||
Orientation.landscape ||
|
Orientation.landscape ||
|
||||||
plPlayerController?.isFullScreen.value == true
|
plPlayerController?.isFullScreen.value == true
|
||||||
? MediaQuery.sizeOf(context).height
|
? MediaQuery.sizeOf(context).height
|
||||||
|
: playerStatus != PlayerStatus.playing
|
||||||
|
? kToolbarHeight
|
||||||
: pinnedHeaderHeight;
|
: pinnedHeaderHeight;
|
||||||
},
|
},
|
||||||
onlyOneScrollInBody: true,
|
onlyOneScrollInBody: true,
|
||||||
@ -464,54 +531,23 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
color: Theme.of(context).colorScheme.background,
|
color: Theme.of(context).colorScheme.background,
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Opacity(
|
tabbarBuild,
|
||||||
opacity: 0,
|
|
||||||
child: SizedBox(
|
|
||||||
width: double.infinity,
|
|
||||||
height: 0,
|
|
||||||
child: Obx(
|
|
||||||
() => TabBar(
|
|
||||||
controller: videoDetailController.tabCtr,
|
|
||||||
dividerColor: Colors.transparent,
|
|
||||||
indicatorColor:
|
|
||||||
Theme.of(context).colorScheme.background,
|
|
||||||
tabs: videoDetailController.tabs
|
|
||||||
.map((String name) => Tab(text: name))
|
|
||||||
.toList(),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Expanded(
|
Expanded(
|
||||||
child: TabBarView(
|
child: TabBarView(
|
||||||
controller: videoDetailController.tabCtr,
|
controller: vdCtr.tabCtr,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Builder(
|
Builder(
|
||||||
builder: (BuildContext context) {
|
builder: (BuildContext context) {
|
||||||
return CustomScrollView(
|
return CustomScrollView(
|
||||||
key: const PageStorageKey<String>('简介'),
|
key: const PageStorageKey<String>('简介'),
|
||||||
slivers: <Widget>[
|
slivers: <Widget>[
|
||||||
if (videoDetailController.videoType ==
|
if (vdCtr.videoType == SearchType.video) ...[
|
||||||
SearchType.video) ...[
|
VideoIntroPanel(bvid: vdCtr.bvid),
|
||||||
VideoIntroPanel(
|
] else if (vdCtr.videoType ==
|
||||||
bvid: videoDetailController.bvid),
|
|
||||||
] else if (videoDetailController.videoType ==
|
|
||||||
SearchType.media_bangumi) ...[
|
SearchType.media_bangumi) ...[
|
||||||
Obx(() => BangumiIntroPanel(
|
Obx(() => BangumiIntroPanel(
|
||||||
cid: videoDetailController.cid.value)),
|
cid: vdCtr.cid.value)),
|
||||||
],
|
],
|
||||||
// if (videoDetailController.videoType ==
|
|
||||||
// SearchType.video) ...[
|
|
||||||
// SliverPersistentHeader(
|
|
||||||
// floating: true,
|
|
||||||
// pinned: true,
|
|
||||||
// delegate: SliverHeaderDelegate(
|
|
||||||
// height: 50,
|
|
||||||
// child:
|
|
||||||
// const MenuRow(loadingStatus: false),
|
|
||||||
// ),
|
|
||||||
// ),
|
|
||||||
// ],
|
|
||||||
SliverToBoxAdapter(
|
SliverToBoxAdapter(
|
||||||
child: Divider(
|
child: Divider(
|
||||||
indent: 12,
|
indent: 12,
|
||||||
@ -521,6 +557,9 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
.withOpacity(0.06),
|
.withOpacity(0.06),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
if (videoDetailController.videoType ==
|
||||||
|
SearchType.video &&
|
||||||
|
videoDetailController.enableRelatedVideo)
|
||||||
const RelatedVideoPanel(),
|
const RelatedVideoPanel(),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
@ -528,8 +567,8 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
),
|
),
|
||||||
Obx(
|
Obx(
|
||||||
() => VideoReplyPanel(
|
() => VideoReplyPanel(
|
||||||
bvid: videoDetailController.bvid,
|
bvid: vdCtr.bvid,
|
||||||
oid: videoDetailController.oid.value,
|
oid: vdCtr.oid.value,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
@ -543,56 +582,26 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
|
|
||||||
/// 重新进入会刷新
|
/// 重新进入会刷新
|
||||||
// 播放完成/暂停播放
|
// 播放完成/暂停播放
|
||||||
// StreamBuilder(
|
StreamBuilder(
|
||||||
// stream: appbarStream.stream,
|
stream: appbarStream.stream,
|
||||||
// initialData: 0,
|
initialData: 0,
|
||||||
// builder: ((context, snapshot) {
|
builder: ((context, snapshot) {
|
||||||
// return ScrollAppBar(
|
return ScrollAppBar(
|
||||||
// snapshot.data!.toDouble(),
|
snapshot.data!.toDouble(),
|
||||||
// () => continuePlay(),
|
() => continuePlay(),
|
||||||
// playerStatus,
|
playerStatus,
|
||||||
// null,
|
null,
|
||||||
// );
|
);
|
||||||
// }),
|
}),
|
||||||
// )
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
Widget childWhenEnabled = FutureBuilder(
|
|
||||||
key: Key(heroTag),
|
|
||||||
future: _futureBuilderFuture,
|
|
||||||
builder: (BuildContext context, AsyncSnapshot snapshot) {
|
|
||||||
if (snapshot.hasData && snapshot.data['status']) {
|
|
||||||
return Obx(
|
|
||||||
() => !videoDetailController.autoPlay.value
|
|
||||||
? const SizedBox()
|
|
||||||
: PLVideoPlayer(
|
|
||||||
controller: plPlayerController!,
|
|
||||||
headerControl: HeaderControl(
|
|
||||||
controller: plPlayerController,
|
|
||||||
videoDetailCtr: videoDetailController,
|
|
||||||
bvid: videoDetailController.bvid,
|
|
||||||
videoType: videoDetailController.videoType,
|
|
||||||
),
|
|
||||||
danmuWidget: Obx(
|
|
||||||
() => PlDanmaku(
|
|
||||||
key: Key(
|
|
||||||
videoDetailController.danmakuCid.value.toString()),
|
|
||||||
cid: videoDetailController.danmakuCid.value,
|
|
||||||
playerController: plPlayerController!,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
return nil;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
);
|
|
||||||
if (Platform.isAndroid) {
|
if (Platform.isAndroid) {
|
||||||
return PiPSwitcher(
|
return PiPSwitcher(
|
||||||
childWhenDisabled: childWhenDisabled,
|
childWhenDisabled: childWhenDisabled,
|
||||||
childWhenEnabled: childWhenEnabled,
|
childWhenEnabled: videoPlayerPanel,
|
||||||
floating: floating,
|
floating: floating,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
@ -633,8 +642,7 @@ class _VideoDetailPageState extends State<VideoDetailPage>
|
|||||||
ComBtn(
|
ComBtn(
|
||||||
icon: const Icon(Icons.history_outlined, size: 22),
|
icon: const Icon(Icons.history_outlined, size: 22),
|
||||||
fuc: () async {
|
fuc: () async {
|
||||||
var res = await UserHttp.toViewLater(
|
var res = await UserHttp.toViewLater(bvid: vdCtr.bvid);
|
||||||
bvid: videoDetailController.bvid);
|
|
||||||
SmartDialog.showToast(res['msg']);
|
SmartDialog.showToast(res['msg']);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:math';
|
|
||||||
|
|
||||||
import 'package:floating/floating.dart';
|
import 'package:floating/floating.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
@ -17,7 +16,6 @@ import 'package:pilipala/pages/video/detail/introduction/widgets/menu_row.dart';
|
|||||||
import 'package:pilipala/plugin/pl_player/index.dart';
|
import 'package:pilipala/plugin/pl_player/index.dart';
|
||||||
import 'package:pilipala/plugin/pl_player/models/play_repeat.dart';
|
import 'package:pilipala/plugin/pl_player/models/play_repeat.dart';
|
||||||
import 'package:pilipala/utils/storage.dart';
|
import 'package:pilipala/utils/storage.dart';
|
||||||
import 'package:pilipala/http/danmaku.dart';
|
|
||||||
import 'package:pilipala/services/shutdown_timer_service.dart';
|
import 'package:pilipala/services/shutdown_timer_service.dart';
|
||||||
import '../../../../models/common/search_type.dart';
|
import '../../../../models/common/search_type.dart';
|
||||||
import '../../../../models/video_detail_res.dart';
|
import '../../../../models/video_detail_res.dart';
|
||||||
@ -47,7 +45,6 @@ class HeaderControl extends StatefulWidget implements PreferredSizeWidget {
|
|||||||
|
|
||||||
class _HeaderControlState extends State<HeaderControl> {
|
class _HeaderControlState extends State<HeaderControl> {
|
||||||
late PlayUrlModel videoInfo;
|
late PlayUrlModel videoInfo;
|
||||||
List<PlaySpeed> playSpeed = PlaySpeed.values;
|
|
||||||
static const TextStyle subTitleStyle = TextStyle(fontSize: 12);
|
static const TextStyle subTitleStyle = TextStyle(fontSize: 12);
|
||||||
static const TextStyle titleStyle = TextStyle(fontSize: 14);
|
static const TextStyle titleStyle = TextStyle(fontSize: 14);
|
||||||
Size get preferredSize => const Size(double.infinity, kToolbarHeight);
|
Size get preferredSize => const Size(double.infinity, kToolbarHeight);
|
||||||
@ -221,88 +218,6 @@ class _HeaderControlState extends State<HeaderControl> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 发送弹幕
|
|
||||||
void showShootDanmakuSheet() {
|
|
||||||
final TextEditingController textController = TextEditingController();
|
|
||||||
bool isSending = false; // 追踪是否正在发送
|
|
||||||
showDialog(
|
|
||||||
context: Get.context!,
|
|
||||||
builder: (BuildContext context) {
|
|
||||||
// TODO: 支持更多类型和颜色的弹幕
|
|
||||||
return AlertDialog(
|
|
||||||
title: const Text('发送弹幕(测试)'),
|
|
||||||
content: StatefulBuilder(
|
|
||||||
builder: (BuildContext context, StateSetter setState) {
|
|
||||||
return TextField(
|
|
||||||
controller: textController,
|
|
||||||
);
|
|
||||||
}),
|
|
||||||
actions: [
|
|
||||||
TextButton(
|
|
||||||
onPressed: () => Get.back(),
|
|
||||||
child: Text(
|
|
||||||
'取消',
|
|
||||||
style: TextStyle(color: Theme.of(context).colorScheme.outline),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
StatefulBuilder(
|
|
||||||
builder: (BuildContext context, StateSetter setState) {
|
|
||||||
return TextButton(
|
|
||||||
onPressed: isSending
|
|
||||||
? null
|
|
||||||
: () async {
|
|
||||||
final String msg = textController.text;
|
|
||||||
if (msg.isEmpty) {
|
|
||||||
SmartDialog.showToast('弹幕内容不能为空');
|
|
||||||
return;
|
|
||||||
} else if (msg.length > 100) {
|
|
||||||
SmartDialog.showToast('弹幕内容不能超过100个字符');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
setState(() {
|
|
||||||
isSending = true; // 开始发送,更新状态
|
|
||||||
});
|
|
||||||
//修改按钮文字
|
|
||||||
// SmartDialog.showToast('弹幕发送中,\n$msg');
|
|
||||||
final dynamic res = await DanmakaHttp.shootDanmaku(
|
|
||||||
oid: widget.videoDetailCtr!.cid.value,
|
|
||||||
msg: textController.text,
|
|
||||||
bvid: widget.videoDetailCtr!.bvid,
|
|
||||||
progress:
|
|
||||||
widget.controller!.position.value.inMilliseconds,
|
|
||||||
type: 1,
|
|
||||||
);
|
|
||||||
setState(() {
|
|
||||||
isSending = false; // 发送结束,更新状态
|
|
||||||
});
|
|
||||||
if (res['status']) {
|
|
||||||
SmartDialog.showToast('发送成功');
|
|
||||||
// 发送成功,自动预览该弹幕,避免重新请求
|
|
||||||
// TODO: 暂停状态下预览弹幕仍会移动与计时,可考虑添加到dmSegList或其他方式实现
|
|
||||||
widget.controller!.danmakuController!.addItems([
|
|
||||||
DanmakuItem(
|
|
||||||
msg,
|
|
||||||
color: Colors.white,
|
|
||||||
time: widget
|
|
||||||
.controller!.position.value.inMilliseconds,
|
|
||||||
type: DanmakuItemType.scroll,
|
|
||||||
isSend: true,
|
|
||||||
)
|
|
||||||
]);
|
|
||||||
Get.back();
|
|
||||||
} else {
|
|
||||||
SmartDialog.showToast('发送失败,错误信息为${res['msg']}');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
child: Text(isSending ? '发送中...' : '发送'),
|
|
||||||
);
|
|
||||||
})
|
|
||||||
],
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 定时关闭
|
/// 定时关闭
|
||||||
void scheduleExit() async {
|
void scheduleExit() async {
|
||||||
const List<int> scheduleTimeChoices = [
|
const List<int> scheduleTimeChoices = [
|
||||||
@ -1166,41 +1081,6 @@ class _HeaderControlState extends State<HeaderControl> {
|
|||||||
// ),
|
// ),
|
||||||
// fuc: () => _.screenshot(),
|
// fuc: () => _.screenshot(),
|
||||||
// ),
|
// ),
|
||||||
SizedBox(
|
|
||||||
width: 56,
|
|
||||||
height: 34,
|
|
||||||
child: TextButton(
|
|
||||||
style: ButtonStyle(
|
|
||||||
padding: MaterialStateProperty.all(EdgeInsets.zero),
|
|
||||||
),
|
|
||||||
onPressed: () => showShootDanmakuSheet(),
|
|
||||||
child: const Text(
|
|
||||||
'发弹幕',
|
|
||||||
style: textStyle,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 34,
|
|
||||||
height: 34,
|
|
||||||
child: Obx(
|
|
||||||
() => IconButton(
|
|
||||||
style: ButtonStyle(
|
|
||||||
padding: MaterialStateProperty.all(EdgeInsets.zero),
|
|
||||||
),
|
|
||||||
onPressed: () {
|
|
||||||
_.isOpenDanmu.value = !_.isOpenDanmu.value;
|
|
||||||
},
|
|
||||||
icon: Icon(
|
|
||||||
_.isOpenDanmu.value
|
|
||||||
? Icons.subtitles_outlined
|
|
||||||
: Icons.subtitles_off_outlined,
|
|
||||||
size: 19,
|
|
||||||
color: Colors.white,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(width: buttonSpace),
|
SizedBox(width: buttonSpace),
|
||||||
if (Platform.isAndroid) ...<Widget>[
|
if (Platform.isAndroid) ...<Widget>[
|
||||||
SizedBox(
|
SizedBox(
|
||||||
|
@ -292,11 +292,19 @@ class PlPlayerController {
|
|||||||
_longPressSpeed.value = videoStorage
|
_longPressSpeed.value = videoStorage
|
||||||
.get(VideoBoxKey.longPressSpeedDefault, defaultValue: 2.0);
|
.get(VideoBoxKey.longPressSpeedDefault, defaultValue: 2.0);
|
||||||
}
|
}
|
||||||
|
// 自定义倍速集合
|
||||||
speedsList = List<double>.from(videoStorage
|
speedsList = List<double>.from(videoStorage
|
||||||
.get(VideoBoxKey.customSpeedsList, defaultValue: <double>[]));
|
.get(VideoBoxKey.customSpeedsList, defaultValue: <double>[]));
|
||||||
for (final PlaySpeed i in PlaySpeed.values) {
|
// 默认倍速
|
||||||
speedsList.add(i.value);
|
speedsList = List<double>.from(videoStorage
|
||||||
}
|
.get(VideoBoxKey.customSpeedsList, defaultValue: <double>[]));
|
||||||
|
//playSpeedSystem
|
||||||
|
final List<double> playSpeedSystem =
|
||||||
|
videoStorage.get(VideoBoxKey.playSpeedSystem, defaultValue: playSpeed);
|
||||||
|
|
||||||
|
// for (final PlaySpeed i in PlaySpeed.values) {
|
||||||
|
speedsList.addAll(playSpeedSystem);
|
||||||
|
// }
|
||||||
|
|
||||||
// _playerEventSubs = onPlayerStatusChanged.listen((PlayerStatus status) {
|
// _playerEventSubs = onPlayerStatusChanged.listen((PlayerStatus status) {
|
||||||
// if (status == PlayerStatus.playing) {
|
// if (status == PlayerStatus.playing) {
|
||||||
@ -676,18 +684,6 @@ class PlPlayerController {
|
|||||||
_playbackSpeed.value = speed;
|
_playbackSpeed.value = speed;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 设置倍速
|
|
||||||
// Future<void> togglePlaybackSpeed() async {
|
|
||||||
// List<double> allowedSpeeds =
|
|
||||||
// PlaySpeed.values.map<double>((e) => e.value).toList();
|
|
||||||
// int index = allowedSpeeds.indexOf(_playbackSpeed.value);
|
|
||||||
// if (index < allowedSpeeds.length - 1) {
|
|
||||||
// setPlaybackSpeed(allowedSpeeds[index + 1]);
|
|
||||||
// } else {
|
|
||||||
// setPlaybackSpeed(allowedSpeeds[0]);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
/// 播放视频
|
/// 播放视频
|
||||||
/// TODO _duration.value丢失
|
/// TODO _duration.value丢失
|
||||||
Future<void> play(
|
Future<void> play(
|
||||||
|
@ -1,39 +1,15 @@
|
|||||||
enum PlaySpeed {
|
List<double> generatePlaySpeedList() {
|
||||||
pointTwoFive,
|
List<double> playSpeed = [];
|
||||||
pointFive,
|
double startSpeed = 0.25;
|
||||||
pointSevenFive,
|
double endSpeed = 2.0;
|
||||||
|
double increment = 0.25;
|
||||||
|
|
||||||
one,
|
for (double speed = startSpeed; speed <= endSpeed; speed += increment) {
|
||||||
onePointTwoFive,
|
playSpeed.add(speed);
|
||||||
onePointFive,
|
|
||||||
onePointSevenFive,
|
|
||||||
|
|
||||||
two,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
extension PlaySpeedExtension on PlaySpeed {
|
return playSpeed;
|
||||||
static final List<String> _descList = [
|
|
||||||
'0.25',
|
|
||||||
'0.5',
|
|
||||||
'0.75',
|
|
||||||
'正常',
|
|
||||||
'1.25',
|
|
||||||
'1.5',
|
|
||||||
'1.75',
|
|
||||||
'2.0',
|
|
||||||
];
|
|
||||||
String get description => _descList[index];
|
|
||||||
|
|
||||||
static final List<double> _valueList = [
|
|
||||||
0.25,
|
|
||||||
0.5,
|
|
||||||
0.75,
|
|
||||||
1.0,
|
|
||||||
1.25,
|
|
||||||
1.5,
|
|
||||||
1.75,
|
|
||||||
2.0,
|
|
||||||
];
|
|
||||||
double get value => _valueList[index];
|
|
||||||
double get defaultValue => _valueList[3];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 导出 playSpeed 列表
|
||||||
|
List<double> playSpeed = generatePlaySpeedList();
|
||||||
|
@ -131,7 +131,8 @@ class SettingBoxKey {
|
|||||||
enableSearchWord = 'enableSearchWord',
|
enableSearchWord = 'enableSearchWord',
|
||||||
enableSystemProxy = 'enableSystemProxy',
|
enableSystemProxy = 'enableSystemProxy',
|
||||||
enableAi = 'enableAi',
|
enableAi = 'enableAi',
|
||||||
defaultHomePage = 'defaultHomePage';
|
defaultHomePage = 'defaultHomePage',
|
||||||
|
enableRelatedVideo = 'enableRelatedVideo';
|
||||||
|
|
||||||
/// 外观
|
/// 外观
|
||||||
static const String themeMode = 'themeMode',
|
static const String themeMode = 'themeMode',
|
||||||
@ -181,6 +182,8 @@ class VideoBoxKey {
|
|||||||
videoSpeed = 'videoSpeed',
|
videoSpeed = 'videoSpeed',
|
||||||
// 播放顺序
|
// 播放顺序
|
||||||
playRepeat = 'playRepeat',
|
playRepeat = 'playRepeat',
|
||||||
|
// 系统预设倍速
|
||||||
|
playSpeedSystem = 'playSpeedSystem',
|
||||||
// 默认倍速
|
// 默认倍速
|
||||||
playSpeedDefault = 'playSpeedDefault',
|
playSpeedDefault = 'playSpeedDefault',
|
||||||
// 默认长按倍速
|
// 默认长按倍速
|
||||||
|
Reference in New Issue
Block a user