bonus coin done
parent
939b8b3842
commit
140343d091
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\CoinReward;
|
||||
use App\Models\CustomerLevel;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class CoinRewardController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$query = CoinReward::with(['level'])
|
||||
->orderBy('updated_at', 'desc');
|
||||
|
||||
return inertia('CoinReward/Index', [
|
||||
'query' => $query->paginate(),
|
||||
'levels' => CustomerLevel::all()
|
||||
]);
|
||||
}
|
||||
|
||||
public function store(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'amount_buy' => 'required|numeric',
|
||||
'bonus_coin' => 'required|numeric',
|
||||
'customer_level_id' => 'required|exists:customer_levels,id',
|
||||
]);
|
||||
|
||||
CoinReward::create([
|
||||
'amount_buy' => $request->amount_buy,
|
||||
'bonus_coin' => $request->bonus_coin,
|
||||
'customer_level_id' => $request->customer_level_id,
|
||||
]);
|
||||
|
||||
session()->flash('message', ['type' => 'success', 'message' => 'Item has beed saved']);
|
||||
}
|
||||
|
||||
public function update(Request $request, CoinReward $reward)
|
||||
{
|
||||
$request->validate([
|
||||
'amount_buy' => 'required|numeric',
|
||||
'bonus_coin' => 'required|numeric',
|
||||
'customer_level_id' => 'required|exists:customer_levels,id',
|
||||
]);
|
||||
|
||||
$reward->update([
|
||||
'amount_buy' => $request->amount_buy,
|
||||
'bonus_coin' => $request->bonus_coin,
|
||||
'customer_level_id' => $request->customer_level_id,
|
||||
]);
|
||||
|
||||
session()->flash('message', ['type' => 'success', 'message' => 'Item has beed updated']);
|
||||
}
|
||||
|
||||
public function destroy(CoinReward $reward)
|
||||
{
|
||||
$reward->delete();
|
||||
|
||||
session()->flash('message', ['type' => 'success', 'message' => 'Item has beed deleted']);
|
||||
}
|
||||
}
|
@ -0,0 +1,122 @@
|
||||
import React, { useEffect } from 'react'
|
||||
import Modal from '@/Components/Modal'
|
||||
import { useForm, usePage } from '@inertiajs/react'
|
||||
import Button from '@/Components/Button'
|
||||
import FormInput from '@/Components/FormInput'
|
||||
import RoleSelectionInput from '../Role/SelectionInput'
|
||||
|
||||
import { isEmpty } from 'lodash'
|
||||
|
||||
export default function FormModal(props) {
|
||||
const {
|
||||
props: { levels },
|
||||
} = usePage()
|
||||
const { modalState } = props
|
||||
const { data, setData, post, put, processing, errors, reset, clearErrors } =
|
||||
useForm({
|
||||
amount_buy: 0,
|
||||
bonus_coin: 0,
|
||||
customer_level_id: null,
|
||||
})
|
||||
|
||||
const handleOnChange = (event) => {
|
||||
setData(
|
||||
event.target.name,
|
||||
event.target.type === 'checkbox'
|
||||
? event.target.checked
|
||||
? 1
|
||||
: 0
|
||||
: event.target.value
|
||||
)
|
||||
}
|
||||
|
||||
const handleReset = () => {
|
||||
modalState.setData(null)
|
||||
reset()
|
||||
clearErrors()
|
||||
}
|
||||
|
||||
const handleClose = () => {
|
||||
handleReset()
|
||||
modalState.toggle()
|
||||
}
|
||||
|
||||
const handleSubmit = () => {
|
||||
const reward = modalState.data
|
||||
if (reward !== null) {
|
||||
put(route('coin-reward.update', reward), {
|
||||
onSuccess: () => handleClose(),
|
||||
})
|
||||
return
|
||||
}
|
||||
post(route('coin-reward.store'), {
|
||||
onSuccess: () => handleClose(),
|
||||
})
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
const reward = modalState.data
|
||||
if (isEmpty(reward) === false) {
|
||||
setData({
|
||||
amount_buy: reward.amount_buy,
|
||||
bonus_coin: reward.bonus_coin,
|
||||
customer_level_id: reward.customer_level_id,
|
||||
})
|
||||
return
|
||||
}
|
||||
}, [modalState])
|
||||
|
||||
return (
|
||||
<Modal
|
||||
isOpen={modalState.isOpen}
|
||||
toggle={handleClose}
|
||||
title={'Bonus Coin'}
|
||||
>
|
||||
<FormInput
|
||||
type="number"
|
||||
name="amount_buy"
|
||||
value={data.amount_buy}
|
||||
onChange={handleOnChange}
|
||||
label="Jumlah Transaksi"
|
||||
error={errors.amount_buy}
|
||||
/>
|
||||
<div className="my-4">
|
||||
<div className="mb-1 text-sm">Level</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.customer_level_id}
|
||||
name="customer_level_id"
|
||||
>
|
||||
<option value=""></option>
|
||||
{levels.map((level) => (
|
||||
<option value={level.id} key={level.key}>
|
||||
{level.name}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
{errors.customer_level_id && (
|
||||
<p className="mb-2 text-sm text-red-600 dark:text-red-500">
|
||||
{errors.customer_level_id}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
<FormInput
|
||||
type="number"
|
||||
name="bonus_coin"
|
||||
value={data.bonus_coin}
|
||||
onChange={handleOnChange}
|
||||
label="Bonus Coin"
|
||||
error={errors.bonus_coin}
|
||||
/>
|
||||
<div className="flex items-center">
|
||||
<Button onClick={handleSubmit} processing={processing}>
|
||||
Simpan
|
||||
</Button>
|
||||
<Button onClick={handleClose} type="secondary">
|
||||
Batal
|
||||
</Button>
|
||||
</div>
|
||||
</Modal>
|
||||
)
|
||||
}
|
@ -0,0 +1,175 @@
|
||||
import React from 'react'
|
||||
import { router } from '@inertiajs/react'
|
||||
import { Head } from '@inertiajs/react'
|
||||
import { Button, Dropdown } from 'flowbite-react'
|
||||
import { HiPencil, HiTrash } from 'react-icons/hi'
|
||||
import { useModalState } from '@/hooks'
|
||||
|
||||
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
|
||||
import Pagination from '@/Components/Pagination'
|
||||
import ModalConfirm from '@/Components/ModalConfirm'
|
||||
import FormModal from './FormModal'
|
||||
import { formatIDR, hasPermission } from '@/utils'
|
||||
|
||||
export default function Info(props) {
|
||||
const {
|
||||
query: { links, data },
|
||||
auth,
|
||||
} = props
|
||||
|
||||
const confirmModal = useModalState()
|
||||
const formModal = useModalState()
|
||||
|
||||
const toggleFormModal = (reward = null) => {
|
||||
formModal.setData(reward)
|
||||
formModal.toggle()
|
||||
}
|
||||
|
||||
const handleDeleteClick = (reward) => {
|
||||
confirmModal.setData(reward)
|
||||
confirmModal.toggle()
|
||||
}
|
||||
|
||||
const onDelete = () => {
|
||||
if (confirmModal.data !== null) {
|
||||
router.delete(route('coin-reward.destroy', confirmModal.data.id))
|
||||
}
|
||||
}
|
||||
|
||||
const canCreate = hasPermission(auth, 'create-coin-reward')
|
||||
const canUpdate = hasPermission(auth, 'update-coin-reward')
|
||||
const canDelete = hasPermission(auth, 'delete-coin-reward')
|
||||
|
||||
return (
|
||||
<AuthenticatedLayout
|
||||
auth={props.auth}
|
||||
errors={props.errors}
|
||||
flash={props.flash}
|
||||
page={'Bonus Coin'}
|
||||
action={''}
|
||||
>
|
||||
<Head title="Bonus Coin" />
|
||||
|
||||
<div>
|
||||
<div className="mx-auto sm:px-6 lg:px-8 ">
|
||||
<div className="p-6 overflow-hidden shadow-sm sm:rounded-lg bg-gray-200 dark:bg-gray-800 space-y-4">
|
||||
<div className="flex justify-between">
|
||||
{canCreate && (
|
||||
<Button
|
||||
size="sm"
|
||||
onClick={() => toggleFormModal()}
|
||||
>
|
||||
Tambah
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
<div className="overflow-auto">
|
||||
<div>
|
||||
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400 mb-4">
|
||||
<thead className="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
|
||||
<tr>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6"
|
||||
>
|
||||
Jumlah Transaksi
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6"
|
||||
>
|
||||
Level
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6"
|
||||
>
|
||||
Coin
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6"
|
||||
/>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{data.map((reward) => (
|
||||
<tr
|
||||
className="bg-white border-b dark:bg-gray-800 dark:border-gray-700"
|
||||
key={reward.id}
|
||||
>
|
||||
<td
|
||||
scope="row"
|
||||
className="py-4 px-6 font-medium text-gray-900 whitespace-nowrap dark:text-white"
|
||||
>
|
||||
{formatIDR(
|
||||
reward.amount_buy
|
||||
)}
|
||||
</td>
|
||||
<td className="py-4 px-6">
|
||||
{reward.level.name}
|
||||
</td>
|
||||
<td className="py-4 px-6">
|
||||
{formatIDR(
|
||||
reward.bonus_coin
|
||||
)}
|
||||
</td>
|
||||
<td className="py-4 px-6 flex justify-end">
|
||||
<Dropdown
|
||||
label={'Opsi'}
|
||||
floatingArrow={true}
|
||||
arrowIcon={true}
|
||||
dismissOnClick={true}
|
||||
size={'sm'}
|
||||
>
|
||||
{canUpdate && (
|
||||
<Dropdown.Item
|
||||
onClick={() =>
|
||||
toggleFormModal(
|
||||
reward
|
||||
)
|
||||
}
|
||||
>
|
||||
<div className="flex space-x-1 items-center">
|
||||
<HiPencil />
|
||||
<div>
|
||||
Ubah
|
||||
</div>
|
||||
</div>
|
||||
</Dropdown.Item>
|
||||
)}
|
||||
{canDelete && (
|
||||
<Dropdown.Item
|
||||
onClick={() =>
|
||||
handleDeleteClick(
|
||||
reward
|
||||
)
|
||||
}
|
||||
>
|
||||
<div className="flex space-x-1 items-center">
|
||||
<HiTrash />
|
||||
<div>
|
||||
Hapus
|
||||
</div>
|
||||
</div>
|
||||
</Dropdown.Item>
|
||||
)}
|
||||
</Dropdown>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div className="w-full flex items-center justify-center">
|
||||
<Pagination links={links} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<ModalConfirm modalState={confirmModal} onConfirm={onDelete} />
|
||||
<FormModal modalState={formModal} />
|
||||
</AuthenticatedLayout>
|
||||
)
|
||||
}
|
Loading…
Reference in New Issue