|
| 1 | +import React, { useContext, useEffect, useState } from 'react'; |
| 2 | +import Box from '@mui/material/Box'; |
| 3 | +import Button from '@mui/material/Button'; |
| 4 | +import { useLocation } from 'react-router-dom'; |
| 5 | +import { useTheme } from '@emotion/react'; |
| 6 | +import { Container, useMediaQuery } from '@mui/material'; |
| 7 | +import { ConfirmationModal, SetAclPermissionsModal, UploadDocumentModal } from '@components/Modals'; |
| 8 | +import { useNotification, useSession } from '@hooks'; |
| 9 | +import { DocumentListContext } from '@contexts'; |
| 10 | +import { truncateText } from '@utils'; |
| 11 | +import { DocumentTable } from '@components/Documents'; |
| 12 | + |
| 13 | +/** |
| 14 | + * Documents - Component that generates Documents Page for PASS |
| 15 | + * |
| 16 | + * @memberof Pages |
| 17 | + * @name Documents |
| 18 | + * @returns {React.JSX.Component} The Documents Page |
| 19 | + */ |
| 20 | +const Documents = () => { |
| 21 | + // Route related states |
| 22 | + const location = useLocation(); |
| 23 | + if (location.pathname.split('/')[1] === 'contacts') { |
| 24 | + localStorage.setItem('restorePath', '/contacts'); |
| 25 | + } else { |
| 26 | + localStorage.setItem('restorePath', '/profile'); |
| 27 | + } |
| 28 | + const { setContact } = useContext(DocumentListContext); |
| 29 | + const theme = useTheme(); |
| 30 | + const isSmallScreen = useMediaQuery(theme.breakpoints.down('sm')); |
| 31 | + |
| 32 | + // Documents related states |
| 33 | + const { session } = useSession(); |
| 34 | + const [showConfirmationModal, setShowConfirmationModal] = useState(false); |
| 35 | + const [processing, setProcessing] = useState(false); |
| 36 | + const { addNotification } = useNotification(); |
| 37 | + const { removeDocument } = useContext(DocumentListContext); |
| 38 | + const [selectedDocToDelete, setSelectedDocToDelete] = useState(null); |
| 39 | + const [showAddDocModal, setShowAddDocModal] = useState(false); |
| 40 | + const [showAclPermissionModal, setShowAclPermissionModal] = useState(false); |
| 41 | + const [dataset, setDataset] = useState({ |
| 42 | + modalType: '', |
| 43 | + docName: '', |
| 44 | + docType: '' |
| 45 | + }); |
| 46 | + |
| 47 | + useEffect(() => { |
| 48 | + setContact({ |
| 49 | + familyName: '', |
| 50 | + givenName: '', |
| 51 | + podUrl: session.info.webId?.split('profile')[0], |
| 52 | + thingId: session.info.webId, |
| 53 | + webId: session.info.webId |
| 54 | + }); |
| 55 | + }, [session]); |
| 56 | + |
| 57 | + const handleSelectDeleteDoc = (document) => { |
| 58 | + setSelectedDocToDelete(document); |
| 59 | + setShowConfirmationModal(true); |
| 60 | + }; |
| 61 | + |
| 62 | + // Function for deleting documents |
| 63 | + const handleDeleteDoc = async () => { |
| 64 | + setProcessing(true); |
| 65 | + try { |
| 66 | + await removeDocument(selectedDocToDelete.name); |
| 67 | + addNotification('success', `${selectedDocToDelete?.name} deleted from the pod.`); |
| 68 | + } catch (e) { |
| 69 | + addNotification('error', `Document deletion failed. Reason: ${e.message}`); |
| 70 | + } finally { |
| 71 | + setShowConfirmationModal(false); |
| 72 | + setProcessing(false); |
| 73 | + } |
| 74 | + }; |
| 75 | + |
| 76 | + const handleAclPermissionsModal = (modalType, docName = '', docType = '') => { |
| 77 | + setDataset({ |
| 78 | + modalType, |
| 79 | + docName, |
| 80 | + docType |
| 81 | + }); |
| 82 | + setShowAclPermissionModal(true); |
| 83 | + }; |
| 84 | + |
| 85 | + const truncatedText = selectedDocToDelete?.name ? truncateText(selectedDocToDelete.name) : ''; |
| 86 | + |
| 87 | + return ( |
| 88 | + <Container |
| 89 | + sx={{ |
| 90 | + display: 'flex', |
| 91 | + flexDirection: 'column', |
| 92 | + alignItems: 'center', |
| 93 | + width: '100%' |
| 94 | + }} |
| 95 | + > |
| 96 | + <Box |
| 97 | + sx={{ |
| 98 | + display: 'flex', |
| 99 | + gap: 2, |
| 100 | + flexDirection: 'row', |
| 101 | + paddingLeft: '0px' |
| 102 | + }} |
| 103 | + > |
| 104 | + <Button |
| 105 | + variant="outlined" |
| 106 | + color="primary" |
| 107 | + size="small" |
| 108 | + onClick={() => handleAclPermissionsModal('container')} |
| 109 | + sx={{ |
| 110 | + width: isSmallScreen ? '165px' : '200px', |
| 111 | + borderColor: 'primary.main', |
| 112 | + padding: '6px 12px' |
| 113 | + }} |
| 114 | + > |
| 115 | + Share Documents |
| 116 | + </Button> |
| 117 | + <Button |
| 118 | + variant="contained" |
| 119 | + color="primary" |
| 120 | + size="small" |
| 121 | + onClick={() => setShowAddDocModal(true)} |
| 122 | + sx={{ width: isSmallScreen ? '140px' : '180px', padding: '6px 12px' }} |
| 123 | + > |
| 124 | + Add Document |
| 125 | + </Button> |
| 126 | + <UploadDocumentModal showModal={showAddDocModal} setShowModal={setShowAddDocModal} /> |
| 127 | + <SetAclPermissionsModal |
| 128 | + showModal={showAclPermissionModal} |
| 129 | + setShowModal={setShowAclPermissionModal} |
| 130 | + dataset={dataset} |
| 131 | + /> |
| 132 | + <ConfirmationModal |
| 133 | + showModal={showConfirmationModal} |
| 134 | + setShowModal={setShowConfirmationModal} |
| 135 | + title="Delete Document" |
| 136 | + text={`You're about to delete "${truncatedText}" from the pod. Do you wish to continue?`} |
| 137 | + onConfirm={handleDeleteDoc} |
| 138 | + confirmButtonText="Delete" |
| 139 | + processing={processing} |
| 140 | + /> |
| 141 | + </Box> |
| 142 | + <DocumentTable |
| 143 | + handleAclPermissionsModal={handleAclPermissionsModal} |
| 144 | + handleSelectDeleteDoc={(document) => handleSelectDeleteDoc(document)} |
| 145 | + /> |
| 146 | + </Container> |
| 147 | + ); |
| 148 | +}; |
| 149 | + |
| 150 | +export default Documents; |
0 commit comments