request_success.dart 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. import 'dart:convert';
  2. import 'dart:io';
  3. import 'package:easy_localization/easy_localization.dart';
  4. import 'package:flutter/foundation.dart';
  5. import 'package:flutter/material.dart';
  6. import 'package:flutter_linkify/flutter_linkify.dart';
  7. import 'package:open_file/open_file.dart';
  8. import 'package:telnow_mobile_new/src/api/api_auth_provider.dart';
  9. import 'package:telnow_mobile_new/src/layouts/components/template.dart';
  10. import 'package:telnow_mobile_new/src/utils/U.dart';
  11. import 'package:url_launcher/url_launcher.dart';
  12. class MobReqSuccessPage extends StatefulWidget {
  13. Map<String, dynamic> user;
  14. final String ticketNo;
  15. final bool fromSearch;
  16. MobReqSuccessPage({required this.user, required this.ticketNo, this.fromSearch = false, super.key});
  17. @override
  18. State<MobReqSuccessPage> createState() => _MobReqSuccessPageState();
  19. }
  20. class _MobReqSuccessPageState extends State<MobReqSuccessPage> {
  21. final ApiAuthProvider apiAuthProvider = ApiAuthProvider();
  22. Map<String, dynamic> list = {};
  23. @override
  24. void initState() {
  25. getMission();
  26. // TODO: implement initState
  27. super.initState();
  28. }
  29. getMission() async{
  30. var data = await apiAuthProvider.getData('/api/requestHistories/'+widget.ticketNo, null, context);
  31. if(data != null) {
  32. if (data['datetimeScheduled'] != null && data['datetimeScheduled'] != '' && data['noteFormat'] == 'DATE') {
  33. var date = data['datetimeScheduled'];
  34. data['datetimeScheduled'] = DateFormat('dd MMM yyyy HH:mm', 'id').format(DateTime.parse(date));
  35. }
  36. if (data['noteStart'] == 'escalationNoteBySystem'){
  37. data['noteStart'] = 'escalationNoteBySystem'.tr();
  38. }
  39. setState((){
  40. list = data;
  41. });
  42. }
  43. }
  44. backAction(){
  45. int count = 0;
  46. int page = widget.fromSearch ? 3 : 2;
  47. Navigator.of(context).popUntil((_) => count++ >= page);
  48. }
  49. @override
  50. Widget build(BuildContext context) {
  51. return Scaffold(
  52. backgroundColor: backgroundColor,
  53. appBar: AppBar(
  54. elevation: 0,
  55. bottomOpacity: 0,
  56. backgroundColor: backgroundColor,
  57. leading: GestureDetector(
  58. child: Icon(Icons.close_rounded, color: textColor),
  59. onTap: ()=>backAction(),
  60. ),
  61. titleSpacing: 0,
  62. title: Text('detail'.tr(), style: TextStyle(color: textColor, fontSize: 17, fontWeight: FontWeight.w500), overflow: TextOverflow.ellipsis),
  63. ),
  64. body: Column(
  65. children: [
  66. divider(),
  67. Expanded(
  68. child: list.isNotEmpty?Container(
  69. alignment: Alignment.topCenter,
  70. width: U.bodyWidth(context),
  71. child: SingleChildScrollView(
  72. padding: EdgeInsets.symmetric(vertical: 12, horizontal: 16),
  73. child: Column(
  74. crossAxisAlignment: CrossAxisAlignment.start,
  75. children: [
  76. Text(list[U.langColumn(context, 'requestGroupDescription')], style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  77. requestTiles(
  78. image: list['_requestImage'] ?? "null",
  79. title: list[U.langColumn(context, 'requestSubject')],
  80. subtitle: list[U.langColumn(context, '_subjectDescription')]??'',
  81. border: true
  82. ),
  83. SizedBox(height: 16),
  84. textHorizontal('ticketNumber'.tr(), list['ticketNo']),
  85. SizedBox(height: 16),
  86. renderRequested(),
  87. textHorizontal('location'.tr(), list['ipphoneExtLocation']),
  88. SizedBox(height: 16),
  89. divider(opacity: 0.05),
  90. SizedBox(height: 16),
  91. list['autoResponse'] ? Column(
  92. crossAxisAlignment: CrossAxisAlignment.start,
  93. children: [
  94. Text('note'.tr(), style: TextStyle(color: textColor)),
  95. SizedBox(height: 5),
  96. list['responseText']!=null&&list['responseText']!=''?Linkify(
  97. text: list['responseText'], style: TextStyle(color: textColor, fontSize: 12, fontWeight: FontWeight.w300),
  98. onOpen: (link) async {
  99. if (await canLaunchUrl(Uri.parse(link.url))) {
  100. await launchUrl(Uri.parse(link.url));
  101. }
  102. },
  103. ):Container(),
  104. list['responseAttachment']!=null&&list['responseAttachment']!=''?list['_isPdf']?GestureDetector(
  105. onTap: kIsWeb ? () async{
  106. Uri _url = Uri.parse(list['_mobileResponseAttachment']);
  107. await canLaunchUrl(_url) ? await launchUrl(_url) : print('Could not launch $_url');
  108. // html.window.open(list['responseAttachment'], '_blank');
  109. } : () async{
  110. var filePath = await token.getPath()+'/TelNow/Files/';
  111. if(!File(filePath+getFileName(list['responseAttachment'])).existsSync()){
  112. // print("file isnot ready yet");
  113. await apiAuthProvider.downloadImage(list['responseAttachment'], filePath+getFileName(list['responseAttachment']));
  114. }
  115. await OpenFile.open(filePath+getFileName(list['responseAttachment']));
  116. },
  117. child: Container(
  118. width: double.infinity,
  119. margin: EdgeInsets.only(top: 8),
  120. decoration: BoxDecoration(
  121. color: Colors.white,
  122. border: Border.all(color: Colors.deepOrange),
  123. borderRadius: BorderRadius.all(Radius.circular(12)),
  124. ),
  125. child: Center(
  126. child: Column(
  127. children: [
  128. Icon(Icons.picture_as_pdf, color: Colors.deepOrange, size: 50),
  129. Text('seeAttachment'.tr(), style: TextStyle(color: Colors.black45, fontSize: 12))
  130. ],
  131. ),
  132. )
  133. )
  134. ):GestureDetector(
  135. child: Image.network(list['_mobileResponseAttachment'], fit: BoxFit.cover, width: double.infinity, height: U.bodyWidth(context)/(kIsWeb?2.1:1.7), loadingBuilder:(BuildContext? context, Widget? child,ImageChunkEvent? loadingProgress) {
  136. if (loadingProgress == null) return child!;
  137. return Container(
  138. height: U.bodyWidth(context)/(kIsWeb?2.1:1.7),
  139. child: Center(
  140. child: CircularProgressIndicator(
  141. value: loadingProgress.expectedTotalBytes != null ? loadingProgress.cumulativeBytesLoaded / loadingProgress.expectedTotalBytes! : null,
  142. ),
  143. ),
  144. );
  145. },
  146. ),
  147. onTap: ()=>navigateTo(context, PhotoPreview('image'.tr(), list['_mobileResponseAttachment'], true))
  148. ):Container()
  149. ],
  150. ) : attachment_new(list),
  151. list['autoResponse'] ? Container() : SizedBox(height: 16),
  152. list['autoResponse'] ? Container() : textVertical('note'.tr(), list['requestNote'] != '' ? list['requestNote'] : '-'),
  153. list['autoResponse'] ? Container() : SizedBox(height: 16),
  154. list['autoResponse'] || list['datetimeScheduled'] == null || list['datetimeScheduled'] == '' ? Container() : Text("${"scheduleMessage".tr()} ${list['datetimeScheduled']}."),
  155. SizedBox(height: 24),
  156. infoContainer('reqSuccessMsg'.tr())
  157. ],
  158. ),
  159. ),
  160. ):loadingTemplate(),
  161. ),
  162. list.isNotEmpty?Column(
  163. children: [
  164. divider(),
  165. Container(
  166. alignment: Alignment.bottomCenter,
  167. width: U.bodyWidth(context), color: Colors.white,
  168. padding: EdgeInsets.symmetric(vertical: 10, horizontal: 16),
  169. child: buttonTemplate(text: 'btnWait'.tr(), action: ()=>backAction()),
  170. )
  171. ],
  172. ):Container()
  173. ],
  174. ),
  175. );
  176. }
  177. Widget renderRequested(){
  178. if(list['receptionistId'] != null){
  179. if(widget.user['roomAttendant'] && widget.user['userId'] != list['informantUserId'] && widget.user['userId'] == list['receptionistId']){
  180. return Column(
  181. children: [
  182. textHorizontal('requestedFor'.tr(), list['informantName']??'-'),
  183. SizedBox(height: 16),
  184. ],
  185. );
  186. }
  187. if(widget.user['userId'] == list['informantUserId'] && widget.user['userId'] != list['receptionistId']){
  188. return Column(
  189. children: [
  190. textHorizontal('requestedBy'.tr(), list['receptionistName']??'-'),
  191. SizedBox(height: 16),
  192. ],
  193. );
  194. }
  195. }
  196. return Container();
  197. }
  198. getFileName(pdfUrl){
  199. var imgSplit = pdfUrl.toString().split('/');
  200. return imgSplit[imgSplit.length-1];
  201. }
  202. Widget attachment_new(list){
  203. var imageWidth = ((U.bodyWidth(context)-32)/5)-5;
  204. List imageList = [];
  205. if(list['_attachment'] != null){
  206. for(var i = 1; i <= 5; i++){
  207. if(list['_attachment']['_mobileRequestAtt$i'] != null){
  208. imageList.add({'thumb': list['_attachment']['_mobileRequestThumb$i'], 'image': list['_attachment']['_mobileRequestAtt$i']});
  209. }
  210. }
  211. }
  212. return imageList.length > 0 ? Column(
  213. crossAxisAlignment: CrossAxisAlignment.start,
  214. children: [
  215. Text('image'.tr(), style: TextStyle(color: textColor)),
  216. SizedBox(height: 5),
  217. Row(
  218. children: List.generate(imageList.length, (i){
  219. return GestureDetector(
  220. child: Container(
  221. width: imageWidth, height: imageWidth, alignment: Alignment.topRight,
  222. margin: EdgeInsets.only(right: i == 4 ? 0 : 6),
  223. decoration: BoxDecoration(
  224. color: Colors.black12, borderRadius: BorderRadius.all(Radius.circular(5)), border: Border.all(color: Colors.black26, width: 0.5),
  225. image: imageList[i]['thumb'] != null ? DecorationImage(image: NetworkImage(imageList[i]['thumb']), fit: BoxFit.cover) : DecorationImage(image: AssetImage('assets/image/error/ImageNotFound.png'), fit: BoxFit.cover)
  226. ),
  227. ),
  228. onTap: ()=>navigateTo(context, PhotoPreviewGallery(title: 'image'.tr(), imageList: imageList, startIndex: i))
  229. );
  230. }),
  231. )
  232. ],
  233. ) : textVertical('image'.tr(), 'noImgAttach'.tr());
  234. }
  235. }
  236. // --------------------------------------------------------------------------------------------------------------------------------------------------------
  237. class MobReqSuccessPendingPage extends StatefulWidget {
  238. Map<String, dynamic> data;
  239. final bool fromSearch;
  240. MobReqSuccessPendingPage({required this.data, this.fromSearch = false, super.key});
  241. @override
  242. State<MobReqSuccessPendingPage> createState() => _MobReqSuccessPendingPageState();
  243. }
  244. class _MobReqSuccessPendingPageState extends State<MobReqSuccessPendingPage> {
  245. @override
  246. Widget build(BuildContext context) {
  247. return Scaffold(
  248. backgroundColor: backgroundColor,
  249. appBar: AppBar(
  250. elevation: 0,
  251. bottomOpacity: 0,
  252. backgroundColor: backgroundColor,
  253. leading: GestureDetector(
  254. child: Icon(Icons.close_rounded, color: textColor),
  255. onTap: ()=>backAction(),
  256. ),
  257. titleSpacing: 0,
  258. title: Text('detail'.tr(), style: TextStyle(color: textColor, fontSize: 17, fontWeight: FontWeight.w500), overflow: TextOverflow.ellipsis),
  259. ),
  260. body: Column(
  261. children: [
  262. divider(),
  263. Expanded(
  264. child: widget.data.isNotEmpty?Container(
  265. alignment: Alignment.topCenter,
  266. width: U.bodyWidth(context),
  267. child: SingleChildScrollView(
  268. padding: EdgeInsets.symmetric(vertical: 12, horizontal: 16),
  269. child: Column(
  270. crossAxisAlignment: CrossAxisAlignment.start,
  271. children: [
  272. Text(widget.data['title'], style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  273. requestTiles(
  274. image: widget.data['image'] ?? "null",
  275. title: widget.data[U.langColumn(context, 'sub')],
  276. subtitle: widget.data[U.langColumn(context, 'desc')]??'',
  277. border: true
  278. ),
  279. SizedBox(height: 16),
  280. widget.data['others']?Column(
  281. children: [
  282. textHorizontal('requestedFor'.tr(), widget.data['data']['user_id']),
  283. SizedBox(height: 16),
  284. ],
  285. ):Container(),
  286. textHorizontal('location'.tr(), widget.data['location']),
  287. SizedBox(height: 16),
  288. divider(opacity: 0.05),
  289. SizedBox(height: 16),
  290. attachment_new(widget.data['imageList']),
  291. SizedBox(height: 16),
  292. textVertical('note'.tr(), widget.data['note'] != '' ? widget.data['note'] : '-'),
  293. SizedBox(height: 24),
  294. Container(
  295. width: double.infinity,
  296. padding: EdgeInsets.all(12),
  297. child: Column(
  298. crossAxisAlignment: CrossAxisAlignment.center,
  299. children: [
  300. Icon(Icons.warning_amber_rounded, color: Colors.red),
  301. SizedBox(height: 5),
  302. Text('pending_info_success'.tr(), style: TextStyle(color: textColor), textAlign: TextAlign.center)
  303. ],
  304. ),
  305. decoration: BoxDecoration(
  306. color: Colors.red.withOpacity(0.1),
  307. border: Border.all(color: Colors.red),
  308. borderRadius: BorderRadius.all(Radius.circular(12))
  309. ),
  310. )
  311. ],
  312. ),
  313. ),
  314. ):loadingTemplate(),
  315. ),
  316. Column(
  317. children: [
  318. divider(),
  319. Container(
  320. alignment: Alignment.bottomCenter,
  321. width: U.bodyWidth(context), color: Colors.white,
  322. padding: EdgeInsets.symmetric(vertical: 10, horizontal: 16),
  323. child: buttonTemplate(text: 'btnWait'.tr(), action: ()=>backAction()),
  324. )
  325. ],
  326. )
  327. ],
  328. ),
  329. );
  330. }
  331. Widget attachment_new(List images){
  332. var imageWidth = ((U.bodyWidth(context)-32)/5)-5;
  333. List imageList = [];
  334. images.forEach((element) {
  335. imageList.add(base64Decode(element));
  336. });
  337. return imageList.length > 0 ? Column(
  338. crossAxisAlignment: CrossAxisAlignment.start,
  339. children: [
  340. Text('image'.tr(), style: TextStyle(color: textColor)),
  341. SizedBox(height: 5),
  342. Row(
  343. children: List.generate(imageList.length, (i){
  344. return GestureDetector(
  345. child: Container(
  346. width: imageWidth, height: imageWidth, alignment: Alignment.topRight,
  347. margin: EdgeInsets.only(right: i == 4 ? 0 : 6),
  348. decoration: BoxDecoration(
  349. color: Colors.black12, borderRadius: BorderRadius.all(Radius.circular(5)), border: Border.all(color: Colors.black26, width: 0.5),
  350. image: DecorationImage(image: MemoryImage(imageList[i]), fit: BoxFit.cover)
  351. ),
  352. ),
  353. onTap: ()=>navigateTo(context, PhotoPreviewGallery(title: 'image'.tr(), imageList: imageList, startIndex: i, isUrl: false))
  354. );
  355. }),
  356. )
  357. ],
  358. ) : textVertical('image'.tr(), 'noImgAttach'.tr());
  359. }
  360. backAction(){
  361. int count = 0;
  362. int page = widget.fromSearch ? 3 : 2;
  363. Navigator.of(context).popUntil((_) => count++ >= page);
  364. }
  365. }