done setting
parent
d3a470b9fc
commit
d9a40b1895
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class LocationController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Setting;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class SettingController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$setting = Setting::all();
|
||||
|
||||
return inertia('Setting/Index', [
|
||||
'setting' => $setting,
|
||||
'midtrans_notification_url' => route('api.midtrans.notification')
|
||||
]);
|
||||
}
|
||||
|
||||
public function update(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'AFFILATE_ENABLED' => 'required|in:0,1',
|
||||
'AFFILATE_COIN_AMOUNT' => 'required|numeric',
|
||||
'MIDTRANS_SERVER_KEY' => 'required|string',
|
||||
'MIDTRANS_CLIENT_KEY' => 'required|string',
|
||||
'MIDTRANS_MERCHANT_ID' => 'required|string',
|
||||
'MIDTRANS_ENABLED' => 'required|in:0,1',
|
||||
'midtrans_logo_file' => 'nullable|image',
|
||||
]);
|
||||
|
||||
DB::beginTransaction();
|
||||
foreach ($request->except(['midtrans_logo_file']) as $key => $value) {
|
||||
Setting::where('key', $key)->update(['value' => $value]);
|
||||
}
|
||||
|
||||
if ($request->hasFile('midtrans_logo_file')) {
|
||||
$file = $request->file('midtrans_logo_file');
|
||||
$file->store('uploads', 'public');
|
||||
Setting::where('key', 'MIDTRANS_LOGO')->update(['value' => $file->hashName('uploads')]);
|
||||
}
|
||||
|
||||
DB::commit();
|
||||
|
||||
session()->flash('message', ['type' => 'success', 'message' => 'Setting has beed saved']);
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Binary file not shown.
After Width: | Height: | Size: 126 KiB |
@ -0,0 +1,146 @@
|
||||
import React from 'react'
|
||||
import { Head, router, useForm } from '@inertiajs/react'
|
||||
|
||||
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
|
||||
import FormInput from '@/Components/FormInput'
|
||||
import Button from '@/Components/Button'
|
||||
import TextArea from '@/Components/TextArea'
|
||||
import FormFile from '@/Components/FormFile'
|
||||
import Checkbox from '@/Components/Checkbox'
|
||||
import { extractValue } from './utils'
|
||||
|
||||
export default function General(props) {
|
||||
const { setting, midtrans_notification_url } = props
|
||||
const { data, setData, post, reset, processing, errors } = useForm({
|
||||
AFFILATE_ENABLED: extractValue(setting, 'AFFILATE_ENABLED'),
|
||||
AFFILATE_COIN_AMOUNT: extractValue(setting, 'AFFILATE_COIN_AMOUNT'),
|
||||
MIDTRANS_SERVER_KEY: extractValue(setting, 'MIDTRANS_SERVER_KEY'),
|
||||
MIDTRANS_CLIENT_KEY: extractValue(setting, 'MIDTRANS_CLIENT_KEY'),
|
||||
MIDTRANS_MERCHANT_ID: extractValue(setting, 'MIDTRANS_MERCHANT_ID'),
|
||||
MIDTRANS_LOGO: extractValue(setting, 'MIDTRANS_LOGO'),
|
||||
MIDTRANS_ENABLED: extractValue(setting, 'MIDTRANS_ENABLED'),
|
||||
midtrans_logo_file: null,
|
||||
})
|
||||
|
||||
const handleOnChange = (event) => {
|
||||
setData(
|
||||
event.target.name,
|
||||
event.target.type === 'checkbox'
|
||||
? event.target.checked
|
||||
? 1
|
||||
: 0
|
||||
: event.target.value
|
||||
)
|
||||
}
|
||||
|
||||
const handleSubmit = () => {
|
||||
post(route('setting.update'), {
|
||||
onSuccess: () => {
|
||||
setTimeout(() => router.get(route(route().current())), 3000)
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
return (
|
||||
<AuthenticatedLayout
|
||||
auth={props.auth}
|
||||
errors={props.errors}
|
||||
flash={props.flash}
|
||||
page={'Setting'}
|
||||
action={''}
|
||||
parent={route(route().current())}
|
||||
>
|
||||
<Head title="Setting" />
|
||||
|
||||
<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">Setting</div>
|
||||
|
||||
<div className="p-2 border rounded-xl">
|
||||
<div className="font-bold mb-2">Affilate</div>
|
||||
|
||||
<FormInput
|
||||
type={'number'}
|
||||
name="AFFILATE_COIN_AMOUNT"
|
||||
value={data.AFFILATE_COIN_AMOUNT}
|
||||
onChange={handleOnChange}
|
||||
label="Jumlah Bonus Koin"
|
||||
error={errors.AFFILATE_COIN_AMOUNT}
|
||||
/>
|
||||
<Checkbox
|
||||
label="Enable"
|
||||
value={+data.AFFILATE_ENABLED === 1}
|
||||
onChange={handleOnChange}
|
||||
name="AFFILATE_ENABLED"
|
||||
/>
|
||||
</div>
|
||||
<div className="mt-2 p-2 border rounded-xl">
|
||||
<div className="font-bold mb-2">
|
||||
Midtrans Payment
|
||||
</div>
|
||||
<FormInput
|
||||
name="MIDTRANS_MERCHANT_ID"
|
||||
value={data.MIDTRANS_MERCHANT_ID}
|
||||
onChange={handleOnChange}
|
||||
label="Merchant ID"
|
||||
error={errors.MIDTRANS_MERCHANT_ID}
|
||||
/>
|
||||
<FormInput
|
||||
name="MIDTRANS_SERVER_KEY"
|
||||
value={data.MIDTRANS_SERVER_KEY}
|
||||
onChange={handleOnChange}
|
||||
label="Server Key"
|
||||
error={errors.MIDTRANS_SERVER_KEY}
|
||||
/>
|
||||
<FormInput
|
||||
name="MIDTRANS_CLIENT_KEY"
|
||||
value={data.MIDTRANS_CLIENT_KEY}
|
||||
onChange={handleOnChange}
|
||||
label="Client Key"
|
||||
error={errors.MIDTRANS_CLIENT_KEY}
|
||||
/>
|
||||
<FormFile
|
||||
label={'Logo'}
|
||||
onChange={(e) =>
|
||||
setData(
|
||||
'midtrans_logo_file',
|
||||
e.target.files[0]
|
||||
)
|
||||
}
|
||||
error={errors.midtrans_logo_file}
|
||||
preview={
|
||||
<img
|
||||
src={`${data.MIDTRANS_LOGO}`}
|
||||
className="w-40 mb-1"
|
||||
alt="site logo"
|
||||
/>
|
||||
}
|
||||
/>
|
||||
<FormInput
|
||||
value={midtrans_notification_url}
|
||||
label="Notification URL"
|
||||
readOnly={true}
|
||||
/>
|
||||
<Checkbox
|
||||
label="Enable"
|
||||
value={+data.MIDTRANS_ENABLED === 1}
|
||||
onChange={handleOnChange}
|
||||
name="MIDTRANS_ENABLED"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="mt-4">
|
||||
<Button
|
||||
onClick={handleSubmit}
|
||||
processing={processing}
|
||||
>
|
||||
Simpan
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</AuthenticatedLayout>
|
||||
)
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
import { isEmpty } from 'lodash'
|
||||
|
||||
export const extractValue = (set, key) => {
|
||||
const find = set.find((s) => s.key === key)
|
||||
if (isEmpty(find) === false) {
|
||||
if (find.type === 'image') {
|
||||
return find?.url
|
||||
}
|
||||
return find?.value
|
||||
}
|
||||
return ''
|
||||
}
|
Loading…
Reference in New Issue