mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-17 15:46:14 +08:00
302 lines
9.8 KiB
Dart
302 lines
9.8 KiB
Dart
import 'package:PiliPlus/common/skeleton/video_reply.dart';
|
|
import 'package:PiliPlus/common/widgets/image/network_img_layer.dart';
|
|
import 'package:PiliPlus/common/widgets/loading_widget/http_error.dart';
|
|
import 'package:PiliPlus/common/widgets/refresh_indicator.dart';
|
|
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/models/common/image_type.dart';
|
|
import 'package:PiliPlus/models_new/video/video_note_list/list.dart';
|
|
import 'package:PiliPlus/pages/common/slide/common_slide_page.dart';
|
|
import 'package:PiliPlus/pages/video/note/controller.dart';
|
|
import 'package:PiliPlus/pages/webview/view.dart';
|
|
import 'package:PiliPlus/utils/accounts.dart';
|
|
import 'package:PiliPlus/utils/extension.dart';
|
|
import 'package:extended_nested_scroll_view/extended_nested_scroll_view.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class NoteListPage extends CommonSlidePage {
|
|
const NoteListPage({
|
|
super.key,
|
|
super.enableSlide,
|
|
required this.heroTag,
|
|
required this.oid,
|
|
required this.isStein,
|
|
required this.title,
|
|
});
|
|
|
|
final String? heroTag;
|
|
final int oid;
|
|
final bool isStein;
|
|
final String? title;
|
|
|
|
@override
|
|
State<NoteListPage> createState() => _NoteListPageState();
|
|
}
|
|
|
|
class _NoteListPageState extends State<NoteListPage>
|
|
with SingleTickerProviderStateMixin, CommonSlideMixin {
|
|
late final _controller = Get.put(
|
|
NoteListPageCtr(oid: widget.oid),
|
|
tag: widget.heroTag,
|
|
);
|
|
|
|
@override
|
|
void dispose() {
|
|
Get.delete<NoteListPageCtr>(tag: widget.heroTag);
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget buildPage(ThemeData theme) {
|
|
return Scaffold(
|
|
resizeToAvoidBottomInset: false,
|
|
body: Column(
|
|
children: [
|
|
SizedBox(
|
|
height: 45,
|
|
child: AppBar(
|
|
primary: false,
|
|
automaticallyImplyLeading: false,
|
|
titleSpacing: 16,
|
|
toolbarHeight: 45,
|
|
backgroundColor: Colors.transparent,
|
|
title: Obx(() {
|
|
final count = _controller.count.value;
|
|
return Text('笔记${count == -1 ? '' : '($count)'}');
|
|
}),
|
|
shape: Border(
|
|
bottom: BorderSide(
|
|
color: theme.colorScheme.outline.withValues(alpha: 0.1),
|
|
),
|
|
),
|
|
actions: [
|
|
IconButton(
|
|
tooltip: '关闭',
|
|
icon: const Icon(Icons.close, size: 20),
|
|
onPressed: Get.back,
|
|
),
|
|
const SizedBox(width: 2),
|
|
],
|
|
),
|
|
),
|
|
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) {
|
|
Widget child = refreshIndicator(
|
|
onRefresh: _controller.onRefresh,
|
|
child: CustomScrollView(
|
|
key: _key,
|
|
physics: const AlwaysScrollableScrollPhysics(),
|
|
slivers: [
|
|
SliverPadding(
|
|
padding: const EdgeInsets.only(bottom: 100),
|
|
sliver: Obx(
|
|
() => _buildBody(theme, _controller.loadingState.value),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
if (_isNested) {
|
|
child = ExtendedVisibilityDetector(
|
|
uniqueKey: const Key('note-list'),
|
|
child: child,
|
|
);
|
|
}
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
children: [
|
|
Expanded(child: child),
|
|
Container(
|
|
padding: EdgeInsets.only(
|
|
left: 12,
|
|
right: 12,
|
|
top: 6,
|
|
bottom: MediaQuery.viewPaddingOf(context).bottom + 6,
|
|
),
|
|
decoration: BoxDecoration(
|
|
color: theme.colorScheme.onInverseSurface,
|
|
border: Border(
|
|
top: BorderSide(
|
|
width: 0.5,
|
|
color: theme.colorScheme.outline.withValues(alpha: 0.1),
|
|
),
|
|
),
|
|
),
|
|
child: Builder(
|
|
builder: (context) => FilledButton.tonal(
|
|
style: FilledButton.styleFrom(
|
|
tapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
|
padding: EdgeInsets.zero,
|
|
shape: const RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.all(Radius.circular(6)),
|
|
),
|
|
),
|
|
onPressed: () {
|
|
if (!Accounts.main.isLogin) {
|
|
SmartDialog.showToast('账号未登录');
|
|
return;
|
|
}
|
|
Scaffold.of(context).showBottomSheet(
|
|
constraints: const BoxConstraints(),
|
|
(context) => WebviewPage(
|
|
oid: widget.oid,
|
|
title: widget.title,
|
|
url:
|
|
'https://www.bilibili.com/h5/note-app?oid=${widget.oid}&pagefrom=ugcvideo&is_stein_gate=${widget.isStein ? 1 : 0}',
|
|
),
|
|
);
|
|
},
|
|
child: const Text('开始记笔记'),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _buildBody(
|
|
ThemeData theme,
|
|
LoadingState<List<VideoNoteItemModel>?> loadingState,
|
|
) {
|
|
late final divider = Divider(
|
|
height: 1,
|
|
color: theme.colorScheme.outline.withValues(alpha: 0.1),
|
|
);
|
|
return switch (loadingState) {
|
|
Loading() => SliverPrototypeExtentList.builder(
|
|
prototypeItem: const VideoReplySkeleton(),
|
|
itemBuilder: (_, _) => const VideoReplySkeleton(),
|
|
itemCount: 8,
|
|
),
|
|
Success(:var response) =>
|
|
response?.isNotEmpty == true
|
|
? SliverList.separated(
|
|
itemBuilder: (context, index) {
|
|
if (index == response.length - 1) {
|
|
_controller.onLoadMore();
|
|
}
|
|
return _itemWidget(theme, response[index]);
|
|
},
|
|
itemCount: response!.length,
|
|
separatorBuilder: (context, index) => divider,
|
|
)
|
|
: HttpError(onReload: _controller.onReload),
|
|
Error(:var errMsg) => HttpError(
|
|
errMsg: errMsg,
|
|
onReload: _controller.onReload,
|
|
),
|
|
};
|
|
}
|
|
|
|
Widget _itemWidget(ThemeData theme, VideoNoteItemModel item) {
|
|
return Material(
|
|
type: MaterialType.transparency,
|
|
child: InkWell(
|
|
onTap: () => Get.toNamed(
|
|
'/articlePage',
|
|
parameters: {
|
|
'id': item.cvid!.toString(),
|
|
'type': 'read',
|
|
},
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(12),
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
GestureDetector(
|
|
onTap: () => Get.toNamed('/member?mid=${item.author!.mid}'),
|
|
child: NetworkImgLayer(
|
|
height: 34,
|
|
width: 34,
|
|
src: item.author!.face,
|
|
type: ImageType.avatar,
|
|
),
|
|
),
|
|
const SizedBox(width: 12),
|
|
Expanded(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
GestureDetector(
|
|
onTap: () =>
|
|
Get.toNamed('/member?mid=${item.author!.mid}'),
|
|
child: Row(
|
|
children: [
|
|
Text(
|
|
item.author!.name!,
|
|
style: TextStyle(
|
|
color:
|
|
item.author?.vipInfo?.status != null &&
|
|
item.author!.vipInfo!.status > 0 &&
|
|
item.author!.vipInfo!.type == 2
|
|
? theme.colorScheme.vipColor
|
|
: theme.colorScheme.outline,
|
|
fontSize: 13,
|
|
),
|
|
),
|
|
const SizedBox(width: 6),
|
|
Image.asset(
|
|
'assets/images/lv/lv${item.author!.isSeniorMember == 1 ? '6_s' : item.author!.level}.png',
|
|
height: 11,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
const SizedBox(height: 4),
|
|
if (item.pubtime != null)
|
|
Text(
|
|
item.pubtime!,
|
|
style: TextStyle(
|
|
color: theme.colorScheme.outline,
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
if (item.summary != null) ...[
|
|
const SizedBox(height: 5),
|
|
Text(
|
|
item.summary!,
|
|
style: TextStyle(
|
|
height: 1.75,
|
|
fontSize: theme.textTheme.bodyMedium!.fontSize,
|
|
),
|
|
),
|
|
Text(
|
|
'查看全部',
|
|
style: TextStyle(
|
|
color: theme.colorScheme.primary,
|
|
height: 1.75,
|
|
fontSize: theme.textTheme.bodyMedium!.fontSize,
|
|
),
|
|
),
|
|
],
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|