"use client"; import * as React from "react"; import dynamic from "next/dynamic"; import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter, DialogDescription } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; import { GenericData } from "./export-excel-form"; import * as GC from "@mescius/spread-sheets"; import { toast } from "sonner"; import { updateFormDataInDB } from "@/lib/forms/services"; import { Loader, Save, AlertTriangle } from "lucide-react"; import '@mescius/spread-sheets/styles/gc.spread.sheets.excel2016colorful.css'; import { DataTableColumnJSON, ColumnType } from "./form-data-table-columns"; const SpreadSheets = dynamic( () => import("@mescius/spread-sheets-react").then(mod => mod.SpreadSheets), { ssr: false, loading: () => (
Loading SpreadSheets...
) } ); if (typeof window !== 'undefined' && process.env.NEXT_PUBLIC_SPREAD_LICENSE) { GC.Spread.Sheets.LicenseKey = process.env.NEXT_PUBLIC_SPREAD_LICENSE; } interface TemplateItem { TMPL_ID: string; NAME: string; TMPL_TYPE: string; SPR_LST_SETUP: { ACT_SHEET: string; HIDN_SHEETS: Array; CONTENT?: string; DATA_SHEETS: Array<{ SHEET_NAME: string; REG_TYPE_ID: string; MAP_CELL_ATT: Array<{ ATT_ID: string; IN: string; }>; }>; }; GRD_LST_SETUP: { REG_TYPE_ID: string; SPR_ITM_IDS: Array; ATTS: Array<{}>; }; SPR_ITM_LST_SETUP: { ACT_SHEET: string; HIDN_SHEETS: Array; CONTENT?: string; DATA_SHEETS: Array<{ SHEET_NAME: string; REG_TYPE_ID: string; MAP_CELL_ATT: Array<{ ATT_ID: string; IN: string; }>; }>; }; } interface ValidationError { cellAddress: string; attId: string; value: any; expectedType: ColumnType; message: string; } interface CellMapping { attId: string; cellAddress: string; isEditable: boolean; dataRowIndex?: number; } interface TemplateViewDialogProps { isOpen: boolean; onClose: () => void; templateData: TemplateItem[] | any; selectedRow?: GenericData; tableData?: GenericData[]; formCode: string; columnsJSON: DataTableColumnJSON[] contractItemId: number; editableFieldsMap?: Map; onUpdateSuccess?: (updatedValues: Record | GenericData[]) => void; } // πŸš€ λ‘œλ”© ν”„λ‘œκ·Έλ ˆμŠ€ μ»΄ν¬λ„ŒνŠΈ interface LoadingProgressProps { phase: string; progress: number; total: number; isVisible: boolean; } const LoadingProgress: React.FC = ({ phase, progress, total, isVisible }) => { const percentage = total > 0 ? Math.round((progress / total) * 100) : 0; if (!isVisible) return null; return (
Loading Template
{phase}
{progress.toLocaleString()} / {total.toLocaleString()} ({percentage}%)
); }; export function TemplateViewDialog({ isOpen, onClose, templateData, selectedRow, tableData = [], formCode, contractItemId, columnsJSON, editableFieldsMap = new Map(), onUpdateSuccess }: TemplateViewDialogProps) { const [hostStyle, setHostStyle] = React.useState({ width: '100%', height: '100%' }); const [isPending, setIsPending] = React.useState(false); const [hasChanges, setHasChanges] = React.useState(false); const [currentSpread, setCurrentSpread] = React.useState(null); const [cellMappings, setCellMappings] = React.useState([]); const [isClient, setIsClient] = React.useState(false); const [templateType, setTemplateType] = React.useState<'SPREAD_LIST' | 'SPREAD_ITEM' | 'GRD_LIST' | null>(null); const [validationErrors, setValidationErrors] = React.useState([]); const [selectedTemplateId, setSelectedTemplateId] = React.useState(""); const [availableTemplates, setAvailableTemplates] = React.useState([]); // πŸ†• λ‘œλ”© μƒνƒœ μΆ”κ°€ const [loadingProgress, setLoadingProgress] = React.useState<{ phase: string; progress: number; total: number; } | null>(null); const [isInitializing, setIsInitializing] = React.useState(false); // πŸ”„ 진행상황 μ—…λ°μ΄νŠΈ ν•¨μˆ˜ const updateProgress = React.useCallback((phase: string, progress: number, total: number) => { setLoadingProgress({ phase, progress, total }); }, []); const determineTemplateType = React.useCallback((template: TemplateItem): 'SPREAD_LIST' | 'SPREAD_ITEM' | 'GRD_LIST' | null => { if (template.TMPL_TYPE === "SPREAD_LIST" && (template.SPR_LST_SETUP?.CONTENT || template.SPR_ITM_LST_SETUP?.CONTENT)) { return 'SPREAD_LIST'; } if (template.TMPL_TYPE === "SPREAD_ITEM" && (template.SPR_LST_SETUP?.CONTENT || template.SPR_ITM_LST_SETUP?.CONTENT)) { return 'SPREAD_ITEM'; } if (template.GRD_LST_SETUP && columnsJSON.length > 0) { return 'GRD_LIST'; } return null; }, [columnsJSON]); const isValidTemplate = React.useCallback((template: TemplateItem): boolean => { return determineTemplateType(template) !== null; }, [determineTemplateType]); React.useEffect(() => { setIsClient(true); }, []); React.useEffect(() => { if (!templateData) return; let templates: TemplateItem[]; if (Array.isArray(templateData)) { templates = templateData as TemplateItem[]; } else { templates = [templateData as TemplateItem]; } const validTemplates = templates.filter(isValidTemplate); setAvailableTemplates(validTemplates); if (validTemplates.length > 0 && !selectedTemplateId) { const firstTemplate = validTemplates[0]; const templateTypeToSet = determineTemplateType(firstTemplate); setSelectedTemplateId(firstTemplate.TMPL_ID); setTemplateType(templateTypeToSet); } }, [templateData, selectedTemplateId, isValidTemplate, determineTemplateType]); const handleTemplateChange = (templateId: string) => { const template = availableTemplates.find(t => t.TMPL_ID === templateId); if (template) { const templateTypeToSet = determineTemplateType(template); setSelectedTemplateId(templateId); setTemplateType(templateTypeToSet); setHasChanges(false); setValidationErrors([]); if (currentSpread && template) { initSpread(currentSpread, template); } } }; const selectedTemplate = React.useMemo(() => { return availableTemplates.find(t => t.TMPL_ID === selectedTemplateId); }, [availableTemplates, selectedTemplateId]); const editableFields = React.useMemo(() => { if (templateType === 'SPREAD_ITEM' && selectedRow?.TAG_NO) { if (!editableFieldsMap.has(selectedRow.TAG_NO)) { return []; } return editableFieldsMap.get(selectedRow.TAG_NO) || []; } if ((templateType === 'SPREAD_LIST' || templateType === 'GRD_LIST') && tableData.length > 0) { const firstRowTagNo = tableData[0]?.TAG_NO; if (firstRowTagNo && editableFieldsMap.has(firstRowTagNo)) { return editableFieldsMap.get(firstRowTagNo) || []; } } return []; }, [templateType, selectedRow?.TAG_NO, tableData, editableFieldsMap]); const isFieldEditable = React.useCallback((attId: string, rowData?: GenericData) => { const columnConfig = columnsJSON.find(col => col.key === attId); if (columnConfig?.shi === true) { return false; } if (attId === "TAG_NO" || attId === "TAG_DESC" || attId === "status") { return false; } if (templateType === 'SPREAD_LIST' || templateType === 'GRD_LIST') { if (rowData && rowData.shi === true) { return false; } return true; } return true; }, [templateType, columnsJSON]); const editableFieldsCount = React.useMemo(() => { return cellMappings.filter(m => m.isEditable).length; }, [cellMappings]); // πŸš€ 배치 처리 ν•¨μˆ˜λ“€ const setBatchValues = React.useCallback(( activeSheet: any, valuesToSet: Array<{row: number, col: number, value: any}> ) => { console.log(`πŸš€ Setting ${valuesToSet.length} values in batch`); const columnGroups = new Map>(); valuesToSet.forEach(({row, col, value}) => { if (!columnGroups.has(col)) { columnGroups.set(col, []); } columnGroups.get(col)!.push({row, value}); }); columnGroups.forEach((values, col) => { values.sort((a, b) => a.row - b.row); let start = 0; while (start < values.length) { let end = start; while (end + 1 < values.length && values[end + 1].row === values[end].row + 1) { end++; } const rangeValues = values.slice(start, end + 1).map(v => v.value); const startRow = values[start].row; try { if (rangeValues.length === 1) { activeSheet.setValue(startRow, col, rangeValues[0]); } else { const dataArray = rangeValues.map(v => [v]); activeSheet.setArray(startRow, col, dataArray); } } catch (error) { for (let i = start; i <= end; i++) { try { activeSheet.setValue(values[i].row, col, values[i].value); } catch (cellError) { console.warn(`⚠️ Individual value setting failed [${values[i].row}, ${col}]:`, cellError); } } } start = end + 1; } }); }, []); const setBatchStyles = React.useCallback(( activeSheet: any, stylesToSet: Array<{row: number, col: number, isEditable: boolean}> ) => { console.log(`🎨 Setting ${stylesToSet.length} styles in batch`); const editableStyle = createCellStyle(true); const readonlyStyle = createCellStyle(false); // πŸ”§ κ°œλ³„ μ…€λ³„λ‘œ μŠ€νƒ€μΌκ³Ό 잠금 μƒνƒœ μ„€μ • (νŽΈμ§‘ κΆŒν•œ 보μž₯) stylesToSet.forEach(({row, col, isEditable}) => { try { const cell = activeSheet.getCell(row, col); const style = isEditable ? editableStyle : readonlyStyle; activeSheet.setStyle(row, col, style); cell.locked(!isEditable); // νŽΈμ§‘ κ°€λŠ₯ν•˜λ©΄ 잠금 ν•΄μ œ // πŸ†• νŽΈμ§‘ κ°€λŠ₯ν•œ 셀에 κΈ°λ³Έ ν…μŠ€νŠΈ 에디터 μ„€μ • if (isEditable) { const textCellType = new GC.Spread.Sheets.CellTypes.Text(); activeSheet.setCellType(row, col, textCellType); } } catch (error) { console.warn(`⚠️ Failed to set style for cell [${row}, ${col}]:`, error); } }); }, [createCellStyle]); const parseCellAddress = (address: string): { row: number, col: number } | null => { if (!address || address.trim() === "") return null; const match = address.match(/^([A-Z]+)(\d+)$/); if (!match) return null; const [, colStr, rowStr] = match; let col = 0; for (let i = 0; i < colStr.length; i++) { col = col * 26 + (colStr.charCodeAt(i) - 65 + 1); } col -= 1; const row = parseInt(rowStr) - 1; return { row, col }; }; const getCellAddress = (row: number, col: number): string => { let colStr = ''; let colNum = col; while (colNum >= 0) { colStr = String.fromCharCode((colNum % 26) + 65) + colStr; colNum = Math.floor(colNum / 26) - 1; } return colStr + (row + 1); }; const validateCellValue = (value: any, columnType: ColumnType, options?: string[]): string | null => { if (value === undefined || value === null || value === "") { return null; } switch (columnType) { case "NUMBER": if (isNaN(Number(value))) { return "Value must be a valid number"; } break; case "LIST": if (options && !options.includes(String(value))) { return `Value must be one of: ${options.join(", ")}`; } break; case "STRING": break; default: break; } return null; }; const validateAllData = React.useCallback(() => { if (!currentSpread || !selectedTemplate) return []; const activeSheet = currentSpread.getActiveSheet(); const errors: ValidationError[] = []; cellMappings.forEach(mapping => { const columnConfig = columnsJSON.find(col => col.key === mapping.attId); if (!columnConfig) return; const cellPos = parseCellAddress(mapping.cellAddress); if (!cellPos) return; const cellValue = activeSheet.getValue(cellPos.row, cellPos.col); const errorMessage = validateCellValue(cellValue, columnConfig.type, columnConfig.options); if (errorMessage) { errors.push({ cellAddress: mapping.cellAddress, attId: mapping.attId, value: cellValue, expectedType: columnConfig.type, message: errorMessage }); } }); setValidationErrors(errors); return errors; }, [currentSpread, selectedTemplate, cellMappings, columnsJSON]); const createCellStyle = React.useCallback((isEditable: boolean) => { const style = new GC.Spread.Sheets.Style(); if (isEditable) { style.backColor = "#f0fdf4"; } else { style.backColor = "#f9fafb"; style.foreColor = "#6b7280"; } return style; }, []); const setupOptimizedListValidation = React.useCallback((activeSheet: any, cellPos: { row: number, col: number }, options: string[], rowCount: number) => { try { console.log(`🎯 Setting up dropdown for ${rowCount} rows with options:`, options); const safeOptions = options .filter(opt => opt !== null && opt !== undefined && opt !== '') .map(opt => String(opt).trim()) .filter(opt => opt.length > 0) .filter((opt, index, arr) => arr.indexOf(opt) === index) .slice(0, 20); if (safeOptions.length === 0) { console.warn(`⚠️ No valid options found, skipping`); return; } const optionsString = safeOptions.join(','); for (let i = 0; i < rowCount; i++) { try { const targetRow = cellPos.row + i; // πŸ”§ 각 μ…€λ§ˆλ‹€ μƒˆλ‘œμš΄ ComboBox μΈμŠ€ν„΄μŠ€ 생성 const comboBoxCellType = new GC.Spread.Sheets.CellTypes.ComboBox(); comboBoxCellType.items(safeOptions); comboBoxCellType.editorValueType(GC.Spread.Sheets.CellTypes.EditorValueType.text); // πŸ”§ DataValidation μ„€μ • const cellValidator = GC.Spread.Sheets.DataValidation.createListValidator(optionsString); cellValidator.showInputMessage(false); cellValidator.showErrorMessage(false); // ComboBox와 Validator 적용 activeSheet.setCellType(targetRow, cellPos.col, comboBoxCellType); activeSheet.setDataValidator(targetRow, cellPos.col, cellValidator); // πŸš€ μ€‘μš”: μ…€ 잠금 ν•΄μ œ 및 νŽΈμ§‘ κ°€λŠ₯ μ„€μ • const cell = activeSheet.getCell(targetRow, cellPos.col); cell.locked(false); console.log(`βœ… Dropdown applied to [${targetRow}, ${cellPos.col}] with ${safeOptions.length} options`); } catch (cellError) { console.warn(`⚠️ Failed to apply dropdown to row ${cellPos.row + i}:`, cellError); } } console.log(`βœ… Dropdown setup completed for ${rowCount} cells`); } catch (error) { console.error('❌ Dropdown setup failed:', error); } }, []); const getSafeActiveSheet = React.useCallback((spread: any, functionName: string = 'unknown') => { if (!spread) return null; try { let activeSheet = spread.getActiveSheet(); if (!activeSheet) { const sheetCount = spread.getSheetCount(); if (sheetCount > 0) { activeSheet = spread.getSheet(0); if (activeSheet) { spread.setActiveSheetIndex(0); } } } return activeSheet; } catch (error) { console.error(`❌ Error getting activeSheet in ${functionName}:`, error); return null; } }, []); const ensureRowCapacity = React.useCallback((activeSheet: any, requiredRowCount: number) => { try { if (!activeSheet) return false; const currentRowCount = activeSheet.getRowCount(); if (requiredRowCount > currentRowCount) { const newRowCount = requiredRowCount + 10; activeSheet.setRowCount(newRowCount); } return true; } catch (error) { console.error('❌ Error in ensureRowCapacity:', error); return false; } }, []); const ensureColumnCapacity = React.useCallback((activeSheet: any, requiredColumnCount: number) => { try { if (!activeSheet) return false; const currentColumnCount = activeSheet.getColumnCount(); if (requiredColumnCount > currentColumnCount) { const newColumnCount = requiredColumnCount + 10; activeSheet.setColumnCount(newColumnCount); } return true; } catch (error) { console.error('❌ Error in ensureColumnCapacity:', error); return false; } }, []); const setOptimalColumnWidths = React.useCallback((activeSheet: any, columns: any[], startCol: number, tableData: any[]) => { columns.forEach((column, colIndex) => { const targetCol = startCol + colIndex; const optimalWidth = column.type === 'NUMBER' ? 100 : column.type === 'STRING' ? 150 : 120; activeSheet.setColumnWidth(targetCol, optimalWidth); }); }, []); // πŸš€ μ΅œμ ν™”λœ GRD_LIST 생성 const createGrdListTableOptimized = React.useCallback((activeSheet: any, template: TemplateItem) => { console.log('πŸš€ Creating optimized GRD_LIST table'); const visibleColumns = columnsJSON .filter(col => col.hidden !== true) .sort((a, b) => (a.seq ?? 999999) - (b.seq ?? 999999)); if (visibleColumns.length === 0) return []; const startCol = 1; const dataStartRow = 1; const mappings: CellMapping[] = []; ensureColumnCapacity(activeSheet, startCol + visibleColumns.length); ensureRowCapacity(activeSheet, dataStartRow + tableData.length); // 헀더 생성 const headerStyle = new GC.Spread.Sheets.Style(); headerStyle.backColor = "#3b82f6"; headerStyle.foreColor = "#ffffff"; headerStyle.font = "bold 12px Arial"; headerStyle.hAlign = GC.Spread.Sheets.HorizontalAlign.center; visibleColumns.forEach((column, colIndex) => { const targetCol = startCol + colIndex; const cell = activeSheet.getCell(0, targetCol); cell.value(column.label); cell.locked(true); activeSheet.setStyle(0, targetCol, headerStyle); }); // πŸš€ 데이터 배치 처리 μ€€λΉ„ const allValues: Array<{row: number, col: number, value: any}> = []; const allStyles: Array<{row: number, col: number, isEditable: boolean}> = []; // πŸ”§ νŽΈμ§‘ κ°€λŠ₯ν•œ μ…€ 정보 μˆ˜μ§‘ (λ“œλ‘­λ‹€μš΄μš©) const dropdownConfigs: Array<{ startRow: number; col: number; rowCount: number; options: string[]; editableRows: number[]; // νŽΈμ§‘ κ°€λŠ₯ν•œ ν–‰λ§Œ 좔적 }> = []; visibleColumns.forEach((column, colIndex) => { const targetCol = startCol + colIndex; // λ“œλ‘­λ‹€μš΄ 섀정을 μœ„ν•œ νŽΈμ§‘ κ°€λŠ₯ν•œ ν–‰ μ°ΎκΈ° if (column.type === "LIST" && column.options) { const editableRows: number[] = []; tableData.forEach((rowData, rowIndex) => { if (isFieldEditable(column.key, rowData)) { editableRows.push(dataStartRow + rowIndex); } }); if (editableRows.length > 0) { dropdownConfigs.push({ startRow: dataStartRow, col: targetCol, rowCount: tableData.length, options: column.options, editableRows: editableRows }); } } tableData.forEach((rowData, rowIndex) => { const targetRow = dataStartRow + rowIndex; const cellEditable = isFieldEditable(column.key, rowData); const value = rowData[column.key]; mappings.push({ attId: column.key, cellAddress: getCellAddress(targetRow, targetCol), isEditable: cellEditable, dataRowIndex: rowIndex }); allValues.push({ row: targetRow, col: targetCol, value: value ?? null }); allStyles.push({ row: targetRow, col: targetCol, isEditable: cellEditable }); }); }); // πŸš€ 배치둜 κ°’κ³Ό μŠ€νƒ€μΌ μ„€μ • setBatchValues(activeSheet, allValues); setBatchStyles(activeSheet, allStyles); // 🎯 κ°œμ„ λœ λ“œλ‘­λ‹€μš΄ μ„€μ • (νŽΈμ§‘ κ°€λŠ₯ν•œ μ…€μ—λ§Œ) dropdownConfigs.forEach(({ col, options, editableRows }) => { try { console.log(`🎯 Setting dropdown for column ${col}, editable rows: ${editableRows.length}`); const safeOptions = options .filter(opt => opt !== null && opt !== undefined && opt !== '') .map(opt => String(opt).trim()) .filter(opt => opt.length > 0) .slice(0, 20); if (safeOptions.length === 0) return; // νŽΈμ§‘ κ°€λŠ₯ν•œ ν–‰μ—λ§Œ λ“œλ‘­λ‹€μš΄ 적용 editableRows.forEach(targetRow => { try { const comboBoxCellType = new GC.Spread.Sheets.CellTypes.ComboBox(); comboBoxCellType.items(safeOptions); comboBoxCellType.editorValueType(GC.Spread.Sheets.CellTypes.EditorValueType.text); const cellValidator = GC.Spread.Sheets.DataValidation.createListValidator(safeOptions.join(',')); cellValidator.showInputMessage(false); cellValidator.showErrorMessage(false); activeSheet.setCellType(targetRow, col, comboBoxCellType); activeSheet.setDataValidator(targetRow, col, cellValidator); // πŸš€ νŽΈμ§‘ κΆŒν•œ λͺ…μ‹œμ  μ„€μ • const cell = activeSheet.getCell(targetRow, col); cell.locked(false); console.log(`βœ… Dropdown applied to editable cell [${targetRow}, ${col}]`); } catch (cellError) { console.warn(`⚠️ Failed to apply dropdown to [${targetRow}, ${col}]:`, cellError); } }); } catch (error) { console.error(`❌ Dropdown config failed for column ${col}:`, error); } }); setOptimalColumnWidths(activeSheet, visibleColumns, startCol, tableData); console.log(`βœ… Optimized GRD_LIST created:`); console.log(` - Total mappings: ${mappings.length}`); console.log(` - Editable cells: ${mappings.filter(m => m.isEditable).length}`); console.log(` - Dropdown configs: ${dropdownConfigs.length}`); return mappings; }, [tableData, columnsJSON, isFieldEditable, setBatchValues, setBatchStyles, ensureColumnCapacity, ensureRowCapacity, getCellAddress, setOptimalColumnWidths]); const setupSheetProtectionAndEvents = React.useCallback((activeSheet: any, mappings: CellMapping[]) => { console.log(`πŸ›‘οΈ Setting up protection and events for ${mappings.length} mappings`); // πŸ”§ μ‹œνŠΈ 보호 μ™„μ „ ν•΄μ œ ν›„ νŽΈμ§‘ κΆŒν•œ μ„€μ • activeSheet.options.isProtected = false; // πŸ”§ νŽΈμ§‘ κ°€λŠ₯ν•œ 셀듀을 μœ„ν•œ κ°•ν™”λœ μ„€μ • mappings.forEach((mapping) => { const cellPos = parseCellAddress(mapping.cellAddress); if (!cellPos) return; try { const cell = activeSheet.getCell(cellPos.row, cellPos.col); const columnConfig = columnsJSON.find(col => col.key === mapping.attId); if (mapping.isEditable) { // πŸš€ νŽΈμ§‘ κ°€λŠ₯ν•œ μ…€ μ„€μ • κ°•ν™” cell.locked(false); if (columnConfig?.type === "LIST" && columnConfig.options) { // LIST νƒ€μž…: μƒˆ ComboBox μΈμŠ€ν„΄μŠ€ 생성 const comboBox = new GC.Spread.Sheets.CellTypes.ComboBox(); comboBox.items(columnConfig.options); comboBox.editorValueType(GC.Spread.Sheets.CellTypes.EditorValueType.text); activeSheet.setCellType(cellPos.row, cellPos.col, comboBox); // DataValidation도 μΆ”κ°€ const validator = GC.Spread.Sheets.DataValidation.createListValidator(columnConfig.options.join(',')); activeSheet.setDataValidator(cellPos.row, cellPos.col, validator); } else if (columnConfig?.type === "NUMBER") { // NUMBER νƒ€μž…: 숫자 μž…λ ₯ ν—ˆμš© const textCellType = new GC.Spread.Sheets.CellTypes.Text(); activeSheet.setCellType(cellPos.row, cellPos.col, textCellType); // 숫자 validation μΆ”κ°€ (μ—λŸ¬ λ©”μ‹œμ§€ 없이) const numberValidator = GC.Spread.Sheets.DataValidation.createNumberValidator( GC.Spread.Sheets.ConditionalFormatting.ComparisonOperators.between, -999999999, 999999999, true ); numberValidator.showInputMessage(false); numberValidator.showErrorMessage(false); activeSheet.setDataValidator(cellPos.row, cellPos.col, numberValidator); } else { // κΈ°λ³Έ TEXT νƒ€μž…: 자유 ν…μŠ€νŠΈ μž…λ ₯ const textCellType = new GC.Spread.Sheets.CellTypes.Text(); activeSheet.setCellType(cellPos.row, cellPos.col, textCellType); } // νŽΈμ§‘ κ°€λŠ₯ μŠ€νƒ€μΌ 재적용 const editableStyle = createCellStyle(true); activeSheet.setStyle(cellPos.row, cellPos.col, editableStyle); console.log(`πŸ”“ Cell [${cellPos.row}, ${cellPos.col}] ${mapping.attId} set as EDITABLE`); } else { // 읽기 μ „μš© μ…€ cell.locked(true); const readonlyStyle = createCellStyle(false); activeSheet.setStyle(cellPos.row, cellPos.col, readonlyStyle); } } catch (error) { console.error(`❌ Error processing cell ${mapping.cellAddress}:`, error); } }); // πŸ›‘οΈ μ‹œνŠΈ 보호 μž¬μ„€μ • (νŽΈμ§‘ ν—ˆμš© λͺ¨λ“œλ‘œ) activeSheet.options.isProtected = true; activeSheet.options.protectionOptions = { allowSelectLockedCells: true, allowSelectUnlockedCells: true, allowSort: false, allowFilter: false, allowEditObjects: true, // βœ… νŽΈμ§‘ 객체 ν—ˆμš© allowResizeRows: false, allowResizeColumns: false, allowFormatCells: false, allowInsertRows: false, allowInsertColumns: false, allowDeleteRows: false, allowDeleteColumns: false }; // 🎯 λ³€κ²½ 감지 이벀트 const changeEvents = [ GC.Spread.Sheets.Events.CellChanged, GC.Spread.Sheets.Events.ValueChanged, GC.Spread.Sheets.Events.ClipboardPasted ]; changeEvents.forEach(eventType => { activeSheet.bind(eventType, () => { console.log(`πŸ“ ${eventType} detected`); setHasChanges(true); }); }); // 🚫 νŽΈμ§‘ μ‹œμž‘ κΆŒν•œ 확인 activeSheet.bind(GC.Spread.Sheets.Events.EditStarting, (event: any, info: any) => { console.log(`🎯 EditStarting: Row ${info.row}, Col ${info.col}`); const exactMapping = mappings.find(m => { const cellPos = parseCellAddress(m.cellAddress); return cellPos && cellPos.row === info.row && cellPos.col === info.col; }); if (!exactMapping) { console.log(`ℹ️ No mapping found for [${info.row}, ${info.col}] - allowing edit`); return; // 맀핑이 μ—†μœΌλ©΄ ν—ˆμš© } console.log(`πŸ“‹ Found mapping: ${exactMapping.attId}, isEditable: ${exactMapping.isEditable}`); if (!exactMapping.isEditable) { console.log(`🚫 Field ${exactMapping.attId} is not editable`); toast.warning(`${exactMapping.attId} field is read-only`); info.cancel = true; return; } // SPREAD_LIST/GRD_LIST κ°œλ³„ ν–‰ SHI 확인 if ((templateType === 'SPREAD_LIST' || templateType === 'GRD_LIST') && exactMapping.dataRowIndex !== undefined) { const dataRowIndex = exactMapping.dataRowIndex; if (dataRowIndex >= 0 && dataRowIndex < tableData.length) { const rowData = tableData[dataRowIndex]; if (rowData?.shi === true) { console.log(`🚫 Row ${dataRowIndex} is in SHI mode`); toast.warning(`Row ${dataRowIndex + 1}: ${exactMapping.attId} field is read-only (SHI mode)`); info.cancel = true; return; } } } console.log(`βœ… Edit allowed for ${exactMapping.attId}`); }); // βœ… νŽΈμ§‘ μ™„λ£Œ 검증 activeSheet.bind(GC.Spread.Sheets.Events.EditEnded, (event: any, info: any) => { console.log(`🏁 EditEnded: Row ${info.row}, Col ${info.col}, New value: ${activeSheet.getValue(info.row, info.col)}`); const exactMapping = mappings.find(m => { const cellPos = parseCellAddress(m.cellAddress); return cellPos && cellPos.row === info.row && cellPos.col === info.col; }); if (!exactMapping) return; const columnConfig = columnsJSON.find(col => col.key === exactMapping.attId); if (columnConfig) { const cellValue = activeSheet.getValue(info.row, info.col); const errorMessage = validateCellValue(cellValue, columnConfig.type, columnConfig.options); const cell = activeSheet.getCell(info.row, info.col); if (errorMessage) { // 🚨 μ—λŸ¬ μŠ€νƒ€μΌ 적용 const errorStyle = new GC.Spread.Sheets.Style(); errorStyle.backColor = "#fef2f2"; errorStyle.foreColor = "#dc2626"; errorStyle.borderLeft = new GC.Spread.Sheets.LineBorder("#dc2626", GC.Spread.Sheets.LineStyle.thick); errorStyle.borderRight = new GC.Spread.Sheets.LineBorder("#dc2626", GC.Spread.Sheets.LineStyle.thick); errorStyle.borderTop = new GC.Spread.Sheets.LineBorder("#dc2626", GC.Spread.Sheets.LineStyle.thick); errorStyle.borderBottom = new GC.Spread.Sheets.LineBorder("#dc2626", GC.Spread.Sheets.LineStyle.thick); activeSheet.setStyle(info.row, info.col, errorStyle); cell.locked(!exactMapping.isEditable); // νŽΈμ§‘ κ°€λŠ₯ μƒνƒœ μœ μ§€ toast.warning(`Invalid value in ${exactMapping.attId}: ${errorMessage}`, { duration: 5000 }); } else { // βœ… 정상 μŠ€νƒ€μΌ 볡원 const normalStyle = createCellStyle(exactMapping.isEditable); activeSheet.setStyle(info.row, info.col, normalStyle); cell.locked(!exactMapping.isEditable); } } setHasChanges(true); }); console.log(`πŸ›‘οΈ Protection configured. Editable cells: ${mappings.filter(m => m.isEditable).length}`); }, [templateType, tableData, createCellStyle, validateCellValue, columnsJSON]); // πŸš€ μ΅œμ ν™”λœ initSpread const initSpread = React.useCallback(async (spread: any, template?: TemplateItem) => { const workingTemplate = template || selectedTemplate; if (!spread || !workingTemplate) { console.error('❌ Invalid spread or template'); return; } try { console.log('πŸš€ Starting optimized spread initialization...'); setIsInitializing(true); updateProgress('Initializing...', 0, 100); setCurrentSpread(spread); setHasChanges(false); setValidationErrors([]); // πŸš€ 핡심 μ΅œμ ν™”: λͺ¨λ“  λ Œλ”λ§κ³Ό 이벀트 쀑단 spread.suspendPaint(); spread.suspendEvent(); spread.suspendCalcService(); updateProgress('Setting up workspace...', 10, 100); try { let activeSheet = getSafeActiveSheet(spread, 'initSpread'); if (!activeSheet) { throw new Error('Failed to get initial activeSheet'); } activeSheet.options.isProtected = false; let mappings: CellMapping[] = []; if (templateType === 'GRD_LIST') { updateProgress('Creating dynamic table...', 20, 100); spread.clearSheets(); spread.addSheet(0); const sheet = spread.getSheet(0); sheet.name('Data'); spread.setActiveSheet('Data'); updateProgress('Processing table data...', 50, 100); mappings = createGrdListTableOptimized(sheet, workingTemplate); } else { updateProgress('Loading template structure...', 20, 100); let contentJson = workingTemplate.SPR_LST_SETUP?.CONTENT || workingTemplate.SPR_ITM_LST_SETUP?.CONTENT; let dataSheets = workingTemplate.SPR_LST_SETUP?.DATA_SHEETS || workingTemplate.SPR_ITM_LST_SETUP?.DATA_SHEETS; if (!contentJson || !dataSheets) { throw new Error(`No template content found for ${workingTemplate.NAME}`); } const jsonData = typeof contentJson === 'string' ? JSON.parse(contentJson) : contentJson; updateProgress('Loading template layout...', 40, 100); spread.fromJSON(jsonData); activeSheet = getSafeActiveSheet(spread, 'after-fromJSON'); if (!activeSheet) { throw new Error('ActiveSheet became null after loading template'); } activeSheet.options.isProtected = false; if (templateType === 'SPREAD_LIST' && tableData.length > 0) { updateProgress('Processing data rows...', 60, 100); dataSheets.forEach(dataSheet => { if (dataSheet.MAP_CELL_ATT && dataSheet.MAP_CELL_ATT.length > 0) { dataSheet.MAP_CELL_ATT.forEach((mapping: any) => { const { ATT_ID, IN } = mapping; if (!ATT_ID || !IN || IN.trim() === "") return; const cellPos = parseCellAddress(IN); if (!cellPos) return; const requiredRows = cellPos.row + tableData.length; if (!ensureRowCapacity(activeSheet, requiredRows)) return; // πŸš€ 배치 데이터 μ€€λΉ„ const valuesToSet: Array<{row: number, col: number, value: any}> = []; const stylesToSet: Array<{row: number, col: number, isEditable: boolean}> = []; tableData.forEach((rowData, index) => { const targetRow = cellPos.row + index; const cellEditable = isFieldEditable(ATT_ID, rowData); const value = rowData[ATT_ID]; mappings.push({ attId: ATT_ID, cellAddress: getCellAddress(targetRow, cellPos.col), isEditable: cellEditable, dataRowIndex: index }); valuesToSet.push({ row: targetRow, col: cellPos.col, value: value ?? null }); stylesToSet.push({ row: targetRow, col: cellPos.col, isEditable: cellEditable }); }); // πŸš€ 배치 처리 setBatchValues(activeSheet, valuesToSet); setBatchStyles(activeSheet, stylesToSet); // λ“œλ‘­λ‹€μš΄ μ„€μ • const columnConfig = columnsJSON.find(col => col.key === ATT_ID); if (columnConfig?.type === "LIST" && columnConfig.options) { const hasEditableRows = tableData.some((rowData) => isFieldEditable(ATT_ID, rowData)); if (hasEditableRows) { setupOptimizedListValidation(activeSheet, cellPos, columnConfig.options, tableData.length); } } }); } }); } else if (templateType === 'SPREAD_ITEM' && selectedRow) { updateProgress('Setting up form fields...', 60, 100); dataSheets.forEach(dataSheet => { dataSheet.MAP_CELL_ATT?.forEach((mapping: any) => { const { ATT_ID, IN } = mapping; const cellPos = parseCellAddress(IN); if (cellPos) { const isEditable = isFieldEditable(ATT_ID); const value = selectedRow[ATT_ID]; mappings.push({ attId: ATT_ID, cellAddress: IN, isEditable: isEditable, dataRowIndex: 0 }); const cell = activeSheet.getCell(cellPos.row, cellPos.col); cell.value(value ?? null); const style = createCellStyle(isEditable); activeSheet.setStyle(cellPos.row, cellPos.col, style); const columnConfig = columnsJSON.find(col => col.key === ATT_ID); if (columnConfig?.type === "LIST" && columnConfig.options && isEditable) { setupOptimizedListValidation(activeSheet, cellPos, columnConfig.options, 1); } } }); }); } } updateProgress('Configuring interactions...', 90, 100); setCellMappings(mappings); const finalActiveSheet = getSafeActiveSheet(spread, 'setupEvents'); if (finalActiveSheet) { setupSheetProtectionAndEvents(finalActiveSheet, mappings); } updateProgress('Finalizing...', 100, 100); console.log(`βœ… Optimized initialization completed with ${mappings.length} mappings`); } finally { // πŸš€ μ˜¬λ°”λ₯Έ μˆœμ„œλ‘œ 재개 spread.resumeCalcService(); spread.resumeEvent(); spread.resumePaint(); } } catch (error) { console.error('❌ Error in optimized spread initialization:', error); if (spread?.resumeCalcService) spread.resumeCalcService(); if (spread?.resumeEvent) spread.resumeEvent(); if (spread?.resumePaint) spread.resumePaint(); toast.error(`Template loading failed: ${error.message}`); } finally { setIsInitializing(false); setLoadingProgress(null); } }, [selectedTemplate, templateType, selectedRow, tableData, updateProgress, getSafeActiveSheet, createGrdListTableOptimized, setBatchValues, setBatchStyles, setupSheetProtectionAndEvents, setCellMappings]); const handleSaveChanges = React.useCallback(async () => { if (!currentSpread || !hasChanges) { toast.info("No changes to save"); return; } const errors = validateAllData(); if (errors.length > 0) { toast.error(`Cannot save: ${errors.length} validation errors found. Please fix them first.`); return; } try { setIsPending(true); const activeSheet = currentSpread.getActiveSheet(); if (templateType === 'SPREAD_ITEM' && selectedRow) { const dataToSave = { ...selectedRow }; cellMappings.forEach(mapping => { if (mapping.isEditable) { const cellPos = parseCellAddress(mapping.cellAddress); if (cellPos) { const cellValue = activeSheet.getValue(cellPos.row, cellPos.col); dataToSave[mapping.attId] = cellValue; } } }); dataToSave.TAG_NO = selectedRow.TAG_NO; const { success, message } = await updateFormDataInDB( formCode, contractItemId, dataToSave ); if (!success) { toast.error(message); return; } toast.success("Changes saved successfully!"); onUpdateSuccess?.(dataToSave); } else if ((templateType === 'SPREAD_LIST' || templateType === 'GRD_LIST') && tableData.length > 0) { const updatedRows: GenericData[] = []; let saveCount = 0; for (let i = 0; i < tableData.length; i++) { const originalRow = tableData[i]; const dataToSave = { ...originalRow }; let hasRowChanges = false; cellMappings.forEach(mapping => { if (mapping.dataRowIndex === i && mapping.isEditable) { const columnConfig = columnsJSON.find(col => col.key === mapping.attId); const isColumnEditable = columnConfig?.shi !== true; const isRowEditable = originalRow.shi !== true; if (isColumnEditable && isRowEditable) { const cellPos = parseCellAddress(mapping.cellAddress); if (cellPos) { const cellValue = activeSheet.getValue(cellPos.row, cellPos.col); if (cellValue !== originalRow[mapping.attId]) { dataToSave[mapping.attId] = cellValue; hasRowChanges = true; } } } } }); if (hasRowChanges) { dataToSave.TAG_NO = originalRow.TAG_NO; const { success } = await updateFormDataInDB( formCode, contractItemId, dataToSave ); if (success) { updatedRows.push(dataToSave); saveCount++; } } else { updatedRows.push(originalRow); } } if (saveCount > 0) { toast.success(`${saveCount} rows saved successfully!`); onUpdateSuccess?.(updatedRows); } else { toast.info("No changes to save"); } } setHasChanges(false); setValidationErrors([]); } catch (error) { console.error("Error saving changes:", error); toast.error("An unexpected error occurred while saving"); } finally { setIsPending(false); } }, [currentSpread, hasChanges, templateType, selectedRow, tableData, formCode, contractItemId, onUpdateSuccess, cellMappings, columnsJSON, validateAllData]); if (!isOpen) return null; const isDataValid = templateType === 'SPREAD_ITEM' ? !!selectedRow : tableData.length > 0; const dataCount = templateType === 'SPREAD_ITEM' ? 1 : tableData.length; return ( SEDP Template - {formCode}
{availableTemplates.length > 1 && (
Template:
)} {selectedTemplate && (
Template Type: { templateType === 'SPREAD_LIST' ? 'List View (SPREAD_LIST)' : templateType === 'SPREAD_ITEM' ? 'Item View (SPREAD_ITEM)' : 'Grid List View (GRD_LIST)' } {templateType === 'SPREAD_ITEM' && selectedRow && ( β€’ Selected TAG_NO: {selectedRow.TAG_NO || 'N/A'} )} {(templateType === 'SPREAD_LIST' || templateType === 'GRD_LIST') && ( β€’ {dataCount} rows )} {hasChanges && ( β€’ Unsaved changes )} {validationErrors.length > 0 && ( {validationErrors.length} validation errors )}
)}
Editable fields Read-only fields Validation errors {cellMappings.length > 0 && ( {editableFieldsCount} of {cellMappings.length} fields editable )}
{/* πŸ†• λ‘œλ”© ν”„λ‘œκ·Έλ ˆμŠ€ μ˜€λ²„λ ˆμ΄ */} {selectedTemplate && isClient && isDataValid ? ( ) : (
{!isClient ? ( <> Loading... ) : !selectedTemplate ? ( "No template available" ) : !isDataValid ? ( `No ${templateType === 'SPREAD_ITEM' ? 'selected row' : 'data'} available` ) : ( "Template not ready" )}
)}
{hasChanges && ( )} {validationErrors.length > 0 && ( )}
); }