adminforth 2.22.0-next.14 → 2.22.0-next.15

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.
@@ -14,7 +14,7 @@
14
14
  <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 11V6m0 8h.01M19 10a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/>
15
15
  </svg>
16
16
  <h3 class="afcl-confirmation-title mb-5 text-lg font-normal text-lightAcceptModalText dark:text-darkAcceptModalText">{{ modalStore?.modalContent?.content }}</h3>
17
- <h3 class="prose afcl-confirmation-title mb-5 text-lg font-normal text-lightAcceptModalText dark:text-darkAcceptModalText" v-html="modalStore?.modalContent?.contentHTML"></h3>
17
+ <h3 class=" afcl-confirmation-title mb-5 text-lg font-normal text-lightAcceptModalText dark:text-darkAcceptModalText" v-html="modalStore?.modalContent?.contentHTML"></h3>
18
18
 
19
19
  <button @click="()=>{ modalStore.onAcceptFunction(true);modalStore.togleModal()}" type="button" class="afcl-confirmation-accept-button text-lightAcceptModalConfirmButtonText bg-lightAcceptModalConfirmButtonBackground hover:bg-lightAcceptModalConfirmButtonBackgroundHover focus:ring-4 focus:outline-none focus:ring-lightAcceptModalConfirmButtonFocus font-medium rounded-lg text-sm inline-flex items-center px-5 py-2.5 text-center dark:text-darkAcceptModalConfirmButtonText dark:bg-darkAcceptModalConfirmButtonBackground dark:hover:bg-darkAcceptModalConfirmButtonBackgroundHover dark:focus:ring-darkAcceptModalConfirmButtonFocus">
20
20
  {{ modalStore?.modalContent?.acceptText }}
@@ -10,6 +10,7 @@ import sanitizeHtml from 'sanitize-html'
10
10
  import debounce from 'debounce';
11
11
  import type { AdminForthResourceColumnInputCommon, Predicate } from '@/types/Common';
12
12
  import { i18nInstance } from '../i18n'
13
+ import { useI18n } from 'vue-i18n';
13
14
 
14
15
 
15
16
 
@@ -524,9 +525,10 @@ export function atob_function(source: string): string {
524
525
  return atob(source);
525
526
  }
526
527
 
527
- export function compareOldAndNewRecord(oldRecord: Record<string, any>, newRecord: Record<string, any>): boolean {
528
+ export function compareOldAndNewRecord(oldRecord: Record<string, any>, newRecord: Record<string, any>): {ok: boolean, changedFields: Record<string, {oldValue: any, newValue: any}>} {
528
529
  const newKeys = Object.keys(newRecord);
529
530
  const coreStore = useCoreStore();
531
+ const changedColumns: Record<string, { oldValue: any, newValue: any }> = {};
530
532
 
531
533
  for (const key of newKeys) {
532
534
  const oldValue = typeof oldRecord[key] === 'object' && oldRecord[key] !== null ? JSON.stringify(oldRecord[key]) : oldRecord[key];
@@ -537,21 +539,23 @@ export function compareOldAndNewRecord(oldRecord: Record<string, any>, newRecord
537
539
  oldValue === undefined ||
538
540
  oldValue === null ||
539
541
  oldValue === '' ||
540
- (Array.isArray(oldValue) && oldValue.length === 0)
542
+ (Array.isArray(oldValue) && oldValue.length === 0) ||
543
+ oldValue === '[]'
541
544
  )
542
545
  &&
543
546
  (
544
547
  newValue === undefined ||
545
548
  newValue === null ||
546
549
  newValue === '' ||
547
- (Array.isArray(newValue) && newValue.length === 0)
550
+ (Array.isArray(newValue) && newValue.length === 0) ||
551
+ newValue === '[]'
548
552
  )
549
553
  ) {
550
554
  // console.log(`Value for key ${key} is considered equal (empty)`)
551
555
  continue;
552
556
  }
553
557
 
554
- const column = coreStore.resource.columns.find((c) => c.name === key);
558
+ const column = coreStore.resource?.columns.find((c) => c.name === key);
555
559
  if (column?.foreignResource) {
556
560
  if (newRecord[key] === oldRecord[key]?.pk) {
557
561
  // console.log(`Value for key ${key} is considered equal (foreign key)`)
@@ -559,8 +563,39 @@ export function compareOldAndNewRecord(oldRecord: Record<string, any>, newRecord
559
563
  }
560
564
  }
561
565
  // console.log(`Value for key ${key} is different`, { oldValue: oldValue, newValue: newValue });
562
- return false;
566
+ changedColumns[key] = { oldValue, newValue };
563
567
  }
564
568
  }
565
- return true;
569
+ return { ok: Object.keys(changedColumns).length !== 0, changedFields: changedColumns };
570
+ }
571
+
572
+ export function generateMessageHtmlForRecordChange(changedFields: Record<string, { oldValue: any, newValue: any }>, t: ReturnType<typeof useI18n>['t']): string {
573
+ const coreStore = useCoreStore();
574
+
575
+ const escapeHtml = (value: any) => {
576
+ if (value === null || value === undefined || value === '') return `<em>${t('empty')}</em>`;
577
+ let s: string;
578
+ if (typeof value === 'object') {
579
+ try {
580
+ s = JSON.stringify(value);
581
+ } catch (e) {
582
+ s = String(value);
583
+ }
584
+ } else {
585
+ s = String(value);
586
+ }
587
+ return s.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;').replace(/'/g, '&#039;');
588
+ };
589
+
590
+ const items = Object.keys(changedFields || {}).map(key => {
591
+ const column = coreStore.resource?.columns?.find((c: any) => c.name === key);
592
+ const label = column?.label || key;
593
+ const oldV = escapeHtml(changedFields[key].oldValue);
594
+ const newV = escapeHtml(changedFields[key].newValue);
595
+ return `<li class="truncate"><strong>${escapeHtml(label)}</strong>: <span class="af-old-value text-muted">${oldV}</span> &#8594; <span class="af-new-value">${newV}</span></li>`;
596
+ }).join('');
597
+
598
+ const listHtml = items ? `<ul class="mt-2 list-disc list-inside">${items}</ul>` : '';
599
+ const messageHtml = `<div>${escapeHtml(t('There are unsaved changes. Are you sure you want to leave this page?'))}${listHtml}</div>`;
600
+ return messageHtml;
566
601
  }
@@ -79,7 +79,7 @@ import BreadcrumbsWithButtons from '@/components/BreadcrumbsWithButtons.vue';
79
79
  import ResourceForm from '@/components/ResourceForm.vue';
80
80
  import SingleSkeletLoader from '@/components/SingleSkeletLoader.vue';
81
81
  import { useCoreStore } from '@/stores/core';
82
- import { callAdminForthApi, getCustomComponent,checkAcessByAllowedActions, initThreeDotsDropdown, checkShowIf, compareOldAndNewRecord } from '@/utils';
82
+ import { callAdminForthApi, getCustomComponent,checkAcessByAllowedActions, initThreeDotsDropdown, checkShowIf, compareOldAndNewRecord, generateMessageHtmlForRecordChange } from '@/utils';
83
83
  import { IconFloppyDiskSolid } from '@iconify-prerendered/vue-flowbite';
84
84
  import { onMounted, onBeforeMount, onBeforeUnmount, ref, watch, nextTick } from 'vue';
85
85
  import { useRoute, useRouter, onBeforeRouteLeave } from 'vue-router';
@@ -121,7 +121,7 @@ async function onUpdateRecord(newRecord: any) {
121
121
  }
122
122
 
123
123
  function checkIfWeCanLeavePage() {
124
- return wasSaveSuccessful.value || cancelButtonClicked.value || compareOldAndNewRecord(initialValues.value, record.value);
124
+ return wasSaveSuccessful.value || cancelButtonClicked.value || compareOldAndNewRecord(initialValues.value, record.value).ok === false;
125
125
  }
126
126
 
127
127
  function onBeforeUnload(event: BeforeUnloadEvent) {
@@ -139,8 +139,12 @@ onBeforeUnmount(() => {
139
139
 
140
140
  onBeforeRouteLeave(async (to, from, next) => {
141
141
  if (!checkIfWeCanLeavePage()) {
142
- const answer = await confirm({message: t('There are unsaved changes. Are you sure you want to leave this page?'), yes: 'Yes', no: 'No'});
143
- if (!answer) return next(false);
142
+ const { changedFields } = compareOldAndNewRecord(initialValues.value, record.value);
143
+
144
+ const messageHtml = generateMessageHtmlForRecordChange(changedFields, t);
145
+
146
+ const answer = await confirm({ messageHtml: messageHtml, yes: t('Yes'), no: t('No') });
147
+ if (!answer) return next(false);
144
148
  }
145
149
  next();
146
150
  });
@@ -74,7 +74,7 @@ import BreadcrumbsWithButtons from '@/components/BreadcrumbsWithButtons.vue';
74
74
  import ResourceForm from '@/components/ResourceForm.vue';
75
75
  import SingleSkeletLoader from '@/components/SingleSkeletLoader.vue';
76
76
  import { useCoreStore } from '@/stores/core';
77
- import { callAdminForthApi, getCustomComponent,checkAcessByAllowedActions, initThreeDotsDropdown, compareOldAndNewRecord } from '@/utils';
77
+ import { callAdminForthApi, getCustomComponent,checkAcessByAllowedActions, initThreeDotsDropdown, compareOldAndNewRecord, generateMessageHtmlForRecordChange } from '@/utils';
78
78
  import { IconFloppyDiskSolid } from '@iconify-prerendered/vue-flowbite';
79
79
  import { computed, onMounted, onBeforeMount, ref, type Ref, nextTick, watch, onBeforeUnmount } from 'vue';
80
80
  import { useRoute, useRouter, onBeforeRouteLeave } from 'vue-router';
@@ -113,7 +113,7 @@ function onBeforeUnload(event: BeforeUnloadEvent) {
113
113
  }
114
114
 
115
115
  function checkIfWeCanLeavePage() {
116
- return wasSaveSuccessful.value || cancelButtonClicked.value || compareOldAndNewRecord(initialRecord.value, record.value);
116
+ return wasSaveSuccessful.value || cancelButtonClicked.value || compareOldAndNewRecord(initialRecord.value, record.value).ok === false;
117
117
  }
118
118
 
119
119
  window.addEventListener('beforeunload', onBeforeUnload);
@@ -124,8 +124,12 @@ onBeforeUnmount(() => {
124
124
 
125
125
  onBeforeRouteLeave(async (to, from, next) => {
126
126
  if (!checkIfWeCanLeavePage()) {
127
- const answer = await confirm({message: t('There are unsaved changes. Are you sure you want to leave this page?'), yes: 'Yes', no: 'No'});
128
- if (!answer) return next(false);
127
+ const { changedFields } = compareOldAndNewRecord(initialRecord.value, record.value);
128
+
129
+ const messageHtml = generateMessageHtmlForRecordChange(changedFields, t);
130
+
131
+ const answer = await confirm({ messageHtml: messageHtml, yes: t('Yes'), no: t('No') });
132
+ if (!answer) return next(false);
129
133
  }
130
134
  next();
131
135
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.22.0-next.14",
3
+ "version": "2.22.0-next.15",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",