import { DeleteOutlined } from '@ant-design/icons'; import { CustomInput } from '../../view/CustomInput'; import { LinkButton } from '../../view/LinkButton'; import { OutlinedButton } from '../../view/OutlinedButton'; import { Experience } from '../../../types/education'; import { i18nText } from '../../../i18nKeys'; import {useLocalStorage} from "../../../hooks/useLocalStorage"; import {AUTH_TOKEN_KEY} from "../../../constants/common"; type ExperiencesContentProps = { experiences?: Experience[]; update: (ex?: Experience[]) => void; locale: string; }; export const ExperiencesContent = ({ experiences, update, locale }: ExperiencesContentProps) => { const [jwt] = useLocalStorage(AUTH_TOKEN_KEY, ''); const addExperience = () => { const ex = { title: undefined, description: undefined, }; update(experiences?.length > 0 ? [ ...experiences, ex ] : [ex]); }; const deleteExperience = (index: number) => { update([...experiences].filter((ex, i) => i !== index)); }; const onChangeName = (val: string, index: number) => { update(experiences?.map((ex, i) => { if (i === index) { return { ...ex, title: val, } } return ex; })); }; const onChangeDesc = (val: string, index: number) => { update(experiences?.map((ex, i) => { if (i === index) { return { ...ex, description: val, } } return ex; })); }; return (
{experiences?.map(({ title, description}, index) => (
onChangeName(e?.target?.value, index)} /> onChangeDesc(e?.target?.value, index)} />
} onClick={() => deleteExperience(index)} />
))}
{i18nText('addNew', locale)}
); };