import React, { useEffect, useState } from 'react' import { router, Link } from '@inertiajs/react' import { usePrevious } from 'react-use' import { Head } from '@inertiajs/react' import { Button } from 'flowbite-react' import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout' import Pagination from '@/Components/Pagination' import SearchInput from '@/Components/SearchInput' import { hasPermission } from '@/utils' export default function Index(props) { const { query: { links, data }, auth, } = props const [search, setSearch] = useState('') const preValue = usePrevious(`${search}`) const params = { q: search } useEffect(() => { if (preValue) { router.get( route(route().current()), { q: search }, { replace: true, preserveState: true, } ) } }, [search]) const canCreate = hasPermission(auth, 'create-voucher') return (
{canCreate && (
)}
setSearch(e.target.value) } value={search} />
{data.map((location) => (
{location.name}
{ location.count_vouchers .unsold_count }
))}
) }