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.
354 lines
9.1 KiB
354 lines
9.1 KiB
import { dSizeStr } from 'format-data-size'; |
|
import { FC, useCallback, useMemo, useRef, useState } from 'react'; |
|
|
|
import API_BASE_URL from '../../lib/consts/API_BASE_URL'; |
|
import { UPLOAD_FILE_TYPES } from '../../lib/consts/UPLOAD_FILE_TYPES'; |
|
|
|
import AddFileForm from './AddFileForm'; |
|
import api from '../../lib/api'; |
|
import { toAnvilOverviewList } from '../../lib/api_converters'; |
|
import ConfirmDialog from '../ConfirmDialog'; |
|
import { DialogWithHeader } from '../Dialog'; |
|
import Divider from '../Divider'; |
|
import EditFileForm from './EditFileForm'; |
|
import FlexBox from '../FlexBox'; |
|
import handleAPIError from '../../lib/handleAPIError'; |
|
import List from '../List'; |
|
import MessageGroup, { MessageGroupForwardedRefContent } from '../MessageGroup'; |
|
import { Panel, PanelHeader } from '../Panels'; |
|
import periodicFetch from '../../lib/fetchers/periodicFetch'; |
|
import Spinner from '../Spinner'; |
|
import { BodyText, HeaderText, MonoText } from '../Text'; |
|
import useChecklist from '../../hooks/useChecklist'; |
|
import useConfirmDialogProps from '../../hooks/useConfirmDialogProps'; |
|
import useFetch from '../../hooks/useFetch'; |
|
import useProtectedState from '../../hooks/useProtectedState'; |
|
|
|
const toFileOverviewList = (rows: string[][]) => |
|
rows.reduce<APIFileOverviewList>((previous, row) => { |
|
const [uuid, name, size, type, checksum] = row; |
|
|
|
previous[uuid] = { |
|
checksum, |
|
name, |
|
size, |
|
type: type as FileType, |
|
uuid, |
|
}; |
|
|
|
return previous; |
|
}, {}); |
|
|
|
const toFileDetail = (rows: string[][]) => { |
|
const { 0: first } = rows; |
|
|
|
if (!first) return undefined; |
|
|
|
const [uuid, name, size, type, checksum] = first; |
|
|
|
return rows.reduce<APIFileDetail>( |
|
(previous, row) => { |
|
const { |
|
5: locationUuid, |
|
6: locationActive, |
|
7: anvilUuid, |
|
8: anvilName, |
|
9: anvilDescription, |
|
10: hostUuid, |
|
11: hostName, |
|
12: hostType, |
|
} = row; |
|
|
|
if (!previous.anvils[anvilUuid]) { |
|
previous.anvils[anvilUuid] = { |
|
description: anvilDescription, |
|
locationUuids: [], |
|
name: anvilName, |
|
uuid: anvilUuid, |
|
}; |
|
} |
|
|
|
if (!previous.hosts[hostUuid]) { |
|
previous.hosts[hostUuid] = { |
|
locationUuids: [], |
|
name: hostName, |
|
type: hostType, |
|
uuid: hostUuid, |
|
}; |
|
} |
|
|
|
if (hostType === 'dr') { |
|
previous.hosts[hostUuid].locationUuids.push(locationUuid); |
|
} else { |
|
previous.anvils[anvilUuid].locationUuids.push(locationUuid); |
|
} |
|
|
|
const active = Number(locationActive) === 1; |
|
|
|
previous.locations[locationUuid] = { |
|
anvilUuid, |
|
active, |
|
hostUuid, |
|
uuid: locationUuid, |
|
}; |
|
|
|
return previous; |
|
}, |
|
{ |
|
anvils: {}, |
|
checksum, |
|
hosts: {}, |
|
locations: {}, |
|
name, |
|
size, |
|
type: type as FileType, |
|
uuid, |
|
}, |
|
); |
|
}; |
|
|
|
const ManageFilePanel: FC = () => { |
|
const addFormDialogRef = useRef<DialogForwardedRefContent>(null); |
|
const confirmDialogRef = useRef<ConfirmDialogForwardedRefContent>({}); |
|
const editFormDialogRef = useRef<DialogForwardedRefContent>(null); |
|
const messageGroupRef = useRef<MessageGroupForwardedRefContent>({}); |
|
|
|
const [confirmDialogProps, setConfirmDialogProps] = useConfirmDialogProps(); |
|
const [edit, setEdit] = useState<boolean>(false); |
|
const [file, setFile] = useProtectedState<APIFileDetail | undefined>( |
|
undefined, |
|
); |
|
const [loadingFile, setLoadingFile] = useProtectedState<boolean>(false); |
|
|
|
const { data: rows, isLoading: loadingFiles } = periodicFetch<string[][]>( |
|
`${API_BASE_URL}/file`, |
|
); |
|
|
|
const files = useMemo( |
|
() => (rows ? toFileOverviewList(rows) : undefined), |
|
[rows], |
|
); |
|
|
|
const { |
|
buildDeleteDialogProps, |
|
checks, |
|
getCheck, |
|
hasAllChecks, |
|
hasChecks, |
|
multipleItems, |
|
setAllChecks, |
|
setCheck, |
|
} = useChecklist({ |
|
list: files, |
|
}); |
|
|
|
const setApiMessage = useCallback( |
|
(message: Message) => |
|
messageGroupRef.current.setMessage?.call(null, 'api', message), |
|
[], |
|
); |
|
|
|
const getFileDetail = useCallback( |
|
(fileUuid: string) => { |
|
setLoadingFile(true); |
|
|
|
api |
|
.get<string[][]>(`file/${fileUuid}`) |
|
.then(({ data }) => { |
|
setFile(toFileDetail(data)); |
|
}) |
|
.catch((error) => { |
|
const emsg = handleAPIError(error); |
|
|
|
emsg.children = <>Failed to get file detail. {emsg.children}</>; |
|
|
|
setApiMessage(emsg); |
|
}) |
|
.finally(() => { |
|
setLoadingFile(false); |
|
}); |
|
}, |
|
[setApiMessage, setFile, setLoadingFile], |
|
); |
|
|
|
const { data: rawAnvils, loading: loadingAnvils } = |
|
useFetch<APIAnvilOverviewArray>('/anvil', { |
|
onError: (error) => { |
|
setApiMessage({ |
|
children: <>Failed to get node list. {error}</>, |
|
type: 'warning', |
|
}); |
|
}, |
|
}); |
|
|
|
const anvils = useMemo( |
|
() => rawAnvils && toAnvilOverviewList(rawAnvils), |
|
[rawAnvils], |
|
); |
|
|
|
const { data: drHosts, loading: loadingDrHosts } = |
|
useFetch<APIHostOverviewList>('/host?types=dr', { |
|
onError: (error) => { |
|
setApiMessage({ |
|
children: <>Failed to get DR host list. {error}</>, |
|
type: 'warning', |
|
}); |
|
}, |
|
}); |
|
|
|
const list = useMemo( |
|
() => ( |
|
<List |
|
allowCheckAll={multipleItems} |
|
allowEdit |
|
allowItemButton={edit} |
|
disableDelete={!hasChecks} |
|
edit={edit} |
|
getListCheckboxProps={() => ({ |
|
checked: hasAllChecks, |
|
onChange: (event, checked) => { |
|
setAllChecks(checked); |
|
}, |
|
})} |
|
getListItemCheckboxProps={(uuid) => ({ |
|
checked: getCheck(uuid), |
|
onChange: (event, checked) => { |
|
setCheck(uuid, checked); |
|
}, |
|
})} |
|
header |
|
listEmpty="No file(s) found." |
|
listItems={files} |
|
onAdd={() => { |
|
addFormDialogRef.current?.setOpen(true); |
|
}} |
|
onDelete={() => { |
|
setConfirmDialogProps( |
|
buildDeleteDialogProps({ |
|
onProceedAppend: () => { |
|
checks.forEach((fileUuid) => api.delete(`/file/${fileUuid}`)); |
|
}, |
|
getConfirmDialogTitle: (count) => |
|
`Delete the following ${count} file(s)?`, |
|
renderEntry: ({ key }) => ( |
|
<BodyText>{files?.[key].name}</BodyText> |
|
), |
|
}), |
|
); |
|
|
|
confirmDialogRef.current.setOpen?.call(null, true); |
|
}} |
|
onEdit={() => { |
|
setEdit((previous) => !previous); |
|
}} |
|
onItemClick={(value, uuid) => { |
|
editFormDialogRef.current?.setOpen(true); |
|
getFileDetail(uuid); |
|
}} |
|
renderListItem={(uuid, { checksum, name, size, type }) => ( |
|
<FlexBox columnSpacing={0} fullWidth md="row" xs="column"> |
|
<FlexBox spacing={0} flexGrow={1}> |
|
<FlexBox row spacing=".5em"> |
|
<MonoText>{name}</MonoText> |
|
<Divider flexItem orientation="vertical" /> |
|
<BodyText>{UPLOAD_FILE_TYPES.get(type)?.[1]}</BodyText> |
|
</FlexBox> |
|
<BodyText>{dSizeStr(size, { toUnit: 'ibyte' })}</BodyText> |
|
</FlexBox> |
|
<MonoText>{checksum}</MonoText> |
|
</FlexBox> |
|
)} |
|
/> |
|
), |
|
[ |
|
buildDeleteDialogProps, |
|
checks, |
|
edit, |
|
files, |
|
getCheck, |
|
getFileDetail, |
|
hasAllChecks, |
|
hasChecks, |
|
multipleItems, |
|
setAllChecks, |
|
setCheck, |
|
setConfirmDialogProps, |
|
], |
|
); |
|
|
|
const panelContent = useMemo( |
|
() => (loadingFiles ? <Spinner /> : list), |
|
[loadingFiles, list], |
|
); |
|
|
|
const messageArea = useMemo( |
|
() => ( |
|
<MessageGroup count={1} ref={messageGroupRef} usePlaceholder={false} /> |
|
), |
|
[], |
|
); |
|
|
|
const loadingAddForm = useMemo<boolean>( |
|
() => loadingFiles || loadingAnvils || loadingDrHosts, |
|
[loadingAnvils, loadingDrHosts, loadingFiles], |
|
); |
|
|
|
const loadingEditForm = useMemo<boolean>( |
|
() => loadingFiles || loadingAnvils || loadingDrHosts || loadingFile, |
|
[loadingAnvils, loadingDrHosts, loadingFile, loadingFiles], |
|
); |
|
|
|
const addForm = useMemo( |
|
() => |
|
anvils && drHosts && <AddFileForm anvils={anvils} drHosts={drHosts} />, |
|
[anvils, drHosts], |
|
); |
|
|
|
const editForm = useMemo( |
|
() => |
|
anvils && |
|
drHosts && |
|
file && ( |
|
<EditFileForm anvils={anvils} drHosts={drHosts} previous={file} /> |
|
), |
|
[anvils, drHosts, file], |
|
); |
|
|
|
return ( |
|
<> |
|
<Panel> |
|
<PanelHeader> |
|
<HeaderText>Files</HeaderText> |
|
</PanelHeader> |
|
{messageArea} |
|
{panelContent} |
|
</Panel> |
|
<DialogWithHeader |
|
header="Add file(s)" |
|
loading={loadingAddForm} |
|
ref={addFormDialogRef} |
|
showClose |
|
wide |
|
> |
|
{addForm} |
|
</DialogWithHeader> |
|
<DialogWithHeader |
|
header={`Update file ${file?.name}`} |
|
loading={loadingEditForm} |
|
ref={editFormDialogRef} |
|
showClose |
|
wide |
|
> |
|
{editForm} |
|
</DialogWithHeader> |
|
<ConfirmDialog |
|
closeOnProceed |
|
wide |
|
{...confirmDialogProps} |
|
ref={confirmDialogRef} |
|
/> |
|
</> |
|
); |
|
}; |
|
|
|
export default ManageFilePanel;
|
|
|