ERP-node/frontend/app/(main)/admin/automaticMng/exCallConfList/page.tsx

462 lines
15 KiB
TypeScript

"use client";
import React, { useState, useEffect } from "react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Badge } from "@/components/ui/badge";
import { Plus, Search, Edit, Trash2, TestTube } from "lucide-react";
import { toast } from "sonner";
import { showErrorToast } from "@/lib/utils/toastUtils";
import {
ExternalCallConfigAPI,
ExternalCallConfig,
ExternalCallConfigFilter,
CALL_TYPE_OPTIONS,
API_TYPE_OPTIONS,
ACTIVE_STATUS_OPTIONS,
} from "@/lib/api/externalCallConfig";
import { ExternalCallConfigModal } from "@/components/admin/ExternalCallConfigModal";
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select";
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
} from "@/components/ui/alert-dialog";
import { ResponsiveDataView, RDVColumn, RDVCardField } from "@/components/common/ResponsiveDataView";
import { ScrollToTop } from "@/components/common/ScrollToTop";
// API 응답에 실제로 포함되는 필드를 위한 확장 타입
type ExternalCallConfigWithDate = ExternalCallConfig & {
created_date?: string;
};
export default function ExternalCallConfigsPage() {
const [configs, setConfigs] = useState<ExternalCallConfigWithDate[]>([]);
const [loading, setLoading] = useState(true);
const [searchQuery, setSearchQuery] = useState("");
const [filter, setFilter] = useState<ExternalCallConfigFilter>({
is_active: "Y",
});
// 모달 상태
const [isModalOpen, setIsModalOpen] = useState(false);
const [editingConfig, setEditingConfig] = useState<ExternalCallConfig | null>(null);
// 삭제 확인 다이얼로그 상태
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
const [configToDelete, setConfigToDelete] = useState<ExternalCallConfig | null>(null);
// 외부 호출 설정 목록 조회
const fetchConfigs = async () => {
try {
setLoading(true);
const filterWithSearch: Record<string, string | undefined> = { ...filter };
const trimmed = searchQuery.trim();
if (trimmed) {
filterWithSearch.search = trimmed;
}
const response = await ExternalCallConfigAPI.getConfigs(filterWithSearch as ExternalCallConfigFilter);
if (response.success) {
setConfigs((response.data || []) as ExternalCallConfigWithDate[]);
} else {
showErrorToast("외부 호출 설정 조회에 실패했습니다", response.error, {
guidance: "네트워크 연결을 확인하고 다시 시도해 주세요.",
});
}
} catch (error) {
console.error("외부 호출 설정 조회 오류:", error);
showErrorToast("외부 호출 설정 조회에 실패했습니다", error, {
guidance: "네트워크 연결을 확인하고 다시 시도해 주세요.",
});
} finally {
setLoading(false);
}
};
// 초기 로드 및 필터 변경 시 재조회
useEffect(() => {
fetchConfigs();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [filter]);
// 검색 실행
const handleSearch = () => {
fetchConfigs();
};
// 검색 입력 시 엔터키 처리
const handleSearchKeyPress = (e: React.KeyboardEvent) => {
if (e.key === "Enter") {
handleSearch();
}
};
// 새 설정 추가
const handleAddConfig = () => {
setEditingConfig(null);
setIsModalOpen(true);
};
// 설정 편집
const handleEditConfig = (config: ExternalCallConfig) => {
setEditingConfig(config);
setIsModalOpen(true);
};
// 설정 삭제 확인
const handleDeleteConfig = (config: ExternalCallConfig) => {
setConfigToDelete(config);
setDeleteDialogOpen(true);
};
// 설정 삭제 실행
const confirmDeleteConfig = async () => {
if (!configToDelete?.id) return;
try {
const response = await ExternalCallConfigAPI.deleteConfig(configToDelete.id);
if (response.success) {
toast.success("외부 호출 설정이 삭제되었습니다.");
fetchConfigs();
} else {
showErrorToast("외부 호출 설정 삭제에 실패했습니다", response.error, {
guidance: "잠시 후 다시 시도해 주세요.",
});
}
} catch (error) {
console.error("외부 호출 설정 삭제 오류:", error);
showErrorToast("외부 호출 설정 삭제에 실패했습니다", error, {
guidance: "잠시 후 다시 시도해 주세요.",
});
} finally {
setDeleteDialogOpen(false);
setConfigToDelete(null);
}
};
// 설정 테스트
const handleTestConfig = async (config: ExternalCallConfig) => {
if (!config.id) return;
try {
const response = await ExternalCallConfigAPI.testConfig(config.id);
if (response.success) {
toast.success(`테스트 성공: ${response.message || "정상"}`);
} else {
toast.error(`테스트 실패: ${response.message || response.error || "알 수 없는 오류"}`);
}
} catch (error) {
console.error("외부 호출 설정 테스트 오류:", error);
showErrorToast("외부 호출 테스트 실행에 실패했습니다", error, {
guidance: "URL과 설정을 확인해 주세요.",
});
}
};
// 모달 저장 완료 시 목록 새로고침
const handleModalSave = () => {
setIsModalOpen(false);
setEditingConfig(null);
fetchConfigs();
};
// 호출 타입 라벨 가져오기
const getCallTypeLabel = (callType: string) => {
return CALL_TYPE_OPTIONS.find((option) => option.value === callType)?.label || callType;
};
// API 타입 라벨 가져오기
const getApiTypeLabel = (apiType?: string) => {
if (!apiType) return "";
return API_TYPE_OPTIONS.find((option) => option.value === apiType)?.label || apiType;
};
// ResponsiveDataView 컬럼 정의
const columns: RDVColumn<ExternalCallConfigWithDate>[] = [
{
key: "config_name",
label: "설정명",
render: (_v, row) => <span className="font-medium">{row.config_name}</span>,
},
{
key: "call_type",
label: "호출 타입",
width: "120px",
render: (_v, row) => <Badge variant="outline">{getCallTypeLabel(row.call_type)}</Badge>,
},
{
key: "api_type",
label: "API 타입",
width: "120px",
render: (_v, row) =>
row.api_type ? (
<Badge variant="secondary">{getApiTypeLabel(row.api_type)}</Badge>
) : (
<span className="text-muted-foreground">-</span>
),
},
{
key: "description",
label: "설명",
render: (_v, row) =>
row.description ? (
<span className="block max-w-xs truncate text-muted-foreground" title={row.description}>
{row.description}
</span>
) : (
<span className="text-muted-foreground">-</span>
),
},
{
key: "is_active",
label: "상태",
width: "80px",
render: (_v, row) => (
<Badge variant={row.is_active === "Y" ? "default" : "destructive"}>
{row.is_active === "Y" ? "활성" : "비활성"}
</Badge>
),
},
{
key: "created_date",
label: "생성일",
width: "120px",
render: (_v, row) =>
row.created_date ? new Date(row.created_date).toLocaleDateString() : "-",
},
];
// 모바일 카드 필드 정의
const cardFields: RDVCardField<ExternalCallConfigWithDate>[] = [
{
label: "호출 타입",
render: (c) => <Badge variant="outline">{getCallTypeLabel(c.call_type)}</Badge>,
},
{
label: "API 타입",
render: (c) =>
c.api_type ? (
<Badge variant="secondary">{getApiTypeLabel(c.api_type)}</Badge>
) : (
<span className="text-muted-foreground">-</span>
),
},
{
label: "설명",
render: (c) => (
<span className="max-w-[200px] truncate">{c.description || "-"}</span>
),
},
{
label: "생성일",
render: (c) =>
c.created_date ? new Date(c.created_date).toLocaleDateString() : "-",
},
];
return (
<div className="flex min-h-screen flex-col bg-background">
<div className="space-y-6 p-4 sm:p-6">
{/* 페이지 헤더 */}
<div className="space-y-2 border-b pb-4">
<h1 className="text-3xl font-bold tracking-tight"> </h1>
<p className="text-sm text-muted-foreground">Discord, Slack, .</p>
</div>
{/* 검색 및 필터 영역 (반응형) */}
<div className="flex flex-col gap-4 lg:flex-row lg:items-center lg:justify-between">
<div className="flex flex-col gap-3 sm:flex-row sm:items-center">
<div className="relative w-full sm:w-[300px]">
<Search className="absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-muted-foreground" />
<Input
placeholder="설정 이름 또는 설명으로 검색..."
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
onKeyPress={handleSearchKeyPress}
className="h-10 pl-10 text-sm"
/>
</div>
<Button onClick={handleSearch} variant="outline" className="h-10 gap-2 text-sm font-medium">
<Search className="h-4 w-4" />
</Button>
</div>
<Button onClick={handleAddConfig} className="h-10 gap-2 text-sm font-medium">
<Plus className="h-4 w-4" />
</Button>
</div>
{/* 필터 영역 */}
<div className="grid grid-cols-1 gap-3 sm:grid-cols-3">
<Select
value={filter.call_type || "all"}
onValueChange={(value) =>
setFilter((prev) => ({
...prev,
call_type: value === "all" ? undefined : value,
}))
}
>
<SelectTrigger className="h-10">
<SelectValue placeholder="호출 타입" />
</SelectTrigger>
<SelectContent>
<SelectItem value="all"></SelectItem>
{CALL_TYPE_OPTIONS.map((option) => (
<SelectItem key={option.value} value={option.value}>
{option.label}
</SelectItem>
))}
</SelectContent>
</Select>
<Select
value={filter.api_type || "all"}
onValueChange={(value) =>
setFilter((prev) => ({
...prev,
api_type: value === "all" ? undefined : value,
}))
}
>
<SelectTrigger className="h-10">
<SelectValue placeholder="API 타입" />
</SelectTrigger>
<SelectContent>
<SelectItem value="all"></SelectItem>
{API_TYPE_OPTIONS.map((option) => (
<SelectItem key={option.value} value={option.value}>
{option.label}
</SelectItem>
))}
</SelectContent>
</Select>
<Select
value={filter.is_active || "Y"}
onValueChange={(value) =>
setFilter((prev) => ({
...prev,
is_active: value,
}))
}
>
<SelectTrigger className="h-10">
<SelectValue placeholder="상태" />
</SelectTrigger>
<SelectContent>
{ACTIVE_STATUS_OPTIONS.map((option) => (
<SelectItem key={option.value} value={option.value}>
{option.label}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
{/* 설정 목록 (ResponsiveDataView) */}
<ResponsiveDataView<ExternalCallConfigWithDate>
data={configs}
columns={columns}
keyExtractor={(c) => String(c.id || c.config_name)}
isLoading={loading}
emptyMessage="등록된 외부 호출 설정이 없습니다."
skeletonCount={5}
cardTitle={(c) => c.config_name}
cardSubtitle={(c) => c.description || "설명 없음"}
cardHeaderRight={(c) => (
<Badge variant={c.is_active === "Y" ? "default" : "destructive"}>
{c.is_active === "Y" ? "활성" : "비활성"}
</Badge>
)}
cardFields={cardFields}
renderActions={(c) => (
<>
<Button
variant="outline"
size="sm"
className="h-9 flex-1 gap-2 text-sm"
onClick={(e) => {
e.stopPropagation();
handleTestConfig(c);
}}
>
<TestTube className="h-4 w-4" />
</Button>
<Button
variant="outline"
size="sm"
className="h-9 flex-1 gap-2 text-sm"
onClick={(e) => {
e.stopPropagation();
handleEditConfig(c);
}}
>
<Edit className="h-4 w-4" />
</Button>
<Button
variant="outline"
size="sm"
className="text-destructive hover:bg-destructive/10 hover:text-destructive h-9 gap-2 text-sm"
onClick={(e) => {
e.stopPropagation();
handleDeleteConfig(c);
}}
>
<Trash2 className="h-4 w-4" />
</Button>
</>
)}
actionsWidth="200px"
/>
{/* 외부 호출 설정 모달 */}
<ExternalCallConfigModal
isOpen={isModalOpen}
onClose={() => setIsModalOpen(false)}
onSave={handleModalSave}
editingConfig={editingConfig}
/>
{/* 삭제 확인 다이얼로그 */}
<AlertDialog open={deleteDialogOpen} onOpenChange={setDeleteDialogOpen}>
<AlertDialogContent className="max-w-[95vw] sm:max-w-[500px]">
<AlertDialogHeader>
<AlertDialogTitle className="text-base sm:text-lg"> </AlertDialogTitle>
<AlertDialogDescription className="text-xs sm:text-sm">
&quot;{configToDelete?.config_name}&quot; ?
<br /> .
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter className="gap-2 sm:gap-0">
<AlertDialogCancel className="h-8 flex-1 text-xs sm:h-10 sm:flex-none sm:text-sm">
</AlertDialogCancel>
<AlertDialogAction
onClick={confirmDeleteConfig}
className="h-8 flex-1 bg-destructive text-xs hover:bg-destructive/90 sm:h-10 sm:flex-none sm:text-sm"
>
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
</div>
{/* Scroll to Top 버튼 */}
<ScrollToTop />
</div>
);
}