@zenify-omni/chat-ui-react-js 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (403) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +92 -0
  3. package/assets/asset-url.js +6 -0
  4. package/assets/icons/chatter_agent.js +27 -0
  5. package/assets/icons/chatter_chatbot.js +43 -0
  6. package/assets/icons/chatter_contact.js +36 -0
  7. package/assets/icons/email_icon.png +0 -0
  8. package/assets/icons/emoji/angry.svg +56 -0
  9. package/assets/icons/emoji/haha.svg +20 -0
  10. package/assets/icons/emoji/like.svg +10 -0
  11. package/assets/icons/emoji/like_out_line.png +0 -0
  12. package/assets/icons/emoji/love.svg +10 -0
  13. package/assets/icons/emoji/sad.svg +46 -0
  14. package/assets/icons/emoji/wow.svg +51 -0
  15. package/assets/icons/instagram.js +29 -0
  16. package/assets/icons/not_found.png +0 -0
  17. package/assets/icons/not_found_template.svg +9 -0
  18. package/assets/icons/phone_icon.png +0 -0
  19. package/assets/icons/shopee.js +17 -0
  20. package/assets/icons/sms_icon.png +0 -0
  21. package/assets/icons/tiktok.js +17 -0
  22. package/assets/icons/whatsapp.js +28 -0
  23. package/assets/icons/zalo.js +17 -0
  24. package/assets/icons/zalo_icon.png +0 -0
  25. package/assets/icons/zns_icon.png +0 -0
  26. package/assets/images/emoji.webp +0 -0
  27. package/assets/images/error.png +0 -0
  28. package/assets/images/menu.png +0 -0
  29. package/assets/images/money.png +0 -0
  30. package/assets/images/success.png +0 -0
  31. package/assets/public-urls.js +78 -0
  32. package/components/campaign-detail-route/select/group.js +38 -0
  33. package/components/campaign-detail-route/select/multi-groups.js +43 -0
  34. package/components/chat-route/chat-box/ads-context-card.js +143 -0
  35. package/components/chat-route/chat-box/chat-drop-file.js +18 -0
  36. package/components/chat-route/chat-box/chat-feedback/chat-insight.js +214 -0
  37. package/components/chat-route/chat-box/chat-feedback/index.js +127 -0
  38. package/components/chat-route/chat-box/chat-header-actions-inline.js +1055 -0
  39. package/components/chat-route/chat-box/chat-header.js +465 -0
  40. package/components/chat-route/chat-box/chat-input.js +1164 -0
  41. package/components/chat-route/chat-box/chat-message-action.js +399 -0
  42. package/components/chat-route/chat-box/chat-message-list.js +995 -0
  43. package/components/chat-route/chat-box/chat-message.js +2099 -0
  44. package/components/chat-route/chat-box/chat-reply-preview.js +317 -0
  45. package/components/chat-route/chat-box/common-groups-modal.js +430 -0
  46. package/components/chat-route/chat-box/constants.js +29 -0
  47. package/components/chat-route/chat-box/contact-card/index.js +87 -0
  48. package/components/chat-route/chat-box/edit-customer-alias-dialog.js +197 -0
  49. package/components/chat-route/chat-box/emoji-picker-combined.js +91 -0
  50. package/components/chat-route/chat-box/emoji-sprite.js +45 -0
  51. package/components/chat-route/chat-box/emojiMap.js +92 -0
  52. package/components/chat-route/chat-box/facebook-reconnect-notice.js +49 -0
  53. package/components/chat-route/chat-box/forward-message-modal.js +659 -0
  54. package/components/chat-route/chat-box/index.js +165 -0
  55. package/components/chat-route/chat-box/message-time.js +44 -0
  56. package/components/chat-route/chat-box/message-viewers.js +114 -0
  57. package/components/chat-route/chat-box/pasted-file-preview.js +138 -0
  58. package/components/chat-route/chat-box/pinned-messages.js +255 -0
  59. package/components/chat-route/chat-box/react-message/react-preview.js +83 -0
  60. package/components/chat-route/chat-box/react-message/reaction-button.js +200 -0
  61. package/components/chat-route/chat-box/right-side/chat-history.js +142 -0
  62. package/components/chat-route/chat-box/right-side/chat-tag-selector.js +232 -0
  63. package/components/chat-route/chat-box/right-side/create-personal-tag-modal.js +458 -0
  64. package/components/chat-route/chat-box/right-side/customer/customer-info-item.js +60 -0
  65. package/components/chat-route/chat-box/right-side/in-room-dialog.js +225 -0
  66. package/components/chat-route/chat-box/right-side/zalo-group/add-friend-dialog.js +154 -0
  67. package/components/chat-route/chat-box/right-side/zalo-group/send-message-dialog.js +165 -0
  68. package/components/chat-route/chat-box/send-contact-card-modal.js +102 -0
  69. package/components/chat-route/chat-box/send-contact-card.js +80 -0
  70. package/components/chat-route/chat-box/text-content.js +400 -0
  71. package/components/chat-route/chat-box/use-facebook-page-invalid.js +22 -0
  72. package/components/chat-route/chat-box/zalo-emoji-decoration.js +98 -0
  73. package/components/chat-route/chat-box/zalo-emoji-picker.js +74 -0
  74. package/components/chat-route/chat-box/zalo-personal-editor.js +590 -0
  75. package/components/chat-route/chat-box/zalo-reminder/create-zalo-reminder.js +868 -0
  76. package/components/chat-route/chat-box/zalo-reminder/use-send-zalo-reminder.js +98 -0
  77. package/components/chat-route/chat-box/zalo-reminder/zalo-reminder-content.js +294 -0
  78. package/components/chat-route/chat-box/zalo-rtf-utils.js +422 -0
  79. package/components/chat-route/chat-list/action-chat-item.js +116 -0
  80. package/components/chat-route/chat-list/assign-agent-dialog.js +170 -0
  81. package/components/chat-route/chat-list/assign-tag-dialog.js +242 -0
  82. package/components/chat-route/chat-list/chat-item-tags.js +105 -0
  83. package/components/chat-route/chat-list/chat-item.js +749 -0
  84. package/components/chat-route/chat-list/chat-list-item.js +370 -0
  85. package/components/chat-route/chat-list/chat-list-selection-bar.js +426 -0
  86. package/components/chat-route/chat-list/chat-search-preview.js +48 -0
  87. package/components/chat-route/chat-list/chat-sort-menu.js +89 -0
  88. package/components/chat-route/chat-list/edit-filter-modal.js +468 -0
  89. package/components/chat-route/chat-list/filter-chat-sources.js +222 -0
  90. package/components/chat-route/chat-list/filter-chat.js +501 -0
  91. package/components/chat-route/chat-list/filter-criteria-rows.js +845 -0
  92. package/components/chat-route/chat-list/filter-group-select.js +66 -0
  93. package/components/chat-route/chat-list/filter-pin-menu.js +165 -0
  94. package/components/chat-route/chat-list/friend-request/list-friend-request.js +287 -0
  95. package/components/chat-route/chat-list/index.js +243 -0
  96. package/components/chat-route/chat-list/inline-search-results.js +178 -0
  97. package/components/chat-route/chat-list/post-ids-field.js +104 -0
  98. package/components/chat-route/chat-list/quick-filter-bar.js +391 -0
  99. package/components/chat-route/chat-list/save-filter-popover.js +258 -0
  100. package/components/chat-route/chat-list/search-messages/index.js +225 -0
  101. package/components/chat-route/chat-list/search-result-header.js +51 -0
  102. package/components/chat-route/chat-list/util.js +604 -0
  103. package/components/chat-route/chat-toolbar.js +108 -0
  104. package/components/chat-route/hooks/use-reassign.js +111 -0
  105. package/components/chat-route/shared/close-conversation-dialog.js +111 -0
  106. package/components/chat-route/shared/force-transfer-dialog.js +109 -0
  107. package/components/chat-route/shared/in-queue-confirm-dialog.js +40 -0
  108. package/components/chat-route/util.js +146 -0
  109. package/components/chat-route/zalo/modal-action-zalo.js +76 -0
  110. package/components/chat-route/zalo/modal-add-friend-zalo.js +277 -0
  111. package/components/custom/SafeHTML.js +45 -0
  112. package/components/custom/audio-player.js +81 -0
  113. package/components/custom/avatar.js +95 -0
  114. package/components/custom/between-date-picker/index.js +86 -0
  115. package/components/custom/button-close.js +28 -0
  116. package/components/custom/button.js +80 -0
  117. package/components/custom/color-picker.js +81 -0
  118. package/components/custom/combobox.js +168 -0
  119. package/components/custom/custom-dialog.js +44 -0
  120. package/components/custom/custom-select.js +256 -0
  121. package/components/custom/cycle-value-helpers.js +11 -0
  122. package/components/custom/cycle-value.js +93 -0
  123. package/components/custom/date-time-picker/components/date-time-group.js +44 -0
  124. package/components/custom/date-time-picker/components/date-time-input.js +383 -0
  125. package/components/custom/date-time-picker/components/date-time-unit-input.js +138 -0
  126. package/components/custom/date-time-picker/components/month-year-picker.js +232 -0
  127. package/components/custom/date-time-picker/hooks/use-merge-refs.js +18 -0
  128. package/components/custom/date-time-picker/hooks/use-scroll-to-center.js +18 -0
  129. package/components/custom/date-time-picker/index.js +348 -0
  130. package/components/custom/field-file-upload/files-upload.js +87 -0
  131. package/components/custom/field-file-upload/image-upload.js +115 -0
  132. package/components/custom/field-file-upload/preview-images-modal.js +284 -0
  133. package/components/custom/field-file-upload/preview-list-file.js +134 -0
  134. package/components/custom/field-file-upload/preview-list-image.js +108 -0
  135. package/components/custom/field-file-upload/upload-custom.js +222 -0
  136. package/components/custom/field-generator.js +639 -0
  137. package/components/custom/field-layout-popover.js +304 -0
  138. package/components/custom/file-preview-modal.js +351 -0
  139. package/components/custom/html-edtior.js +100 -0
  140. package/components/custom/icon.js +49 -0
  141. package/components/custom/infinite-scroll-combobox.js +253 -0
  142. package/components/custom/inline-edit-popover.js +90 -0
  143. package/components/custom/inputs/calendar-input.js +0 -0
  144. package/components/custom/inputs/chip-input.js +136 -0
  145. package/components/custom/inputs/file-input.js +71 -0
  146. package/components/custom/inputs/mask-data/mask-data-input.js +80 -0
  147. package/components/custom/inputs/mask-data/mask-data-select.js +78 -0
  148. package/components/custom/inputs/mask-data/mask-data-textarea.js +75 -0
  149. package/components/custom/inputs/mask-data/reconcile-masked-edit.js +20 -0
  150. package/components/custom/jxl-decode.js +34 -0
  151. package/components/custom/jxl-image.js +68 -0
  152. package/components/custom/jxl-worker.js +12 -0
  153. package/components/custom/label.js +55 -0
  154. package/components/custom/layout.js +30 -0
  155. package/components/custom/multi-select-search-cc.js +179 -0
  156. package/components/custom/multiple-select-setting-tags.js +404 -0
  157. package/components/custom/multiple-selector.js +821 -0
  158. package/components/custom/pagination.js +95 -0
  159. package/components/custom/popup-confirm.js +120 -0
  160. package/components/custom/previews/facebook/facebook-appointment-booking-preview.js +83 -0
  161. package/components/custom/previews/facebook/facebook-audio-preview.js +130 -0
  162. package/components/custom/previews/facebook/facebook-event-preview.js +72 -0
  163. package/components/custom/previews/facebook/facebook-file-preview.js +95 -0
  164. package/components/custom/previews/facebook/facebook-group-preview.js +103 -0
  165. package/components/custom/previews/facebook/facebook-image-preview.js +81 -0
  166. package/components/custom/previews/facebook/facebook-page-preview.js +85 -0
  167. package/components/custom/previews/facebook/facebook-post-preview.js +77 -0
  168. package/components/custom/previews/facebook/facebook-reel-preview.js +83 -0
  169. package/components/custom/previews/facebook/facebook-sticker-preview.js +23 -0
  170. package/components/custom/previews/facebook/facebook-video-preview.js +114 -0
  171. package/components/custom/previews/facebook/index.js +24 -0
  172. package/components/custom/previews/file-preview.js +747 -0
  173. package/components/custom/previews/image-preview.js +288 -0
  174. package/components/custom/previews/instagram/index.js +4 -0
  175. package/components/custom/previews/instagram/instagram-share-post-preview.js +77 -0
  176. package/components/custom/previews/link-preview.js +166 -0
  177. package/components/custom/previews/product-preview.js +334 -0
  178. package/components/custom/previews/tiktok-order-preview.js +278 -0
  179. package/components/custom/previews/tiktok-product-preview.js +321 -0
  180. package/components/custom/previews/tiktok-voucher-preview.js +151 -0
  181. package/components/custom/previews/whatsapp/index.js +10 -0
  182. package/components/custom/previews/whatsapp/whatsapp-contact-card-preview.js +150 -0
  183. package/components/custom/previews/whatsapp/whatsapp-order-preview.js +38 -0
  184. package/components/custom/previews/whatsapp/whatsapp-poll-preview.js +29 -0
  185. package/components/custom/previews/whatsapp/whatsapp-product-preview.js +29 -0
  186. package/components/custom/retry-image.js +44 -0
  187. package/components/custom/search-input.js +26 -0
  188. package/components/custom/separator-with-text.js +14 -0
  189. package/components/custom/showToast.js +21 -0
  190. package/components/custom/sortable-header.js +62 -0
  191. package/components/custom/table-resize-line.js +92 -0
  192. package/components/custom/time-picker/index.js +73 -0
  193. package/components/custom/time-picker/time-picker-input.js +159 -0
  194. package/components/custom/time-picker/time-picker-utils.js +152 -0
  195. package/components/custom/viewers/audio-player.js +192 -0
  196. package/components/custom/viewers/code-viewer.js +140 -0
  197. package/components/custom/viewers/csv-viewer.js +174 -0
  198. package/components/custom/viewers/docx-viewer.js +145 -0
  199. package/components/custom/viewers/image-viewer.js +104 -0
  200. package/components/custom/viewers/markdown-viewer.js +124 -0
  201. package/components/custom/viewers/pdf-viewer.js +333 -0
  202. package/components/custom/viewers/spreadsheet-viewer.js +232 -0
  203. package/components/custom/viewers/unsupported-viewer.js +85 -0
  204. package/components/custom/viewers/video-player.js +241 -0
  205. package/components/customers-route/change-owner-modal.js +430 -0
  206. package/components/customers-route/contact-note-button.js +212 -0
  207. package/components/customers-route/customer-source.js +37 -0
  208. package/components/customers-route/table/columns.js +675 -0
  209. package/components/customers-route/table/edit-fields.js +125 -0
  210. package/components/customers-route/table/editable-cell.js +218 -0
  211. package/components/customers-route/table/note-cell.js +77 -0
  212. package/components/dialogs/invite-agent.js +677 -0
  213. package/components/error-boundary.js +53 -0
  214. package/components/leads-route/duplicate-phone-warning-toast.js +96 -0
  215. package/components/leads-route/table/columns.js +523 -0
  216. package/components/leads-route/table/contact-cell-name.js +82 -0
  217. package/components/leads-route/table/edit-fields.js +142 -0
  218. package/components/leads-route/table/editable-cell.js +228 -0
  219. package/components/org-tree/group-name-display.js +36 -0
  220. package/components/org-tree/group-tree-multi-select.js +208 -0
  221. package/components/org-tree/group-tree-select.js +220 -0
  222. package/components/posts-route/dialog-select-posts.js +284 -0
  223. package/components/reports-route/agents/multi-select-agents.js +55 -0
  224. package/components/reports-route/agents/multi-select-search-agents.js +43 -0
  225. package/components/settings-route/chat-layout/detail/constants.js +353 -0
  226. package/components/settings-route/chat-layout/detail/form.js +43 -0
  227. package/components/settings-route/chat-timeout/channel-multi-select.js +119 -0
  228. package/components/settings-route/multi-channel/facebook/hooks/use-facebook-sdk.js +3 -0
  229. package/components/settings-route/object-rule/util.js +79 -0
  230. package/components/settings-route/routing/settings-dialog.js +561 -0
  231. package/components/settings-route/switchboard/queue-new/constant.js +9 -0
  232. package/components/shared/linked-customer-fields/LinkedCustomerFields.js +91 -0
  233. package/components/shared/linked-customer-fields/use-linked-customer-fields.js +123 -0
  234. package/components/smartqc-route/qc-form/controls/multi-select-search-agents.js +50 -0
  235. package/components/ui/alert-dialog.js +112 -0
  236. package/components/ui/avatar.js +44 -0
  237. package/components/ui/badge.js +54 -0
  238. package/components/ui/button.js +48 -0
  239. package/components/ui/calendar.js +70 -0
  240. package/components/ui/card.js +58 -0
  241. package/components/ui/carousel.js +238 -0
  242. package/components/ui/checkbox.js +27 -0
  243. package/components/ui/command.js +111 -0
  244. package/components/ui/context-menu.js +154 -0
  245. package/components/ui/dialog.js +104 -0
  246. package/components/ui/dropdown-menu.js +169 -0
  247. package/components/ui/form.js +104 -0
  248. package/components/ui/input.js +115 -0
  249. package/components/ui/label.js +20 -0
  250. package/components/ui/popover.js +29 -0
  251. package/components/ui/radio-group.js +53 -0
  252. package/components/ui/scroll-area.js +38 -0
  253. package/components/ui/select.js +147 -0
  254. package/components/ui/separator.js +24 -0
  255. package/components/ui/sheet.js +113 -0
  256. package/components/ui/skeleton.js +17 -0
  257. package/components/ui/slider.js +26 -0
  258. package/components/ui/sonner.js +76 -0
  259. package/components/ui/switch.js +54 -0
  260. package/components/ui/table-v2.js +269 -0
  261. package/components/ui/table.js +245 -0
  262. package/components/ui/tabs.js +89 -0
  263. package/components/ui/textarea.js +33 -0
  264. package/components/ui/tooltip.js +40 -0
  265. package/components/workflow-editor/nodes/ticket/picker-field.js +233 -0
  266. package/components/zalo-login-qr.js +237 -0
  267. package/components/zalo-login-status-modal.js +45 -0
  268. package/config/env.js +27 -0
  269. package/config/hmr.js +8 -0
  270. package/config/navigation.js +54 -0
  271. package/config/runtime.js +46 -0
  272. package/config/theme.js +274 -0
  273. package/constants/brand-colors.js +32 -0
  274. package/constants/chat-icon.js +34 -0
  275. package/dist/chat.css +1 -0
  276. package/exceptions/throw-exception.js +15 -0
  277. package/hooks/use-chat-attachments.js +106 -0
  278. package/hooks/use-chat-configs.js +62 -0
  279. package/hooks/use-chat-customer.js +33 -0
  280. package/hooks/use-chat-display-config-sync.js +72 -0
  281. package/hooks/use-chat-permission.js +68 -0
  282. package/hooks/use-chat-room-detail.js +44 -0
  283. package/hooks/use-chat-selection.js +26 -0
  284. package/hooks/use-chat-sort.js +69 -0
  285. package/hooks/use-chat-surface.js +8 -0
  286. package/hooks/use-common-filter-options.js +70 -0
  287. package/hooks/use-crm-organization-filter-options.js +0 -0
  288. package/hooks/use-crm-organizations-data.js +23 -0
  289. package/hooks/use-debounce.js +14 -0
  290. package/hooks/use-dynamic-fields.js +7 -0
  291. package/hooks/use-facebook-notice.js +24 -0
  292. package/hooks/use-feature-flags.js +6 -0
  293. package/hooks/use-field-layout-override.js +46 -0
  294. package/hooks/use-file-upload.js +119 -0
  295. package/hooks/use-file-viewer.js +93 -0
  296. package/hooks/use-frozen-columns.js +29 -0
  297. package/hooks/use-horizontal-scroll.js +41 -0
  298. package/hooks/use-image-preview-queue.js +101 -0
  299. package/hooks/use-inline-editable-cell.js +97 -0
  300. package/hooks/use-intersection-observer.js +24 -0
  301. package/hooks/use-interval.js +20 -0
  302. package/hooks/use-latest-message-id.js +13 -0
  303. package/hooks/use-lead-filter-options.js +0 -0
  304. package/hooks/use-logout-listener.js +43 -0
  305. package/hooks/use-org-tree.js +43 -0
  306. package/hooks/use-permission.js +33 -0
  307. package/hooks/use-quick-filters.js +175 -0
  308. package/hooks/use-resizable-table.js +0 -0
  309. package/hooks/use-setting-common.js +389 -0
  310. package/hooks/use-settings.js +41 -0
  311. package/hooks/use-sort-bindings.js +24 -0
  312. package/hooks/use-table-display-config.js +0 -0
  313. package/hooks/use-tenant-config.js +99 -0
  314. package/hooks/use-update-user-config.js +150 -0
  315. package/hooks/use-zalo-connection.js +57 -0
  316. package/hooks/use-zalo-mention-list.js +31 -0
  317. package/index.css +624 -0
  318. package/index.js +100 -0
  319. package/lib/deal-name.js +27 -0
  320. package/lib/i18n/react.js +7 -0
  321. package/lib/i18n/use-language.js +0 -0
  322. package/lib/query-client.js +34 -0
  323. package/lib/utils.js +25 -0
  324. package/package.json +108 -0
  325. package/provider/chat-context.js +9 -0
  326. package/provider/chat-provider.js +177 -0
  327. package/provider/chat-room-context.js +9 -0
  328. package/provider/chat-room-hooks.js +8 -0
  329. package/provider/chat-room-provider.js +84 -0
  330. package/provider/hooks.js +22 -0
  331. package/provider/index.js +42 -0
  332. package/public/contact-card-user.svg +25 -0
  333. package/public/images/icons/facebook.svg +1 -0
  334. package/public/images/icons/instagram.svg +1 -0
  335. package/public/images/icons/shopee.svg +1 -0
  336. package/public/images/icons/whatsapp.svg +1 -0
  337. package/public/images/icons/zalo.png +0 -0
  338. package/public/images/images.jpg +0 -0
  339. package/public/images/ticket_sources/api.png +0 -0
  340. package/public/images/ticket_sources/email.png +0 -0
  341. package/public/images/ticket_sources/facebook.png +0 -0
  342. package/public/images/ticket_sources/hand.png +0 -0
  343. package/public/images/ticket_sources/instagram.png +0 -0
  344. package/public/images/ticket_sources/livechat.png +0 -0
  345. package/public/images/ticket_sources/shopee.svg +1 -0
  346. package/public/images/ticket_sources/sms.png +0 -0
  347. package/public/images/ticket_sources/telephone-call-in.png +0 -0
  348. package/public/images/ticket_sources/telephone-call-out.png +0 -0
  349. package/public/images/ticket_sources/tiktok.png +0 -0
  350. package/public/images/ticket_sources/tiktok_shop.png +0 -0
  351. package/public/images/ticket_sources/whatsapp.png +0 -0
  352. package/public/images/ticket_sources/whatsapp.svg +1 -0
  353. package/public/images/ticket_sources/zalo.png +0 -0
  354. package/public/placeholder.svg +13 -0
  355. package/store/app-status-store.js +17 -0
  356. package/store/chat-display-config-store.js +182 -0
  357. package/store/chat-display-config.resolvers.js +88 -0
  358. package/store/chat-store-helpers.js +62 -0
  359. package/store/chat-store.js +931 -0
  360. package/store/crm-organization-list-filter-store.js +126 -0
  361. package/store/customer-list-filter-store.js +139 -0
  362. package/store/devtools.js +9 -0
  363. package/store/duplicate-phone-warning-store.js +18 -0
  364. package/store/entity-extract-store.js +72 -0
  365. package/store/file-preview-store.js +27 -0
  366. package/store/filter-store.js +289 -0
  367. package/store/index.js +22 -0
  368. package/store/knowledge-crawl-store.js +53 -0
  369. package/store/lead-list-filter-store.js +142 -0
  370. package/store/list-pagination-state.js +44 -0
  371. package/store/lumi-learn-from-chat-store.js +69 -0
  372. package/store/merge-suggestion-store.js +27 -0
  373. package/store/notification-store.js +63 -0
  374. package/store/preview-image-store.js +22 -0
  375. package/store/settings-store/multi-channel/email-list-store.js +20 -0
  376. package/store/settings-store/multi-channel/facebook-list-store.js +22 -0
  377. package/store/settings-store/multi-channel/google-list-store.js +20 -0
  378. package/store/settings-store/multi-channel/instagram-list-store.js +20 -0
  379. package/store/settings-store/multi-channel/misa-list-store.js +20 -0
  380. package/store/settings-store/multi-channel/nhanhvn-list-store.js +20 -0
  381. package/store/settings-store/multi-channel/shopee-list-store.js +20 -0
  382. package/store/settings-store/multi-channel/shopee-order-list-store.js +20 -0
  383. package/store/settings-store/multi-channel/sms-list-store.js +20 -0
  384. package/store/settings-store/multi-channel/tiktok-business-list-store.js +20 -0
  385. package/store/settings-store/multi-channel/tiktok-list-store.js +20 -0
  386. package/store/settings-store/multi-channel/zalo-list-store.js +22 -0
  387. package/store/settings-store/multi-channel/zalo-user-list-store.js +25 -0
  388. package/store/smart-qc-store/smart-qc-list-filter-store.js +70 -0
  389. package/store/tenant-config-store.js +21 -0
  390. package/store/user-detail-store.js +17 -0
  391. package/store/user-status-store.js +33 -0
  392. package/store/workflow-store.js +24 -0
  393. package/store/workspace-store.js +32 -0
  394. package/tailwind-preset.js +129 -0
  395. package/utils/chat-actions.js +414 -0
  396. package/utils/chat_socket.js +1225 -0
  397. package/utils/extra-columns.js +108 -0
  398. package/utils/file.js +316 -0
  399. package/utils/html-to-plain-text.js +12 -0
  400. package/utils/notification.js +71 -0
  401. package/utils/replaceZaloSprite.js +64 -0
  402. package/utils/show-be-error.js +17 -0
  403. package/utils/typing_socket.js +101 -0
@@ -0,0 +1,1055 @@
1
+ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
2
+ import {
3
+ Dialog,
4
+ DialogContent,
5
+ DialogFooter,
6
+ DialogHeader,
7
+ DialogTitle,
8
+ DialogDescription
9
+ } from "../../ui/dialog.js";
10
+ import { Button } from "../../custom/button.js";
11
+ import {
12
+ Power,
13
+ RotateCcw,
14
+ UserPlus,
15
+ Users,
16
+ UserCheck,
17
+ Forward,
18
+ Inbox,
19
+ ChevronDown,
20
+ Search,
21
+ MoreVertical,
22
+ Bot,
23
+ LogOut
24
+ } from "lucide-react";
25
+ import InRoomDialog from "./right-side/in-room-dialog.js";
26
+ import InviteAgentDialog from "../../dialogs/invite-agent.js";
27
+ import { useEffect, useMemo, useRef, useState } from "react";
28
+ import { getUser } from "@zenify-omni/chat-js/utils/auth.js";
29
+ import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
30
+ import {
31
+ inviteUsers,
32
+ closeSession,
33
+ reopenSession,
34
+ receiveInvite,
35
+ receiveSession,
36
+ distributeManual,
37
+ getSessionMembers,
38
+ removeUsers
39
+ } from "@zenify-omni/chat-js/api/chatroom.js";
40
+ import { getUsersInQueues } from "@zenify-omni/chat-js/api/settings/queue-v3.js";
41
+ import { toast } from "sonner";
42
+ import { throwException } from "../../../exceptions/throw-exception.js";
43
+ import {
44
+ getAvailableAgents,
45
+ allUser as searchAllUser,
46
+ findUser
47
+ } from "@zenify-omni/chat-js/api/user.js";
48
+ import { getChatTimeoutConfig } from "@zenify-omni/chat-js/api/settings/chat-timeout.js";
49
+ import QUERY_KEY from "@zenify-omni/chat-js/constants/use-query-key.js";
50
+ import { UserRole, UserRoleContext } from "@zenify-omni/chat-js/constants/user.js";
51
+ import { useGetQueueDetail } from "../../../hooks/use-setting-common.js";
52
+ import useDebounce from "../../../hooks/use-debounce.js";
53
+ import { SubscribedUserPermission } from "../../settings-route/switchboard/queue-new/constant.js";
54
+ import CloseConversationDialog from "../shared/close-conversation-dialog.js";
55
+ import useChatStore from "../../../store/chat-store.js";
56
+ import {
57
+ getTabStatusFromChat,
58
+ isClosedChat,
59
+ isReceivedChat
60
+ } from "../../../store/chat-store-helpers.js";
61
+ import {
62
+ buildActionReceiveMessage,
63
+ ChatFilterAssignStatus
64
+ } from "@zenify-omni/chat-js/constants/chat-message.js";
65
+ import {
66
+ appendOptimisticDistributionLog,
67
+ applyReceivedChat,
68
+ clearReceiveHandled,
69
+ markReceiveHandled
70
+ } from "../../../utils/chat-actions.js";
71
+ import { maskData } from "@zenify-omni/chat-js/utils/data.js";
72
+ import useReassign from "../hooks/use-reassign.js";
73
+ import { isZaloGeneralChannel, isZaloPersonal } from "../util.js";
74
+ import ForceTransferDialog from "../shared/force-transfer-dialog.js";
75
+ import { Avatar, AvatarFallback } from "../../custom/avatar.js";
76
+ import {
77
+ Popover,
78
+ PopoverContent,
79
+ PopoverTrigger
80
+ } from "../../ui/popover.js";
81
+ import PopupConfirm from "../../custom/popup-confirm.js";
82
+ import {
83
+ DropdownMenu,
84
+ DropdownMenuTrigger,
85
+ DropdownMenuContent,
86
+ DropdownMenuItem
87
+ } from "../../ui/dropdown-menu.js";
88
+ import { cn } from "../../../lib/utils.js";
89
+ import { useTranslation } from "react-i18next";
90
+ import i18n from "@zenify-omni/chat-js/lib/i18n/index.js";
91
+ function removeSkipReasonLabel(reason) {
92
+ switch (reason) {
93
+ case "assigned_agent":
94
+ return i18n.t("chat:message.cannotRemoveAssignedAgent", {
95
+ defaultValue: "Kh\xF4ng x\xF3a \u0111\u01B0\u1EE3c chuy\xEAn vi\xEAn ph\u1EE5 tr\xE1ch \u2014 h\xE3y chuy\u1EC3n ti\u1EBFp ho\u1EB7c \u0111\xF3ng h\u1ED9i tho\u1EA1i"
96
+ });
97
+ case "ticket_linked":
98
+ return i18n.t("chat:message.cannotRemoveTicketLinked", {
99
+ defaultValue: "Th\xE0nh vi\xEAn n\xE0y \u0111ang g\u1EAFn v\u1EDBi ticket c\u1EE7a h\u1ED9i tho\u1EA1i"
100
+ });
101
+ case "queue_member":
102
+ return i18n.t("chat:message.cannotRemoveQueueMember", {
103
+ defaultValue: "Th\xE0nh vi\xEAn n\xE0y th\u1EA5y h\u1ED9i tho\u1EA1i nh\u1EDD thu\u1ED9c nh\xF3m ph\xE2n ph\u1ED1i, kh\xF4ng x\xF3a ri\xEAng \u0111\u01B0\u1EE3c"
104
+ });
105
+ case "not_a_member":
106
+ return i18n.t("chat:message.cannotRemoveNotAMember", {
107
+ defaultValue: "Ng\u01B0\u1EDDi n\xE0y kh\xF4ng ph\u1EA3i th\xE0nh vi\xEAn c\u1EE7a \u0111o\u1EA1n chat"
108
+ });
109
+ default:
110
+ return "";
111
+ }
112
+ }
113
+ const AVATAR_COLORS = [
114
+ { bg: "bg-chart-1/20", text: "text-chart-1" },
115
+ { bg: "bg-chart-2/20", text: "text-chart-2" },
116
+ { bg: "bg-chart-4/20", text: "text-chart-4" },
117
+ { bg: "bg-chart-5/20", text: "text-chart-5" },
118
+ { bg: "bg-chart-7/20", text: "text-chart-7" },
119
+ { bg: "bg-chart-8/20", text: "text-chart-8" },
120
+ { bg: "bg-chart-9/20", text: "text-chart-9" }
121
+ ];
122
+ function colorForName(name = "") {
123
+ const hash = name.split("").reduce((acc, c) => acc + c.charCodeAt(0), 0);
124
+ return AVATAR_COLORS[hash % AVATAR_COLORS.length];
125
+ }
126
+ function nameInitials(name = "") {
127
+ return name.split(" ").filter(Boolean).map((n) => n[0]).join("").slice(0, 2).toUpperCase() || "?";
128
+ }
129
+ function isAssignPillDisabled(chatRoom) {
130
+ const user = getUser();
131
+ if (isClosedChat(chatRoom)) {
132
+ return true;
133
+ }
134
+ if (isZaloPersonal(chatRoom) && !isZaloGeneralChannel(chatRoom)) {
135
+ return true;
136
+ }
137
+ return ![UserRole.ADMINISTRATOR, UserRole.SUPERVISOR].includes(user?.role);
138
+ }
139
+ function AgentPickerContent({ chatRoom, assignedId, onClose }) {
140
+ const { t } = useTranslation();
141
+ const queryClient = useQueryClient();
142
+ const user = getUser();
143
+ const [search, setSearch] = useState("");
144
+ const [assignAgent, setAssignAgent] = useState(null);
145
+ const previousAgentRef = useRef(null);
146
+ const callingAPIRef = useRef(false);
147
+ const confirmRef = useRef(null);
148
+ const sessionId = chatRoom?.session?._id;
149
+ const {
150
+ reassignMutation,
151
+ forceAssignMutation,
152
+ showForceDialog,
153
+ closeForceDialog,
154
+ transferOption,
155
+ setTransferOption
156
+ } = useReassign({
157
+ chatRoom,
158
+ targetAssignedId: assignAgent?.value,
159
+ targetAssignedName: assignAgent?.label,
160
+ onError: () => setAssignAgent(previousAgentRef.current),
161
+ onClose
162
+ });
163
+ useQuery({
164
+ queryKey: [
165
+ QUERY_KEY.GET_CHAT_ASSIGN_AGENT,
166
+ { assign_agent_id: assignedId }
167
+ ],
168
+ queryFn: async () => {
169
+ const { data } = await findUser({ _id: assignedId });
170
+ setAssignAgent(
171
+ !data ? null : { value: data._id, label: data.name, role: data.role }
172
+ );
173
+ return data || null;
174
+ },
175
+ enabled: !!assignedId && !chatRoom?.users_in_room?.some((x) => x._id === assignedId)
176
+ });
177
+ const debouncedSearch = useDebounce(search, 500);
178
+ const keyword = debouncedSearch.trim();
179
+ const { data: agentList = [] } = useQuery({
180
+ queryKey: ["agent-picker-list", keyword],
181
+ queryFn: async () => {
182
+ const params = {
183
+ roles: [
184
+ UserRole.ADMINISTRATOR,
185
+ UserRole.SUPERVISOR,
186
+ UserRole.AGENT,
187
+ UserRole.SALE,
188
+ UserRole.SALE_TEAM_LEADER,
189
+ UserRole.TEAM_LEADER
190
+ ],
191
+ ...keyword.length > 0 ? { keyword } : {}
192
+ };
193
+ const response = await searchAllUser(params);
194
+ return response.data?.list?.map((u) => ({
195
+ value: u._id,
196
+ label: u.name,
197
+ role: u.role
198
+ })) ?? [];
199
+ },
200
+ staleTime: 3e4
201
+ });
202
+ useEffect(() => {
203
+ if (!assignedId) {
204
+ setAssignAgent(null);
205
+ } else if (chatRoom?.users_in_room?.some((user2) => user2._id === assignedId)) {
206
+ const userInRoom = chatRoom.users_in_room.find(
207
+ (user2) => user2._id === assignedId
208
+ );
209
+ setAssignAgent({
210
+ value: userInRoom?._id,
211
+ label: userInRoom?.name
212
+ });
213
+ }
214
+ }, [assignedId, chatRoom?.users_in_room]);
215
+ const distributeManualMutation = useMutation({
216
+ mutationFn: (data) => distributeManual({ data }),
217
+ onError: (error) => {
218
+ callingAPIRef.current = false;
219
+ onClose?.();
220
+ throwException(error);
221
+ },
222
+ onSettled: () => {
223
+ callingAPIRef.current = false;
224
+ },
225
+ onSuccess: () => {
226
+ queryClient.invalidateQueries({
227
+ queryKey: [QUERY_KEY.GET_CHAT_ROOM_DETAIL]
228
+ });
229
+ onClose?.();
230
+ }
231
+ });
232
+ const receiveChatMutation = useMutation({
233
+ mutationFn: async (id) => {
234
+ await receiveSession(id);
235
+ },
236
+ // Đánh dấu guard NGAY khi bấm (không chờ API trả về): echo ACTION_RECEIVE từ
237
+ // socket có thể tới sớm hơn onSuccess -> nếu chỉ mark ở onSuccess sẽ bị nhân
238
+ // đôi msg. Mark sớm để socket handler tự bỏ qua echo (key: room_id + user_id).
239
+ onMutate: () => {
240
+ const roomId = chatRoom?._id;
241
+ if (roomId) markReceiveHandled(roomId, user?._id);
242
+ },
243
+ onError: (error) => {
244
+ const roomId = chatRoom?._id;
245
+ if (roomId) clearReceiveHandled(roomId, user?._id);
246
+ onClose?.();
247
+ throwException(error);
248
+ },
249
+ onSettled: () => {
250
+ callingAPIRef.current = false;
251
+ },
252
+ onSuccess: async () => {
253
+ queryClient.invalidateQueries({
254
+ queryKey: [QUERY_KEY.GET_LIST_USER_TICKETS_PREVIEW, sessionId]
255
+ });
256
+ queryClient.invalidateQueries({
257
+ queryKey: [QUERY_KEY.GET_CHAT_ROOM_DETAIL]
258
+ });
259
+ const roomId = chatRoom?._id;
260
+ if (roomId) {
261
+ const message = buildActionReceiveMessage({
262
+ roomId,
263
+ source: chatRoom?.source,
264
+ user,
265
+ tenantId: user?.tenant_id
266
+ });
267
+ await applyReceivedChat(message);
268
+ appendOptimisticDistributionLog(roomId, "receive", user?.name);
269
+ }
270
+ onClose?.();
271
+ }
272
+ });
273
+ const handleSelectAgent = (agent) => {
274
+ previousAgentRef.current = assignAgent;
275
+ setAssignAgent(agent);
276
+ confirmRef?.current?.click();
277
+ };
278
+ const handleAssignAgent = async () => {
279
+ callingAPIRef.current = true;
280
+ if (!isReceivedChat(chatRoom) && assignAgent?.value === user?._id) {
281
+ receiveChatMutation.mutate(sessionId);
282
+ return;
283
+ }
284
+ if (!chatRoom?.session?.distribution) {
285
+ distributeManualMutation.mutate({
286
+ target_type: "CHAT",
287
+ target_id: sessionId,
288
+ assigned_id: assignAgent?.value
289
+ });
290
+ } else {
291
+ reassignMutation.mutate(assignAgent.value);
292
+ }
293
+ };
294
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
295
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-3", children: [
296
+ /* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground", children: t("common:placeholder.selectAssignee", {
297
+ defaultValue: "Ch\u1ECDn ng\u01B0\u1EDDi ph\u1EE5 tr\xE1ch"
298
+ }) }),
299
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 rounded-full bg-muted px-3 py-2", children: [
300
+ /* @__PURE__ */ jsx(Search, { size: 16, className: "shrink-0 text-muted-foreground" }),
301
+ /* @__PURE__ */ jsx(
302
+ "input",
303
+ {
304
+ value: search,
305
+ onChange: (e) => setSearch(e.target.value),
306
+ placeholder: t("chat:action.findAgent", {
307
+ defaultValue: "T\xECm chuy\xEAn vi\xEAn"
308
+ }),
309
+ className: "w-full bg-transparent text-sm outline-none placeholder:text-muted-foreground"
310
+ }
311
+ )
312
+ ] }),
313
+ /* @__PURE__ */ jsx("div", { className: "max-h-[300px] overflow-y-auto overflow-x-hidden", children: agentList.map((agent) => {
314
+ const color = colorForName(agent.label);
315
+ const isSelected = agent.value === assignAgent?.value;
316
+ return /* @__PURE__ */ jsxs(
317
+ "button",
318
+ {
319
+ onClick: () => handleSelectAgent(agent),
320
+ className: cn(
321
+ "flex w-full min-w-0 items-center gap-3 rounded-lg px-2 py-2.5 text-left transition-colors hover:bg-surface-subtle",
322
+ isSelected && "bg-primary/5"
323
+ ),
324
+ children: [
325
+ /* @__PURE__ */ jsx(
326
+ "span",
327
+ {
328
+ className: cn(
329
+ "flex h-10 w-10 shrink-0 items-center justify-center rounded-full text-sm font-semibold",
330
+ color.bg,
331
+ color.text
332
+ ),
333
+ children: nameInitials(agent.label)
334
+ }
335
+ ),
336
+ /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
337
+ /* @__PURE__ */ jsx("p", { className: "truncate text-sm font-semibold text-foreground", children: maskData(agent.label) }),
338
+ /* @__PURE__ */ jsx("p", { className: "truncate text-xs text-muted-foreground", children: UserRoleContext[agent.role] || agent.role })
339
+ ] })
340
+ ]
341
+ },
342
+ agent.value
343
+ );
344
+ }) })
345
+ ] }),
346
+ /* @__PURE__ */ jsx(
347
+ PopupConfirm,
348
+ {
349
+ trigger: /* @__PURE__ */ jsx(Button, { ref: confirmRef, variant: "destructive", className: "hidden" }),
350
+ title: chatRoom?.session?.distribution ? t("chat:dialog.confirmTransferOwner", {
351
+ defaultValue: "B\u1EA1n c\xF3 mu\u1ED1n chuy\u1EC3n ng\u01B0\u1EDDi ph\u1EE5 tr\xE1ch cho h\u1ED9i tho\u1EA1i n\xE0y?"
352
+ }) : t("chat:dialog.confirmDistributeConversation", {
353
+ defaultValue: "B\u1EA1n c\xF3 mu\u1ED1n ph\xE2n b\u1ED5 cu\u1ED9c h\u1ED9i tho\u1EA1i n\xE0y?"
354
+ }),
355
+ description: t("chat:message.agentWillHandleConversation", {
356
+ defaultValue: "Chuy\xEAn vi\xEAn n\xE0y s\u1EBD ti\u1EBFp nh\u1EADn v\xE0 x\u1EED l\xFD \u0111o\u1EA1n h\u1ED9i tho\u1EA1i n\xE0y!"
357
+ }),
358
+ onConfirm: handleAssignAgent,
359
+ onCancel: () => setAssignAgent(previousAgentRef.current),
360
+ onOpenChanged: (open) => {
361
+ if (!open && !callingAPIRef.current)
362
+ setAssignAgent(previousAgentRef.current);
363
+ }
364
+ }
365
+ ),
366
+ /* @__PURE__ */ jsx(
367
+ ForceTransferDialog,
368
+ {
369
+ open: showForceDialog,
370
+ onClose: () => {
371
+ closeForceDialog();
372
+ setAssignAgent(previousAgentRef.current);
373
+ callingAPIRef.current = false;
374
+ },
375
+ transferOption,
376
+ setTransferOption,
377
+ forceAssignMutation
378
+ }
379
+ )
380
+ ] });
381
+ }
382
+ function AgentAssignPill({ chatItem, assignedId }) {
383
+ const { t } = useTranslation();
384
+ const [open, setOpen] = useState(false);
385
+ const assignedUser = chatItem?.users_in_room?.find(
386
+ (u) => u._id === assignedId
387
+ );
388
+ const assignedName = assignedUser?.name || chatItem?.assigned?.name || "";
389
+ const initials = assignedName?.split(" ").filter(Boolean).map((n) => n[0]).join("").slice(0, 2).toUpperCase() || "?";
390
+ const isUnassigned = !assignedId;
391
+ const isDisabled = isAssignPillDisabled(chatItem);
392
+ return /* @__PURE__ */ jsxs(
393
+ Popover,
394
+ {
395
+ open: open && !isDisabled,
396
+ onOpenChange: (next) => setOpen(isDisabled ? false : next),
397
+ children: [
398
+ /* @__PURE__ */ jsx(PopoverTrigger, { asChild: true, children: /* @__PURE__ */ jsxs(
399
+ "button",
400
+ {
401
+ disabled: isDisabled,
402
+ className: `flex min-w-[100px] max-w-[180px] items-center justify-between gap-1.5 rounded-full border p-1 hover:bg-surface-subtle focus:outline-none disabled:cursor-not-allowed disabled:opacity-50 disabled:hover:bg-transparent ${isUnassigned ? "border-dashed border-muted" : "border-muted"}`,
403
+ title: isUnassigned ? t("common:placeholder.selectAssignee", {
404
+ defaultValue: "Ch\u1ECDn ng\u01B0\u1EDDi ph\u1EE5 tr\xE1ch"
405
+ }) : assignedName,
406
+ children: [
407
+ isUnassigned ? /* @__PURE__ */ jsxs(Fragment, { children: [
408
+ /* @__PURE__ */ jsx("span", { className: "flex h-7 w-7 items-center justify-center rounded-full border border-dashed border-muted", children: /* @__PURE__ */ jsx(UserPlus, { size: 14, className: "text-muted-foreground" }) }),
409
+ /* @__PURE__ */ jsx("span", { className: "min-w-0 flex-1 truncate text-sm text-muted-foreground", children: t("common:label.assignee", {
410
+ defaultValue: "Ng\u01B0\u1EDDi ph\u1EE5 tr\xE1ch"
411
+ }) })
412
+ ] }) : /* @__PURE__ */ jsxs(Fragment, { children: [
413
+ /* @__PURE__ */ jsx(Avatar, { className: "h-7 w-7 shrink-0", children: /* @__PURE__ */ jsx(AvatarFallback, { className: "bg-primary/10 text-xs font-semibold text-primary", children: initials }) }),
414
+ /* @__PURE__ */ jsx("span", { className: "min-w-0 flex-1 truncate text-xs font-medium text-foreground", children: assignedName })
415
+ ] }),
416
+ /* @__PURE__ */ jsx(ChevronDown, { size: 14, className: "shrink-0 text-muted-foreground" })
417
+ ]
418
+ }
419
+ ) }),
420
+ /* @__PURE__ */ jsx(PopoverContent, { className: "w-80 p-3", align: "start", children: /* @__PURE__ */ jsx(
421
+ AgentPickerContent,
422
+ {
423
+ chatRoom: chatItem,
424
+ assignedId,
425
+ onClose: () => setOpen(false)
426
+ }
427
+ ) })
428
+ ]
429
+ }
430
+ );
431
+ }
432
+ function ChatHeaderActionsInline({
433
+ chatItem = {},
434
+ customer,
435
+ setShowHistory,
436
+ hideViewMembers = false,
437
+ hideInvite = false,
438
+ topPriorityTicket,
439
+ onToggleAiPanel
440
+ }) {
441
+ const { t } = useTranslation();
442
+ const user = getUser();
443
+ const queryClient = useQueryClient();
444
+ const queueIds = chatItem?.session?.distribution?.queue_ids || [];
445
+ const queueId = queueIds.length > 0 ? queueIds[0] : null;
446
+ const { data: usersInQueues } = useQuery({
447
+ queryKey: ["users-in-queues", queueId],
448
+ queryFn: async () => {
449
+ const { data } = await getUsersInQueues({ queueIds: [queueId] });
450
+ return data;
451
+ },
452
+ enabled: !!queueId
453
+ });
454
+ const { data: queueDetail } = useGetQueueDetail({ queueId });
455
+ const [isInviteDialogOpen, setIsInviteDialogOpen] = useState(false);
456
+ const [showCloseDialog, setShowCloseDialog] = useState(false);
457
+ const [showConfirmCloseDialog, setShowConfirmCloseDialog] = useState(false);
458
+ const [viewMembersOpen, setViewMembersOpen] = useState(false);
459
+ const [removingUserId, setRemovingUserId] = useState(null);
460
+ const [showConfirmLeaveDialog, setShowConfirmLeaveDialog] = useState(false);
461
+ const isClosed = isClosedChat(chatItem);
462
+ const isReceived = isReceivedChat(chatItem);
463
+ const isNotReceivedChat = useMemo(
464
+ () => getTabStatusFromChat(chatItem) === ChatFilterAssignStatus.NotReceived,
465
+ [chatItem]
466
+ );
467
+ const assignedId = useMemo(() => {
468
+ if (topPriorityTicket?.assign_agent_id) {
469
+ return topPriorityTicket.assign_agent_id;
470
+ }
471
+ if (Array.isArray(chatItem.session?.distribution?.user_ids) && chatItem.session.distribution.user_ids.length > 0) {
472
+ return chatItem.session.assigned_id;
473
+ }
474
+ if (Array.isArray(chatItem.session?.distribution?.queue_ids) && chatItem.session.distribution.queue_ids.length > 0 && usersInQueues?.includes(user?._id)) {
475
+ return user?._id;
476
+ }
477
+ return null;
478
+ }, [chatItem.session, topPriorityTicket, user?._id, usersInQueues]);
479
+ const canReceive = useMemo(() => {
480
+ if (topPriorityTicket?.assign_agent_id) {
481
+ return [topPriorityTicket.assign_agent_id].includes(user?._id);
482
+ }
483
+ if (Array.isArray(chatItem.session?.distribution?.user_ids) && chatItem.session.distribution.user_ids.length > 0) {
484
+ if (Array.isArray(chatItem.session?.distribution?.queue_ids) && chatItem.session.distribution.queue_ids.length > 0) {
485
+ if (queueDetail && [SubscribedUserPermission.CAN_TAKE_OVER].includes(
486
+ queueDetail.subscribed_user_permission
487
+ ) && usersInQueues?.includes(user?._id)) {
488
+ return true;
489
+ }
490
+ }
491
+ return [chatItem.session.assigned_id].includes(user?._id);
492
+ }
493
+ if (Array.isArray(chatItem.session?.distribution?.queue_ids) && chatItem.session.distribution.queue_ids.length > 0 && usersInQueues?.includes(user?._id)) {
494
+ return true;
495
+ }
496
+ return false;
497
+ }, [
498
+ chatItem.session,
499
+ queueDetail,
500
+ topPriorityTicket?.assign_agent_id,
501
+ user?._id,
502
+ usersInQueues
503
+ ]);
504
+ const receiveChatMutation = useMutation({
505
+ mutationFn: async (sessionId) => {
506
+ await receiveSession(sessionId);
507
+ },
508
+ // Đánh dấu guard NGAY khi bấm (không chờ API trả về): echo ACTION_RECEIVE từ
509
+ // socket có thể tới sớm hơn onSuccess -> nếu chỉ mark ở onSuccess sẽ bị nhân
510
+ // đôi msg. Mark sớm để socket handler tự bỏ qua echo (key: room_id + user_id).
511
+ onMutate: () => {
512
+ const roomId = chatItem?._id;
513
+ if (roomId) markReceiveHandled(roomId, user?._id);
514
+ },
515
+ onError: (error) => {
516
+ const roomId = chatItem?._id;
517
+ if (roomId) clearReceiveHandled(roomId, user?._id);
518
+ throwException(error);
519
+ },
520
+ onSuccess: async () => {
521
+ queryClient.invalidateQueries({
522
+ queryKey: [
523
+ QUERY_KEY.GET_LIST_USER_TICKETS_PREVIEW,
524
+ chatItem?.session?._id
525
+ ]
526
+ });
527
+ queryClient.invalidateQueries({
528
+ queryKey: [QUERY_KEY.GET_CHAT_ROOM_DETAIL]
529
+ });
530
+ const roomId = chatItem?._id;
531
+ if (roomId) {
532
+ const message = buildActionReceiveMessage({
533
+ roomId,
534
+ source: chatItem?.source,
535
+ user,
536
+ tenantId: user?.tenant_id
537
+ });
538
+ await applyReceivedChat(message);
539
+ appendOptimisticDistributionLog(roomId, "receive", user?.name);
540
+ }
541
+ }
542
+ });
543
+ const reopenMutation = useMutation({
544
+ mutationFn: () => reopenSession(chatItem?._id),
545
+ onError: throwException,
546
+ // Không cập nhật optimistic: reopen sinh session mới ở BE nên chỉ echo
547
+ // ACTION_REOPEN từ socket mới mang đủ dữ liệu (session_id...) để vá store;
548
+ // log phân phối cũng do applyReopenedChat ghi.
549
+ onSuccess: () => {
550
+ toast.success(
551
+ i18n.t("chat:toast.reopenConversationSuccess", {
552
+ defaultValue: "M\u1EDF l\u1EA1i h\u1ED9i tho\u1EA1i th\xE0nh c\xF4ng"
553
+ })
554
+ );
555
+ queryClient.invalidateQueries({
556
+ queryKey: [QUERY_KEY.GET_CHAT_ROOM_DETAIL]
557
+ });
558
+ }
559
+ });
560
+ const {
561
+ data: agentChatOnlineList,
562
+ isLoading: isAgentChatOnlineListLoading,
563
+ refetch
564
+ } = useQuery({
565
+ queryKey: ["agent-chat-online-list"],
566
+ queryFn: async () => {
567
+ const { data } = await getAvailableAgents();
568
+ return data;
569
+ },
570
+ enabled: false
571
+ });
572
+ const agentChatOnlineListFiltered = useMemo(() => {
573
+ const excludeUserIds = [
574
+ ...(chatItem?.users_in_room || []).map((user2) => user2._id),
575
+ user?._id,
576
+ ...chatItem?.session?.invited_user_ids || []
577
+ ];
578
+ return (agentChatOnlineList || []).filter(
579
+ (agent) => !excludeUserIds.includes(agent._id)
580
+ );
581
+ }, [
582
+ agentChatOnlineList,
583
+ chatItem?.users_in_room,
584
+ chatItem?.session?.invited_user_ids,
585
+ user?._id
586
+ ]);
587
+ const sessionMembersQueryKey = [
588
+ "chat-session-members",
589
+ chatItem?.session?._id
590
+ ];
591
+ const { data: sessionMembers, isLoading: isMembersLoading } = useQuery({
592
+ queryKey: sessionMembersQueryKey,
593
+ queryFn: async () => {
594
+ const { data } = await getSessionMembers({
595
+ sessionId: chatItem.session._id
596
+ });
597
+ return data;
598
+ },
599
+ enabled: viewMembersOpen && !!chatItem?.session?._id
600
+ });
601
+ const canLeaveSession = useMemo(() => {
602
+ const session = chatItem?.session;
603
+ const uid = user?._id;
604
+ if (!session || !uid) return false;
605
+ if (String(session.assigned_id ?? "") === String(uid)) return false;
606
+ const joined = session.invited_user_ids?.includes(uid);
607
+ const pendingJoin = session.subscribed_user_ids?.includes(uid) && !joined;
608
+ if (pendingJoin) return false;
609
+ return Boolean(
610
+ joined || session.view_only_user_ids?.includes(uid) || session.can_take_over_user_ids?.includes(uid)
611
+ );
612
+ }, [chatItem?.session, user?._id]);
613
+ const leaveSessionMutation = useMutation({
614
+ mutationFn: () => removeUsers({
615
+ sessionId: chatItem?.session?._id,
616
+ data: { user_ids: [user?._id] }
617
+ }),
618
+ onSuccess: ({ data }) => {
619
+ setShowConfirmLeaveDialog(false);
620
+ if (data?.skipped?.length && !data?.removed?.length) {
621
+ toast.error(removeSkipReasonLabel(data.skipped[0]?.reason));
622
+ return;
623
+ }
624
+ toast.success(
625
+ i18n.t("chat:toast.leaveConversationSuccess", {
626
+ defaultValue: "\u0110\xE3 r\u1EDDi kh\u1ECFi \u0111o\u1EA1n chat"
627
+ })
628
+ );
629
+ queryClient.invalidateQueries({
630
+ queryKey: [QUERY_KEY.GET_CHAT_ROOM_DETAIL]
631
+ });
632
+ },
633
+ onError: throwException
634
+ });
635
+ const removeMemberMutation = useMutation({
636
+ mutationFn: (userId) => removeUsers({
637
+ sessionId: chatItem?.session?._id,
638
+ data: { user_ids: [userId] }
639
+ }),
640
+ onMutate: (userId) => setRemovingUserId(userId),
641
+ onSettled: () => setRemovingUserId(null),
642
+ onSuccess: ({ data }) => {
643
+ if (data?.skipped?.length && !data?.removed?.length) {
644
+ toast.error(removeSkipReasonLabel(data.skipped[0]?.reason));
645
+ } else {
646
+ toast.success(
647
+ i18n.t("chat:toast.removeMemberSuccess", {
648
+ defaultValue: "X\xF3a th\xE0nh vi\xEAn kh\u1ECFi \u0111o\u1EA1n chat th\xE0nh c\xF4ng"
649
+ })
650
+ );
651
+ }
652
+ queryClient.invalidateQueries({ queryKey: sessionMembersQueryKey });
653
+ queryClient.invalidateQueries({
654
+ queryKey: [QUERY_KEY.GET_CHAT_ROOM_DETAIL]
655
+ });
656
+ },
657
+ onError: throwException
658
+ });
659
+ const inviteMutation = useMutation({
660
+ mutationFn: (data) => inviteUsers({ sessionId: chatItem?.session?._id, data }),
661
+ onSuccess: () => {
662
+ setIsInviteDialogOpen(false);
663
+ toast.success(
664
+ i18n.t("chat:toast.inviteAgentSuccess", {
665
+ defaultValue: "M\u1EDDi chuy\xEAn vi\xEAn th\xE0nh c\xF4ng"
666
+ })
667
+ );
668
+ },
669
+ onError: throwException
670
+ });
671
+ const closeSessionMutation = useMutation({
672
+ mutationFn: ({ sessionId, closeTickets }) => closeSession({ sessionId, payload: { close_tickets: closeTickets } }),
673
+ // Không cập nhật optimistic: chuyển tab, thêm msg, dọn SLA và log phân phối
674
+ // đều do socket ACTION_END -> applyEndedChat lo, để mọi client dùng chung
675
+ // một nguồn dữ liệu.
676
+ onSuccess: () => {
677
+ setShowCloseDialog(false);
678
+ setShowConfirmCloseDialog(false);
679
+ toast.success(
680
+ i18n.t("chat:toast.closeConversationSuccess", {
681
+ defaultValue: "\u0110\xF3ng h\u1ED9i tho\u1EA1i th\xE0nh c\xF4ng"
682
+ })
683
+ );
684
+ },
685
+ onError: throwException
686
+ });
687
+ const receiveInviteMutation = useMutation({
688
+ mutationFn: (sessionId) => receiveInvite({ sessionId }),
689
+ onSuccess: () => {
690
+ toast.success(
691
+ i18n.t("chat:toast.joinConversationSuccess", {
692
+ defaultValue: "Tham gia h\u1ED9i tho\u1EA1i th\xE0nh c\xF4ng"
693
+ })
694
+ );
695
+ useChatStore.getState().resetLastRefreshTimeTicketPage();
696
+ },
697
+ onError: throwException
698
+ });
699
+ const {
700
+ reassignMutation: takeOverMutation,
701
+ forceAssignMutation: takeOverForceMutation,
702
+ showForceDialog: showTakeOverForceDialog,
703
+ closeForceDialog: closeTakeOverForceDialog,
704
+ transferOption: takeOverTransferOption,
705
+ setTransferOption: setTakeOverTransferOption
706
+ } = useReassign({ chatRoom: chatItem, targetAssignedId: user?._id });
707
+ const userRoles = user?.roles?.length > 0 ? user.roles : user?.role ? [user.role] : [];
708
+ const isAgentOrSale = userRoles.some(
709
+ (r) => r === UserRole.AGENT || r === UserRole.SALE
710
+ );
711
+ const shouldCheckLivechatCloseConfig = isAgentOrSale && chatItem?.source === "chat";
712
+ const {
713
+ data: livechatTimeoutConfig,
714
+ isLoading: isLivechatConfigLoading,
715
+ isError: isLivechatConfigError
716
+ } = useQuery({
717
+ queryKey: [QUERY_KEY.GET_CHAT_TIMEOUT_CONFIG, "livechat"],
718
+ queryFn: () => getChatTimeoutConfig({ channelType: "livechat" }),
719
+ enabled: shouldCheckLivechatCloseConfig
720
+ });
721
+ const hasTenantSpecificLivechatConfig = !!livechatTimeoutConfig && livechatTimeoutConfig?.tenant_id !== "default";
722
+ const canShowCloseSessionButton = !shouldCheckLivechatCloseConfig || isLivechatConfigLoading || isLivechatConfigError || !hasTenantSpecificLivechatConfig || livechatTimeoutConfig?.agent_can_end === true && livechatTimeoutConfig?.tenant_id === user?.tenant_id;
723
+ const handleCloseSession = (isCloseWithTicket) => {
724
+ closeSessionMutation.mutate({
725
+ sessionId: chatItem?.session?._id,
726
+ closeTickets: isCloseWithTicket
727
+ });
728
+ };
729
+ const actions = useMemo(() => {
730
+ const items = [];
731
+ if (isClosed) {
732
+ if (!hideViewMembers) {
733
+ items.push({
734
+ key: "view-members",
735
+ label: i18n.t("chat:action.viewMembers", {
736
+ defaultValue: "Xem th\xE0nh vi\xEAn"
737
+ }),
738
+ icon: Users,
739
+ onClick: () => setViewMembersOpen(true),
740
+ overflow: true
741
+ });
742
+ }
743
+ items.push({
744
+ key: "reopen",
745
+ label: i18n.t("chat:action.reopenConversation", {
746
+ defaultValue: "M\u1EDF l\u1EA1i h\u1ED9i tho\u1EA1i"
747
+ }),
748
+ icon: RotateCcw,
749
+ onClick: () => reopenMutation.mutate(),
750
+ disabled: reopenMutation.isPending,
751
+ overflow: true
752
+ });
753
+ } else if (isReceived) {
754
+ if (!hideViewMembers) {
755
+ items.push({
756
+ key: "view-members",
757
+ label: i18n.t("chat:action.viewMembers", {
758
+ defaultValue: "Xem th\xE0nh vi\xEAn"
759
+ }),
760
+ icon: Users,
761
+ onClick: () => setViewMembersOpen(true),
762
+ overflow: true
763
+ });
764
+ }
765
+ if (!hideInvite) {
766
+ items.push({
767
+ key: "invite",
768
+ label: i18n.t("chat:action.inviteAgent", {
769
+ defaultValue: "M\u1EDDi chuy\xEAn vi\xEAn"
770
+ }),
771
+ icon: UserPlus,
772
+ onClick: () => {
773
+ refetch();
774
+ setIsInviteDialogOpen(true);
775
+ },
776
+ overflow: true
777
+ });
778
+ }
779
+ if (canShowCloseSessionButton) {
780
+ items.push({
781
+ key: "close",
782
+ label: i18n.t("chat:action.closeConversation", {
783
+ defaultValue: "\u0110\xF3ng h\u1ED9i tho\u1EA1i"
784
+ }),
785
+ icon: Power,
786
+ onClick: () => {
787
+ if (!chatItem?.tickets?.length) {
788
+ setShowConfirmCloseDialog(true);
789
+ } else {
790
+ setShowCloseDialog(true);
791
+ }
792
+ },
793
+ disabled: closeSessionMutation.isPending,
794
+ danger: true,
795
+ overflow: true
796
+ });
797
+ }
798
+ if (chatItem.session?.subscribed_user_ids?.includes(user?._id) && !chatItem.session?.invited_user_ids?.includes(user?._id) && chatItem.session?.assigned_id !== user?._id) {
799
+ items.push({
800
+ key: "join",
801
+ label: "Tham gia",
802
+ icon: UserCheck,
803
+ onClick: () => receiveInviteMutation.mutate(chatItem?.session?._id),
804
+ disabled: receiveInviteMutation.isPending
805
+ });
806
+ }
807
+ if (canLeaveSession) {
808
+ items.push({
809
+ key: "leave",
810
+ label: i18n.t("chat:action.leaveConversation", {
811
+ defaultValue: "R\u1EDDi kh\u1ECFi \u0111o\u1EA1n chat"
812
+ }),
813
+ icon: LogOut,
814
+ onClick: () => setShowConfirmLeaveDialog(true),
815
+ disabled: leaveSessionMutation.isPending,
816
+ danger: true,
817
+ overflow: true
818
+ });
819
+ }
820
+ if (chatItem.session?.can_take_over_user_ids?.includes(user?._id) && chatItem.session?.assigned_id !== user?._id) {
821
+ items.push({
822
+ key: "take-over",
823
+ label: i18n.t("common:action.grabChat", {
824
+ defaultValue: "C\u01B0\u1EDBp chat"
825
+ }),
826
+ icon: Forward,
827
+ onClick: () => takeOverMutation.mutate(user?._id),
828
+ disabled: takeOverMutation.isPending
829
+ });
830
+ }
831
+ } else {
832
+ if (canReceive) {
833
+ items.push({
834
+ key: "receive",
835
+ label: i18n.t("chat:action.receiveChat", {
836
+ defaultValue: "Ti\u1EBFp nh\u1EADn"
837
+ }),
838
+ icon: Inbox,
839
+ onClick: () => receiveChatMutation.mutate(chatItem?.session?._id),
840
+ disabled: receiveChatMutation.isPending
841
+ });
842
+ }
843
+ }
844
+ if (onToggleAiPanel) {
845
+ items.push({
846
+ key: "ai-assistant",
847
+ label: "AI Assistant",
848
+ icon: Bot,
849
+ onClick: onToggleAiPanel,
850
+ overflow: true
851
+ });
852
+ }
853
+ return items;
854
+ }, [
855
+ isClosed,
856
+ isReceived,
857
+ canReceive,
858
+ hideViewMembers,
859
+ hideInvite,
860
+ chatItem,
861
+ user,
862
+ canShowCloseSessionButton,
863
+ canLeaveSession,
864
+ leaveSessionMutation.isPending,
865
+ reopenMutation.isPending,
866
+ receiveInviteMutation.isPending,
867
+ takeOverMutation.isPending,
868
+ closeSessionMutation.isPending,
869
+ receiveChatMutation.isPending,
870
+ onToggleAiPanel
871
+ ]);
872
+ const overflowActions = actions.filter((a) => a.overflow);
873
+ const inlineActions = actions.filter((a) => !a.overflow);
874
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
875
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-1.5", children: [
876
+ /* @__PURE__ */ jsx(AgentAssignPill, { chatItem, assignedId }),
877
+ inlineActions.map((action) => /* @__PURE__ */ jsxs(
878
+ Button,
879
+ {
880
+ variant: "ghost",
881
+ size: "icon",
882
+ className: cn(
883
+ "size-9 shrink-0 gap-1.5 rounded-full bg-primary text-white hover:bg-primary/90 hover:text-white md:h-9 md:w-auto md:px-3.5",
884
+ action.danger && "bg-destructive text-white hover:bg-destructive"
885
+ ),
886
+ disabled: action.disabled,
887
+ onClick: action.onClick,
888
+ title: action.label,
889
+ "aria-label": action.label,
890
+ children: [
891
+ /* @__PURE__ */ jsx(action.icon, { size: 16, className: "shrink-0" }),
892
+ /* @__PURE__ */ jsx("span", { className: "hidden md:inline", children: action.label })
893
+ ]
894
+ },
895
+ action.key
896
+ )),
897
+ overflowActions.length > 0 && /* @__PURE__ */ jsxs(DropdownMenu, { children: [
898
+ /* @__PURE__ */ jsx(DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ jsx(
899
+ Button,
900
+ {
901
+ variant: "ghost",
902
+ size: "icon",
903
+ className: "rounded-full border",
904
+ children: /* @__PURE__ */ jsx(MoreVertical, { size: 16, className: "text-muted-foreground" })
905
+ }
906
+ ) }),
907
+ /* @__PURE__ */ jsx(DropdownMenuContent, { align: "end", children: overflowActions.map((action) => /* @__PURE__ */ jsxs(
908
+ DropdownMenuItem,
909
+ {
910
+ disabled: action.disabled,
911
+ onClick: action.onClick,
912
+ className: cn(
913
+ "gap-2",
914
+ action.danger && "text-destructive focus:text-destructive"
915
+ ),
916
+ children: [
917
+ /* @__PURE__ */ jsx(action.icon, { size: 14 }),
918
+ action.label
919
+ ]
920
+ },
921
+ action.key
922
+ )) })
923
+ ] })
924
+ ] }),
925
+ /* @__PURE__ */ jsx(Dialog, { open: viewMembersOpen, onOpenChange: setViewMembersOpen, children: viewMembersOpen && /* @__PURE__ */ jsx(
926
+ InRoomDialog,
927
+ {
928
+ data: sessionMembers?.members || chatItem?.users_in_room || [],
929
+ isLoading: isMembersLoading,
930
+ title: t("chat:title.membersInChat", {
931
+ defaultValue: "Th\xE0nh vi\xEAn trong \u0111o\u1EA1n chat"
932
+ }),
933
+ onRemove: (userId) => removeMemberMutation.mutate(userId),
934
+ removingUserId,
935
+ canRemove: (row) => !!sessionMembers?.can_remove && !!row.removable,
936
+ removeDisabledReason: (row) => sessionMembers?.can_remove ? removeSkipReasonLabel(row.skip_reason) : i18n.t("chat:message.cannotRemoveNoPermission", {
937
+ defaultValue: "Ch\u1EC9 chuy\xEAn vi\xEAn ph\u1EE5 tr\xE1ch, tr\u01B0\u1EDFng b\u1ED9 ph\u1EADn, supervisor ho\u1EB7c qu\u1EA3n tr\u1ECB vi\xEAn m\u1EDBi x\xF3a \u0111\u01B0\u1EE3c th\xE0nh vi\xEAn"
938
+ })
939
+ }
940
+ ) }),
941
+ /* @__PURE__ */ jsx(Dialog, { open: isInviteDialogOpen, onOpenChange: setIsInviteDialogOpen, children: isInviteDialogOpen && /* @__PURE__ */ jsx(
942
+ InviteAgentDialog,
943
+ {
944
+ agentOnlineList: agentChatOnlineListFiltered,
945
+ onInvite: (data) => inviteMutation.mutate(data),
946
+ isLoading: isAgentChatOnlineListLoading,
947
+ title: t("common:action.inviteAgentToJoin", {
948
+ defaultValue: "M\u1EDDi chuy\xEAn vi\xEAn tham gia"
949
+ })
950
+ }
951
+ ) }),
952
+ /* @__PURE__ */ jsx(
953
+ Dialog,
954
+ {
955
+ open: showConfirmLeaveDialog,
956
+ onOpenChange: (open) => {
957
+ if (!open) setShowConfirmLeaveDialog(false);
958
+ },
959
+ children: /* @__PURE__ */ jsxs(DialogContent, { className: "sm:max-w-[420px]", children: [
960
+ /* @__PURE__ */ jsxs(DialogHeader, { children: [
961
+ /* @__PURE__ */ jsx(DialogTitle, { children: t("chat:action.leaveConversation", {
962
+ defaultValue: "R\u1EDDi kh\u1ECFi \u0111o\u1EA1n chat"
963
+ }) }),
964
+ /* @__PURE__ */ jsx(DialogDescription, { children: t("chat:message.confirmLeaveConversationDescription", {
965
+ defaultValue: "B\u1EA1n s\u1EBD kh\xF4ng c\xF2n g\u1EEDi \u0111\u01B0\u1EE3c tin nh\u1EAFn trong h\u1ED9i tho\u1EA1i n\xE0y. Mu\u1ED1n quay l\u1EA1i th\xEC c\u1EA7n \u0111\u01B0\u1EE3c m\u1EDDi l\u1EA1i."
966
+ }) })
967
+ ] }),
968
+ /* @__PURE__ */ jsxs(DialogFooter, { children: [
969
+ /* @__PURE__ */ jsx(
970
+ Button,
971
+ {
972
+ size: "sm",
973
+ variant: "outline",
974
+ onClick: () => setShowConfirmLeaveDialog(false),
975
+ children: t("common:action.cancel", { defaultValue: "H\u1EE7y" })
976
+ }
977
+ ),
978
+ /* @__PURE__ */ jsx(
979
+ Button,
980
+ {
981
+ size: "sm",
982
+ variant: "destructive",
983
+ loading: leaveSessionMutation.isPending,
984
+ onClick: () => leaveSessionMutation.mutate(),
985
+ children: t("common:action.confirm", { defaultValue: "X\xE1c nh\u1EADn" })
986
+ }
987
+ )
988
+ ] })
989
+ ] })
990
+ }
991
+ ),
992
+ /* @__PURE__ */ jsx(
993
+ Dialog,
994
+ {
995
+ open: showConfirmCloseDialog,
996
+ onOpenChange: (open) => {
997
+ if (!open) setShowConfirmCloseDialog(false);
998
+ },
999
+ children: /* @__PURE__ */ jsxs(DialogContent, { className: "sm:max-w-[420px]", children: [
1000
+ /* @__PURE__ */ jsxs(DialogHeader, { children: [
1001
+ /* @__PURE__ */ jsx(DialogTitle, { children: t("chat:action.closeConversation", {
1002
+ defaultValue: "\u0110\xF3ng h\u1ED9i tho\u1EA1i"
1003
+ }) }),
1004
+ /* @__PURE__ */ jsx(DialogDescription, { children: t("chat:message.closeConversationWarning", {
1005
+ defaultValue: "L\u01B0u \xFD: khi b\u1EA1n \u0111\xF3ng s\u1EBD k\u1EBFt th\xFAc cu\u1ED9c h\u1ED9i tho\u1EA1i n\xE0y v\xE0 t\u1EA5t c\u1EA3 nh\u1EEFng\n chuy\xEAn vi\xEAn \u0111ang tham gia cu\u1ED9c h\u1ED9i tho\u1EA1i s\u1EBD kh\xF4ng th\u1EC3 ti\u1EBFp t\u1EE5c\n cu\u1ED9c h\u1ED9i tho\u1EA1i n\xE0y!"
1006
+ }) })
1007
+ ] }),
1008
+ /* @__PURE__ */ jsxs(DialogFooter, { children: [
1009
+ /* @__PURE__ */ jsx(
1010
+ Button,
1011
+ {
1012
+ size: "sm",
1013
+ variant: "outline",
1014
+ onClick: () => setShowConfirmCloseDialog(false),
1015
+ children: t("common:action.cancel", { defaultValue: "H\u1EE7y" })
1016
+ }
1017
+ ),
1018
+ /* @__PURE__ */ jsx(
1019
+ Button,
1020
+ {
1021
+ size: "sm",
1022
+ disabled: closeSessionMutation.isPending,
1023
+ onClick: () => handleCloseSession(false),
1024
+ children: t("common:action.confirm", { defaultValue: "X\xE1c nh\u1EADn" })
1025
+ }
1026
+ )
1027
+ ] })
1028
+ ] })
1029
+ }
1030
+ ),
1031
+ /* @__PURE__ */ jsx(
1032
+ CloseConversationDialog,
1033
+ {
1034
+ open: showCloseDialog,
1035
+ onOpenChange: setShowCloseDialog,
1036
+ isSubmitting: closeSessionMutation.isPending,
1037
+ onConfirm: handleCloseSession
1038
+ }
1039
+ ),
1040
+ /* @__PURE__ */ jsx(
1041
+ ForceTransferDialog,
1042
+ {
1043
+ open: showTakeOverForceDialog,
1044
+ onClose: closeTakeOverForceDialog,
1045
+ transferOption: takeOverTransferOption,
1046
+ setTransferOption: setTakeOverTransferOption,
1047
+ forceAssignMutation: takeOverForceMutation
1048
+ }
1049
+ )
1050
+ ] });
1051
+ }
1052
+ export {
1053
+ AgentAssignPill,
1054
+ ChatHeaderActionsInline as default
1055
+ };