多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

156 lines
3.7 KiB

<script lang="ts" setup>
import type { GeoLocationType } from 'nocodb-sdk'
import { useVModel } from '#imports'
interface Props {
2 years ago
// modelValue?: GeoLocationType | null
modelValue?: string | null
}
interface Emits {
(event: 'update:modelValue', model: GeoLocationType): void
}
const props = defineProps<Props>()
const emits = defineEmits<Emits>()
2 years ago
// const editEnabled = inject(EditModeInj)
2 years ago
2 years ago
// const isForm = inject(IsFormInj, ref(false))
2 years ago
const vModel = useVModel(props, 'modelValue', emits)
2 years ago
// const localValueState = ref<string | undefined>()
let error = $ref<string | undefined>()
2 years ago
let isExpanded = $ref(false)
let isLoading = $ref(false)
const [latitude, longitude] = (vModel.value || '').split(';')
2 years ago
const latLongStr = computed(() => {
const [latitude, longitude] = (vModel.value || '').split(';')
2 years ago
return latitude && longitude ? `${latitude}; ${longitude}` : 'Set location'
})
// interface LatLong {
// latitude: number
// longitude: number
// }
// const latitude = ref('INITIAL')
2 years ago
2 years ago
// interface FormState {
// latitude: string
// longitude: string
// }
2 years ago
2 years ago
const formState = reactive({
2 years ago
latitude,
longitude,
2 years ago
})
2 years ago
const handleFinish = () => {
vModel.value = `${formState.latitude};${formState.longitude}`
isExpanded = false
2 years ago
}
const clear = () => {
error = undefined
isExpanded = false
formState.latitude = latitude
formState.longitude = longitude
console.log(`clear - formState: `, formState)
}
const onGetCurrentLocation = () => {
isLoading = true
const success = (position) => {
const crd = position.coords
formState.latitude = crd.latitude
formState.longitude = crd.longitude
}
const error = (err) => {
console.warn(`ERROR(${err.code}): ${err.message}`)
}
const options = {
enableHighAccuracy: true,
timeout: 8000,
maximumAge: 10000,
}
navigator.geolocation.getCurrentPosition(success, error, options)
if (success !== null) isLoading = false
}
</script>
<template>
2 years ago
<!-- <input
v-if="editEnabled"
:ref="focus"
v-model="vModel"
class="outline-none px-2 border-none w-full h-full text-sm"
type="string"
@blur="editEnabled = false"
/>
2 years ago
<span v-else class="text-sm">{{ vModel }}</span> -->
<a-dropdown :is="isExpanded ? AModal : 'div'" v-model:visible="isExpanded" trigger="click" overlay-class-name="dropdown-new">
2 years ago
<a-button>{{ latLongStr }}</a-button>
<template #overlay>
<a-form :model="formState" class="flex flex-col" @finish="handleFinish">
<a-form-item class="inputLat" label="Lat">
<a-input v-model:value="formState.latitude" type="number" step="0.0000001" required :max="90" :min="-90" />
2 years ago
</a-form-item>
<a-form-item class="inputLng" label="Lng">
<a-input v-model:value="formState.longitude" type="number" step="0.0000001" required :min="-180" :max="180" />
2 years ago
</a-form-item>
<a-form-item class="button-location">
<MdiReload v-if="isLoading" :class="{ 'animate-infinite animate-spin': isLoading }" />
<a-button @click="onGetCurrentLocation">Your Location</a-button>
</a-form-item>
<a-form-item class="buttons">
<a-button type="text" @click="clear">Cancel</a-button>
<a-button type="primary" html-type="submit">Submit</a-button>
2 years ago
</a-form-item>
</a-form>
</template>
</a-dropdown>
</template>
<style scoped lang="scss">
input[type='number']:focus {
@apply ring-transparent;
}
.inputLat {
width: 180px;
margin-top: 1rem;
margin-bottom: 0.5rem;
margin-right: 0.5rem;
margin-left: 0.5rem;
}
.inputLng {
width: 180px;
margin-right: 0.5rem;
}
.button-location {
margin-right: 0.5rem;
}
.buttons {
margin-left: auto;
margin-bottom: 0;
}
.ant-dropdown-menu {
height: fit-content;
align-items: flex-end;
}
</style>