게시물 export 진행도 표시 추가 v1.5.21

This commit is contained in:
2026-06-01 12:45:56 +09:00
parent 11203ba251
commit 7c8245c4e9
11 changed files with 139 additions and 8 deletions

View File

@@ -39,12 +39,16 @@ const mapPostExportJobRow = (row) => ({
status: row.status,
scope: row.scope,
postCount: Number(row.post_count || 0),
processedCount: Number(row.processed_count || 0),
currentPartIndex: row.current_part_index ? Number(row.current_part_index) : null,
chunkSize: Number(row.chunk_size || DEFAULT_CHUNK_SIZE),
retentionDays: Number(row.retention_days || DEFAULT_RETENTION_DAYS),
expiresAt: row.expires_at ? row.expires_at.toISOString() : null,
message: row.message || '',
progressMessage: row.progress_message || '',
createdAt: row.created_at.toISOString(),
updatedAt: row.updated_at.toISOString(),
startedAt: row.started_at ? row.started_at.toISOString() : null,
completedAt: row.completed_at ? row.completed_at.toISOString() : null,
files: row.files || []
})