import { joiResolver } from '@hookform/resolvers/joi'; import { Add, DriveFileRenameOutline } from '@mui/icons-material'; import { Button, Slider, TextField } from '@mui/material'; import Joi from 'joi'; import get from 'lodash/get'; import isEmpty from 'lodash/isEmpty'; import { useTranslation } from 'next-i18next'; import { useEffect, useMemo } from 'react'; import { Controller, useForm } from 'react-hook-form'; import { SectionPath, Skill } from 'schema'; import ArrayInput from '@/components/shared/ArrayInput'; import BaseModal from '@/components/shared/BaseModal'; import { useAppDispatch, useAppSelector } from '@/store/hooks'; import { setModalState } from '@/store/modal/modalSlice'; import { addItem, editItem } from '@/store/resume/resumeSlice'; type FormData = Skill; const path: SectionPath = 'sections.skills'; const defaultState: FormData = { name: '', level: '', levelNum: 0, keywords: [], }; const schema = Joi.object().keys({ id: Joi.string(), name: Joi.string().required(), level: Joi.string().allow(''), levelNum: Joi.number().min(0).max(10).required(), keywords: Joi.array().items(Joi.string().optional()), }); const SkillModal: React.FC = () => { const { t } = useTranslation(); const dispatch = useAppDispatch(); const heading = useAppSelector((state) => get(state.resume.present, `${path}.name`)); const { open: isOpen, payload } = useAppSelector((state) => state.modal[`builder.${path}`]); const item: FormData = get(payload, 'item', null); const isEditMode = useMemo(() => !!item, [item]); const addText = useMemo(() => t('builder.common.actions.add', { token: heading }), [t, heading]); const editText = useMemo(() => t('builder.common.actions.edit', { token: heading }), [t, heading]); const { reset, control, handleSubmit } = useForm({ defaultValues: defaultState, resolver: joiResolver(schema), }); const onSubmit = (formData: FormData) => { if (isEditMode) { dispatch(editItem({ path: `${path}.items`, value: formData })); } else { dispatch(addItem({ path: `${path}.items`, value: formData })); } handleClose(); }; const handleClose = () => { dispatch( setModalState({ modal: `builder.${path}`, state: { open: false }, }), ); reset(defaultState); }; useEffect(() => { if (!isEmpty(item)) { reset(item); } }, [item, reset]); return ( : } isOpen={isOpen} handleClose={handleClose} heading={isEditMode ? editText : addText} footerChildren={} >
( )} /> ( )} /> (

{t('builder.common.form.levelNum.label')}

field.onChange(value as number)} marks={[ { value: 0, label: 'Disable', }, { value: 1, label: 'Beginner', }, { value: 10, label: 'Expert', }, ]} min={0} max={10} defaultValue={0} color="secondary" valueLabelDisplay="auto" aria-label={t('builder.common.form.levelNum.label')} />
)} /> ( )} />
); }; export default SkillModal;