From b2c473c48974fba8bcaba77468fb7b72e52303f6 Mon Sep 17 00:00:00 2001 From: William Grant Date: Tue, 23 May 2023 16:56:25 +1000 Subject: [PATCH] fix: rename oldAvatarPath to avatarPath for clarity --- ts/components/dialog/DisplayPictureModal.tsx | 52 +++++++++++--------- ts/components/dialog/EditProfileDialog.tsx | 21 ++++---- 2 files changed, 38 insertions(+), 35 deletions(-) diff --git a/ts/components/dialog/DisplayPictureModal.tsx b/ts/components/dialog/DisplayPictureModal.tsx index 7ed5b60e6..47a124bbf 100644 --- a/ts/components/dialog/DisplayPictureModal.tsx +++ b/ts/components/dialog/DisplayPictureModal.tsx @@ -61,7 +61,7 @@ const uploadProfileAvatar = async (scaledAvatarUrl: string | null) => { }; export type DisplayPictureModalProps = { - oldAvatarPath: string | null; + avatarPath: string | null; profileName: string | undefined; ourId: string; }; @@ -73,9 +73,9 @@ export const DisplayPictureModal = (props: DisplayPictureModalProps) => { return null; } - const { oldAvatarPath, profileName, ourId } = props; + const { avatarPath, profileName, ourId } = props; - const [newAvatarObjectUrl, setNewAvatarObjectUrl] = useState(oldAvatarPath); + const [newAvatarObjectUrl, setNewAvatarObjectUrl] = useState(avatarPath); const [loading, setLoading] = useState(false); const closeDialog = () => { @@ -92,7 +92,7 @@ export const DisplayPictureModal = (props: DisplayPictureModalProps) => { const handleUpload = async () => { setLoading(true); - if (newAvatarObjectUrl === oldAvatarPath) { + if (newAvatarObjectUrl === avatarPath) { window.log.debug(`Avatar Object URL has not changed!`); return; } @@ -119,10 +119,10 @@ export const DisplayPictureModal = (props: DisplayPictureModalProps) => { >
- {newAvatarObjectUrl || oldAvatarPath ? ( + {newAvatarObjectUrl || avatarPath ? ( @@ -132,24 +132,28 @@ export const DisplayPictureModal = (props: DisplayPictureModalProps) => {
- - - -
- - -
+ {loading ? ( + + ) : ( + <> + +
+ + +
+ + )} ); }; diff --git a/ts/components/dialog/EditProfileDialog.tsx b/ts/components/dialog/EditProfileDialog.tsx index 1742d64e1..bf5f80343 100644 --- a/ts/components/dialog/EditProfileDialog.tsx +++ b/ts/components/dialog/EditProfileDialog.tsx @@ -64,17 +64,17 @@ const updateDisplayName = async (newName: string) => { }; type ProfileAvatarProps = { + avatarPath: string | null; newAvatarObjectUrl?: string | null; - oldAvatarPath: string | null; profileName: string | undefined; ourId: string; }; export const ProfileAvatar = (props: ProfileAvatarProps): ReactElement => { - const { newAvatarObjectUrl, oldAvatarPath, profileName, ourId } = props; + const { newAvatarObjectUrl, avatarPath, profileName, ourId } = props; return ( { - const { oldAvatarPath, profileName, ourId, onClick, setMode } = props; + const { avatarPath, profileName, ourId, onClick, setMode } = props; return (
- +
{ const _profileName = useOurConversationUsername() || ''; const [profileName, setProfileName] = useState(_profileName); const [updatedProfileName, setUpdateProfileName] = useState(profileName); - const oldAvatarPath = useOurAvatarPath() || ''; + const avatarPath = useOurAvatarPath() || ''; + const ourId = UserUtils.getOurPubKeyStrFromCache(); const [mode, setMode] = useState('default'); const [loading, setLoading] = useState(false); - const ourId = UserUtils.getOurPubKeyStrFromCache(); - const closeDialog = () => { window.removeEventListener('keyup', handleOnKeyUp); window.inboxStore?.dispatch(editProfileModal(null)); @@ -193,7 +192,7 @@ export const EditProfileDialog = (): ReactElement => { closeDialog(); dispatch( updateDisplayPictureModel({ - oldAvatarPath, + avatarPath, profileName, ourId, }) @@ -223,7 +222,7 @@ export const EditProfileDialog = (): ReactElement => { {mode === 'default' && ( <> { {mode === 'edit' && ( <>