@7365admin1/layer-common 1.8.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 (198) hide show
  1. package/.changeset/README.md +8 -0
  2. package/.changeset/config.json +11 -0
  3. package/.editorconfig +12 -0
  4. package/.github/workflows/main.yml +17 -0
  5. package/.github/workflows/publish.yml +39 -0
  6. package/.nuxtrc +1 -0
  7. package/.playground/app.vue +41 -0
  8. package/.playground/eslint.config.mjs +6 -0
  9. package/.playground/nuxt.config.ts +22 -0
  10. package/.playground/pages/feedback.vue +30 -0
  11. package/CHANGELOG.md +263 -0
  12. package/README.md +73 -0
  13. package/app.vue +3 -0
  14. package/components/AccessCardAddForm.vue +363 -0
  15. package/components/AccessManagement.vue +420 -0
  16. package/components/Avatar/Main.vue +68 -0
  17. package/components/BillingMain.vue +66 -0
  18. package/components/BtnUploadFile.vue +139 -0
  19. package/components/BuildingForm.vue +303 -0
  20. package/components/BuildingManagement/buildings.vue +335 -0
  21. package/components/BuildingManagement/units.vue +350 -0
  22. package/components/BuildingUnitFormAdd.vue +441 -0
  23. package/components/BuildingUnitFormEdit.vue +429 -0
  24. package/components/CameraForm.vue +264 -0
  25. package/components/CameraMain.vue +352 -0
  26. package/components/Card/DeleteConfirmation.vue +51 -0
  27. package/components/Card/MemberInfoSummary.vue +44 -0
  28. package/components/Card/Toggle.vue +25 -0
  29. package/components/Chat/Bubbles.vue +53 -0
  30. package/components/Chat/Information.vue +416 -0
  31. package/components/Chat/ListCard.vue +62 -0
  32. package/components/Chat/Message.vue +158 -0
  33. package/components/Chat/Navigation.vue +150 -0
  34. package/components/ConfirmDialog.vue +66 -0
  35. package/components/Container/Standard.vue +33 -0
  36. package/components/DashboardPlaceholder.vue +1524 -0
  37. package/components/Dialog/DeleteConfirmation.vue +51 -0
  38. package/components/Dialog/ReplaceAutofillPrompt.vue +49 -0
  39. package/components/Dialog/UpdateMoreAction.vue +103 -0
  40. package/components/DocumentForm.vue +187 -0
  41. package/components/DocumentManagement.vue +376 -0
  42. package/components/Editor.vue +95 -0
  43. package/components/EntryPassMain.vue +518 -0
  44. package/components/Feedback/Form.vue +173 -0
  45. package/components/FeedbackDetail.vue +599 -0
  46. package/components/FeedbackMain.vue +588 -0
  47. package/components/FormDialog.vue +65 -0
  48. package/components/ImageCarousel.vue +138 -0
  49. package/components/Input/Date.vue +177 -0
  50. package/components/Input/DateTimePicker.vue +131 -0
  51. package/components/Input/File.vue +236 -0
  52. package/components/Input/FileV2.vue +234 -0
  53. package/components/Input/InputPhoneNumberV2.vue +164 -0
  54. package/components/Input/ListGroupSelection.vue +96 -0
  55. package/components/Input/NRICNumber.vue +53 -0
  56. package/components/Input/NewDate.vue +123 -0
  57. package/components/Input/Number.vue +124 -0
  58. package/components/Input/Password.vue +22 -0
  59. package/components/Input/PhoneNumber.vue +188 -0
  60. package/components/Input/VehicleNumber.vue +49 -0
  61. package/components/InputLabel.vue +22 -0
  62. package/components/InvitationForm.vue +359 -0
  63. package/components/InvitationMain.vue +310 -0
  64. package/components/Layout/Header.vue +129 -0
  65. package/components/Layout/NavigationDrawer.vue +44 -0
  66. package/components/ListItem.vue +35 -0
  67. package/components/ListView.vue +87 -0
  68. package/components/LocalPagination.vue +31 -0
  69. package/components/MemberMain.vue +459 -0
  70. package/components/NFC/NFCPatrolReportMain.vue +591 -0
  71. package/components/NFC/NFCPatrolRouteForm.vue +596 -0
  72. package/components/NFC/NFCPatrolRouteMain.vue +539 -0
  73. package/components/NFC/NFCTagForm.vue +236 -0
  74. package/components/NFC/NFCTagMain.vue +337 -0
  75. package/components/NFC/PatrolSettings.vue +130 -0
  76. package/components/NavigationItem.vue +83 -0
  77. package/components/NumberSettingField.vue +107 -0
  78. package/components/OnlineFormConfigurationForm.vue +290 -0
  79. package/components/OnlineFormsConfiguration.vue +429 -0
  80. package/components/PeopleForm.vue +452 -0
  81. package/components/PlaceholderComponent.vue +34 -0
  82. package/components/RolePermissionFormCreate.vue +161 -0
  83. package/components/RolePermissionFormPreviewUpdate.vue +183 -0
  84. package/components/RolePermissionMain.vue +361 -0
  85. package/components/SearchVehicleNumberUser.vue +91 -0
  86. package/components/ServiceProviderFormCreate.vue +154 -0
  87. package/components/ServiceProviderMain.vue +547 -0
  88. package/components/SignaturePad.vue +73 -0
  89. package/components/Snackbar.vue +23 -0
  90. package/components/SpecificAttr.vue +53 -0
  91. package/components/SupplyManagement.vue +292 -0
  92. package/components/SwitchContext.vue +108 -0
  93. package/components/TableList.vue +150 -0
  94. package/components/TableListSecondary.vue +164 -0
  95. package/components/TableMain.vue +142 -0
  96. package/components/TableWithButton.vue +94 -0
  97. package/components/VehicleUpdateMoreAction.vue +84 -0
  98. package/components/VideoPlayer.vue +125 -0
  99. package/components/VisitorForm.vue +659 -0
  100. package/components/VisitorFormSelection.vue +53 -0
  101. package/components/VisitorManagement.vue +490 -0
  102. package/components/WorkOrder/Create.vue +284 -0
  103. package/components/WorkOrder/Detail.vue +71 -0
  104. package/components/WorkOrder/ListView.vue +96 -0
  105. package/components/WorkOrder/Main.vue +489 -0
  106. package/components/Workorder.vue +1 -0
  107. package/composables/useAddress.ts +107 -0
  108. package/composables/useBuilding.ts +250 -0
  109. package/composables/useBuildingUnit.ts +116 -0
  110. package/composables/useCard.ts +46 -0
  111. package/composables/useCommonPermission.ts +207 -0
  112. package/composables/useCustomer.ts +113 -0
  113. package/composables/useCustomerSite.ts +56 -0
  114. package/composables/useDashboard.ts +31 -0
  115. package/composables/useDashboardData.ts +425 -0
  116. package/composables/useDocument.ts +57 -0
  117. package/composables/useFacility.ts +246 -0
  118. package/composables/useFeedback.ts +119 -0
  119. package/composables/useFile.ts +55 -0
  120. package/composables/useInvoice.ts +18 -0
  121. package/composables/useLocal.ts +131 -0
  122. package/composables/useLocalAuth.ts +137 -0
  123. package/composables/useLocalSetup.ts +13 -0
  124. package/composables/useMember.ts +111 -0
  125. package/composables/useNFCPatrolRoute.ts +77 -0
  126. package/composables/useNFCPatrolSettings.ts +19 -0
  127. package/composables/useNFCPatrolTag.ts +53 -0
  128. package/composables/useOnlineForm.ts +67 -0
  129. package/composables/useOrg.ts +129 -0
  130. package/composables/usePDFDownload.ts +25 -0
  131. package/composables/usePaymentMethod.ts +101 -0
  132. package/composables/usePeople.ts +81 -0
  133. package/composables/usePermission.ts +54 -0
  134. package/composables/usePhoneCountries.ts +561 -0
  135. package/composables/usePrice.ts +15 -0
  136. package/composables/usePromoCode.ts +36 -0
  137. package/composables/useRecapPermission.ts +26 -0
  138. package/composables/useRole.ts +104 -0
  139. package/composables/useSecurityUtils.ts +18 -0
  140. package/composables/useServiceProvider.ts +224 -0
  141. package/composables/useSite.ts +109 -0
  142. package/composables/useSiteEntryPassSettings.ts +46 -0
  143. package/composables/useSiteSettings.ts +123 -0
  144. package/composables/useSubscription.ts +150 -0
  145. package/composables/useUser.ts +132 -0
  146. package/composables/useUtils.ts +445 -0
  147. package/composables/useVerification.ts +34 -0
  148. package/composables/useVisitor.ts +120 -0
  149. package/composables/useWorkOrder.ts +85 -0
  150. package/error.vue +41 -0
  151. package/layouts/plain.vue +7 -0
  152. package/middleware/01.auth.ts +20 -0
  153. package/middleware/02.org.ts +21 -0
  154. package/middleware/03.customer.ts +13 -0
  155. package/middleware/member.ts +4 -0
  156. package/nuxt.config.ts +54 -0
  157. package/package.json +39 -0
  158. package/pages/index.vue +3 -0
  159. package/pages/payment-method-linked.vue +31 -0
  160. package/pages/require-customer.vue +56 -0
  161. package/pages/require-organization-membership.vue +47 -0
  162. package/pages/unauthorized.vue +29 -0
  163. package/plugins/API.ts +21 -0
  164. package/plugins/iconify.client.ts +5 -0
  165. package/plugins/secure-member.client.ts +86 -0
  166. package/plugins/vuetify.ts +62 -0
  167. package/public/bg-camera.jpg +0 -0
  168. package/public/bg-city.jpg +0 -0
  169. package/public/bg-condo.jpg +0 -0
  170. package/public/images/icons/delete-icon.png +0 -0
  171. package/public/sprite.svg +1 -0
  172. package/tsconfig.json +3 -0
  173. package/types/address.d.ts +13 -0
  174. package/types/building.d.ts +27 -0
  175. package/types/camera.d.ts +31 -0
  176. package/types/card.d.ts +22 -0
  177. package/types/customer.d.ts +27 -0
  178. package/types/document.d.ts +6 -0
  179. package/types/feedback.d.ts +68 -0
  180. package/types/local.d.ts +74 -0
  181. package/types/member.d.ts +21 -0
  182. package/types/online-form.d.ts +15 -0
  183. package/types/org.d.ts +13 -0
  184. package/types/people.d.ts +24 -0
  185. package/types/permission.d.ts +25 -0
  186. package/types/phone-number.d.ts +10 -0
  187. package/types/price.d.ts +17 -0
  188. package/types/promo-code.d.ts +19 -0
  189. package/types/role.d.ts +11 -0
  190. package/types/select.d.ts +4 -0
  191. package/types/service-provider.d.ts +15 -0
  192. package/types/site.d.ts +20 -0
  193. package/types/subscription.d.ts +23 -0
  194. package/types/user.d.ts +19 -0
  195. package/types/verification.d.ts +20 -0
  196. package/types/visitor.d.ts +42 -0
  197. package/types/work-order.d.ts +42 -0
  198. package/utils/phoneMasks.ts +1703 -0
@@ -0,0 +1,441 @@
1
+ <template>
2
+ <v-card width="100%">
3
+ <v-toolbar>
4
+ <v-row no-gutters class="fill-height px-6" align="center">
5
+ <span class="font-weight-bold text-h5"> Add Unit </span>
6
+ </v-row>
7
+ </v-toolbar>
8
+ <v-card-text style="max-height: 100vh; overflow-y: auto">
9
+ <v-form v-model="validForm" :disabled="disable">
10
+ <v-row no-gutters>
11
+ <v-col cols="12" class="mt-2">
12
+ <v-row no-gutters>
13
+ <InputLabel class="text-capitalize" title="Name" required />
14
+ <v-col cols="12">
15
+ <v-text-field
16
+ v-model="buildingUnit.name"
17
+ density="comfortable"
18
+ :rules="[requiredRule]"
19
+ ></v-text-field>
20
+ </v-col>
21
+ </v-row>
22
+ </v-col>
23
+
24
+ <v-col cols="12">
25
+ <v-row>
26
+ <v-col cols="12" class="mt-2">
27
+ <v-row no-gutters>
28
+ <InputLabel
29
+ class="text-capitalize"
30
+ title="Building"
31
+ required
32
+ />
33
+ <v-col cols="12">
34
+ <v-autocomplete
35
+ v-model="buildingUnit.building"
36
+ :items="buildings"
37
+ item-title="name"
38
+ item-value="_id"
39
+ v-model:search="searchBuilding"
40
+ :hide-no-data="false"
41
+ density="comfortable"
42
+ :rules="[requiredRule]"
43
+ variant="outlined"
44
+ ></v-autocomplete>
45
+ </v-col>
46
+ </v-row>
47
+ </v-col>
48
+ </v-row>
49
+ </v-col>
50
+
51
+ <v-col cols="12">
52
+ <v-row>
53
+ <v-col cols="12" class="mt-2">
54
+ <v-row no-gutters>
55
+ <InputLabel
56
+ class="text-capitalize"
57
+ title="Company Name"
58
+ required
59
+ />
60
+ <v-col cols="12">
61
+ <v-text-field
62
+ v-model="buildingUnit.companyName"
63
+ density="comfortable"
64
+ :rules="[requiredRule]"
65
+ ></v-text-field>
66
+ </v-col>
67
+ </v-row>
68
+ </v-col>
69
+ </v-row>
70
+ </v-col>
71
+
72
+ <v-col cols="12">
73
+ <v-row>
74
+ <v-col cols="12" class="mt-2">
75
+ <v-row no-gutters>
76
+ <InputLabel
77
+ class="text-capitalize"
78
+ title="Company Registration Number"
79
+ />
80
+ <v-col cols="12">
81
+ <v-text-field
82
+ v-model="buildingUnit.companyRegistrationNumber"
83
+ density="comfortable"
84
+ :rules="[]"
85
+ ></v-text-field>
86
+ </v-col>
87
+ </v-row>
88
+ </v-col>
89
+ </v-row>
90
+ </v-col>
91
+
92
+ <v-col cols="12">
93
+ <v-row>
94
+ <v-col cols="12" class="mt-2">
95
+ <v-row no-gutters>
96
+ <InputLabel
97
+ class="text-capitalize"
98
+ title="Lease Start"
99
+ required
100
+ />
101
+ <v-col cols="12">
102
+ <InputDateTimePicker
103
+ ref="startDateRef"
104
+ v-model="buildingUnit.leaseStart"
105
+ :rules="[requiredRule]"
106
+ />
107
+ </v-col>
108
+ </v-row>
109
+ </v-col>
110
+ </v-row>
111
+ </v-col>
112
+
113
+ <v-col cols="12">
114
+ <v-row>
115
+ <v-col cols="12" class="mt-2">
116
+ <v-row no-gutters>
117
+ <InputLabel
118
+ class="text-capitalize"
119
+ title="Lease End"
120
+ required
121
+ />
122
+ <v-col cols="12">
123
+ <InputDateTimePicker
124
+ ref="endDateRef"
125
+ v-model="buildingUnit.leaseEnd"
126
+ :rules="[requiredRule]"
127
+ />
128
+ </v-col>
129
+ </v-row>
130
+ </v-col>
131
+ </v-row>
132
+ </v-col>
133
+
134
+ <v-col cols="12" class="mt-2">
135
+ <v-row no-gutters>
136
+ <InputLabel class="text-capitalize" title="Category" required />
137
+ <v-col cols="12">
138
+ <v-autocomplete
139
+ v-model="buildingUnit.category"
140
+ :items="unitCategories"
141
+ density="comfortable"
142
+ :rules="[requiredRule]"
143
+ ></v-autocomplete>
144
+ </v-col>
145
+ </v-row>
146
+ </v-col>
147
+
148
+ <v-col cols="12">
149
+ <v-row>
150
+ <v-col cols="6" class="mt-2">
151
+ <v-row no-gutters>
152
+ <InputLabel class="text-capitalize" title="Level" required />
153
+ <v-col cols="12">
154
+ <v-select
155
+ v-model="buildingUnit.level"
156
+ :items="buildingLevels"
157
+ density="comfortable"
158
+ :rules="[requiredRule]"
159
+ ></v-select>
160
+ </v-col>
161
+ </v-row>
162
+ </v-col>
163
+
164
+ <v-col cols="6" class="mt-2">
165
+ <v-row no-gutters>
166
+ <InputLabel
167
+ class="text-capitalize"
168
+ title="No. of Units"
169
+ required
170
+ />
171
+ <v-col cols="12">
172
+ <v-text-field
173
+ v-model.number="buildingUnitQty"
174
+ density="comfortable"
175
+ :rules="[requiredRule]"
176
+ type="number"
177
+ @update:model-value="setBuildingLevels()"
178
+ ></v-text-field>
179
+ </v-col>
180
+ </v-row>
181
+ </v-col>
182
+ </v-row>
183
+ </v-col>
184
+
185
+ <v-col v-if="buildingLevels" cols="12">
186
+ <v-row justify="center">
187
+ <v-col cols="6">
188
+ <v-btn
189
+ block
190
+ color="primary"
191
+ variant="text"
192
+ class="text-none font-weight-bold"
193
+ text="Set unit labels"
194
+ @click="show = !show"
195
+ ></v-btn>
196
+ </v-col>
197
+ </v-row>
198
+ </v-col>
199
+
200
+ <v-expand-transition>
201
+ <v-row v-show="show" no-gutters>
202
+ <template
203
+ v-for="(unitLabel, unitLabelIndex) in unitLabels"
204
+ :key="levelIndex"
205
+ >
206
+ <v-col cols="12">
207
+ <v-row no-gutters>
208
+ <InputLabel
209
+ class="text-capitalize font-weight-bold"
210
+ :title="`Unit ${unitLabelIndex + 1}`"
211
+ />
212
+ <v-col cols="12">
213
+ <v-text-field
214
+ v-model.trim="unitLabels[unitLabelIndex]"
215
+ density="comfortable"
216
+ ></v-text-field>
217
+ </v-col>
218
+ </v-row>
219
+ </v-col>
220
+ </template>
221
+ </v-row>
222
+ </v-expand-transition>
223
+
224
+ <v-col cols="12" class="mt-5">
225
+ <InputLabel
226
+ class="text-capitalize"
227
+ title="Upload Files (Lease of Contract, Cert. of Occupancy)"
228
+ />
229
+ <InputFileV2
230
+ v-model="buildingUnit.buildingUnitFiles"
231
+ :multiple="false"
232
+ :max-length="10"
233
+ title="Upload PDF Files"
234
+ accept="application/pdf"
235
+ />
236
+ </v-col>
237
+
238
+ <v-col cols="12" class="mt-2">
239
+ <v-checkbox v-model="createMore" density="comfortable" hide-details>
240
+ <template #label>
241
+ <span class="text-subtitle-2 font-weight-bold">
242
+ Create more
243
+ </span>
244
+ </template>
245
+ </v-checkbox>
246
+ </v-col>
247
+
248
+ <v-col cols="12" class="my-2">
249
+ <v-row no-gutters>
250
+ <v-col cols="12" class="text-center">
251
+ <span
252
+ class="text-none text-subtitle-2 font-weight-medium text-error"
253
+ >
254
+ {{ message }}
255
+ </span>
256
+ </v-col>
257
+ </v-row>
258
+ </v-col>
259
+ </v-row>
260
+ </v-form>
261
+ </v-card-text>
262
+
263
+ <v-toolbar density="compact">
264
+ <v-row no-gutters>
265
+ <v-col cols="6">
266
+ <v-btn
267
+ tile
268
+ block
269
+ variant="text"
270
+ class="text-none"
271
+ size="48"
272
+ @click="cancel"
273
+ :disabled="disable"
274
+ >
275
+ Cancel
276
+ </v-btn>
277
+ </v-col>
278
+
279
+ <v-col cols="6">
280
+ <v-btn
281
+ tile
282
+ block
283
+ variant="flat"
284
+ color="black"
285
+ class="text-none"
286
+ size="48"
287
+ :disabled="!validForm || disable"
288
+ @click="submit"
289
+ :loading="disable"
290
+ >
291
+ Submit
292
+ </v-btn>
293
+ </v-col>
294
+ </v-row>
295
+ </v-toolbar>
296
+ </v-card>
297
+ </template>
298
+
299
+ <script setup lang="ts">
300
+ const prop = defineProps({
301
+ site: {
302
+ type: String,
303
+ default: "",
304
+ },
305
+ });
306
+
307
+ const searchBuilding = ref("");
308
+
309
+ const emit = defineEmits(["cancel", "success", "success:create-more"]);
310
+
311
+ const validForm = ref(false);
312
+
313
+ const { getAll } = useBuilding();
314
+
315
+ const buildings = ref<TBuilding[]>([]);
316
+
317
+ const { data: getBuildingReq } = useLazyAsyncData(
318
+ "get-all-buildings",
319
+ async () => getAll({ site: prop.site, status: "active" })
320
+ );
321
+
322
+ watchEffect(() => {
323
+ if (getBuildingReq.value) {
324
+ buildings.value = getBuildingReq.value.items;
325
+ }
326
+ });
327
+
328
+ const buildingUnitQty = ref(1);
329
+
330
+ const buildingUnit = ref<TBuildingUnit>({
331
+ site: "",
332
+ name: "Unit",
333
+ building: "",
334
+ buildingName: "",
335
+ block: 0,
336
+ level: "",
337
+ category: "",
338
+ status: "active",
339
+ buildingUnitFiles: [],
340
+ companyName: "",
341
+ companyRegistrationNumber: "",
342
+ leaseStart: "",
343
+ leaseEnd: "",
344
+ });
345
+
346
+ const startDateRef = ref<HTMLInputElement | null>(null);
347
+ const expiryDateRef = ref<HTMLInputElement | null>(null);
348
+
349
+ buildingUnit.value.site = prop.site;
350
+
351
+ const selectedBuilding = computed(() => {
352
+ return buildings.value.find((b) => b._id === buildingUnit.value.building);
353
+ });
354
+
355
+ watchEffect(() => {
356
+ if (buildingUnit.value.building) {
357
+ buildingUnit.value.buildingName = selectedBuilding.value?.name;
358
+ buildingUnit.value.block = selectedBuilding.value?.block || 0;
359
+ } else {
360
+ buildingUnit.value.buildingName = "";
361
+ buildingUnit.value.block = 0;
362
+ }
363
+ });
364
+
365
+ const buildingLevels = computed(() => {
366
+ return selectedBuilding.value?.levels || [];
367
+ });
368
+
369
+ const unitLabels = ref<string[]>([]);
370
+ unitLabels.value.push("Unit 1");
371
+
372
+ const show = ref(false);
373
+
374
+ function setBuildingLevels() {
375
+ unitLabels.value.length = 0;
376
+ for (let index = 0; index < buildingUnitQty.value; index++) {
377
+ unitLabels.value.push(`Unit ${index + 1}`);
378
+ }
379
+ }
380
+
381
+ const name = ref("");
382
+ const directorName = ref("");
383
+ const createMore = ref(false);
384
+ const disable = ref(false);
385
+
386
+ const { requiredRule, validateDate } = useUtils();
387
+
388
+ const message = ref("");
389
+
390
+ const { add, categories: unitCategories } = useBuildingUnit();
391
+
392
+ function setBuildingUnit() {
393
+ buildingUnit.value.site = prop.site ?? "";
394
+ buildingUnit.value.name = "Unit";
395
+ buildingUnit.value.building = "";
396
+ buildingUnit.value.buildingName = "";
397
+ buildingUnit.value.level = "";
398
+ buildingUnit.value.category = "";
399
+ buildingUnit.value.status = "active";
400
+ buildingUnit.value.buildingUnitFiles = [];
401
+ buildingUnitQty.value = 1;
402
+ message.value = "";
403
+ buildingUnit.value.companyName = "";
404
+ buildingUnit.value.companyRegistrationNumber = "";
405
+ buildingUnit.value.leaseStart = "";
406
+ buildingUnit.value.leaseEnd = "";
407
+ }
408
+
409
+ async function submit() {
410
+ disable.value = true;
411
+ try {
412
+ await add({
413
+ labels: unitLabels.value,
414
+ unit: buildingUnit.value,
415
+ qty: buildingUnitQty.value,
416
+ });
417
+
418
+ if (createMore.value) {
419
+ setBuildingUnit();
420
+ message.value = "";
421
+ emit("success:create-more");
422
+ return;
423
+ }
424
+
425
+ emit("success");
426
+ } catch (error: any) {
427
+ message.value =
428
+ error.response?._data?.message || "Failed to create building";
429
+ } finally {
430
+ disable.value = false;
431
+ }
432
+ }
433
+
434
+ function cancel() {
435
+ name.value = "";
436
+ directorName.value = "";
437
+ createMore.value = false;
438
+ message.value = "";
439
+ emit("cancel");
440
+ }
441
+ </script>