You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
203 lines
8.1 KiB
JavaScript
203 lines
8.1 KiB
JavaScript
import React, { useState } from 'react'
|
|
import { isEmpty } from 'lodash'
|
|
|
|
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
|
|
import FormInput from '@/Components/FormInput'
|
|
import Button from '@/Components/Button'
|
|
import { Head, useForm } from '@inertiajs/react'
|
|
import FormInputWith from '@/Components/FormInputWith'
|
|
import LocationSelectionInput from '../Location/SelectionInput'
|
|
import TextArea from '@/Components/TextArea'
|
|
import Checkbox from '@/Components/Checkbox'
|
|
|
|
export default function Import(props) {
|
|
const { levels } = props
|
|
const [use_level, setUseLevel] = useState(false)
|
|
const { data, setData, post, processing, errors } = useForm({
|
|
script: '',
|
|
discount: 0,
|
|
display_price: 0,
|
|
price_poin: 0,
|
|
expired: '',
|
|
expired_unit: 'Hari',
|
|
location_id: null,
|
|
prices: null,
|
|
})
|
|
|
|
const handleUseLevel = () => {
|
|
setUseLevel(!use_level)
|
|
if (!use_level === true) {
|
|
const prices = levels.map((level) => {
|
|
return {
|
|
name: level.name,
|
|
customer_level_id: level.id,
|
|
display_price: '0',
|
|
}
|
|
})
|
|
setData('prices', prices)
|
|
return
|
|
}
|
|
setData('prices', null)
|
|
}
|
|
|
|
const handleSetLevelPrice = (id, value) => {
|
|
setData(
|
|
'prices',
|
|
data.prices.map((price) => {
|
|
if (price.customer_level_id === id) {
|
|
return {
|
|
...price,
|
|
display_price: value,
|
|
}
|
|
}
|
|
return price
|
|
})
|
|
)
|
|
}
|
|
|
|
const handleOnChange = (event) => {
|
|
setData(
|
|
event.target.name,
|
|
event.target.type === 'checkbox'
|
|
? event.target.checked
|
|
? 1
|
|
: 0
|
|
: event.target.value
|
|
)
|
|
}
|
|
const handleSubmit = () => {
|
|
post(route('voucher.import'))
|
|
}
|
|
|
|
return (
|
|
<AuthenticatedLayout
|
|
auth={props.auth}
|
|
errors={props.errors}
|
|
flash={props.flash}
|
|
page={'Voucher'}
|
|
action={'Import'}
|
|
>
|
|
<Head title="Voucher" />
|
|
|
|
<div>
|
|
<div className="mx-auto sm:px-6 lg:px-8">
|
|
<div className="overflow-hidden p-4 shadow-sm sm:rounded-lg bg-white dark:bg-gray-800 flex flex-col ">
|
|
<div className="text-xl font-bold mb-4">Voucher</div>
|
|
<LocationSelectionInput
|
|
label="Lokasi"
|
|
itemSelected={data.location_id}
|
|
onItemSelected={(id) => setData('location_id', id)}
|
|
error={errors.location_id}
|
|
/>
|
|
<div className="mt-2" />
|
|
<FormInput
|
|
type="number"
|
|
name="display_price"
|
|
value={data.display_price}
|
|
onChange={handleOnChange}
|
|
label="Harga"
|
|
error={errors.display_price}
|
|
/>
|
|
<FormInputWith
|
|
type="number"
|
|
rightItem={<div className="text-sm">%</div>}
|
|
name="discount"
|
|
value={data.discount}
|
|
onChange={handleOnChange}
|
|
error={errors.discount}
|
|
formClassName={'pr-10'}
|
|
label="Discount"
|
|
max={100}
|
|
min={0}
|
|
/>
|
|
<FormInput
|
|
type="number"
|
|
name="price_poin"
|
|
value={data.price_poin}
|
|
onChange={handleOnChange}
|
|
label="Harga poin (untuk penukaran)"
|
|
error={errors.price_poin}
|
|
/>
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-900 dark:text-white">
|
|
Masa Aktif
|
|
</label>
|
|
<div className="w-full flex flex-row space-x-2 items-center">
|
|
<FormInput
|
|
type="number"
|
|
name="expired"
|
|
value={data.expired}
|
|
onChange={handleOnChange}
|
|
// label="Masa Aktif"
|
|
error={errors.expired}
|
|
className="flex-1"
|
|
/>
|
|
<div>
|
|
<select
|
|
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5"
|
|
onChange={handleOnChange}
|
|
value={data.expired_unit}
|
|
name="expired_unit"
|
|
>
|
|
<option value="Jam">Jam</option>
|
|
<option value="Hari">Hari</option>
|
|
<option value="Minggu">Minggu</option>
|
|
<option value="Bulan">Bulan</option>
|
|
<option value="Tahun">Tahun</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Checkbox
|
|
label="Level Harga"
|
|
value={use_level}
|
|
onChange={(e) => handleUseLevel(e.target.value)}
|
|
/>
|
|
<div
|
|
className={`p-2 my-2 border rounded ${
|
|
!use_level && 'invisible'
|
|
}`}
|
|
>
|
|
{data.prices?.map((price) => (
|
|
<FormInput
|
|
type="number"
|
|
key={price.customer_level_id}
|
|
value={price.display_price}
|
|
onChange={(e) =>
|
|
handleSetLevelPrice(
|
|
price.customer_level_id,
|
|
e.target.value
|
|
)
|
|
}
|
|
label={price.name}
|
|
/>
|
|
))}
|
|
{errors.prices && (
|
|
<p className="mb-2 text-sm text-red-600 dark:text-red-500">
|
|
{errors.prices}
|
|
</p>
|
|
)}
|
|
</div>
|
|
<TextArea
|
|
name="script"
|
|
value={data.script}
|
|
onChange={handleOnChange}
|
|
label="Script"
|
|
error={errors.script}
|
|
rows={16}
|
|
/>
|
|
<div className="mt-8">
|
|
<Button
|
|
onClick={handleSubmit}
|
|
processing={processing}
|
|
>
|
|
Simpan
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</AuthenticatedLayout>
|
|
)
|
|
}
|