notifikasi , bit fix dashboard
parent
d4b2d9253b
commit
612ccc0ac1
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Api;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Models\Notification;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class NotificationController extends Controller
|
||||
{
|
||||
public function update(Notification $notif)
|
||||
{
|
||||
if ($notif->id == null) {
|
||||
(new Notification())->mark_all_as_read();
|
||||
return;
|
||||
}
|
||||
$notif->mark_as_read();
|
||||
}
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Notification;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class NotificationController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$query = Notification::where('entity_type', \App\Models\User::class)
|
||||
->orderBy('is_read', 'asc')
|
||||
->orderBy('created_at', 'desc');
|
||||
|
||||
return inertia('Notification/Index', [
|
||||
'query' => $query->paginate(),
|
||||
]);
|
||||
}
|
||||
}
|
@ -0,0 +1,70 @@
|
||||
import React, { useState } from 'react'
|
||||
import { Head, router } from '@inertiajs/react'
|
||||
import CustomerLayout from '@/Layouts/CustomerLayout'
|
||||
import { HiChevronLeft } from 'react-icons/hi2'
|
||||
|
||||
export default function Index({
|
||||
auth: { user },
|
||||
notification: { data, next_page_url },
|
||||
}) {
|
||||
const [_notification, setCoins] = useState(data)
|
||||
|
||||
const handleNextPage = () => {
|
||||
router.get(
|
||||
next_page_url,
|
||||
{},
|
||||
{
|
||||
replace: true,
|
||||
preserveState: true,
|
||||
only: ['notification'],
|
||||
onSuccess: (res) => {
|
||||
setCoins(_notification.concat(res.props.notification.data))
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
return (
|
||||
<CustomerLayout>
|
||||
<Head title="Coin" />
|
||||
<div className="flex flex-col w-full min-h-[calc(90dvh)]">
|
||||
<div
|
||||
className="w-full px-5 py-5"
|
||||
onClick={() => {
|
||||
router.get(route('home.index'))
|
||||
}}
|
||||
>
|
||||
<HiChevronLeft className="font-bold h-5 w-5" />
|
||||
</div>
|
||||
<div className="text-2xl px-5 font-bold">Notifikasi</div>
|
||||
<div className="w-full">
|
||||
<div className="flex flex-col py-10 space-y-5 px-5">
|
||||
{_notification.map((notification) => (
|
||||
<div
|
||||
key={notification.id}
|
||||
className="flex flex-row pb-2 items-center justify-between border-b"
|
||||
>
|
||||
<div className="flex flex-col">
|
||||
<div className="font-bold">
|
||||
{notification.format_created_at}
|
||||
</div>
|
||||
<div className="font-thin">
|
||||
{notification.description}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
{next_page_url !== null && (
|
||||
<div
|
||||
onClick={handleNextPage}
|
||||
className="w-full text-center px-2 py-1 border mt-5 hover:bg-blue-600 hover:text-white"
|
||||
>
|
||||
Load more
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</CustomerLayout>
|
||||
)
|
||||
}
|
@ -0,0 +1,110 @@
|
||||
import React from 'react'
|
||||
import { Head, router } from '@inertiajs/react'
|
||||
import { useModalState } from '@/hooks'
|
||||
|
||||
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout'
|
||||
import Pagination from '@/Components/Pagination'
|
||||
import { HiPencilSquare } from 'react-icons/hi2'
|
||||
import { HiPencilAlt } from 'react-icons/hi'
|
||||
|
||||
export default function Index(props) {
|
||||
const {
|
||||
query: { links, data },
|
||||
} = props
|
||||
|
||||
const formModal = useModalState()
|
||||
const handleNotification = (notif) => {
|
||||
fetch(route('api.notification.update', notif))
|
||||
router.get(route(route().current()))
|
||||
}
|
||||
return (
|
||||
<AuthenticatedLayout
|
||||
auth={props.auth}
|
||||
errors={props.errors}
|
||||
flash={props.flash}
|
||||
page={'Notifikasi'}
|
||||
action={''}
|
||||
>
|
||||
<Head title="Notifikasi" />
|
||||
|
||||
<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"
|
||||
>
|
||||
Deskripsi
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6"
|
||||
>
|
||||
Dibaca
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
className="py-3 px-6"
|
||||
/>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{data.map((notification) => (
|
||||
<tr
|
||||
className="bg-white border-b dark:bg-gray-800 dark:border-gray-700"
|
||||
key={notification.id}
|
||||
>
|
||||
<td
|
||||
scope="row"
|
||||
className="py-4 px-6 font-medium text-gray-900 whitespace-nowrap dark:text-white"
|
||||
>
|
||||
{notification.description}
|
||||
</td>
|
||||
<td className="py-4 px-6">
|
||||
{+notification.is_read === 1
|
||||
? 'Sudah dibaca'
|
||||
: 'Belum dibaca'}
|
||||
</td>
|
||||
<td className="py-4 px-6 flex justify-end items-center space-x-2">
|
||||
<HiPencilAlt />
|
||||
<div
|
||||
className="text-gray-600 hover:underline"
|
||||
onClick={() =>
|
||||
handleNotification(
|
||||
notification
|
||||
)
|
||||
}
|
||||
>
|
||||
Tandai dibaca
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div className="w-full flex items-center justify-center">
|
||||
<Pagination links={links} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</AuthenticatedLayout>
|
||||
)
|
||||
}
|
Loading…
Reference in New Issue