adminforth 1.3.56-next.8 → 1.3.56
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/auth.d.ts.map +1 -1
- package/dist/auth.js +8 -4
- package/dist/auth.js.map +1 -1
- package/dist/basePlugin.d.ts +4 -0
- package/dist/basePlugin.d.ts.map +1 -1
- package/dist/basePlugin.js +4 -0
- package/dist/basePlugin.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/modules/codeInjector.d.ts.map +1 -1
- package/dist/modules/codeInjector.js +3 -1
- package/dist/modules/codeInjector.js.map +1 -1
- package/dist/modules/configValidator.d.ts.map +1 -1
- package/dist/modules/configValidator.js +15 -2
- package/dist/modules/configValidator.js.map +1 -1
- package/dist/modules/restApi.d.ts.map +1 -1
- package/dist/modules/restApi.js +15 -3
- package/dist/modules/restApi.js.map +1 -1
- package/dist/modules/styles.js +2 -2
- package/dist/modules/styles.js.map +1 -1
- package/dist/servers/express.js +2 -1
- package/dist/servers/express.js.map +1 -1
- package/dist/spa/index.html +2 -2
- package/dist/spa/package-lock.json +16 -0
- package/dist/spa/package.json +1 -0
- package/dist/spa/src/App.vue +13 -31
- package/dist/spa/src/components/AfTooltip.vue +43 -0
- package/dist/spa/src/components/BreadcrumbsWithButtons.vue +3 -4
- package/dist/spa/src/components/CustomDatePicker.vue +2 -2
- package/dist/spa/src/components/Dropdown.vue +2 -2
- package/dist/spa/src/components/GroupsTable.vue +170 -0
- package/dist/spa/src/components/ResourceForm.vue +70 -156
- package/dist/spa/src/components/ResourceListTable.vue +121 -124
- package/dist/spa/src/renderers/CompactField.vue +45 -0
- package/dist/spa/src/renderers/CompactUUID.vue +12 -15
- package/dist/spa/src/renderers/CountryFlag.vue +16 -21
- package/dist/spa/src/renderers/HumanNumber.vue +11 -16
- package/dist/spa/src/renderers/RelativeTime.vue +41 -0
- package/dist/spa/src/renderers/URL.vue +18 -0
- package/dist/spa/src/stores/user.ts +0 -5
- package/dist/spa/src/types/AdminForthConfig.ts +26 -12
- package/dist/spa/src/views/CreateView.vue +1 -1
- package/dist/spa/src/views/EditView.vue +1 -1
- package/dist/spa/src/views/ListView.vue +3 -8
- package/dist/spa/src/views/ResourceParent.vue +36 -2
- package/dist/spa/src/views/ShowView.vue +16 -15
- package/dist/types/AdminForthConfig.d.ts +28 -12
- package/dist/types/AdminForthConfig.d.ts.map +1 -1
- package/dist/types/AdminForthConfig.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<!-- table -->
|
|
3
|
-
<div class="relative
|
|
3
|
+
<div class="relative shadow-listTableShadow dark:shadow-darkListTableShadow overflow-auto "
|
|
4
4
|
:class="{'rounded-default': !noRoundings}"
|
|
5
5
|
>
|
|
6
6
|
<!-- skelet loader -->
|
|
@@ -11,53 +11,55 @@
|
|
|
11
11
|
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 max-w-[360px]"></div>
|
|
12
12
|
</div>
|
|
13
13
|
</div>
|
|
14
|
+
<table v-else class=" w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 rounded-default">
|
|
14
15
|
|
|
15
|
-
<table v-else class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 rounded-default">
|
|
16
|
-
<thead class="text-xs text-view-table-heading-text bg-lightListTableHeading dark:bg-darkListTableHeading dark:text-gray-400">
|
|
17
|
-
<tr>
|
|
18
|
-
<th scope="col" class="p-4">
|
|
19
|
-
<div v-if="rows && rows.length" class="flex items-center">
|
|
20
|
-
<input id="checkbox-all-search" type="checkbox" :checked="allFromThisPageChecked" @change="selectAll()"
|
|
21
|
-
class="w-4 h-4 cursor-pointer text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 dark:focus:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600">
|
|
22
|
-
<label for="checkbox-all-search" class="sr-only">checkbox</label>
|
|
23
|
-
</div>
|
|
24
|
-
</th>
|
|
25
|
-
|
|
26
|
-
<th v-for="c in columnsListed" scope="col" class="px-2 md:px-3 lg:px-6 py-3">
|
|
27
|
-
|
|
28
|
-
<div @click="(evt) => c.sortable && onSortButtonClick(evt, c.name)"
|
|
29
|
-
class="flex items-center " :class="{'cursor-pointer':c.sortable}">
|
|
30
|
-
{{ c.label }}
|
|
31
|
-
|
|
32
|
-
<div v-if="c.sortable"
|
|
33
|
-
:style="{ 'color':ascArr.includes(c.name)?'green':descArr.includes(c.name)?'red':'currentColor'}">
|
|
34
|
-
<svg v-if="ascArr.includes(c.name) || descArr.includes(c.name)" class="w-3 h-3 ms-1.5"
|
|
35
|
-
:class="{'rotate-180':descArr.includes(c.name)}" viewBox="0 0 24 24">
|
|
36
|
-
<path
|
|
37
|
-
d="M8.574 11.024h6.852a2.075 2.075 0 0 0 1.847-1.086 1.9 1.9 0 0 0-.11-1.986L13.736 2.9a2.122 2.122 0 0 0-3.472 0L6.837 7.952a1.9 1.9 0 0 0-.11 1.986 2.074 2.074 0 0 0 1.847"/>
|
|
38
|
-
</svg>
|
|
39
|
-
<svg v-else class="w-3 h-3 ms-1.5 opacity-30" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
|
|
40
|
-
fill='currentColor'
|
|
41
|
-
viewBox="0 0 24 24">
|
|
42
|
-
<path
|
|
43
|
-
d="M8.574 11.024h6.852a2.075 2.075 0 0 0 1.847-1.086 1.9 1.9 0 0 0-.11-1.986L13.736 2.9a2.122 2.122 0 0 0-3.472 0L6.837 7.952a1.9 1.9 0 0 0-.11 1.986 2.074 2.074 0 0 0 1.847 1.086Zm6.852 1.952H8.574a2.072 2.072 0 0 0-1.847 1.087 1.9 1.9 0 0 0 .11 1.985l3.426 5.05a2.123 2.123 0 0 0 3.472 0l3.427-5.05a1.9 1.9 0 0 0 .11-1.985 2.074 2.074 0 0 0-1.846-1.087Z"/>
|
|
44
|
-
</svg>
|
|
45
|
-
</div>
|
|
46
|
-
<span
|
|
47
|
-
class="bg-red-100 text-red-800 text-xs font-medium me-1 px-1 py-0.5 rounded dark:bg-gray-700 dark:text-red-400 border border-red-400"
|
|
48
|
-
v-if="sort.findIndex((s) => s.field === c.name) !== -1 && sort?.length > 1">
|
|
49
|
-
{{ sort.findIndex((s) => s.field === c.name) + 1 }}
|
|
50
|
-
</span>
|
|
51
|
-
|
|
52
|
-
</div>
|
|
53
|
-
</th>
|
|
54
|
-
|
|
55
|
-
<th scope="col" class="px-6 py-3">
|
|
56
|
-
Actions
|
|
57
|
-
</th>
|
|
58
|
-
</tr>
|
|
59
|
-
</thead>
|
|
60
16
|
<tbody>
|
|
17
|
+
|
|
18
|
+
<!-- table header -->
|
|
19
|
+
<tr class="t-header sticky z-10 top-0 text-xs bg-lightListTableHeading dark:bg-darkListTableHeading dark:text-gray-400">
|
|
20
|
+
<td scope="col" class="p-4">
|
|
21
|
+
<div v-if="rows && rows.length" class="flex items-center">
|
|
22
|
+
<input id="checkbox-all-search" type="checkbox" :checked="allFromThisPageChecked" @change="selectAll()"
|
|
23
|
+
class="w-4 h-4 cursor-pointer text-blue-600 bg-gray-100 border-gray-300 rounded
|
|
24
|
+
focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 dark:focus:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600">
|
|
25
|
+
<label for="checkbox-all-search" class="sr-only">checkbox</label>
|
|
26
|
+
</div>
|
|
27
|
+
</td>
|
|
28
|
+
|
|
29
|
+
<td v-for="c in columnsListed" scope="col" class="px-2 md:px-3 lg:px-6 py-3">
|
|
30
|
+
|
|
31
|
+
<div @click="(evt) => c.sortable && onSortButtonClick(evt, c.name)"
|
|
32
|
+
class="flex items-center " :class="{'cursor-pointer':c.sortable}">
|
|
33
|
+
{{ c.label }}
|
|
34
|
+
|
|
35
|
+
<div v-if="c.sortable">
|
|
36
|
+
<svg v-if="ascArr.includes(c.name) || descArr.includes(c.name)" class="w-3 h-3 ms-1.5"
|
|
37
|
+
fill='currentColor'
|
|
38
|
+
:class="{'rotate-180':descArr.includes(c.name)}" viewBox="0 0 24 24">
|
|
39
|
+
<path
|
|
40
|
+
d="M8.574 11.024h6.852a2.075 2.075 0 0 0 1.847-1.086 1.9 1.9 0 0 0-.11-1.986L13.736 2.9a2.122 2.122 0 0 0-3.472 0L6.837 7.952a1.9 1.9 0 0 0-.11 1.986 2.074 2.074 0 0 0 1.847"/>
|
|
41
|
+
</svg>
|
|
42
|
+
<svg v-else class="w-3 h-3 ms-1.5 opacity-30" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
|
|
43
|
+
fill='currentColor'
|
|
44
|
+
viewBox="0 0 24 24">
|
|
45
|
+
<path
|
|
46
|
+
d="M8.574 11.024h6.852a2.075 2.075 0 0 0 1.847-1.086 1.9 1.9 0 0 0-.11-1.986L13.736 2.9a2.122 2.122 0 0 0-3.472 0L6.837 7.952a1.9 1.9 0 0 0-.11 1.986 2.074 2.074 0 0 0 1.847 1.086Zm6.852 1.952H8.574a2.072 2.072 0 0 0-1.847 1.087 1.9 1.9 0 0 0 .11 1.985l3.426 5.05a2.123 2.123 0 0 0 3.472 0l3.427-5.05a1.9 1.9 0 0 0 .11-1.985 2.074 2.074 0 0 0-1.846-1.087Z"/>
|
|
47
|
+
</svg>
|
|
48
|
+
</div>
|
|
49
|
+
<span
|
|
50
|
+
class="bg-red-100 text-red-800 text-xs font-medium me-1 px-1 py-0.5 rounded dark:bg-gray-700 dark:text-red-400 border border-red-400"
|
|
51
|
+
v-if="sort.findIndex((s) => s.field === c.name) !== -1 && sort?.length > 1">
|
|
52
|
+
{{ sort.findIndex((s) => s.field === c.name) + 1 }}
|
|
53
|
+
</span>
|
|
54
|
+
|
|
55
|
+
</div>
|
|
56
|
+
</td>
|
|
57
|
+
|
|
58
|
+
<td scope="col" class="px-6 py-3">
|
|
59
|
+
Actions
|
|
60
|
+
</td>
|
|
61
|
+
</tr>
|
|
62
|
+
<!-- table header end -->
|
|
61
63
|
<SkeleteLoader
|
|
62
64
|
v-if="!rows"
|
|
63
65
|
:columns="resource?.columns.filter(c => c.showIn.includes('list')).length + 2"
|
|
@@ -106,65 +108,57 @@
|
|
|
106
108
|
/>
|
|
107
109
|
</td>
|
|
108
110
|
<td class=" items-center px-2 md:px-3 lg:px-6 py-4 cursor-default" @click="(e)=>{e.stopPropagation()}">
|
|
109
|
-
<div class="flex">
|
|
110
|
-
<
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
<
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
</
|
|
160
|
-
|
|
161
|
-
<div :id="`tooltip-delete-${rowI}`"
|
|
162
|
-
role="tooltip"
|
|
163
|
-
class="absolute z-10 invisible inline-block px-3 py-2 text-sm font-medium text-white transition-opacity duration-300 bg-gray-900 rounded-lg shadow-sm opacity-0 tooltip dark:bg-gray-700">
|
|
164
|
-
Delete
|
|
165
|
-
<div class="tooltip-arrow" data-popper-arrow></div>
|
|
166
|
-
</div>
|
|
167
|
-
|
|
111
|
+
<div class="flex text-lightPrimary dark:text-darkPrimary items-center">
|
|
112
|
+
<AfTooltip>
|
|
113
|
+
<RouterLink
|
|
114
|
+
v-if="resource.options?.allowedActions.show"
|
|
115
|
+
:to="{
|
|
116
|
+
name: 'resource-show',
|
|
117
|
+
params: {
|
|
118
|
+
resourceId: resource.resourceId,
|
|
119
|
+
primaryKey: row._primaryKeyValue,
|
|
120
|
+
}
|
|
121
|
+
}"
|
|
122
|
+
|
|
123
|
+
>
|
|
124
|
+
<IconEyeSolid class="w-5 h-5 me-2"/>
|
|
125
|
+
</RouterLink>
|
|
126
|
+
|
|
127
|
+
<template v-slot:tooltip>
|
|
128
|
+
Show item
|
|
129
|
+
</template>
|
|
130
|
+
</AfTooltip>
|
|
131
|
+
|
|
132
|
+
<AfTooltip>
|
|
133
|
+
<RouterLink
|
|
134
|
+
v-if="resource.options?.allowedActions.edit"
|
|
135
|
+
:to="{
|
|
136
|
+
name: 'resource-edit',
|
|
137
|
+
params: {
|
|
138
|
+
resourceId: resource.resourceId,
|
|
139
|
+
primaryKey: row._primaryKeyValue,
|
|
140
|
+
}
|
|
141
|
+
}"
|
|
142
|
+
>
|
|
143
|
+
<IconPenSolid class="w-5 h-5 me-2"/>
|
|
144
|
+
</RouterLink>
|
|
145
|
+
<template v-slot:tooltip>
|
|
146
|
+
Edit item
|
|
147
|
+
</template>
|
|
148
|
+
</AfTooltip>
|
|
149
|
+
|
|
150
|
+
<AfTooltip>
|
|
151
|
+
<button
|
|
152
|
+
v-if="resource.options?.allowedActions.delete"
|
|
153
|
+
@click="deleteRecord(row)"
|
|
154
|
+
>
|
|
155
|
+
<IconTrashBinSolid class="w-5 h-5 me-2"/>
|
|
156
|
+
</button>
|
|
157
|
+
|
|
158
|
+
<template v-slot:tooltip>
|
|
159
|
+
Delete item
|
|
160
|
+
</template>
|
|
161
|
+
</AfTooltip>
|
|
168
162
|
|
|
169
163
|
<template v-if="coreStore.resourceOptions?.pageInjections?.list?.customActionIcons">
|
|
170
164
|
<component
|
|
@@ -185,30 +179,23 @@
|
|
|
185
179
|
<!-- pagination
|
|
186
180
|
totalRows in v-if is used to not hide page input during loading when user puts cursor into it and edit directly (rows gets null there during edit)
|
|
187
181
|
-->
|
|
188
|
-
<div class="flex flex-
|
|
182
|
+
<div class="flex flex-row items-center mt-4 xs:flex-row xs:justify-between xs:items-center gap-3"
|
|
189
183
|
v-if="(rows || totalRows) && totalRows >= pageSize && totalRows > 0"
|
|
190
184
|
>
|
|
191
|
-
|
|
192
|
-
<
|
|
193
|
-
Showing <span class="font-semibold text-gray-900 dark:text-white">
|
|
194
|
-
{{ ((page || 1) - 1) * pageSize + 1 }}
|
|
195
|
-
</span> to <span class="font-semibold text-gray-900 dark:text-white">
|
|
196
|
-
{{ Math.min((page || 1) * pageSize, totalRows) }}
|
|
197
|
-
</span> of <span class="font-semibold text-gray-900 dark:text-white">{{
|
|
198
|
-
totalRows
|
|
199
|
-
}}</span> Entries
|
|
200
|
-
</span>
|
|
201
|
-
<div class="inline-flex mt-2 xs:mt-0">
|
|
185
|
+
|
|
186
|
+
<div class="inline-flex ">
|
|
202
187
|
<!-- Buttons -->
|
|
203
188
|
<button
|
|
204
|
-
class="flex items-center py-1 px-3 text-sm font-medium text-gray-900 focus:outline-none bg-white border-r-0 rounded-s border border-gray-300 hover:bg-gray-100 hover:text-lightPrimary focus:z-10 focus:ring-4 focus:ring-gray-100 dark:focus:ring-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700 disabled:opacity-50"
|
|
189
|
+
class="flex items-center py-1 px-3 gap-1 text-sm font-medium text-gray-900 focus:outline-none bg-white border-r-0 rounded-s border border-gray-300 hover:bg-gray-100 hover:text-lightPrimary focus:z-10 focus:ring-4 focus:ring-gray-100 dark:focus:ring-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700 disabled:opacity-50"
|
|
205
190
|
@click="page--" :disabled="page <= 1">
|
|
206
|
-
<svg class="w-3.5 h-3.5
|
|
191
|
+
<svg class="w-3.5 h-3.5 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
|
|
207
192
|
viewBox="0 0 14 10">
|
|
208
193
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
209
194
|
d="M13 5H1m0 0 4 4M1 5l4-4"/>
|
|
210
195
|
</svg>
|
|
211
|
-
|
|
196
|
+
<span class="hidden sm:inline">
|
|
197
|
+
Prev
|
|
198
|
+
</span>
|
|
212
199
|
</button>
|
|
213
200
|
<button
|
|
214
201
|
class="flex items-center py-1 px-3 text-sm font-medium text-gray-900 focus:outline-none bg-white border-r-0 border border-gray-300 hover:bg-gray-100 hover:text-lightPrimary focus:z-10 focus:ring-4 focus:ring-gray-100 dark:focus:ring-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700 disabled:opacity-50"
|
|
@@ -232,11 +219,10 @@
|
|
|
232
219
|
<!-- <IconChevronDoubleRightOutline class="w-4 h-4" /> -->
|
|
233
220
|
</button>
|
|
234
221
|
<button
|
|
235
|
-
class="flex items-center py-1 px-3 text-sm font-medium text-gray-900 focus:outline-none bg-white border-l-0 rounded-e border border-gray-300 hover:bg-gray-100 hover:text-lightPrimary focus:z-10 focus:ring-4 focus:ring-gray-100 dark:focus:ring-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700 disabled:opacity-50"
|
|
236
|
-
|
|
222
|
+
class="flex items-center py-1 px-3 gap-1 text-sm font-medium text-gray-900 focus:outline-none bg-white border-l-0 rounded-e border border-gray-300 hover:bg-gray-100 hover:text-lightPrimary focus:z-10 focus:ring-4 focus:ring-gray-100 dark:focus:ring-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700 disabled:opacity-50"
|
|
237
223
|
@click="page++" :disabled="page >= totalPages">
|
|
238
|
-
Next
|
|
239
|
-
<svg class="w-3.5 h-3.5
|
|
224
|
+
<span class="hidden sm:inline">Next</span>
|
|
225
|
+
<svg class="w-3.5 h-3.5 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
|
|
240
226
|
viewBox="0 0 14 10">
|
|
241
227
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
242
228
|
d="M1 5h12m0 0L9 1m4 4L9 9"/>
|
|
@@ -244,6 +230,15 @@
|
|
|
244
230
|
</button>
|
|
245
231
|
</div>
|
|
246
232
|
|
|
233
|
+
<!-- Help text -->
|
|
234
|
+
<span class="text-sm text-gray-700 dark:text-gray-400">
|
|
235
|
+
Showing <span class="font-semibold text-gray-900 dark:text-white">
|
|
236
|
+
{{ ((page || 1) - 1) * pageSize + 1 }}
|
|
237
|
+
</span> to <span class="font-semibold text-gray-900 dark:text-white">
|
|
238
|
+
{{ Math.min((page || 1) * pageSize, totalRows) }}
|
|
239
|
+
</span> of <span class="font-semibold text-gray-900 dark:text-white">{{
|
|
240
|
+
totalRows }}</span> <span class="hidden sm:inline">Entries</span>
|
|
241
|
+
</span>
|
|
247
242
|
</div>
|
|
248
243
|
</template>
|
|
249
244
|
|
|
@@ -269,9 +264,11 @@ import {
|
|
|
269
264
|
IconTrashBinSolid
|
|
270
265
|
} from '@iconify-prerendered/vue-flowbite';
|
|
271
266
|
import router from '@/router';
|
|
267
|
+
import AfTooltip from './AfTooltip.vue';
|
|
272
268
|
|
|
273
269
|
const coreStore = useCoreStore();
|
|
274
270
|
|
|
271
|
+
|
|
275
272
|
const props = defineProps([
|
|
276
273
|
'page',
|
|
277
274
|
'resource',
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<AfTooltip>
|
|
3
|
+
<span class="flex items-center">
|
|
4
|
+
{{ visualValue }} <IconFileCopyAltSolid @click.stop="copyToCB" class="w-5 h-5 text-lightPrimary dark:text-darkPrimary" v-if="visualValue"/>
|
|
5
|
+
</span>
|
|
6
|
+
<template #tooltip v-if="visualValue">
|
|
7
|
+
{{ props.record[props.column.name] }}
|
|
8
|
+
</template>
|
|
9
|
+
</AfTooltip>
|
|
10
|
+
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script setup>
|
|
14
|
+
import { computed, ref, onMounted, nextTick } from 'vue';
|
|
15
|
+
import { IconFileCopyAltSolid } from '@iconify-prerendered/vue-flowbite';
|
|
16
|
+
import AfTooltip from '@/components/AfTooltip.vue';
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
const visualValue = computed(() => {
|
|
20
|
+
// if lenght is more then 8, show only first 4 and last 4 characters, ... in the middle
|
|
21
|
+
const val = props.record[props.column.name];
|
|
22
|
+
if (val && val.length > 8) {
|
|
23
|
+
return `${val.substr(0, 4)}...${val.substr(val.length - 4)}`;
|
|
24
|
+
}
|
|
25
|
+
return val;
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
const props = defineProps(['column', 'record', 'meta']);
|
|
29
|
+
|
|
30
|
+
const id = ref();
|
|
31
|
+
|
|
32
|
+
function copyToCB() {
|
|
33
|
+
navigator.clipboard.writeText(props.record[props.column.name]);
|
|
34
|
+
window.adminforth.alert({
|
|
35
|
+
message: 'ID copied to clipboard',
|
|
36
|
+
variant: 'success',
|
|
37
|
+
})
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
onMounted(async () => {
|
|
41
|
+
id.value = Math.random().toString(36).substring(7);
|
|
42
|
+
await nextTick();
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
</script>
|
|
@@ -1,22 +1,20 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
<div :id="`tooltip-${id}`" role="tooltip" v-if="visualValue"
|
|
9
|
-
class="absolute z-10 invisible inline-block px-3 py-2 text-sm font-medium text-white transition-opacity duration-300 bg-gray-900 rounded-lg shadow-sm opacity-0 tooltip dark:bg-gray-700">
|
|
2
|
+
<AfTooltip>
|
|
3
|
+
<span class="flex items-center">
|
|
4
|
+
{{ visualValue }} <IconFileCopyAltSolid @click.stop="copyToCB" class="w-5 h-5 text-lightPrimary dark:text-darkPrimary" v-if="visualValue"/>
|
|
5
|
+
</span>
|
|
6
|
+
<template #tooltip v-if="visualValue">
|
|
10
7
|
{{ props.record[props.column.name] }}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
</template>
|
|
9
|
+
</AfTooltip>
|
|
10
|
+
|
|
14
11
|
</template>
|
|
15
12
|
|
|
16
13
|
<script setup>
|
|
17
|
-
import { computed, ref, onMounted } from 'vue';
|
|
14
|
+
import { computed, ref, onMounted, nextTick } from 'vue';
|
|
18
15
|
import { IconFileCopyAltSolid } from '@iconify-prerendered/vue-flowbite';
|
|
19
|
-
import
|
|
16
|
+
import AfTooltip from '@/components/AfTooltip.vue';
|
|
17
|
+
|
|
20
18
|
|
|
21
19
|
const visualValue = computed(() => {
|
|
22
20
|
// if lenght is more then 8, show only first 4 and last 4 characters, ... in the middle
|
|
@@ -41,8 +39,7 @@ function copyToCB() {
|
|
|
41
39
|
|
|
42
40
|
onMounted(async () => {
|
|
43
41
|
id.value = Math.random().toString(36).substring(7);
|
|
44
|
-
await
|
|
45
|
-
initFlowbite();
|
|
42
|
+
await nextTick();
|
|
46
43
|
});
|
|
47
44
|
|
|
48
45
|
</script>
|
|
@@ -1,31 +1,25 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
>
|
|
15
|
-
{{ countryName }}
|
|
16
|
-
<div class="tooltip-arrow" data-popper-arrow></div>
|
|
17
|
-
</div>
|
|
18
|
-
</span>
|
|
19
|
-
|
|
2
|
+
<AfTooltip>
|
|
3
|
+
<span class="flex items-center">
|
|
4
|
+
<span
|
|
5
|
+
:class="{[`fi-${countryIsoLow}`]: true, 'flag-icon': countryName}"
|
|
6
|
+
></span>
|
|
7
|
+
<span v-if="meta.showCountryName" class="ms-2">{{ countryName }}</span>
|
|
8
|
+
</span>
|
|
9
|
+
|
|
10
|
+
<template v-if="shouldShowTooltip" #tooltip>
|
|
11
|
+
{{ countryName }}
|
|
12
|
+
</template>
|
|
13
|
+
</AfTooltip>
|
|
20
14
|
</template>
|
|
21
15
|
|
|
22
16
|
<script setup>
|
|
23
17
|
|
|
24
18
|
import { computed, ref, onMounted } from 'vue';
|
|
25
|
-
import { initFlowbite } from 'flowbite';
|
|
26
19
|
import 'flag-icons/css/flag-icons.min.css';
|
|
27
20
|
import isoCountries from 'i18n-iso-countries';
|
|
28
21
|
import enLocal from 'i18n-iso-countries/langs/en.json';
|
|
22
|
+
import AfTooltip from '@/components/AfTooltip.vue';
|
|
29
23
|
|
|
30
24
|
isoCountries.registerLocale(enLocal);
|
|
31
25
|
|
|
@@ -33,11 +27,12 @@ const props = defineProps(['column', 'record', 'meta', 'resource', 'adminUser'])
|
|
|
33
27
|
|
|
34
28
|
const id = ref();
|
|
35
29
|
|
|
30
|
+
const shouldShowTooltip = computed(() => {
|
|
31
|
+
return !props.meta.showCountryName && countryName.value;
|
|
32
|
+
});
|
|
36
33
|
|
|
37
34
|
onMounted(async () => {
|
|
38
35
|
id.value = Math.random().toString(36).substring(7);
|
|
39
|
-
await new Promise(resolve => setTimeout(resolve, 0));
|
|
40
|
-
initFlowbite();
|
|
41
36
|
});
|
|
42
37
|
|
|
43
38
|
const countryIsoLow = computed(() => {
|
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
:data-tooltip-target="formattedValue && `tooltip-${id}`"
|
|
4
|
-
data-tooltip-placement="left">
|
|
2
|
+
<AfTooltip class="flex items-center" >
|
|
5
3
|
{{ formattedValue }}
|
|
6
|
-
<
|
|
7
|
-
class="absolute z-10 invisible inline-block px-3 py-2 text-sm font-medium text-white transition-opacity duration-300 bg-gray-900 rounded-lg shadow-sm opacity-0 tooltip dark:bg-gray-700">
|
|
4
|
+
<template #tooltip v-if="formattedValue">
|
|
8
5
|
{{ formattedTooltipValue }}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
</span>
|
|
6
|
+
</template>
|
|
7
|
+
</AfTooltip>
|
|
12
8
|
</template>
|
|
13
9
|
|
|
14
10
|
<script setup>
|
|
15
|
-
import { computed, ref, onMounted } from 'vue';
|
|
16
|
-
import
|
|
11
|
+
import { computed, ref, onMounted, nextTick } from 'vue';
|
|
12
|
+
import AfTooltip from '@/components/AfTooltip.vue';
|
|
17
13
|
|
|
18
14
|
const props = defineProps(['column', 'record']);
|
|
19
15
|
const id = ref();
|
|
@@ -50,13 +46,12 @@
|
|
|
50
46
|
return new Intl.NumberFormat(locale).format(num);
|
|
51
47
|
}
|
|
52
48
|
|
|
53
|
-
function formatNumberUsingIntl(num, locale) {
|
|
54
|
-
|
|
55
|
-
}
|
|
49
|
+
function formatNumberUsingIntl(num, locale) {
|
|
50
|
+
return new Intl.NumberFormat(locale).format(num);
|
|
51
|
+
}
|
|
56
52
|
|
|
57
53
|
onMounted(async () => {
|
|
58
54
|
id.value = Math.random().toString(36).substring(7);
|
|
59
|
-
await
|
|
60
|
-
initFlowbite();
|
|
55
|
+
await nextTick();
|
|
61
56
|
});
|
|
62
|
-
|
|
57
|
+
</script>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<AfTooltip class="flex items-center">
|
|
3
|
+
{{ relativeTime }}
|
|
4
|
+
<template #tooltip v-if="relativeTime">
|
|
5
|
+
{{ fullTime }}
|
|
6
|
+
</template>
|
|
7
|
+
</AfTooltip>
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<script setup>
|
|
11
|
+
import { computed, ref, onMounted } from 'vue';
|
|
12
|
+
import AfTooltip from '@/components/AfTooltip.vue';
|
|
13
|
+
import en from 'javascript-time-ago/locale/en';
|
|
14
|
+
import TimeAgo from 'javascript-time-ago';
|
|
15
|
+
import dayjs from 'dayjs';
|
|
16
|
+
|
|
17
|
+
const id = ref();
|
|
18
|
+
|
|
19
|
+
TimeAgo.addLocale(en);
|
|
20
|
+
|
|
21
|
+
const props = defineProps(['column', 'record']);
|
|
22
|
+
|
|
23
|
+
const userLocale = ref(navigator.language || 'en-US');
|
|
24
|
+
const timeAgoFormatter = new TimeAgo(userLocale.value);
|
|
25
|
+
const relativeTime = computed(() => {
|
|
26
|
+
const value = props.record[props.column.name];
|
|
27
|
+
const date = new Date(value);
|
|
28
|
+
return timeAgoFormatter.format(date);
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
const fullTime = computed(() => {
|
|
32
|
+
const value = props.record[props.column.name];
|
|
33
|
+
const date = dayjs(new Date(value));
|
|
34
|
+
return date.format('DD MMM HH:mm');
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
onMounted(async () => {
|
|
38
|
+
id.value = Math.random().toString(36).substring(7);
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
</script>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<a v-if='record[column.name]' :href="record[column.name]"
|
|
3
|
+
class="text-blue-500 hover:underline overflow-ellipsis overflow-hidden whitespace-nowrap inline-block max-w-full"
|
|
4
|
+
>{{ record[column.name] }}</a>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script setup>
|
|
8
|
+
|
|
9
|
+
defineProps({
|
|
10
|
+
record: Object,
|
|
11
|
+
resource: Object,
|
|
12
|
+
adminUser: Object,
|
|
13
|
+
meta: Object,
|
|
14
|
+
column: Object
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
</script>
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { ref } from 'vue';
|
|
2
2
|
import { defineStore } from 'pinia';
|
|
3
3
|
import { callAdminForthApi } from '@/utils';
|
|
4
|
-
import { initFlowbite } from 'flowbite'
|
|
5
|
-
import { useRouter } from 'vue-router';
|
|
6
4
|
import { useCoreStore } from './core';
|
|
7
5
|
import router from '@/router';
|
|
8
6
|
|
|
@@ -27,9 +25,6 @@ export const useUserStore = defineStore('user', () => {
|
|
|
27
25
|
await router.push('/');
|
|
28
26
|
await router.isReady();
|
|
29
27
|
await coreStore.fetchMenuAndResource();
|
|
30
|
-
setTimeout(() => {
|
|
31
|
-
initFlowbite();
|
|
32
|
-
});
|
|
33
28
|
}
|
|
34
29
|
|
|
35
30
|
async function logout() {
|