224 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			224 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
| <template>
 | |
|   <Filters @run-search="() => filterData(filters)" class="mb-4">
 | |
|     <Type2 @update:filters="(value) => (filters = value)" />
 | |
|   </Filters>
 | |
|   <div id="data">
 | |
|     <DxDataGrid
 | |
|       class="max-h-[calc(100vh-140px)] mb-10"
 | |
|       :data-source="data"
 | |
|       :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"
 | |
|       :word-wrap-enabled="true"
 | |
|     >
 | |
|       <DxSelection mode="single" />
 | |
|       <DxPaging :enabled="false" />
 | |
|       <DxScrolling column-rendering-mode="virtual" mode="virtual" />
 | |
|       <DxLoadPanel
 | |
|         :position="position"
 | |
|         :show-indicator="showIndicator"
 | |
|         :show-pane="showPane"
 | |
|         :shading="shading"
 | |
|         v-if="loading"
 | |
|         v-model:visible="loading"
 | |
|         :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 alignment="center" caption="Periode: Februari,2020" css-class="custom-table-column">
 | |
|         <DxColumn
 | |
|           :width="170"
 | |
|           alignment="center"
 | |
|           data-field="nama_posko"
 | |
|           caption="Nama Unit"
 | |
|           css-class="custom-table-column"
 | |
|         />
 | |
|       </DxColumn>
 | |
|       <DxColumn alignment="center" caption="ENS (Distribusi)" css-class="custom-table-column">
 | |
|         <DxColumn
 | |
|           :width="150"
 | |
|           alignment="center"
 | |
|           data-field="ens_terencana"
 | |
|           data-type="number"
 | |
|           caption="Terencana"
 | |
|           css-class="custom-table-column"
 | |
|         />
 | |
|         <DxColumn
 | |
|           :width="150"
 | |
|           alignment="center"
 | |
|           data-field="ens_tidak_terencana"
 | |
|           data-type="number"
 | |
|           caption="Tidak Terencana"
 | |
|           css-class="custom-table-column"
 | |
|         />
 | |
|         <DxColumn
 | |
|           :width="150"
 | |
|           alignment="center"
 | |
|           data-field="ens_bencana_alam"
 | |
|           data-type="number"
 | |
|           caption="Bencana Alam"
 | |
|           css-class="custom-table-column"
 | |
|         />
 | |
|       </DxColumn>
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="total"
 | |
|         data-type="number"
 | |
|         caption="Total"
 | |
|         css-class="custom-table-column"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="kpi_ens"
 | |
|         data-type="number"
 | |
|         caption="KPI ENS"
 | |
|         css-class="custom-table-column"
 | |
|       />
 | |
|     </DxDataGrid>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script setup lang="ts">
 | |
| import { ref } from 'vue'
 | |
| import Filters from '@/components/Form/Filters.vue'
 | |
| import Type2 from '@/components/Form/FiltersType/Type2.vue'
 | |
| import { DxDataGrid } from 'devextreme-vue'
 | |
| import {
 | |
|   DxColumn,
 | |
|   DxColumnFixing,
 | |
|   DxExport,
 | |
|   DxLoadPanel,
 | |
|   DxPaging,
 | |
|   DxScrolling,
 | |
|   DxSearchPanel,
 | |
|   DxSelection
 | |
| } from 'devextreme-vue/data-grid'
 | |
| import { jsPDF } from 'jspdf'
 | |
| import { exportDataGrid as exportToPdf } from 'devextreme/pdf_exporter'
 | |
| import { exportDataGrid as exportToExcel } from 'devextreme/excel_exporter'
 | |
| import { saveAs } from 'file-saver'
 | |
| import { Workbook } from 'exceljs'
 | |
| import { useQuery } from '@vue/apollo-composable'
 | |
| import gql from 'graphql-tag'
 | |
| const position = { of: '#data' }
 | |
| const showIndicator = ref(true)
 | |
| const shading = ref(true)
 | |
| const showPane = ref(true)
 | |
| const data = ref<any[]>([])
 | |
| const dataDetail = ref<any>()
 | |
| const showDetail = ref(false)
 | |
| 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 onSelectionChanged = ({ selectedRowsData }: any) => {
 | |
|   const data = selectedRowsData[0]
 | |
|   console.log(data)
 | |
| }
 | |
| const agingComplaintBulanan = gql`
 | |
|   query DaftaragingComplaintBulanan(
 | |
|     $regional: String
 | |
|     $posko: Int
 | |
|     $idUid: Int
 | |
|     $idUp3: Int
 | |
|     $bulan: Int
 | |
|     $tahun: Int
 | |
|   ) {
 | |
|     agingComplaintBulanan(
 | |
|       regional: $regional
 | |
|       posko: $posko
 | |
|       idUid: $idUid
 | |
|       idUp3: $idUp3
 | |
|       bulan: $bulan
 | |
|       tahun: $tahun
 | |
|     ) {
 | |
|       ens_bencana_alam
 | |
|       ens_terencana
 | |
|       ens_tidak_terencana
 | |
|       kpi_ens
 | |
|       nama_posko
 | |
|       total
 | |
|     }
 | |
|   }
 | |
| `
 | |
| const { onResult, onError, loading, refetch } = useQuery(agingComplaintBulanan, {
 | |
|   regional: '',
 | |
|   posko: '',
 | |
|   idUid: 0,
 | |
|   idUp3: 0,
 | |
|   bulan: 10,
 | |
|   tahun: 2023
 | |
| })
 | |
| const filterData = (params: any) => {
 | |
|   const { regional, posko, idUid, idUp3, bulan, tahun } = params
 | |
| 
 | |
|   refetch({
 | |
|     regional: regional,
 | |
|     posko: posko ? posko.id : 0,
 | |
|     idUid: idUid ? idUid.id : 0,
 | |
|     idUp3: idUp3 ? idUp3.id : 0,
 | |
|     bulan: bulan ? bulan.id : 10,
 | |
|     tahun: bulan ? tahun.id : 2023
 | |
|   })
 | |
|   onResult((queryResult) => {
 | |
|     if (queryResult.data != undefined) {
 | |
|       queryResult.data.agingComplaintBulanan.forEach((item: any) => {
 | |
|         data.value = [
 | |
|           ...data.value,
 | |
|           {
 | |
|             ...item
 | |
|           }
 | |
|         ]
 | |
|       })
 | |
|     }
 | |
|     console.log(queryResult.data)
 | |
|     console.log(queryResult.loading)
 | |
|     console.log(queryResult.networkStatus)
 | |
|   })
 | |
|   onError((error) => {
 | |
|     console.log(error)
 | |
|   })
 | |
| }
 | |
| const filters = ref()
 | |
| </script>
 |