You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
518 lines
15 KiB
518 lines
15 KiB
<script setup lang="ts">
|
|
import IconDeleteBtn from "@/components/atoms/button/IconDeleteBtn.vue";
|
|
import IconModifyBtn from "@/components/atoms/button/IconModifyBtn.vue";
|
|
import IconInfoBtn from "@/components/atoms/button/IconInfoBtn.vue";
|
|
import { onMounted, ref } from "vue";
|
|
import { storage } from "@/utils/storage";
|
|
import ViewComponent from "@/components/templates/trainingscript/ViewComponent.vue";
|
|
import TrainingScriptBaseDoalog from "@/components/atoms/organisms/TrainingScriptBaseDoalog.vue";
|
|
import { AttachmentsService } from "@/components/service/management/attachmentsService";
|
|
import { commonStore } from "@/stores/commonStore";
|
|
|
|
const store = commonStore();
|
|
const openView = ref(false);
|
|
const openModify = ref(false);
|
|
|
|
const username = ref<string>("");
|
|
|
|
type SearchType = "전체" | "제목" | "작성자";
|
|
|
|
const searchOptions = [
|
|
{ label: "전체", value: "전체" as SearchType },
|
|
{ label: "제목", value: "제목" as SearchType },
|
|
{ label: "작성자", value: "작성자" as SearchType },
|
|
];
|
|
|
|
const SEARCH_TYPE_MAP: Record<SearchType | "", "ALL" | "TITLE" | "AUTHOR"> = {
|
|
"": "ALL",
|
|
전체: "ALL",
|
|
제목: "TITLE",
|
|
작성자: "AUTHOR",
|
|
};
|
|
|
|
const pageSizeOptions = [
|
|
{ text: "10 페이지", value: 10 },
|
|
{ text: "50 페이지", value: 50 },
|
|
{ text: "100 페이지", value: 100 },
|
|
];
|
|
|
|
// 테이블 헤더
|
|
const tableHeader = [
|
|
{ label: "Title", width: "7%", style: "word-break: keep-all;" },
|
|
{ label: "File Name", width: "7%", style: "word-break: keep-all;" },
|
|
{ label: "File Path", width: "7%", style: "word-break: keep-all;" },
|
|
{ label: "Description", width: "7%", style: "word-break: keep-all;" },
|
|
{ label: "Created Data", width: "7%", style: "word-break: keep-all;" },
|
|
{ label: "Modified Data", width: "7%", style: "word-break: keep-all;" },
|
|
{ label: "Action", width: "7%", style: "word-break: keep-all;" },
|
|
];
|
|
|
|
const data = ref({
|
|
params: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
searchType: "전체" as SearchType,
|
|
searchText: "",
|
|
},
|
|
results: [] as any[],
|
|
totalElements: 0,
|
|
pageLength: 0,
|
|
modalMode: "" as "create" | "edit" | "setting" | "",
|
|
selectedData: null as any,
|
|
allSelected: false,
|
|
selected: [] as Array<{ deviceKey: number }>,
|
|
isCreateVisible: false,
|
|
isUploadVisible: false,
|
|
isModalVisible: false,
|
|
isConfirmDialogVisible: false,
|
|
userOption: [] as any[],
|
|
});
|
|
|
|
// 유저명
|
|
function readUsernameFromStorage(): string {
|
|
try {
|
|
const raw =
|
|
storage?.get?.("autoflow-auth") ??
|
|
storage?.getAuth?.() ??
|
|
localStorage.getItem("autoflow-auth") ??
|
|
null;
|
|
const auth = typeof raw === "string" ? JSON.parse(raw) : raw;
|
|
const u1 = auth?.userInfo?.username;
|
|
|
|
return u1.toString();
|
|
} catch {
|
|
return "";
|
|
}
|
|
}
|
|
|
|
// 프로젝트 ID
|
|
const getProjectId = (): number => {
|
|
const v = Number(localStorage.getItem("projectId"));
|
|
return Number.isFinite(v) ? v : 0;
|
|
};
|
|
|
|
const fmtDate = (v?: string) =>
|
|
v ? String(v).replace("T", " ").slice(0, 19) : "";
|
|
|
|
// 행 변환기(표 스키마에 맞춤)
|
|
const toRow = (a: any) => ({
|
|
deviceKey: a.id,
|
|
id: a.id,
|
|
title: a.title ?? "",
|
|
fileName: a.originalName ?? "",
|
|
filePath: a.storagePath ?? "",
|
|
description: a.description ?? "",
|
|
createdData: fmtDate(a.regDt),
|
|
|
|
modifiedData: "-",
|
|
});
|
|
|
|
const fetchList = async () => {
|
|
const projectId = Number(localStorage.getItem("projectId"));
|
|
if (!projectId) {
|
|
console.warn("[TrainingScript] projectId 없음 — 프로젝트 먼저 선택");
|
|
data.value.results = [];
|
|
data.value.totalElements = 0;
|
|
data.value.pageLength = 0;
|
|
return;
|
|
}
|
|
|
|
const { pageNum, pageSize, searchType, searchText } = data.value.params;
|
|
|
|
const mapped = SEARCH_TYPE_MAP[searchType] || "ALL";
|
|
const keyword = (searchText || "").trim();
|
|
const needLocalFilter = mapped !== "ALL" && keyword.length > 0;
|
|
|
|
let reqPage = data.value.params.pageNum;
|
|
let reqSize = data.value.params.pageSize;
|
|
if (needLocalFilter) {
|
|
reqPage = 0;
|
|
reqSize = 1000;
|
|
}
|
|
|
|
const payload = {
|
|
projectId,
|
|
page: reqPage,
|
|
size: reqSize,
|
|
keyword,
|
|
searchType: mapped,
|
|
sortField: "id",
|
|
sortDirection: "DESC",
|
|
refType: "TRAINING_SCRIPT",
|
|
};
|
|
|
|
try {
|
|
const res = await AttachmentsService.search(payload as any);
|
|
const result = res?.data ?? res;
|
|
let list = result?.content ?? [];
|
|
|
|
if (needLocalFilter) {
|
|
const kw = keyword.toLowerCase();
|
|
if (mapped === "TITLE") {
|
|
list = list.filter((x: any) =>
|
|
String(x?.title ?? "")
|
|
.toLowerCase()
|
|
.includes(kw),
|
|
);
|
|
} else if (mapped === "AUTHOR") {
|
|
list = list.filter((x: any) =>
|
|
String(x?.regUserId ?? "")
|
|
.toLowerCase()
|
|
.includes(kw),
|
|
);
|
|
}
|
|
|
|
// 로컬 재페이지
|
|
const uiSize = data.value.params.pageSize;
|
|
const totalElements = list.length;
|
|
const totalPages = Math.max(1, Math.ceil(totalElements / uiSize));
|
|
const safePage = Math.min(Math.max(1, pageNum), totalPages);
|
|
const start = (safePage - 1) * uiSize;
|
|
const pageSlice = list.slice(start, start + uiSize);
|
|
|
|
data.value.results = pageSlice.map(toRow);
|
|
data.value.totalElements = totalElements;
|
|
data.value.pageLength = totalPages;
|
|
return;
|
|
}
|
|
|
|
// 서버 페이징 그대로 적용
|
|
data.value.results = (list as any[]).map(toRow);
|
|
data.value.totalElements = result?.totalElements ?? list.length;
|
|
data.value.pageLength = result?.totalPages ?? 1;
|
|
} catch (err) {
|
|
console.error("[TrainingScript] 조회 에러:", err);
|
|
data.value.results = [];
|
|
data.value.totalElements = 0;
|
|
data.value.pageLength = 1;
|
|
}
|
|
};
|
|
|
|
/** 검색 실행 (페이지 1로 리셋) */
|
|
const doSearch = () => {
|
|
data.value.params.pageNum = 1;
|
|
fetchList();
|
|
};
|
|
|
|
/** 페이지 이동 */
|
|
const changePageNum = (page: number) => {
|
|
data.value.params.pageNum = page;
|
|
fetchList();
|
|
};
|
|
|
|
/** 페이지 사이즈 변경 */
|
|
const changePageSize = (size: number) => {
|
|
data.value.params.pageSize = size;
|
|
data.value.params.pageNum = 1;
|
|
fetchList();
|
|
};
|
|
|
|
// 삭제/수정 버튼 등(기존 로직 유지)
|
|
const removeData = (value?: Array<{ deviceKey: number }>) => {
|
|
const removeList = value ?? data.value.selected;
|
|
if (!removeList || removeList.length === 0) return;
|
|
|
|
const ids = removeList.map((x) => x.deviceKey);
|
|
const removeOne = (id: number) =>
|
|
AttachmentsService.delete(id).then((res) => {
|
|
if (res.status < 200 || res.status >= 300) return Promise.reject(res);
|
|
});
|
|
|
|
const after = () => {
|
|
if (
|
|
ids.length >= data.value.results.length &&
|
|
data.value.params.pageNum > 1
|
|
) {
|
|
data.value.params.pageNum -= 1;
|
|
}
|
|
|
|
fetchList();
|
|
data.value.isConfirmDialogVisible = false;
|
|
data.value.selected = [];
|
|
data.value.allSelected = false;
|
|
};
|
|
|
|
// 단건/다건 처리
|
|
if (ids.length === 1) {
|
|
removeOne(ids[0])
|
|
.then(() => {
|
|
store.setSnackbarMsg({
|
|
color: "success",
|
|
text: "삭제되었습니다.",
|
|
result: 200,
|
|
});
|
|
after();
|
|
})
|
|
.catch((err) => {
|
|
console.error("삭제 실패:", err);
|
|
store.setSnackbarMsg({
|
|
color: "warning",
|
|
text: "삭제 실패",
|
|
result: 500,
|
|
});
|
|
});
|
|
} else {
|
|
Promise.all(ids.map(removeOne))
|
|
.then(() => {
|
|
store.setSnackbarMsg({
|
|
color: "success",
|
|
text: "모두 삭제되었습니다.",
|
|
result: 200,
|
|
});
|
|
})
|
|
.catch((err) => {
|
|
console.error("일부 삭제 실패:", err);
|
|
store.setSnackbarMsg({
|
|
color: "warning",
|
|
text: "일부 삭제 실패",
|
|
result: 500,
|
|
});
|
|
})
|
|
.finally(after);
|
|
}
|
|
};
|
|
|
|
const closeDetail = () => {
|
|
openView.value = false;
|
|
};
|
|
|
|
const openDetailModal = (selectedItem: any) => {
|
|
data.value.selectedData = selectedItem;
|
|
openView.value = true;
|
|
};
|
|
|
|
const openCreateModal = () => {
|
|
data.value.modalMode = "create";
|
|
data.value.selectedData = {
|
|
username: username.value,
|
|
projectId: getProjectId(),
|
|
};
|
|
data.value.isCreateVisible = true;
|
|
};
|
|
|
|
const openModifyModal = (item: any) => {
|
|
data.value.modalMode = "edit";
|
|
data.value.selectedData = {
|
|
id: item.deviceKey,
|
|
title: item.title,
|
|
description: item.description,
|
|
};
|
|
data.value.isCreateVisible = true;
|
|
};
|
|
const closeCreateModal = () => {
|
|
data.value.isModalVisible = false;
|
|
data.value.isCreateVisible = false;
|
|
data.value.selectedData = null;
|
|
};
|
|
|
|
const closeModifyModal = () => {
|
|
data.value.isModalVisible = false;
|
|
data.value.isUploadVisible = false;
|
|
data.value.selectedData = null;
|
|
};
|
|
|
|
const getSelectedAllData = () => {
|
|
data.value.selected = data.value.allSelected
|
|
? data.value.results.map((item: any) => ({ deviceKey: item.deviceKey }))
|
|
: [];
|
|
};
|
|
onMounted(() => {
|
|
username.value = readUsernameFromStorage();
|
|
fetchList();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-100" v-if="!openView">
|
|
<v-container fluid class="h-100 pa-5 d-flex flex-column align-center">
|
|
<v-card
|
|
flat
|
|
class="bg-shades-transparent d-flex flex-column align-center justify-center w-100"
|
|
>
|
|
<!-- 헤더 -->
|
|
<v-card flat class="bg-shades-transparent w-100">
|
|
<v-card-item class="text-h5 font-weight-bold pt-0 pa-5 pl-0">
|
|
<div class="d-flex flex-row justify-start align-center">
|
|
<div class="text-primary">Training Script</div>
|
|
</div>
|
|
</v-card-item>
|
|
</v-card>
|
|
|
|
<v-card flat class="bg-shades-transparent w-100">
|
|
<!-- 검색 영역 -->
|
|
<v-card flat class="bg-shades-transparent mb-4">
|
|
<div class="d-flex justify-center flex-wrap align-center">
|
|
<v-responsive
|
|
max-width="180"
|
|
min-width="180"
|
|
class="mr-3 mt-3 mb-3"
|
|
>
|
|
<v-select
|
|
v-model="data.params.searchType"
|
|
label="검색조건"
|
|
density="compact"
|
|
:items="searchOptions"
|
|
item-title="label"
|
|
item-value="value"
|
|
hide-details
|
|
/>
|
|
</v-responsive>
|
|
|
|
<v-responsive min-width="540" max-width="540">
|
|
<v-text-field
|
|
v-model="data.params.searchText"
|
|
label="검색어"
|
|
density="compact"
|
|
clearable
|
|
required
|
|
class="mt-3 mb-3"
|
|
hide-details
|
|
@keyup.enter="doSearch"
|
|
/>
|
|
</v-responsive>
|
|
|
|
<div class="ml-3">
|
|
<v-btn
|
|
size="large"
|
|
color="primary"
|
|
:rounded="5"
|
|
@click="doSearch"
|
|
>
|
|
<v-icon>mdi-magnify</v-icon>
|
|
</v-btn>
|
|
</div>
|
|
</div>
|
|
</v-card>
|
|
|
|
<!-- 상단 툴바 -->
|
|
<v-sheet
|
|
class="bg-shades-transparent d-flex flex-wrap align-center mb-2"
|
|
>
|
|
<v-sheet class="d-flex flex-wrap me-auto bg-shades-transparent">
|
|
<v-sheet
|
|
class="d-flex align-center mr-3 mb-2 bg-shades-transparent"
|
|
>
|
|
<!-- 스크립트의 totalElements 사용 -->
|
|
<v-chip color="primary"
|
|
>총 {{ data.totalElements.toLocaleString() }}개</v-chip
|
|
>
|
|
</v-sheet>
|
|
|
|
<v-sheet class="bg-shades-transparent">
|
|
<v-responsive max-width="140" min-width="140" class="mb-2">
|
|
<v-select
|
|
v-model="data.params.pageSize"
|
|
density="compact"
|
|
:items="pageSizeOptions"
|
|
item-title="text"
|
|
item-value="value"
|
|
variant="outlined"
|
|
color="primary"
|
|
hide-details
|
|
@update:model-value="changePageSize"
|
|
/>
|
|
</v-responsive>
|
|
</v-sheet>
|
|
</v-sheet>
|
|
|
|
<v-sheet class="justify-end mb-2">
|
|
<v-btn color="info" @click="openCreateModal">Create Script</v-btn>
|
|
</v-sheet>
|
|
</v-sheet>
|
|
|
|
<!-- 목록 -->
|
|
<v-card class="rounded-lg pa-8">
|
|
<v-col cols="12">
|
|
<v-sheet>
|
|
<v-table
|
|
density="comfortable"
|
|
fixed-header
|
|
height="625"
|
|
overflow-x-auto
|
|
>
|
|
<colgroup>
|
|
<col
|
|
v-for="(item, i) in tableHeader"
|
|
:key="i"
|
|
:style="`width:${item.width}`"
|
|
/>
|
|
</colgroup>
|
|
|
|
<thead>
|
|
<tr>
|
|
<th
|
|
v-for="(item, i) in tableHeader"
|
|
:key="i"
|
|
class="text-center font-weight-bold"
|
|
:style="item.style"
|
|
>
|
|
{{ item.label }}
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody class="text-body-2">
|
|
<tr
|
|
v-for="(item, i) in data.results"
|
|
:key="i"
|
|
class="text-center"
|
|
>
|
|
<td>{{ item.title }}</td>
|
|
<td>{{ item.fileName }}</td>
|
|
<td>{{ item.filePath }}</td>
|
|
<td>{{ item.description }}</td>
|
|
<td>{{ item.createdData }}</td>
|
|
<td>{{ item.modifiedData }}</td>
|
|
<td style="white-space: nowrap">
|
|
<IconInfoBtn @on-click="openDetailModal(item)" />
|
|
<IconModifyBtn @on-click="openModifyModal(item)" />
|
|
<IconDeleteBtn
|
|
@on-click="
|
|
removeData([{ deviceKey: item.deviceKey }])
|
|
"
|
|
/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</v-table>
|
|
</v-sheet>
|
|
|
|
<v-card-actions class="text-center mt-8 justify-center">
|
|
<v-pagination
|
|
v-model="data.params.pageNum"
|
|
:length="data.pageLength"
|
|
:total-visible="10"
|
|
color="primary"
|
|
rounded="circle"
|
|
@update:model-value="changePageNum"
|
|
/>
|
|
</v-card-actions>
|
|
</v-col>
|
|
</v-card>
|
|
</v-card>
|
|
</v-card>
|
|
</v-container>
|
|
|
|
<!-- 등록 다이얼로그 -->
|
|
<v-dialog v-model="data.isCreateVisible" max-width="600" persistent>
|
|
<TrainingScriptBaseDoalog
|
|
:edit-data="data.selectedData"
|
|
:mode="data.modalMode"
|
|
@close-modal="closeCreateModal"
|
|
@saved="fetchList"
|
|
:user-option="data.userOption"
|
|
/>
|
|
</v-dialog>
|
|
</div>
|
|
|
|
<div class="w-100" v-else>
|
|
<ViewComponent
|
|
v-if="data.selectedData"
|
|
:id="data.selectedData.deviceKey"
|
|
@close="closeDetail"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|