import React, { useState, useEffect, useMemo, useRef } from 'react'; import { Controller, set, useForm } from 'react-hook-form'; import HookFormSelect from '@/core/components/elements/Select/HookFormSelect'; import odooApi from '~/libs/odooApi'; import stateApi from '@/lib/address/api/stateApi.js'; import cityApi from '@/lib/address/api/cityApi'; import { Radio, RadioGroup, Stack, Checkbox } from '@chakra-ui/react'; import { usePengajuanTempoStore } from '../../../../src-migrate/modules/register/stores/usePengajuanTempoStore'; const KontakPerusahaan = ({ chekValid, buttonSubmitClick }) => { const { control, watch } = useForm(); const { form, errors, validate, updateForm } = usePengajuanTempoStore(); const [industries, setIndustries] = useState([]); const [selectedCategory, setSelectedCategory] = useState(''); const [states, setState] = useState([]); const [cities, setCities] = useState([]); const [bersedia, setBersedia] = useState(null); const category_produk = [ { id: 1, name: 'Pengaman, Kesehatan & Keamanan' }, { id: 2, name: 'Perkakas Tangan, Listrik & Pneumatic' }, { id: 3, name: 'Mesin Industrial' }, { id: 4, name: 'Mesin Pertanian & Perkebunan' }, { id: 5, name: 'Mesin Pembersih & Janitorial' }, { id: 6, name: 'Cairan Berbahan Kimia' }, { id: 7, name: 'Perlengkapan Pengukuran & Pengujian' }, { id: 8, name: 'Peralatan Listrik & Elektronik' }, { id: 9, name: 'Perlengkapan Logistik & Gudang' }, { id: 10, name: 'Peralatan Kantor & Stationery' }, { id: 11, name: 'Komponen & Aksesoris' }, { id: 12, name: 'Peralatan Horeca & Food Service' }, ]; useEffect(() => { const loadState = async () => { let dataState = await stateApi(); dataState = dataState.map((state) => ({ value: state.id, label: state.name, })); setState(dataState); }; loadState(); }, []); const watchState = watch('state'); useEffect(() => { updateForm('city', ''); if (watchState) { updateForm('state', `${watchState}`); validate(); const loadCities = async () => { let dataCities = await cityApi({ stateId: watchState }); dataCities = dataCities.map((city) => ({ value: city.id, label: city.name, })); setCities(dataCities); }; loadCities(); } }, [watchState]); const watchCity = watch('city'); useEffect(() => { if (watchCity) { updateForm('city', `${watchCity}`); validate(); } }, [watchCity]); useEffect(() => { const loadIndustries = async () => { const dataIndustries = await odooApi('GET', '/api/v1/partner/industry'); setIndustries( dataIndustries?.map((o) => ({ value: o.id, label: o.name, category: o.category, })) ); }; loadIndustries(); }, []); useEffect(() => { const selectedIndustryType = industries.find( (industry) => industry.value === watch('industry_id') ); if (selectedIndustryType) { updateForm('industry_id', `${selectedIndustryType?.value}`); validate(); setSelectedCategory(selectedIndustryType.category); } }, [watch('industry_id'), industries]); const estimasiValue = watch('estimasi'); const tempoLimitValue = watch('tempoLimit'); // Memformat angka menjadi format rupiah const formatRupiah = (value) => { if (!value) return ''; const numberString = value.replace(/[^0-9]/g, ''); // Menghapus karakter non-digit return numberString ? 'Rp ' + new Intl.NumberFormat('id-ID').format(numberString) : ''; }; const handleChange = (e) => { const value = e.target.value; const formattedValue = formatRupiah(value); console.log('formattedValue', formattedValue); updateForm('estimasi', formattedValue.replace(/^Rp\s*/, '')); validate(); }; const onChangeTempoDuration = (e) => { updateForm('tempoDuration', `${e}`); validate(); }; const onChangeTempoLimit = (e) => { updateForm('tempoLimit', `${e}`); validate(); }; const handleCheckboxBersediaChange = (value) => { if (value === 'bersedia') { setBersedia(true); } else if (value === 'tidakBersedia') { setBersedia(false); } updateForm('bersedia', `${value === 'bersedia'}`); validate(); }; const [selectedIds, setSelectedIds] = useState([]); const handleCheckboxChange = (id) => { setSelectedIds((prevSelected) => prevSelected.includes(id) ? prevSelected.filter((selectedId) => selectedId !== id) : [...prevSelected, id] ); updateForm('categoryProduk', `${selectedIds}`); validate(); }; const handleInputChange = (event) => { const { name, value } = event.target; updateForm(name, value); validate(); }; const midIndex = Math.ceil(category_produk.length / 2); const firstColumn = category_produk.slice(0, midIndex); const secondColumn = category_produk.slice(midIndex); const isFormValid = useMemo(() => Object.keys(errors).length === 0, [errors]); const nameRef = useRef(null); const industry_idRef = useRef(null); const streetRef = useRef(null); const stateRef = useRef(null); const cityRef = useRef(null); const zipRef = useRef(null); const mobileRef = useRef(null); const bankNameRef = useRef(null); const accountNameRef = useRef(null); const accountNumberRef = useRef(null); const estimasiRef = useRef(null); const tempoDurationRef = useRef(null); const bersediaRef = useRef(null); const categoryProdukRef = useRef(null); const tempoLimitRef = useRef(null); useEffect(() => { const loadIndustries = async () => { if (!isFormValid) { const options = { behavior: 'smooth', block: 'center', }; if (errors.name && nameRef.current) { nameRef.current.scrollIntoView(options); return; } if (errors.industry_id && industry_idRef.current) { industry_idRef.current.scrollIntoView(options); return; } if (errors.street && streetRef.current) { streetRef.current.scrollIntoView(options); return; } if (errors.state && stateRef.current) { stateRef.current.scrollIntoView(options); return; } if (errors.city && cityRef.current) { cityRef.current.scrollIntoView(options); return; } if (errors.zip && zipRef.current) { zipRef.current.scrollIntoView(options); return; } if (errors.mobile && mobileRef.current) { mobileRef.current.scrollIntoView(options); return; } if (errors.bankName && bankNameRef.current) { bankNameRef.current.scrollIntoView(options); return; } if (errors.accountName && accountNameRef.current) { accountNameRef.current.scrollIntoView(options); return; } if (errors.accountNumber && accountNumberRef.current) { accountNumberRef.current.scrollIntoView(options); return; } if (errors.estimasi && estimasiRef.current) { estimasiRef.current.scrollIntoView(options); return; } if (errors.tempoDuration && tempoDurationRef.current) { tempoDurationRef.current.scrollIntoView(options); return; } if (errors.bersedia && bersediaRef.current) { bersediaRef.current.scrollIntoView(options); return; } if (errors.categoryProduk && categoryProdukRef.current) { categoryProdukRef.current.scrollIntoView(options); return; } if (errors.tempoLimit && tempoLimitRef.current) { tempoLimitRef.current.scrollIntoView(options); return; } } }; loadIndustries(); }, [buttonSubmitClick, chekValid]); return ( <>