easycomponentstools 1.0.0-dev.1.1 → 1.0.0-dev.11

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/index.html ADDED
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/cineplayer.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Vite + Vue</title>
8
+ </head>
9
+ <body style="margin: 0;padding: 0;">
10
+ <div id="app"></div>
11
+ <script type="module" src="/src/dev.ts"></script>
12
+ </body>
13
+ </html>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "easycomponentstools",
3
3
  "private": false,
4
- "version": "1.0.0-dev.1.1",
4
+ "version": "1.0.0-dev.11",
5
5
  "type": "module",
6
6
  "description": "Easy Vue Components",
7
7
  "keywords": [
@@ -25,30 +25,38 @@
25
25
  },
26
26
  "devDependencies": {
27
27
  "@eslint/js": "^10.0.1",
28
+ "@types/pdfmake": "^0.3.3",
29
+ "@types/sanitize-html": "^2.16.1",
28
30
  "@vitejs/plugin-vue": "^6.0.7",
29
31
  "eslint": "^10.4.1",
30
32
  "eslint-config-prettier": "^10.1.8",
31
33
  "eslint-plugin-vue": "^10.9.1",
32
34
  "jiti": "^2.7.0",
33
35
  "prettier": "^3.8.3",
36
+ "sanitize-html": "^2.17.4",
34
37
  "sass": "^1.100.0",
35
38
  "sass-embedded": "^1.77.8",
36
39
  "typescript": "^6.0.3",
37
40
  "typescript-eslint": "^8.60.0",
38
41
  "vite": "^8.0.16",
39
42
  "vite-plugin-dts": "^5.0.2",
40
- "vue": "^3.5.35",
41
43
  "vue-tsc": "^3.3.3"
42
44
  },
43
- "dependencies": {
45
+ "peerDependencies": {
44
46
  "@fawmi/vue-google-maps": "^0.9.79",
47
+ "pinia": "^3.0.4",
48
+ "vue": "^3",
49
+ "vuetify": "^4.0.8"
50
+ },
51
+ "dependencies": {
45
52
  "@mdi/font": "^7.4.47",
46
53
  "@tmcw/togeojson": "^7.1.2",
47
54
  "@types/google.maps": "^3.65.0",
55
+ "json-as-xlsx": "^2.5.6",
48
56
  "lucide-static": "^0.426.0",
49
57
  "moment-timezone": "^0.6.2",
50
- "pinia": "^3.0.4",
51
- "vue-i18n": "^11.4.4",
52
- "vuetify": "^4.0.8"
58
+ "pdfmake": "^0.3.6",
59
+ "print-js": "^1.6.0",
60
+ "vue-i18n": "^11.4.4"
53
61
  }
54
62
  }
@@ -2,6 +2,7 @@
2
2
  <CustomMapAutoComplete
3
3
  :class="input.required ? 'required_field' : ''"
4
4
  :label="input.label"
5
+ :options="input.options"
5
6
  @place_changed="change_location"
6
7
  ></CustomMapAutoComplete>
7
8
  <v-card ref="cardMapRef" :loading="loading" :elevation="0" class="cardMap">
@@ -6,6 +6,7 @@
6
6
  :items="items"
7
7
  clearable
8
8
  :loading="loading"
9
+ v-bind="{ ...options }"
9
10
  @keydown.enter="search"
10
11
  @update:model-value="change"
11
12
  @click:clear="clear"
@@ -27,6 +28,7 @@ type Item = {
27
28
  type propsType = {
28
29
  label: string
29
30
  getPlaces?: any
31
+ options: Record<string, any>
30
32
  }
31
33
 
32
34
  const props = defineProps<propsType>()
@@ -53,7 +55,7 @@ const search = async () => {
53
55
 
54
56
  const request = {
55
57
  input: searchValue.value,
56
- includedRegionCodes: ['gr', 'en'],
58
+ includedRegionCodes: ['gr', 'us'],
57
59
  }
58
60
  const data: Item[] = []
59
61
  loading.value = true
@@ -0,0 +1,68 @@
1
+ <template>
2
+ <v-dialog v-model="dialog" width="700" persistent>
3
+ <v-card>
4
+ <v-card-title class="text-center mt-10">
5
+ <v-row class="textWarning">
6
+ <v-col cols="4" class="d-flex justify-end">
7
+ <i class="icon icon-octagon-alert warning-modal"></i>
8
+ </v-col>
9
+ <v-col cols="8" class="d-flex justify-start align-center text-wrap">
10
+ {{ description }}
11
+ </v-col>
12
+ </v-row>
13
+ </v-card-title>
14
+ <v-card-actions class="ma-4">
15
+ <v-row>
16
+ <v-col class="d-flex justify-start">
17
+ <v-btn color="error" variant="flat" @click="dialog = false">
18
+ <i class="icon icon-x"></i> {{ cancelText }}
19
+ </v-btn>
20
+ </v-col>
21
+ <v-col class="d-flex justify-end">
22
+ <v-btn color="success" variant="flat" @click="confirm">
23
+ <i class="icon icon-check"></i> {{ acceptText }}
24
+ </v-btn>
25
+ </v-col>
26
+ </v-row>
27
+ </v-card-actions>
28
+ </v-card>
29
+ </v-dialog>
30
+ </template>
31
+
32
+ <script setup lang="ts">
33
+ import { ref, Ref } from 'vue'
34
+
35
+ type propsType = {
36
+ description: string
37
+ acceptText: string
38
+ cancelText: string
39
+ }
40
+ defineProps<propsType>()
41
+ const emit = defineEmits(['onConfirm'])
42
+ const dialog: Ref<boolean> = ref(false)
43
+ const itemId: Ref<string | number> = ref('')
44
+
45
+ const open = (id: string | number) => {
46
+ itemId.value = id
47
+ dialog.value = true
48
+ }
49
+ const confirm = () => {
50
+ dialog.value = false
51
+ emit('onConfirm', itemId.value)
52
+ }
53
+
54
+ defineExpose({ open })
55
+ </script>
56
+
57
+ <style scoped lang="scss">
58
+ .warning-modal {
59
+ font-size: 55px;
60
+ color: rgb(var(--v-theme-warning));
61
+ }
62
+ .textWarning {
63
+ .text {
64
+ font-size: 18px;
65
+ font-weight: 500;
66
+ }
67
+ }
68
+ </style>
@@ -0,0 +1,30 @@
1
+ <template>
2
+ <v-btn
3
+ v-if="typeof action.show === 'function' ? action.show(item) : true"
4
+ class="d-flex mr-1"
5
+ :color="action?.color ?? 'primary'"
6
+ @click="ClickActionItem"
7
+ >
8
+ <i v-if="action.icon" :class="action.icon" />
9
+ </v-btn>
10
+ </template>
11
+
12
+ <script setup lang="ts">
13
+ import { HeaderActionDTO } from '../../../types/table'
14
+
15
+ const props = defineProps<{
16
+ action: HeaderActionDTO
17
+ item: any
18
+ }>()
19
+ const emit = defineEmits(['onDelete'])
20
+
21
+ const ClickActionItem = () => {
22
+ if (typeof props.action.onClick === 'function') {
23
+ props.action.onClick(props.item)
24
+ } else if (props.action.onClick === 'deletion') {
25
+ emit('onDelete', props.item)
26
+ }
27
+ }
28
+ </script>
29
+
30
+ <style scoped></style>
@@ -0,0 +1,43 @@
1
+ <template>
2
+ <v-menu v-if="typeof action.show === 'function' ? action.show(item) : true">
3
+ <template #activator="{ props: propsMenu }">
4
+ <v-btn :color="action?.color ?? 'primary'" v-bind="propsMenu">
5
+ {{ action?.label ?? '' }}
6
+ <i v-if="action?.icon" :class="action.icon"></i>
7
+ </v-btn>
8
+ </template>
9
+ <v-list>
10
+ <v-list-item
11
+ v-for="(itemMenu, index) in action.items"
12
+ v-show="typeof itemMenu.show === 'function' ? itemMenu.show(item) : true"
13
+ :key="index"
14
+ :value="index"
15
+ >
16
+ <v-list-item-title @click="ClickActionItem(itemMenu)">
17
+ <i v-if="itemMenu.icon" :class="itemMenu.icon" />
18
+ {{ itemMenu?.label ?? '-' }}
19
+ </v-list-item-title>
20
+ </v-list-item>
21
+ </v-list>
22
+ </v-menu>
23
+ </template>
24
+
25
+ <script setup lang="ts">
26
+ import { HeaderActionDTO, HeaderActionMenuItemsDTO } from '../../../types/table'
27
+
28
+ const props = defineProps<{
29
+ action: HeaderActionDTO
30
+ item: any
31
+ }>()
32
+ const emit = defineEmits(['onDelete'])
33
+
34
+ const ClickActionItem = (itemMenu: HeaderActionMenuItemsDTO) => {
35
+ if (typeof itemMenu.onClick === 'function') {
36
+ itemMenu.onClick(props.item)
37
+ } else if (itemMenu.onClick === 'deletion') {
38
+ emit('onDelete', props.item)
39
+ }
40
+ }
41
+ </script>
42
+
43
+ <style scoped></style>
@@ -0,0 +1,38 @@
1
+ <template>
2
+ <div>
3
+ <component
4
+ :is="GetColumnValue()"
5
+ v-if="typeof props.header.cellRenderer === 'function'"
6
+ ></component>
7
+ <span v-else v-html="GetColumnValue()" />
8
+ </div>
9
+ </template>
10
+
11
+ <script setup lang="ts">
12
+ import { h } from 'vue'
13
+ import { HeaderDTO } from '../../types/table'
14
+ import sanitizeHtml from 'sanitize-html'
15
+
16
+ const props = defineProps<{
17
+ header: HeaderDTO
18
+ item: any
19
+ }>()
20
+
21
+ const GetColumnValue = () => {
22
+ let html = ''
23
+ if (typeof props.header.cellRenderer === 'function') {
24
+ const result = props.header.cellRenderer(props.item[props.header.value], props.item)
25
+ if (Array.isArray(result)) {
26
+ return h('div', {}, result)
27
+ }
28
+ return result
29
+ } else if (typeof props.header.valueFormatter === 'function') {
30
+ return props.header.valueFormatter(props.item[props.header.value], props.item)
31
+ } else {
32
+ html = props.item[props.header.value]
33
+ return sanitizeHtml(html)
34
+ }
35
+ }
36
+ </script>
37
+
38
+ <style scoped></style>
@@ -0,0 +1,270 @@
1
+ <template>
2
+ <v-container class="maintable">
3
+ <Headers
4
+ :id="id"
5
+ ref="headerRef"
6
+ :title="props.title"
7
+ :headers="props.headers"
8
+ :advanced-filters="props.advancedFilters"
9
+ :hard-filters="props.hardFilters"
10
+ :create="api?.create"
11
+ :show-export-data="showExportData"
12
+ :multiple-hard-filters="multipleHardFilters"
13
+ :multiple-deletion="multipleDeletion"
14
+ :selected="selected"
15
+ @multiple-delete="multipleConfirm"
16
+ @headers="updateDisplayHeaders"
17
+ @search="search"
18
+ @hard-filters="updateHardFilters"
19
+ @loading="(v) => (loading = v)"
20
+ >
21
+ <template #moreActions>
22
+ <slot name="moreActions"></slot>
23
+ </template>
24
+ </Headers>
25
+ <VDataTableServer
26
+ v-model="selected"
27
+ v-model:page="page"
28
+ v-model:items-per-page="itemsPerPage"
29
+ :headers="displayHeaders"
30
+ :items="items"
31
+ :show-select="showSelect"
32
+ :loading="loading"
33
+ :items-length="total"
34
+ :items-per-page-options="itemsPerPageOptions"
35
+ :class="$attrs.class"
36
+ :style="{
37
+ width: typeof $attrs.width === 'string' ? $attrs.width : 'auto',
38
+ }"
39
+ :height="calcHeight"
40
+ fixed-header
41
+ @update:sort-by="updateSort"
42
+ @update:sort-desc="updateSort"
43
+ @update:items-per-page="getData"
44
+ @update:page="getData"
45
+ >
46
+ <!-- eslint-disable -->
47
+ <template #header.actions>
48
+ <i class="icon icon-settings" v-bind="props" style="font-size: 20px"></i>
49
+ </template>
50
+ <template v-for="header in displayHeaders" #[getSlotItem(header)]="item: any">
51
+ <span
52
+ v-if="header.type === 'actions'"
53
+ style="display: flex; justify-content: center"
54
+ >
55
+ <span v-for="(action, index) in header.actions" :key="index">
56
+ <Menu
57
+ v-if="action.type === 'menu'"
58
+ :action="action"
59
+ :item="item.item"
60
+ @onDelete="confirm_deletion?.open(item.item?.id)"
61
+ >
62
+ </Menu>
63
+ <ActionBtn
64
+ v-else
65
+ :action="action"
66
+ :item="item.item"
67
+ @onDelete="confirm_deletion?.open(item.item?.id)"
68
+ >
69
+ </ActionBtn>
70
+ </span>
71
+ </span>
72
+ <ColumnValue v-else :header="header" :item="item.item"></ColumnValue>
73
+ </template>
74
+ </VDataTableServer>
75
+ <EasyConfirmationModal
76
+ ref="confirm_deletion"
77
+ :description="$i18n.t('table.deletion_description')"
78
+ :accept-text="$i18n.t('table.yes')"
79
+ :cancel-text="$i18n.t('table.no')"
80
+ @onConfirm="deletion"
81
+ />
82
+ <EasyConfirmationModal
83
+ ref="multiple_confirm_deletion"
84
+ :description="$i18n.t('table.multiple_deletion_description')"
85
+ :accept-text="$i18n.t('table.yes')"
86
+ :cancel-text="$i18n.t('table.no')"
87
+ @onConfirm="multipleDelete"
88
+ />
89
+ </v-container>
90
+ </template>
91
+
92
+ <script setup lang="ts">
93
+ import Headers from './Headers/Headers.vue'
94
+ import Menu from './Actions/Menu.vue'
95
+ import ActionBtn from './Actions/ActionBtn.vue'
96
+ import ColumnValue from './ColumnValue.vue'
97
+ import {
98
+ AdvancedFiltersDTO,
99
+ HardFiltersDTO,
100
+ HeaderDTO,
101
+ PropsDataTableDTO,
102
+ SortDTO,
103
+ } from '../../types/table'
104
+ import { useI18n } from 'vue-i18n'
105
+ import { onBeforeMount, onMounted, ref, Ref } from 'vue'
106
+ import useHeadersStorage from '../../composables/useHeadersStorage'
107
+ import EasyConfirmationModal from '../Modal/EasyConfirmationModal.vue'
108
+
109
+ const props = withDefaults(defineProps<PropsDataTableDTO>(), {
110
+ showSelect: false,
111
+ multipleHardFilters: false,
112
+ multipleDeletion: false,
113
+ title: '',
114
+ hardFilters: () => [],
115
+ advancedFilters: () => [],
116
+ calcHeight: '',
117
+ showExportData: false,
118
+ })
119
+ const emit = defineEmits(['onLoaded', 'successDelete', 'errorDelete', 'fetchError'])
120
+ const $i18n = useI18n()
121
+ const displayHeaders: Ref<HeaderDTO[]> = ref([])
122
+ const itemsPerPage: Ref<number> = ref(10)
123
+ const page: Ref<number> = ref(1)
124
+ const items: Ref<any[]> = ref([])
125
+ const selected: Ref<any[]> = ref([])
126
+ const sort: Ref<SortDTO | null> = ref(null)
127
+ const filters: Ref<AdvancedFiltersDTO[]> = ref([])
128
+ const hard_filters: Ref<HardFiltersDTO[]> = ref([])
129
+ const total: Ref<number> = ref(0)
130
+ const $useHeadersStorage = useHeadersStorage()
131
+ const loading: Ref<boolean> = ref(false)
132
+ const confirm_deletion: Ref<any> = ref(null)
133
+ const multiple_confirm_deletion: Ref<any> = ref(null)
134
+ const headerRef: Ref<any> = ref(null)
135
+ const itemsPerPageOptions = ref([
136
+ { value: 10, title: '10' },
137
+ { value: 25, title: '25' },
138
+ { value: 50, title: '50' },
139
+ { value: 100, title: '100' },
140
+ ])
141
+
142
+ function getSlotItem(header: HeaderDTO) {
143
+ return `item.${header.value}`
144
+ }
145
+ const deletion = (id: string | number) => {
146
+ if (!props.api?.delete) return
147
+ loading.value = true
148
+ fetch(`${props.api.delete}/${id}`, {
149
+ method: 'DELETE',
150
+ })
151
+ .then(async (response) => {
152
+ if (!response.ok) {
153
+ const err = await response.json()
154
+ return await Promise.reject(err)
155
+ }
156
+ return response.json()
157
+ })
158
+ .then(() => {
159
+ emit('successDelete')
160
+ getData()
161
+ })
162
+ .catch(async (error) => emit('errorDelete', error))
163
+ .finally(() => (loading.value = false))
164
+ }
165
+ const multipleDelete = () => {
166
+ if (!props.api?.multipleDelete) return
167
+ loading.value = true
168
+ fetch(`${props.api.multipleDelete}`, {
169
+ method: 'DELETE',
170
+ body: JSON.stringify({
171
+ ids: selected.value,
172
+ }),
173
+ })
174
+ .then(async (response) => {
175
+ if (!response.ok) {
176
+ const err = await response.json()
177
+ return await Promise.reject(err)
178
+ }
179
+ return response.json()
180
+ })
181
+ .then(() => {
182
+ emit('successDelete')
183
+ selected.value = []
184
+ getData()
185
+ })
186
+ .catch(async (error) => emit('errorDelete', error))
187
+ .finally(() => (loading.value = false))
188
+ }
189
+ const multipleConfirm = () => {
190
+ multiple_confirm_deletion.value?.open(0)
191
+ }
192
+ const getData = async () => {
193
+ loading.value = true
194
+ const params = new URLSearchParams({
195
+ sort: JSON.stringify(sort.value ?? {}),
196
+ filters: JSON.stringify(filters.value),
197
+ hard_filters: JSON.stringify(hard_filters.value),
198
+ page: page.value.toString(),
199
+ limit: itemsPerPage.value.toString(),
200
+ })
201
+ fetch(`${props.api.get}?${params}`, { method: 'GET' })
202
+ .then(async (response) => {
203
+ if (!response.ok) {
204
+ const err = await response.json()
205
+ return await Promise.reject(err)
206
+ }
207
+ return response.json()
208
+ })
209
+ .then((response: any) => {
210
+ items.value = response.data
211
+ total.value = response.page.total
212
+ headerRef.value?.updateExportDataTotal(total.value)
213
+ emit('onLoaded', items.value)
214
+ })
215
+ .catch(async (error) => emit('fetchError', error))
216
+ .finally(() => (loading.value = false))
217
+ }
218
+ const updateSort = (options: any[]) => {
219
+ if (options.length !== 0) {
220
+ sort.value = {
221
+ column: options[0].key,
222
+ sort: options[0].order,
223
+ }
224
+ headerRef.value?.updateExportSortData(sort.value)
225
+ page.value = 1
226
+ getData()
227
+ }
228
+ }
229
+ const updateHardFilters = (hard_filters_value: HardFiltersDTO[]) => {
230
+ hard_filters.value = hard_filters_value
231
+ page.value = 1
232
+ getData()
233
+ }
234
+ const search = (filters_value: AdvancedFiltersDTO[]) => {
235
+ filters.value = filters_value
236
+ page.value = 1
237
+ getData()
238
+ }
239
+ const updateDisplayHeaders = (headers: HeaderDTO[]) => {
240
+ displayHeaders.value = headers
241
+ getData()
242
+ }
243
+ onMounted(() => {
244
+ setTimeout(() => {
245
+ headerRef.value?.updateExportData(
246
+ props.api.get,
247
+ props.headers,
248
+ total.value,
249
+ sort.value,
250
+ filters.value,
251
+ hard_filters.value
252
+ )
253
+ }, 500)
254
+ })
255
+ onBeforeMount(() => {
256
+ const displayStorageHeaders: HeaderDTO[] = $useHeadersStorage.loadHeaders(
257
+ props.headers,
258
+ props.id
259
+ )
260
+ if (displayStorageHeaders.length !== 0) {
261
+ displayHeaders.value = displayStorageHeaders.filter((v: HeaderDTO) => !v?.hidden)
262
+ } else {
263
+ displayHeaders.value = props.headers.filter((v: HeaderDTO) => !v?.hidden)
264
+ }
265
+ })
266
+
267
+ defineExpose({ getData, loading })
268
+ </script>
269
+
270
+ <style scoped></style>