158 lines
7.0 KiB
Vue
158 lines
7.0 KiB
Vue
<template>
|
|
<div>
|
|
<DxDataGrid class="max-h-[calc(100vh-140px)]" :data-source="data" key-expr="no_laporan" :show-column-lines="true"
|
|
:show-row-lines="false" :show-borders="true" :row-alternation-enabled="true" :hover-state-enabled="true"
|
|
@selection-changed="onSelectionChanged" :column-width="100" @exporting="onExporting"
|
|
:allow-column-resizing="true" column-resizing-mode="widget">
|
|
<DxPaging :page-size="5" :enabled="true" />
|
|
<DxPager :visible="true" :allowed-page-sizes="[5, 10, 20, 'all']" display-mode="full"
|
|
:show-page-size-selector="true" :show-info="true" :show-navigation-buttons="true" />
|
|
<DxSelection mode="single" />
|
|
<!-- <DxScrolling column-rendering-mode="virtual" mode="virtual" row-rendering-mode="virtual" /> -->
|
|
<DxLoadPanel :enabled="true" />
|
|
<DxSearchPanel :visible="true" :highlight-case-sensitive="true" />
|
|
<DxExport :enabled="true" :formats="['pdf', 'xlsx', 'document']" :allow-export-selected-data="false" />
|
|
|
|
<DxColumn css-class="custom-table-column" :width="50" alignment="center" data-field="number" data-type="number"
|
|
caption="No" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="no_laporan"
|
|
caption="No Laporan" cell-template="no-laporan" />
|
|
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="pembuat_laporan"
|
|
caption="Pembuat Laporan" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="tanggal_laporan"
|
|
caption="Tgl Lapor" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="tanggal_dialihkan"
|
|
caption="Tgl Dialihkan" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="tanggal_respon"
|
|
caption="Tgl Response" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="tanggal_recovery"
|
|
caption="Tgl Recovery" />
|
|
<DxColumn css-class="custom-table-column" :width="170" alignment="center" data-field="durasi_respon"
|
|
caption="Durasi Response Time" />
|
|
<DxColumn css-class="custom-table-column" :width="170" alignment="center" data-field="durasi_recovery"
|
|
caption="Durasi Recovery Time" />
|
|
<DxColumn css-class="custom-table-column" :width="170" alignment="center" data-field="posko_awal"
|
|
caption="Posko Awal" />
|
|
<DxColumn css-class="custom-table-column" :width="170" alignment="center" data-field="posko_tujuan"
|
|
caption="Posko Tujuan" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="status"
|
|
caption="Status" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="id_pelanggan"
|
|
caption="IDPEL/NO METER" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="nama_pelapor"
|
|
caption="Nama Pelapor" />
|
|
<DxColumn css-class="custom-table-column" :width="170" alignment="center" data-field="alamat_pelapor"
|
|
caption="Alamat Pelapor" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="no_telp_pelapor"
|
|
caption="No Telp Pelapor" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="keterangan_pelapor"
|
|
caption="Keterangan Pelapor" />
|
|
<DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="sumber_laporan"
|
|
caption="Sumber Lapor" />
|
|
<DxColumn css-class="custom-table-column" :width="170" alignment="center" data-field="posko" caption="Posko" />
|
|
<template #no-laporan="{ data }">
|
|
<span class="cursor-pointer" @click="showData(data.text)">
|
|
{{ data.text }}
|
|
</span>
|
|
</template>
|
|
</DxDataGrid>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { DxDataGrid } from 'devextreme-vue'
|
|
import { DxColumn, DxExport, DxLoadPanel, DxPager, DxPaging, DxScrolling, DxSearchPanel, DxSelection } from 'devextreme-vue/data-grid'
|
|
import { onMounted, ref } from 'vue'
|
|
import { jsPDF } from 'jspdf'
|
|
import { exportDataGrid as exportToPdf } from 'devextreme/pdf_exporter'
|
|
import { exportDataGrid as exportToExcel } from 'devextreme/excel_exporter'
|
|
import type { Data1 } from '@/types/gangguan'
|
|
import { saveAs } from 'file-saver'
|
|
import { Workbook } from 'exceljs'
|
|
import { writeDataJson } from '@/utils/storage'
|
|
import { useDialogStore } from '@/stores/dialog'
|
|
import { useFiltersStore } from '@/stores/filters'
|
|
|
|
const dialog = useDialogStore()
|
|
const data = ref<Data1[]>([])
|
|
|
|
const onExporting = (e: any) => {
|
|
if (e.format === 'pdf') {
|
|
const doc = new jsPDF()
|
|
|
|
exportToPdf({
|
|
jsPDFDocument: doc,
|
|
component: e.component,
|
|
indent: 5,
|
|
}).then(() => {
|
|
doc.save(`.pdf`)
|
|
})
|
|
} else {
|
|
const workbook = new Workbook()
|
|
const worksheet = workbook.addWorksheet('Employees')
|
|
|
|
exportToExcel({
|
|
component: e.component,
|
|
worksheet,
|
|
autoFilterEnabled: true,
|
|
}).then(() => {
|
|
workbook.xlsx.writeBuffer().then((buffer: any) => {
|
|
saveAs(new Blob([buffer], { type: 'application/octet-stream' }), 'DataGrid.xlsx')
|
|
})
|
|
})
|
|
|
|
e.cancel = true
|
|
}
|
|
}
|
|
|
|
const createDummy = () => {
|
|
for (let i = 0; i < 100; i++) {
|
|
data.value.push({
|
|
number: i + 1,
|
|
no_laporan: 'G5223091' + (900002 + i),
|
|
pembuat_laporan: 'agentjateng',
|
|
tanggal_laporan: '19/09/2023 12:26:42',
|
|
tanggal_dialihkan: '19/09/2023 12:33:46',
|
|
tanggal_respon: '19/09/2023 13:14:15',
|
|
tanggal_recovery: '19/09/2023 13:14:15',
|
|
durasi_respon: '0-0:47:32',
|
|
durasi_recovery: '0-0:49:35',
|
|
posko_awal: 'POSKO ULP UNGARAN.',
|
|
posko_tujuan: 'POSKO ULP UNGARAN.',
|
|
status: 'Selesai',
|
|
id_pelanggan: '-',
|
|
nama_pelapor: 'Moegy',
|
|
alamat_pelapor: '-',
|
|
no_telp_pelapor: '085136661313',
|
|
keterangan_pelapor: '-',
|
|
sumber_laporan: 'Contact Center',
|
|
posko: 'POSKO ULP UNGGARAN'
|
|
});
|
|
}
|
|
writeDataJson('data-daftar-1', data.value)
|
|
}
|
|
|
|
const onSelectionChanged = ({ selectedRowsData }: any) => {
|
|
const data = selectedRowsData[0]
|
|
console.log(data)
|
|
}
|
|
|
|
const showData = (data: string) => {
|
|
dialog.type = 'success'
|
|
dialog.title = 'Detail Data'
|
|
dialog.content = data
|
|
dialog.confirmText = 'Tutup'
|
|
dialog.open = true
|
|
}
|
|
|
|
onMounted(() => {
|
|
const filters = useFiltersStore()
|
|
|
|
createDummy()
|
|
filters.setConfig({
|
|
type: 'type-1',
|
|
})
|
|
})
|
|
|
|
</script> |