mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
175 lines
6.0 KiB
Dart
175 lines
6.0 KiB
Dart
import 'package:PiliPlus/models_new/video/video_ai_conclusion/model_result.dart';
|
|
import 'package:PiliPlus/pages/common/slide/common_slide_page.dart';
|
|
import 'package:PiliPlus/pages/video/controller.dart';
|
|
import 'package:PiliPlus/pages/video/introduction/ugc/widgets/selectable_text.dart';
|
|
import 'package:PiliPlus/utils/duration_utils.dart';
|
|
import 'package:extended_nested_scroll_view/extended_nested_scroll_view.dart';
|
|
import 'package:flutter/gestures.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class AiConclusionPanel extends CommonSlidePage {
|
|
final AiConclusionResult item;
|
|
|
|
const AiConclusionPanel({
|
|
super.key,
|
|
required this.item,
|
|
});
|
|
|
|
@override
|
|
State<AiConclusionPanel> createState() => _AiDetailState();
|
|
}
|
|
|
|
class _AiDetailState extends State<AiConclusionPanel>
|
|
with SingleTickerProviderStateMixin, CommonSlideMixin {
|
|
@override
|
|
Widget buildPage(ThemeData theme) {
|
|
return Material(
|
|
color: theme.colorScheme.surface,
|
|
child: Column(
|
|
children: [
|
|
GestureDetector(
|
|
onTap: Get.back,
|
|
child: Container(
|
|
height: 35,
|
|
padding: const EdgeInsets.only(bottom: 2),
|
|
child: Center(
|
|
child: Container(
|
|
width: 32,
|
|
height: 3,
|
|
decoration: BoxDecoration(
|
|
color: theme.colorScheme.primary,
|
|
borderRadius: const BorderRadius.all(Radius.circular(3)),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Expanded(
|
|
child: enableSlide ? slideList(theme) : buildList(theme),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
late Key _key;
|
|
late bool _isNested;
|
|
|
|
@override
|
|
void didChangeDependencies() {
|
|
super.didChangeDependencies();
|
|
final controller = PrimaryScrollController.of(context);
|
|
_isNested = controller is ExtendedNestedScrollController;
|
|
_key = ValueKey(controller.hashCode);
|
|
}
|
|
|
|
@override
|
|
Widget buildList(ThemeData theme) {
|
|
final child = CustomScrollView(
|
|
key: _key,
|
|
physics: const AlwaysScrollableScrollPhysics(),
|
|
slivers: [
|
|
if (widget.item.summary?.isNotEmpty == true) ...[
|
|
SliverToBoxAdapter(
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 14),
|
|
child: selectableText(
|
|
widget.item.summary!,
|
|
style: const TextStyle(
|
|
fontSize: 15,
|
|
height: 1.5,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
if (widget.item.outline?.isNotEmpty == true)
|
|
SliverToBoxAdapter(
|
|
child: Divider(
|
|
height: 20,
|
|
color: theme.dividerColor.withValues(alpha: 0.1),
|
|
thickness: 6,
|
|
),
|
|
),
|
|
],
|
|
if (widget.item.outline?.isNotEmpty == true)
|
|
SliverPadding(
|
|
padding: EdgeInsets.only(
|
|
left: 14,
|
|
right: 14,
|
|
bottom: MediaQuery.viewPaddingOf(context).bottom + 100,
|
|
),
|
|
sliver: SliverList.builder(
|
|
itemCount: widget.item.outline!.length,
|
|
itemBuilder: (context, index) {
|
|
final item = widget.item.outline![index];
|
|
return SelectionArea(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
if (index != 0) const SizedBox(height: 10),
|
|
Text(
|
|
item.title!,
|
|
style: const TextStyle(
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.bold,
|
|
height: 1.5,
|
|
),
|
|
),
|
|
const SizedBox(height: 6),
|
|
...?item.partOutline?.map(
|
|
(item) => Wrap(
|
|
children: [
|
|
Text.rich(
|
|
TextSpan(
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: theme.colorScheme.onSurface,
|
|
height: 1.5,
|
|
),
|
|
children: [
|
|
TextSpan(
|
|
text: DurationUtils.formatDuration(
|
|
item.timestamp,
|
|
),
|
|
style: TextStyle(
|
|
color: theme.colorScheme.primary,
|
|
),
|
|
recognizer: TapGestureRecognizer()
|
|
..onTap = () {
|
|
try {
|
|
Get.find<VideoDetailController>(
|
|
tag: Get.arguments['heroTag'],
|
|
).plPlayerController.seekTo(
|
|
Duration(seconds: item.timestamp!),
|
|
isSeek: false,
|
|
);
|
|
} catch (_) {}
|
|
},
|
|
),
|
|
const TextSpan(text: ' '),
|
|
TextSpan(text: item.content!),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
);
|
|
if (_isNested) {
|
|
return ExtendedVisibilityDetector(
|
|
uniqueKey: const Key('ai-conclusion'),
|
|
child: child,
|
|
);
|
|
}
|
|
return child;
|
|
}
|
|
}
|