148 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			148 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
| <template>
 | |
|     <Filters @run-search="() => filterData(filters)" class="mb-4">
 | |
|         <Type7 @update:filters="(value) => {
 | |
|             filters = value
 | |
|         }
 | |
|             " />
 | |
|     </Filters>
 | |
|     <div id="data">
 | |
|         <DxDataGrid class="max-h-[calc(100vh-140px)]" :data-source="data" :show-column-lines="true" :show-row-lines="false"
 | |
|             :show-borders="true" :row-alternation-enabled="true" :hover-state-enabled="true" @selection-changed=""
 | |
|             :column-width="100" @exporting="" :allow-column-resizing="true" column-resizing-mode="widget">
 | |
|             <DxSelection mode="single" />
 | |
|             <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" />
 | |
|             <DxLoadPanel :position="position" :show-indicator="showIndicator" :show-pane="showPane" :shading="shading"
 | |
|                 v-model:visible.sync="loading" :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"
 | |
|                 :calculateCellValue="(item: any) => data.findIndex((i) => i == item) + 1" data-type="number" caption="No" />
 | |
| 
 | |
|             <DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="no_laporan"
 | |
|                 caption="No Laporan" />
 | |
|             <DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="waktu_lapor"
 | |
|                 caption="Tgl Lapor" />
 | |
|             <DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="waktu_response"
 | |
|                 caption="Tgl Response" />
 | |
|             <DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="waktu_recovery"
 | |
|                 caption="Tgl Recovery" />
 | |
|             <DxColumn css-class="custom-table-column" :width="170" alignment="center" data-field="durasi_response_time"
 | |
|                 caption="Durasi Response Time" />
 | |
|             <DxColumn css-class="custom-table-column" :width="170" alignment="center" data-field="durasi_recovery_time"
 | |
|                 caption="Durasi Recovery Time" />
 | |
|             <DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="status_akhir"
 | |
|                 caption="Status" />
 | |
|             <DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="referensi_marking"
 | |
|                 caption="Referensi Marking" />
 | |
|             <DxColumn css-class="custom-table-column" :width="150" alignment="center" data-field="idpel_nometer"
 | |
|                 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="170" alignment="center" data-field="posko" caption="Posko" />
 | |
| 
 | |
|         </DxDataGrid>
 | |
|     </div>
 | |
| </template>
 | |
| 
 | |
| <script setup lang="ts">
 | |
| import Filters from '@/components/Form/Filters.vue'
 | |
| import Type7 from '@/components/Form/FiltersType/Type7.vue'
 | |
| import { ref } from 'vue'
 | |
| import { DxDataGrid } from 'devextreme-vue'
 | |
| import { DxColumn, DxExport, DxLoadPanel, DxPager, DxPaging, DxScrolling, DxSearchPanel, DxSelection } from 'devextreme-vue/data-grid'
 | |
| 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 filterData = (params: any) => {
 | |
|     const { minTime, maxTime, posko, uid, up3 } = params;
 | |
|     console.log(params)
 | |
|     const dateValue = params.periode.split(' s/d ') 
 | |
|     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 ? minTime : 0,
 | |
|         maxDurasiResponseTime : maxTime ? maxTime : 1,
 | |
|         posko: posko ? posko.id : "",
 | |
|         idUid: uid ? uid.id : 0,
 | |
|         idUp3: up3 ? up3.id : 0
 | |
|     })
 | |
|     onResult(queryResult => {
 | |
|         if (queryResult.data != undefined) {
 | |
|             data.value = queryResult.data.daftarGangguanMelaporLebihDariSatuKali;
 | |
|         }
 | |
|         console.log(queryResult.data)
 | |
|         console.log(queryResult.loading)
 | |
|         console.log(queryResult.networkStatus)
 | |
|     })
 | |
|     onError(error => {
 | |
|         console.log(error)
 | |
|     })
 | |
| }
 | |
| const GET_DAFTAR_GANGGUAN_RESPONSE_TIME = gql`
 | |
| query daftarGangguanResponseTime(
 | |
|     $dateFrom: Date!
 | |
|     $dateTo: Date!
 | |
|     $minDurasiResponseTime: Int!
 | |
|     $maxDurasiResponseTime: Int!
 | |
|     $posko: String!
 | |
|     $idUid: Int!
 | |
|     $idUp3: Int!
 | |
| ) {
 | |
|     daftarGangguanResponseTime(
 | |
|         dateFrom: $dateFrom
 | |
|         dateTo: $dateTo
 | |
|         minDurasiResponseTime: $minDurasiResponseTime
 | |
|         maxDurasiResponseTime: $maxDurasiResponseTime
 | |
|         posko: $posko
 | |
|         idUid: $idUid
 | |
|         idUp3: $idUp3
 | |
|     ) {
 | |
|         alamat_pelapor
 | |
|         durasi_recovery_time
 | |
|         durasi_response_time
 | |
|         id_gangguan
 | |
|         idpel_nometer
 | |
|         keterangan_pelapor
 | |
|         media
 | |
|         nama_pelapor
 | |
|         no_laporan
 | |
|         no_telp_pelapor
 | |
|         posko
 | |
|         status_akhir
 | |
|         waktu_recovery
 | |
|         waktu_response
 | |
|     }
 | |
| }`;
 | |
| const { onResult, onError, loading, refetch } = useQuery(GET_DAFTAR_GANGGUAN_RESPONSE_TIME, {
 | |
|     dateFrom: new Date().toISOString().slice(0, 10),
 | |
|     dateTo: new Date().toISOString().slice(0, 10),
 | |
|     minDurasiResponseTime: 1, //menit
 | |
|     maxDurasiResponseTime: 1,// menit
 | |
|     posko: "",
 | |
|     idUid: 0,
 | |
|     idUp3: 0,
 | |
| })
 | |
| onResult(queryResult => {
 | |
|     if (queryResult.data != undefined) {
 | |
|         data.value = queryResult.data.daftarGangguanResponseTime;
 | |
|     }
 | |
|     console.log(queryResult.data)
 | |
|     console.log(queryResult.loading)
 | |
|     console.log(queryResult.networkStatus)
 | |
| })
 | |
| 
 | |
| const filters = ref()
 | |
| </script> |