request_select.dart 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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/components/template.dart';
  8. import 'package:telnow_mobile_new/src/layouts/web/request_create.dart';
  9. import 'package:telnow_mobile_new/src/utils/U.dart';
  10. import 'package:telnow_mobile_new/src/utils/provider.dart';
  11. class WebReqSelectPage extends StatefulWidget {
  12. String title;
  13. String? groupCode;
  14. String scope;
  15. String? tenantCode;
  16. String? placeholder;
  17. Map<String, dynamic> user;
  18. WebReqSelectPage({required this.title, this.groupCode, required this.scope, this.tenantCode, required this.user, this.placeholder, super.key});
  19. @override
  20. State<WebReqSelectPage> createState() => _WebReqSelectPageState();
  21. }
  22. class _WebReqSelectPageState extends State<WebReqSelectPage> {
  23. final RequestFunction reqFunc = RequestFunction();
  24. TextEditingController searchController = TextEditingController()..text = '';
  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: PreferredSize(preferredSize: Size.fromHeight(0), child: AppBar(elevation: 0, backgroundColor: primaryColor)),
  45. body: Column(
  46. children: [
  47. Container(
  48. padding: EdgeInsets.symmetric(vertical: 25, horizontal: 100),
  49. child: Row(
  50. children: [
  51. Text(widget.title, style: TextStyle(color: textColor, fontSize: 17, fontWeight: FontWeight.w500), overflow: TextOverflow.ellipsis),
  52. SizedBox(width: 50),
  53. Expanded(
  54. child: SizedBox(
  55. width: double.infinity,
  56. child: TextField(
  57. style: const TextStyle(fontSize: 14, color: Colors.black),
  58. controller: searchController,
  59. autofocus: widget.groupCode == null,
  60. decoration: InputDecoration(
  61. hintText: Provider.of<RequestModule>(context).placeholder(),
  62. hintStyle: TextStyle(color: textColor.withValues(alpha: 0.5), fontSize: 14),
  63. filled: true,
  64. fillColor: backgroundColor,
  65. hoverColor: Colors.black.withValues(alpha: 0.1),
  66. contentPadding: EdgeInsets.all(15),
  67. prefixIcon: Padding(padding: EdgeInsets.symmetric(horizontal: 15), child: U.iconsax('search-normal-1', color: textColor, size: 24)),
  68. border: InputBorder.none,
  69. enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(50), borderSide: BorderSide(color: Color(0xff262626).withValues(alpha: 0.5))),
  70. focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(50), borderSide: const BorderSide(color: primaryColor)),
  71. isDense: true
  72. ),
  73. onSubmitted: (val){
  74. reqFunc.getData(context, val, widget);
  75. }
  76. ),
  77. ),
  78. ),
  79. SizedBox(width: 20),
  80. SizedBox(
  81. height: 40, width: 100,
  82. child: ElevatedButton(
  83. style: ButtonStyle(elevation: MaterialStateProperty.all<double>(0), backgroundColor: MaterialStateProperty.all<Color>(primaryColor), shape: MaterialStateProperty.all<RoundedRectangleBorder>(RoundedRectangleBorder(borderRadius: BorderRadius.circular(50))), side: MaterialStateProperty.all<BorderSide>(BorderSide(color: primaryColor))),
  84. onPressed: ()=>reqFunc.getData(context, searchController.text.trim()==''?null:searchController.text.trim(), widget),
  85. child: Text('searchButton'.tr(), style: TextStyle(fontSize: 14, color: Colors.white, fontWeight: FontWeight.w600)),
  86. ),
  87. ),
  88. SizedBox(width: 50),
  89. GestureDetector(
  90. child: Text('buttonBack'.tr(), style: TextStyle(color: primaryColor, fontSize: 14)),
  91. onTap: ()=>navigateBack(context),
  92. )
  93. ],
  94. ),
  95. ),
  96. divider(),
  97. Expanded(
  98. child: Provider.of<RequestModule>(context).isLoad()? loadingTemplate() : Container(
  99. width: double.infinity,
  100. child: SingleChildScrollView(
  101. padding: EdgeInsets.symmetric(vertical: 25, horizontal: 100),
  102. child: Provider.of<RequestModule>(context).isEmpty() ? Center(child: Padding(
  103. padding: const EdgeInsets.only(top: 24.0),
  104. child: Column(
  105. mainAxisSize: MainAxisSize.min,
  106. children: [
  107. kIsWeb && !isCanvasKit ? Container(
  108. width: 150, margin: EdgeInsets.only(top: 20, bottom: 10), padding: EdgeInsets.all(10),
  109. child: Image(image: AssetImage('assets/image/error/EmptyData.png'))
  110. ) : Lottie.asset('assets/image/lottie/Nodata.json', width: 250, height: 250, fit: BoxFit.fill),
  111. RichText(text: TextSpan(
  112. style: TextStyle(color: textColor.withValues(alpha: 0.65), fontStyle: FontStyle.italic, height: 1.5, fontSize: 16.0),
  113. children: <TextSpan>[
  114. TextSpan(text: U.getInternetStatus()?'notFoundKeyword'.tr():'noDataText'.tr()),
  115. TextSpan(text: U.getInternetStatus()?'"${Provider.of<RequestModule>(context).keyword()}".':'', style: TextStyle(fontWeight: FontWeight.w600)),
  116. ]
  117. ), textAlign: TextAlign.center)
  118. ],
  119. )
  120. )) : LayoutBuilder(
  121. builder: (context, constraints) {
  122. double size = (constraints.maxWidth/6)-13;
  123. double minWidth = 185;
  124. double minHeight = 250;
  125. return Wrap(
  126. spacing: 15, runSpacing: 15,
  127. children: List.generate(Provider.of<RequestModule>(context).data().length, (i){
  128. return GestureDetector(
  129. child: ConstrainedBox(
  130. constraints: BoxConstraints(minWidth: minWidth, minHeight: minHeight),
  131. child: Container(
  132. width: size, height: size*1.4,
  133. child: Column(
  134. crossAxisAlignment: CrossAxisAlignment.start,
  135. children: [
  136. Expanded(child: imageTiles(imageUrl: Provider.of<RequestModule>(context).data()[i]['_mobileImage'] ?? "null", width: double.infinity, height: double.infinity)),
  137. Container(
  138. height: ((size*1.4) > minHeight ? (size*1.4) : minHeight) / 2.3,
  139. padding: EdgeInsets.fromLTRB(6, 12, 6, 0),
  140. child: Column(
  141. crossAxisAlignment: CrossAxisAlignment.start,
  142. children: [
  143. Text(Provider.of<RequestModule>(context).data()[i][U.langColumn(context, 'subject')], style: TextStyle(color: textColor, fontWeight: FontWeight.w600), maxLines: 2, overflow: TextOverflow.ellipsis),
  144. dashed(),
  145. Text(Provider.of<RequestModule>(context).data()[i][U.langColumn(context, 'subjectDescription')], style: TextStyle(color: textColor), maxLines: 2, overflow: TextOverflow.ellipsis)
  146. ],
  147. ),
  148. )
  149. ],
  150. ),
  151. decoration: BoxDecoration(color: Colors.white, border: Border.all(color: textColor.withValues(alpha: 0.15)), borderRadius: BorderRadius.all(Radius.circular(12))),
  152. ),
  153. ),
  154. onTap: ()=>navigateTo(context, WebReqCreatePage(user: widget.user, request: Provider.of<RequestModule>(context, listen: false).data()[i], fromSearch: true)),
  155. );
  156. }),
  157. );
  158. },
  159. ),
  160. ),
  161. ),
  162. )
  163. ],
  164. ),
  165. );
  166. }
  167. }