request_create.dart 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. import 'package:easy_localization/easy_localization.dart';
  2. import 'package:flutter/material.dart';
  3. import 'package:flutter_datetime_picker_plus/flutter_datetime_picker_plus.dart';
  4. import 'package:image_picker/image_picker.dart';
  5. import 'package:loading_indicator/loading_indicator.dart';
  6. import 'package:provider/provider.dart';
  7. import 'package:searchfield/searchfield.dart';
  8. import 'package:telnow_mobile_new/src/injector/injector.dart';
  9. import 'package:telnow_mobile_new/src/layouts/functions/request.dart';
  10. import 'package:telnow_mobile_new/src/layouts/components/template.dart';
  11. import 'package:telnow_mobile_new/src/storage/sharedpreferences/shared_preferences_manager.dart';
  12. import 'package:telnow_mobile_new/src/utils/U.dart';
  13. import 'package:telnow_mobile_new/src/utils/provider.dart';
  14. import 'package:toggle_switch/toggle_switch.dart';
  15. class WebReqCreatePage extends StatefulWidget {
  16. Map<String, dynamic> user;
  17. Map<String, dynamic> request;
  18. final bool fromSearch;
  19. WebReqCreatePage({required this.user, required this.request, this.fromSearch = false, super.key});
  20. @override
  21. State<WebReqCreatePage> createState() => _WebReqCreatePageState();
  22. }
  23. getColorScheme(val){
  24. var color;
  25. switch (val){
  26. case 0: color = Color(0xFF4FB66C); break;
  27. case 50: color = Color(0xFFFFA800); break;
  28. case 100: color = Color(0xFFC9223B); break;
  29. default: color = Color(0xFF4FB66C);
  30. }
  31. return color;
  32. }
  33. class _WebReqCreatePageState extends State<WebReqCreatePage> {
  34. final RequestFunction reqFunc = RequestFunction();
  35. final SharedPreferencesManager sharedPreferencesManager = locator<SharedPreferencesManager>();
  36. TextEditingController controllerDate = new TextEditingController()..text = '';
  37. TextEditingController controllerDateString = new TextEditingController()..text = '';
  38. TextEditingController controllerNote = new TextEditingController()..text = '';
  39. TextEditingController controllerLocation = new TextEditingController()..text = '';
  40. TextEditingController controllerUserId = new TextEditingController()..text = '';
  41. FocusNode focusNodeLocation = new FocusNode();
  42. double _currentSliderValue = 0;
  43. Color sliderColor = getColorScheme(0);
  44. @override
  45. void initState() {
  46. Provider.of<CreateSerModule>(context, listen: false).reset();
  47. WidgetsBinding.instance.addPostFrameCallback((_) {
  48. if(widget.request['scanToRequest']) Provider.of<CreateSerModule>(context, listen: false).setLocationType(2);
  49. Provider.of<CreateSerModule>(context, listen: false).setDefaultLocation(widget.user['_isRelated'] ? sharedPreferencesManager.getString(SharedPreferencesManager.keyScoope) == 'INSIDE' ? widget.user['_2ndLocation'] : widget.user['location'] : widget.user['location']);
  50. });
  51. reqFunc.getSuggestionLocation(context);
  52. U.getOtherLabelList(context);
  53. // TODO: implement initState
  54. super.initState();
  55. }
  56. @override
  57. Widget build(BuildContext context) {
  58. final FocusNode inputIdFocusNode = FocusNode();
  59. return Scaffold(
  60. backgroundColor: backgroundColor,
  61. appBar: PreferredSize(preferredSize: Size.fromHeight(0), child: AppBar(elevation: 0, backgroundColor: primaryColor)),
  62. body: Column(
  63. children: [
  64. Container(
  65. padding: EdgeInsets.symmetric(vertical: 25, horizontal: 100),
  66. child: Row(
  67. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  68. children: [
  69. Text(widget.request[U.langColumn(context, 'subject')], style: TextStyle(color: textColor, fontSize: 17, fontWeight: FontWeight.w500), overflow: TextOverflow.ellipsis),
  70. GestureDetector(
  71. child: Text('buttonBack'.tr(), style: TextStyle(color: primaryColor, fontSize: 14)),
  72. onTap: ()=>navigateBack(context),
  73. )
  74. ],
  75. ),
  76. ),
  77. divider(),
  78. Expanded(
  79. child: SingleChildScrollView(
  80. padding: EdgeInsets.symmetric(vertical: 25, horizontal: 100),
  81. child: Row(
  82. crossAxisAlignment: CrossAxisAlignment.start,
  83. children: [
  84. Expanded(
  85. child: Container(
  86. padding: EdgeInsets.all(20),
  87. decoration: BoxDecoration(color: Colors.white, border: Border.all(color: textColor.withOpacity(0.15)), borderRadius: BorderRadius.all(Radius.circular(12))),
  88. child: Column(
  89. crossAxisAlignment: CrossAxisAlignment.start,
  90. children: [
  91. Row(
  92. children: [
  93. imageTiles(imageUrl: widget.request['_mobileImage'] ?? "null", width: 110, height: 90),
  94. SizedBox(width: 20),
  95. Expanded(
  96. child: Column(
  97. crossAxisAlignment: CrossAxisAlignment.start,
  98. children: [
  99. Text(widget.request[U.langColumn(context, '_requestGroupDescription')]??'', style: TextStyle(color: textColor, fontWeight: FontWeight.w600), maxLines: 2, overflow: TextOverflow.ellipsis),
  100. dashed(),
  101. Text(widget.request[U.langColumn(context, 'subjectDescription')], style: TextStyle(color: textColor), maxLines: 3, overflow: TextOverflow.ellipsis)
  102. ],
  103. ),
  104. ),
  105. ],
  106. ),
  107. SizedBox(height: 20),
  108. widget.request['autoResponse'] ? infoContainer('autoResponseText'.tr()) : Column(
  109. crossAxisAlignment: CrossAxisAlignment.start,
  110. children: [
  111. widget.user['roomAttendant'] ? Container(
  112. margin: EdgeInsets.only(bottom: 32),
  113. child: Column(
  114. crossAxisAlignment: CrossAxisAlignment.start,
  115. children: [
  116. Text(U.otherLabelList()['main-${context.locale.toString()}']??'someone_else'.tr(), style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  117. SizedBox(height: 12),
  118. Row(
  119. children: [
  120. Container(
  121. child: ToggleSwitch(
  122. cornerRadius: 20,
  123. minWidth: 20,
  124. minHeight: 20,
  125. borderWidth: 2,
  126. activeBgColors: [[Colors.white], [Colors.white]],
  127. inactiveBgColor: Provider.of<CreateSerModule>(context).others() == 0 ? disabledColor : primaryColor,
  128. initialLabelIndex: context.watch<CreateSerModule>().others(),
  129. totalSwitches: 2,
  130. radiusStyle: true,
  131. onToggle: (index) {
  132. if(index == 1) {
  133. FocusScope.of(context).requestFocus(inputIdFocusNode);
  134. } else {
  135. FocusScope.of(context).unfocus();
  136. }
  137. context.read<CreateSerModule>().setOthers(index);
  138. },
  139. ),
  140. decoration: BoxDecoration(color: Provider.of<CreateSerModule>(context).others() == 0 ? disabledColor : primaryColor, borderRadius: BorderRadius.all(Radius.circular(20))),
  141. ),
  142. SizedBox(width: 8),
  143. Expanded(child: Text(context.watch<CreateSerModule>().others() == 0 ? 'reqForMySelf'.tr() : 'reqForOthers'.tr(), style: TextStyle(color: textColor, fontSize: 12), maxLines: 2, overflow: TextOverflow.ellipsis))
  144. ],
  145. ),
  146. context.read<CreateSerModule>().others()==1?Container(
  147. margin: EdgeInsets.only(top: 12),
  148. width: double.infinity,
  149. child: TextField(
  150. controller: controllerUserId,
  151. focusNode: inputIdFocusNode,
  152. style: const TextStyle(fontSize: 14, color: Colors.black),
  153. autofocus: context.read<CreateSerModule>().others() == 1 ? true : false,
  154. readOnly: false,
  155. decoration: InputDecoration(
  156. hintText: U.otherLabelList()['placeholder-${context.locale.toString()}']??'typeId'.tr(),
  157. hintStyle: TextStyle(color: textColor.withOpacity(0.5), fontSize: 14),
  158. filled: true,
  159. fillColor: backgroundColor,
  160. hoverColor: Colors.black.withOpacity(0.1),
  161. contentPadding: EdgeInsets.all(13),
  162. border: InputBorder.none,
  163. enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withOpacity(0.5))),
  164. focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: const BorderSide(color: primaryColor)),
  165. isDense: true
  166. ),
  167. ),
  168. ):Container()
  169. ],
  170. ),
  171. ):Container(),
  172. widget.request['noteFormat'] == 'DATE' ? Column(crossAxisAlignment: CrossAxisAlignment.start, children: [
  173. Text("askScheduleTime".tr(), style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  174. SizedBox(height: 8,),
  175. TextField(
  176. controller: controllerDate,
  177. style: TextStyle(fontSize: 14, color: Colors.black),
  178. readOnly: true,
  179. decoration: InputDecoration(
  180. hintText: 'selectDate'.tr(),
  181. hintStyle: TextStyle(color: textColor.withOpacity(0.5), fontSize: 14),
  182. filled: true,
  183. fillColor: backgroundColor,
  184. hoverColor: Colors.black.withOpacity(0.1),
  185. contentPadding: EdgeInsets.all(13),
  186. prefixIcon: Padding(padding: EdgeInsets.only(left: 13, right: 13), child: U.iconsax('calendar-edit', color: textColor, size: 24)),
  187. border: InputBorder.none,
  188. enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withOpacity(0.5))),
  189. focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: const BorderSide(color: primaryColor)),
  190. isDense: true
  191. ),
  192. onTap: () {
  193. DatePicker.showDateTimePicker(context, showTitleActions: true,
  194. minTime: DateTime(DateTime.now().year, DateTime.now().month, DateTime.now().day, DateTime.now().hour, DateTime.now().minute),
  195. onConfirm: (date) {
  196. try {
  197. setState(() {
  198. controllerDate.text = DateFormat('dd MMM yyyy HH:mm:ss', 'id').format(date);
  199. controllerDateString.text = DateFormat('ddMMyyyy HHmm', 'id').format(date);
  200. });
  201. } catch (e) {
  202. print(e.toString());
  203. }
  204. }, currentTime: DateTime.now(), locale: LocaleType.id
  205. );
  206. },
  207. ),
  208. SizedBox(height: 32,)
  209. ],) : Container(),
  210. Column(
  211. crossAxisAlignment: CrossAxisAlignment.start,
  212. children: [
  213. Text('addImage'.tr(), style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  214. SizedBox(height: 8),
  215. context.watch<CreateSerModule>().images().length > 0 ? Container(
  216. width: double.infinity,
  217. child: LayoutBuilder(
  218. builder: (context, constraints) {
  219. var imageWidth = ((constraints.maxWidth-32)/5)-5;
  220. return Row(
  221. children: [
  222. Row(
  223. children: List.generate(context.watch<CreateSerModule>().images().length, (i){
  224. return GestureDetector(
  225. child: Container(
  226. width: imageWidth, height: imageWidth, alignment: Alignment.topRight,
  227. margin: EdgeInsets.only(right: i == 4 ? 0 : 6),
  228. child: Transform.translate(
  229. offset: Offset(3, -3),
  230. child: GestureDetector(
  231. child: Container(
  232. padding: EdgeInsets.all(3),
  233. child: Icon(Icons.close_rounded, color: Colors.white, size: 18),
  234. decoration: BoxDecoration(color: Colors.black54, border: Border.all(color: Colors.white, width: 2), borderRadius: BorderRadius.all(Radius.circular(50))),
  235. ),
  236. onTap: ()=>context.read<CreateSerModule>().removeImages(i),
  237. ),
  238. ),
  239. decoration: BoxDecoration(
  240. color: Colors.black12, borderRadius: BorderRadius.all(Radius.circular(5)), border: Border.all(color: Colors.black26, width: 0.5),
  241. image: DecorationImage(image: MemoryImage(context.read<CreateSerModule>().images()[i]), fit: BoxFit.cover)
  242. ),
  243. ),
  244. onTap: ()=>navigateTo(context, PhotoPreviewGallery(title: 'image'.tr(), imageList: context.read<CreateSerModule>().images(), startIndex: i, isUrl: false))
  245. );
  246. }),
  247. ),
  248. context.watch<CreateSerModule>().images().length < 5 ? GestureDetector(
  249. child: Container(
  250. width: imageWidth, height: imageWidth, alignment: Alignment.center,
  251. child: context.watch<CreateSerModule>().setLoadingEffect() ? SizedBox(
  252. height: 30,
  253. child: LoadingIndicator(
  254. indicatorType: Indicator.ballPulseRise,
  255. colors: U.defaultRainbowColors(),
  256. strokeWidth: 1,
  257. backgroundColor: Colors.black.withOpacity(0),
  258. pathBackgroundColor: Colors.black,
  259. ),
  260. ) : Icon(Icons.add_rounded, color: Colors.black26, size: 40),
  261. decoration: BoxDecoration(color: Colors.white, borderRadius: BorderRadius.all(Radius.circular(5)), border: Border.all(color: Colors.black26, width: 2)),
  262. ),
  263. onTap: ()=>pickupImageNew(),
  264. ) : Container(),
  265. ],
  266. );
  267. },
  268. ),
  269. ) : GestureDetector(
  270. child: Container(
  271. padding: EdgeInsets.symmetric(horizontal: 8, vertical: 12),
  272. decoration: BoxDecoration(borderRadius: BorderRadius.all(Radius.circular(10)), border: Border.all(color: Color(0xFF078C84)), color: Color(0xFFFFFFFF).withOpacity(0.2)),
  273. child: Row(
  274. children: [
  275. U.iconsax('image', color: primaryColor, size: 30),
  276. SizedBox(width: 8,),
  277. Expanded(child: Text('addImageMsg'.tr(), style: TextStyle(color: textColor, fontSize: 12, fontWeight: FontWeight.w300), maxLines: 2, overflow: TextOverflow.ellipsis)),
  278. ],
  279. ),
  280. ),
  281. onTap: ()=>pickupImageNew(),
  282. ),
  283. // Text("MBUH ==> ${U.newServerVersion(1736473802)} X ${U.retServerVersion()}"),
  284. U.newServerVersion(1736473802) ? Column(
  285. crossAxisAlignment: CrossAxisAlignment.start,
  286. children: [
  287. SizedBox(height: 36),
  288. Text('changePriority'.tr(), style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  289. SizedBox(height: 12),
  290. Container(
  291. height: 32,
  292. decoration: BoxDecoration(
  293. color: Colors.white,
  294. borderRadius: BorderRadius.circular(25.0),
  295. border: Border.all(
  296. width: 3.0,
  297. color: Colors.transparent,
  298. ),
  299. gradient: LinearGradient(
  300. colors: [
  301. Color(0xFF4FB66C).withOpacity(1),
  302. Color(0xFFFFA800).withOpacity(1),
  303. Color(0xFFC9223B).withOpacity(1),
  304. ],
  305. begin: Alignment.topLeft,
  306. end: Alignment.bottomRight,
  307. ),
  308. ),
  309. child: Container(
  310. decoration: BoxDecoration(
  311. color: Colors.white,
  312. borderRadius: BorderRadius.circular(25.0),
  313. ),
  314. child: SliderTheme(
  315. data: SliderThemeData(
  316. inactiveTrackColor: Colors.white,
  317. ),
  318. child: Slider(
  319. activeColor: sliderColor,
  320. value: _currentSliderValue,
  321. max:100,
  322. divisions: 2,
  323. onChanged: (double value) {
  324. setState(() {
  325. _currentSliderValue = value;
  326. sliderColor = getColorScheme(value);
  327. });
  328. },
  329. ),
  330. ),
  331. ),
  332. ),
  333. SizedBox(height: 4,),
  334. Center(
  335. child: Row(
  336. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  337. children: [
  338. Text('priorityLow'.tr(), style: TextStyle(fontSize: 12),),
  339. Text('priorityNormal'.tr(), style: TextStyle(fontSize: 12)),
  340. Text('priorityHigh'.tr(), style: TextStyle(fontSize: 12)),
  341. ],
  342. )
  343. )
  344. ],
  345. ) : SizedBox()
  346. ],
  347. ),
  348. ],
  349. )
  350. ],
  351. ),
  352. ),
  353. ),
  354. SizedBox(width:30),
  355. Expanded(
  356. child: Column(
  357. crossAxisAlignment: CrossAxisAlignment.start,
  358. children: [
  359. widget.request['autoResponse'] ? Container() : Column(
  360. crossAxisAlignment: CrossAxisAlignment.start,
  361. children: [
  362. Text('yourLocation'.tr(), style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  363. !widget.request['scanToRequest'] ? GestureDetector(
  364. child: Container(
  365. margin: EdgeInsets.only(top: 8),
  366. padding: EdgeInsets.symmetric(vertical: 12, horizontal: 15),
  367. decoration: BoxDecoration(
  368. color: Provider.of<CreateSerModule>(context).locationType()==1?primaryColor.withOpacity(0.15):Colors.white,
  369. border: Border.all(color: Provider.of<CreateSerModule>(context).locationType()==1?primaryColor:textColor.withOpacity(0.15)),
  370. borderRadius: BorderRadius.only(topLeft: Radius.circular(12), topRight: Radius.circular(12))
  371. ),
  372. child: Row(
  373. crossAxisAlignment: CrossAxisAlignment.center,
  374. children: [
  375. U.iconsax('location', color: textColor, size: 20),
  376. SizedBox(width: 15),
  377. Expanded(child: Column(
  378. crossAxisAlignment: CrossAxisAlignment.start,
  379. children: [
  380. Text('defaultLocation'.tr(), style: TextStyle(color: textColor, fontSize: 12, fontWeight: FontWeight.w300)),
  381. SizedBox(height: 5),
  382. Text(Provider.of<CreateSerModule>(context).defaultLocation(), style: TextStyle(color: textColor), maxLines: 2, overflow: TextOverflow.ellipsis)
  383. ],
  384. ))
  385. ],
  386. ),
  387. ),
  388. onTap: (){
  389. if(!widget.request['scanToRequest']) Provider.of<CreateSerModule>(context, listen: false).setLocationType(1);
  390. },
  391. ) : Container(),
  392. GestureDetector(
  393. child: Container(
  394. margin: EdgeInsets.only(bottom: 20, top: widget.request['scanToRequest'] ? 8 : 0),
  395. padding: EdgeInsets.symmetric(vertical: 12, horizontal: 15),
  396. decoration: BoxDecoration(
  397. color: context.watch<CreateSerModule>().locationType()==2?primaryColor.withOpacity(0.15):Colors.white,
  398. border: Border.all(color: context.watch<CreateSerModule>().locationType()==2?primaryColor:textColor.withOpacity(0.15)),
  399. borderRadius: widget.request['scanToRequest'] ? BorderRadius.all(Radius.circular(12.0)) : BorderRadius.only(bottomLeft: Radius.circular(12), bottomRight: Radius.circular(12))
  400. ),
  401. child: Row(
  402. crossAxisAlignment: CrossAxisAlignment.center,
  403. children: [
  404. U.iconsax('location', color: Color(0xffD91B1B), size: 20),
  405. SizedBox(width: 15),
  406. Expanded(
  407. child: Column(
  408. crossAxisAlignment: CrossAxisAlignment.start,
  409. children: [
  410. Text('specifyAnotherLocation'.tr(), style: TextStyle(color: textColor, fontSize: 12, fontWeight: FontWeight.w300)),
  411. SizedBox(height: 5),
  412. GestureDetector(
  413. child: SizedBox(
  414. width: double.infinity,
  415. child: SearchField(
  416. focusNode: focusNodeLocation,
  417. suggestions: context.watch<CreateSerModule>().suggestion().map((e) => SearchFieldListItem(e, child: Padding(
  418. padding: EdgeInsets.symmetric(vertical: 5, horizontal: 13),
  419. child: Text(e, style: TextStyle(fontSize: 14, color: Colors.black)),
  420. ))).toList(),
  421. controller: controllerLocation,
  422. // searchStyle: const TextStyle(fontSize: 14, color: Colors.black),
  423. enabled: true,
  424. readOnly: false,
  425. searchInputDecoration: SearchInputDecoration(
  426. hintText: 'placeholderLocation'.tr(),
  427. hintStyle: TextStyle(color: textColor.withOpacity(0.5), fontSize: 14),
  428. filled: true,
  429. fillColor: backgroundColor,
  430. hoverColor: Colors.black.withOpacity(0.1),
  431. contentPadding: EdgeInsets.all(13),
  432. border: InputBorder.none,
  433. disabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withOpacity(0.5))),
  434. enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withOpacity(0.5))),
  435. focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: const BorderSide(color: primaryColor)),
  436. isDense: true
  437. ),
  438. maxSuggestionsInViewPort: 3,
  439. itemHeight: 40,
  440. ),
  441. ),
  442. onTap: ()async{
  443. context.read<CreateSerModule>().setLocationType(2);
  444. },
  445. onTapCancel: () => print("gasido cah"),
  446. ),
  447. ],
  448. ),
  449. )
  450. ],
  451. ),
  452. ),
  453. onTap: (){
  454. context.read<CreateSerModule>().setLocationType(2);
  455. },
  456. ),
  457. ],
  458. ),
  459. widget.request['canNotCancel'] ? Padding(
  460. padding: EdgeInsets.only(top: 15),
  461. child: infoContainer('canNotCancel1'.tr()),
  462. ) : Container(),
  463. SizedBox(height: 10),
  464. widget.request['autoResponse'] ? Container() : Container(
  465. margin: EdgeInsets.only(bottom: 10),
  466. width: double.infinity,
  467. child: TextField(
  468. controller: controllerNote,
  469. style: TextStyle(fontSize: 14, color: Colors.black),
  470. minLines: 1,
  471. maxLines: 3,
  472. keyboardType: widget.request['noteFormat'] == 'NUMBER' ? TextInputType.number : null,
  473. decoration: InputDecoration(
  474. hintText: 'placeholderNote'.tr(),
  475. hintStyle: TextStyle(color: textColor.withOpacity(0.5), fontSize: 14),
  476. filled: true,
  477. fillColor: backgroundColor,
  478. hoverColor: Colors.black.withOpacity(0.1),
  479. contentPadding: EdgeInsets.all(13),
  480. prefixIcon: Padding(padding: EdgeInsets.only(left: 13, right: 13), child: U.iconsax('edit-2', color: textColor, size: 24)),
  481. border: InputBorder.none,
  482. enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide(color: Color(0xff262626).withOpacity(0.5))),
  483. focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: const BorderSide(color: primaryColor)),
  484. isDense: true
  485. ),
  486. ),
  487. ),
  488. buttonTemplate(text: 'buttonSendRequest'.tr(), action: () async{
  489. if ((Provider.of<CreateSerModule>(context, listen: false).locationType() == 2 && controllerLocation.text.trim().isNotEmpty) || (Provider.of<CreateSerModule>(context, listen: false).locationType() == 1 && Provider.of<CreateSerModule>(context, listen: false).defaultLocation() != '')) {
  490. if (controllerNote.text.length <= 128) {
  491. if (widget.user['roomAttendant'] && Provider.of<CreateSerModule>(context, listen: false).others() == 1){
  492. if (controllerUserId.text.trim().isNotEmpty){
  493. if (controllerDateString.text.trim().isEmpty && widget.request['noteFormat'] == 'DATE'){
  494. showError(context, 'dateRequired'.tr());
  495. } else {
  496. reqFunc.sendRequestToOthers(context, widget, controllerUserId, controllerNote, controllerLocation, controllerDateString, _currentSliderValue);
  497. }
  498. } else {
  499. showError(context, 'idRequired'.tr());
  500. }
  501. } else if (controllerDateString.text.trim().isNotEmpty && widget.request['noteFormat'] == 'DATE'){
  502. dialogSendLater();
  503. } else {
  504. reqFunc.sendRequest(context, widget, controllerNote, controllerLocation, controllerDateString, _currentSliderValue);
  505. }
  506. } else {
  507. showError(context, 'lengthMax'.tr());
  508. }
  509. } else {
  510. showError(context, 'locRequired'.tr());
  511. }
  512. })
  513. ],
  514. ),
  515. )
  516. ],
  517. ),
  518. ),
  519. )
  520. ],
  521. ),
  522. );
  523. }
  524. dialogSendLater(){
  525. showDialog(
  526. context: context,
  527. builder: (contexts) => AlertDialog(
  528. title: Text('sendingOpt'.tr(), style: TextStyle(color: textColor, fontSize: 16, fontWeight: FontWeight.w500)),
  529. titlePadding: EdgeInsets.all(20),
  530. contentPadding: EdgeInsets.fromLTRB(20, 4, 20, 28),
  531. content: Column(
  532. mainAxisSize: MainAxisSize.min,
  533. children: [
  534. Text('sendingOptMsg'.tr(), style: TextStyle(fontSize: 14, color: textColor)),
  535. SizedBox(height: 12),
  536. Row(
  537. children: [
  538. Expanded(
  539. child: GestureDetector(
  540. child: Container(
  541. padding: EdgeInsets.symmetric(vertical: 20),
  542. child: Column(
  543. mainAxisSize: MainAxisSize.min,
  544. children: [
  545. U.iconsax('timer-start', color: Colors.white, size: 30),
  546. SizedBox(height: 9),
  547. Text('scheduled'.tr(), style: TextStyle(color: Colors.white, fontSize: 14))
  548. ],
  549. ),
  550. decoration: BoxDecoration(
  551. borderRadius: BorderRadius.all(Radius.circular(12)),
  552. gradient: LinearGradient(
  553. begin: Alignment.topLeft, end: Alignment.bottomRight,
  554. colors: [
  555. Color(0xff131480).withOpacity(0.56), Color(0xff131480).withOpacity(0.90), Color(0xff131480).withOpacity(0.75)
  556. ]
  557. )
  558. ),
  559. ),
  560. onTap: (){
  561. navigateBack(contexts);
  562. Provider.of<CreateSerModule>(context, listen: false).setSendLater(true);
  563. reqFunc.sendRequest(context, widget, controllerNote, controllerLocation, controllerDateString, _currentSliderValue);
  564. },
  565. ),
  566. ),
  567. SizedBox(width: 16),
  568. Expanded(
  569. child: GestureDetector(
  570. child: Container(
  571. padding: EdgeInsets.symmetric(vertical: 20),
  572. child: Column(
  573. mainAxisSize: MainAxisSize.min,
  574. children: [
  575. U.iconsax('star-1', color: Colors.white, size: 30),
  576. SizedBox(height: 9),
  577. Text('sendNow'.tr(), style: TextStyle(color: Colors.white, fontSize: 14))
  578. ],
  579. ),
  580. decoration: BoxDecoration(
  581. borderRadius: BorderRadius.all(Radius.circular(12)),
  582. gradient: LinearGradient(
  583. begin: Alignment.topLeft, end: Alignment.bottomRight,
  584. colors: [
  585. Color(0xff078C84).withOpacity(0.56), Color(0xff078C84).withOpacity(0.90), Color(0xff078C84).withOpacity(0.75)
  586. ]
  587. )
  588. ),
  589. ),
  590. onTap: (){
  591. navigateBack(contexts);
  592. reqFunc.sendRequest(context, widget, controllerNote, controllerLocation, controllerDateString, _currentSliderValue);
  593. },
  594. ),
  595. ),
  596. ],
  597. ),
  598. SizedBox(height: 12),
  599. divider(),
  600. SizedBox(height: 12),
  601. Container(
  602. padding: EdgeInsets.all(3),
  603. child: Text('scheduledMsg'.tr(), style: TextStyle(color: textColor, fontSize: 12, fontWeight: FontWeight.w300)),
  604. decoration: BoxDecoration(
  605. color: Color(0xffCCA600).withOpacity(0.2),
  606. borderRadius: BorderRadius.all(Radius.circular(3))
  607. ),
  608. )
  609. ],
  610. ),
  611. ),
  612. );
  613. }
  614. pickupImageNew()async{
  615. var image = await reqFunc.getImageNew(context, ImageSource.gallery);
  616. Provider.of<CreateSerModule>(context, listen: false).setImages(image);
  617. }
  618. }