532 lines
15 KiB
Vue
532 lines
15 KiB
Vue
<script setup lang="ts">
|
|
import { onMounted, reactive, ref, useAttrs } from "vue";
|
|
import type { QTableProps } from "quasar";
|
|
import type { FormPlacementMainData } from "@/modules/05_placement/interface/request/Main";
|
|
import type { DataOption } from "@/modules/05_placement/interface/index/Main";
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import { usePlacementDataStore } from "@/modules/05_placement/store";
|
|
import router from "@/router";
|
|
|
|
const DataStore = usePlacementDataStore();
|
|
|
|
const mixin = useCounterMixin();
|
|
const { dateText } = mixin;
|
|
|
|
// แปลงเวลา ค.ศ ให้เป็น พ.ศ
|
|
const textDate = (value: Date) => {
|
|
return dateText(value);
|
|
};
|
|
|
|
// หัวตาราง
|
|
const columns = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "id",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: true,
|
|
field: "id",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "examRound",
|
|
align: "left",
|
|
label: "รอบการสอบ",
|
|
sortable: true,
|
|
field: "examRound",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "examOrder",
|
|
align: "left",
|
|
label: "ครั้งที่",
|
|
sortable: true,
|
|
field: "examOrder",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "fiscalYear",
|
|
align: "left",
|
|
label: "ปีงบประมาณ",
|
|
sortable: true,
|
|
field: "fiscalYear",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "numberofCandidates",
|
|
align: "left",
|
|
label: "จำนวนผู้สอบได้",
|
|
sortable: false,
|
|
field: "numberofCandidates",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "examType",
|
|
align: "left",
|
|
label: "ประเภทการสอบ",
|
|
sortable: false,
|
|
field: "examType",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "accountExpirationDate",
|
|
align: "left",
|
|
label: "วันที่บัญชีหมดอายุ",
|
|
sortable: true,
|
|
field: "accountExpirationDate",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
]);
|
|
|
|
// ข้อมูลตาราง (จำลอง)
|
|
const rows = ref<FormPlacementMainData[]>([
|
|
{
|
|
id: 1,
|
|
examRound:
|
|
"การสอบแข่งขันเพื่อรับบุคคลทั่วไปเข้ารับราชการ ส่วนการจัดการทั่วไป",
|
|
examOrder: 3,
|
|
fiscalYear: 2023,
|
|
numberofCandidates: 8,
|
|
examType: 1,
|
|
accountExpirationDate: "2023-02-28T14:47:04.1785384Z",
|
|
},
|
|
{
|
|
id: 2,
|
|
examRound:
|
|
"การสอบแข่งขันเพื่อรับบุคคลทั่วไปเข้ารับราชการ ส่วนการจัดการทั่วไป",
|
|
examOrder: 2,
|
|
fiscalYear: 2023,
|
|
numberofCandidates: 12,
|
|
examType: 1,
|
|
accountExpirationDate: "2023-02-28T14:47:04.1785384Z",
|
|
},
|
|
{
|
|
id: 3,
|
|
examRound:
|
|
"การสอบแข่งขันเพื่อรับบุคคลทั่วไปเข้ารับราชการ ส่วนการจัดการทั่วไป",
|
|
examOrder: 2,
|
|
fiscalYear: 2023,
|
|
numberofCandidates: 20,
|
|
examType: 1,
|
|
accountExpirationDate: "2023-01-31T14:47:04.1785384Z",
|
|
},
|
|
{
|
|
id: 4,
|
|
examRound:
|
|
"การสอบแข่งขันเพื่อรับบุคคลทั่วไปเข้ารับราชการ ส่วนการจัดการทั่วไป",
|
|
examOrder: 2,
|
|
fiscalYear: 2022,
|
|
numberofCandidates: 16,
|
|
examType: 2,
|
|
accountExpirationDate: "2023-11-30T14:47:04.1785384Z",
|
|
},
|
|
{
|
|
id: 5,
|
|
examRound:
|
|
"การสอบแข่งขันเพื่อรับบุคคลทั่วไปเข้ารับราชการ ส่วนการจัดการทั่วไป",
|
|
examOrder: 1,
|
|
fiscalYear: 2021,
|
|
numberofCandidates: 20,
|
|
examType: 2,
|
|
accountExpirationDate: "2024-05-21T14:47:04.1785384Z",
|
|
},
|
|
]);
|
|
|
|
let OriginalData = ref<FormPlacementMainData[]>([]);
|
|
let UpdataData = ref<FormPlacementMainData[]>([]);
|
|
|
|
const OriginalDataFetch = async () => {
|
|
// API
|
|
// await http
|
|
// .get(config.API.// ตัวอย่าง)
|
|
// .then((res: any) => {
|
|
// })
|
|
// .catch((e: any) => {
|
|
// messageError($q, e);
|
|
// })
|
|
// .finally(async () => {
|
|
// });
|
|
await DataStore.DataMain(rows.value);
|
|
OriginalData.value = await DataStore.DataMainOrig;
|
|
UpdataData.value = OriginalData.value;
|
|
};
|
|
|
|
onMounted(async () => {
|
|
await OriginalDataFetch();
|
|
fiscalYearFilter();
|
|
examTimeFilter();
|
|
examTypeFilter();
|
|
await expiredAccountFilter();
|
|
searchFilterTable();
|
|
});
|
|
|
|
// ดูรายการสอบแข่งขัน หน้าต่อไป
|
|
const redirectToPage = (id?: number) => {
|
|
// router.push({ name: 'placementDetail'});
|
|
router.push(`/placement/detail`);
|
|
};
|
|
|
|
// เลือกปีงบประมาณ
|
|
const fiscalyear = ref<number | null>(0);
|
|
const fiscalyearOP = reactive<DataOption[]>([{ id: 0, name: "ทั้งหมด" }]);
|
|
const addedfiscalYearValues: number[] = [];
|
|
const fiscalYearFilter = async () => {
|
|
// API
|
|
// await http
|
|
// .get(config.API.// ตัวอย่าง)
|
|
// .then((res: any) => {
|
|
// DataStore.DataMainYearSet(rows.value);
|
|
// fiscalyearOP.value = DataStore.DataMainYearGet;
|
|
// })
|
|
// .catch((e: any) => {
|
|
// messageError($q, e);
|
|
// })
|
|
// .finally(async () => {
|
|
// });
|
|
for (let data of OriginalData.value) {
|
|
const year = data.fiscalYear + 543;
|
|
|
|
if (fiscalyear.value === null || year > fiscalyear.value) {
|
|
fiscalyear.value = year;
|
|
}
|
|
|
|
if (!addedfiscalYearValues.includes(year)) {
|
|
fiscalyearOP.push({ id: year, name: year.toString() });
|
|
addedfiscalYearValues.push(year);
|
|
}
|
|
}
|
|
};
|
|
|
|
// เลือกปีงบประมาณตาม API
|
|
const searchfiscalyear = () => {
|
|
console.log("Input value changed:", fiscalyear.value);
|
|
// API
|
|
// await http
|
|
// .get(config.API.// ตัวอย่าง)
|
|
// .then((res: any) => {
|
|
// })
|
|
// .catch((e: any) => {
|
|
// messageError($q, e);
|
|
// })
|
|
// .finally(async () => {
|
|
// });
|
|
};
|
|
|
|
// ค้นหาในตาราง
|
|
const filterKeyword = ref<string>("");
|
|
const filterRef = ref<any>(null);
|
|
const resetFilter = () => {
|
|
filterKeyword.value = "";
|
|
filterRef.value.focus();
|
|
};
|
|
|
|
const attrs = ref<any>(useAttrs());
|
|
const visibleColumns = ref<string[]>([
|
|
"id",
|
|
"examRound",
|
|
"examOrder",
|
|
"fiscalYear",
|
|
"numberofCandidates",
|
|
"examType",
|
|
"accountExpirationDate",
|
|
]); //ค้นหา คอลัมน์ คอลัมน์ที่แสดง
|
|
|
|
// ครั้งที่สอบ
|
|
const examTime = ref<number | null>(null);
|
|
const examTimeOP = ref<number[]>([]);
|
|
const examTimeFilter = async () => {
|
|
for (let data of OriginalData.value) {
|
|
if (!examTimeOP.value.includes(data.examOrder)) {
|
|
examTimeOP.value.push(data.examOrder);
|
|
}
|
|
}
|
|
examTimeOP.value.sort((a, b) => a - b); // เรียงลำดับ
|
|
};
|
|
|
|
// ประเภทการสอบ
|
|
const examType = ref<number | null>(0);
|
|
const examTypeOP = reactive<DataOption[]>([{ id: 0, name: "ทั้งหมด" }]);
|
|
const addedexamTypeValues: number[] = [];
|
|
const examTypeFilter = async () => {
|
|
for (let data of OriginalData.value) {
|
|
const examTypeValue = data.examType;
|
|
if (examTypeValue == 1 && !addedexamTypeValues.includes(1)) {
|
|
examTypeOP.push({ id: 1, name: "คัดเลือก" });
|
|
addedexamTypeValues.push(1);
|
|
} else if (examTypeValue == 2 && !addedexamTypeValues.includes(2)) {
|
|
examTypeOP.push({ id: 2, name: "สอบแข่งขัน" });
|
|
addedexamTypeValues.push(2);
|
|
}
|
|
}
|
|
};
|
|
|
|
const searchFilterTable = async () => {
|
|
// console.log('Input value changed:', examTime.value, examType.value, expiredAccount.value);
|
|
await DataStore.DataUpdateMain(
|
|
examTime.value,
|
|
examType.value,
|
|
expiredAccount.value
|
|
);
|
|
UpdataData.value = DataStore.DataMainUpdate;
|
|
};
|
|
|
|
// บัญชีหมดอายุ
|
|
const expiredAccount = ref<boolean>(false);
|
|
const expiredAccountFilter = async () => {
|
|
const currentDate = new Date();
|
|
const updatedRows = OriginalData.value.map((data) => {
|
|
let expirationDate = new Date(data.accountExpirationDate);
|
|
let isExpired = expirationDate < currentDate;
|
|
|
|
return { ...data, isExpired };
|
|
});
|
|
await DataStore.DataMain(updatedRows);
|
|
};
|
|
|
|
const paging = ref<boolean>(true);
|
|
const pagination = ref({
|
|
sortBy: "desc",
|
|
descending: false,
|
|
page: 1,
|
|
rowsPerPage: 10,
|
|
});
|
|
const paginationLabel = (start: string, end: string, total: string) => {
|
|
if (paging.value == true) return " " + start + "-" + end + " ใน " + total;
|
|
else return start + "-" + end + " ใน " + total;
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="toptitle text-dark col-12 row items-center">
|
|
รายการสอบแข่งขัน / คัดเลือก
|
|
</div>
|
|
<q-card flat bordered class="col-12 q-mt-sm q-pa-md">
|
|
<div class="row q-col-gutter-sm">
|
|
<div class="row col-12 q-col-gutter-sm">
|
|
<q-select
|
|
class="col-xs-12 col-sm-3 col-md-2"
|
|
v-model="fiscalyear"
|
|
label="ปีงบประมาณ"
|
|
dense
|
|
emit-value
|
|
map-options
|
|
:options="fiscalyearOP"
|
|
option-value="id"
|
|
option-label="name"
|
|
lazy-rules
|
|
hide-bottom-space
|
|
:readonly="false"
|
|
:borderless="false"
|
|
:outlined="true"
|
|
:hide-dropdown-icon="false"
|
|
@update:model-value="searchfiscalyear"
|
|
/>
|
|
<q-space />
|
|
<q-input
|
|
class="col-xs-12 col-sm-3 col-md-2"
|
|
standout
|
|
dense
|
|
v-model="filterKeyword"
|
|
ref="filterRef"
|
|
outlined
|
|
debounce="300"
|
|
placeholder="ค้นหา"
|
|
>
|
|
<template v-slot:append>
|
|
<q-icon v-if="filterKeyword == ''" name="search" />
|
|
<q-icon
|
|
v-if="filterKeyword !== ''"
|
|
name="clear"
|
|
class="cursor-pointer"
|
|
@click="resetFilter"
|
|
/>
|
|
</template>
|
|
</q-input>
|
|
<q-select
|
|
class="col-xs-12 col-sm-3 col-md-2"
|
|
v-model="visibleColumns"
|
|
multiple
|
|
outlined
|
|
dense
|
|
options-dense
|
|
:display-value="$q.lang.table.columns"
|
|
emit-value
|
|
map-options
|
|
:options="columns"
|
|
option-value="name"
|
|
options-cover
|
|
/>
|
|
</div>
|
|
<div class="col-12">
|
|
<q-card bordered class="col-12 filter-card q-pa-sm">
|
|
<div class="row col-12 q-col-gutter-sm">
|
|
<q-select
|
|
class="col-xs-12 col-sm-3 col-md-2"
|
|
v-model="examTime"
|
|
label="ครั้งที่"
|
|
dense
|
|
emit-value
|
|
map-options
|
|
:options="examTimeOP"
|
|
option-value="id"
|
|
option-label="name"
|
|
lazy-rules
|
|
hide-bottom-space
|
|
:readonly="false"
|
|
:borderless="false"
|
|
:outlined="true"
|
|
:hide-dropdown-icon="false"
|
|
@update:model-value="searchFilterTable"
|
|
/>
|
|
<q-select
|
|
class="col-xs-12 col-sm-3 col-md-2"
|
|
v-model="examType"
|
|
label="ประเภทการสอบ"
|
|
dense
|
|
emit-value
|
|
map-options
|
|
option-label="name"
|
|
:options="examTypeOP"
|
|
option-value="id"
|
|
lazy-rules
|
|
hide-bottom-space
|
|
:readonly="false"
|
|
:borderless="false"
|
|
:outlined="true"
|
|
:hide-dropdown-icon="false"
|
|
@update:model-value="searchFilterTable"
|
|
/>
|
|
<q-toggle
|
|
class="col-xs-12 col-sm-5 col-md-5 toggle-expired-account"
|
|
v-model="expiredAccount"
|
|
color="blue"
|
|
label="แสดงบัญชีหมดอายุ"
|
|
@update:model-value="searchFilterTable"
|
|
/>
|
|
</div>
|
|
</q-card>
|
|
</div>
|
|
<div class="col-12">
|
|
<q-table
|
|
ref="table"
|
|
:columns="columns"
|
|
:rows="UpdataData"
|
|
:filter="filterKeyword"
|
|
row-key="id"
|
|
flat
|
|
bordered
|
|
dense
|
|
class="custom-header-table"
|
|
v-bind="attrs"
|
|
:visible-columns="visibleColumns"
|
|
:pagination-label="paginationLabel"
|
|
v-model:pagination="pagination"
|
|
>
|
|
<template v-slot:pagination="scope">
|
|
<q-pagination
|
|
v-model="pagination.page"
|
|
color="primary"
|
|
:max="scope.pagesNumber"
|
|
:max-pages="5"
|
|
size="sm"
|
|
boundary-links
|
|
direction-links
|
|
></q-pagination>
|
|
</template>
|
|
<template v-slot:body="props">
|
|
<q-tr
|
|
:props="props"
|
|
class="cursor-pointer"
|
|
@click="redirectToPage(props.row.id)"
|
|
>
|
|
<q-td key="id" :props="props">
|
|
{{ props.row.id }}
|
|
</q-td>
|
|
<q-td key="examRound" :props="props">
|
|
{{ props.row.examRound }}
|
|
</q-td>
|
|
<q-td key="examOrder" :props="props">
|
|
{{ props.row.examOrder }}
|
|
</q-td>
|
|
<q-td key="fiscalYear" :props="props">
|
|
{{ props.row.fiscalYear + 543 }}
|
|
</q-td>
|
|
<q-td key="numberofCandidates" :props="props">
|
|
{{ props.row.numberofCandidates }}
|
|
</q-td>
|
|
<q-td key="examType" :props="props">
|
|
{{ props.row.examType == 1 ? "คัดเลือก" : "สอบแข่งขัน" }}
|
|
</q-td>
|
|
<q-td key="accountExpirationDate" :props="props">
|
|
{{ textDate(props.row.accountExpirationDate) }}
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</q-table>
|
|
</div>
|
|
</div>
|
|
</q-card>
|
|
</template>
|
|
|
|
<style lang="scss" scope>
|
|
.filter-card {
|
|
background-color: #f1f1f1b0;
|
|
}
|
|
|
|
.toggle-expired-account {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
font-size: 15px;
|
|
line-height: 150%;
|
|
color: #35373c;
|
|
}
|
|
|
|
.icon-color {
|
|
color: #4154b3;
|
|
}
|
|
|
|
.custom-header-table {
|
|
max-height: 64vh;
|
|
|
|
.q-table tr:nth-child(odd) td {
|
|
background: white;
|
|
}
|
|
|
|
.q-table tr:nth-child(even) td {
|
|
background: #f8f8f8;
|
|
}
|
|
|
|
.q-table thead tr {
|
|
background: #ecebeb;
|
|
}
|
|
|
|
.q-table thead tr th {
|
|
position: sticky;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* this will be the loading indicator */
|
|
.q-table thead tr:last-child th {
|
|
/* height of all previous header rows */
|
|
top: 48px;
|
|
}
|
|
|
|
.q-table thead tr:first-child th {
|
|
top: 0;
|
|
}
|
|
}
|
|
</style>
|