|
|
|
@ -4,20 +4,24 @@ import { |
|
|
|
|
FormControl, |
|
|
|
|
FormControlLabel, |
|
|
|
|
FormGroup, |
|
|
|
|
Grid, |
|
|
|
|
styled, |
|
|
|
|
} from '@mui/material'; |
|
|
|
|
import { |
|
|
|
|
Sync as SyncIcon, |
|
|
|
|
SyncDisabled as SyncDisabledIcon, |
|
|
|
|
} from '@mui/icons-material'; |
|
|
|
|
import { ReactElement, useMemo } from 'react'; |
|
|
|
|
import { v4 as uuidv4 } from 'uuid'; |
|
|
|
|
|
|
|
|
|
import { BLUE, RED, TEXT } from '../../lib/consts/DEFAULT_THEME'; |
|
|
|
|
import { UPLOAD_FILE_TYPES_ARRAY } from '../../lib/consts/UPLOAD_FILE_TYPES'; |
|
|
|
|
|
|
|
|
|
import List from '../List'; |
|
|
|
|
import MenuItem from '../MenuItem'; |
|
|
|
|
import OutlinedInput from '../OutlinedInput'; |
|
|
|
|
import OutlinedInputLabel from '../OutlinedInputLabel'; |
|
|
|
|
import { ExpandablePanel, InnerPanelBody } from '../Panels'; |
|
|
|
|
import Select from '../Select'; |
|
|
|
|
|
|
|
|
|
type FileInfoProps = Pick<FileDetailMetadata, 'fileName' | 'fileLocations'> & |
|
|
|
@ -56,6 +60,34 @@ const FileInfo = ( |
|
|
|
|
const fileTypeElementId = `file-type-${idExtension}`; |
|
|
|
|
const fileTypeElementLabel = 'File type'; |
|
|
|
|
|
|
|
|
|
const anFileLocations = useMemo( |
|
|
|
|
() => |
|
|
|
|
fileLocations.reduce< |
|
|
|
|
Record< |
|
|
|
|
string, |
|
|
|
|
Pick<FileLocation, 'anvilDescription' | 'anvilName' | 'anvilUUID'> & { |
|
|
|
|
flocs: FileLocation[]; |
|
|
|
|
} |
|
|
|
|
> |
|
|
|
|
>((previous, fileLocation) => { |
|
|
|
|
const { anvilDescription, anvilName, anvilUUID } = fileLocation; |
|
|
|
|
|
|
|
|
|
if (!previous[anvilUUID]) { |
|
|
|
|
previous[anvilUUID] = { |
|
|
|
|
anvilDescription, |
|
|
|
|
anvilName, |
|
|
|
|
anvilUUID, |
|
|
|
|
flocs: [], |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
previous[anvilUUID].flocs.push(fileLocation); |
|
|
|
|
|
|
|
|
|
return previous; |
|
|
|
|
}, {}), |
|
|
|
|
[fileLocations], |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
|
<FormGroup sx={{ '> :not(:first-child)': { marginTop: '1em' } }}> |
|
|
|
|
<FormControl> |
|
|
|
@ -100,37 +132,68 @@ const FileInfo = ( |
|
|
|
|
</Select> |
|
|
|
|
</FormControl> |
|
|
|
|
)} |
|
|
|
|
{fileLocations.map( |
|
|
|
|
( |
|
|
|
|
{ anvilName, anvilDescription, anvilUUID, isFileLocationActive }, |
|
|
|
|
fileLocationIndex, |
|
|
|
|
) => ( |
|
|
|
|
<FormControlLabel |
|
|
|
|
control={ |
|
|
|
|
<FileLocationActiveCheckbox |
|
|
|
|
checkedIcon={<SyncIcon />} |
|
|
|
|
defaultChecked={isFileLocationActive} |
|
|
|
|
disabled={isReadonly} |
|
|
|
|
icon={<SyncDisabledIcon />} |
|
|
|
|
onChange={({ target: { checked } }) => { |
|
|
|
|
onChange?.call( |
|
|
|
|
null, |
|
|
|
|
{ |
|
|
|
|
isFileLocationActive: |
|
|
|
|
checked === isFileLocationActive ? undefined : checked, |
|
|
|
|
}, |
|
|
|
|
{ fileLocationIndex }, |
|
|
|
|
); |
|
|
|
|
}} |
|
|
|
|
/> |
|
|
|
|
} |
|
|
|
|
key={anvilUUID} |
|
|
|
|
label={`${anvilName}: ${anvilDescription}`} |
|
|
|
|
sx={{ color: TEXT }} |
|
|
|
|
value={`${anvilUUID}-sync`} |
|
|
|
|
/> |
|
|
|
|
), |
|
|
|
|
)} |
|
|
|
|
<List |
|
|
|
|
listItems={anFileLocations} |
|
|
|
|
listProps={{ dense: true, disablePadding: true }} |
|
|
|
|
renderListItem={(anvilUUID, { anvilDescription, anvilName, flocs }) => ( |
|
|
|
|
<ExpandablePanel |
|
|
|
|
header={`${anvilName}: ${anvilDescription}`} |
|
|
|
|
panelProps={{ padding: 0, width: '100%' }} |
|
|
|
|
> |
|
|
|
|
<InnerPanelBody> |
|
|
|
|
<Grid |
|
|
|
|
columns={{ xs: 1, sm: 2, md: 3, lg: 4, xl: 5 }} |
|
|
|
|
columnSpacing="1em" |
|
|
|
|
container |
|
|
|
|
direction="row" |
|
|
|
|
> |
|
|
|
|
{flocs.map<ReactElement>( |
|
|
|
|
({ |
|
|
|
|
fileLocationUUID: flocUUID, |
|
|
|
|
hostName, |
|
|
|
|
hostUUID, |
|
|
|
|
isFileLocationActive, |
|
|
|
|
}) => ( |
|
|
|
|
<Grid item key={`floc-${anvilUUID}-${hostUUID}`} xs={1}> |
|
|
|
|
<FormControlLabel |
|
|
|
|
control={ |
|
|
|
|
<FileLocationActiveCheckbox |
|
|
|
|
checkedIcon={<SyncIcon />} |
|
|
|
|
defaultChecked={isFileLocationActive} |
|
|
|
|
disabled={isReadonly} |
|
|
|
|
edge="start" |
|
|
|
|
icon={<SyncDisabledIcon />} |
|
|
|
|
onChange={({ target: { checked } }) => { |
|
|
|
|
onChange?.call( |
|
|
|
|
null, |
|
|
|
|
{ |
|
|
|
|
isFileLocationActive: |
|
|
|
|
checked === isFileLocationActive |
|
|
|
|
? undefined |
|
|
|
|
: checked, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
fileLocationIndex: fileLocations.findIndex( |
|
|
|
|
({ fileLocationUUID }) => |
|
|
|
|
flocUUID === fileLocationUUID, |
|
|
|
|
), |
|
|
|
|
}, |
|
|
|
|
); |
|
|
|
|
}} |
|
|
|
|
/> |
|
|
|
|
} |
|
|
|
|
label={hostName} |
|
|
|
|
sx={{ color: TEXT }} |
|
|
|
|
value={`${hostUUID}-sync`} |
|
|
|
|
/> |
|
|
|
|
</Grid> |
|
|
|
|
), |
|
|
|
|
)} |
|
|
|
|
</Grid> |
|
|
|
|
</InnerPanelBody> |
|
|
|
|
</ExpandablePanel> |
|
|
|
|
)} |
|
|
|
|
/> |
|
|
|
|
</FormGroup> |
|
|
|
|
); |
|
|
|
|
}; |
|
|
|
|