397 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			397 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
| <template>
 | |
|   <Filters @reset-form="data = []" @run-search="() => filterData(filters)" class="mb-4">
 | |
|     <Type11 @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 :page-size="5" :enabled="true" />
 | |
|       <DxPager
 | |
|         :visible="true"
 | |
|         :allowed-page-sizes="[5, 10, 20]"
 | |
|         display-mode="full"
 | |
|         :show-page-size-selector="true"
 | |
|         :show-info="true"
 | |
|         :show-navigation-buttons="true"
 | |
|       />
 | |
|       <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
 | |
|         css-class="custom-table-column"
 | |
|         :width="50"
 | |
|         alignment="center"
 | |
|         :calculateCellValue="(item: any) => data.findIndex((i) => i == item) + 1"
 | |
|         data-type="number"
 | |
|         caption="No"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="no_laporan"
 | |
|         caption="No Laporan"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
| 
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="waktu_lapor"
 | |
|         caption="Tgl Lapor"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="waktu_response"
 | |
|         caption="Tgl Response"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="waktu_recovery"
 | |
|         caption="Tgl Recovery"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="durasi_response_time"
 | |
|         caption="Durasi Response Time"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data-waktu"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="durasi_recovery_time"
 | |
|         caption="Durasi Recovery Time"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data-waktu"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="120"
 | |
|         alignment="center"
 | |
|         data-field="status_akhir"
 | |
|         caption="Status"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="idpel_nometer"
 | |
|         caption="IDPEL/NO METER"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="nama_pelapor"
 | |
|         caption="Nama Pelapor"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="alamat_pelapor"
 | |
|         caption="Alamat Pelapor"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="no_telp_pelapor"
 | |
|         caption="No Telp Pelapor"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="170"
 | |
|         alignment="center"
 | |
|         data-field="keterangan_pelapor"
 | |
|         caption="Keterangan Pelapor"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
|       <DxColumn
 | |
|         :width="150"
 | |
|         alignment="center"
 | |
|         data-field="nama_ulp"
 | |
|         caption="Nama ULP"
 | |
|         css-class="custom-table-column"
 | |
|         cell-template="data"
 | |
|       />
 | |
| 
 | |
|       <template #data="{ data }">
 | |
|         <p class="cursor-pointer" @click="showData()">
 | |
|           {{ data.text }}
 | |
|         </p>
 | |
|       </template>
 | |
| 
 | |
|       <template #data-waktu="{ data }">
 | |
|         <p class="cursor-pointer" @click="showData()">
 | |
|           {{ parseInt(data.text) ? formatWaktu(data.text) : '-' }}
 | |
|         </p>
 | |
|       </template>
 | |
|     </DxDataGrid>
 | |
|   </div>
 | |
| 
 | |
|   <DetailDialog :open="showDetail" title="Detail Keluhan" @on-close="closeDetail">
 | |
|     <div class="w-full p-4 space-y-2 bg-white rounded-xl">
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">No Laporan:</h3>
 | |
|         <InputText :readonly="true" :value="dataDetail?.no_laporan" class-name="flex-1" />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Tgl Lapor:</h3>
 | |
|         <InputText :readonly="true" :value="dataDetail?.waktu_lapor" class-name="flex-1" />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Tanggal Response:</h3>
 | |
|         <InputText :readonly="true" :value="dataDetail?.waktu_response" class-name="flex-1" />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Tanggal Recovery:</h3>
 | |
|         <InputText :readonly="true" :value="dataDetail?.waktu_recovery" class-name="flex-1" />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Response Time:</h3>
 | |
|         <InputText
 | |
|           :readonly="true"
 | |
|           :value="
 | |
|             parseInt(dataDetail?.durasi_response_time)
 | |
|               ? formatWaktu(dataDetail?.durasi_response_time)
 | |
|               : '-'
 | |
|           "
 | |
|           class-name="flex-1"
 | |
|         />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Recovery Time:</h3>
 | |
|         <InputText
 | |
|           :readonly="true"
 | |
|           :value="
 | |
|             parseInt(dataDetail?.durasi_recovery_time)
 | |
|               ? formatWaktu(dataDetail?.durasi_recovery_time)
 | |
|               : '-'
 | |
|           "
 | |
|           class-name="flex-1"
 | |
|         />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Status:</h3>
 | |
|         <InputText :readonly="true" :value="dataDetail?.status_akhir" class-name="flex-1" />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">IDPEL/NO METER:</h3>
 | |
|         <InputText :readonly="true" :value="dataDetail?.idpel_nometer" class-name="flex-1" />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Nama Pelapor:</h3>
 | |
|         <InputText :readonly="true" :value="dataDetail?.nama_pelapor" class-name="flex-1" />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Alamat Pelapor:</h3>
 | |
|         <InputText
 | |
|           :readonly="true"
 | |
|           type="textarea"
 | |
|           :value="dataDetail?.alamat_pelapor"
 | |
|           class-name="flex-1 h-[56px]"
 | |
|         />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">No Telp Pelapor:</h3>
 | |
|         <InputText :readonly="true" :value="dataDetail?.no_telp_pelapor" class-name="flex-1" />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Keterangan Pelapor:</h3>
 | |
|         <InputText
 | |
|           :readonly="true"
 | |
|           type="textarea"
 | |
|           :value="dataDetail?.keterangan_pelapor"
 | |
|           class-name="flex-1 h-[56px]"
 | |
|         />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Sumber Lapor:</h3>
 | |
|         <InputText :readonly="true" :value="dataDetail?.media" class-name="flex-1" />
 | |
|       </div>
 | |
| 
 | |
|       <div class="flex flex-row items-center justify-between w-full">
 | |
|         <h3 class="text-sm font-medium w-[170px] text-gray-800">Nama ULP:</h3>
 | |
|         <InputText :readonly="true" :value="dataDetail?.nama_ulp" class-name="flex-1" />
 | |
|       </div>
 | |
|     </div>
 | |
|   </DetailDialog>
 | |
| </template>
 | |
| 
 | |
| <script setup lang="ts">
 | |
| import DetailDialog from '@/components/Dialogs/DetailDialog.vue'
 | |
| import InputText from '@/components/InputText.vue'
 | |
| import Filters from '@/components/Form/Filters.vue'
 | |
| import Type11 from '@/components/Form/FiltersType/Type11.vue'
 | |
| import { formatWaktu } from '@/components/Form/FiltersType/reference'
 | |
| import { ref } from 'vue'
 | |
| import { DxDataGrid } from 'devextreme-vue'
 | |
| import {
 | |
|   DxColumn,
 | |
|   DxColumnFixing,
 | |
|   DxExport,
 | |
|   DxLoadPanel,
 | |
|   DxPager,
 | |
|   DxPaging,
 | |
|   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 { queries } from '@/utils/graphql'
 | |
| 
 | |
| const position = { of: '#data' }
 | |
| const showIndicator = ref(true)
 | |
| const shading = ref(true)
 | |
| const showPane = ref(true)
 | |
| const dataDetail = ref<any>()
 | |
| const showDetail = ref(false)
 | |
| 
 | |
| const closeDetail = () => {
 | |
|   showDetail.value = false
 | |
| }
 | |
| 
 | |
| const showData = () => {
 | |
|   showDetail.value = true
 | |
| }
 | |
| 
 | |
| const onSelectionChanged = ({ selectedRowsData }: any) => {
 | |
|   dataDetail.value = selectedRowsData[0]
 | |
|   console.log(selectedRowsData[0])
 | |
| }
 | |
| 
 | |
| 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 data = ref<any[]>([])
 | |
| 
 | |
| const { onResult, onError, loading, refetch } = useQuery(queries.keluhan.daftar.keluhanResponseTime, {
 | |
|   dateFrom: new Date('2023-10-01').toISOString().slice(0, 10),
 | |
|   dateTo: new Date('2023-10-01').toISOString().slice(0, 10),
 | |
|   minDurasiResponseTime: 0,
 | |
|   maxDurasiResponseTime: 0,
 | |
|   idUlp: 0,
 | |
|   idUid: 0,
 | |
|   idUp3: 0
 | |
| })
 | |
| 
 | |
| const filterData = (params: any) => {
 | |
|   const dateValue = params.periode.split(' s/d ')
 | |
|   const { ulp, uid, up3, maxTime, minTime } = params
 | |
|   refetch({
 | |
|     dateFrom: dateValue[0]
 | |
|       ? dateValue[0].split('-').reverse().join('-')
 | |
|       : new Date().toISOString().slice(0, 10),
 | |
|     dateTo: dateValue[1]
 | |
|       ? dateValue[1].split('-').reverse().join('-')
 | |
|       : new Date().toISOString().slice(0, 10),
 | |
|     minDurasiResponseTime: minTime,
 | |
|     maxDurasiResponseTime: maxTime,
 | |
|     idUlp: ulp ? ulp.id : 0,
 | |
|     idUid: uid ? uid.id : 0,
 | |
|     idUp3: up3 ? up3.id : 0
 | |
|   })
 | |
| 
 | |
|   onResult((queryResult) => {
 | |
|     if (queryResult.data != undefined) {
 | |
|       data.value = queryResult.data.daftarKeluhanResponseTime
 | |
|     }
 | |
|     console.log(queryResult.data)
 | |
|     console.log(queryResult.loading)
 | |
|     console.log(queryResult.networkStatus)
 | |
|   })
 | |
|   onError((error) => {
 | |
|     console.log(error)
 | |
|   })
 | |
| }
 | |
| 
 | |
| const filters = ref()
 | |
| </script>
 |