import { DeleteOutlined } from '@ant-design/icons'; import { CustomInput } from '../../view/CustomInput'; import { LinkButton } from '../../view/LinkButton'; import { OutlinedButton } from '../../view/OutlinedButton'; import { Details } from '../../../types/education'; import { i18nText } from '../../../i18nKeys'; import { Upload, UploadFile } from 'antd'; import { validateDoc } from '../../../utils/account'; import { useLocalStorage } from '../../../hooks/useLocalStorage'; import { AUTH_TOKEN_KEY } from '../../../constants/common'; type TrainingsContentProps = { trainings?: Details[]; update: (tr?: Details[]) => void; locale: string; }; export const TrainingsContent = ({ trainings, update, locale }: TrainingsContentProps) => { const [jwt] = useLocalStorage(AUTH_TOKEN_KEY, ''); const addTrainings = () => { const training = { title: undefined, description: undefined, document: null }; update(trainings?.length > 0 ? [ ...trainings, training ] : [training]); }; const deleteTrainings = (index: number) => { update([...trainings].filter((tr, i) => i !== index)); }; const beforeUpload = (file: UploadFile) => { const isValid = validateDoc(file); if (!isValid) { return Upload.LIST_IGNORE; } return true; } const onRemoveFile = (index: number) => { update(trainings?.map((tr, i) => { if (i === index) { return { ...tr, document: null, } } return tr; })); }; const onChange = (file: any, index: number) => { if (file?.response) { update([...trainings].map((tr, i) => { if (i === index) { return { ...tr, document: file?.response || null, } } return tr; })); } }; const onChangeName = (val: string, index: number) => { update(trainings?.map((tr, i) => { if (i === index) { return { ...tr, title: val, } } return tr; })); }; const onChangeDesc = (val: string, index: number) => { update(trainings?.map((tr, i) => { if (i === index) { return { ...tr, description: val, } } return tr; })); }; return (