{"version":3,"file":"useMatchingForm-BD3fl8rQ.js","sources":["../../../app/javascript/modules/growthmentor/matches/composables/useMatchingForm.ts"],"sourcesContent":["import { useForm } from '@inertiajs/vue3'\nimport { UNLOCK_FULL_ACCESS_MODAL_NAME } from '@/shared/data/globalVariables.js'\nimport { notify } from '@kyvg/vue3-notification'\nimport { usePermissionSystem } from '@/shared/composables/usePermissionSystem.js'\nimport { useModals } from '@/shared/composables/useModals.js'\nimport { getUniqueId } from '@/shared/utils/uniqueId.js'\n\ninterface FormBodyType {\n challenge: string\n outcome: string\n}\n\nexport const useMatchingForm = ({\n defaultValues,\n}: {\n defaultValues?: FormBodyType\n} = {}) => {\n const formId = `matching-form-${getUniqueId()}`\n const { isUserLoggedIn } = usePermissionSystem()\n const { openModal } = useModals()\n\n const matchingForm = useForm({\n challenge: defaultValues?.challenge || '',\n outcome: defaultValues?.outcome || '',\n })\n const SUCCESS_MESSAGE =\n 'We are looking for suitable mentors for you. You will be notified when we find a match. (estimated time: 1-2 minutes)'\n\n const submitForm = ({\n url,\n method,\n transformator,\n onSuccess,\n }: {\n url: string\n method: 'POST' | 'PATCH'\n transformator?: (data: FormBodyType) => object\n onSuccess?: () => void\n }) => {\n if (!isUserLoggedIn.value) {\n return openModal(UNLOCK_FULL_ACCESS_MODAL_NAME)\n }\n\n matchingForm\n .transform(transformator || ((data) => data))\n [method.toLowerCase()](url, {\n preserveScroll: true,\n onSuccess: () => {\n matchingForm.reset()\n notify({\n type: 'success',\n text: SUCCESS_MESSAGE,\n duration: 8000,\n })\n onSuccess?.()\n },\n onError: (error) => {\n const errorMessage =\n error.challenge || error.outcome\n ? 'Please fill in all the fields.'\n : error || 'Something went wrong. Please try again.'\n notify({\n type: 'error',\n text: errorMessage,\n })\n },\n })\n }\n\n return {\n formId,\n matchingForm,\n submitForm,\n SUCCESS_MESSAGE,\n }\n}\n"],"names":["useMatchingForm","defaultValues","formId","getUniqueId","isUserLoggedIn","usePermissionSystem","openModal","useModals","matchingForm","useForm","SUCCESS_MESSAGE","url","method","transformator","onSuccess","UNLOCK_FULL_ACCESS_MODAL_NAME","data","notify","error","errorMessage"],"mappings":"oFAYO,MAAMA,EAAkB,CAAC,CAC9B,cAAAC,CACF,EAEI,KAAO,CACH,MAAAC,EAAS,iBAAiBC,EAAA,CAAa,GACvC,CAAE,eAAAC,GAAmBC,IACrB,CAAE,UAAAC,GAAcC,IAEhBC,EAAeC,EAAsB,CACzC,WAAWR,GAAA,YAAAA,EAAe,YAAa,GACvC,SAASA,GAAA,YAAAA,EAAe,UAAW,EAAA,CACpC,EACKS,EACJ,wHA2CK,MAAA,CACL,OAAAR,EACA,aAAAM,EACA,WA5CiB,CAAC,CAClB,IAAAG,EACA,OAAAC,EACA,cAAAC,EACA,UAAAC,CAAA,IAMI,CACA,GAAA,CAACV,EAAe,MAClB,OAAOE,EAAUS,CAA6B,EAI7CP,EAAA,UAAUK,IAAmBG,GAASA,EAAK,EAC3CJ,EAAO,aAAa,EAAED,EAAK,CAC1B,eAAgB,GAChB,UAAW,IAAM,CACfH,EAAa,MAAM,EACZS,EAAA,CACL,KAAM,UACN,KAAMP,EACN,SAAU,GAAA,CACX,EACWI,GAAA,MAAAA,GACd,EACA,QAAUI,GAAU,CAClB,MAAMC,EACJD,EAAM,WAAaA,EAAM,QACrB,iCACAA,GAAS,0CACRD,EAAA,CACL,KAAM,QACN,KAAME,CAAA,CACP,CACH,CAAA,CACD,CAAA,EAOH,gBAAAT,CAAA,CAEJ"}