193 lines
4.7 KiB
Vue
Executable File
193 lines
4.7 KiB
Vue
Executable File
<script setup lang="ts">
|
|
interface SlaOption {
|
|
id: number
|
|
name: string
|
|
min: string
|
|
max: string
|
|
}
|
|
|
|
import { onMounted, ref } from 'vue'
|
|
import {
|
|
selectedUid,
|
|
selectedUp3Ulp,
|
|
selectedUlp,
|
|
fetchUid,
|
|
itemsUid,
|
|
itemsUp3,
|
|
itemsUlp
|
|
} from './reference'
|
|
import Select from '@/components/Select.vue'
|
|
import DatePicker from '@/components/DatePicker.vue'
|
|
import InputWithSuffix from '@/components/Form/InputWithSuffix.vue'
|
|
|
|
const props = defineProps({
|
|
slaOptions: {
|
|
type: Array as () => SlaOption[],
|
|
default: [
|
|
{
|
|
id: 1,
|
|
name: 'Dibawah / Sesuai SLA (<= 45 menit)',
|
|
min: '1',
|
|
max: '45'
|
|
},
|
|
{
|
|
id: 2,
|
|
name: 'Melebihi SLA (> 45 menit)',
|
|
min: '46',
|
|
max: `${99999 * 60 * 24}`
|
|
}
|
|
]
|
|
}
|
|
})
|
|
|
|
const sla = props.slaOptions.map((item: any) => {
|
|
return {
|
|
id: item.id,
|
|
name: item.name
|
|
}
|
|
})
|
|
|
|
const totalMin = ref('1 Menit')
|
|
const totalMax = ref('5 Menit')
|
|
const uidPlaceholder = 'Semua Unit Induk Distribusi/Wilayah'
|
|
const up3Placeholder = 'Semua Unit Pelaksanaan Pelayanan Pelanggan'
|
|
const ulpPlaceholder = 'Semua Unit Layanan Pelanggan'
|
|
const up3 = ref({ id: 0, name: up3Placeholder })
|
|
const uid = ref({ id: 0, name: uidPlaceholder })
|
|
const ulp = ref({ id: 0, name: ulpPlaceholder })
|
|
const emit = defineEmits(['update:filters'])
|
|
const isHidden = ref(false)
|
|
|
|
const setDataMin = (value: any) => (totalMin.value = value)
|
|
const getDataMin = () => totalMin.value
|
|
const setDataMax = (value: any) => (totalMax.value = value)
|
|
const getDataMax = () => totalMax.value
|
|
|
|
const data = ref({
|
|
uid: uid.value,
|
|
up3: up3.value,
|
|
ulp: ulp.value,
|
|
periode: '',
|
|
minTime: getDataMin().split(' ')[0],
|
|
maxTime: getDataMax().split(' ')[0]
|
|
})
|
|
|
|
const setUid = (value: any) => {
|
|
uid.value = value
|
|
selectedUid(value)
|
|
up3.value = { id: 0, name: up3Placeholder }
|
|
data.value.uid = value
|
|
}
|
|
|
|
const setUp3 = (value: any) => {
|
|
up3.value = value
|
|
selectedUp3Ulp(value)
|
|
ulp.value = { id: 0, name: ulpPlaceholder }
|
|
data.value.up3 = value
|
|
}
|
|
|
|
const setUlp = (value: any) => {
|
|
ulp.value = value
|
|
selectedUlp(value)
|
|
data.value.ulp = value
|
|
}
|
|
|
|
const setMin = (value: any) => {
|
|
console.log(value)
|
|
data.value.minTime = value
|
|
setDataMin(value)
|
|
}
|
|
const setMax = (value: any) => {
|
|
data.value.maxTime = value
|
|
setDataMax(value)
|
|
}
|
|
|
|
const triggerInput = ref(false)
|
|
const changeDuration = (value: any) => {
|
|
if (value.id === 0) {
|
|
setMin('1')
|
|
setMax('5')
|
|
|
|
triggerInput.value = false
|
|
isHidden.value = false
|
|
} else if (value.id === 1) {
|
|
setMin(props.slaOptions[0].min)
|
|
setMax(props.slaOptions[0].max)
|
|
|
|
triggerInput.value = true
|
|
isHidden.value = true
|
|
} else {
|
|
setMin(props.slaOptions[1].min)
|
|
setMax(props.slaOptions[1].max)
|
|
|
|
triggerInput.value = true
|
|
isHidden.value = true
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
emit('update:filters', data.value)
|
|
fetchUid()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="grid grid-cols-1 gap-4 md:grid-cols-2">
|
|
<div class="flex flex-col flex-1 space-y-2">
|
|
<label class="filter-input-label">Unit Induk Distribusi/Wilayah:</label>
|
|
|
|
<Select @update:selected="setUid($event)" :data="itemsUid" :placeholder="uidPlaceholder" />
|
|
</div>
|
|
|
|
<div class="flex flex-col flex-1 space-y-2">
|
|
<label class="filter-input-label">Unit Pelaksanaan Pelayanan Pelanggan:</label>
|
|
|
|
<Select
|
|
@update:selected="setUp3($event)"
|
|
:data="itemsUp3"
|
|
:selected="up3"
|
|
:placeholder="up3Placeholder"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-col flex-1 space-y-2">
|
|
<label class="filter-input-label">Unit Layanan Pelanggan:</label>
|
|
|
|
<Select
|
|
@update:selected="setUlp($event)"
|
|
:data="itemsUlp"
|
|
:placeholder="ulpPlaceholder"
|
|
:selected="ulp"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-col flex-1 space-y-2">
|
|
<label class="filter-input-label">Periode Tanggal:</label>
|
|
|
|
<DatePicker @update:date-value="(value) => (data.periode = value)" />
|
|
</div>
|
|
|
|
<div class="flex flex-col flex-1 space-y-2">
|
|
<label class="filter-input-label">Durasi:</label>
|
|
|
|
<div class="flex flex-col gap-y-2">
|
|
<Select @update:selected="changeDuration($event)" :data="sla" placeholder="Durasi Menit" />
|
|
|
|
<div class="flex flex-1 justify-between gap-x-1.5" :class="[isHidden ? 'hidden' : '']">
|
|
<InputWithSuffix
|
|
:value="`${data.minTime} Menit`"
|
|
@update:text="setMin($event)"
|
|
class="flex flex-1"
|
|
/>
|
|
<small class="flex items-center">s/d</small>
|
|
<InputWithSuffix
|
|
:value="`${data.maxTime} Menit`"
|
|
@update:text="setMax($event)"
|
|
class="flex flex-1"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|