184 lines
6.4 KiB
Vue
184 lines
6.4 KiB
Vue
<template>
|
|
<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="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 :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="200" alignment="center" data-field="nama_posko" caption="Nama Unit"
|
|
css-class="custom-table-column" />
|
|
<DxColumn alignment="center" caption="Lapor Ulang Gangguan" css-class="custom-table-column">
|
|
<DxColumn alignment="center" caption="MoM" css-class="custom-table-column">
|
|
<DxColumn :width="150" alignment="center" data-field="jumlah_bulan" data-type="number"
|
|
caption="Des 2018" css-class="custom-table-column" />
|
|
<DxColumn :width="150" alignment="center" data-field="jumlah_bulan_n_1" data-type="number"
|
|
caption="Des 2019" css-class="custom-table-column" />
|
|
<DxColumn :width="150" alignment="center" data-field="persen_bulan" data-type="number" caption="%"
|
|
css-class="custom-table-column" />
|
|
</DxColumn>
|
|
<DxColumn alignment="center" caption="YoY" css-class="custom-table-column">
|
|
<DxColumn :width="150" alignment="center" data-field="jumlah_tahun" data-type="number"
|
|
caption="s.d Jan 2018" css-class="custom-table-column" />
|
|
<DxColumn :width="150" alignment="center" data-field="jumlah_tahun_n_1" data-type="number"
|
|
caption="Jan 2019" css-class="custom-table-column" />
|
|
<DxColumn :width="150" alignment="center" data-field="persen_tahun" data-type="number" caption="%"
|
|
css-class="custom-table-column" />
|
|
</DxColumn>
|
|
</DxColumn>
|
|
</DxDataGrid>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Filters from '@/components/Form/Filters.vue'
|
|
import Type2 from '@/components/Form/FiltersType/Type2.vue'
|
|
import { computed, onMounted, ref, watch } from 'vue'
|
|
import { useFiltersStore } from '@/stores/filters'
|
|
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 { useSearchStore } from '@/stores/filtersAction'
|
|
import { usePostsStore } from '@/stores/posts'
|
|
import { useRegionStore } from '@/stores/region'
|
|
import { useUp3Store } from '@/stores/up3'
|
|
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 monalisaRekapitulasiLaporUlangGangguan = gql`
|
|
query DaftarmonalisaRekapitulasiLaporUlangGangguan(
|
|
$regional: String
|
|
$posko: String
|
|
$idUid: Int
|
|
$idUp3: Int
|
|
$bulan: Int
|
|
$tahun: Int
|
|
) {
|
|
monalisaRekapitulasiLaporUlangGangguan(
|
|
regional: $regional
|
|
posko: $posko
|
|
idUid: $idUid
|
|
idUp3: $idUp3
|
|
bulan: $bulan
|
|
tahun: $tahun
|
|
) {
|
|
jumlah_bulan
|
|
jumlah_bulan_n_1
|
|
jumlah_tahun
|
|
jumlah_tahun_n_1
|
|
nama_posko
|
|
persen_bulan
|
|
persen_tahun
|
|
}
|
|
}
|
|
`
|
|
const { onResult, onError, loading, refetch } = useQuery(monalisaRekapitulasiLaporUlangGangguan, {
|
|
bulan: 10,
|
|
tahun: 2023,
|
|
regional: '',
|
|
posko: '',
|
|
idUid: 0,
|
|
idUp3: 0
|
|
})
|
|
const reportButton = useSearchStore()
|
|
const detected = computed(() => reportButton.isTriggerChange)
|
|
watch(detected, () => {
|
|
const posko = usePostsStore().getData() ? usePostsStore().getData() : ''
|
|
const up3 = useUp3Store().getData() ? useUp3Store().getData() : 0
|
|
const uid = useRegionStore().getData() ? useRegionStore().getData() : 0
|
|
refetch({
|
|
bulan: 10,
|
|
tahun: 2023,
|
|
regional: '',
|
|
posko: posko,
|
|
idUid: uid,
|
|
idUp3: up3
|
|
})
|
|
onResult((queryResult) => {
|
|
if (queryResult.data != undefined) {
|
|
queryResult.data.monalisaRekapitulasiLaporUlangGangguan.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 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)
|
|
}
|
|
|
|
onMounted(() => {
|
|
const filters = useFiltersStore()
|
|
|
|
filters.setConfig({
|
|
type: 'type-2',
|
|
reportButton: true
|
|
})
|
|
})
|
|
</script>
|