| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <script setup>
- import { Inertia } from '@inertiajs/inertia'
- import { watch } from 'vue'
- import { Head } from '@inertiajs/inertia-vue3'
- import { pickBy } from 'lodash'
- import tableHeader from './tableHeader'
- import { useDateRangeFilter } from '@/components/useDateRangeFilter'
- import DashboardLayout from '@/layouts/DashboardLayout.vue'
- import AppPagination from '@/components/AppPagination.vue'
- import AppButtonLink from '@/components/AppButtonLink.vue'
-
- const props = defineProps({
- expenses: Object,
- initialDateRange: Array,
- })
-
- const { dates, startDate, endDate } = useDateRangeFilter(props)
-
- watch(dates, () => {
- Inertia.get(
- '/expenses',
- pickBy({
- startDate: startDate.value,
- endDate: endDate.value,
- }),
- {
- preserveState: true,
- }
- )
- })
-
- const filterReset = () => {
- Inertia.get('/expenses')
- }
- </script>
-
- <template>
- <Head title="Pengeluaran" />
-
- <DashboardLayout>
- <DataTable
- responsive-layout="scroll"
- column-resize-mode="expand"
- :value="expenses.data"
- :row-hover="true"
- :striped-rows="true"
- >
- <template #header>
- <h1>Pengeluaran</h1>
-
- <div class="grid">
- <div class="col-12 md:col-8">
- <div class="grid">
- <div class="col-12 md:col-4">
- <Calendar
- touch-u-i
- class="w-full"
- v-model="dates"
- selection-mode="range"
- placeholder="filter waktu..."
- date-format="dd/mm/yy"
- :manual-input="false"
- />
- </div>
- <div class="col-auto mt-2 ml-2">
- <Button
- label="reset"
- class="p-button-link"
- @click="filterReset"
- />
- </div>
- </div>
- </div>
- <div
- class="col-12 md:col-4 flex flex-column md:flex-row justify-content-end"
- >
- <AppButtonLink
- label="Tambah Pengeluaran"
- class="p-button-outlined"
- icon="pi pi-pencil"
- :href="route('expenses.create')"
- />
- </div>
- </div>
- </template>
-
- <Column
- v-for="value in tableHeader"
- :field="value.field"
- :header="value.header"
- :key="value.field"
- />
-
- <Column>
- <template #body="{ data }">
- <AppButtonLink
- icon="pi pi-eye"
- class="p-button-text p-button-icon-only p-button-rounded p-button-text"
- v-tooltip.bottom="'Detail Pengeluaran'"
- :href="route('expenses.show', data.id)"
- />
- </template>
- </Column>
- </DataTable>
-
- <AppPagination :links="expenses.links" />
- </DashboardLayout>
- </template>
|