import { Upload, UploadFile } from 'antd'; import { DeleteOutlined } from '@ant-design/icons'; import { Association, AssociationLevel, Certificate } from '../../../types/education'; import { CustomSelect } from '../../view/CustomSelect'; import { LinkButton } from '../../view/LinkButton'; import { OutlinedButton } from '../../view/OutlinedButton'; import { i18nText } from '../../../i18nKeys'; import { validateDoc } from '../../../utils/account'; import { useLocalStorage } from '../../../hooks/useLocalStorage'; import { AUTH_TOKEN_KEY } from '../../../constants/common'; type CertificatesContentProps = { certificates?: Certificate[]; update: (cert?: Certificate[]) => void; associations?: Association[]; associationLevels?: AssociationLevel[]; locale: string; }; export const CertificatesContent = ({ certificates, update, associations, associationLevels, locale }: CertificatesContentProps) => { const [jwt] = useLocalStorage(AUTH_TOKEN_KEY, ''); const addCertificate = () => { const cert = { associationLevelId: undefined, document: null }; update(certificates?.length > 0 ? [ ...certificates, cert ] : [cert]); }; const deleteCertificate = (index: number) => { update([...certificates].filter((cert, i) => i !== index)); }; const beforeUpload = (file: UploadFile) => { const isValid = validateDoc(file); if (!isValid) { return Upload.LIST_IGNORE; } return true; } const onRemoveFile = (index: number) => { update(certificates?.map((cert, i) => { if (i === index) { return { ...cert, document: null, } } return cert; })); }; const onChangeAssociation = (val: number, index: number) => { update(certificates?.map((cert, i) => { if (i === index) { return { ...cert, associationId: val, associationLevelId: undefined } } return cert; })); }; const onChangeLevel = (val: number, index: number) => { update(certificates?.map((cert, i) => { if (i === index) { return { ...cert, associationLevelId: val } } return cert; })); }; const onChange = (file: any, index: number) => { if (file?.response) { update([...certificates].map((cert, i) => { if (i === index) { return { ...cert, document: file?.response || null, } } return cert; })); } }; return (