history_forum.dart 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996
  1. import 'dart:async';
  2. import 'dart:typed_data';
  3. import 'dart:ui' as ui;
  4. import 'package:cloud_firestore/cloud_firestore.dart';
  5. import 'package:easy_localization/easy_localization.dart';
  6. import 'package:flutter/material.dart';
  7. import 'package:flutter/services.dart';
  8. import 'package:flutter_linkify/flutter_linkify.dart';
  9. import 'package:image_picker/image_picker.dart';
  10. import 'package:selectable_autolink_text/selectable_autolink_text.dart';
  11. import 'package:telnow_mobile_new/src/api/api_auth_provider.dart';
  12. import 'package:telnow_mobile_new/src/api/jwt_token.dart';
  13. import 'package:telnow_mobile_new/src/injector/injector.dart';
  14. import 'package:telnow_mobile_new/src/layouts/components/photo_chat.dart';
  15. import 'package:telnow_mobile_new/src/layouts/functions/detail.dart';
  16. import 'package:telnow_mobile_new/src/layouts/components/template.dart';
  17. import 'package:telnow_mobile_new/src/storage/sharedpreferences/shared_preferences_manager.dart';
  18. import 'package:telnow_mobile_new/src/utils/U.dart';
  19. import 'package:timelines_plus/timelines_plus.dart';
  20. import 'package:translator/translator.dart';
  21. import 'package:url_launcher/url_launcher.dart';
  22. import 'package:image/image.dart' as img;
  23. import 'package:uuid/uuid.dart';
  24. class WebHistoryForumPage extends StatefulWidget {
  25. final Map<String, dynamic> data;
  26. final Map<String, dynamic> user;
  27. const WebHistoryForumPage({required this.data, required this.user, super.key});
  28. @override
  29. State<WebHistoryForumPage> createState() => _WebHistoryForumPageState();
  30. }
  31. class _WebHistoryForumPageState extends State<WebHistoryForumPage> {
  32. final DetailFunction detFunc = DetailFunction();
  33. final ApiAuthProvider apiAuthProvider = ApiAuthProvider();
  34. final JwtToken token = JwtToken();
  35. final translator = GoogleTranslator();
  36. final SharedPreferencesManager _sharedPreferencesManager = locator<SharedPreferencesManager>();
  37. var rating = [
  38. {'key': 1, 'image': "assets/image/icon/very_dissatisfied.png", 'label': 'disatisfied'.tr()},
  39. {'key': 2, 'image': "assets/image/icon/dissatisfied.png", 'label': 'lessSatisfied'.tr()},
  40. {'key': 3, 'image': "assets/image/icon/neutral.png", 'label': 'satisfied'.tr()},
  41. {'key': 4, 'image': "assets/image/icon/satisfied.png", 'label': 'verySatisfied'.tr()},
  42. {'key': 5, 'image': "assets/image/icon/very_satisfied.png", 'label': 'reallyPleased'.tr()},
  43. ];
  44. String? idChat;
  45. String? imagePath;
  46. TextEditingController controllerPesan = new TextEditingController();
  47. ScrollController scrollController = ScrollController();
  48. List messageData = [];
  49. List deletedMessage = [];
  50. int page = 0;
  51. double borderRadius = 50.0;
  52. String username = '';
  53. bool isAfterLoad = false;
  54. bool isSend = false;
  55. bool isLoad = false;
  56. bool stopLoad = false;
  57. bool scrollBottom = false;
  58. bool isReverse = false;
  59. bool openChat = false;
  60. Uint8List? _image;
  61. @override
  62. void initState() {
  63. if(U.getInternetStatus()){
  64. openChat = widget.data['currentState'] == 'DIMULAI' || widget.data['currentState'] == 'DISELESAIKAN';
  65. getData();
  66. scrollController.addListener(() => scrollListener());
  67. }
  68. super.initState();
  69. }
  70. getData() async {
  71. idChat = U.decodeBase64Url(_sharedPreferencesManager.getString(SharedPreferencesManager.keyAccessCode)!) + '-' + widget.data['ticketNo'];
  72. var res = await token.getUserData(context);
  73. if (res != null) {
  74. username = res['userId'];
  75. getMessage();
  76. getCollectionData();
  77. }
  78. }
  79. setAsRead(ticketNo) async {
  80. var res = await apiAuthProvider.postData('/api/notifications/readMyForum/$ticketNo', null, null, context);
  81. if (res != null) {
  82. }
  83. }
  84. getMessage() async {
  85. if (!isLoad && !stopLoad) {
  86. setState(() => isLoad = true);
  87. setAsRead(widget.data['ticketNo']);
  88. var mymess = await apiAuthProvider.getData('/api/messages/search/myMessages/' + idChat!, {'isPaged': 'true', 'page': page.toString(), 'size': '20'}, context);
  89. if (mymess.containsKey('_embedded')) {
  90. List data = mymess['_embedded']['myMessages'];
  91. for (int i = 0; i < data.length; i++) {
  92. if (username == data[i]['from']['user']) {
  93. data[i]['selected'] = false;
  94. }
  95. else{
  96. if(U.autoTranslate()){
  97. data[i]['translate'] = '';
  98. }
  99. }
  100. setState(() => messageData.insert(0, data[i]));
  101. }
  102. setState(() {
  103. if (page == 0) {
  104. scrollBottom = true;
  105. }
  106. isLoad = false;
  107. page++;
  108. if (messageData.length >= mymess['page']['totalElements']) {
  109. stopLoad = true;
  110. }
  111. });
  112. if(U.autoTranslate()){
  113. translateMessage();
  114. }
  115. } else {
  116. setState(() {
  117. isLoad = false;
  118. stopLoad = true;
  119. });
  120. }
  121. }
  122. }
  123. translateMessage(){
  124. var locale = context.locale.toString() == 'zh' ? 'zh-cn' : context.locale.toString();
  125. messageData.forEach((element) async{
  126. if (username != element['from']['user'] && element['translate'] == '') {
  127. var translate = await translator.translate(element['msg']??'', to: locale);
  128. setState(() {
  129. element['translate'] = translate.text;
  130. });
  131. }
  132. });
  133. }
  134. getCollectionData() {
  135. FirebaseFirestore.instance.collection("tmMessages").doc('messages').collection(idChat!).snapshots().listen((querySnapshot) {
  136. setState(() {
  137. querySnapshot.docChanges.forEach((result) async {
  138. var data = result.doc.data();
  139. if (result.type == DocumentChangeType.added && isAfterLoad) {
  140. if ((username == data!['from']['user'] && messageData.where((element) => element['uniqueId'] == data['uniqueId']).length > 0) || (username != data['from']['user'] && data['readStatus'] == 'DELETED')) {
  141. int index = messageData.indexWhere((element) => element['uniqueId'] == data['uniqueId']);
  142. messageData[index]['read'] = data['read'];
  143. messageData[index]['readStatus'] = data['readStatus'];
  144. messageData[index]['imageUrl'] = data['imageUrl'];
  145. } else {
  146. if(U.autoTranslate()){
  147. var locale = context.locale.toString() == 'zh' ? 'zh-cn' : context.locale.toString();
  148. var translate = await translator.translate(data['msg']??'', to: locale);
  149. data['translate'] = translate.text;
  150. }
  151. messageData.add(data);
  152. }
  153. } else if (result.type == DocumentChangeType.modified && isAfterLoad) {
  154. if (messageData.where((element) => element['uniqueId'] == data!['uniqueId']).length > 0) {
  155. int index = messageData.indexWhere((element) => element['uniqueId'] == data!['uniqueId']);
  156. messageData[index]['read'] = data!['read'];
  157. messageData[index]['readStatus'] = data['readStatus'];
  158. }
  159. }
  160. });
  161. isAfterLoad = true;
  162. });
  163. });
  164. }
  165. deleteCollection() {
  166. FirebaseFirestore.instance.collection("tmMessages").doc('messages').collection(idChat!).get().then((value) {
  167. for (DocumentSnapshot ds in value.docs) {
  168. ds.reference.delete();
  169. }
  170. });
  171. }
  172. getImageName(imageUrl) {
  173. var imgSplit = imageUrl.toString().split('/');
  174. return imgSplit[imgSplit.length - 1];
  175. }
  176. sendMessage(data) async {
  177. setState(() {
  178. isSend = false;
  179. controllerPesan.clear();
  180. messageData.add({
  181. 'msg': data['text'],
  182. 'datetime': DateTime.now().toString(),
  183. 'read': null,
  184. 'imageUrl': data['images'],
  185. 'readStatus': '',
  186. 'from': {'name': 'my name', 'user': data['userId']},
  187. 'uniqueId': data['uniqueId'],
  188. 'selected': false,
  189. 'senderType': 'INFORMANT'
  190. });
  191. scrollBottom = true;
  192. });
  193. var res = await apiAuthProvider.postData('/api/messages', null, data, context);
  194. if (res != null) {
  195. int index = messageData.indexWhere((element) => element['uniqueId'] == data['uniqueId']);
  196. setState(() {
  197. messageData[index]['read'] = false;
  198. });
  199. } else {
  200. int index = messageData.indexWhere((element) => element['uniqueId'] == data['uniqueId']);
  201. setState(() => messageData[index]['readStatus'] = 'FAILED');
  202. }
  203. }
  204. scrollToBottom() {
  205. scrollController.animateTo(scrollController.position.minScrollExtent, duration: Duration(milliseconds: 1), curve: Curves.decelerate);
  206. scrollBottom = false;
  207. }
  208. scrollListener() {
  209. if (scrollController.offset >= scrollController.position.maxScrollExtent) {
  210. getMessage();
  211. }
  212. }
  213. @override
  214. Widget build(BuildContext context) {
  215. WidgetsBinding.instance.addPostFrameCallback((_) {
  216. if (messageData.length > 0) {
  217. if (scrollController.position.maxScrollExtent > 0 && !isReverse) {
  218. setState(() => isReverse = true);
  219. }
  220. if (isAfterLoad && scrollBottom && isReverse) {
  221. scrollToBottom();
  222. }
  223. }
  224. });
  225. return Scaffold(
  226. backgroundColor: backgroundColor,
  227. appBar: PreferredSize(preferredSize: Size.fromHeight(0), child: AppBar(elevation: 0, backgroundColor: primaryColor)),
  228. body: Column(
  229. crossAxisAlignment: CrossAxisAlignment.start,
  230. children: [
  231. Container(
  232. padding: EdgeInsets.symmetric(vertical: 25, horizontal: 100),
  233. child: Row(
  234. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  235. children: [
  236. Text('forum'.tr(), style: TextStyle(color: textColor, fontSize: 17, fontWeight: FontWeight.w500), overflow: TextOverflow.ellipsis),
  237. GestureDetector(
  238. child: Text('buttonBack'.tr(), style: TextStyle(color: primaryColor, fontSize: 14)),
  239. onTap: (){
  240. deleteCollection();
  241. navigateBack(context);
  242. },
  243. )
  244. ],
  245. ),
  246. ),
  247. divider(),
  248. Expanded(
  249. child: Container(
  250. padding: EdgeInsets.symmetric(vertical: 25, horizontal: 100),
  251. child: Row(
  252. crossAxisAlignment: CrossAxisAlignment.start,
  253. children: [
  254. Expanded(
  255. child: SingleChildScrollView(
  256. child: Container(
  257. padding: EdgeInsets.all(20),
  258. decoration: BoxDecoration(color: Colors.white, border: Border.all(color: textColor.withValues(alpha: 0.15)), borderRadius: BorderRadius.all(Radius.circular(12))),
  259. child: Column(
  260. crossAxisAlignment: CrossAxisAlignment.start,
  261. children: [
  262. Text(widget.data[U.langColumn(context, 'requestGroupDescription')], style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  263. requestTiles(image: widget.data['_requestImage'] ?? "null", title: widget.data[U.langColumn(context, 'requestSubject')], subtitle: widget.data[U.langColumn(context, '_subjectDescription')]??'', border: true),
  264. SizedBox(height: 16),
  265. textHorizontal('ticketNumber'.tr(), widget.data['ticketNo']),
  266. SizedBox(height: 16),
  267. widget.user.isNotEmpty?renderRequested():Container(),
  268. textHorizontal('location'.tr(), widget.data['ipphoneExtLocation']),
  269. SizedBox(height: 16),
  270. divider(opacity: 0.05),
  271. SizedBox(height: 16),
  272. widget.data['autoResponse'] ? Column(
  273. crossAxisAlignment: CrossAxisAlignment.start,
  274. children: [
  275. Text('note'.tr(), style: TextStyle(color: textColor)),
  276. SizedBox(height: 5),
  277. widget.data['responseText']!=null&&widget.data['responseText']!=''?Linkify(
  278. text: widget.data['responseText'], style: TextStyle(color: textColor, fontSize: 12, fontWeight: FontWeight.w300),
  279. onOpen: (link) async {
  280. if (await canLaunchUrl(Uri.parse(link.url))) {
  281. await launchUrl(Uri.parse(link.url));
  282. }
  283. },
  284. ):Container(),
  285. widget.data['responseAttachment']!=null&&widget.data['responseAttachment']!=''?widget.data['_isPdf']?GestureDetector(
  286. child: Container(
  287. width: double.infinity,
  288. margin: EdgeInsets.only(top: 8),
  289. child: Center(
  290. child: Column(
  291. children: [
  292. Icon(Icons.picture_as_pdf, color: Colors.deepOrange, size: 50),
  293. Text('seeAttachment'.tr(), style: TextStyle(color: Colors.black45, fontSize: 12))
  294. ],
  295. ),
  296. ),
  297. decoration: BoxDecoration(border: Border.all(color: Colors.deepOrange), borderRadius: BorderRadius.all(Radius.circular(12)))
  298. ),
  299. onTap: () => detFunc.openAttachment(widget.data)
  300. ):GestureDetector(
  301. child: LayoutBuilder(
  302. builder: (context, constraints) {
  303. return Container(
  304. child:Image.network(widget.data['_mobileResponseAttachment'], fit: BoxFit.cover, width: double.infinity, height: constraints.maxWidth/(1.7), loadingBuilder:(BuildContext? context, Widget? child,ImageChunkEvent? loadingProgress) {
  305. if (loadingProgress == null) return child!;
  306. return Container(
  307. height: constraints.maxWidth/(1.7),
  308. child: Center(
  309. child: CircularProgressIndicator(
  310. value: loadingProgress.expectedTotalBytes != null ? loadingProgress.cumulativeBytesLoaded / loadingProgress.expectedTotalBytes! : null,
  311. ),
  312. ),
  313. );
  314. }),
  315. );
  316. },
  317. ),
  318. onTap: ()=>navigateTo(context, PhotoPreview('image'.tr(), widget.data['_mobileResponseAttachment'], true))
  319. ):Container()
  320. ],
  321. ) : attachment_new(widget.data),
  322. widget.data['autoResponse'] ? Container() : SizedBox(height: 16),
  323. widget.data['autoResponse'] ? Container() : textVertical('note'.tr(), widget.data['requestNote']!=''?widget.data['requestNote']:'-'),
  324. widget.data['autoResponse'] ? Container() : SizedBox(height: 16),
  325. widget.data['autoResponse'] || widget.data['datetimeScheduled'] == null || widget.data['datetimeScheduled'] == '' ? Container() : Text("${"scheduleMessage".tr()} ${widget.data['datetimeScheduled']}."),
  326. separator(),
  327. SizedBox(height: 16),
  328. widget.data['autoResponse'] ? Container() : Column(
  329. crossAxisAlignment: CrossAxisAlignment.start,
  330. children: [
  331. Text('activity'.tr(), style: TextStyle(color: textColor, fontWeight: FontWeight.w600)),
  332. SizedBox(height: 16),
  333. widget.data['currentState'] != 'DIBATALKAN' && widget.data['currentState'] != 'DIANTRIKAN' && widget.data['currentState'] != 'DIPROSES' && widget.data['_collaboratorDataFilter'].length > 0?Column(
  334. crossAxisAlignment: CrossAxisAlignment.start,
  335. children: [
  336. Text('servant'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
  337. Container(
  338. padding: EdgeInsets.only(top: 10, left: 16),
  339. child: Column(
  340. crossAxisAlignment: CrossAxisAlignment.start,
  341. children: [
  342. Text('1. ${widget.data['servantNameStart']??'-'}', style: TextStyle(color: textColor, fontSize: 14), overflow: TextOverflow.ellipsis),
  343. Column(
  344. crossAxisAlignment: CrossAxisAlignment.start,
  345. children: List.generate(widget.data['_collaboratorDataFilter'].length, (i) {
  346. return Text('${i+2}. ${widget.data['_collaboratorDataFilter'][i]['name']}', style: TextStyle(color: textColor, fontSize: 14), overflow: TextOverflow.ellipsis);
  347. }),
  348. )
  349. ],
  350. ),
  351. )
  352. ],
  353. ) : textHorizontal(
  354. widget.data['currentState'] == 'DIBATALKAN'?'canceledBy'.tr():'servant'.tr(),
  355. widget.data['currentState'] == 'DIBATALKAN'?widget.data['servantNameCancel']??'-':widget.data['currentState'] != 'DIANTRIKAN' && widget.data['currentState'] != 'DIPROSES'?widget.data['servantNameStart']??'-':'-'
  356. ),
  357. SizedBox(height: 16),
  358. divider(opacity: 0.05),
  359. SizedBox(height: 16),
  360. Text('timeline'.tr(), style: TextStyle(color: textColor, fontSize: 14)),
  361. SizedBox(height: 16),
  362. Column(
  363. crossAxisAlignment: CrossAxisAlignment.start,
  364. children: [
  365. timeline('stateRequested'.tr(), widget.data['datetimeRequest'] != null ? convertDate(widget.data['datetimeRequest'], context.locale.toString()) : '-', null, null, current: widget.data['currentState'] == 'DIANTRIKAN' || widget.data['currentState'] == 'DIPROSES', first: true),
  366. widget.data['currentState'] == 'DIMULAI' ? timeline('stateDone'.tr(), widget.data['datetimeStart'] != null ? convertDate(widget.data['datetimeStart'], context.locale.toString()) : '-', widget.data['noteStart'], widget.data['noteStartTranslate'], current: widget.data['currentState'] == 'DIMULAI') : Container(),
  367. !widget.data['autoResponse'] && (widget.data['currentState'] == 'DISELESAIKAN' || widget.data['currentState'] == 'TUNTAS') ? timeline('startDoing'.tr(), widget.data['datetimeStart'] != null ? convertDate(widget.data['datetimeStart'], context.locale.toString()) : '-', widget.data['noteStart'], widget.data['noteStartTranslate']) : Container(),
  368. !widget.data['autoResponse'] && (widget.data['currentState'] == 'DISELESAIKAN' || widget.data['currentState'] == 'TUNTAS') ? timeline('stateFinish'.tr(), widget.data['datetimeFinish'] != null ? convertDate(widget.data['datetimeFinish'], context.locale.toString()) : '-', widget.data['noteFinish'], widget.data['noteFinishTranslate'], current: widget.data['currentState'] == 'DISELESAIKAN' || widget.data['currentState'] == 'TUNTAS') : Container(),
  369. widget.data['autoResponse'] && widget.data['currentState'] == 'TUNTAS' ? timeline('stateFinish'.tr(), widget.data['datetimeComplete'] != null ? convertDate(widget.data['datetimeComplete'], context.locale.toString()) : '-', widget.data['noteComplete'], widget.data['noteCompleteTranslate'], current: widget.data['currentState'] == 'TUNTAS') : Container(),
  370. widget.data['currentState'] == 'DIBATALKAN' ? timeline('stateCanceled'.tr(), widget.data['datetimeCancel'] != null ? convertDate(widget.data['datetimeCancel'], context.locale.toString()) : '-', widget.data['noteCancel'], widget.data['noteCancelTranslate'], current: widget.data['currentState'] == 'DIBATALKAN') : Container(),
  371. ],
  372. ),
  373. suspendPanel(widget.data),
  374. finish_att_new(widget.data),
  375. !widget.data['autoResponse'] && (widget.data['currentState'] == 'TUNTAS' || widget.data['currentState'] == 'DISELESAIKAN') ? Column(
  376. crossAxisAlignment: CrossAxisAlignment.start,
  377. children: [
  378. SizedBox(height: 16),
  379. divider(opacity: 0.05),
  380. SizedBox(height: 16),
  381. Row(
  382. children: [
  383. Text('rate'.tr(), style: TextStyle(color: textColor.withValues(alpha: 0.75), fontSize: 14)),
  384. Expanded(
  385. child: widget.data['satisfactionRate'] > 0 ? Row(
  386. mainAxisAlignment: MainAxisAlignment.end,
  387. children: [
  388. Text(rating[widget.data['satisfactionRate']-1]['label'].toString(), style: TextStyle(color: textColor, fontSize: 14), overflow: TextOverflow.ellipsis),
  389. SizedBox(width: 5),
  390. Image(image: AssetImage(rating[widget.data['satisfactionRate']-1]['image'].toString()), width: 25),
  391. ],
  392. ) : Text('unrated'.tr(), style: TextStyle(color: textColor, fontSize: 14), textAlign: TextAlign.end, overflow: TextOverflow.ellipsis),
  393. ),
  394. ],
  395. )
  396. ],
  397. ) : Container()
  398. ],
  399. )
  400. ],
  401. ),
  402. ),
  403. ),
  404. ),
  405. SizedBox(width: 30),
  406. Expanded(
  407. child: Column(
  408. children: [
  409. Expanded(
  410. child: messageData.length == 0 && !isAfterLoad ? loadingTemplate() : SingleChildScrollView(
  411. controller: scrollController,
  412. reverse: isReverse,
  413. child: Column(
  414. children: List.generate(messageData.length, (i) {
  415. bool hideDate = i == 0 ? false : checkDate(messageData[i]['datetime'], messageData[i - 1]['datetime']);
  416. bool isNip = i == 0 ? true : !hideDate ? true : messageData[i]['from']['user'] == messageData[i - 1]['from']['user'] ? false : true;
  417. return Column(
  418. children: [
  419. !hideDate ? Container(margin: EdgeInsets.only(bottom: 5), child: bubble_chat(Text(convertDate(messageData[i]['datetime'], context.locale.toString()), textAlign: TextAlign.center, style: TextStyle(fontSize: 12)), null, false, false)) : Container(),
  420. Builder(builder: (context) {
  421. var isMe = username == messageData[i]['from']['user'] && messageData[i]['senderType'] == 'INFORMANT';
  422. var isImage = messageData[i]['imageUrl'] != null && messageData[i]['imageUrl'] != '' && messageData[i]['readStatus'] != 'DELETED';
  423. var isTranslate = U.autoTranslate() && !isMe && messageData[i]['msg'] != messageData[i]['translate'];
  424. var widget = Row(
  425. mainAxisSize: MainAxisSize.min,
  426. children: [
  427. messageData[i]['readStatus'] == 'FAILED' ? Padding(
  428. padding: const EdgeInsets.only(right: 15),
  429. child: PopupMenuButton<int>(
  430. itemBuilder: (context) => [
  431. PopupMenuItem(value: 1, height: 40, child: Text("delete".tr(), style: TextStyle(fontSize: 14))),
  432. PopupMenuItem(value: 2, height: 40, child: Text("resend".tr(), style: TextStyle(fontSize: 14))),
  433. ],
  434. offset: Offset(MediaQuery.of(context).size.width, 0),
  435. onSelected: (value) {
  436. if (value == 1) {
  437. messageData.removeWhere((item) => item['uniqueId'] == messageData[i]['uniqueId']);
  438. } else if (value == 2) {
  439. var text = messageData[i]['msg'];
  440. var images = messageData[i]['imageUrl'];
  441. messageData.removeWhere((item) => item['uniqueId'] == messageData[i]['uniqueId']);
  442. var uuid = Uuid().v1().replaceAll('-', '');
  443. var data = {
  444. "uniqueId": uuid,
  445. "userId": username,
  446. "recipientId": "#forum",
  447. "senderType": "INFORMANT",
  448. "text": text,
  449. "chatId": idChat,
  450. "images": images
  451. };
  452. sendMessage(data);
  453. }
  454. },
  455. child: Icon(Icons.refresh, color: Colors.red),
  456. ),
  457. ) : Container(),
  458. Flexible(
  459. child: Column(
  460. crossAxisAlignment: CrossAxisAlignment.start,
  461. children: <Widget>[
  462. !isMe ? Padding(
  463. padding: const EdgeInsets.only(bottom: 6.0,),
  464. child: Text(
  465. messageData[i]['from']['name'],
  466. style: TextStyle(color: Color(U.getColor(messageData[i]['from']['user'])), fontSize: 12.0),
  467. textAlign: TextAlign.start,
  468. ),
  469. ) : SizedBox(),
  470. isImage ? Padding(
  471. padding: EdgeInsets.only(bottom: 2),
  472. child: GestureDetector(
  473. child: Container(
  474. margin: const EdgeInsets.only(bottom: 5),
  475. child: Builder(builder: (context) {
  476. return Image.network(messageData[i]['imageUrl']);
  477. }),
  478. ),
  479. onTap: () => navigateTo(context, PhotoPreview('forum'.tr(), messageData[i]['imageUrl'], true)),
  480. ),
  481. ) : Container(width: 1),
  482. messageData[i]['readStatus'] == 'DELETED' ? Text('deletedMessage'.tr(), style: TextStyle(fontSize: 14, color: Colors.white70, fontStyle: FontStyle.italic)) : messageData[i]['msg'] != null && messageData[i]['msg'] != '' ? SelectableAutoLinkText(
  483. messageData[i]['msg'],
  484. style: TextStyle(fontSize: 14, color: Colors.black),
  485. linkStyle: TextStyle(color: Colors.blueAccent),
  486. highlightedLinkStyle: TextStyle(color: Colors.blueAccent, backgroundColor: Colors.blueAccent.withAlpha(0x33)),
  487. onTap: (link) async{
  488. if (await canLaunchUrl(Uri.parse(link))) {
  489. await launchUrl(Uri.parse(link));
  490. }
  491. },
  492. onLongPress: (link) {
  493. Clipboard.setData(new ClipboardData(text: link)).then((value){
  494. showSuccess('link_copied'.tr(), context);
  495. });
  496. },
  497. textAlign: TextAlign.start,
  498. ) : Container(width: 1),
  499. isTranslate ? Container(
  500. margin: EdgeInsets.only(top: 2), decoration: BoxDecoration(border: Border(top: BorderSide(color: Colors.black.withValues(alpha: 0.2)))),
  501. child: Text(messageData[i]['translate']!=''?'(${messageData[i]['translate']})':'...', style: TextStyle(fontSize: 14, color: Colors.black.withValues(alpha: 0.65), fontStyle: FontStyle.italic)),
  502. ) : Container(),
  503. ],
  504. ),
  505. )
  506. ],
  507. );
  508. var timeBubble = RichText(
  509. text: TextSpan(children: [
  510. TextSpan(text: DateFormat('HH:mm').format(DateTime.parse(messageData[i]['datetime'])), style: TextStyle(fontSize: 12, color: Colors.black38)),
  511. WidgetSpan(
  512. child: Padding(
  513. padding: const EdgeInsets.only(left: 3),
  514. child: Icon(messageData[i]['read'] == null ? Icons.done : Icons.done_all, color: messageData[i]['read'] != null && messageData[i]['read'] ? Colors.green : Colors.black38, size: 15)
  515. )
  516. ),
  517. ]),
  518. );
  519. var expander = Expanded(
  520. flex: 8,
  521. child: Column(
  522. children: [
  523. bubble_chat(widget, timeBubble, isNip, isMe),
  524. SizedBox(height: 5),
  525. ],
  526. crossAxisAlignment: isMe ? CrossAxisAlignment.end : CrossAxisAlignment.start,
  527. )
  528. );
  529. return isMe ? Row(
  530. children: [
  531. Expanded(
  532. flex: 2,
  533. child: Container(),
  534. ),
  535. expander,
  536. ],
  537. ) : Row(
  538. children: [
  539. expander,
  540. Expanded(
  541. flex: 2,
  542. child: Container(),
  543. ),
  544. ],
  545. );
  546. })
  547. ],
  548. );
  549. }),
  550. ),
  551. ),
  552. ),
  553. openChat?divider():Container(),
  554. openChat?Container(
  555. alignment: Alignment.bottomCenter, color: Colors.white,
  556. padding: EdgeInsets.only(top: 20),
  557. child: Row(
  558. children: [
  559. Expanded(
  560. child: SizedBox(
  561. width: double.infinity,
  562. child: TextField(
  563. controller: controllerPesan,
  564. maxLength: 256,
  565. style: const TextStyle(fontSize: 14, color: Colors.black),
  566. keyboardType: TextInputType.multiline,
  567. minLines: 1,
  568. maxLines: 5,
  569. decoration: InputDecoration(
  570. counterText: '',
  571. hintText: 'writeMessage'.tr()+'..',
  572. hintStyle: TextStyle(color: textColor.withValues(alpha: 0.5), fontSize: 14),
  573. filled: true,
  574. fillColor: backgroundColor,
  575. hoverColor: Colors.black.withValues(alpha: 0.1),
  576. contentPadding: EdgeInsets.symmetric(vertical: 17, horizontal: 20),
  577. suffixIcon: GestureDetector(
  578. child: Padding(padding: EdgeInsets.only(left: 13, right: 13), child: U.iconsax('paperclip-2', color: textColor, size: 24)),
  579. onTap: ()async{
  580. var uuid = Uuid().v1().replaceAll('-', '');
  581. var data = {
  582. "uniqueId": uuid,
  583. "userId": username,
  584. "recipientId": "#forum",
  585. "senderType": "INFORMANT",
  586. "text": controllerPesan.text.trim(),
  587. "chatId": idChat,
  588. "images": null
  589. };
  590. await getImage(ImageSource.gallery).then((value) {
  591. if (_image != null) {
  592. navigateTo(context, PhotoChat(data, ImageSource.gallery, false, _image!)).then((value) {
  593. if (value != null) {
  594. sendMessage(value);
  595. }
  596. });
  597. }
  598. });
  599. },
  600. ),
  601. border: InputBorder.none,
  602. enabledBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(borderRadius), borderSide: BorderSide(color: textColor)),
  603. focusedBorder: OutlineInputBorder(borderRadius: BorderRadius.circular(borderRadius), borderSide: BorderSide(color: primaryColor)),
  604. isDense: true
  605. ),
  606. onChanged: (val) {
  607. setState(() {
  608. if (val.trim() != '') {
  609. final tp = TextPainter(text: TextSpan(text: val), textDirection: ui.TextDirection.ltr);
  610. tp.layout(maxWidth: 400);
  611. final line = tp.computeLineMetrics().length;
  612. if (line == 1) {
  613. borderRadius = 50.0;
  614. } else {
  615. borderRadius = 20.0;
  616. }
  617. isSend = true;
  618. } else {
  619. isSend = false;
  620. }
  621. });
  622. },
  623. ),
  624. ),
  625. ),
  626. SizedBox(width: 12),
  627. GestureDetector(
  628. child: Container(
  629. padding: EdgeInsets.all(12),
  630. child: Image.asset('assets/image/icon/Send.png', width: 20, height: 20),
  631. decoration: BoxDecoration(color: primaryColor, borderRadius: BorderRadius.all(Radius.circular(50))),
  632. ),
  633. onTap: (){
  634. if(controllerPesan.text.isNotEmpty){
  635. var uuid = Uuid().v1().replaceAll('-', '');
  636. var data = {
  637. "uniqueId": uuid,
  638. "userId": username,
  639. "recipientId": "#forum",
  640. "senderType": "INFORMANT",
  641. "text": controllerPesan.text.trim(),
  642. "chatId": idChat,
  643. "images": null
  644. };
  645. sendMessage(data);
  646. }
  647. },
  648. )
  649. ],
  650. ),
  651. ):U.getInternetStatus()?Center(child: Padding(
  652. padding: EdgeInsets.symmetric(vertical: 20),
  653. child: bubble_chat(Text('chatClosed'.tr(), textAlign: TextAlign.center, style: TextStyle(fontSize: 12)), null, false, false),
  654. )):Container()
  655. ],
  656. ),
  657. )
  658. ],
  659. ),
  660. ),
  661. )
  662. ],
  663. ),
  664. );
  665. }
  666. Future getImage(media) async {
  667. try {
  668. var pickedFile = await ImagePicker().pickImage(source: media);
  669. if (pickedFile != null) {
  670. var image = img.decodeImage(await pickedFile.readAsBytes());
  671. var imgPercent = (1000 / (image!.width / 100)).toDouble();
  672. if (image.width > 1000) {
  673. image = img.copyResize(image, width: ((image.width / 100) * imgPercent).toInt(), height: ((image.height / 100) * imgPercent).toInt());
  674. }
  675. var compressed = img.encodeJpg(image, quality: 60);
  676. setState(() {
  677. _image = compressed as Uint8List?;
  678. });
  679. }
  680. } catch (e) {
  681. print(e.toString());
  682. }
  683. }
  684. bool checkDate(date1, date2) {
  685. final dateToCheck1 = DateTime(DateTime.parse(date1).year, DateTime.parse(date1).month, DateTime.parse(date1).day);
  686. final dateToCheck2 = DateTime(DateTime.parse(date2).year, DateTime.parse(date2).month, DateTime.parse(date2).day);
  687. return dateToCheck1 == dateToCheck2 ? true : false;
  688. }
  689. String convertDate(date, locale) {
  690. final dateToCheck = DateTime.parse(date);
  691. final now = DateTime.now();
  692. final today = DateTime(now.year, now.month, now.day);
  693. final yesterday = DateTime(now.year, now.month, now.day - 1);
  694. final aDate = DateTime(dateToCheck.year, dateToCheck.month, dateToCheck.day);
  695. if (aDate == today) {
  696. return 'today'.tr();
  697. } else if (aDate == yesterday) {
  698. return 'yesterday'.tr();
  699. } else {
  700. return DateFormat('dd MMMM yyyy', locale).format(DateTime.parse(date));
  701. }
  702. }
  703. Widget bubble_chat(Widget child, Widget? time, bool isNip, bool isMe) {
  704. bool isDate = false;
  705. if (time == null) {
  706. isDate = true;
  707. time = Container();
  708. }
  709. Color color = isMe ? primaryColor.withValues(alpha: 0.3) : isDate ? Color(0xffD5F5FF) : Color(0xffECECEC);
  710. var clipPath = ClipPath(
  711. child: ConstrainedBox(
  712. constraints: BoxConstraints(minWidth: 50),
  713. child: Container(
  714. decoration: BoxDecoration(
  715. color: color,
  716. ),
  717. child: Padding(
  718. padding: EdgeInsets.all(8),
  719. child: isDate ? child : Stack(
  720. children: [
  721. Padding(
  722. padding: EdgeInsets.only(
  723. bottom: 20,
  724. right: isNip && isMe ? 6 : 0,
  725. left: isNip && !isMe ? 6 : 0,
  726. ),
  727. child: child,
  728. ),
  729. Positioned(bottom: 0.0, right: isNip && isMe ? 6 : 0, child: time)
  730. ],
  731. ),
  732. ),
  733. ),
  734. ),
  735. clipper: isMe ? MyClipper(isNip) : YourClipper(isNip),
  736. );
  737. return Padding(padding: EdgeInsets.only(right: isNip && isMe ? 0 : 6, left: isNip && !isMe ? 0 : 6), child: clipPath);
  738. }
  739. //-----------------------------------------------------------------------------------------------------------------------------
  740. Widget renderRequested(){
  741. if(widget.data['receptionistId'] != null){
  742. if(widget.user['roomAttendant'] != null && widget.user['roomAttendant'] && widget.user['userId'] != widget.data['informantUserId'] && widget.user['userId'] == widget.data['receptionistId']){
  743. return Column(
  744. children: [
  745. textHorizontal('requestedFor'.tr(), widget.data['informantName']??'-'),
  746. SizedBox(height: 16),
  747. ],
  748. );
  749. }
  750. if(widget.user['userId'] == widget.data['informantUserId'] && widget.user['userId'] != widget.data['receptionistId']){
  751. return Column(
  752. children: [
  753. textHorizontal('requestedBy'.tr(), widget.data['receptionistName']??'-'),
  754. SizedBox(height: 16),
  755. ],
  756. );
  757. }
  758. }
  759. return Container();
  760. }
  761. Widget attachment_new(list){
  762. List imageList = [];
  763. if(widget.data['_attachment'] != null){
  764. for(var i = 1; i <= 5; i++){
  765. if(widget.data['_attachment']['_mobileRequestAtt$i'] != null){
  766. imageList.add({'thumb': widget.data['_attachment']['_mobileRequestThumb$i'], 'image': widget.data['_attachment']['_mobileRequestAtt$i']});
  767. }
  768. }
  769. }
  770. return imageList.length > 0 ? Column(
  771. crossAxisAlignment: CrossAxisAlignment.start,
  772. children: [
  773. Text('image'.tr(), style: TextStyle(color: textColor)),
  774. SizedBox(height: 5),
  775. LayoutBuilder(
  776. builder: (context, constraints) {
  777. var imageWidth = ((constraints.maxWidth-32)/5)-5;
  778. return Row(
  779. children: List.generate(imageList.length, (i){
  780. return GestureDetector(
  781. child: Container(
  782. width: imageWidth, height: imageWidth, alignment: Alignment.topRight,
  783. margin: EdgeInsets.only(right: i == 4 ? 0 : 6),
  784. decoration: BoxDecoration(
  785. color: Colors.black12, borderRadius: BorderRadius.all(Radius.circular(5)), border: Border.all(color: Colors.black26, width: 0.5),
  786. 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)
  787. ),
  788. ),
  789. onTap: ()=>navigateTo(context, PhotoPreview('image'.tr(), imageList[i]['image'], true))
  790. );
  791. }),
  792. );
  793. },
  794. )
  795. ],
  796. ) : textVertical('image'.tr(), 'noImgAttach'.tr());
  797. }
  798. Widget finish_att_new(list){
  799. List imageList = [];
  800. if((widget.data['currentState'] == 'DISELESAIKAN' || widget.data['currentState'] == 'TUNTAS')){
  801. if(widget.data['_attachment'] != null){
  802. for(var i = 1; i <= 5; i++){
  803. if(widget.data['_attachment']['_mobileFinishAtt$i'] != null){
  804. imageList.add({'thumb': widget.data['_attachment']['_mobileFinishThumb$i'], 'image': widget.data['_attachment']['_mobileFinishAtt$i']});
  805. }
  806. }
  807. }
  808. }
  809. return imageList.length > 0 ? Column(
  810. crossAxisAlignment: CrossAxisAlignment.start,
  811. children: [
  812. SizedBox(height: 16),
  813. Text('finishAttachment'.tr(), style: TextStyle(color: textColor)),
  814. SizedBox(height: 8),
  815. LayoutBuilder(
  816. builder: (context, constraints) {
  817. var imageWidth = ((constraints.maxWidth-32)/5)-5;
  818. return Row(
  819. children: List.generate(imageList.length, (i){
  820. return GestureDetector(
  821. child: Container(
  822. width: imageWidth, height: imageWidth, alignment: Alignment.topRight,
  823. margin: EdgeInsets.only(right: i == 4 ? 0 : 6),
  824. decoration: BoxDecoration(
  825. color: Colors.black12, borderRadius: BorderRadius.all(Radius.circular(5)), border: Border.all(color: Colors.black26, width: 0.5),
  826. 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)
  827. ),
  828. ),
  829. onTap: ()=>navigateTo(context, PhotoPreview('finishAttachment'.tr(), imageList[i]['image'], true))
  830. );
  831. }),
  832. );
  833. },
  834. )
  835. ],
  836. ) : Container();
  837. }
  838. Widget suspendPanel(list){
  839. var activeHold = widget.data['_activeHoldRequest'];
  840. var requestHold = widget.data['_holdRequest'];
  841. return Column(
  842. children: [
  843. activeHold != null ? Padding(padding: EdgeInsets.symmetric(vertical: 15), child: divider(opacity: 0.05)) : Container(),
  844. activeHold != null ? Column(
  845. children: [
  846. Row(
  847. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  848. children: [
  849. Text('state'.tr(), style: TextStyle(fontSize: 14, color: textColor)),
  850. Container(
  851. child: Row(
  852. mainAxisAlignment: MainAxisAlignment.end,
  853. children: [
  854. Image(image: AssetImage('assets/image/general/Watch.png'), width: 20, height: 20),
  855. SizedBox(width: 5),
  856. Text('hold'.tr(), style: TextStyle(fontSize: 14, color: primaryColor)),
  857. ],
  858. ),
  859. )
  860. ],
  861. ),
  862. SizedBox(height: 16),
  863. textHorizontal('description'.tr(), activeHold['description'])
  864. ],
  865. ) : Container(),
  866. requestHold == null || requestHold.length == 0 || (requestHold.length == 1 && requestHold[0]['datetimeEnd'] == null) ? Container() : Column(
  867. crossAxisAlignment: CrossAxisAlignment.start,
  868. children: [
  869. Padding(padding: EdgeInsets.symmetric(vertical: 15), child: divider(opacity: 0.05)),
  870. Text('holdHistory'.tr(), style: TextStyle(fontSize: 14, color: Colors.black)),
  871. SizedBox(height: 5),
  872. Column(
  873. children: List.generate(requestHold.length, (i) {
  874. return requestHold[i]['datetimeEnd'] != null ? Container(
  875. padding: EdgeInsets.symmetric(vertical: 5),
  876. child: Row(
  877. crossAxisAlignment: CrossAxisAlignment.start,
  878. children: [
  879. Text('${i+1}.', style: TextStyle(fontSize: 14, color: Colors.black)),
  880. SizedBox(width: 5),
  881. Expanded(
  882. child: Column(
  883. crossAxisAlignment: CrossAxisAlignment.start,
  884. children: [
  885. Text(requestHold[i]['description'], style: TextStyle(fontSize: 14, color: Colors.black), textAlign: TextAlign.start),
  886. SizedBox(height: 3),
  887. Text('${DateFormat('dd MMM yyyy, HH:mm', context.locale.toString()).format(DateTime.parse(requestHold[i]['datetimeStart']))} - ${DateFormat('dd MMM yyyy, HH:mm', context.locale.toString()).format(DateTime.parse(requestHold[i]['datetimeEnd']))}', style: TextStyle(fontSize: 14, color: primaryColor))
  888. ],
  889. ),
  890. )
  891. ],
  892. ),
  893. ) : Container();
  894. }),
  895. )
  896. ],
  897. )
  898. ],
  899. );
  900. }
  901. Widget timeline(label, text, note, noteTranslate, {bool first = false, bool current = false}) {
  902. return TimelineTile(
  903. nodeAlign: TimelineNodeAlign.start,
  904. contents: Container(
  905. margin: EdgeInsets.fromLTRB(15, 10, 0, 10),
  906. child: Row(
  907. children: [
  908. Text(label, style: TextStyle(fontSize: 14, color: textColor.withValues(alpha: 0.85))),
  909. SizedBox(width: 5),
  910. Expanded(
  911. child: Column(
  912. crossAxisAlignment: CrossAxisAlignment.end,
  913. children: [
  914. Text(text, style: TextStyle(fontSize: 13, color: textColor)),
  915. note != null && note != '' ? Text(note, style: TextStyle(fontSize: 12, color: primaryColor), textAlign: TextAlign.right) : Container(),
  916. U.autoTranslate() && noteTranslate != null && noteTranslate != '' && note != noteTranslate ? Container(
  917. margin: EdgeInsets.only(top: 1), decoration: BoxDecoration(border: Border(top: BorderSide(color: primaryColor.withValues(alpha: 0.3)))),
  918. child: Text('($noteTranslate)', style: TextStyle(fontSize: 12, color: primaryColor.withValues(alpha: 0.7), fontStyle: FontStyle.italic), textAlign: TextAlign.right),
  919. ) : Container(),
  920. ],
  921. ),
  922. ),
  923. ],
  924. ),
  925. ),
  926. node: TimelineNode(
  927. indicator: DotIndicator(color: current ? primaryColor : Color(0xffE8E8E8)),
  928. startConnector: SolidLineConnector(color: first ? Colors.transparent : Color(0xffE8E8E8)),
  929. endConnector: SolidLineConnector(color: current ? Colors.transparent : Color(0xffE8E8E8)),
  930. ),
  931. );
  932. }
  933. }