123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- import 'package:cpt_notice_board/modules/notice_board/page/notice_board_page.dart';
- import 'package:flutter/material.dart';
- import 'package:auto_route/auto_route.dart';
- import 'package:flutter_hooks/flutter_hooks.dart';
- import 'package:hooks_riverpod/hooks_riverpod.dart';
- import 'package:plugin_basic/modules/global_web_page.dart';
- import 'package:router/ext/auto_router_extensions.dart';
- import 'package:shared/utils/log_utils.dart';
- import 'package:shared/utils/color_utils.dart';
- import 'package:widgets/ext/ex_widget.dart';
- import 'package:widgets/load_state_layout.dart';
- import 'package:widgets/my_load_image.dart';
- import 'package:widgets/widget_export.dart';
- import 'package:cs_resources/generated/assets.dart';
- import '../../../router/page/notice_board_page_router.dart';
- import '../../documents_list/page/documents_list_page.dart';
- import '../vm/documents_vm.dart';
- @RoutePage()
- class DocumentsPage extends HookConsumerWidget {
- const DocumentsPage({Key? key}) : super(key: key);
- //启动当前页面
- static void startInstance({BuildContext? context}) {
- if (context != null) {
- context.router.push(const DocumentsPageRoute());
- } else {
- appRouter.push(const DocumentsPageRoute());
- }
- }
- Widget _buildItemLeftSection(BuildContext context, WidgetRef ref, item, _vm) {
- return Container(
- // color: Colors.blue,
- child: Text(
- item['name'],
- maxLines: 1, // 设置最大行数为2
- overflow: TextOverflow.ellipsis, // 超出部分用省略号表示
- style: const TextStyle(
- fontSize: 16.0,
- color: Colors.black,
- fontWeight: FontWeight.w700), // 设置字体大小
- ),
- ).marginOnly(right: 17.5);
- }
- Widget _buildItemRightSection(
- BuildContext context, WidgetRef ref, item, _vm) {
- return Container(
- color: Colors.white,
- child: TextButton(
- onPressed: () {
- DocumentsListPage.startInstance(id: item['id']);
- // DocumentsListPage.startInstance(context: context);
- },
- style: TextButton.styleFrom(
- foregroundColor: Colors.black,
- backgroundColor: ColorUtils.string2Color('#4161D0'), // 背景颜色
- minimumSize: const Size(91.5, 30), // 最小宽度和高度
- padding:
- const EdgeInsets.symmetric(horizontal: 11.0, vertical: 9), // 内边距
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(5), // 圆角
- side: BorderSide(
- color: ColorUtils.string2Color('#4161D0'),
- width: 1.0,
- ), // 边框
- ),
- ),
- child: const Text(
- 'Open Folder',
- style: const TextStyle(
- color: Colors.white,
- ),
- ),
- ),
- );
- }
- // listitem
- Widget _buildSaleItem(BuildContext context, WidgetRef ref, item, _vm) {
- String url = item['url'];
- return Container(
- decoration: const BoxDecoration(
- color: Colors.white,
- borderRadius: BorderRadius.all(Radius.circular(6.0)),
- boxShadow: [
- BoxShadow(color: Color.fromRGBO(184, 191, 217, 0.3), blurRadius: 6)
- ],
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- crossAxisAlignment: CrossAxisAlignment.center,
- mainAxisSize: MainAxisSize.max,
- children: [
- Container(
- width: MediaQuery.of(context).size.width - 30,
- height: 70,
- child: Row(
- mainAxisAlignment: MainAxisAlignment.start,
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- Expanded(child: _buildItemLeftSection(context, ref, item, _vm)),
- url == ''
- ? Container(
- width: 120,
- child: _buildItemRightSection(context, ref, item, _vm),
- // child: TextButton(onPressed: (){}, child: Text("fdsfds")),
- )
- : Container(),
- ],
- ).paddingOnly(left: 20, right: 20),
- ).constrained(
- minHeight: 70,
- ),
- ],
- ).onTap(() {
- // 去详情
- if (url != '') {
- // _vm.launchURL(url);
- GlobalWebPage.startInstance(
- context: context, title: item['name'], url: url);
- }
- // DocumentsListPage.startInstance(context: context);
- }),
- ).marginOnly(left: 15, bottom: 15, right: 15);
- }
- // list
- Widget _buildSaleList(BuildContext context, WidgetRef ref, _vm) {
- final state = ref.watch(documentsVmProvider);
- return SliverList(
- delegate: SliverChildBuilderDelegate((context, index) {
- return _buildSaleItem(context, ref, state.list![index], _vm);
- }, childCount: state.list!.length));
- }
- @override
- Widget build(BuildContext context, WidgetRef ref) {
- final vm = ref.read(documentsVmProvider.notifier);
- final state = ref.watch(documentsVmProvider);
- useEffect(() {
- // 组件挂载时执行 - 执行接口请求
- Future.microtask(() => vm.initPageData());
- return () {
- // 组件卸载时执行
- Log.d("property_news_page 组件卸载时执行");
- };
- }, []);
- return Scaffold(
- // appBar: AppBar(title: Text("资产")),
- body: SizedBox(
- width: double.infinity,
- height: double.infinity,
- child: EasyRefresh(
- controller: vm.refreshController,
- // 上拉加载
- onLoad: () async {
- Log.d("----onLoad");
- vm.loadMore();
- },
- // 下拉刷新
- onRefresh: () async {
- Log.d("----onRefresh");
- vm.onRefresh();
- },
- child: Container(
- color: ColorUtils.string2Color('#F2F3F6'),
- padding: const EdgeInsets.only(top: 15),
- child: LoadStateLayout(
- state: state.loadingState,
- errorMessage: state.errorMessage,
- errorRetry: () {
- vm.retryRequest();
- },
- successSliverWidget: [_buildSaleList(context, ref, vm)],
- ),
- ))),
- );
- }
- }
|