request_select.dart 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. import 'package:easy_localization/easy_localization.dart';
  2. import 'package:flutter/foundation.dart';
  3. import 'package:flutter/material.dart';
  4. import 'package:lottie/lottie.dart';
  5. import 'package:provider/provider.dart';
  6. import 'package:telnow_mobile_new/src/layouts/functions/request.dart';
  7. import 'package:telnow_mobile_new/src/layouts/mobile/request_create.dart';
  8. import 'package:telnow_mobile_new/src/layouts/components/template.dart';
  9. import 'package:telnow_mobile_new/src/utils/U.dart';
  10. import 'package:telnow_mobile_new/src/utils/provider.dart';
  11. class MobReqSelectPage extends StatefulWidget {
  12. String title;
  13. String? groupCode;
  14. String scope;
  15. String? tenantCode;
  16. String? placeholder;
  17. Map<String, dynamic> user;
  18. MobReqSelectPage({required this.title, this.groupCode, required this.scope, this.tenantCode, required this.user, this.placeholder, super.key});
  19. @override
  20. State<MobReqSelectPage> createState() => _MobReqSelectPageState();
  21. }
  22. class _MobReqSelectPageState extends State<MobReqSelectPage> {
  23. final RequestFunction reqFunc = RequestFunction();
  24. final debounce = Debouncer(milliseconds: 1000);
  25. @override
  26. void initState() {
  27. WidgetsBinding.instance.addPostFrameCallback((_) {
  28. Provider.of<RequestModule>(context, listen: false).reset();
  29. if(widget.groupCode != null){
  30. Provider.of<RequestModule>(context, listen: false).setPlaceholder('${'searchIn'.tr()} ${widget.title}');
  31. reqFunc.getData(context, null, widget);
  32. }
  33. else{
  34. Provider.of<RequestModule>(context, listen: false).setPlaceholder(widget.placeholder ?? '');
  35. }
  36. });
  37. // TODO: implement initState
  38. super.initState();
  39. }
  40. @override
  41. Widget build(BuildContext context) {
  42. return Scaffold(
  43. backgroundColor: backgroundColor,
  44. appBar: appBarTemplate(context: context, exc: false, title: widget.title),
  45. body: Column(
  46. children: [
  47. Container(
  48. padding: EdgeInsets.fromLTRB(16, 0, 16, 16),
  49. child: SizedBox(
  50. width: double.infinity,
  51. child: TextField(
  52. style: const TextStyle(fontSize: 14, color: Colors.black),
  53. autofocus: widget.groupCode == null,
  54. decoration: InputDecoration(
  55. hintText: Provider.of<RequestModule>(context).placeholder(),
  56. hintStyle: TextStyle(color: textColor.withValues(alpha: 0.5), fontSize: 14),
  57. filled: true,
  58. fillColor: backgroundColor,
  59. hoverColor: Colors.black.withValues(alpha: 0.1),
  60. contentPadding: EdgeInsets.all(13),
  61. prefixIcon: Padding(padding: EdgeInsets.only(left: 20, right: 13), child: U.iconsax('search-normal-1', color: textColor, size: 24)),
  62. border: InputBorder.none,
  63. enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(50), borderSide: BorderSide(color: Color(0xff262626).withValues(alpha: 0.5))),
  64. focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(50), borderSide: const BorderSide(color: primaryColor)),
  65. isDense: true
  66. ),
  67. onChanged: (val){
  68. debounce.run(() {
  69. reqFunc.getData(context, val, widget);
  70. });
  71. }
  72. ),
  73. ),
  74. ),
  75. divider(),
  76. Expanded(
  77. child: Container(
  78. alignment: Alignment.topCenter,
  79. width: U.bodyWidth(context),
  80. child: Provider.of<RequestModule>(context).isLoad()? loadingTemplate() : SingleChildScrollView(
  81. padding: EdgeInsets.symmetric(horizontal: 16),
  82. child: Provider.of<RequestModule>(context).isEmpty() ? Center(child: Padding(
  83. padding: const EdgeInsets.only(top: 24.0),
  84. child: Column(
  85. mainAxisSize: MainAxisSize.min,
  86. children: [
  87. kIsWeb && !isCanvasKit ? Container(
  88. width: 150, margin: EdgeInsets.only(top: 20, bottom: 10), padding: EdgeInsets.all(10),
  89. child: Image(image: AssetImage('assets/image/error/EmptyData.png'))
  90. ) : Lottie.asset('assets/image/lottie/Nodata.json', width: 250, height: 250, fit: BoxFit.fill),
  91. RichText(text: TextSpan(
  92. style: TextStyle(color: textColor.withValues(alpha: 0.65), fontStyle: FontStyle.italic, height: 1.5, fontSize: 16.0),
  93. children: <TextSpan>[
  94. TextSpan(text: U.getInternetStatus()?'notFoundKeyword'.tr():'noDataText'.tr()),
  95. TextSpan(text: U.getInternetStatus()?'"${Provider.of<RequestModule>(context).keyword()}".':'', style: TextStyle(fontWeight: FontWeight.w600)),
  96. ]
  97. ),textAlign: TextAlign.center)
  98. ],
  99. )
  100. )) : Column(
  101. children: List.generate(Provider.of<RequestModule>(context).data().length, (i){
  102. return GestureDetector(
  103. child: requestTiles(
  104. image: Provider.of<RequestModule>(context).data()[i]['_mobileImage'] ?? "null",
  105. title: Provider.of<RequestModule>(context).data()[i][U.langColumn(context, 'subject')],
  106. subtitle: Provider.of<RequestModule>(context).data()[i][U.langColumn(context, 'subjectDescription')],
  107. ),
  108. onTap: ()=>navigateTo(context, MobReqCreatePage(user: widget.user, request: Provider.of<RequestModule>(context, listen: false).data()[i], fromSearch: true)),
  109. );
  110. }),
  111. ),
  112. ),
  113. ),
  114. )
  115. ],
  116. ),
  117. );
  118. }
  119. }