@aizu-chat/react 0.0.5 → 0.0.6

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.
package/dist/index.js CHANGED
@@ -1,9 +1,38 @@
1
1
  'use client'
2
2
  "use strict";
3
3
  var __defProp = Object.defineProperty;
4
+ var __defProps = Object.defineProperties;
4
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
+ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
5
7
  var __getOwnPropNames = Object.getOwnPropertyNames;
8
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
6
9
  var __hasOwnProp = Object.prototype.hasOwnProperty;
10
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
11
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
12
+ var __spreadValues = (a, b) => {
13
+ for (var prop in b || (b = {}))
14
+ if (__hasOwnProp.call(b, prop))
15
+ __defNormalProp(a, prop, b[prop]);
16
+ if (__getOwnPropSymbols)
17
+ for (var prop of __getOwnPropSymbols(b)) {
18
+ if (__propIsEnum.call(b, prop))
19
+ __defNormalProp(a, prop, b[prop]);
20
+ }
21
+ return a;
22
+ };
23
+ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
24
+ var __objRest = (source, exclude) => {
25
+ var target = {};
26
+ for (var prop in source)
27
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
28
+ target[prop] = source[prop];
29
+ if (source != null && __getOwnPropSymbols)
30
+ for (var prop of __getOwnPropSymbols(source)) {
31
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
32
+ target[prop] = source[prop];
33
+ }
34
+ return target;
35
+ };
7
36
  var __export = (target, all) => {
8
37
  for (var name in all)
9
38
  __defProp(target, name, { get: all[name], enumerable: true });
@@ -17,11 +46,34 @@ var __copyProps = (to, from, except, desc) => {
17
46
  return to;
18
47
  };
19
48
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
49
+ var __async = (__this, __arguments, generator) => {
50
+ return new Promise((resolve, reject) => {
51
+ var fulfilled = (value) => {
52
+ try {
53
+ step(generator.next(value));
54
+ } catch (e) {
55
+ reject(e);
56
+ }
57
+ };
58
+ var rejected = (value) => {
59
+ try {
60
+ step(generator.throw(value));
61
+ } catch (e) {
62
+ reject(e);
63
+ }
64
+ };
65
+ var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
66
+ step((generator = generator.apply(__this, __arguments)).next());
67
+ });
68
+ };
20
69
 
21
70
  // src/index.ts
22
71
  var src_exports = {};
23
72
  __export(src_exports, {
73
+ AizuChat: () => AizuChat,
24
74
  Button: () => Button,
75
+ Loading: () => Loading,
76
+ QuickMenus: () => QuickMenus,
25
77
  useCustom: () => useCustom
26
78
  });
27
79
  module.exports = __toCommonJS(src_exports);
@@ -49,7 +101,243 @@ function styleInject(css, { insertAt } = {}) {
49
101
  }
50
102
 
51
103
  // src/global.css
52
- styleInject('/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */\n@layer properties;\n@layer theme, base, components, utilities;\n@layer theme {\n :root,\n :host {\n --font-sans:\n ui-sans-serif,\n system-ui,\n sans-serif,\n "Apple Color Emoji",\n "Segoe UI Emoji",\n "Segoe UI Symbol",\n "Noto Color Emoji";\n --font-mono:\n ui-monospace,\n SFMono-Regular,\n Menlo,\n Monaco,\n Consolas,\n "Liberation Mono",\n "Courier New",\n monospace;\n --color-red-500: oklch(63.7% 0.237 25.331);\n --spacing: 0.25rem;\n --default-font-family: var(--font-sans);\n --default-mono-font-family: var(--font-mono);\n }\n}\n@layer base {\n *,\n ::after,\n ::before,\n ::backdrop,\n ::file-selector-button {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0 solid;\n }\n html,\n :host {\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");\n font-feature-settings: var(--default-font-feature-settings, normal);\n font-variation-settings: var(--default-font-variation-settings, normal);\n -webkit-tap-highlight-color: transparent;\n }\n hr {\n height: 0;\n color: inherit;\n border-top-width: 1px;\n }\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n b,\n strong {\n font-weight: bolder;\n }\n code,\n kbd,\n samp,\n pre {\n font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);\n font-feature-settings: var(--default-mono-font-feature-settings, normal);\n font-variation-settings: var(--default-mono-font-variation-settings, normal);\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n table {\n text-indent: 0;\n border-color: inherit;\n border-collapse: collapse;\n }\n :-moz-focusring {\n outline: auto;\n }\n progress {\n vertical-align: baseline;\n }\n summary {\n display: list-item;\n }\n ol,\n ul,\n menu {\n list-style: none;\n }\n img,\n svg,\n video,\n canvas,\n audio,\n iframe,\n embed,\n object {\n display: block;\n vertical-align: middle;\n }\n img,\n video {\n max-width: 100%;\n height: auto;\n }\n button,\n input,\n select,\n optgroup,\n textarea,\n ::file-selector-button {\n font: inherit;\n font-feature-settings: inherit;\n font-variation-settings: inherit;\n letter-spacing: inherit;\n color: inherit;\n border-radius: 0;\n background-color: transparent;\n opacity: 1;\n }\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n ::placeholder {\n opacity: 1;\n }\n @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {\n ::placeholder {\n color: currentcolor;\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, currentcolor 50%, transparent);\n }\n }\n }\n textarea {\n resize: vertical;\n }\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-date-and-time-value {\n min-height: 1lh;\n text-align: inherit;\n }\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n ::-webkit-datetime-edit,\n ::-webkit-datetime-edit-year-field,\n ::-webkit-datetime-edit-month-field,\n ::-webkit-datetime-edit-day-field,\n ::-webkit-datetime-edit-hour-field,\n ::-webkit-datetime-edit-minute-field,\n ::-webkit-datetime-edit-second-field,\n ::-webkit-datetime-edit-millisecond-field,\n ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n ::-webkit-calendar-picker-indicator {\n line-height: 1;\n }\n :-moz-ui-invalid {\n box-shadow: none;\n }\n button,\n input:where([type=button], [type=reset], [type=submit]),\n ::file-selector-button {\n appearance: button;\n }\n ::-webkit-inner-spin-button,\n ::-webkit-outer-spin-button {\n height: auto;\n }\n [hidden]:where(:not([hidden=until-found])) {\n display: none !important;\n }\n}\n@layer utilities {\n .border {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n .border-red-500 {\n border-color: var(--color-red-500);\n }\n .p-3 {\n padding: calc(var(--spacing) * 3);\n }\n .hover\\:bg-red-500 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--color-red-500);\n }\n }\n }\n}\n@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }\n@layer properties {\n @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {\n *,\n ::before,\n ::after,\n ::backdrop {\n --tw-border-style: solid;\n }\n }\n}\n');
104
+ styleInject('/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */\n@layer properties;\n@layer theme, base, components, utilities;\n@layer theme {\n :root,\n :host {\n --font-sans:\n ui-sans-serif,\n system-ui,\n sans-serif,\n "Apple Color Emoji",\n "Segoe UI Emoji",\n "Segoe UI Symbol",\n "Noto Color Emoji";\n --font-mono:\n ui-monospace,\n SFMono-Regular,\n Menlo,\n Monaco,\n Consolas,\n "Liberation Mono",\n "Courier New",\n monospace;\n --color-orange-200: oklch(90.1% 0.076 70.697);\n --color-orange-300: oklch(83.7% 0.128 66.29);\n --color-orange-400: oklch(75% 0.183 55.934);\n --color-orange-500: oklch(70.5% 0.213 47.604);\n --color-gray-100: oklch(96.7% 0.003 264.542);\n --color-gray-200: oklch(92.8% 0.006 264.531);\n --color-gray-500: oklch(55.1% 0.027 264.364);\n --color-black: #000;\n --color-white: #fff;\n --spacing: 0.25rem;\n --text-sm: 0.875rem;\n --text-sm--line-height: calc(1.25 / 0.875);\n --radius-3xl: 1.5rem;\n --radius-4xl: 2rem;\n --default-transition-duration: 150ms;\n --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n --default-font-family: var(--font-sans);\n --default-mono-font-family: var(--font-mono);\n --font-sukhumvit:\n "Sukhumvit Set",\n ui-sans-serif,\n system-ui,\n sans-serif;\n --animate-wiggle: wiggle 1s ease-in-out infinite;\n }\n}\n@layer base {\n *,\n ::after,\n ::before,\n ::backdrop,\n ::file-selector-button {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n border: 0 solid;\n }\n html,\n :host {\n line-height: 1.5;\n -webkit-text-size-adjust: 100%;\n tab-size: 4;\n font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");\n font-feature-settings: var(--default-font-feature-settings, normal);\n font-variation-settings: var(--default-font-variation-settings, normal);\n -webkit-tap-highlight-color: transparent;\n }\n hr {\n height: 0;\n color: inherit;\n border-top-width: 1px;\n }\n abbr:where([title]) {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n a {\n color: inherit;\n -webkit-text-decoration: inherit;\n text-decoration: inherit;\n }\n b,\n strong {\n font-weight: bolder;\n }\n code,\n kbd,\n samp,\n pre {\n font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);\n font-feature-settings: var(--default-mono-font-feature-settings, normal);\n font-variation-settings: var(--default-mono-font-variation-settings, normal);\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n table {\n text-indent: 0;\n border-color: inherit;\n border-collapse: collapse;\n }\n :-moz-focusring {\n outline: auto;\n }\n progress {\n vertical-align: baseline;\n }\n summary {\n display: list-item;\n }\n ol,\n ul,\n menu {\n list-style: none;\n }\n img,\n svg,\n video,\n canvas,\n audio,\n iframe,\n embed,\n object {\n display: block;\n vertical-align: middle;\n }\n img,\n video {\n max-width: 100%;\n height: auto;\n }\n button,\n input,\n select,\n optgroup,\n textarea,\n ::file-selector-button {\n font: inherit;\n font-feature-settings: inherit;\n font-variation-settings: inherit;\n letter-spacing: inherit;\n color: inherit;\n border-radius: 0;\n background-color: transparent;\n opacity: 1;\n }\n :where(select:is([multiple], [size])) optgroup {\n font-weight: bolder;\n }\n :where(select:is([multiple], [size])) optgroup option {\n padding-inline-start: 20px;\n }\n ::file-selector-button {\n margin-inline-end: 4px;\n }\n ::placeholder {\n opacity: 1;\n }\n @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {\n ::placeholder {\n color: currentcolor;\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, currentcolor 50%, transparent);\n }\n }\n }\n textarea {\n resize: vertical;\n }\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-date-and-time-value {\n min-height: 1lh;\n text-align: inherit;\n }\n ::-webkit-datetime-edit {\n display: inline-flex;\n }\n ::-webkit-datetime-edit-fields-wrapper {\n padding: 0;\n }\n ::-webkit-datetime-edit,\n ::-webkit-datetime-edit-year-field,\n ::-webkit-datetime-edit-month-field,\n ::-webkit-datetime-edit-day-field,\n ::-webkit-datetime-edit-hour-field,\n ::-webkit-datetime-edit-minute-field,\n ::-webkit-datetime-edit-second-field,\n ::-webkit-datetime-edit-millisecond-field,\n ::-webkit-datetime-edit-meridiem-field {\n padding-block: 0;\n }\n ::-webkit-calendar-picker-indicator {\n line-height: 1;\n }\n :-moz-ui-invalid {\n box-shadow: none;\n }\n button,\n input:where([type=button], [type=reset], [type=submit]),\n ::file-selector-button {\n appearance: button;\n }\n ::-webkit-inner-spin-button,\n ::-webkit-outer-spin-button {\n height: auto;\n }\n [hidden]:where(:not([hidden=until-found])) {\n display: none !important;\n }\n}\n@layer utilities {\n .pointer-events-none {\n pointer-events: none;\n }\n .invisible {\n visibility: hidden;\n }\n .absolute {\n position: absolute;\n }\n .fixed {\n position: fixed;\n }\n .relative {\n position: relative;\n }\n .top-0 {\n top: calc(var(--spacing) * 0);\n }\n .top-1\\/2 {\n top: calc(1/2 * 100%);\n }\n .right-0 {\n right: calc(var(--spacing) * 0);\n }\n .right-2 {\n right: calc(var(--spacing) * 2);\n }\n .right-5 {\n right: calc(var(--spacing) * 5);\n }\n .bottom-0 {\n bottom: calc(var(--spacing) * 0);\n }\n .bottom-4 {\n bottom: calc(var(--spacing) * 4);\n }\n .bottom-5 {\n bottom: calc(var(--spacing) * 5);\n }\n .left-1\\/2 {\n left: calc(1/2 * 100%);\n }\n .z-10 {\n z-index: 10;\n }\n .z-9999 {\n z-index: 9999;\n }\n .mt-1 {\n margin-top: calc(var(--spacing) * 1);\n }\n .mr-auto {\n margin-right: auto;\n }\n .mb-4 {\n margin-bottom: calc(var(--spacing) * 4);\n }\n .ml-auto {\n margin-left: auto;\n }\n .block {\n display: block;\n }\n .flex {\n display: flex;\n }\n .aspect-square {\n aspect-ratio: 1 / 1;\n }\n .h-0\\.75 {\n height: calc(var(--spacing) * 0.75);\n }\n .h-1\\.25 {\n height: calc(var(--spacing) * 1.25);\n }\n .h-2 {\n height: calc(var(--spacing) * 2);\n }\n .h-8 {\n height: calc(var(--spacing) * 8);\n }\n .h-10 {\n height: calc(var(--spacing) * 10);\n }\n .h-16 {\n height: calc(var(--spacing) * 16);\n }\n .h-29\\.5 {\n height: calc(var(--spacing) * 29.5);\n }\n .h-42\\.5 {\n height: calc(var(--spacing) * 42.5);\n }\n .h-full {\n height: 100%;\n }\n .w-0\\.75 {\n width: calc(var(--spacing) * 0.75);\n }\n .w-1\\.25 {\n width: calc(var(--spacing) * 1.25);\n }\n .w-2 {\n width: calc(var(--spacing) * 2);\n }\n .w-8 {\n width: calc(var(--spacing) * 8);\n }\n .w-10 {\n width: calc(var(--spacing) * 10);\n }\n .w-75\\.5 {\n width: calc(var(--spacing) * 75.5);\n }\n .w-full {\n width: 100%;\n }\n .max-w-69\\.5 {\n max-width: calc(var(--spacing) * 69.5);\n }\n .max-w-75\\.5 {\n max-width: calc(var(--spacing) * 75.5);\n }\n .min-w-max {\n min-width: max-content;\n }\n .flex-1 {\n flex: 1;\n }\n .shrink-0 {\n flex-shrink: 0;\n }\n .-translate-x-1\\/2 {\n --tw-translate-x: calc(calc(1/2 * 100%) * -1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .-translate-y-1\\/2 {\n --tw-translate-y: calc(calc(1/2 * 100%) * -1);\n translate: var(--tw-translate-x) var(--tw-translate-y);\n }\n .animate-wiggle {\n animation: var(--animate-wiggle);\n }\n .cursor-pointer {\n cursor: pointer;\n }\n .flex-col {\n flex-direction: column;\n }\n .flex-wrap {\n flex-wrap: wrap;\n }\n .items-center {\n align-items: center;\n }\n .justify-between {\n justify-content: space-between;\n }\n .justify-center {\n justify-content: center;\n }\n .gap-3 {\n gap: calc(var(--spacing) * 3);\n }\n .gap-x-1 {\n column-gap: calc(var(--spacing) * 1);\n }\n .gap-x-2 {\n column-gap: calc(var(--spacing) * 2);\n }\n .gap-y-3 {\n row-gap: calc(var(--spacing) * 3);\n }\n .overflow-hidden {\n overflow: hidden;\n }\n .overflow-x-scroll {\n overflow-x: scroll;\n }\n .overflow-y-auto {\n overflow-y: auto;\n }\n .rounded-3xl {\n border-radius: var(--radius-3xl);\n }\n .rounded-full {\n border-radius: calc(infinity * 1px);\n }\n .border {\n border-style: var(--tw-border-style);\n border-width: 1px;\n }\n .border-b {\n border-bottom-style: var(--tw-border-style);\n border-bottom-width: 1px;\n }\n .border-none {\n --tw-border-style: none;\n border-style: none;\n }\n .border-black\\/50 {\n border-color: color-mix(in srgb, #000 50%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n border-color: color-mix(in oklab, var(--color-black) 50%, transparent);\n }\n }\n .border-gray-200 {\n border-color: var(--color-gray-200);\n }\n .border-orange-300 {\n border-color: var(--color-orange-300);\n }\n .border-orange-400 {\n border-color: var(--color-orange-400);\n }\n .bg-\\[\\#F8F8FA\\] {\n background-color: #F8F8FA;\n }\n .bg-black\\/60 {\n background-color: color-mix(in srgb, #000 60%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n background-color: color-mix(in oklab, var(--color-black) 60%, transparent);\n }\n }\n .bg-gray-100 {\n background-color: var(--color-gray-100);\n }\n .bg-orange-200 {\n background-color: var(--color-orange-200);\n }\n .bg-orange-400 {\n background-color: var(--color-orange-400);\n }\n .bg-white {\n background-color: var(--color-white);\n }\n .bg-linear-to-l {\n --tw-gradient-position: to left;\n @supports (background-image: linear-gradient(in lab, red, red)) {\n --tw-gradient-position: to left in oklab;\n }\n background-image: linear-gradient(var(--tw-gradient-stops));\n }\n .from-white {\n --tw-gradient-from: var(--color-white);\n --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));\n }\n .to-transparent {\n --tw-gradient-to: transparent;\n --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));\n }\n .p-2 {\n padding: calc(var(--spacing) * 2);\n }\n .p-3 {\n padding: calc(var(--spacing) * 3);\n }\n .p-4 {\n padding: calc(var(--spacing) * 4);\n }\n .px-4 {\n padding-inline: calc(var(--spacing) * 4);\n }\n .py-2 {\n padding-block: calc(var(--spacing) * 2);\n }\n .py-3 {\n padding-block: calc(var(--spacing) * 3);\n }\n .pt-4 {\n padding-top: calc(var(--spacing) * 4);\n }\n .pr-12 {\n padding-right: calc(var(--spacing) * 12);\n }\n .pb-2 {\n padding-bottom: calc(var(--spacing) * 2);\n }\n .pl-4 {\n padding-left: calc(var(--spacing) * 4);\n }\n .text-center {\n text-align: center;\n }\n .text-sm {\n font-size: var(--text-sm);\n line-height: var(--tw-leading, var(--text-sm--line-height));\n }\n .text-\\[10px\\] {\n font-size: 10px;\n }\n .text-\\[12px\\] {\n font-size: 12px;\n }\n .text-nowrap {\n text-wrap: nowrap;\n }\n .text-black\\/85 {\n color: color-mix(in srgb, #000 85%, transparent);\n @supports (color: color-mix(in lab, red, red)) {\n color: color-mix(in oklab, var(--color-black) 85%, transparent);\n }\n }\n .text-gray-500 {\n color: var(--color-gray-500);\n }\n .text-orange-500 {\n color: var(--color-orange-500);\n }\n .shadow {\n --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));\n box-shadow:\n var(--tw-inset-shadow),\n var(--tw-inset-ring-shadow),\n var(--tw-ring-offset-shadow),\n var(--tw-ring-shadow),\n var(--tw-shadow);\n }\n .shadow-2xl {\n --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));\n box-shadow:\n var(--tw-inset-shadow),\n var(--tw-inset-ring-shadow),\n var(--tw-ring-offset-shadow),\n var(--tw-ring-shadow),\n var(--tw-shadow);\n }\n .shadow-orange-400 {\n --tw-shadow-color: oklch(75% 0.183 55.934);\n @supports (color: color-mix(in lab, red, red)) {\n --tw-shadow-color: color-mix(in oklab, var(--color-orange-400) var(--tw-shadow-alpha), transparent);\n }\n }\n .transition-colors {\n transition-property:\n color,\n background-color,\n border-color,\n outline-color,\n text-decoration-color,\n fill,\n stroke,\n --tw-gradient-from,\n --tw-gradient-via,\n --tw-gradient-to;\n transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));\n transition-duration: var(--tw-duration, var(--default-transition-duration));\n }\n .outline-none {\n --tw-outline-style: none;\n outline-style: none;\n }\n .hover\\:bg-gray-200 {\n &:hover {\n @media (hover: hover) {\n background-color: var(--color-gray-200);\n }\n }\n }\n .focus\\:ring-2 {\n &:focus {\n --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);\n box-shadow:\n var(--tw-inset-shadow),\n var(--tw-inset-ring-shadow),\n var(--tw-ring-offset-shadow),\n var(--tw-ring-shadow),\n var(--tw-shadow);\n }\n }\n .focus\\:ring-orange-300 {\n &:focus {\n --tw-ring-color: var(--color-orange-300);\n }\n }\n .lg\\:top-auto {\n @media (width >= 64rem) {\n top: auto;\n }\n }\n .lg\\:right-5 {\n @media (width >= 64rem) {\n right: calc(var(--spacing) * 5);\n }\n }\n .lg\\:bottom-20 {\n @media (width >= 64rem) {\n bottom: calc(var(--spacing) * 20);\n }\n }\n .lg\\:hidden {\n @media (width >= 64rem) {\n display: none;\n }\n }\n .lg\\:h-46 {\n @media (width >= 64rem) {\n height: calc(var(--spacing) * 46);\n }\n }\n .lg\\:max-h-201 {\n @media (width >= 64rem) {\n max-height: calc(var(--spacing) * 201);\n }\n }\n .lg\\:w-107\\.5 {\n @media (width >= 64rem) {\n width: calc(var(--spacing) * 107.5);\n }\n }\n .lg\\:max-w-80 {\n @media (width >= 64rem) {\n max-width: calc(var(--spacing) * 80);\n }\n }\n .lg\\:flex-wrap {\n @media (width >= 64rem) {\n flex-wrap: wrap;\n }\n }\n .lg\\:rounded-4xl {\n @media (width >= 64rem) {\n border-radius: var(--radius-4xl);\n }\n }\n}\n@layer base {\n * {\n font-family: var(--font-sukhumvit);\n }\n}\n@layer utilities {\n .scrollbar-hide::-webkit-scrollbar {\n display: none;\n }\n .scrollbar-hide {\n -ms-overflow-style: none;\n scrollbar-width: none;\n }\n}\n@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }\n@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }\n@property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }\n@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }\n@property --tw-gradient-position { syntax: "*"; inherits: false; }\n@property --tw-gradient-from { syntax: "<color>"; inherits: false; initial-value: #0000; }\n@property --tw-gradient-via { syntax: "<color>"; inherits: false; initial-value: #0000; }\n@property --tw-gradient-to { syntax: "<color>"; inherits: false; initial-value: #0000; }\n@property --tw-gradient-stops { syntax: "*"; inherits: false; }\n@property --tw-gradient-via-stops { syntax: "*"; inherits: false; }\n@property --tw-gradient-from-position { syntax: "<length-percentage>"; inherits: false; initial-value: 0%; }\n@property --tw-gradient-via-position { syntax: "<length-percentage>"; inherits: false; initial-value: 50%; }\n@property --tw-gradient-to-position { syntax: "<length-percentage>"; inherits: false; initial-value: 100%; }\n@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }\n@property --tw-shadow-color { syntax: "*"; inherits: false; }\n@property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }\n@property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }\n@property --tw-inset-shadow-color { syntax: "*"; inherits: false; }\n@property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }\n@property --tw-ring-color { syntax: "*"; inherits: false; }\n@property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }\n@property --tw-inset-ring-color { syntax: "*"; inherits: false; }\n@property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }\n@property --tw-ring-inset { syntax: "*"; inherits: false; }\n@property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }\n@property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }\n@property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }\n@keyframes wiggle {\n 0%, 100% {\n transform: translateY(-50%);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 50% {\n transform: none;\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n}\n@layer properties {\n @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {\n *,\n ::before,\n ::after,\n ::backdrop {\n --tw-translate-x: 0;\n --tw-translate-y: 0;\n --tw-translate-z: 0;\n --tw-border-style: solid;\n --tw-gradient-position: initial;\n --tw-gradient-from: #0000;\n --tw-gradient-via: #0000;\n --tw-gradient-to: #0000;\n --tw-gradient-stops: initial;\n --tw-gradient-via-stops: initial;\n --tw-gradient-from-position: 0%;\n --tw-gradient-via-position: 50%;\n --tw-gradient-to-position: 100%;\n --tw-shadow: 0 0 #0000;\n --tw-shadow-color: initial;\n --tw-shadow-alpha: 100%;\n --tw-inset-shadow: 0 0 #0000;\n --tw-inset-shadow-color: initial;\n --tw-inset-shadow-alpha: 100%;\n --tw-ring-color: initial;\n --tw-ring-shadow: 0 0 #0000;\n --tw-inset-ring-color: initial;\n --tw-inset-ring-shadow: 0 0 #0000;\n --tw-ring-inset: initial;\n --tw-ring-offset-width: 0px;\n --tw-ring-offset-color: #fff;\n --tw-ring-offset-shadow: 0 0 #0000;\n }\n }\n}\n');
105
+
106
+ // src/constant/default.ts
107
+ var defaultQuickMenuMessage = "\u0E2A\u0E27\u0E31\u0E2A\u0E14\u0E35\u0E04\u0E23\u0E31\u0E1A Brooklyn! \u{1F44B} UTECH \u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E0A\u0E48\u0E27\u0E22\u0E04\u0E38\u0E13\u0E2B\u0E32\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C IT \u0E17\u0E35\u0E48\u0E15\u0E2D\u0E1A\u0E42\u0E08\u0E17\u0E22\u0E4C\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14 \u0E44\u0E21\u0E48\u0E27\u0E48\u0E32\u0E08\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E2D\u0E21\u0E1E\u0E34\u0E27\u0E40\u0E15\u0E2D\u0E23\u0E4C \u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E40\u0E2A\u0E23\u0E34\u0E21 \u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E30\u0E44\u0E23\u0E01\u0E47\u0E15\u0E32\u0E21 \u0E16\u0E32\u0E21\u0E44\u0E14\u0E49\u0E40\u0E25\u0E22\u0E04\u0E23\u0E31\u0E1A \u{1F60A}";
108
+ var defaultBanner = "https://utech-dev.zimpligital.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fcoupon-banner-th.edad52fd.webp&w=640&q=75";
109
+ var defaultQuickMenus = [
110
+ { id: "1", title: "\u0E2A\u0E31\u0E48\u0E07\u0E0B\u0E37\u0E49\u0E2D\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32 \u{1F6CD}\uFE0F", value: "\u0E2A\u0E31\u0E48\u0E07\u0E0B\u0E37\u0E49\u0E2D\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32", mockResponse: "QUICK_MENU_SHOP" /* QUICK_MENU_SHOP */ },
111
+ { id: "2", title: "\u0E0A\u0E48\u0E27\u0E22\u0E2B\u0E32\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32 \u{1F50D}", value: "\u0E0A\u0E48\u0E27\u0E22\u0E2B\u0E32\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32", mockResponse: "ERROR" /* ERROR */ },
112
+ { id: "3", title: "\u0E15\u0E34\u0E14\u0E15\u0E32\u0E21\u0E1E\u0E31\u0E2A\u0E14\u0E38 \u{1F69A}", value: "\u0E15\u0E34\u0E14\u0E15\u0E32\u0E21\u0E1E\u0E31\u0E2A\u0E14\u0E38", mockResponse: "ERROR" /* ERROR */ },
113
+ { id: "4", title: "\u0E2B\u0E31\u0E27\u0E02\u0E49\u0E2D\u0E2D\u0E37\u0E48\u0E19\u0E46 \u{1F4AC}", value: "\u0E2B\u0E31\u0E27\u0E02\u0E49\u0E2D\u0E2D\u0E37\u0E48\u0E19\u0E46", mockResponse: "ERROR" /* ERROR */ }
114
+ ];
115
+ var defaultCategory = [
116
+ { id: "1", title: "\u0E2A\u0E21\u0E32\u0E23\u0E4C\u0E17\u0E42\u0E1F\u0E19", value: "\u0E2A\u0E21\u0E32\u0E23\u0E4C\u0E17\u0E42\u0E1F\u0E19", mockResponse: "CATEGORY_SMARTPHONE" /* CATEGORY_SMARTPHONE */ },
117
+ { id: "2", title: "\u0E42\u0E19\u0E4A\u0E15\u0E1A\u0E38\u0E4A\u0E04", value: "\u0E42\u0E19\u0E4A\u0E15\u0E1A\u0E38\u0E4A\u0E04", mockResponse: "CATEGORY_NOTEBOOK" /* CATEGORY_NOTEBOOK */ },
118
+ { id: "3", title: "\u0E04\u0E2D\u0E21\u0E1E\u0E34\u0E27\u0E40\u0E15\u0E2D\u0E23\u0E4C", value: "\u0E04\u0E2D\u0E21\u0E1E\u0E34\u0E27\u0E40\u0E15\u0E2D\u0E23\u0E4C", mockResponse: "ERROR" /* ERROR */ },
119
+ { id: "4", title: "\u0E40\u0E01\u0E21\u0E21\u0E34\u0E48\u0E07\u0E40\u0E01\u0E35\u0E22\u0E23\u0E4C", value: "\u0E40\u0E01\u0E21\u0E21\u0E34\u0E48\u0E07\u0E40\u0E01\u0E35\u0E22\u0E23\u0E4C", mockResponse: "ERROR" /* ERROR */ },
120
+ { id: "5", title: "\u0E40\u0E01\u0E21\u0E04\u0E2D\u0E19\u0E42\u0E0B\u0E25", value: "\u0E40\u0E01\u0E21\u0E04\u0E2D\u0E19\u0E42\u0E0B\u0E25", mockResponse: "ERROR" /* ERROR */ },
121
+ { id: "6", title: "\u0E41\u0E01\u0E14\u0E40\u0E08\u0E47\u0E15 ", value: "\u0E41\u0E01\u0E14\u0E40\u0E08\u0E47\u0E15 ", mockResponse: "ERROR" /* ERROR */ }
122
+ ];
123
+ var tryAgain = "\u0E25\u0E2D\u0E07\u0E43\u0E2B\u0E21\u0E48\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07";
124
+ var defaultFailMenu = [
125
+ { id: "1", title: "\u0E25\u0E2D\u0E07\u0E43\u0E2B\u0E21\u0E48\u0E2D\u0E35\u0E01\u0E04\u0E23\u0E31\u0E49\u0E07 \u{1F504}\xA0", value: "\u0E2A\u0E31\u0E48\u0E07\u0E0B\u0E37\u0E49\u0E2D\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32 \u{1F6CD}\uFE0F", mockResponse: "ERROR" /* ERROR */ },
126
+ { id: "2", title: "\u0E15\u0E34\u0E14\u0E15\u0E48\u0E2D\u0E40\u0E23\u0E32 \u{1F4DE}\xA0", phoneNumber: "099999999", mockResponse: "ERROR" /* ERROR */ }
127
+ ];
128
+ var defaultQuickMenuChips = [
129
+ { id: "1", title: "\u0E0B\u0E37\u0E49\u0E2D\u0E02\u0E2D\u0E07/\u0E0A\u0E33\u0E23\u0E30\u0E40\u0E07\u0E34\u0E19\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49", value: "\u0E0B\u0E37\u0E49\u0E2D\u0E02\u0E2D\u0E07/\u0E0A\u0E33\u0E23\u0E30\u0E40\u0E07\u0E34\u0E19\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49", mockResponse: "PAYMENT_METHODS" /* PAYMENT_METHODS */ },
130
+ { id: "2", title: "\u0E43\u0E0A\u0E49\u0E42\u0E04\u0E49\u0E14\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49", value: "\u0E43\u0E0A\u0E49\u0E42\u0E04\u0E49\u0E14\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49", mockResponse: "CODE_CANT_USE" /* CODE_CANT_USE */ },
131
+ { id: "3", title: "\u0E43\u0E0A\u0E49\u0E42\u0E04\u0E49\u0E14\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49", value: "\u0E43\u0E0A\u0E49\u0E42\u0E04\u0E49\u0E14\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49", mockResponse: "CODE_CANT_USE" /* CODE_CANT_USE */ },
132
+ { id: "4", title: "\u0E43\u0E0A\u0E49\u0E42\u0E04\u0E49\u0E14\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49", value: "\u0E43\u0E0A\u0E49\u0E42\u0E04\u0E49\u0E14\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14\u0E44\u0E21\u0E48\u0E44\u0E14\u0E49", mockResponse: "CODE_CANT_USE" /* CODE_CANT_USE */ }
133
+ ];
134
+ var budgetRanges = [
135
+ { id: "1", title: "\u0E15\u0E48\u0E33\u0E01\u0E27\u0E48\u0E32 10,000 \u0E1A\u0E32\u0E17", value: "\u0E15\u0E48\u0E33\u0E01\u0E27\u0E48\u0E32 10,000 \u0E1A\u0E32\u0E17", mockResponse: "PRODUCT_FOUND_LESS_10000" /* PRODUCT_FOUND_LESS_10000 */ },
136
+ { id: "2", title: "10,000 - 20,000 \u0E1A\u0E32\u0E17", value: "10,000 - 20,000 \u0E1A\u0E32\u0E17", mockResponse: "PRODUCT_FOUND_RANGE_10000_20000" /* PRODUCT_FOUND_RANGE_10000_20000 */ },
137
+ { id: "3", title: "20,000 - 30,000 \u0E1A\u0E32\u0E17", value: "20,000 - 30,000 \u0E1A\u0E32\u0E17", mockResponse: "PRODUCT_FOUND_RANGE_20000_30000" /* PRODUCT_FOUND_RANGE_20000_30000 */ },
138
+ { id: "4", title: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32 30,000 \u0E1A\u0E32\u0E17", value: "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32 30,000 \u0E1A\u0E32\u0E17", mockResponse: "PRODUCT_FOUND_MORE_30000" /* PRODUCT_FOUND_MORE_30000 */ }
139
+ ];
140
+ var shippingOptions = [
141
+ { id: "1", title: "\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E1B\u0E01\u0E15\u0E34 (3-5 \u0E27\u0E31\u0E19)", value: "\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E1B\u0E01\u0E15\u0E34", mockResponse: "PAYMENT_METHODS" /* PAYMENT_METHODS */ },
142
+ { id: "2", title: "\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E14\u0E48\u0E27\u0E19 (1-2 \u0E27\u0E31\u0E19)", value: "\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E14\u0E48\u0E27\u0E19", mockResponse: "PAYMENT_METHODS" /* PAYMENT_METHODS */ },
143
+ { id: "3", title: "\u0E23\u0E31\u0E1A\u0E40\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E23\u0E49\u0E32\u0E19", value: "\u0E23\u0E31\u0E1A\u0E40\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E23\u0E49\u0E32\u0E19", mockResponse: "PAYMENT_METHODS" /* PAYMENT_METHODS */ }
144
+ ];
145
+ var supportTopics = [
146
+ { id: "1", title: "\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07 \u{1F69A}", value: "\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07", mockResponse: "SHIPPING_INFO" /* SHIPPING_INFO */ },
147
+ { id: "2", title: "\u0E01\u0E32\u0E23\u0E0A\u0E33\u0E23\u0E30\u0E40\u0E07\u0E34\u0E19 \u{1F4B3}", value: "\u0E01\u0E32\u0E23\u0E0A\u0E33\u0E23\u0E30\u0E40\u0E07\u0E34\u0E19", mockResponse: "PAYMENT_METHODS" /* PAYMENT_METHODS */ },
148
+ { id: "3", title: "\u0E01\u0E32\u0E23\u0E04\u0E37\u0E19\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32 \u{1F504}", value: "\u0E01\u0E32\u0E23\u0E04\u0E37\u0E19\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32", mockResponse: "RETURN_POLICY" /* RETURN_POLICY */ },
149
+ { id: "4", title: "\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19 \u{1F6E1}\uFE0F", value: "\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19", mockResponse: "WARRANTY_INFO" /* WARRANTY_INFO */ }
150
+ ];
151
+ var searchableMenus = [
152
+ ...defaultQuickMenus,
153
+ ...defaultCategory,
154
+ ...defaultQuickMenuChips,
155
+ ...budgetRanges,
156
+ ...shippingOptions,
157
+ ...supportTopics
158
+ ];
159
+ var mockResponse = {
160
+ ["CATEGORY_SMARTPHONE" /* CATEGORY_SMARTPHONE */]: {
161
+ id: "bot-category-smartphone",
162
+ type: "BOT_TEXT_WITH_MENUS" /* BOT_TEXT_WITH_MENUS */,
163
+ text: "\u0E22\u0E2D\u0E14\u0E40\u0E22\u0E35\u0E48\u0E22\u0E21! \u0E04\u0E38\u0E13\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2B\u0E21\u0E27\u0E14\u0E2B\u0E21\u0E39\u0E48\u0E2A\u0E21\u0E32\u0E23\u0E4C\u0E17\u0E42\u0E1F\u0E19\u0E41\u0E25\u0E49\u0E27 \u0E1A\u0E2D\u0E01\u0E1C\u0E21\u0E2B\u0E19\u0E48\u0E2D\u0E22\u0E04\u0E23\u0E31\u0E1A \u0E27\u0E48\u0E32\u0E07\u0E1A\u0E1B\u0E23\u0E30\u0E21\u0E32\u0E13\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2D\u0E22\u0E39\u0E48\u0E17\u0E35\u0E48\u0E40\u0E17\u0E48\u0E32\u0E44\u0E2B\u0E23\u0E48?",
164
+ menus: budgetRanges
165
+ },
166
+ ["CATEGORY_NOTEBOOK" /* CATEGORY_NOTEBOOK */]: {
167
+ id: "bot-category-notebook",
168
+ type: "BOT_TEXT_WITH_MENUS" /* BOT_TEXT_WITH_MENUS */,
169
+ text: "\u0E02\u0E13\u0E30\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E21\u0E35\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E15\u0E32\u0E21\u0E2B\u0E32 \u0E43\u0E19\u0E2B\u0E21\u0E27\u0E14\u0E42\u0E19\u0E4A\u0E15\u0E1A\u0E38\u0E4A\u0E04\u0E04\u0E23\u0E31\u0E1A \u0E25\u0E2D\u0E07\u0E14\u0E39\u0E2B\u0E21\u0E27\u0E14\u0E2D\u0E37\u0E48\u0E19\u0E44\u0E2B\u0E21?",
170
+ menus: defaultCategory
171
+ },
172
+ ["ERROR" /* ERROR */]: {
173
+ id: "bot-error-response",
174
+ type: "BOT_ERROR_WITH_MENUS" /* BOT_ERROR_WITH_MENUS */,
175
+ text: "\u0E40\u0E2D\u0E4A\u0E30! \u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E19\u0E34\u0E14\u0E2B\u0E19\u0E48\u0E2D\u0E22\u0E04\u0E23\u0E31\u0E1A \u{1F613} \u0E44\u0E21\u0E48\u0E40\u0E1B\u0E47\u0E19\u0E44\u0E23\u0E19\u0E30 \u0E25\u0E2D\u0E07\u0E17\u0E32\u0E07\u0E19\u0E35\u0E49\u0E14\u0E39\u0E04\u0E23\u0E31\u0E1A\u{1F447}",
176
+ menus: defaultFailMenu
177
+ },
178
+ ["QUICK_MENU_SHOP" /* QUICK_MENU_SHOP */]: {
179
+ id: "bot-shop-response",
180
+ type: "BOT_TEXT_WITH_MENUS" /* BOT_TEXT_WITH_MENUS */,
181
+ text: "\u0E2A\u0E19\u0E43\u0E08\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E44\u0E2B\u0E19\u0E04\u0E23\u0E31\u0E1A \u0E40\u0E23\u0E32\u0E0A\u0E48\u0E27\u0E22\u0E41\u0E19\u0E30\u0E19\u0E33\u0E44\u0E14\u0E49\u0E19\u0E30 \u{1F60A}",
182
+ menus: defaultCategory
183
+ },
184
+ ["CODE_CANT_USE" /* CODE_CANT_USE */]: {
185
+ id: "bot-code-cant-use",
186
+ type: "BOT_TEXT" /* BOT_TEXT */,
187
+ text: "\u0E02\u0E2D\u0E2D\u0E20\u0E31\u0E22\u0E04\u0E23\u0E31\u0E1A \u0E42\u0E04\u0E49\u0E14\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E43\u0E0A\u0E49\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E44\u0E14\u0E49\u0E43\u0E19\u0E02\u0E13\u0E30\u0E19\u0E35\u0E49 \u0E01\u0E23\u0E38\u0E13\u0E32\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E40\u0E07\u0E37\u0E48\u0E2D\u0E19\u0E44\u0E02\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E42\u0E04\u0E49\u0E14\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14\u0E2D\u0E37\u0E48\u0E19\u0E04\u0E23\u0E31\u0E1A"
188
+ },
189
+ ["BUDGET_INQUIRY" /* BUDGET_INQUIRY */]: {
190
+ id: "bot-budget-inquiry",
191
+ type: "BOT_TEXT_WITH_MENUS" /* BOT_TEXT_WITH_MENUS */,
192
+ text: "\u0E07\u0E1A\u0E1B\u0E23\u0E30\u0E21\u0E32\u0E13\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19\u0E0A\u0E48\u0E27\u0E07\u0E44\u0E2B\u0E19\u0E04\u0E23\u0E31\u0E1A? \u0E40\u0E23\u0E32\u0E08\u0E30\u0E0A\u0E48\u0E27\u0E22\u0E2B\u0E32\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E21\u0E32\u0E30\u0E2A\u0E21\u0E43\u0E2B\u0E49 \u{1F60A}",
193
+ menus: budgetRanges
194
+ },
195
+ ["PRODUCT_FOUND_LESS_10000" /* PRODUCT_FOUND_LESS_10000 */]: {
196
+ id: "bot-product-found",
197
+ type: "BOT_TEXT_WITH_MENUS" /* BOT_TEXT_WITH_MENUS */,
198
+ text: "\u0E40\u0E08\u0E2D\u0E41\u0E25\u0E49\u0E27\u0E04\u0E23\u0E31\u0E1A! \u0E40\u0E23\u0E32\u0E21\u0E35\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E17\u0E35\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E1A\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23 \u{1F389}\n\niPhone 4 Pro 16GB\n\u0E23\u0E32\u0E04\u0E32: \u0E3F5,900\n- \u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D 6.9 \u0E19\u0E34\u0E49\u0E27\n- \u0E0A\u0E34\u0E1B A18 Pro\n- \u0E01\u0E25\u0E49\u0E2D\u0E07 48MP\n\n\u0E2A\u0E19\u0E43\u0E08\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E0A\u0E48\u0E2D\u0E07\u0E17\u0E32\u0E07\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E44\u0E2B\u0E21\u0E04\u0E23\u0E31\u0E1A?",
199
+ menus: shippingOptions
200
+ },
201
+ ["PRODUCT_FOUND_RANGE_10000_20000" /* PRODUCT_FOUND_RANGE_10000_20000 */]: {
202
+ id: "bot-product-found",
203
+ type: "BOT_TEXT_WITH_MENUS" /* BOT_TEXT_WITH_MENUS */,
204
+ text: "\u0E40\u0E08\u0E2D\u0E41\u0E25\u0E49\u0E27\u0E04\u0E23\u0E31\u0E1A! \u0E40\u0E23\u0E32\u0E21\u0E35\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E17\u0E35\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E1A\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23 \u{1F389}\n\niPhone 16 Pro Max 128GB\n\u0E23\u0E32\u0E04\u0E32: \u0E3F19,000\n- \u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D 6.9 \u0E19\u0E34\u0E49\u0E27\n- \u0E0A\u0E34\u0E1B A18 Pro\n- \u0E01\u0E25\u0E49\u0E2D\u0E07 48MP\n\n\u0E2A\u0E19\u0E43\u0E08\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E0A\u0E48\u0E2D\u0E07\u0E17\u0E32\u0E07\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E44\u0E2B\u0E21\u0E04\u0E23\u0E31\u0E1A?",
205
+ menus: shippingOptions
206
+ },
207
+ ["PRODUCT_FOUND_RANGE_20000_30000" /* PRODUCT_FOUND_RANGE_20000_30000 */]: {
208
+ id: "bot-product-found",
209
+ type: "BOT_TEXT_WITH_MENUS" /* BOT_TEXT_WITH_MENUS */,
210
+ text: "\u0E40\u0E08\u0E2D\u0E41\u0E25\u0E49\u0E27\u0E04\u0E23\u0E31\u0E1A! \u0E40\u0E23\u0E32\u0E21\u0E35\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E17\u0E35\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E1A\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23 \u{1F389}\n\niPhone 16 Pro Max 256GB\n\u0E23\u0E32\u0E04\u0E32: \u0E3F30,000\n- \u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D 6.9 \u0E19\u0E34\u0E49\u0E27\n- \u0E0A\u0E34\u0E1B A18 Pro\n- \u0E01\u0E25\u0E49\u0E2D\u0E07 48MP\n\n\u0E2A\u0E19\u0E43\u0E08\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E0A\u0E48\u0E2D\u0E07\u0E17\u0E32\u0E07\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E44\u0E2B\u0E21\u0E04\u0E23\u0E31\u0E1A?",
211
+ menus: shippingOptions
212
+ },
213
+ ["PRODUCT_FOUND_MORE_30000" /* PRODUCT_FOUND_MORE_30000 */]: {
214
+ id: "bot-product-found",
215
+ type: "BOT_TEXT_WITH_MENUS" /* BOT_TEXT_WITH_MENUS */,
216
+ text: "\u0E40\u0E08\u0E2D\u0E41\u0E25\u0E49\u0E27\u0E04\u0E23\u0E31\u0E1A! \u0E40\u0E23\u0E32\u0E21\u0E35\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E17\u0E35\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E1A\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23 \u{1F389}\n\niPhone 16 Pro Max 512GB\n\u0E23\u0E32\u0E04\u0E32: \u0E3F45,900\n- \u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D 6.9 \u0E19\u0E34\u0E49\u0E27\n- \u0E0A\u0E34\u0E1B A18 Pro\n- \u0E01\u0E25\u0E49\u0E2D\u0E07 48MP\n\n\u0E2A\u0E19\u0E43\u0E08\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E0A\u0E48\u0E2D\u0E07\u0E17\u0E32\u0E07\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E44\u0E2B\u0E21\u0E04\u0E23\u0E31\u0E1A?",
217
+ menus: shippingOptions
218
+ },
219
+ ["SHIPPING_INFO" /* SHIPPING_INFO */]: {
220
+ id: "bot-shipping-info",
221
+ type: "BOT_TEXT" /* BOT_TEXT */,
222
+ text: "\u{1F4E6} \u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\n\n\u2705 \u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E1F\u0E23\u0E35 \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E04\u0E33\u0E2A\u0E31\u0E48\u0E07\u0E0B\u0E37\u0E49\u0E2D\u0E15\u0E31\u0E49\u0E07\u0E41\u0E15\u0E48 1,000 \u0E1A\u0E32\u0E17\u0E02\u0E36\u0E49\u0E19\u0E44\u0E1B\n\u2705 \u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E1B\u0E01\u0E15\u0E34 3-5 \u0E27\u0E31\u0E19\u0E17\u0E33\u0E01\u0E32\u0E23\n\u2705 \u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E14\u0E48\u0E27\u0E19 1-2 \u0E27\u0E31\u0E19\u0E17\u0E33\u0E01\u0E32\u0E23 (\u0E40\u0E2A\u0E35\u0E22\u0E04\u0E48\u0E32\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23\u0E40\u0E1E\u0E34\u0E48\u0E21 100 \u0E1A\u0E32\u0E17)\n\u2705 \u0E23\u0E31\u0E1A\u0E40\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E23\u0E49\u0E32\u0E19\u0E44\u0E14\u0E49\u0E17\u0E31\u0E19\u0E17\u0E35\n\n\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E2A\u0E2D\u0E1A\u0E16\u0E32\u0E21\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21\u0E44\u0E2B\u0E21\u0E04\u0E23\u0E31\u0E1A?"
223
+ },
224
+ ["PAYMENT_METHODS" /* PAYMENT_METHODS */]: {
225
+ id: "bot-payment-methods",
226
+ type: "BOT_TEXT" /* BOT_TEXT */,
227
+ text: "\u{1F4B3} \u0E0A\u0E48\u0E2D\u0E07\u0E17\u0E32\u0E07\u0E01\u0E32\u0E23\u0E0A\u0E33\u0E23\u0E30\u0E40\u0E07\u0E34\u0E19\n\n\u2705 \u0E42\u0E2D\u0E19\u0E1C\u0E48\u0E32\u0E19\u0E18\u0E19\u0E32\u0E04\u0E32\u0E23\n\u2705 \u0E1A\u0E31\u0E15\u0E23\u0E40\u0E04\u0E23\u0E14\u0E34\u0E15/\u0E40\u0E14\u0E1A\u0E34\u0E15 (Visa, Mastercard, JCB)\n\u2705 \u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E40\u0E1E\u0E22\u0E4C\n\u2705 \u0E1C\u0E48\u0E2D\u0E19\u0E0A\u0E33\u0E23\u0E30 0% (\u0E1A\u0E31\u0E15\u0E23\u0E40\u0E04\u0E23\u0E14\u0E34\u0E15\u0E18\u0E19\u0E32\u0E04\u0E32\u0E23\u0E0A\u0E31\u0E49\u0E19\u0E19\u0E33)\n\u2705 \u0E40\u0E01\u0E47\u0E1A\u0E40\u0E07\u0E34\u0E19\u0E1B\u0E25\u0E32\u0E22\u0E17\u0E32\u0E07\n\n\u0E0A\u0E33\u0E23\u0E30\u0E14\u0E49\u0E27\u0E22\u0E27\u0E34\u0E18\u0E35\u0E44\u0E2B\u0E19\u0E2A\u0E30\u0E14\u0E27\u0E01\u0E04\u0E23\u0E31\u0E1A?"
228
+ },
229
+ ["WARRANTY_INFO" /* WARRANTY_INFO */]: {
230
+ id: "bot-warranty-info",
231
+ type: "BOT_TEXT" /* BOT_TEXT */,
232
+ text: "\u{1F6E1}\uFE0F \u0E40\u0E07\u0E37\u0E48\u0E2D\u0E19\u0E44\u0E02\u0E01\u0E32\u0E23\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19\n\n\u2705 \u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E01\u0E31\u0E19\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32 1 \u0E1B\u0E35\u0E40\u0E15\u0E47\u0E21 (\u0E15\u0E32\u0E21\u0E40\u0E07\u0E37\u0E48\u0E2D\u0E19\u0E44\u0E02\u0E1C\u0E39\u0E49\u0E1C\u0E25\u0E34\u0E15)\n\u2705 \u0E28\u0E39\u0E19\u0E22\u0E4C\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23\u0E17\u0E31\u0E48\u0E27\u0E1B\u0E23\u0E30\u0E40\u0E17\u0E28\n\u2705 \u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E43\u0E2B\u0E21\u0E48 \u0E2B\u0E32\u0E01\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E1E\u0E1A\u0E27\u0E48\u0E32\u0E40\u0E1B\u0E47\u0E19\u0E02\u0E2D\u0E07\u0E40\u0E2A\u0E35\u0E22\u0E08\u0E32\u0E01\u0E42\u0E23\u0E07\u0E07\u0E32\u0E19\n\u2705 \u0E0B\u0E48\u0E2D\u0E21\u0E1F\u0E23\u0E35 \u0E2B\u0E32\u0E01\u0E0A\u0E33\u0E23\u0E38\u0E14\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E1B\u0E01\u0E15\u0E34\n\n\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E2B\u0E15\u0E38: \u0E44\u0E21\u0E48\u0E23\u0E27\u0E21\u0E04\u0E27\u0E32\u0E21\u0E40\u0E2A\u0E35\u0E22\u0E2B\u0E32\u0E22\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E17\u0E35\u0E48\u0E1C\u0E34\u0E14\u0E27\u0E34\u0E18\u0E35\u0E2B\u0E23\u0E37\u0E2D\u0E2D\u0E38\u0E1A\u0E31\u0E15\u0E34\u0E40\u0E2B\u0E15\u0E38"
233
+ },
234
+ ["RETURN_POLICY" /* RETURN_POLICY */]: {
235
+ id: "bot-return-policy",
236
+ type: "BOT_TEXT" /* BOT_TEXT */,
237
+ text: "\u{1F504} \u0E19\u0E42\u0E22\u0E1A\u0E32\u0E22\u0E01\u0E32\u0E23\u0E04\u0E37\u0E19\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\n\n\u2705 \u0E04\u0E37\u0E19\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E44\u0E14\u0E49\u0E20\u0E32\u0E22\u0E43\u0E19 7 \u0E27\u0E31\u0E19\n\u2705 \u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19\u0E2A\u0E20\u0E32\u0E1E\u0E40\u0E14\u0E34\u0E21 \u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E01\u0E25\u0E48\u0E2D\u0E07\u0E41\u0E25\u0E30\u0E2D\u0E38\u0E1B\u0E01\u0E23\u0E13\u0E4C\u0E04\u0E23\u0E1A\u0E16\u0E49\u0E27\u0E19\n\u2705 \u0E44\u0E21\u0E48\u0E21\u0E35\u0E23\u0E2D\u0E22\u0E01\u0E23\u0E2D\u0E22\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\n\u2705 \u0E04\u0E37\u0E19\u0E40\u0E07\u0E34\u0E19\u0E40\u0E15\u0E47\u0E21\u0E08\u0E33\u0E19\u0E27\u0E19 (\u0E2B\u0E31\u0E01\u0E04\u0E48\u0E32\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07)\n\n\u274C \u0E44\u0E21\u0E48\u0E23\u0E31\u0E1A\u0E04\u0E37\u0E19: \u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E25\u0E14\u0E23\u0E32\u0E04\u0E32\u0E1E\u0E34\u0E40\u0E28\u0E29, \u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32 Clearance Sale\n\n\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E14\u0E33\u0E40\u0E19\u0E34\u0E19\u0E01\u0E32\u0E23\u0E04\u0E37\u0E19\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E44\u0E2B\u0E21\u0E04\u0E23\u0E31\u0E1A?"
238
+ },
239
+ ["PROMOTION_INFO" /* PROMOTION_INFO */]: {
240
+ id: "bot-promotion-info",
241
+ type: "BOT_TEXT" /* BOT_TEXT */,
242
+ text: "\u{1F389} \u0E42\u0E1B\u0E23\u0E42\u0E21\u0E0A\u0E31\u0E48\u0E19\u0E1E\u0E34\u0E40\u0E28\u0E29\u0E1B\u0E23\u0E30\u0E08\u0E33\u0E40\u0E14\u0E37\u0E2D\u0E19\n\n\u{1F525} \u0E25\u0E14\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14 30% \u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E17\u0E38\u0E01\u0E2B\u0E21\u0E27\u0E14\n\u{1F525} \u0E0B\u0E37\u0E49\u0E2D\u0E04\u0E23\u0E1A 5,000 \u0E1A\u0E32\u0E17 \u0E23\u0E31\u0E1A\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14 500 \u0E1A\u0E32\u0E17\n\u{1F525} \u0E1C\u0E48\u0E2D\u0E19 0% \u0E19\u0E32\u0E19 10 \u0E40\u0E14\u0E37\u0E2D\u0E19\n\u{1F525} \u0E02\u0E2D\u0E07\u0E41\u0E16\u0E21\u0E21\u0E39\u0E25\u0E04\u0E48\u0E32\u0E2A\u0E39\u0E07 \u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E25\u0E39\u0E01\u0E04\u0E49\u0E32\u0E43\u0E2B\u0E21\u0E48\n\n\u0E43\u0E0A\u0E49\u0E42\u0E04\u0E49\u0E14: UTECH2024 \u0E23\u0E31\u0E1A\u0E2A\u0E48\u0E27\u0E19\u0E25\u0E14\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E2D\u0E35\u0E01 5%!"
243
+ },
244
+ ["STOCK_AVAILABLE" /* STOCK_AVAILABLE */]: {
245
+ id: "bot-stock-available",
246
+ type: "BOT_TEXT" /* BOT_TEXT */,
247
+ text: "\u2705 \u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E21\u0E35\u0E43\u0E19\u0E2A\u0E15\u0E47\u0E2D\u0E01\u0E04\u0E23\u0E31\u0E1A!\n\n\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E08\u0E31\u0E14\u0E2A\u0E48\u0E07\u0E17\u0E31\u0E19\u0E17\u0E35 \u0E2B\u0E32\u0E01\u0E2A\u0E31\u0E48\u0E07\u0E0B\u0E37\u0E49\u0E2D\u0E20\u0E32\u0E22\u0E43\u0E19\u0E27\u0E31\u0E19\u0E19\u0E35\u0E49\n\u0E40\u0E2B\u0E25\u0E37\u0E2D\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32: 15 \u0E0A\u0E34\u0E49\u0E19\n\n\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E2A\u0E31\u0E48\u0E07\u0E0B\u0E37\u0E49\u0E2D\u0E40\u0E25\u0E22\u0E44\u0E2B\u0E21\u0E04\u0E23\u0E31\u0E1A?"
248
+ },
249
+ ["OUT_OF_STOCK" /* OUT_OF_STOCK */]: {
250
+ id: "bot-out-of-stock",
251
+ type: "BOT_TEXT_WITH_MENUS" /* BOT_TEXT_WITH_MENUS */,
252
+ text: "\u{1F614} \u0E02\u0E2D\u0E2D\u0E20\u0E31\u0E22\u0E04\u0E23\u0E31\u0E1A \u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E2B\u0E21\u0E14\u0E0A\u0E31\u0E48\u0E27\u0E04\u0E23\u0E32\u0E27\n\n\u0E04\u0E32\u0E14\u0E27\u0E48\u0E32\u0E08\u0E30\u0E21\u0E35\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E40\u0E02\u0E49\u0E32\u0E43\u0E2B\u0E21\u0E48\u0E20\u0E32\u0E22\u0E43\u0E19 3-5 \u0E27\u0E31\u0E19\n\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E14\u0E39\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32\u0E17\u0E32\u0E07\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2D\u0E37\u0E48\u0E19\u0E44\u0E2B\u0E21\u0E04\u0E23\u0E31\u0E1A?",
253
+ menus: defaultCategory
254
+ },
255
+ ["SPEC_INQUIRY" /* SPEC_INQUIRY */]: {
256
+ id: "bot-spec-inquiry",
257
+ type: "BOT_TEXT" /* BOT_TEXT */,
258
+ text: '\u{1F4F1} \u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E08\u0E33\u0E40\u0E1E\u0E32\u0E30\n\niPhone 16 Pro Max\n\u2022 \u0E2B\u0E19\u0E49\u0E32\u0E08\u0E2D: Super Retina XDR 6.9"\n\u2022 \u0E0A\u0E34\u0E1B\u0E1B\u0E23\u0E30\u0E21\u0E27\u0E25\u0E1C\u0E25: A18 Pro\n\u2022 \u0E01\u0E25\u0E49\u0E2D\u0E07: 48MP \u0E2B\u0E25\u0E31\u0E01 + 12MP Ultra Wide + 12MP Telephoto\n\u2022 \u0E41\u0E1A\u0E15\u0E40\u0E15\u0E2D\u0E23\u0E35\u0E48: \u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14 29 \u0E0A\u0E31\u0E48\u0E27\u0E42\u0E21\u0E07\n\u2022 \u0E2B\u0E19\u0E48\u0E27\u0E22\u0E04\u0E27\u0E32\u0E21\u0E08\u0E33: 256GB / 512GB / 1TB\n\u2022 \u0E2A\u0E35: Natural Titanium, Blue Titanium, White Titanium, Black Titanium\n\n\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21\u0E44\u0E2B\u0E21\u0E04\u0E23\u0E31\u0E1A?'
259
+ }
260
+ };
261
+ var mockMessages = [
262
+ {
263
+ id: "2",
264
+ type: "USER_TEXT" /* USER_TEXT */,
265
+ text: "\u0E2A\u0E31\u0E48\u0E07\u0E0B\u0E37\u0E49\u0E2D\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32 \u{1F6CD}\uFE0F"
266
+ },
267
+ __spreadValues({}, mockResponse["ERROR" /* ERROR */]),
268
+ {
269
+ id: "4",
270
+ type: "USER_TEXT" /* USER_TEXT */,
271
+ text: "\u0E2A\u0E31\u0E48\u0E07\u0E0B\u0E37\u0E49\u0E2D\u0E2A\u0E34\u0E19\u0E04\u0E49\u0E32 \u{1F6CD}\uFE0F"
272
+ },
273
+ __spreadValues({}, mockResponse["CATEGORY_NOTEBOOK" /* CATEGORY_NOTEBOOK */])
274
+ ];
275
+
276
+ // src/hooks/use-openchat.tsx
277
+ var import_react = require("react");
278
+ var useOpenChat = () => {
279
+ const [isOpen, setIsOpen] = (0, import_react.useState)(true);
280
+ const openChat = (0, import_react.useCallback)(() => setIsOpen(true), []);
281
+ const closeChat = (0, import_react.useCallback)(() => setIsOpen(false), []);
282
+ const toggleChat = (0, import_react.useCallback)(() => setIsOpen((prev) => !prev), []);
283
+ return {
284
+ isOpen,
285
+ openChat,
286
+ closeChat,
287
+ toggleChat
288
+ };
289
+ };
290
+
291
+ // src/contexts/chat-context.tsx
292
+ var import_react2 = require("react");
293
+ var import_jsx_runtime = require("react/jsx-runtime");
294
+ var ChatContext = (0, import_react2.createContext)(void 0);
295
+ var ChatProvider = ({ children }) => {
296
+ const [messages, setMessages] = (0, import_react2.useState)([]);
297
+ const [latestMessage, setLatestMessage] = (0, import_react2.useState)();
298
+ const chatControls = useOpenChat();
299
+ const [isLoading, setIsLoading] = (0, import_react2.useState)(false);
300
+ const addUserMessage = (0, import_react2.useCallback)((text) => {
301
+ const newMessage = {
302
+ id: Date.now().toString() + Math.random().toString(),
303
+ text,
304
+ type: "USER_TEXT" /* USER_TEXT */
305
+ };
306
+ setLatestMessage(newMessage);
307
+ setMessages((prev) => [...prev, newMessage]);
308
+ setIsLoading(true);
309
+ }, []);
310
+ const addBotMessage = (0, import_react2.useCallback)((message) => __async(null, null, function* () {
311
+ yield new Promise((resolve) => setTimeout(resolve, Math.random() * 2e3 + 1e3));
312
+ setIsLoading(false);
313
+ const newMessage = __spreadProps(__spreadValues({}, message), {
314
+ id: Date.now().toString() + Math.random().toString()
315
+ });
316
+ setMessages((prev) => [...prev, newMessage]);
317
+ }), []);
318
+ const clearMessages = (0, import_react2.useCallback)(() => setMessages([]), []);
319
+ const value = (0, import_react2.useMemo)(
320
+ () => ({
321
+ messages,
322
+ latestMessage,
323
+ isLoading,
324
+ setIsLoading,
325
+ addUserMessage,
326
+ addBotMessage,
327
+ clearMessages,
328
+ chatControls
329
+ }),
330
+ [messages, latestMessage, isLoading, chatControls, addUserMessage, addBotMessage, clearMessages]
331
+ );
332
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ChatContext.Provider, { value, children });
333
+ };
334
+ var useChatContext = () => {
335
+ const context = (0, import_react2.useContext)(ChatContext);
336
+ if (!context) {
337
+ throw new Error("useChatContext must be used within ChatProvider");
338
+ }
339
+ return context;
340
+ };
53
341
 
54
342
  // src/utils/cn.ts
55
343
  var import_clsx = require("clsx");
@@ -58,28 +346,381 @@ function cn(...args) {
58
346
  return (0, import_tailwind_merge.twMerge)((0, import_clsx.clsx)(args));
59
347
  }
60
348
 
61
- // src/components/Button.tsx
62
- var import_jsx_runtime = require("react/jsx-runtime");
63
- function Button(props) {
64
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
349
+ // src/utils/message.ts
350
+ var getMockBotMessage = (menu) => {
351
+ const newMessage = mockResponse[menu.mockResponse];
352
+ return newMessage ? newMessage : mockResponse["ERROR" /* ERROR */];
353
+ };
354
+ var getMockBotMessageByText = (text) => {
355
+ const menu = searchableMenus.find((menu2) => menu2.title.includes(text));
356
+ if (!menu) {
357
+ return mockResponse["ERROR" /* ERROR */];
358
+ }
359
+ const newMessage = mockResponse[menu.mockResponse];
360
+ return newMessage ? newMessage : mockResponse["ERROR" /* ERROR */];
361
+ };
362
+
363
+ // src/components/aizu-chat.tsx
364
+ var import_react3 = require("react");
365
+
366
+ // src/components/input-bar/index.tsx
367
+ var import_jsx_runtime2 = require("react/jsx-runtime");
368
+ var ButtonSelectImage = (_a) => {
369
+ var _b = _a, { onClick, className } = _b, props = __objRest(_b, ["onClick", "className"]);
370
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
65
371
  "button",
66
- {
372
+ __spreadProps(__spreadValues({
67
373
  type: "button",
68
- onClick: props.onClick,
374
+ onClick,
69
375
  className: cn(
70
- "p-3 border border-red-500 hover:bg-red-500",
71
- props.className
376
+ "shrink-0 w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center hover:bg-gray-200 transition-colors",
377
+ className
72
378
  ),
73
- children: props.children
379
+ "aria-label": "Upload image"
380
+ }, props), {
381
+ children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", { width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
382
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "Image Upload Icon" }),
383
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", ry: "2" }),
384
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("circle", { cx: "8.5", cy: "8.5", r: "1.5" }),
385
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("polyline", { points: "21 15 16 10 5 21" })
386
+ ] })
387
+ })
388
+ );
389
+ };
390
+ var InputText = (_a) => {
391
+ var _b = _a, { onMagicClick, placeholder, className } = _b, props = __objRest(_b, ["onMagicClick", "placeholder", "className"]);
392
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("div", { className: "flex-1 relative", children: [
393
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
394
+ "input",
395
+ __spreadValues({
396
+ type: "text",
397
+ name: "message",
398
+ placeholder,
399
+ className: cn(
400
+ "w-full px-4 py-2 pr-12 rounded-full bg-gray-100 border-none outline-none focus:ring-2 focus:ring-orange-300 text-sm",
401
+ className
402
+ ),
403
+ onKeyDown: (e) => {
404
+ var _a2;
405
+ if (e.key === "Enter" && !e.shiftKey) {
406
+ e.preventDefault();
407
+ (_a2 = e.currentTarget.form) == null ? void 0 : _a2.requestSubmit();
408
+ }
409
+ }
410
+ }, props)
411
+ ),
412
+ onMagicClick && /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
413
+ "button",
414
+ {
415
+ type: "button",
416
+ onClick: onMagicClick,
417
+ className: "absolute right-2 top-1/2 -translate-y-1/2 w-8 h-8 flex items-center justify-center hover:bg-gray-200 rounded-full transition-colors",
418
+ "aria-label": "AI assist",
419
+ children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", { width: "18", height: "18", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
420
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "Magic/AI Icon" }),
421
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("path", { d: "M12 2L15 8.5L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L9 8.5L12 2Z" })
422
+ ] })
423
+ }
424
+ )
425
+ ] });
426
+ };
427
+ var ButtonConfirm = (_a) => {
428
+ var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
429
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
430
+ "button",
431
+ __spreadProps(__spreadValues({
432
+ type: "submit",
433
+ className: cn(
434
+ "shrink-0 w-10 h-10 rounded-full bg-gray-100 flex items-center justify-center hover:bg-gray-200 transition-colors",
435
+ className
436
+ ),
437
+ "aria-label": "Send message"
438
+ }, props), {
439
+ children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("svg", { width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
440
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { children: "Send Icon" }),
441
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("line", { x1: "12", y1: "19", x2: "12", y2: "5" }),
442
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("polyline", { points: "5 12 12 5 19 12" })
443
+ ] })
444
+ })
445
+ );
446
+ };
447
+ var InputBar = (_a) => {
448
+ var _b = _a, {
449
+ onSend,
450
+ onImageClick,
451
+ onMagicClick,
452
+ placeholder = "\u0E16\u0E32\u0E21\u0E04\u0E33\u0E16\u0E32\u0E21\u0E44\u0E14\u0E49\u0E40\u0E25\u0E22...",
453
+ className
454
+ } = _b, props = __objRest(_b, [
455
+ "onSend",
456
+ "onImageClick",
457
+ "onMagicClick",
458
+ "placeholder",
459
+ "className"
460
+ ]);
461
+ const handleSubmit = (e) => {
462
+ e.preventDefault();
463
+ const formData = new FormData(e.currentTarget);
464
+ const message = formData.get("message");
465
+ if ((message == null ? void 0 : message.trim()) && onSend) {
466
+ onSend(message);
467
+ e.currentTarget.reset();
74
468
  }
469
+ };
470
+ return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("section", __spreadProps(__spreadValues({ className: cn("bg-white p-4", className) }, props), { children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("form", { onSubmit: handleSubmit, className: "flex items-center gap-3", children: [
471
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(ButtonSelectImage, { onClick: onImageClick }),
472
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(InputText, { placeholder, onMagicClick }),
473
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(ButtonConfirm, {})
474
+ ] }) }));
475
+ };
476
+ InputBar.ButtonSelectImage = ButtonSelectImage;
477
+ InputBar.InputText = InputText;
478
+ InputBar.ButtonConfirm = ButtonConfirm;
479
+
480
+ // src/components/loading.tsx
481
+ var import_jsx_runtime3 = require("react/jsx-runtime");
482
+ var Loading = ({ message }) => {
483
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("section", { className: cn("flex flex-col justify-center items-center border border-orange-400 shadow shadow-orange-400 h-10 max-w-69.5 rounded-3xl", { "h-16": !!message }), children: [
484
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "flex justify-center items-center gap-x-1 ", children: [
485
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "w-2 h-2 rounded-full bg-orange-400 animate-wiggle" }),
486
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "w-1.25 h-1.25 rounded-full bg-orange-400 animate-wiggle" }),
487
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "w-0.75 h-0.75 rounded-full bg-orange-400 animate-wiggle" })
488
+ ] }),
489
+ message && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("p", { className: "text-center text-[12px] text-gray-500 mt-1", children: message })
490
+ ] });
491
+ };
492
+
493
+ // src/components/button.tsx
494
+ var import_jsx_runtime4 = require("react/jsx-runtime");
495
+ var Button = (_a) => {
496
+ var _b = _a, { children, className, onClick, ref } = _b, props = __objRest(_b, ["children", "className", "onClick", "ref"]);
497
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
498
+ "button",
499
+ __spreadProps(__spreadValues({
500
+ ref,
501
+ type: "button",
502
+ onClick,
503
+ className: cn(
504
+ "border border-orange-300 rounded-3xl",
505
+ "px-4 py-2",
506
+ "text-orange-500 text-sm",
507
+ "cursor-pointer",
508
+ className
509
+ )
510
+ }, props), {
511
+ children
512
+ })
75
513
  );
76
- }
77
- Button.displayName = "Button";
514
+ };
515
+
516
+ // src/components/container.tsx
517
+ var import_jsx_runtime5 = require("react/jsx-runtime");
518
+ var Container = (_a) => {
519
+ var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
520
+ return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { className: cn("p-3 rounded-3xl border border-orange-300", className), children });
521
+ };
522
+
523
+ // src/components/message/index.tsx
524
+ var import_jsx_runtime6 = require("react/jsx-runtime");
525
+ var MessageBubble = ({ message, handleClick }) => {
526
+ if (message.type === "USER_TEXT" /* USER_TEXT */) {
527
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Container, { className: "ml-auto bg-orange-200 border-none text-sm", children: message.text });
528
+ }
529
+ if (message.type === "BOT_TEXT" /* BOT_TEXT */) {
530
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Container, { className: "mr-auto max-w-75.5 text-sm", children: message.text });
531
+ }
532
+ if (message.type === "BOT_TEXT_WITH_MENUS" /* BOT_TEXT_WITH_MENUS */) {
533
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(MessageWithMenus, { type: message.type, message: message.text || "", menus: message.menus || [], handleClick });
534
+ }
535
+ if (message.type === "BOT_QUICK_MENUS" /* BOT_QUICK_MENUS */) {
536
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(MessageWithMenus, { type: message.type, message: message.text || "", menus: message.menus || [], handleClick });
537
+ }
538
+ if (message.type === "BOT_ERROR_WITH_MENUS" /* BOT_ERROR_WITH_MENUS */) {
539
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(MessageWithMenus, { type: message.type, message: message.text || "", menus: message.menus || [], handleClick });
540
+ }
541
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(MenusImage, { menus: message.menus || [] });
542
+ };
543
+ var MessageWithMenus = ({ type, message, menus, className, handleClick }) => {
544
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(Container, { className: cn("mr-auto max-w-75.5 lg:max-w-80", className), children: [
545
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("p", { className: "text-sm mb-4", children: message }),
546
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("ul", { className: cn("flex flex-wrap gap-x-1 gap-y-3", { "flex-col": type === "BOT_ERROR_WITH_MENUS" /* BOT_ERROR_WITH_MENUS */ }), children: menus == null ? void 0 : menus.map((menu) => {
547
+ if (menu == null ? void 0 : menu.phoneNumber) {
548
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("li", { className: "w-full ", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
549
+ "a",
550
+ {
551
+ href: `tel:+${menu == null ? void 0 : menu.phoneNumber}`,
552
+ className: "border border-orange-300 rounded-3xl px-4 py-2 text-orange-500 text-sm text-center block",
553
+ children: menu.title
554
+ }
555
+ ) }, menu.id);
556
+ }
557
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("li", { className: "min-w-max ", children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
558
+ Button,
559
+ {
560
+ className: cn({ "w-full": type === "BOT_ERROR_WITH_MENUS" /* BOT_ERROR_WITH_MENUS */ }),
561
+ onClick: () => {
562
+ handleClick(menu);
563
+ },
564
+ children: menu.title
565
+ }
566
+ ) }, menu.id);
567
+ }) })
568
+ ] });
569
+ };
570
+ var MenusImage = ({ menus }) => {
571
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("ul", { className: "flex gap-x-2", children: menus == null ? void 0 : menus.map((menu) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("img", { src: menu == null ? void 0 : menu.imageUrl, alt: "menu-image" }) }, menu.id)) });
572
+ };
573
+
574
+ // src/components/quick-menus.tsx
575
+ var import_jsx_runtime7 = require("react/jsx-runtime");
576
+ var QuickMenus = ({ bannerSrc, message = "welcome message", menus, handleClick }) => {
577
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("section", { className: "w-75.5 bg-white shadow rounded-3xl overflow-hidden", children: [
578
+ bannerSrc ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("img", { src: bannerSrc, alt: "banner" }) : /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: "w-75.5 h-29.5 border-b border-gray-200" }),
579
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { className: "p-3 flex flex-col gap-y-3", children: [
580
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("p", { className: "text-sm", children: message }),
581
+ /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("ul", { className: "flex gap-3 flex-wrap", children: menus == null ? void 0 : menus.map((menu) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(Button, { onClick: () => {
582
+ handleClick(menu);
583
+ }, children: menu.title }) }, menu.id)) })
584
+ ] })
585
+ ] });
586
+ };
587
+
588
+ // src/components/quick-menus-chip.tsx
589
+ var import_jsx_runtime8 = require("react/jsx-runtime");
590
+ var QuickMenuChips = ({ menus, handleClick, className }) => {
591
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "relative", children: [
592
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { className: "absolute lg:hidden right-0 top-0 bottom-0 w-8 bg-linear-to-l from-white to-transparent pointer-events-none z-10" }),
593
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("ul", { className: cn("flex lg:flex-wrap gap-3 overflow-x-scroll scrollbar-hide", className), children: menus == null ? void 0 : menus.map((menu) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("li", { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
594
+ Button,
595
+ {
596
+ onClick: () => {
597
+ handleClick(menu);
598
+ },
599
+ className: "text-nowrap text-black/85 border-black/50",
600
+ children: menu.title
601
+ }
602
+ ) }, menu.id)) })
603
+ ] });
604
+ };
605
+ var quick_menus_chip_default = QuickMenuChips;
606
+
607
+ // src/components/aizu-chat.tsx
608
+ var import_jsx_runtime9 = require("react/jsx-runtime");
609
+ var AizuChat = () => {
610
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(ChatProvider, { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { children: [
611
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(FloatingButton, {}),
612
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(ChatWindow, { children: [
613
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(ChatHeader, {}),
614
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(ChatBody, {}),
615
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(ChatFooter, {})
616
+ ] })
617
+ ] }) });
618
+ };
619
+ var FloatingButton = () => {
620
+ const { chatControls } = useChatContext();
621
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
622
+ "button",
623
+ {
624
+ type: "button",
625
+ onClick: chatControls.toggleChat,
626
+ className: "rounded-full p-2 aspect-square w-10 bg-black/60 cursor-pointer fixed right-5 bottom-5",
627
+ children: "AI"
628
+ }
629
+ );
630
+ };
631
+ var ChatWindow = ({ children }) => {
632
+ const { chatControls } = useChatContext();
633
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: cn(
634
+ "w-full lg:w-107.5 h-full lg:max-h-201",
635
+ "z-9999 fixed top-0 right-0 lg:right-5 lg:bottom-20 lg:top-auto bg-[#F8F8FA]",
636
+ "lg:rounded-4xl shadow-2xl overflow-hidden",
637
+ "flex flex-col",
638
+ { "invisible": !chatControls.isOpen }
639
+ ), children });
640
+ };
641
+ var ChatHeader = () => {
642
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { className: "flex justify-between items-center bg-white py-3 px-4", children: [
643
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("button", { type: "button", children: " Back" }),
644
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("div", { className: "flex flex-col items-center", children: [
645
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { children: "Shop Logo" }),
646
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: "text-[10px]", children: "Powered by Zimpligital" })
647
+ ] }),
648
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", {})
649
+ ] });
650
+ };
651
+ var ChatBody = () => {
652
+ const { isLoading, addUserMessage, addBotMessage, messages, latestMessage } = useChatContext();
653
+ const [showWaitMessage, setShowWaitMessage] = (0, import_react3.useState)(false);
654
+ const messagesEndRef = (0, import_react3.useRef)(null);
655
+ const loadingMessage = showWaitMessage ? "Wait a minute..." : void 0;
656
+ const messagesDisplay = messages || [];
657
+ const displayWelcomeMessage = messagesDisplay.length === 0 && !isLoading;
658
+ const handleClick = (0, import_react3.useCallback)((menu) => __async(null, null, function* () {
659
+ if (menu.title.includes(tryAgain) && !!(latestMessage == null ? void 0 : latestMessage.text)) {
660
+ return addUserMessage(latestMessage == null ? void 0 : latestMessage.text);
661
+ }
662
+ addUserMessage(menu.title);
663
+ const mockResponse2 = getMockBotMessage(menu);
664
+ addBotMessage(mockResponse2);
665
+ }), [addUserMessage, addBotMessage, latestMessage]);
666
+ (0, import_react3.useEffect)(() => {
667
+ var _a;
668
+ (_a = messagesEndRef.current) == null ? void 0 : _a.scrollIntoView({ behavior: "smooth" });
669
+ }, [isLoading, messagesDisplay.length]);
670
+ (0, import_react3.useEffect)(() => {
671
+ let timer;
672
+ if (isLoading) {
673
+ timer = setTimeout(() => {
674
+ setShowWaitMessage(true);
675
+ }, 2e3);
676
+ } else {
677
+ setShowWaitMessage(false);
678
+ }
679
+ return () => {
680
+ if (timer) clearTimeout(timer);
681
+ };
682
+ }, [isLoading]);
683
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("section", { className: "flex-1 overflow-y-auto relative", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { className: " p-4 flex flex-col gap-y-3 overflow-y-auto", children: [
684
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(QuickMenus, { bannerSrc: defaultBanner, menus: defaultQuickMenus, message: defaultQuickMenuMessage, handleClick }),
685
+ messagesDisplay == null ? void 0 : messagesDisplay.map((message) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(MessageBubble, { message, handleClick }, message.id)),
686
+ isLoading && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(Loading, { message: loadingMessage }),
687
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { ref: messagesEndRef }),
688
+ displayWelcomeMessage && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("div", { className: "absolute bottom-4 left-1/2 -translate-x-1/2 text-center text-sm text-gray-500", children: "\u0E04\u0E38\u0E13\u0E01\u0E33\u0E25\u0E31\u0E07\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19\u0E2A\u0E19\u0E17\u0E19\u0E32\u0E01\u0E31\u0E1A UTECH AI" })
689
+ ] }) });
690
+ };
691
+ var ChatFooter = () => {
692
+ const { addUserMessage, addBotMessage, latestMessage } = useChatContext();
693
+ const handleClick = (0, import_react3.useCallback)((menu) => __async(null, null, function* () {
694
+ if (menu.title.includes(tryAgain) && !!(latestMessage == null ? void 0 : latestMessage.text)) {
695
+ return addUserMessage(latestMessage == null ? void 0 : latestMessage.text);
696
+ }
697
+ addUserMessage(menu.title);
698
+ const mockResponse2 = getMockBotMessage(menu);
699
+ addBotMessage(mockResponse2);
700
+ }), [addUserMessage, addBotMessage, latestMessage]);
701
+ const handleSend = (0, import_react3.useCallback)((message) => {
702
+ addUserMessage(message);
703
+ const mockResponse2 = getMockBotMessageByText(message);
704
+ addBotMessage(mockResponse2);
705
+ }, [addUserMessage, addBotMessage]);
706
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("section", { className: "bg-white h-42.5 lg:h-46", children: [
707
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(quick_menus_chip_default, { handleClick, menus: defaultQuickMenuChips, className: "pl-4 pt-4 pb-2" }),
708
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
709
+ InputBar,
710
+ {
711
+ placeholder: "\u0E16\u0E32\u0E21\u0E04\u0E33\u0E16\u0E32\u0E21\u0E44\u0E14\u0E49\u0E40\u0E25\u0E22...",
712
+ onSend: handleSend,
713
+ onImageClick: () => console.log("Image upload"),
714
+ onMagicClick: () => console.log("AI assist")
715
+ }
716
+ )
717
+ ] });
718
+ };
78
719
 
79
720
  // src/hooks/use-custom.ts
80
- var import_react = require("react");
721
+ var import_react4 = require("react");
81
722
  var useCustom = () => {
82
- const [count, setCount] = (0, import_react.useState)(0);
723
+ const [count, setCount] = (0, import_react4.useState)(0);
83
724
  const increment = () => {
84
725
  setCount(count + 1);
85
726
  };
@@ -87,6 +728,9 @@ var useCustom = () => {
87
728
  };
88
729
  // Annotate the CommonJS export names for ESM import in node:
89
730
  0 && (module.exports = {
731
+ AizuChat,
90
732
  Button,
733
+ Loading,
734
+ QuickMenus,
91
735
  useCustom
92
736
  });