history_detail_pending.dart 9.9 KB

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