145 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|     <div>
 | |
|         <DxDataGrid class="max-h-[calc(100vh-140px)]" :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">
 | |
|             <DxSelection mode="single" />
 | |
|             <DxPaging :enabled="false" />
 | |
|             <DxScrolling column-rendering-mode="virtual" mode="virtual" />
 | |
|             <DxLoadPanel :enabled="true" />
 | |
|             <DxSearchPanel :visible="true" :highlight-case-sensitive="true" />
 | |
|             <DxExport :enabled="true" :formats="['pdf', 'xlsx', 'document']" :allow-export-selected-data="false" />
 | |
|             <DxColumnFixing :enabled="true" />
 | |
| 
 | |
|             <DxColumn :width="40" alignment="center" data-field="" caption="NO" data-type="number"
 | |
|                 css-class="custom-table-column" />
 | |
|             <DxColumn :width="150" alignment="center" data-field="" caption="Kode Unit" css-class="custom-table-column" />
 | |
|             <DxColumn :width="150" alignment="center" data-field="" caption="Nama Unit" css-class="custom-table-column" />
 | |
|             <DxColumn alignment="center" caption="Laporan" css-class="custom-table-column">
 | |
|                 <DxColumn :width="150" alignment="center" data-field="" data-type="number" caption="Total"
 | |
|                     css-class="custom-table-column" />
 | |
|                 <DxColumn alignment="center" caption="Belum Selesai" css-class="custom-table-column">
 | |
|                     <DxColumn :width="150" alignment="center" data-field="" data-type="number" caption="Jml"
 | |
|                         css-class="custom-table-column" />
 | |
|                     <DxColumn :width="150" alignment="center" data-field="" data-type="number" caption="%"
 | |
|                         css-class="custom-table-column" />
 | |
|                 </DxColumn>
 | |
|                 <DxColumn alignment="center" caption="Sudah Selesai" css-class="custom-table-column">
 | |
|                     <DxColumn :width="150" alignment="center" data-field="" data-type="number" caption="Jml"
 | |
|                         css-class="custom-table-column" />
 | |
|                     <DxColumn :width="150" alignment="center" data-field="" data-type="number" caption="%"
 | |
|                         css-class="custom-table-column" />
 | |
|                 </DxColumn>
 | |
|             </DxColumn>
 | |
|             <DxColumn alignment="center" caption="Rating" css-class="custom-table-column">
 | |
|                 <DxColumn alignment="center" caption="Bintang" css-class="custom-table-column">
 | |
|                     <DxColumn :width="150" alignment="center" data-field="" data-type="number" caption="Jml"
 | |
|                         css-class="custom-table-column" />
 | |
|                     <DxColumn :width="120" alignment="center" data-field="" data-type="number" caption="1"
 | |
|                         css-class="custom-table-column" />
 | |
|                     <DxColumn :width="120" alignment="center" data-field="" data-type="number" caption="2"
 | |
|                         css-class="custom-table-column" />
 | |
|                     <DxColumn :width="120" alignment="center" data-field="" data-type="number" caption="3"
 | |
|                         css-class="custom-table-column" />
 | |
|                     <DxColumn :width="120" alignment="center" data-field="" data-type="number" caption="4"
 | |
|                         css-class="custom-table-column" />
 | |
|                     <DxColumn :width="120" alignment="center" data-field="" data-type="number" caption="5"
 | |
|                         css-class="custom-table-column" />
 | |
|                     <DxColumn :width="120" alignment="center" data-field="" data-type="number" caption="Index"
 | |
|                         css-class="custom-table-column" />
 | |
|                 </DxColumn>
 | |
|             </DxColumn>
 | |
| 
 | |
|             <DxColumn alignment="center" caption="Non Rating" css-class="custom-table-column">
 | |
|                 <DxColumn :width="150" alignment="center" data-field="" data-type="number" caption="Jml"
 | |
|                     css-class="custom-table-column" />
 | |
|                 <DxColumn :width="150" alignment="center" data-field="" data-type="number" caption="%"
 | |
|                     css-class="custom-table-column" />
 | |
|             </DxColumn>
 | |
| 
 | |
|         </DxDataGrid>
 | |
|     </div>
 | |
| </template>
 | |
| 
 | |
| <script setup lang="ts">
 | |
| import { DxDataGrid } from 'devextreme-vue'
 | |
| import { DxColumn, DxColumnFixing, DxExport, DxLoadPanel, 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 { Rekap1 } from '@/types/gangguan'
 | |
| import { saveAs } from 'file-saver'
 | |
| import { Workbook } from 'exceljs'
 | |
| 
 | |
| const data = ref<Rekap1[]>([])
 | |
| 
 | |
| 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({
 | |
|             id: i,
 | |
|             nama_unit: '-',
 | |
|             total: 0,
 | |
|             selesai: '-',
 | |
|             in_progress: 0,
 | |
|             avg: 0,
 | |
|             max: 0,
 | |
|             min: 0,
 | |
|             dt_avg: 0,
 | |
|             dt_max: 0,
 | |
|             dt_min: 0,
 | |
|             dt_more_sla: 0,
 | |
|             dt_less_sla: 0,
 | |
|             rt_avg: 0,
 | |
|             rt_max: 0,
 | |
|             rt_min: 0,
 | |
|             rt_more_sla: 0,
 | |
|             rt_less_sla: 0,
 | |
|             ret_avg: 0,
 | |
|             ret_max: 0,
 | |
|             ret_min: 0,
 | |
|             ret_more_sla: 0,
 | |
|             ret_less_sla: 0,
 | |
|         });
 | |
|     }
 | |
| }
 | |
| 
 | |
| const onSelectionChanged = ({ selectedRowsData }: any) => {
 | |
|     const data = selectedRowsData[0]
 | |
|     console.log(data)
 | |
| }
 | |
| 
 | |
| onMounted(() => {
 | |
|     createDummy()
 | |
| })
 | |
| 
 | |
| </script> |