2022-04-26 20:13:17 +08:00
|
|
|
<template>
|
2022-07-08 19:49:22 +08:00
|
|
|
<div class="sci-inline-edit" :class="{ 'editing': editing }" tabindex="0" @keyup.enter="enableEdit($event)">
|
2022-07-11 17:23:54 +08:00
|
|
|
<div class="sci-inline-edit__content" :class="{ 'error': error }">
|
2022-05-11 21:51:26 +08:00
|
|
|
<textarea
|
|
|
|
ref="input"
|
|
|
|
rows="1"
|
|
|
|
v-if="editing"
|
|
|
|
:placeholder="placeholder"
|
|
|
|
v-model="newValue"
|
|
|
|
@input="handleInput"
|
|
|
|
@keydown="handleKeypress"
|
|
|
|
@paste="handlePaste"
|
|
|
|
@blur="handleBlur"
|
2022-07-12 16:41:58 +08:00
|
|
|
@keyup.escape="cancelEdit"
|
2022-05-11 21:51:26 +08:00
|
|
|
></textarea>
|
2022-07-08 19:49:22 +08:00
|
|
|
<div v-else @click="enableEdit($event)" class="sci-inline-edit__view" v-html="sa_value || value || placeholder" :class="{ 'blank': isBlank }"></div>
|
2022-04-26 20:13:17 +08:00
|
|
|
<div v-if="editing && error" class="sci-inline-edit__error">
|
|
|
|
{{ error }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-09 20:40:45 +08:00
|
|
|
<template v-if="editing">
|
2022-07-11 16:44:27 +08:00
|
|
|
<div :class="{ 'btn-primary': !error, 'btn-disabled': error }" class="sci-inline-edit__control btn icon-btn" @click="update">
|
2022-05-11 21:51:26 +08:00
|
|
|
<i class="fas fa-check"></i>
|
2022-04-26 20:13:17 +08:00
|
|
|
</div>
|
2022-06-09 20:40:45 +08:00
|
|
|
<div class="sci-inline-edit__control btn btn-light icon-btn" @click="cancelEdit">
|
2022-05-11 21:51:26 +08:00
|
|
|
<i class="fas fa-times"></i>
|
2022-04-26 20:13:17 +08:00
|
|
|
</div>
|
2022-06-09 20:40:45 +08:00
|
|
|
</template>
|
2022-04-26 20:13:17 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'InlineEdit',
|
|
|
|
props: {
|
|
|
|
value: { type: String, default: '' },
|
2022-07-08 18:51:43 +08:00
|
|
|
sa_value: { type: String},
|
2022-04-26 20:13:17 +08:00
|
|
|
allowBlank: { type: Boolean, default: true },
|
|
|
|
attributeName: { type: String, required: true },
|
|
|
|
characterLimit: { type: Number },
|
|
|
|
placeholder: { type: String },
|
2022-05-11 21:51:26 +08:00
|
|
|
autofocus: { type: Boolean, default: false },
|
2022-07-07 20:33:38 +08:00
|
|
|
multilinePaste: { type: Boolean, default: false },
|
2022-07-08 18:51:43 +08:00
|
|
|
smartAnnotation: { type: Boolean, default: false },
|
2022-07-07 20:33:38 +08:00
|
|
|
editOnload: { type: Boolean, default: false }
|
2022-04-26 20:13:17 +08:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
editing: false,
|
|
|
|
newValue: ''
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created( ){
|
2022-04-26 20:30:07 +08:00
|
|
|
this.newValue = this.value || '';
|
2022-04-26 20:13:17 +08:00
|
|
|
},
|
|
|
|
mounted() {
|
2022-05-05 18:56:31 +08:00
|
|
|
this.handleAutofocus();
|
2022-07-07 20:33:38 +08:00
|
|
|
if (this.editOnload) {
|
|
|
|
this.enableEdit();
|
|
|
|
}
|
2022-05-05 18:56:31 +08:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
autofocus() {
|
|
|
|
this.handleAutofocus();
|
2022-04-26 20:13:17 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
isBlank() {
|
|
|
|
return this.newValue.length === 0
|
|
|
|
},
|
|
|
|
error() {
|
|
|
|
if(!this.allowBlank && this.isBlank) {
|
|
|
|
return this.i18n.t('inline_edit.errors.blank', { attribute: this.attributeName })
|
|
|
|
}
|
|
|
|
if(this.characterLimit && this.newValue.length > this.characterLimit) {
|
|
|
|
return(
|
|
|
|
this.i18n.t('inline_edit.errors.over_limit',
|
|
|
|
{ attribute: this.attributeName, limit: this.characterLimit }
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2022-05-05 18:56:31 +08:00
|
|
|
handleAutofocus() {
|
2022-07-11 17:52:38 +08:00
|
|
|
if (this.autofocus || !this.placeholder && this.isBlank || this.editOnload && this.isBlank) {
|
2022-05-11 21:51:26 +08:00
|
|
|
this.enableEdit();
|
2022-05-05 18:56:31 +08:00
|
|
|
setTimeout(this.focus, 50);
|
|
|
|
}
|
|
|
|
},
|
2022-05-11 21:51:26 +08:00
|
|
|
handleBlur() {
|
2022-07-08 19:49:22 +08:00
|
|
|
if ($('.atwho-view:visible').length) return;
|
2022-07-08 18:51:43 +08:00
|
|
|
|
2022-07-04 19:55:26 +08:00
|
|
|
if (this.allowBlank || !this.isBlank) {
|
2022-05-11 21:51:26 +08:00
|
|
|
this.$nextTick(this.update);
|
|
|
|
} else {
|
|
|
|
this.$emit('delete');
|
|
|
|
}
|
|
|
|
},
|
2022-04-26 20:13:17 +08:00
|
|
|
focus() {
|
|
|
|
this.$nextTick(() => {
|
2022-06-09 20:40:45 +08:00
|
|
|
if (!this.$refs.input) return;
|
|
|
|
|
2022-04-26 20:13:17 +08:00
|
|
|
this.$refs.input.focus();
|
|
|
|
this.resize();
|
|
|
|
});
|
|
|
|
},
|
2022-07-08 19:49:22 +08:00
|
|
|
enableEdit(e) {
|
|
|
|
if (e && $(e.target).hasClass('atwho-user-popover')) return
|
2022-04-26 20:13:17 +08:00
|
|
|
this.editing = true;
|
|
|
|
this.focus();
|
2022-07-08 18:51:43 +08:00
|
|
|
this.$nextTick(() => {
|
|
|
|
if (this.smartAnnotation) {
|
|
|
|
SmartAnnotation.init($(this.$refs.input));
|
|
|
|
}
|
|
|
|
})
|
2022-05-05 18:56:31 +08:00
|
|
|
this.$emit('editingEnabled');
|
2022-04-26 20:13:17 +08:00
|
|
|
},
|
|
|
|
cancelEdit() {
|
|
|
|
this.editing = false;
|
|
|
|
this.newValue = this.value || '';
|
2022-05-05 18:56:31 +08:00
|
|
|
this.$emit('editingDisabled');
|
|
|
|
},
|
2022-05-11 21:51:26 +08:00
|
|
|
handlePaste(e) {
|
|
|
|
if (!this.multilinePaste) return;
|
2022-07-19 22:44:35 +08:00
|
|
|
let lines = (e.originalEvent || e).clipboardData.getData('text/plain').split(/[\n\r]/);
|
|
|
|
lines = lines.filter((l) => l).map((l) => l.trim());
|
|
|
|
|
|
|
|
if (lines.length > 1) {
|
|
|
|
this.newValue = lines[0];
|
|
|
|
this.$emit('multilinePaste', lines);
|
|
|
|
}
|
2022-05-11 21:51:26 +08:00
|
|
|
},
|
2022-05-05 18:56:31 +08:00
|
|
|
handleInput() {
|
2022-05-11 21:51:26 +08:00
|
|
|
this.newValue = this.newValue.replace(/^[\n\r]+|[\n\r]+$/g, '');
|
2022-05-05 18:56:31 +08:00
|
|
|
this.$nextTick(this.resize);
|
|
|
|
},
|
|
|
|
handleKeypress(e) {
|
|
|
|
switch(e.key) {
|
|
|
|
case 'Escape':
|
|
|
|
this.cancelEdit();
|
|
|
|
break;
|
|
|
|
case 'Enter':
|
|
|
|
this.update();
|
|
|
|
break;
|
|
|
|
}
|
2022-04-26 20:13:17 +08:00
|
|
|
},
|
|
|
|
resize() {
|
2022-07-19 22:44:35 +08:00
|
|
|
if (!this.$refs.input) return;
|
|
|
|
|
2022-04-26 20:13:17 +08:00
|
|
|
this.$refs.input.style.height = "auto";
|
2022-05-05 18:56:31 +08:00
|
|
|
this.$refs.input.style.height = (this.$refs.input.scrollHeight) + "px";
|
2022-04-26 20:13:17 +08:00
|
|
|
},
|
|
|
|
update() {
|
2022-05-11 21:51:26 +08:00
|
|
|
setTimeout(() => {
|
2022-07-11 16:44:27 +08:00
|
|
|
if(this.error) return;
|
2022-05-11 21:51:26 +08:00
|
|
|
if(!this.editing) return;
|
2022-07-08 18:51:43 +08:00
|
|
|
this.newValue = this.$refs.input.value // Fix for smart annotation
|
2022-05-11 21:51:26 +08:00
|
|
|
this.newValue = this.newValue.trim();
|
|
|
|
this.editing = false;
|
|
|
|
this.$emit('editingDisabled');
|
|
|
|
this.$emit('update', this.newValue);
|
|
|
|
}, 100) // due to clicking 'x' also triggering a blur event
|
2022-04-26 20:13:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|