81 lines
2.2 KiB
TypeScript
81 lines
2.2 KiB
TypeScript
import { useState } from 'react';
|
|
import { getOperationName } from '@apollo/client/utilities';
|
|
import { useRecoilState } from 'recoil';
|
|
|
|
import { currentUserState } from '@/auth/states/currentUserState';
|
|
import { ImageInput } from '@/ui/input/components/ImageInput';
|
|
import { GET_CURRENT_USER } from '@/users/graphql/queries/getCurrentUser';
|
|
import { getImageAbsoluteURIOrBase64 } from '@/users/utils/getProfilePictureAbsoluteURI';
|
|
import {
|
|
useRemoveProfilePictureMutation,
|
|
useUploadProfilePictureMutation,
|
|
} from '~/generated/graphql';
|
|
|
|
export const ProfilePictureUploader = () => {
|
|
const [uploadPicture, { loading: isUploading }] =
|
|
useUploadProfilePictureMutation();
|
|
const [removePicture] = useRemoveProfilePictureMutation();
|
|
const [currentUser] = useRecoilState(currentUserState);
|
|
const [uploadController, setUploadController] =
|
|
useState<AbortController | null>(null);
|
|
const [errorMessage, setErrorMessage] = useState<string | null>(null);
|
|
|
|
const handleUpload = async (file: File) => {
|
|
if (!file) {
|
|
return;
|
|
}
|
|
|
|
const controller = new AbortController();
|
|
setUploadController(controller);
|
|
|
|
try {
|
|
const result = await uploadPicture({
|
|
variables: {
|
|
file,
|
|
},
|
|
context: {
|
|
fetchOptions: {
|
|
signal: controller.signal,
|
|
},
|
|
},
|
|
refetchQueries: [getOperationName(GET_CURRENT_USER) ?? ''],
|
|
});
|
|
|
|
setUploadController(null);
|
|
setErrorMessage(null);
|
|
return result;
|
|
} catch (error) {
|
|
setErrorMessage('An error occured while uploading the picture.');
|
|
}
|
|
};
|
|
|
|
const handleAbort = async () => {
|
|
if (uploadController) {
|
|
uploadController.abort();
|
|
setUploadController(null);
|
|
}
|
|
};
|
|
|
|
const handleRemove = async () => {
|
|
await removePicture({
|
|
variables: {
|
|
where: {
|
|
id: currentUser?.id,
|
|
},
|
|
},
|
|
refetchQueries: [getOperationName(GET_CURRENT_USER) ?? ''],
|
|
});
|
|
};
|
|
|
|
return (
|
|
<ImageInput
|
|
picture={getImageAbsoluteURIOrBase64(currentUser?.avatarUrl)}
|
|
onUpload={handleUpload}
|
|
onRemove={handleRemove}
|
|
onAbort={handleAbort}
|
|
isUploading={isUploading}
|
|
errorMessage={errorMessage}
|
|
/>
|
|
);
|
|
};
|