mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
128 lines
4.4 KiB
Dart
128 lines
4.4 KiB
Dart
import 'package:PiliPlus/common/skeleton/msg_feed_top.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/blacklist/list.dart';
|
|
import 'package:PiliPlus/pages/blacklist/controller.dart';
|
|
import 'package:PiliPlus/utils/date_util.dart';
|
|
import 'package:PiliPlus/utils/global_data.dart';
|
|
import 'package:PiliPlus/utils/storage_pref.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class BlackListPage extends StatefulWidget {
|
|
const BlackListPage({super.key});
|
|
|
|
@override
|
|
State<BlackListPage> createState() => _BlackListPageState();
|
|
}
|
|
|
|
class _BlackListPageState extends State<BlackListPage> {
|
|
final _blackListController = Get.put(BlackListController());
|
|
|
|
@override
|
|
void dispose() {
|
|
if (_blackListController.loadingState.value.isSuccess) {
|
|
final blackMids =
|
|
_blackListController.loadingState.value.data
|
|
?.map((e) => e.mid!)
|
|
.toSet() ??
|
|
{};
|
|
GlobalData().blackMids = blackMids;
|
|
Pref.blackMids = blackMids;
|
|
}
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Obx(
|
|
() => Text(
|
|
'黑名单管理${_blackListController.total.value == -1 ? '' : ': ${_blackListController.total.value}'}',
|
|
),
|
|
),
|
|
),
|
|
body: refreshIndicator(
|
|
onRefresh: _blackListController.onRefresh,
|
|
child: CustomScrollView(
|
|
physics: const AlwaysScrollableScrollPhysics(),
|
|
controller: _blackListController.scrollController,
|
|
slivers: [
|
|
SliverPadding(
|
|
padding: EdgeInsets.only(
|
|
bottom: MediaQuery.paddingOf(context).bottom + 80,
|
|
),
|
|
sliver: Obx(
|
|
() => _buildBody(_blackListController.loadingState.value),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildBody(LoadingState<List<BlackListItem>?> loadingState) {
|
|
late final style = TextStyle(color: Theme.of(context).colorScheme.outline);
|
|
return switch (loadingState) {
|
|
Loading() => SliverList.builder(
|
|
itemCount: 12,
|
|
itemBuilder: (context, index) {
|
|
return const MsgFeedTopSkeleton();
|
|
},
|
|
),
|
|
Success(:var response) =>
|
|
response?.isNotEmpty == true
|
|
? SliverList.builder(
|
|
itemCount: response!.length,
|
|
itemBuilder: (BuildContext context, int index) {
|
|
if (index == response.length - 1) {
|
|
_blackListController.onLoadMore();
|
|
}
|
|
final item = response[index];
|
|
return ListTile(
|
|
onTap: () => Get.toNamed('/member?mid=${item.mid}'),
|
|
leading: NetworkImgLayer(
|
|
width: 45,
|
|
height: 45,
|
|
type: ImageType.avatar,
|
|
src: item.face,
|
|
),
|
|
title: Text(
|
|
item.uname!,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
style: const TextStyle(fontSize: 14),
|
|
),
|
|
subtitle: Text(
|
|
'添加时间: ${DateUtil.format(item.mtime, format: DateUtil.longFormatDs)}',
|
|
maxLines: 1,
|
|
style: style,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
dense: true,
|
|
trailing: TextButton(
|
|
onPressed: () => _blackListController.onRemove(
|
|
context,
|
|
index,
|
|
item.uname,
|
|
item.mid,
|
|
),
|
|
child: const Text('移除'),
|
|
),
|
|
);
|
|
},
|
|
)
|
|
: HttpError(onReload: _blackListController.onReload),
|
|
Error(:var errMsg) => HttpError(
|
|
errMsg: errMsg,
|
|
onReload: _blackListController.onReload,
|
|
),
|
|
};
|
|
}
|
|
}
|