'use client'; import React, { FC, useEffect, useState } from 'react'; import { Form, Upload } from 'antd'; import type { UploadFile, UploadProps } from 'antd'; import ImgCrop from 'antd-img-crop'; import { CameraOutlined, DeleteOutlined } from '@ant-design/icons'; import { useRouter } from '../../navigation'; import { i18nText } from '../../i18nKeys'; import { Profile } from '../../types/profile'; import { useProfileSettings } from '../../actions/hooks/useProfileSettings'; import { CustomInput } from '../view/CustomInput'; import { OutlinedButton } from '../view/OutlinedButton'; import { FilledYellowButton } from '../view/FilledButton'; import { DeleteAccountModal } from "../Modals/DeleteAccountModal"; type ProfileSettingsProps = { locale: string; }; // type FileType = Parameters>[0]; export const ProfileSettings: FC = ({ locale }) => { const [form] = Form.useForm(); const { profileSettings } = useProfileSettings(locale); const [showDeleteModal, setShowDeleteModal] = useState(false); const router = useRouter(); useEffect(() => { if (profileSettings) { form.setFieldsValue(profileSettings); } }, [profileSettings]); const saveProfileSettings = () => { form.validateFields() .then(() => { console.log('success') }) } const [fileList, setFileList] = useState(); const onChange: UploadProps['onChange'] = ({ fileList: newFileList }) => { setFileList(newFileList); }; const onPreview = async (file: UploadFile) => { // let src = file.url as string; // if (!src) { // src = await new Promise((resolve) => { // const reader = new FileReader(); // reader.readAsDataURL(file.originFileObj as FileType); // reader.onload = () => resolve(reader.result as string); // }); // } // const image = new Image(); // image.src = src; // const imgWindow = window.open(src); // imgWindow?.document.write(image.outerHTML); }; const onDeleteAccount = () => setShowDeleteModal(true); return (
{i18nText('photoDesc', locale)}
{/* */}
{/*
*/}
{i18nText('save', locale)} router.push('change-password')}> {i18nText('changePass', locale)} } danger > {i18nText('deleteAcc', locale)}
setShowDeleteModal(false)} /> ); };