-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EES-5544 Change data set import page accordions into a table #5459
base: dev
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
@import '~govuk-frontend/dist/govuk/base'; | ||
|
||
.table { | ||
td { | ||
padding-bottom: govuk-spacing(2); | ||
padding-top: govuk-spacing(2); | ||
vertical-align: middle; | ||
} | ||
|
||
.fileSize { | ||
width: 5rem; | ||
text-align: right; | ||
} | ||
|
||
.fileStatus { | ||
max-width: 164px; | ||
} | ||
|
||
.actions { | ||
margin-bottom: 0; | ||
} | ||
Comment on lines
+10
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As we're using CSS modules, no need to nest these under the |
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,239 @@ | ||
import Link from '@admin/components/Link'; | ||
import DataFileDetailsTable from '@admin/pages/release/data/components/DataFileDetailsTable'; | ||
import DataUploadCancelButton from '@admin/pages/release/data/components/DataUploadCancelButton'; | ||
import ImporterStatus, { | ||
terminalImportStatuses, | ||
} from '@admin/pages/release/data/components/ImporterStatus'; | ||
import { | ||
releaseApiDataSetDetailsRoute, | ||
releaseDataFileReplaceRoute, | ||
ReleaseDataFileReplaceRouteParams, | ||
releaseDataFileRoute, | ||
ReleaseDataFileRouteParams, | ||
ReleaseDataSetRouteParams, | ||
} from '@admin/routes/releaseRoutes'; | ||
import { | ||
DataFile, | ||
DataFileImportStatus, | ||
} from '@admin/services/releaseDataFileService'; | ||
import ButtonGroup from '@common/components/ButtonGroup'; | ||
import ButtonText from '@common/components/ButtonText'; | ||
import Modal from '@common/components/Modal'; | ||
import ReorderableList from '@common/components/ReorderableList'; | ||
import reorder from '@common/utils/reorder'; | ||
import React, { useEffect, useState } from 'react'; | ||
import { generatePath } from 'react-router'; | ||
import styles from './DataFilesTable.module.scss'; | ||
|
||
interface Props { | ||
dataFiles: DataFile[]; | ||
publicationId: string; | ||
releaseId: string; | ||
canUpdateRelease?: boolean; | ||
isReordering: boolean; | ||
onCancelReordering: () => void; | ||
onConfirmReordering: (nextSeries: DataFile[]) => void; | ||
onDeleteFile: (dataFile: DataFile) => Promise<void>; | ||
onStatusChange: ( | ||
dataFile: DataFile, | ||
{ totalRows, status }: DataFileImportStatus, | ||
) => Promise<void>; | ||
} | ||
|
||
const DataFilesTable = ({ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could change to use |
||
dataFiles: initialDataFiles, | ||
publicationId, | ||
releaseId, | ||
canUpdateRelease, | ||
isReordering, | ||
onCancelReordering, | ||
onConfirmReordering, | ||
onDeleteFile, | ||
onStatusChange, | ||
}: Props) => { | ||
const [dataFiles, setDataFiles] = useState(initialDataFiles); | ||
|
||
useEffect(() => { | ||
setDataFiles(initialDataFiles); | ||
}, [initialDataFiles]); | ||
|
||
if (isReordering) { | ||
return ( | ||
<ReorderableList | ||
heading="Reorder data files" | ||
id="dataFiles" | ||
list={dataFiles.map(({ id, title }) => ({ | ||
id, | ||
label: title, | ||
}))} | ||
onCancel={() => { | ||
setDataFiles(initialDataFiles); | ||
onCancelReordering(); | ||
}} | ||
onConfirm={() => onConfirmReordering(dataFiles)} | ||
onMoveItem={({ prevIndex, nextIndex }) => { | ||
const reordered = reorder(dataFiles, prevIndex, nextIndex); | ||
setDataFiles(reordered); | ||
}} | ||
onReverse={() => { | ||
setDataFiles(dataFiles.toReversed()); | ||
}} | ||
/> | ||
); | ||
} | ||
|
||
return ( | ||
<table className={styles.table} data-testid="Data files table"> | ||
<thead> | ||
<tr> | ||
<th scope="col">Subject title</th> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We've moved away from referencing things as 'subject' quite a while (like years) ago but never got around to updating the data uploads page to reflect this. Would suggest that we change this to just 'Title' and also update other parts of the UI accordingly as well e.g. The upload form's title input field: The details modal: |
||
<th scope="col">Size</th> | ||
<th scope="col">Status</th> | ||
<th scope="col">Actions</th> | ||
</tr> | ||
</thead> | ||
|
||
<tbody> | ||
{dataFiles.map(dataFile => ( | ||
<tr key={dataFile.title}> | ||
<td data-testid="Subject title">{dataFile.title}</td> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
<td data-testid="Data file size" className={styles.fileSize}> | ||
{dataFile.fileSize.size.toLocaleString()} {dataFile.fileSize.unit} | ||
</td> | ||
<td data-testid="Status"> | ||
<ImporterStatus | ||
className={styles.fileStatus} | ||
releaseId={releaseId} | ||
dataFile={dataFile} | ||
onStatusChange={onStatusChange} | ||
/> | ||
</td> | ||
Comment on lines
+103
to
+110
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
<td data-testid="Actions"> | ||
<ButtonGroup className={styles.actions}> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
<Modal | ||
showClose | ||
title="Data file details" | ||
triggerButton={<ButtonText>View details</ButtonText>} | ||
> | ||
<DataFileDetailsTable | ||
dataFile={dataFile} | ||
releaseId={releaseId} | ||
onStatusChange={onStatusChange} | ||
/> | ||
</Modal> | ||
{canUpdateRelease && | ||
terminalImportStatuses.includes(dataFile.status) && ( | ||
<> | ||
{dataFile.status === 'COMPLETE' && ( | ||
<> | ||
<Link | ||
to={generatePath<ReleaseDataFileRouteParams>( | ||
releaseDataFileRoute.path, | ||
{ | ||
publicationId, | ||
releaseId, | ||
fileId: dataFile.id, | ||
}, | ||
)} | ||
> | ||
Edit title | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
</Link> | ||
{dataFile.publicApiDataSetId ? ( | ||
<Modal | ||
showClose | ||
title="Cannot replace data" | ||
triggerButton={ | ||
<ButtonText>Replace data</ButtonText> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
} | ||
> | ||
<p> | ||
This data file has an API data set linked to it. | ||
Please remove the API data set before replacing | ||
the data. | ||
</p> | ||
<p> | ||
<Link | ||
to={generatePath<ReleaseDataSetRouteParams>( | ||
releaseApiDataSetDetailsRoute.path, | ||
{ | ||
publicationId, | ||
releaseId, | ||
dataSetId: dataFile.publicApiDataSetId, | ||
}, | ||
)} | ||
> | ||
Go to API data set | ||
</Link> | ||
</p> | ||
</Modal> | ||
) : ( | ||
<Link | ||
to={generatePath<ReleaseDataFileReplaceRouteParams>( | ||
releaseDataFileReplaceRoute.path, | ||
{ | ||
publicationId, | ||
releaseId, | ||
fileId: dataFile.id, | ||
}, | ||
)} | ||
> | ||
Replace data | ||
</Link> | ||
)} | ||
</> | ||
)} | ||
{dataFile.publicApiDataSetId ? ( | ||
<Modal | ||
showClose | ||
title="Cannot delete files" | ||
triggerButton={ | ||
<ButtonText className="govuk-!-margin-left-3"> | ||
Delete files | ||
</ButtonText> | ||
} | ||
> | ||
<p> | ||
This data file has an API data set linked to it. | ||
Please remove the API data set before deleting. | ||
</p> | ||
<p> | ||
<Link | ||
to={generatePath<ReleaseDataSetRouteParams>( | ||
releaseApiDataSetDetailsRoute.path, | ||
{ | ||
publicationId, | ||
releaseId, | ||
dataSetId: dataFile.publicApiDataSetId, | ||
}, | ||
)} | ||
> | ||
Go to API data set | ||
</Link> | ||
</p> | ||
</Modal> | ||
) : ( | ||
<ButtonText | ||
onClick={() => onDeleteFile(dataFile)} | ||
variant="warning" | ||
> | ||
Delete files | ||
</ButtonText> | ||
)} | ||
</> | ||
)} | ||
{dataFile.permissions.canCancelImport && ( | ||
<DataUploadCancelButton | ||
releaseId={releaseId} | ||
fileId={dataFile.id} | ||
/> | ||
)} | ||
</ButtonGroup> | ||
</td> | ||
</tr> | ||
))} | ||
</tbody> | ||
</table> | ||
); | ||
}; | ||
|
||
export default DataFilesTable; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure we need this padding?
The default
td
styling already includes identical vertical padding so this seems redudnant.