hrms-admin/src/modules/01_metadata/components/personal/01_Prefix.vue

252 lines
6.8 KiB
Vue
Raw Normal View History

2024-05-29 17:58:57 +07:00
<script setup lang="ts">
import { ref, onMounted } from "vue";
import { useQuasar } from "quasar";
2024-05-29 17:58:57 +07:00
import http from "@/plugins/http";
import config from "@/app.config";
import { useCounterMixin } from "@/stores/mixin";
import { usePersonalDataStore } from "@/modules/01_metadata/stores/personalStore";
import type { QTableProps } from "quasar";
import DialogForm from "@/modules/01_metadata/components/personal/DialogForm.vue"; // เพิ่มข้อมูล,แก้ไขข้อมูล
const $q = useQuasar();
const store = usePersonalDataStore();
const { messageError, showLoader, hideLoader, success } = useCounterMixin();
/**
* Table
*/
2024-05-29 17:58:57 +07:00
const TABLE_COLUMNS = [
{
name: "prefix",
align: "left",
label: "คำนำหน้าชื่อ",
sortable: true,
field: "name",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "createdAt",
align: "left",
label: "วันที่สร้าง",
sortable: true,
field: "createdAt",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "lastUpdatedAt",
align: "left",
label: "วันที่แก้ไข",
sortable: true,
field: "lastUpdatedAt",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
{
name: "lastUpdateFullName",
align: "left",
label: "ผู้ดำเนินการ",
sortable: true,
field: "lastUpdateFullName",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
sort: (a: string, b: string) =>
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
},
] as const satisfies QTableProps["columns"];
const visibleColumns = ref<string[]>([
"prefix",
"createdAt",
"lastUpdatedAt",
"lastUpdateFullName",
]);
2024-05-29 17:58:57 +07:00
const filterKeyword = ref<string>(""); //คำค้นหา
const dialog = ref<boolean>(false); // เพิ่มข้อมูล,แก้ไขข้อมูล
const prefix = ref<string>(""); // คำนำหน้าชื่อ
const editId = ref<string>(""); // id คำนำหน้าชื่อ
const dialogStatus = ref<string>(""); // สถานะ เพิ่มข้อมูล,แก้ไขข้อมูล
const personalName = ref<string>("คำนำหน้าชื่อ"); //label input
2024-05-29 17:58:57 +07:00
/**
* fetch อมลรายการ คำนำหนาช
* นทกขอมลลงใน store
*/
2024-05-29 17:58:57 +07:00
async function fetchData() {
showLoader();
await http
.get(config.API.orgPrefix)
.then(async (res) => {
await store.save(res.data.result);
2024-05-29 17:58:57 +07:00
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
});
}
/**
* เพมขอมลรายการคำนำหนาช
* แล fetch อมลรายการ คำนำหนาช ใหม
*/
2024-05-29 17:58:57 +07:00
async function addData() {
showLoader();
2024-05-29 17:58:57 +07:00
await http
.post(config.API.orgPrefix, {
name: prefix.value,
})
.then(async () => {
await fetchData();
2024-05-29 17:58:57 +07:00
success($q, "บันทึกข้อมูลสำเร็จ");
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
});
}
/**
* แกไขขอมลรายการคำนำหนาช
* แล fetch อมลรายการ คำนำหนาช ใหม
* @param id รายการคำนำหนาช
*/
2024-05-29 17:58:57 +07:00
async function editData(id: string) {
showLoader();
2024-05-29 17:58:57 +07:00
await http
.put(config.API.orgPrefixId(id), {
name: prefix.value,
})
.then(async () => {
await fetchData();
2024-05-29 17:58:57 +07:00
success($q, "บันทึกข้อมูลสำเร็จ");
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
});
}
/**
* hook ทำงานเม Components กเรยกใชงาน
* แลวเรยก function fetch อมลรายการคำนำหนาช
*/
2024-05-29 17:58:57 +07:00
onMounted(async () => {
await fetchData();
2024-05-29 17:58:57 +07:00
});
</script>
<template>
<q-toolbar style="padding: 0">
<q-btn
flat
round
color="primary"
icon="add"
@click.stop="
() => {
dialogStatus = 'create';
dialog = true;
}
"
>
<q-tooltip> เพมขอม </q-tooltip>
</q-btn>
<q-space />
<div class="row q-gutter-sm">
<q-input outlined dense v-model="filterKeyword" label="ค้นหา"></q-input>
<q-select
v-model="visibleColumns"
multiple
outlined
dense
options-dense
:display-value="$q.lang.table.columns"
emit-value
map-options
:options="TABLE_COLUMNS"
option-value="name"
options-cover
style="min-width: 150px"
/>
</div>
</q-toolbar>
<d-table
ref="table"
:columns="TABLE_COLUMNS"
:rows="store.row"
:filter="filterKeyword"
row-key="name"
flat
bordered
:paging="true"
dense
class="custom-header-table"
:visible-columns="visibleColumns"
>
<template v-slot:header="props">
<q-tr :props="props">
<q-th auto-width />
2024-05-29 17:58:57 +07:00
<q-th v-for="col in props.cols" :key="col.name" :props="props">
<span class="text-weight-medium">{{ col.label }}</span>
</q-th>
</q-tr>
</template>
<template v-slot:body="props">
2024-08-20 17:21:12 +07:00
<q-tr :props="props">
2024-05-29 17:58:57 +07:00
<q-td auto-width>
<q-btn
color="edit"
flat
dense
round
class="q-mr-xs"
icon="edit"
clickable
@click.stop="
() => {
dialogStatus = 'edit';
dialog = true;
prefix = props.row.name;
editId = props.row.id;
}
"
>
<q-tooltip>แกไขขอม</q-tooltip>
</q-btn>
</q-td>
<q-td v-for="col in props.cols" :key="col.id">
{{ col.value }}
</q-td>
2024-05-29 17:58:57 +07:00
</q-tr>
</template>
</d-table>
<DialogForm
v-model:dialog="dialog"
v-model:data="prefix"
v-model:personal-name="personalName"
v-model:dialog-status="dialogStatus"
v-model:edit-id="editId"
:add-data="addData"
2024-05-29 17:58:57 +07:00
:fetch-data="fetchData"
:edit-data="editData"
/>
</template>