mirror of https://github.com/nocodb/nocodb
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.
248 lines
6.5 KiB
248 lines
6.5 KiB
<template> |
|
<div |
|
@keydown.stop.left |
|
@keydown.stop.right |
|
@keydown.stop.up |
|
@keydown.stop.down |
|
@keydown.stop.enter="$emit('save')" |
|
> |
|
<editable-attachment-cell |
|
v-if="isAttachment" |
|
v-model="localState" |
|
:active="active" |
|
:db-alias="dbAlias" |
|
:meta="meta" |
|
:column="column" |
|
v-on="$listeners" |
|
/> |
|
|
|
<boolean-cell |
|
v-else-if="isBoolean" |
|
v-model="localState" |
|
:is-form="isForm" |
|
v-on="parentListeners" |
|
/> |
|
|
|
<integer-cell |
|
v-else-if="isInt" |
|
v-model="localState" |
|
v-on="parentListeners" |
|
/> |
|
|
|
<float-cell |
|
v-else-if="isFloat" |
|
v-model="localState" |
|
v-on="parentListeners" |
|
/> |
|
|
|
<date-picker-cell |
|
v-else-if="isDate" |
|
v-model="localState" |
|
v-on="parentListeners" |
|
@input="$emit('change')" |
|
/> |
|
|
|
<time-picker-cell |
|
v-else-if="isTime" |
|
v-model="localState" |
|
v-on="parentListeners" |
|
@update="$emit('change')" |
|
/> |
|
|
|
<date-time-picker-cell |
|
v-else-if="isDateTime" |
|
v-model="localState" |
|
ignore-focus="ignoreFocus" |
|
v-on="parentListeners" |
|
@input="$emit('change')" |
|
/> |
|
|
|
<enum-cell |
|
v-else-if="isEnum && !isForm && !active" |
|
v-model="localState" |
|
:column="column" |
|
v-on="parentListeners" |
|
/> |
|
<enum-list-cell |
|
v-else-if="isEnum" |
|
v-model="localState" |
|
:is-form="isForm" |
|
:column="column" |
|
v-on="parentListeners" |
|
/> |
|
|
|
<json-editable-cell |
|
v-else-if="isJSON" |
|
v-model="localState" |
|
:is-form="isForm" |
|
v-on="parentListeners" |
|
@input="$emit('save')" |
|
/> |
|
|
|
<set-list-editable-cell |
|
v-else-if="isSet && (active || isForm)" |
|
v-model="localState" |
|
:column="column" |
|
v-on="parentListeners" |
|
/> |
|
<set-list-cell |
|
v-else-if="isSet" |
|
v-model="localState" |
|
:column="column" |
|
v-on="parentListeners" |
|
/> |
|
|
|
<editable-url-cell v-else-if="isURL" v-model="localState" v-on="parentListeners" /> |
|
|
|
<text-cell v-else-if="isString" v-model="localState" v-on="parentListeners" /> |
|
|
|
<text-area-cell |
|
v-else-if="isTextArea" |
|
v-model="localState" |
|
:is-form="isForm" |
|
v-on="parentListeners" |
|
/> |
|
|
|
<text-cell v-else v-model="localState" v-on="$listeners" /> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
import debounce from 'debounce' |
|
import DatePickerCell from '@/components/project/spreadsheet/components/editableCell/datePickerCell' |
|
import EditableUrlCell from '@/components/project/spreadsheet/components/editableCell/editableUrlCell' |
|
import JsonEditableCell from '@/components/project/spreadsheet/components/editableCell/jsonEditableCell' |
|
import TextCell from '@/components/project/spreadsheet/components/editableCell/textCell' |
|
import DateTimePickerCell from '@/components/project/spreadsheet/components/editableCell/dateTimePickerCell' |
|
import TextAreaCell from '@/components/project/spreadsheet/components/editableCell/textAreaCell' |
|
import EnumListCell from '@/components/project/spreadsheet/components/editableCell/enumListEditableCell' |
|
import IntegerCell from '@/components/project/spreadsheet/components/editableCell/integerCell' |
|
import FloatCell from '@/components/project/spreadsheet/components/editableCell/floatCell' |
|
import TimePickerCell from '@/components/project/spreadsheet/components/editableCell/timePickerCell' |
|
import BooleanCell from '@/components/project/spreadsheet/components/editableCell/booleanCell' |
|
import cell from '@/components/project/spreadsheet/mixins/cell' |
|
import EditableAttachmentCell from '@/components/project/spreadsheet/components/editableCell/editableAttachmentCell' |
|
import EnumCell from '@/components/project/spreadsheet/components/cell/enumCell' |
|
import SetListEditableCell from '@/components/project/spreadsheet/components/editableCell/setListEditableCell' |
|
import SetListCell from '@/components/project/spreadsheet/components/cell/setListCell' |
|
|
|
export default { |
|
name: 'EditableCell', |
|
components: { |
|
JsonEditableCell, |
|
EditableUrlCell, |
|
SetListCell, |
|
SetListEditableCell, |
|
EnumCell, |
|
EditableAttachmentCell, |
|
BooleanCell, |
|
TimePickerCell, |
|
FloatCell, |
|
IntegerCell, |
|
EnumListCell, |
|
TextAreaCell, |
|
DateTimePickerCell, |
|
TextCell, |
|
DatePickerCell |
|
}, |
|
mixins: [cell], |
|
props: { |
|
dbAlias: String, |
|
value: [String, Number, Object, Boolean, Array, Object], |
|
meta: Object, |
|
ignoreFocus: Boolean, |
|
isForm: Boolean, |
|
active: Boolean, |
|
dummy: Boolean |
|
}, |
|
data: () => ({ |
|
changed: false, |
|
destroyed: false |
|
}), |
|
|
|
mounted() { |
|
// this.$refs.input.focus(); |
|
}, |
|
beforeDestroy() { |
|
if (this.changed && !(this.isAttachment || this.isEnum || this.isBoolean || this.isSet || this.isTime)) { |
|
this.$emit('change') |
|
} |
|
this.destroyed = true |
|
}, |
|
methods: { |
|
syncDataDebounce: debounce(async function(self) { |
|
await self.syncData() |
|
}, 1000), |
|
syncData() { |
|
if (!this.destroyed) { |
|
this.$emit('update') |
|
} |
|
} |
|
}, |
|
computed: { |
|
localState: { |
|
get() { |
|
return this.value |
|
}, |
|
set(val) { |
|
this.changed = true |
|
this.$emit('input', val) |
|
this.syncDataDebounce(this) |
|
} |
|
}, |
|
parentListeners() { |
|
const $listeners = {} |
|
|
|
if (this.$listeners.blur) { |
|
$listeners.blur = this.$listeners.blur |
|
} |
|
if (this.$listeners.focus) { |
|
$listeners.focus = this.$listeners.focus |
|
} |
|
|
|
if (this.$listeners.cancel) { |
|
$listeners.cancel = this.$listeners.cancel |
|
} |
|
|
|
if (this.$listeners.update) { |
|
$listeners.update = this.$listeners.update |
|
} |
|
|
|
return $listeners |
|
} |
|
|
|
} |
|
} |
|
</script> |
|
|
|
<style scoped> |
|
div { |
|
width: 100%; |
|
height: 100%; |
|
color: var(--v-textColor-base); |
|
} |
|
</style> |
|
<!-- |
|
/** |
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd |
|
* |
|
* @author Naveen MR <oof1lab@gmail.com> |
|
* @author Pranav C Balan <pranavxc@gmail.com> |
|
* |
|
* @license GNU AGPL version 3 or any later version |
|
* |
|
* This program is free software: you can redistribute it and/or modify |
|
* it under the terms of the GNU Affero General Public License as |
|
* published by the Free Software Foundation, either version 3 of the |
|
* License, or (at your option) any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU Affero General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU Affero General Public License |
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
* |
|
*/ |
|
-->
|
|
|