import { NamedPage } from 'vj/misc/Page'; import request from 'vj/utils/request'; import React from 'react'; import { createRoot } from 'react-dom/client'; import loadReactRedux from 'vj/utils/loadReactRedux'; import i18n from 'vj/utils/i18n'; import yaml from 'js-yaml'; import Notification from 'vj/components/notification'; import Dialog, { ConfirmDialog } from 'vj/components/dialog/index'; import download from 'vj/components/zipDownloader'; import { size, readSubtasksFromFiles, normalizeSubtasks } from '@hydrooj/utils/lib/common'; import tpl from 'vj/utils/tpl'; import { SubtaskType } from 'hydrooj/src/interface'; import { configYamlFormat } from 'vj/components/problemconfig/ProblemConfigEditor'; function onBeforeUnload(e) { e.returnValue = ''; } const page = new NamedPage('problem_config', () => { let reduxStore; async function handleClickUpload() { const input = document.createElement('input'); input.type = 'file'; input.multiple = true; input.click(); await new Promise((resolve) => { input.onchange = resolve; }); const { files } = input; const dialog = new Dialog({ $body: `
`, }); try { Notification.info(i18n('Uploading files...')); window.addEventListener('beforeunload', onBeforeUnload); dialog.open(); const $uploadLabel = dialog.$dom.find('.dialog__body .upload-label'); const $uploadProgress = dialog.$dom.find('.dialog__body .upload-progress'); const $fileLabel = dialog.$dom.find('.dialog__body .file-label'); const $fileProgress = dialog.$dom.find('.dialog__body .file-progress'); for (const i in files) { if (Number.isNaN(+i)) continue; const file = files[i]; const data = new FormData(); data.append('filename', file.name); data.append('file', file); data.append('type', 'testdata'); data.append('operation', 'upload_file'); await request.postFile('./files', data, { xhr() { const xhr = new XMLHttpRequest(); xhr.upload.addEventListener('loadstart', () => { $fileLabel.text(`[${+i + 1}/${files.length}] ${file.name}`); $fileProgress.width(`${Math.round((+i + 1) / files.length * 100)}%`); $uploadLabel.text(i18n('Uploading... ({0}%)', 0)); $uploadProgress.width(0); }); xhr.upload.addEventListener('progress', (e) => { if (e.lengthComputable) { const percentComplete = Math.round((e.loaded / e.total) * 100); if (percentComplete === 100) $uploadLabel.text(i18n('Processing...')); else $uploadLabel.text(i18n('Uploading... ({0}%)', percentComplete)); $uploadProgress.width(`${percentComplete}%`); } }, false); return xhr; }, }); reduxStore.dispatch({ type: 'CONFIG_ADD_TESTDATA', value: { _id: file.name, name: file.name, size: file.size, }, }); $('.testdata-table tbody').append( $(tpl` ${file.name} ${size(file.size)} `), ); } window.removeEventListener('beforeunload', onBeforeUnload); Notification.success(i18n('File uploaded successfully.')); } catch (e) { console.error(e); Notification.error(i18n('File upload failed: {0}', e.toString())); } finally { dialog.close(); } } async function handleClickRemove(ev: JQuery.ClickEvent) { const file = [$(ev.currentTarget).parent().parent().attr('data-filename')]; const action = await new ConfirmDialog({ $body: tpl.typoMsg(i18n('Confirm to delete the file?')), }).open(); if (action !== 'yes') return; try { await request.post('./files', { operation: 'delete_files', files: file, type: 'testdata', }); Notification.success(i18n('File have been deleted.')); reduxStore.dispatch({ type: 'CONFIG_DELETE_TESTDATA', value: file, }); $(ev.currentTarget).parent().parent().remove(); } catch (error) { Notification.error(error.message); } } async function handleClickDownloadAll() { const files = reduxStore.getState().testdata.map((i) => i.name); const { links, pdoc } = await request.post('./files', { operation: 'get_links', files, type: 'testdata' }); const targets = []; for (const filename of Object.keys(links)) targets.push({ filename, url: links[filename] }); await download(`${pdoc.docId} ${pdoc.title}.zip`, targets); } async function uploadConfig(config: object) { const configYaml = yaml.dump(configYamlFormat(config)); Notification.info(i18n('Saving file...')); const data = new FormData(); data.append('filename', 'config.yaml'); data.append('file', new Blob([configYaml], { type: 'text/plain' })); data.append('type', 'testdata'); data.append('operation', 'upload_file'); await request.postFile('./files', data); Notification.success(i18n('File saved.')); window.location.reload(); } async function mountComponent() { const [{ default: ProblemConfigEditor }, { default: ProblemConfigForm }, { default: ProblemConfigReducer }] = await Promise.all([ import('vj/components/problemconfig/ProblemConfigEditor'), import('vj/components/problemconfig/ProblemConfigForm'), import('vj/components/problemconfig/reducer'), ]); const { Provider, store } = await loadReactRedux(ProblemConfigReducer); reduxStore = store; store.dispatch({ type: 'CONFIG_LOAD', payload: request.get(), }); const unsubscribe = store.subscribe(() => { // TODO set yaml schema const state = store.getState(); if (!state.config.__loaded) return; if (state.config.cases) { const score = state.config.score * state.config.cases.length; state.config.subtasks = [{ type: 'sum' as SubtaskType, score: score && score < 100 ? score : 100, cases: state.config.cases }]; delete state.config.cases; delete state.config.score; } if (state.config.subtasks) return; const testdata = (state.testdata || []).map((i) => i.name); unsubscribe(); const subtasks = readSubtasksFromFiles(testdata, state.config); store.dispatch({ type: 'CONFIG_AUTOCASES_UPDATE', subtasks: normalizeSubtasks(subtasks, (i) => i, state.config.time, state.config.memory, true), }); }); createRoot($('#ProblemConfig').get(0)).render(
, ); } mountComponent(); $(document).on('click', '[name="testdata__upload"]', () => handleClickUpload()); $(document).on('click', '[name="testdata__delete"]', (ev) => handleClickRemove(ev)); $(document).on('click', '[name="testdata__download__all"]', () => handleClickDownloadAll()); }); export default page;