Browse Source

feat(gui-v2): LongText Cell

pull/2960/head
Wing-Kam Wong 2 years ago
parent
commit
09fce80861
  1. 67
      packages/nc-gui-v2/components/cell/TextArea.vue

67
packages/nc-gui-v2/components/cell/TextArea.vue

@ -5,70 +5,43 @@ interface Props {
modelValue?: string modelValue?: string
} }
const { modelValue: value } = defineProps<Props>() const props = defineProps<Props>()
const emit = defineEmits(['update:modelValue']) const emits = defineEmits(['update:modelValue'])
const editEnabled = inject<boolean>('editEnabled', false) const editEnabled = inject<boolean>('editEnabled', false)
const root = ref<HTMLInputElement>() const root = ref<HTMLInputElement>()
const localState = computed({ const vModel = useVModel(props, 'modelValue', emits)
get: () => value,
set: (val) => emit('update:modelValue', val),
})
onMounted(() => { onMounted(() => {
root.value?.focus() root.value?.focus()
}) })
/* export default { watch(
name: 'TextAreaCell', () => root.value,
props: { (el) => {
value: String, el?.focus()
},
computed: {
localState: {
get() {
return this.value
},
set(val) {
this.$emit('input', val)
},
},
parentListeners() {
const $listeners = {}
if (this.$listeners.blur) {
$listeners.blur = this.$listeners.blur
}
if (this.$listeners.focus) {
$listeners.focus = this.$listeners.focus
}
return $listeners
},
},
created() {
this.localState = this.value
},
mounted() {
this.$refs.textarea && this.$refs.textarea.focus()
}, },
} */ )
</script> </script>
<template> <template>
<textarea v-if="editEnabled" ref="root" v-model="localState" rows="4" @keydown.alt.enter.stop @keydown.shift.enter.stop /> <textarea
<span v-else>{{ localState }}</span> v-if="editEnabled"
ref="root"
v-model="vModel"
rows="4"
class="h-full w-full min-h-[60px] outline-none"
@keydown.alt.enter.stop
@keydown.shift.enter.stop
/>
<span v-else>{{ vModel }}</span>
</template> </template>
<style scoped> <style scoped>
input, textarea:focus {
textarea { @apply ring-transparent;
width: 100%;
min-height: 60px;
height: 100%;
color: var(--v-textColor-base);
} }
</style> </style>

Loading…
Cancel
Save