hrms-edm/Services/client/src/components/ListView.vue

440 lines
11 KiB
Vue
Raw Normal View History

2023-11-28 09:22:44 +07:00
<script lang="ts" setup>
import { computed, ref } from 'vue'
import { storeToRefs } from 'pinia'
import type { QTableProps } from 'quasar'
2023-11-28 09:22:44 +07:00
import { useTreeDataStore, type TreeDataFolder } from '@/stores/tree-data'
import { useFileInfoStore } from '@/stores/file-info-data'
import FileIcon from '@/components/FileIcon.vue'
2023-11-28 17:44:56 +07:00
import FileForm from './FileForm.vue'
import FolderForm from './FolderForm.vue'
2023-11-28 09:22:44 +07:00
const { getFormatDate, getSize, getType, getFileInfo } = useFileInfoStore()
const { listDataFile, listDataFolder, currentDept, currentPath } =
storeToRefs(useTreeDataStore())
2023-11-28 17:44:56 +07:00
const {
createFolder,
editFolder,
getFolder,
deleteFolder,
uploadFile,
updateFile,
deleteFile,
checkFile,
2023-11-28 17:44:56 +07:00
} = useTreeDataStore()
const DEPT_NAME = ['ตู้เอกสาร', 'ลิ้นชัก', 'แฟ้ม', 'แฟ้มย่อย'] as const
const props = defineProps<{
mode: 'admin' | 'user'
}>()
2023-11-28 09:22:44 +07:00
const currentLevel = computed(() =>
currentDept.value === 0
? 'ตู้จัดเก็บเอกสาร'
: currentDept.value === 1
? 'ลิ้นชัก'
: currentDept.value === 2
? 'แฟ้ม'
: 'แฟ้มย่อย',
2023-11-28 09:22:44 +07:00
)
const currentIcon = computed(() =>
currentDept.value === 0
? 'mdi-file-cabinet'
: currentDept.value === 1
? 'inbox'
: 'o_folder_open',
2023-11-28 09:22:44 +07:00
)
2023-11-28 17:44:56 +07:00
const folderFormState = ref<boolean>(false)
const folderFormPath = ref<string>('')
const folderFormData = ref<{
name?: string
}>({})
const folderFormType = ref<'edit' | 'create'>('create')
const fileFormError = ref<{ fileExist?: boolean }>({})
2023-11-28 17:44:56 +07:00
const fileFormState = ref<boolean>(false)
const fileFormPath = ref<string>('')
const fileFormData = ref<{
file?: File
title?: string
description?: string
keyword?: string
category?: string
}>({})
const fileFormType = ref<'edit' | 'create'>('create')
function triggerFolderCreate() {
folderFormType.value = 'create'
folderFormData.value = {}
folderFormState.value = !folderFormState.value
}
function triggerFolderEdit(name: string, pathname: string) {
folderFormType.value = 'edit'
folderFormPath.value = pathname
folderFormData.value.name = name
folderFormState.value = true
}
async function submitFolderForm(value: {
mode: 'create' | 'edit'
name: string
}) {
if (value.mode === 'create') {
await createFolder(value.name)
} else {
await editFolder(value.name, folderFormPath.value)
}
}
function triggerFileCreate() {
fileFormType.value = 'create'
fileFormData.value = {}
fileFormState.value = !fileFormState.value
}
function triggerFileEdit(
value: {
title: string
description: string
keyword: string
category: string
},
pathname: string,
2023-11-28 17:44:56 +07:00
) {
fileFormState.value = true
fileFormType.value = 'edit'
fileFormPath.value = pathname
fileFormData.value = {
title: value.title,
description: value.description,
keyword: value.keyword,
category: value.keyword,
}
}
async function submitFileForm(value: {
mode: 'create' | 'edit'
file: File
title: string
description: string
keyword: string
category: string
}) {
if (value.mode === 'create') {
await uploadFile(currentPath.value, value.file, {
title: value.title,
description: value.description,
keyword: value.keyword,
category: value.category,
})
} else {
await updateFile(
fileFormPath.value,
{
title: value.title,
description: value.description,
keyword: value.keyword,
category: value.category,
},
value.file,
2023-11-28 17:44:56 +07:00
)
}
fileFormData.value = {}
fileFormState.value = false
}
2023-11-28 09:22:44 +07:00
const columnsFolder: QTableProps['columns'] = [
{
name: 'name',
required: true,
label: 'ชื่อ',
align: 'left',
field: (row) => row.name,
format: (val) => `${val}`,
sortable: true,
style: 'width: 1000px',
},
{
name: 'createdBy',
align: 'center',
label: 'สร้างโดย',
field: 'createdBy',
style: 'width: 20px',
sortable: true,
},
{
name: 'createdAt',
2023-11-28 09:22:44 +07:00
align: 'center',
label: 'วันที่สร้าง',
field: 'createdAt',
sortable: true,
style: 'width: 20px',
},
{
name: 'actions',
align: 'center',
label: '',
field: '',
style: 'width: 5px',
},
]
const columnsFile: QTableProps['columns'] = [
{
name: 'name',
2023-11-28 09:22:44 +07:00
required: true,
label: 'ชื่อไฟล์',
align: 'left',
field: (row) => row.fileName,
format: (val) => `${val}`,
sortable: true,
style: 'width: 200px',
},
{
name: 'title',
align: 'center',
label: 'ชื่อเรื่อง',
field: 'title',
style: 'width: 200px',
sortable: true,
},
{
name: 'fileType',
align: 'center',
label: 'ประเภทของไฟล์',
field: 'fileType',
sortable: true,
style: 'width: 200px',
},
{
name: 'actions',
align: 'center',
label: '',
field: '',
style: 'width: 20px',
},
]
2023-11-28 09:22:44 +07:00
const onRowClick = (evt: Event, row: TreeDataFolder, index: number) => {
getFolder(row.pathname)
}
2023-11-28 09:22:44 +07:00
</script>
<template>
<div class="q-pa-md">
<div class="q-gutter-sm">
<div
class="flex flex-break d justify-between space-between"
v-if="currentDept >= 1"
>
<div>
<span class="text-h6">{{ currentLevel }}</span>
</div>
<div>
<q-btn
2023-11-28 09:22:44 +07:00
v-if="props.mode == 'admin' && currentDept != 4"
2023-11-28 09:22:44 +07:00
outline
push
class="q-px-md q-ml-md q-py-sm"
:label="'สร้าง' + currentLevel"
type="submit"
color="primary"
dense
icon="add"
2023-11-28 17:44:56 +07:00
@click="() => triggerFolderCreate()"
2023-11-28 09:22:44 +07:00
/>
</div>
</div>
2023-11-28 17:44:56 +07:00
2023-11-28 09:22:44 +07:00
<q-table
flat
bordered
:rows="listDataFolder"
:columns="columnsFolder"
row-key="name"
hide-bottom
:rows-per-page-options="[0]"
2023-11-28 09:22:44 +07:00
@row-click="onRowClick"
class="cursor"
2023-11-28 09:22:44 +07:00
>
<template v-slot:body-cell-name="nameRow">
<q-td style="width: 50%">
2023-11-28 09:22:44 +07:00
<q-icon :name="currentIcon" size="2em" color="primary" />
{{ nameRow.row.name }}
</q-td>
</template>
<template v-slot:body-cell-createdAt="createdAtRow">
<q-td>
<div class="justify-center">
{{ getFormatDate(createdAtRow.row.createdAt) }}
</div>
</q-td>
</template>
2023-11-28 09:22:44 +07:00
<template v-slot:body-cell-actions="actionsRow">
<q-td class="justify-center">
<div>
<q-icon class="q-ma-sm" name="info" size="2em" color="primary" />
<q-tooltip
anchor="center left"
self="center right"
:offset="[5, 1]"
>
{{ actionsRow.row.name }}
</q-tooltip>
</div>
<div v-if="props.mode === 'admin'">
<q-btn
flat
color="positive"
dense
icon="edit"
2023-11-28 09:22:44 +07:00
@click.stop="
2023-11-28 17:44:56 +07:00
triggerFolderEdit(
actionsRow.row.name,
actionsRow.row.pathname,
2023-11-28 17:44:56 +07:00
)
"
/>
<q-btn
flat
color="negative"
dense
icon="delete"
2023-11-28 17:44:56 +07:00
@click.stop="deleteFolder(actionsRow.row.pathname)"
/>
2023-11-28 09:22:44 +07:00
</div>
</q-td>
</template>
</q-table>
</div>
</div>
<div class="q-pa-md" v-if="currentDept >= 3">
<div class="q-gutter-sm">
<div class="flex flex-break d justify-between space-between">
<div>
<span class="text-h6">เอกสาร</span>
</div>
<div>
<q-btn
2023-11-28 09:22:44 +07:00
v-if="props.mode == 'admin'"
2023-11-28 09:22:44 +07:00
outline
push
class="q-px-md q-ml-md q-py-sm"
label="สร้างเอกสาร"
type="submit"
color="primary"
dense
icon="add"
2023-11-28 17:44:56 +07:00
@click="() => triggerFileCreate()"
2023-11-28 09:22:44 +07:00
/>
</div>
</div>
<q-table
flat
bordered
:rows="listDataFile"
:columns="columnsFile"
row-key="name"
hide-bottom
:rows-per-page-options="[0]"
class="cursor"
2023-11-28 09:22:44 +07:00
>
<template v-slot:body-cell-name="nameRow">
<q-td
style="width: 50%"
2023-11-28 09:22:44 +07:00
@click="
() => {
currentDept >= 3
? getFileInfo(nameRow.row)
: getFolder(nameRow.row.pathname)
2023-11-28 09:22:44 +07:00
}
"
>
2023-11-28 09:22:44 +07:00
<file-icon size="list" :fileMimeType="nameRow.row.fileType" />
{{ nameRow.row.fileName }}
2023-11-28 09:22:44 +07:00
</q-td>
</template>
2023-11-28 09:22:44 +07:00
<template v-slot:body-cell-fileType="fileTypeRow">
<q-td>
<div class="justify-center">
{{ getType(fileTypeRow.row.fileType) }}
</div>
2023-11-28 09:22:44 +07:00
</q-td>
</template>
2023-11-28 09:22:44 +07:00
<template v-slot:body-cell-actions="actionsRow">
<q-td class="justify-center">
<div>
<q-icon class="q-ma-sm" name="info" size="2em" color="primary" />
<q-tooltip
anchor="center left"
self="center right"
:offset="[5, 1]"
>
{{ getSize(actionsRow.row.fileSize) }}
2023-11-28 09:22:44 +07:00
</q-tooltip>
</div>
<div v-if="props.mode === 'admin'">
2023-11-28 17:44:56 +07:00
<q-btn
flat
color="positive"
dense
icon="edit"
@click="
() => triggerFileEdit(actionsRow.row, actionsRow.row.pathname)
"
/>
<q-btn
flat
color="negative"
dense
icon="delete"
@click="() => deleteFile(actionsRow.row.pathname)"
/>
2023-11-28 09:22:44 +07:00
</div>
</q-td>
</template>
</q-table>
</div>
</div>
2023-11-28 17:44:56 +07:00
<file-form
:mode="fileFormType"
:error="fileFormError"
2023-11-28 17:44:56 +07:00
v-model:open="fileFormState"
v-model:title="fileFormData.title"
v-model:description="fileFormData.description"
v-model:keyword="fileFormData.keyword"
v-model:category="fileFormData.category"
@filechange="(name: string) => (fileFormError.fileExist = checkFile(name))"
2023-11-28 17:44:56 +07:00
@submit="submitFileForm"
2023-11-28 09:24:20 +07:00
/>
2023-11-28 17:44:56 +07:00
<folder-form
:mode="folderFormType"
:tree="DEPT_NAME[currentDept]"
v-if="currentDept < 4"
v-model:open="folderFormState"
v-model:name="folderFormData.name"
@submit="submitFolderForm"
2023-11-28 09:24:20 +07:00
/>
2023-11-28 09:22:44 +07:00
</template>
<style lang="scss" scoped>
.justify-center {
display: flex;
justify-content: center;
align-items: center;
}
2023-11-28 09:22:44 +07:00
.cursor {
cursor: pointer;
}
2023-11-28 09:22:44 +07:00
</style>