tendik.vue
18.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
<script setup lang="ts">
import { useKeycloakStore } from '@/@core/stores/keycloakStore';
import type { SalesDetails } from '@db/pages/datatable/types';
const keycloakStore = useKeycloakStore();
// Gunakan computed agar selalu reaktif
const isAuthenticated = computed(() => keycloakStore.authenticated);
const { data: productList } = await useApi<SalesDetails[]>('pages/datatable')
const search = ref('')
// headers
const headers = [
{ title: 'PRODUCT', key: 'product.name' },
{ title: 'DATE', key: 'date' },
{ title: 'CATEGORY', key: 'product.category' },
{ title: 'BUYERS', key: 'buyer.name' },
{ title: 'PAYMENT', key: 'payment', sortable: false },
{ title: 'STATUS', key: 'status', sortable: false },
{ title: 'DELETE', key: 'delete', sortable: false },
]
// 👉 methods
const deleteItem = (itemId: number) => {
if (!productList.value)
return
const index = productList.value.findIndex(item => item.product.id === itemId)
productList.value.splice(index, 1)
}
const categoryIcons = [
{ name: 'Mouse', icon: 'ri-mouse-fill', color: 'warning' },
{ name: 'Glass', icon: 'ri-glasses-line', color: 'primary' },
{ name: 'Smart Watch', icon: 'ri-time-line', color: 'success' },
{ name: 'Bag', icon: 'ri-shopping-bag-line', color: 'info' },
{ name: 'Storage Device', icon: 'ri-tape-line', color: 'warning' },
{ name: 'Bluetooth', icon: 'ri-bluetooth-line', color: 'error' },
{ name: 'Gaming', icon: 'ri-gamepad-line', color: 'warning' },
{ name: 'Home', icon: 'ri-home-line', color: 'error' },
{ name: 'VR', icon: 'ri-goggles-line', color: 'primary' },
{ name: 'Shoes', icon: 'ri-omega', color: 'success' },
{ name: 'Electronics', icon: 'ri-flashlight-fill', color: 'info' },
{ name: 'Projector', icon: 'ri-projector-line', color: 'warning' },
{ name: 'iPod', icon: 'ri-music-line', color: 'error' },
{ name: 'Keyboard', icon: 'ri-keyboard-box-line', color: 'primary' },
{ name: 'Smart Phone', icon: 'ri-smartphone-line', color: 'success' },
{ name: 'Smart TV', icon: 'ri-tv-line', color: 'info' },
{ name: 'Google Home', icon: 'ri-google-line', color: 'warning' },
{ name: 'Mac', icon: 'ri-apple-line', color: 'error' },
{ name: 'Headphone', icon: 'ri-headphone-line', color: 'primary' },
{ name: 'iMac', icon: 'ri-computer-line', color: 'success' },
{ name: 'iPhone', icon: 'ri-apple-line', color: 'warning' },
]
const resolveStatusColor = (status: string) => {
if (status === 'Confirmed')
return 'primary'
if (status === 'Completed')
return 'success'
if (status === 'Cancelled')
return 'error'
}
const categoryIconFilter = (categoryName: string): {
icon: string
color: string
}[] => {
const index = categoryIcons.findIndex(category => category.name === categoryName)
if (index !== -1)
return [{ icon: categoryIcons[index].icon, color: categoryIcons[index].color }]
return [{ icon: 'ri-question-line', color: 'primary' }]
}
// Table headers
const headersapi: Header[] = [
{ title: 'ID', key: 'id', sortable: true },
{ title: 'Nama Lengkap', key: 'name', sortable: true },
{ title: 'Email', key: 'email', sortable: true },
{ title: 'Telepon', key: 'phone', sortable: true },
{ title: 'Alamat', key: 'address', sortable: true },
{ title: 'Aksi', key: 'operation', align: 'center', sortable: false },
];
// State management
const items = ref<Tendik[]>([]);
const searchText = ref('');
const loading = ref(false);
const error = ref('');
const showModal = ref(false);
const showDeleteModal = ref(false);
const modalMode = ref<'add' | 'edit' | 'view'>('add');
const selectedTendik = ref<Tendik | null>(null);
const dialogSetPassword = ref(false);
const newPassword = ref('');
const confirmPassword = ref('');
const isPasswordNewVisible = ref(false);
const isPasswordKonfVisible = ref(false);
// Interface for the API data
interface Tendik {
id: number;
name: string; // Full name
email: string;
phone: string;
address: string; // Full address
image: string; // User image
}
// Computed to filter items based on the search query
const filteredItems = computed(() => {
if (!searchText.value) return items.value;
const query = searchText.value.toLowerCase();
return items.value.filter((item) =>
[item.id, item.name, item.email, item.phone, item.address]
.map((field) => String(field).toLowerCase())
.some((field) => field.includes(query))
);
});
// Fetch data from API
onMounted(() => {
getData();
});
async function getData() {
loading.value = true;
error.value = '';
try {
const response = await fetch('https://dummyjson.com/users');
if (!response.ok) throw new Error('Gagal mengambil data');
const data = await response.json();
items.value = data.users.map((user: any) => ({
id: user.id,
name: `${user.firstName} ${user.lastName}`,
email: user.email,
phone: user.phone,
address: `${user.address.address}, ${user.address.city}, ${user.address.state} ${user.address.postalCode}, ${user.address.country}`,
image: user.image,
}));
} catch (err: any) {
error.value = err.message || 'Terjadi kesalahan saat mengambil data';
} finally {
loading.value = false;
}
}
// CRUD Operations
function openModal(mode: 'add' | 'edit' | 'view', tendik: Tendik | null = null) {
modalMode.value = mode;
selectedTendik.value = tendik
? { ...tendik }
: { id: Date.now(), name: '', email: '', phone: '', address: '', image: '' };
showModal.value = true;
}
function saveTendik() {
if (modalMode.value === 'add') {
items.value.push({ ...selectedTendik.value! });
} else if (modalMode.value === 'edit') {
const index = items.value.findIndex((s) => s.id === selectedTendik.value!.id);
if (index > -1) items.value[index] = { ...selectedTendik.value! };
}
showModal.value = false;
}
function confirmDelete(tendik: Tendik) {
selectedTendik.value = tendik;
showDeleteModal.value = true;
}
function deleteTendik() {
if (selectedTendik.value) {
const index = items.value.findIndex((s) => s.id === selectedTendik.value!.id);
if (index > -1) items.value.splice(index, 1);
}
showDeleteModal.value = false;
}
// Buka Dialog Password
function viewSetPassword(tendik: JsonDosen) {
selectedTendik.value = tendik;
dialogSetPassword.value = true;
}
const passwordRequirements = [
'Minimum 8 characters long - the more, the better',
'At least one lowercase character',
'At least one number',
'At least one symbol, or whitespace character',
]
// Aturan Validasi
const passwordRules = [
(v: string) => !!v || 'Password is required',
(v: string) => v.length >= 8 || 'Password must be at least 8 characters long',
(v: string) => /[a-z]/.test(v) || 'Password must contain at least one lowercase letter',
(v: string) => /[A-Z]/.test(v) || 'Password must contain at least one uppercase letter',
(v: string) => /\d/.test(v) || 'Password must contain at least one number',
(v: string) => /[ !"#$%&'()*+,-./:;<=>?@[\\\]^_`{|}~]/.test(v) || 'Password must contain at least one symbol or whitespace',
];
const confirmPasswordRules = [
(v: string) => !!v || 'Confirm password is required',
(v: string) => v === newPassword.value || 'Passwords do not match',
];
// Generate Password
function generatePassword(length: number = 10): string {
const lowercase = "abcdefghijklmnopqrstuvwxyz";
const uppercase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const numbers = "0123456789";
const symbols = ` !"#$%&'()*+,-./:;<=>?@[\\]^_\`{|}~`;
// At least one character from each required category
const mandatoryCharacters = [
lowercase[Math.floor(Math.random() * lowercase.length)],
uppercase[Math.floor(Math.random() * uppercase.length)],
numbers[Math.floor(Math.random() * numbers.length)],
symbols[Math.floor(Math.random() * symbols.length)],
];
// Combine all character sets into one charset
const allCharacters = lowercase + uppercase + numbers + symbols;
const remainingLength = length - mandatoryCharacters.length;
let password = mandatoryCharacters;
// Fill the rest of the password with random characters from the combined charset
for (let i = 0; i < remainingLength; i++) {
const randomChar = allCharacters[Math.floor(Math.random() * allCharacters.length)];
password.push(randomChar);
}
// Shuffle the password to ensure randomness
password = password.sort(() => Math.random() - 0.5);
// Return the password as a string
return password.join('');
}
// Set Password
function setPassword() {
if (newPassword.value.length < 8 || !/[a-z]/.test(newPassword.value) || !/\d/.test(newPassword.value) || !/[ !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~]/.test(newPassword.value)) {
alert("Password harus memiliki minimal 8 karakter, setidaknya satu huruf kecil, satu angka, dan satu karakter khusus.");
return;
}
if (newPassword.value !== confirmPassword.value) {
alert("Password dan konfirmasi password tidak cocok.");
return;
}
// Simulasi pengubahan password
// Di sini Anda bisa menambahkan logika untuk mengupdate password ke server
alert(`Password atas nama ${selectedTendik.value?.nama} sudah diubah`);
// Reset input
newPassword.value = '';
confirmPassword.value = '';
dialogSetPassword.value = false;
}
</script>
<template>
<div v-if="isAuthenticated">
<VCardText>
<VRow>
<VCol cols="12" md="8" sm="12">
<VBtn prepend-icon="ri-add-line" class="bg-primary" color="white" @click="openModal('add')">Tambah Data</VBtn>
</VCol>
<VCol cols="12" md="4" sm="12">
<VTextField v-model="searchText" label="Search" placeholder="Search ..." append-inner-icon="ri-search-line"
clearable @click:clear="searchText = ''" single-line hide-details dense outlined />
</VCol>
</VRow>
</VCardText>
<!-- 👉 Data Table API -->
<VDataTable :headers="headersapi" :items="filteredItems || []" :search="searchText" :items-per-page="10"
class="text-no-wrap">
<template #item.operation="{ item }">
<VBtn color="primary" size="small" icon @click="viewSetPassword(item)">
<VIcon icon="ri-lock-line" />
</VBtn>
<VBtn color="info" size="small" icon @click="openModal('view', item)">
<VIcon icon="ri-eye-line" />
</VBtn>
<VBtn color="warning" size="small" icon @click="openModal('edit', item)">
<VIcon icon="ri-pencil-line" />
</VBtn>
<VBtn color="error" size="small" icon @click="confirmDelete(item)">
<VIcon icon="ri-delete-bin-line" />
</VBtn>
</template>
</VDataTable>
<!-- Dialog untuk Set Password -->
<VDialog v-model="dialogSetPassword" persistent :max-width="$vuetify.display.smAndDown ? 'auto' : 400">
<DialogCloseBtn variant="text" size="default"
@click="dialogSetPassword = false; newPassword = ''; confirmPassword = '';" />
<VCard class="pa-sm-5 pa-3">
<VCardTitle class="text-center pb-5 text-h4">Set Password</VCardTitle>
<VCardText>
<VRow>
<VCol cols="12" md="12" class="mb-n3">
<VAlert color="primary" variant="tonal" class="mb-3">
<p class="mb-0">
<strong>Nama:</strong> {{ selectedTendik?.name }}
</p>
</VAlert>
<VTextField v-model="newPassword" label="Password Baru" :type="isPasswordNewVisible ? 'text' : 'password'"
:append-inner-icon="isPasswordNewVisible ? 'ri-eye-off-line' : 'ri-eye-line'"
@click:append-inner="isPasswordNewVisible = !isPasswordNewVisible" :rules="passwordRules" clearable
outlined dense />
</VCol>
<VCol cols="12" md="12">
<VTextField v-model="confirmPassword" label="Konfirmasi Password"
:type="isPasswordKonfVisible ? 'text' : 'password'"
:append-inner-icon="isPasswordKonfVisible ? 'ri-eye-off-line' : 'ri-eye-line'"
@click:append-inner="isPasswordKonfVisible = !isPasswordKonfVisible" :rules="confirmPasswordRules"
clearable outlined dense />
</VCol>
</VRow>
<VRow class="pl-3">
<h6 class="text-h6 text-body-2 mt-1">
Password Requirements:
</h6>
<VList>
<VListItem v-for="(item, index) in passwordRequirements" :key="index" class="px-0 mt-n4 mb-n2">
<template #prepend>
<VIcon size="8" icon="ri-circle-fill"
color="rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity))" />
</template>
<VListItemTitle class="text-body-2 text-wrap">
{{ item }}
</VListItemTitle>
</VListItem>
</VList>
</VRow>
</VCardText>
<VCardActions class="ma-n3">
<VCol cols="12" class="d-flex flex-wrap justify-center gap-2">
<VBtn class="bg-warning" color="white" variant="tonal" @click="setPassword">Save</VBtn>
<VBtn color="primary" variant="outlined"
@click="dialogSetPassword = false; newPassword = ''; confirmPassword = '';">Cancel</VBtn>
<VBtn color="secondary" variant="outlined"
@click="newPassword = generatePassword(); confirmPassword = newPassword">Generate Password</VBtn>
</VCol>
</VCardActions>
</VCard>
</VDialog>
<!-- Modal for Add/Edit/View -->
<VDialog v-model="showModal" persistent :max-width="$vuetify.display.smAndDown ? 'auto' : 500">
<!-- 👉 dialog close btn -->
<DialogCloseBtn variant="text" size="default" @click="showModal = false" />
<VCard class="pa-sm-3 pa-3">
<VCardTitle class="text-center pb-5 text-h4">
{{ modalMode === 'add' ? 'Tambah Data' : modalMode === 'edit' ? 'Edit Data' : 'Detail Data' }}
</VCardTitle>
<VCardText>
<VRow>
<VCol cols="12" md="12">
<VTextField v-model="selectedTendik.name" label="Nama Lengkap" dense :readonly="modalMode === 'view'" />
</VCol>
<VCol cols="12" md="12">
<VTextField v-model="selectedTendik.email" label="Email" dense :readonly="modalMode === 'view'" />
</VCol>
<VCol cols="12" md="12">
<VTextField v-model="selectedTendik.phone" label="Telepon" dense :readonly="modalMode === 'view'" />
</VCol>
<VCol cols="12" md="12">
<VTextarea v-model="selectedTendik.address" label="Alamat" dense :readonly="modalMode === 'view'" />
</VCol>
</VRow>
</VCardText>
<VCardActions>
<VSpacer />
<VBtn variant="outlined" @click="showModal = false">Batal</VBtn>
<VBtn v-if="modalMode !== 'view'" class="bg-success" color="white" variant="tonal" @click="saveTendik">Simpan
</VBtn>
</VCardActions>
</VCard>
</VDialog>
<!-- Modal for Delete Confirmation -->
<VDialog v-model="showDeleteModal" persistent :max-width="$vuetify.display.smAndDown ? 'auto' : 400">
<!-- 👉 dialog close btn -->
<DialogCloseBtn variant="text" size="default" @click="showDeleteModal = false" />
<VCard class="pa-sm-7 pa-3">
<VCardTitle class="text-center pb-5 text-h4">Konfirmasi Hapus</VCardTitle>
<VCardText class="text-justify">
Apakah Anda yakin ingin menghapus data <strong>{{ selectedTendik?.name }}</strong>?
</VCardText>
<VCardActions class="ma-n3">
<VSpacer />
<VBtn variant="outlined" @click="showDeleteModal = false">Batal</VBtn>
<VBtn variant="tonal" class="bg-error" color="white" @click="deleteTendik">Hapus</VBtn>
</VCardActions>
</VCard>
</VDialog>
</div>
<div v-else>
<VCardText>
<VRow>
<VCol cols="12" md="7" sm="12">
<VBtn v-if="isAuthenticated == false" class="bg-error ml-2 mr-2" prepend-icon="ri-user-follow-line">
Not Connected
</VBtn>
</VCol>
<VCol cols="12" md="5" sm="12">
<VTextField v-model="search" label="Search" placeholder="Search ..." append-inner-icon="ri-search-line"
single-line hide-details dense outlined />
</VCol>
</VRow>
</VCardText>
<!-- 👉 Data Table -->
<VDataTable :headers="headers" :items="productList || []" :search="search" :items-per-page="5" class="text-no-wrap">
<!-- product -->
<template #item.product.name="{ item }">
<div class="d-flex align-center">
<div>
<VImg :src="item.product.image" height="40" width="40" />
</div>
<div class="d-flex flex-column ms-3">
<span class="d-block font-weight-medium text-truncate text-high-emphasis">{{ item.product.name }}</span>
<span class="text-xs">{{ item.product.brand }}</span>
</div>
</div>
</template>
<!-- category -->
<template #item.product.category="{ item }">
<div class="d-flex align-center">
<VAvatar v-for="(category, index) in categoryIconFilter(item.product.category)" :key="index" size="26"
:color="category.color" variant="tonal">
<VIcon size="18" :color="category.color" class="rounded-0">
{{ category.icon }}
</VIcon>
</VAvatar>
<span class="ms-1 text-no-wrap">{{ item.product.category }}</span>
</div>
</template>
<!-- buyer -->
<template #item.buyer.name="{ item }">
<div class="d-flex align-center">
<VAvatar size="1.875rem" :color="!item.buyer.avatar ? 'primary' : undefined"
:variant="!item.buyer.avatar ? 'tonal' : undefined">
<VImg v-if="item.buyer.avatar" :src="item.buyer.avatar" />
<span v-else class="text-sm">{{ item.buyer.name.slice(0, 2).toUpperCase() }}</span>
</VAvatar>
<span class="text-no-wrap font-weight-medium text-high-emphasis ms-2">{{ item.buyer.name }}</span>
</div>
</template>
<!-- Payment -->
<template #item.payment="{ item }">
<div class="d-flex flex-column">
<div class="d-flex align-center">
<span class="text-high-emphasis font-weight-medium">${{ item.payment.paidAmount }}</span>
<span v-if="item.payment.paidAmount !== item.payment.total">/{{ item.payment.total }}</span>
</div>
<span class="text-xs text-no-wrap">{{ item.payment.receivedPaymentStatus }}</span>
</div>
</template>
<!-- Status -->
<template #item.status="{ item }">
<VChip :color="resolveStatusColor(item.payment.status)"
:class="`text-${resolveStatusColor(item.payment.status)}`" size="small" class="font-weight-medium">
{{ item.payment.status }}
</VChip>
</template>
<!-- Delete -->
<template #item.delete="{ item }">
<IconBtn size="small" @click="deleteItem(item.product.id)">
<VIcon icon="ri-delete-bin-line" />
</IconBtn>
</template>
</VDataTable>
</div>
</template>