add mock location

This commit is contained in:
Warunee Tamkoo 2026-03-06 23:19:31 +07:00
parent 386ab6480f
commit 9c68349983
4 changed files with 325 additions and 95 deletions

View file

@ -32,6 +32,8 @@ const endTimeAfternoon = ref<string>('12:00:00') //เวลาเช็คเ
const isLoadingCheckTime = ref<boolean>(false) //
const disabledBtn = ref<boolean>(false)
const locationGranted = ref<boolean>(false)
const isMockLocationDetected = ref<boolean>(false)
/**
* fetch เชคเวลาตองลงเวลาเขาหรอออกงาน
@ -113,6 +115,21 @@ async function updateLocation(
formLocation.POI = namePOI
}
/**
* บคาสถานะ location จาก AscGISMap
*/
function onLocationStatus(status: boolean) {
locationGranted.value = status
}
/**
* บค mock location detection จาก AscGISMap
*/
function onMockDetected(result: any) {
isMockLocationDetected.value = true
disabledBtn.value = true
}
const location = ref<string>('') //
const model = ref<string>('') //
//
@ -595,6 +612,16 @@ watch(
}
}
)
watch(
() => locationGranted.value,
(newVal) => {
// Removed auto-reset of isMockLocationDetected to prevent
// clearing mock detection state when permission is granted.
// Mock detection state should only be reset after explicit user action
// or after a successful validation without mock indicators.
}
)
</script>
<template>
@ -667,6 +694,8 @@ watch(
v-if="$q.screen.gt.xs"
ref="mapRef"
@update:location="updateLocation"
@location-status="onLocationStatus"
@mock-detected="onMockDetected"
/>
</div>
</div>
@ -833,7 +862,12 @@ watch(
</div>
<div class="col-12" v-if="$q.screen.xs">
<MapCheck ref="mapRef" @update:location="updateLocation" />
<MapCheck
ref="mapRef"
@update:location="updateLocation"
@location-status="onLocationStatus"
@mock-detected="onMockDetected"
/>
</div>
</div>
<!-- กรอกขอม หนามอถ -->
@ -982,7 +1016,7 @@ watch(
push
size="18px"
:class="$q.screen.gt.xs ? 'q-px-md' : 'full-width q-pa-sm'"
:disable="disabledBtn ? true : camera && img ? false : true"
:disable="disabledBtn || !locationGranted || isMockLocationDetected ? true : camera && img ? false : true"
@click="validateForm"
:loading="inQueue"
/>
@ -1097,7 +1131,7 @@ watch(
push
size="18px"
:class="$q.screen.gt.xs ? 'q-px-md' : 'full-width q-pa-sm'"
:disable="disabledBtn ? true : camera && img ? false : true"
:disable="disabledBtn || !locationGranted || isMockLocationDetected ? true : camera && img ? false : true"
@click="validateForm"
:loading="inQueue"
/>

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, onMounted, watch } from 'vue'
import { ref, onMounted } from 'vue'
import { useQuasar } from 'quasar'
import { useRouter } from 'vue-router'
@ -11,8 +11,8 @@ import { useCounterMixin } from '@/stores/mixin'
import { usePrivacyStore } from '@/stores/privacy'
import { usePositionKeycloakStore } from '@/stores/positionKeycloak'
import type { notiType } from '@/interface/index/Main'
import type { Noti } from '@/interface/response/Main'
// import type { notiType } from '@/interface/index/Main'
// import type { Noti } from '@/interface/response/Main'
import DialogHeader from '@/components/DialogHeader.vue'
import PopupPrivacy from '@/components/PopupPrivacy.vue'
@ -22,10 +22,10 @@ const mixin = useCounterMixin()
const privacyStore = usePrivacyStore()
const positionKeycloakStore = usePositionKeycloakStore()
const {
date2Thai,
// date2Thai,
hideLoader,
messageError,
dialogRemove,
// dialogRemove,
success,
showLoader,
} = mixin
@ -40,17 +40,17 @@ const configParam = {
const modalReset = ref<boolean>(false) // popup reset password
const fullName = ref<string>('') //
const notiTrigger = ref<boolean>(false) // ,
const notiList = ref<notiType[]>([]) //
// const notiTrigger = ref<boolean>(false) // ,
// const notiList = ref<notiType[]>([]) //
// const totalNotiList = ref<number>(0) //
// const totalNoti = ref<number>(0) //
const statusLoad = ref<boolean>(false) //
// const statusLoad = ref<boolean>(false) //
const modalDebug = ref<boolean>(false) // popup debug
//
const thaiOptions: Intl.DateTimeFormatOptions = {
hour: '2-digit',
minute: '2-digit',
}
// const thaiOptions: Intl.DateTimeFormatOptions = {
// hour: '2-digit',
// minute: '2-digit',
// }
const oldPassWord = ref<string>('')
@ -76,63 +76,63 @@ const isPwdReNewOld = ref<boolean>(true)
// })
// }
/**
* งกนดงขอมลรายการแจงเต
* @param index page องการโหลดขอม
* @param type DEL อโหลดหลงลบขอความ, NOMAL อกรณโหลดขอมลปก
*/
async function fetchNotifications(index: number, type: string) {
await http
.get(config.API.msgNotificate + `?page=${index}&pageSize=${20}`)
.then((res) => {
const response = res.data.result.data
totalNotiList.value = res.data.result.total
const list: notiType[] = []
if (type === 'DEL') {
notiList.value = []
}
response.map((e: Noti) => {
list.push({
id: e.id,
sender:
e.createdFullName == '' || e.createdFullName == null
? 'เจ้าหน้าที่'[0]
: e.createdFullName[0],
body: e.body ?? '',
timereceive: e.receiveDate,
isOpen: e.isOpen,
})
})
notiList.value.push(...list)
statusLoad.value = totalNotiList.value === 0 ? true : false
})
.catch((err) => {
messageError($q, err)
})
}
// /**
// *
// * @param index page
// * @param type DEL , NOMAL
// */
// async function fetchNotifications(index: number, type: string) {
// await http
// .get(config.API.msgNotificate + `?page=${index}&pageSize=${20}`)
// .then((res) => {
// const response = res.data.result.data
// totalNotiList.value = res.data.result.total
// const list: notiType[] = []
// if (type === 'DEL') {
// notiList.value = []
// }
// response.map((e: Noti) => {
// list.push({
// id: e.id,
// sender:
// e.createdFullName == '' || e.createdFullName == null
// ? ''[0]
// : e.createdFullName[0],
// body: e.body ?? '',
// timereceive: e.receiveDate,
// isOpen: e.isOpen,
// })
// })
// notiList.value.push(...list)
// statusLoad.value = totalNotiList.value === 0 ? true : false
// })
// .catch((err) => {
// messageError($q, err)
// })
// }
/**
* function ลบรายการแจงเต
* @param id noti
*/
async function onClickDelete(id: string, index: number) {
dialogRemove($q, async () => {
await http
.delete(config.API.msgId(id))
.then(async () => {
notiList.value.splice(index, 1)
totalNotiList.value--
notiList.value.length === 14 && (await fetchNotifications(1, 'DEL'))
success($q, 'ลบข้อมูลสำเร็จ')
})
.catch((e) => {
messageError($q, e)
})
.finally(async () => {
hideLoader()
})
})
}
// /**
// * function
// * @param id noti
// */
// async function onClickDelete(id: string, index: number) {
// dialogRemove($q, async () => {
// await http
// .delete(config.API.msgId(id))
// .then(async () => {
// notiList.value.splice(index, 1)
// totalNotiList.value--
// notiList.value.length === 14 && (await fetchNotifications(1, 'DEL'))
// success($q, '')
// })
// .catch((e) => {
// messageError($q, e)
// })
// .finally(async () => {
// hideLoader()
// })
// })
// }
/*** function logout */
function onClickLogout() {
@ -148,25 +148,25 @@ function onClickLogout() {
})
}
const page = ref<number>(0)
// const page = ref<number>(0)
/**
* โหลดรายการแจงเตอนเพมเม scroll
* @param index
* @param done
*/
function onLoad(index: number, done: Function) {
if (
notiList.value.length < totalNotiList.value ||
(notiList.value.length == 0 && totalNotiList.value === 0)
) {
page.value++
setTimeout(async () => {
await fetchNotifications(page.value, 'NOMAL')
await done()
}, 1500)
}
}
// /**
// * scroll
// * @param index
// * @param done
// */
// function onLoad(index: number, done: Function) {
// if (
// notiList.value.length < totalNotiList.value ||
// (notiList.value.length == 0 && totalNotiList.value === 0)
// ) {
// page.value++
// setTimeout(async () => {
// await fetchNotifications(page.value, 'NOMAL')
// await done()
// }, 1500)
// }
// }
// landing page redirect
const landingPageUrl = ref<string>(configParam.landingPageUrl)
@ -247,7 +247,7 @@ async function onSubmit() {
})
}
function ruleNewPassWord(val: string) {
function ruleNewPassWord(val: string): Promise<string | boolean> {
return new Promise((resolve) => {
if (!val) {
return resolve('กรุณากรอกรหัสผ่านใหม่')
@ -268,7 +268,7 @@ function ruleNewPassWord(val: string) {
})
}
function ruleReNewPassWord(val: string) {
function ruleReNewPassWord(val: string): Promise<string | boolean> {
return new Promise((resolve) => {
if (!val) {
return resolve('กรุณายืนยันรหัสผ่านใหม่')