mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-05 04:59:26 +05:30
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
import React, { ComponentType, useCallback, useContext, useRef } from 'react';
|
|
|
|
import { useReduxDispatch } from 'app/functions';
|
|
import { deleteAccount } from 'app/services/api/accounts';
|
|
import { FormModel } from 'app/components/ui/form';
|
|
import DeleteAccount from 'app/components/profile/deleteAccount';
|
|
import { updateUser } from 'app/components/user/actions';
|
|
import ProfileContext from 'app/components/profile/Context';
|
|
|
|
const DeleteAccountPage: ComponentType = () => {
|
|
const context = useContext(ProfileContext);
|
|
const dispatch = useReduxDispatch();
|
|
const { current: form } = useRef(new FormModel());
|
|
const onSubmit = useCallback(async () => {
|
|
await context.onSubmit({
|
|
form,
|
|
sendData: () => deleteAccount(context.userId, form.serialize()),
|
|
});
|
|
dispatch(
|
|
updateUser({
|
|
isDeleted: true,
|
|
}),
|
|
);
|
|
context.goToProfile();
|
|
}, [context]);
|
|
|
|
return <DeleteAccount onSubmit={onSubmit} />;
|
|
};
|
|
|
|
export default DeleteAccountPage;
|