From d3ea510bc00eb5fd2abee1cbbc3925afcaaa1002 Mon Sep 17 00:00:00 2001 From: jubitjohn Date: Tue, 11 Jul 2023 12:18:09 +0530 Subject: [PATCH] comments removed --- .../ShareControl/CollabEmailShare.tsx | 1 - .../ShareControl/CollabEmailShareOptions.tsx | 8 ++------ .../ShareControl/ManageAddCollabOptions.tsx | 12 ------------ .../ShareControl/ManageAddViewerOptions.tsx | 15 +-------------- .../ShareControl/ManageParticipants.tsx | 5 ----- .../ShareControl/ManageParticipantsList.tsx | 1 - .../ManageParticipantsOptions.tsx | 19 ------------------- .../ShareControl/ManageParticipantsRole.tsx | 3 --- .../ShareControl/MangeAddCollab.tsx | 3 --- .../ShareControl/ViewerEmailShare.tsx | 2 -- .../ShareControl/ViewerEmailShareOptions.tsx | 2 -- 11 files changed, 3 insertions(+), 68 deletions(-) diff --git a/apps/photos/src/components/Collections/CollectionShare/ShareControl/CollabEmailShare.tsx b/apps/photos/src/components/Collections/CollectionShare/ShareControl/CollabEmailShare.tsx index 00133e68f..34e4b85ae 100644 --- a/apps/photos/src/components/Collections/CollectionShare/ShareControl/CollabEmailShare.tsx +++ b/apps/photos/src/components/Collections/CollectionShare/ShareControl/CollabEmailShare.tsx @@ -101,7 +101,6 @@ export default function CollabEmailShare({ collection, onClose }) { }} disableAutoFocus /> - {/* */} ); } diff --git a/apps/photos/src/components/Collections/CollectionShare/ShareControl/CollabEmailShareOptions.tsx b/apps/photos/src/components/Collections/CollectionShare/ShareControl/CollabEmailShareOptions.tsx index 5a4dc574f..0196d8584 100644 --- a/apps/photos/src/components/Collections/CollectionShare/ShareControl/CollabEmailShareOptions.tsx +++ b/apps/photos/src/components/Collections/CollectionShare/ShareControl/CollabEmailShareOptions.tsx @@ -17,6 +17,7 @@ interface formValues { inputValue: string; selectedOptions: string[]; } + export interface CollabEmailShareOptionsProps { callback: ( inputValue: string[], @@ -44,7 +45,6 @@ export default function CollabEmailShareOptions( props: CollabEmailShareOptionsProps ) { console.log('OptionList Intial', props.optionsList); - // const [selectedOptions, setSelectedOptions] = useState([]); const { submitButtonProps } = props; const { sx: buttonSx, ...restSubmitButtonProps } = submitButtonProps ?? {}; const [updatedOptionsList, setUpdatedOptionsList] = useState( @@ -80,9 +80,7 @@ export default function CollabEmailShareOptions( } setDisableInput(false); - SetLoading(false); - props.onClose(); }; @@ -136,7 +134,7 @@ export default function CollabEmailShareOptions( : { label: props.placeholder })} error={Boolean(errors.inputValue)} helperText={errors.inputValue} - // value={values.inputValue} + value={values.inputValue} disabled={loading || disableInput} autoFocus={!props.disableAutoFocus} autoComplete={props.autoComplete} @@ -151,11 +149,9 @@ export default function CollabEmailShareOptions( {updatedOptionsList.map((item, index) => ( <> { - // handleEmailClick(item, setFieldValue) if ( values.selectedOptions.includes( item diff --git a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageAddCollabOptions.tsx b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageAddCollabOptions.tsx index 5c0119f29..3de05c371 100644 --- a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageAddCollabOptions.tsx +++ b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageAddCollabOptions.tsx @@ -1,10 +1,4 @@ import { Stack } from '@mui/material'; -// import { GalleryContext } from 'pages/gallery'; -// import React, { useContext, useState } from 'react'; -// import { -// deleteShareableURL, -// updateShareableURL, -// } from 'services/collectionService'; import { Collection } from 'types/collection'; import { EnteDrawer } from 'components/EnteDrawer'; @@ -12,7 +6,6 @@ import { t } from 'i18next'; import { DialogProps } from '@mui/material'; import Titlebar from 'components/Titlebar'; import MenuSectionTitle from 'components/Menu/MenuSectionTitle'; -// import EmailShare from '../emailShare'; import WorkspacesIcon from '@mui/icons-material/Workspaces'; import CollabEmailShare from './CollabEmailShare'; @@ -25,8 +18,6 @@ interface Iprops { } export default function ManageAddCollabOptions({ - // publicShareProp, - // setPublicShareProp, open, collection, onClose, @@ -39,9 +30,6 @@ export default function ManageAddCollabOptions({ onClose(); } }; - // const galleryContext = useContext(GalleryContext); - - // const [sharableLinkError, setSharableLinkError] = useState(null); return ( <> diff --git a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageAddViewerOptions.tsx b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageAddViewerOptions.tsx index 208bfb700..deda8cfe3 100644 --- a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageAddViewerOptions.tsx +++ b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageAddViewerOptions.tsx @@ -1,17 +1,11 @@ import { Stack } from '@mui/material'; -// import { GalleryContext } from 'pages/gallery'; -// import React, { useContext, useState } from 'react'; -// import { -// deleteShareableURL, -// updateShareableURL, -// } from 'services/collectionService'; import { Collection } from 'types/collection'; import { EnteDrawer } from 'components/EnteDrawer'; import { t } from 'i18next'; import { DialogProps } from '@mui/material'; import Titlebar from 'components/Titlebar'; import MenuSectionTitle from 'components/Menu/MenuSectionTitle'; -// import EmailShare from '../emailShare'; + import WorkspacesIcon from '@mui/icons-material/Workspaces'; import ViewerEmailShare from './ViewerEmailShare'; @@ -23,8 +17,6 @@ interface Iprops { } export default function ManageAddViewerOptions({ - // publicShareProp, - // setPublicShareProp, open, collection, onClose, @@ -37,11 +29,6 @@ export default function ManageAddViewerOptions({ onClose(); } }; - // const galleryContext = useContext(GalleryContext); - - // const [sharableLinkError, setSharableLinkError] = useState(null); - - // Adding key-value pairs to the map return ( <> diff --git a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipants.tsx b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipants.tsx index e229a4670..62d24b4de 100644 --- a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipants.tsx +++ b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipants.tsx @@ -5,15 +5,11 @@ import { Collection } from 'types/collection'; import ChevronRightIcon from '@mui/icons-material/ChevronRight'; import { useState } from 'react'; import { t } from 'i18next'; -// import ManageAddViewerOptions from './ManageAddViewerOptions'; -// import { CollectionShareSharees } from '../sharees'; import AvatarCollectionShare from '../AvatarCollectionShare'; -// import ManageAddViewer from './ManageAddViewer'; import MenuItemDivider from 'components/Menu/MenuItemDivider'; import Avatar from '@mui/material/Avatar'; import ManageParticipantsOptions from './ManageParticipantsOptions'; import { Workspaces } from '@mui/icons-material'; -// import { CollectionShareSharees } from '../sharees'; interface Iprops { collection: Collection; @@ -51,7 +47,6 @@ export default function ManageParticipants({ const shareeCount = collection.sharees?.length || 0; const extraShareeCount = Math.max(0, shareeCount - 6); - // console.log('Lenght for sharee list', collection.sharees[0].email); return ( <> diff --git a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsList.tsx b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsList.tsx index d3e0278a7..2e700afe9 100644 --- a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsList.tsx +++ b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsList.tsx @@ -1,6 +1,5 @@ import { Box } from '@mui/material'; import React, { useContext } from 'react'; -// import { t } from 'i18next'; import { Collection } from 'types/collection'; import { OwnerParticipant } from './OwnerParticipant'; import { ViewerParticipants } from './ViewerParticipants'; diff --git a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsOptions.tsx b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsOptions.tsx index a188618cd..0cf2efab5 100644 --- a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsOptions.tsx +++ b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsOptions.tsx @@ -1,21 +1,9 @@ import { Stack } from '@mui/material'; -// import { GalleryContext } from 'pages/gallery'; -// import React, { useContext, useState } from 'react'; -// import { -// deleteShareableURL, -// updateShareableURL, -// } from 'services/collectionService'; import { Collection } from 'types/collection'; - import { EnteDrawer } from 'components/EnteDrawer'; import { t } from 'i18next'; import { DialogProps } from '@mui/material'; import Titlebar from 'components/Titlebar'; -// import MenuSectionTitle from 'components/Menu/MenuSectionTitle'; -// import EmailShare from '../emailShare'; -// import WorkspacesIcon from '@mui/icons-material/Workspaces'; -// import ViewerEmailShare from './ViewerEmailShare'; -// import { CollectionShareSharees } from '../sharees'; import { ManageParticipantsList } from './ManageParticipantsList'; interface Iprops { @@ -29,8 +17,6 @@ interface Iprops { } export default function ManageParticipantsOptions({ - // publicShareProp, - // setPublicShareProp, open, collection, onClose, @@ -44,11 +30,6 @@ export default function ManageParticipantsOptions({ onClose(); } }; - // const galleryContext = useContext(GalleryContext); - - // const [sharableLinkError, setSharableLinkError] = useState(null); - - // Adding key-value pairs to the map return ( <> diff --git a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsRole.tsx b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsRole.tsx index 9875ef1e8..6f69a71af 100644 --- a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsRole.tsx +++ b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ManageParticipantsRole.tsx @@ -128,7 +128,6 @@ export default function ManageParticipantsRole({ }); }; - console.log('collection Clicked', collection, selectedEmail); return ( <> @@ -151,7 +150,6 @@ export default function ManageParticipantsRole({ handleRoleChange('COLLABORATOR') @@ -212,7 +210,6 @@ export default function ManageParticipantsRole({ - {/* */} ); } diff --git a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ViewerEmailShareOptions.tsx b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ViewerEmailShareOptions.tsx index 5f188ef31..94f6cd8fc 100644 --- a/apps/photos/src/components/Collections/CollectionShare/ShareControl/ViewerEmailShareOptions.tsx +++ b/apps/photos/src/components/Collections/CollectionShare/ShareControl/ViewerEmailShareOptions.tsx @@ -50,7 +50,6 @@ export default function ViewerEmailShareOptions( props.optionsList ); const [disableInput, setDisableInput] = useState(false); - // console.log('updatedOptionsList list:', updatedOptionsList); const [loading, SetLoading] = useState(false); @@ -153,7 +152,6 @@ export default function ViewerEmailShareOptions( fontWeight="normal" key={item} onClick={() => { - // handleEmailClick(item, setFieldValue) if ( values.selectedOptions.includes( item