history_detail_pending.dart 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. import 'dart:convert';
  2. import 'package:easy_localization/easy_localization.dart';
  3. import 'package:flutter/material.dart';
  4. import 'package:telnow_mobile_new/src/injector/injector.dart';
  5. import 'package:telnow_mobile_new/src/layouts/components/template.dart';
  6. import 'package:telnow_mobile_new/src/storage/sharedpreferences/shared_preferences_manager.dart';
  7. import 'package:telnow_mobile_new/src/utils/U.dart';
  8. import 'package:timelines_plus/timelines_plus.dart';
  9. class MobHistoryDetailPendingPage extends StatefulWidget {
  10. Map<String, dynamic> data;
  11. MobHistoryDetailPendingPage({required this.data, super.key});
  12. @override
  13. State<MobHistoryDetailPendingPage> createState() => _MobHistoryDetailPendingPageState();
  14. }
  15. class _MobHistoryDetailPendingPageState extends State<MobHistoryDetailPendingPage> {
  16. final SharedPreferencesManager sharedPreferencesManager = locator<SharedPreferencesManager>();
  17. @override
  18. Widget build(BuildContext context) {
  19. return Scaffold(
  20. backgroundColor: backgroundColor,
  21. appBar: appBarTemplate(context: context, title: 'detail'.tr(), action: null),
  22. body: Column(
  23. children: [
  24. divider(),
  25. Expanded(
  26. child: widget.data.isNotEmpty?Container(
  27. alignment: Alignment.topCenter,
  28. width: U.bodyWidth(context),
  29. child: SingleChildScrollView(
  30. child: Column(
  31. crossAxisAlignment: CrossAxisAlignment.start,
  32. children: [
  33. Padding(
  34. padding: EdgeInsets.symmetric(vertical: 12, horizontal: 16),
  35. child: Column(
  36. crossAxisAlignment: CrossAxisAlignment.start,
  37. children: [
  38. Text(widget.data['title'], style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  39. requestTiles(
  40. image: widget.data['image'] ?? "null",
  41. title: widget.data[U.langColumn(context, 'sub')],
  42. subtitle: widget.data[U.langColumn(context, 'desc')]??'',
  43. border: true
  44. ),
  45. SizedBox(height: 16),
  46. widget.data['others']?Column(
  47. children: [
  48. textHorizontal('requestedFor'.tr(), widget.data['data']['user_id']),
  49. SizedBox(height: 16),
  50. ],
  51. ):Container(),
  52. textHorizontal('location'.tr(), widget.data['location']),
  53. SizedBox(height: 16),
  54. divider(opacity: 0.05),
  55. SizedBox(height: 16),
  56. attachment_new(widget.data['imageList']),
  57. SizedBox(height: 16),
  58. textVertical('note'.tr(), widget.data['note'] != '' ? widget.data['note'] : '-'),
  59. SizedBox(height: 24),
  60. ],
  61. ),
  62. ),
  63. separator(),
  64. Padding(
  65. padding: EdgeInsets.symmetric(vertical: 12, horizontal: 16),
  66. child: Column(
  67. crossAxisAlignment: CrossAxisAlignment.start,
  68. children: [
  69. Text('activity'.tr(), style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  70. SizedBox(height: 16),
  71. Text('timeline'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
  72. SizedBox(height: 16),
  73. timeline('stateRequested'.tr(), widget.data['datetimeRequest'] != null ? convertDate(widget.data['datetimeRequest'], context.locale.toString()) : '-', current: false, first: true),
  74. timeline('pending'.tr(), widget.data['datetimeRequest'] != null ? convertDate(widget.data['datetimeRequest'], context.locale.toString()) : '-', current: true, first: false),
  75. ],
  76. ),
  77. ),
  78. Padding(padding: EdgeInsets.symmetric(horizontal: 16), child: divider(opacity: 0.05)),
  79. SizedBox(height: 16),
  80. Padding(
  81. padding: EdgeInsets.symmetric(horizontal: 16),
  82. child: Row(
  83. children: [
  84. Expanded(child: Text('state'.tr(), style: TextStyle(color: textColor, fontSize: 14))),
  85. Container(
  86. width: 25, height: 25,
  87. decoration: BoxDecoration(image: DecorationImage(image: AssetImage('assets/image/general/Hourglass.png'), fit: BoxFit.cover)),
  88. ),
  89. SizedBox(width: 5),
  90. Text('pending'.tr(), style: TextStyle(color: textColor.withValues(alpha: 0.85), fontSize: 14)),
  91. ],
  92. ),
  93. ),
  94. SizedBox(height: 16),
  95. separator(),
  96. ],
  97. ),
  98. ),
  99. ):loadingTemplate(),
  100. ),
  101. divider(),
  102. widget.data.isNotEmpty?Container(
  103. padding: EdgeInsets.symmetric(vertical: 10, horizontal: 16), color: Colors.white,
  104. child: Container(
  105. alignment: Alignment.bottomCenter,
  106. width: U.bodyWidth(context),
  107. child: Column(
  108. crossAxisAlignment: CrossAxisAlignment.start,
  109. children: [
  110. Text('pending_info_detail'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
  111. SizedBox(height: 10),
  112. buttonTemplate(text: 'cancel_pending'.tr(), backgroundColor: textColor.withValues(alpha: 0.1), textColor: textColor.withValues(alpha: 0.75), borderColor: textColor.withValues(alpha: 0.20), action: ()async{
  113. dialogConfirm(context: context, title: 'buttonCancel'.tr(), text: 'confirmCancel'.tr(), actionYes: ()async{
  114. showLoading(context);
  115. List list = jsonDecode(sharedPreferencesManager.getString(SharedPreferencesManager.keyPendingData)!);
  116. list.removeWhere((element) => element['uniqueId'] == widget.data['uniqueId']);
  117. await sharedPreferencesManager.putString(SharedPreferencesManager.keyPendingData, jsonEncode(list));
  118. closeLoading(context);
  119. navigateBack(context, exc: true);
  120. });
  121. })
  122. ],
  123. ),
  124. ),
  125. ):Container()
  126. ],
  127. )
  128. );
  129. }
  130. Widget attachment_new(List images){
  131. var imageWidth = ((U.bodyWidth(context)-32)/5)-5;
  132. List imageList = [];
  133. images.forEach((element) {
  134. imageList.add(base64Decode(element));
  135. });
  136. return imageList.length > 0 ? Column(
  137. crossAxisAlignment: CrossAxisAlignment.start,
  138. children: [
  139. Text('image'.tr(), style: TextStyle(color: textColor)),
  140. SizedBox(height: 5),
  141. Row(
  142. children: List.generate(imageList.length, (i){
  143. return GestureDetector(
  144. child: Container(
  145. width: imageWidth, height: imageWidth, alignment: Alignment.topRight,
  146. margin: EdgeInsets.only(right: i == 4 ? 0 : 6),
  147. decoration: BoxDecoration(
  148. color: Colors.black12, borderRadius: BorderRadius.all(Radius.circular(5)), border: Border.all(color: Colors.black26, width: 0.5),
  149. image: DecorationImage(image: MemoryImage(imageList[i]), fit: BoxFit.cover)
  150. ),
  151. ),
  152. onTap: ()=>navigateTo(context, PhotoPreviewGallery(title: 'image'.tr(), imageList: imageList, startIndex: i, isUrl: false))
  153. );
  154. }),
  155. )
  156. ],
  157. ) : textVertical('image'.tr(), 'noImgAttach'.tr());
  158. }
  159. Widget timeline(label, text, {bool first = false, bool current = false}) {
  160. return TimelineTile(
  161. nodeAlign: TimelineNodeAlign.start,
  162. contents: Container(
  163. margin: EdgeInsets.fromLTRB(15, 10, 0, 10),
  164. child: Row(
  165. children: [
  166. Text(label, style: TextStyle(fontSize: 14, color: textColor.withValues(alpha: 0.85))),
  167. SizedBox(width: 5),
  168. Expanded(child: Text(text, style: TextStyle(fontSize: 13, color: textColor), textAlign: TextAlign.end)),
  169. ],
  170. ),
  171. ),
  172. node: TimelineNode(
  173. indicator: DotIndicator(color: current ? Color(0xffBEC1C1) : Color(0xffE8E8E8)),
  174. startConnector: SolidLineConnector(color: first ? Colors.transparent : Color(0xffE8E8E8)),
  175. endConnector: SolidLineConnector(color: current ? Colors.transparent : Color(0xffE8E8E8)),
  176. ),
  177. );
  178. }
  179. }