Add new store files and update table components
This commit is contained in:
		| @@ -1,5 +1,5 @@ | ||||
| <template> | ||||
|     <div> | ||||
|     <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"> | ||||
| @@ -7,7 +7,8 @@ | ||||
|             <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 v-model:visible.sync="loadingVisible" :enabled="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" | ||||
| @@ -46,12 +47,23 @@ | ||||
| </template> | ||||
|  | ||||
| <script setup lang="ts"> | ||||
| import { onMounted, ref } from 'vue' | ||||
| import { computed, onMounted, ref, watch } from 'vue' | ||||
| import { DxDataGrid } from 'devextreme-vue' | ||||
| import { useFiltersStore } from '@/stores/filters' | ||||
| 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'; | ||||
| import { useDateStore } from '@/stores/date'; | ||||
| import { useSearchStore } from '@/stores/filtersAction'; | ||||
| import { usePostsStore } from '@/stores/posts'; | ||||
| import { useRegionStore } from '@/stores/region'; | ||||
| import { useUp3Store } from '@/stores/up3'; | ||||
| import { useTotalDuration } from '@/stores/totalDuration'; | ||||
| const position = { of: '#data' }; | ||||
| const showIndicator = ref(true); | ||||
| const shading = ref(true); | ||||
| const showPane = ref(true); | ||||
|  | ||||
| const data = ref<any[]>([]) | ||||
|  | ||||
| const GET_DAFTAR_GANGGUAN_RESPONSE_TIME = gql` | ||||
| @@ -89,27 +101,55 @@ query daftarGangguanResponseTime( | ||||
|         waktu_response | ||||
|     } | ||||
| }`; | ||||
| const loadingVisible = ref<boolean>(true) | ||||
| onMounted(() => { | ||||
|     const filters = useFiltersStore() | ||||
|     const { onResult, variables } = useQuery(GET_DAFTAR_GANGGUAN_RESPONSE_TIME, { | ||||
|         dateFrom: new Date("2023-10-01").toISOString().slice(0, 10), | ||||
|         dateTo: new Date("2023-10-01").toISOString().slice(0, 10), | ||||
|         minDurasiResponseTime: 1, //menit | ||||
|         maxDurasiResponseTime: 1,// menit | ||||
|         posko: "", | ||||
|         idUid: 0, | ||||
|         idUp3: 0, | ||||
| 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 reportButton = useSearchStore() | ||||
| const detected = computed(() => reportButton.isTriggerChange) | ||||
| watch(detected, () => { | ||||
|     const dateValue = useDateStore().getDateValue().split(' s/d '); | ||||
|     const posko = usePostsStore().getData() ? usePostsStore().getData() : "" | ||||
|     const up3 = useUp3Store().getData() ? useUp3Store().getData() : 0 | ||||
|     const uid = useRegionStore().getData() ? useRegionStore().getData() : 0 | ||||
|     const minDurasiResponseTime = useTotalDuration().getDataMin(); | ||||
|     const maxDurasiResponseTime = useTotalDuration().getDataMax(); | ||||
|     refetch({ | ||||
|         dateFrom: dateValue[0].split('-').reverse().join('-'), | ||||
|         dateTo: dateValue[1].split('-').reverse().join('-'), | ||||
|         minDurasiResponseTime, | ||||
|         maxDurasiResponseTime, | ||||
|         posko, | ||||
|         idUid: uid, | ||||
|         idUp3: up3 | ||||
|     }) | ||||
|     onResult(queryResult => { | ||||
|         if (queryResult.data != undefined) { | ||||
|             data.value = queryResult.data.daftarGangguanResponseTime; | ||||
|             loadingVisible.value = false | ||||
|             data.value = queryResult.data.daftarGangguanMelaporLebihDariSatuKali; | ||||
|         } | ||||
|         console.log(queryResult.data) | ||||
|         console.log(queryResult.loading) | ||||
|         console.log(queryResult.networkStatus) | ||||
|     }) | ||||
|     onError(error => { | ||||
|         console.log(error) | ||||
|     }) | ||||
| }) | ||||
| onMounted(() => { | ||||
|     const filters = useFiltersStore() | ||||
|     filters.setConfig({ | ||||
|         type: 'type-7', | ||||
|     }) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user