Browse Source

geodata: WIP geodata column type

pull/4140/head
flisowna 2 years ago
parent
commit
4bc7d786d0
  1. 1
      packages/nc-gui/components.d.ts
  2. 37
      packages/nc-gui/components/cell/GeoData.vue

1
packages/nc-gui/components.d.ts vendored

@ -47,6 +47,7 @@ declare module '@vue/runtime-core' {
AntDesignMenuFoldOutlined: typeof import('~icons/ant-design/menu-fold-outlined')['default'] AntDesignMenuFoldOutlined: typeof import('~icons/ant-design/menu-fold-outlined')['default']
AntDesignMenuUnfoldOutlined: typeof import('~icons/ant-design/menu-unfold-outlined')['default'] AntDesignMenuUnfoldOutlined: typeof import('~icons/ant-design/menu-unfold-outlined')['default']
APagination: typeof import('ant-design-vue/es')['Pagination'] APagination: typeof import('ant-design-vue/es')['Pagination']
APopover: typeof import('ant-design-vue/es')['Popover']
ARadio: typeof import('ant-design-vue/es')['Radio'] ARadio: typeof import('ant-design-vue/es')['Radio']
ARadioGroup: typeof import('ant-design-vue/es')['RadioGroup'] ARadioGroup: typeof import('ant-design-vue/es')['RadioGroup']
ARate: typeof import('ant-design-vue/es')['Rate'] ARate: typeof import('ant-design-vue/es')['Rate']

37
packages/nc-gui/components/cell/GeoData.vue

@ -1,41 +1,46 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { VNodeRef } from '@vue/runtime-core' import type { VNodeRef } from '@vue/runtime-core'
import { EditModeInj, inject, useVModel } from '#imports' import type { GeoLocationType } from 'nocodb-sdk'
import { EditModeInj, inject, ReadonlyInj, ref, useVModel } from '#imports'
import { onKeyDown } from '@vueuse/core'
interface Props { interface Props {
modelValue?: number | null | string modelValue?: GeoLocationType
} }
interface Emits { interface Emits {
(event: 'update:modelValue', model: number): void (event: 'update:modelValue', model: GeoLocationType): void
} }
const props = defineProps<Props>() const props = defineProps<Props>()
const emits = defineEmits<Emits>() const emits = defineEmits<Emits>()
const isOpen = ref(false)
const visible = ref<boolean>(false)
const editEnabled = inject(EditModeInj) const editEnabled = inject(EditModeInj)
const readOnly = inject(ReadonlyInj)!
const vModel = useVModel(props, 'modelValue', emits) const vModel = useVModel(props, 'modelValue', emits)
const focus: VNodeRef = (el) => (el as HTMLInputElement)?.focus() const focus: VNodeRef = (el) => (el as HTMLInputElement)?.focus()
const toggleVisbility = () => {
visible.value = !visible.value
}
</script> </script>
<template> <template>
<div> <div v-on:click="toggleVisbility" :style="{ minWidth: '100%', minHeight: '100%', backgroundColor: 'red' }">
TEST <a-popover v-model:visible="visible" title="Title" trigger="click">
<a-input-group v-if="editEnabled"> <template>
<a-input <a-input />
:ref="focus"
v-model="vModel"
class="outline-none px-2 border-none w-full h-full text-sm"
type="number"
step="0.1"
@blur="editEnabled = false"
/>
<a-input /> <a-input />
</a-input-group> </template>
<span v-else class="text-sm">{{ vModel }}</span> </a-popover>
</div> </div>
</template> </template>

Loading…
Cancel
Save