summaryrefslogtreecommitdiff
path: root/src/lib/form/components/PembayaranTempo.jsx
blob: ffdb09610abb157a3cdf05a560c288256af47d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
import getFileBase64 from '@/core/utils/getFileBase64'
import { yupResolver } from '@hookform/resolvers/yup'
import React, { useRef } from 'react'
import ReCAPTCHA from 'react-google-recaptcha'
import { useForm } from 'react-hook-form'
import { toast } from 'react-hot-toast'
import * as Yup from 'yup'
import createLeadApi from '../api/createLeadApi'

const PembayaranTempo = () => {
  const {
    register,
    handleSubmit,
    reset,
    formState: { errors }
  } = useForm({
    resolver: yupResolver(validationSchema),
    defaultValues
  })

  const recaptchaRef = useRef(null)

  const onSubmitHandler = async (values) => {
    const recaptchaValue = recaptchaRef.current.getValue()
    if (!recaptchaValue) {
      toast.error('Recaptcha harus diisi')
      return
    }

    const npwp = document.getElementById('npwp').files[0]
    const nib = document.getElementById('nib').files[0]
    const tdp = document.getElementById('tdp').files[0]
    const siup = document.getElementById('siup').files[0]

    const data = {
      name: 'Pengajuan Pembayaran Tempo - ' + values.name,
      contact_name: values.name,
      email_from: values.email,
      file_npwp: npwp ? await getFileBase64(npwp) : '',
      file_nib: nib ? await getFileBase64(nib) : '',
      file_tdp: tdp ? await getFileBase64(tdp) : '',
      file_siup: siup ? await getFileBase64(siup) : ''
    }

    const createLead = await createLeadApi({ data })
    if (createLead) {
      toast.success('Berhasil melakukan pengajuan pembayaran tempo')
      reset()
      recaptchaRef.current.reset()
    }
  }
  return (
    <div className='container mx-auto p-4 md:p-0 my-0 md:my-10'>
      <h1 className='text-h-sm md:text-title-sm font-semibold mb-6'>Pembayaran Tempo</h1>

      <div className='w-full grid grid-cols-1 md:grid-cols-2'>
        <form onSubmit={handleSubmit(onSubmitHandler)} className='grid grid-cols-1 gap-y-6'>
          <div>
            <label className='form-label mb-2'>Alamat Email*</label>
            <input
              {...register('email')}
              placeholder='contoh@email.com'
              type='email'
              className='form-input'
              aria-invalid={errors.email?.message}
            />
            <div className='text-caption-2 text-danger-500 mt-1'>{errors.email?.message}</div>
          </div>

          <div>
            <label className='form-label mb-2'>Nama Lengkap*</label>
            <input
              {...register('name')}
              placeholder='Jhon Doe'
              type='text'
              className='form-input'
              aria-invalid={errors.name?.message}
            />
            <div className='text-caption-2 text-danger-500 mt-1'>{errors.name?.message}</div>
          </div>

          <div>
            <label className='form-label mb-2'>Nomor Pokok Wajib Pajak (NPWP)*</label>
            <input
              {...register('npwp')}
              type='file'
              className='form-input'
              accept='application/pdf'
              id='npwp'
              aria-invalid={errors.npwp?.message}
            />
            <div className='text-caption-2 text-danger-500 mt-1'>{errors.npwp?.message}</div>
          </div>

          <div>
            <label className='form-label mb-2'>Nomor Induk Berusaha (NIB) atau</label>
            <input
              {...register('nib')}
              type='file'
              className='form-input'
              accept='application/pdf'
              id='nib'
              placeholder='Hello'
            />
          </div>

          <div>
            <label className='form-label mb-2'>Tanda Daftar Perusahaan (TDP) atau</label>
            <input
              {...register('tdp')}
              type='file'
              className='form-input'
              accept='application/pdf'
              id='tdp'
            />
          </div>

          <div>
            <label className='form-label mb-2'>Surat Izin Usaha Perdagangan (SIUP)</label>
            <input
              {...register('siup')}
              type='file'
              className='form-input'
              accept='application/pdf'
              id='siup'
            />
          </div>

          <ReCAPTCHA ref={recaptchaRef} sitekey={process.env.NEXT_PUBLIC_RECAPTCHA_GOOGLE} />

          <button type='submit' className='btn-yellow w-full md:w-fit ml-0 md:ml-auto'>
            Simpan
          </button>

          <div></div>
        </form>
      </div>
    </div>
  )
}
const validationSchema = Yup.object().shape({
  name: Yup.string().min(3, 'Minimal 3 karakter').required('Harus di-isi'),
  email: Yup.string().email('Format harus seperti contoh@email.com').required('Harus di-isi'),
  npwp: Yup.string().required('Harus di-isi')
})
const defaultValues = {
  name: '',
  email: '',
  npwp: '',
  siup: '',
  tdp: '',
  nib: ''
}

export default PembayaranTempo