mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 06:06:56 +08:00
279 lines
8.4 KiB
Vue
279 lines
8.4 KiB
Vue
<template>
|
|
<div class="w-full relative">
|
|
<template v-if="editing">
|
|
<input type="text"
|
|
v-if="singleLine"
|
|
ref="input"
|
|
class="inline-block outline-none pl-0 py-1 border-0 border-solid border-y w-full border-t-transparent"
|
|
:class="{
|
|
'inline-edit-placeholder text-sn-grey caret-black': isBlank,
|
|
'border-b-sn-delete-red': error,
|
|
'border-b-sn-science-blue': !error,
|
|
}"
|
|
:placeholder="placeholder"
|
|
v-model="newValue"
|
|
@keydown="handleKeypress"
|
|
@paste="handlePaste"
|
|
@blur="handleBlur"
|
|
@keyup.escape="cancelEdit"
|
|
@focus="setCaretAtEnd"/>
|
|
<textarea v-else
|
|
ref="input"
|
|
class="overflow-hidden inline-block outline-none px-0 py-1 border-0 border-solid border-b w-full border-t-transparent"
|
|
:class="{
|
|
'inline-edit-placeholder text-sn-grey caret-black': isBlank,
|
|
'border-sn-delete-red': error,
|
|
'border-sn-science-blue': !error,
|
|
}"
|
|
:placeholder="placeholder"
|
|
v-model="newValue"
|
|
@keydown="handleKeypress"
|
|
@paste="handlePaste"
|
|
@blur="handleBlur"
|
|
@keyup.escape="cancelEdit"
|
|
@focus="setCaretAtEnd"/>
|
|
</template>
|
|
<div
|
|
v-else
|
|
ref="view"
|
|
class="sci-cursor-edit border-0 py-1 outline-none inline-block border-solid border-y border-transparent"
|
|
:class="{ 'text-sn-grey': isBlank, 'pb-1.5': !singleLine }"
|
|
@click="enableEdit($event)"
|
|
>
|
|
<span v-if="smartAnnotation" v-html="sa_value || placeholder" ></span>
|
|
<span v-else>{{newValue || placeholder}}</span>
|
|
</div>
|
|
|
|
<div
|
|
class="mt-2 whitespace-nowrap text-xs font-normal absolute bottom-[-.75rem]"
|
|
:class="{'text-sn-delete-red': editing && error}"
|
|
>
|
|
{{ editing && error ? error : timestamp }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import UtilsMixin from '../mixins/utils.js';
|
|
|
|
export default {
|
|
name: 'InlineEdit',
|
|
props: {
|
|
value: { type: String, default: '' },
|
|
sa_value: { type: String},
|
|
allowBlank: { type: Boolean, default: true },
|
|
attributeName: { type: String, required: true },
|
|
characterLimit: { type: Number },
|
|
characterMinLimit: { type: Number },
|
|
timestamp: { type: String},
|
|
placeholder: { type: String },
|
|
autofocus: { type: Boolean, default: false },
|
|
saveOnEnter: { type: Boolean, default: true },
|
|
allowNewLine: { type: Boolean, default: false },
|
|
multilinePaste: { type: Boolean, default: false },
|
|
smartAnnotation: { type: Boolean, default: false },
|
|
editOnload: { type: Boolean, default: false },
|
|
defaultValue: { type: String, default: '' },
|
|
singleLine: { type: Boolean, default: true }
|
|
},
|
|
data() {
|
|
return {
|
|
editing: false,
|
|
dirty: false,
|
|
newValue: ''
|
|
}
|
|
},
|
|
mixins: [UtilsMixin],
|
|
created() {
|
|
this.newValue = this.value || '';
|
|
},
|
|
mounted() {
|
|
this.handleAutofocus();
|
|
if (this.editOnload) {
|
|
this.enableEdit();
|
|
}
|
|
},
|
|
watch: {
|
|
editing() {
|
|
this.refreshTexareaHeight()
|
|
},
|
|
newValue() {
|
|
if (this.newValue.length === 0 && this.editing) {
|
|
this.focus();
|
|
}
|
|
this.refreshTexareaHeight();
|
|
},
|
|
autofocus() {
|
|
this.handleAutofocus();
|
|
}
|
|
},
|
|
computed: {
|
|
isBlank() {
|
|
return this.newValue.length === 0;
|
|
},
|
|
isContentDefault() {
|
|
return this.newValue === this.defaultValue;
|
|
},
|
|
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.numberWithSpaces(this.characterLimit)
|
|
}
|
|
)
|
|
)
|
|
}
|
|
if (this.characterMinLimit && this.newValue.length < this.characterMinLimit) {
|
|
return (
|
|
this.i18n.t('inline_edit.errors.below_limit',
|
|
{
|
|
attribute: this.attributeName,
|
|
limit: this.numberWithSpaces(this.characterMinLimit)
|
|
}
|
|
)
|
|
)
|
|
}
|
|
|
|
return false
|
|
}
|
|
},
|
|
methods: {
|
|
handleAutofocus() {
|
|
if (this.autofocus || !this.placeholder && this.isBlank || this.editOnload && this.isBlank) {
|
|
this.enableEdit();
|
|
setTimeout(this.focus, 50);
|
|
}
|
|
},
|
|
handleBlur() {
|
|
if ($('.atwho-view:visible').length) return;
|
|
if (this.allowBlank || !this.isBlank) {
|
|
this.$nextTick(this.update);
|
|
} else {
|
|
this.$emit('delete');
|
|
}
|
|
},
|
|
focus() {
|
|
this.$nextTick(() => {
|
|
if (!this.$refs.input) return;
|
|
this.$refs.input.focus();
|
|
});
|
|
},
|
|
setCaretAtEnd() {
|
|
if (this.isBlank || this.isContentDefault) return;
|
|
|
|
const el = this.$refs.input;
|
|
el.focus();
|
|
},
|
|
enableEdit(e) {
|
|
if (e && $(e.target).hasClass('atwho-user-popover')) return;
|
|
if (e && $(e.target).hasClass('sa-link')) return;
|
|
if (e && $(e.target).parent().hasClass('atwho-inserted')) return;
|
|
|
|
this.editing = true;
|
|
this.$nextTick(() => {
|
|
this.focus();
|
|
this.$refs.input.value = this.newValue;
|
|
|
|
// Select whole content if it is default
|
|
if (this.isContentDefault) {
|
|
let range = document.createRange();
|
|
range.selectNodeContents(this.$refs.input);
|
|
let selection = window.getSelection();
|
|
selection.removeAllRanges();
|
|
selection.addRange(range);
|
|
}
|
|
if (this.smartAnnotation) {
|
|
SmartAnnotation.init($(this.$refs.input), false);
|
|
}
|
|
})
|
|
this.$emit('editingEnabled');
|
|
},
|
|
cancelEdit() {
|
|
this.editing = false;
|
|
this.newValue = this.value || '';
|
|
this.$emit('editingDisabled');
|
|
},
|
|
handlePaste(e) {
|
|
e.preventDefault();
|
|
this.dirty = true;
|
|
|
|
const clipboardData = (e.clipboardData || window.clipboardData).getData("text");
|
|
let lines = clipboardData.split(/[\n\r]/).filter((l) => l).map((l) => l.trim());
|
|
|
|
const selection = window.getSelection();
|
|
if (!selection.rangeCount) return;
|
|
|
|
selection.deleteFromDocument();
|
|
|
|
let textNode = document.createTextNode(lines[0]);
|
|
selection.getRangeAt(0).insertNode(textNode);
|
|
|
|
let range = document.createRange();
|
|
range.setStart(textNode, textNode.length);
|
|
range.setEnd(textNode, textNode.length);
|
|
|
|
this.$nextTick(() => {
|
|
this.newValue = e.target.textContent;
|
|
selection.removeAllRanges();
|
|
selection.addRange(range);
|
|
|
|
// Handle multi-line paste
|
|
if (this.multilinePaste && lines.length > 1) {
|
|
this.$emit('multilinePaste', lines);
|
|
this.update();
|
|
}
|
|
});
|
|
},
|
|
handleInput(e) {
|
|
this.dirty = true;
|
|
|
|
const sel = document.getSelection();
|
|
const offset = sel.anchorOffset;
|
|
|
|
this.newValue = this.allowNewLine ? e.target.textContent : e.target.textContent.replace(/^[\n\r]+|[\n\r]+$/g, '');
|
|
|
|
sel.collapse(sel.anchorNode, offset);
|
|
},
|
|
handleKeypress(e) {
|
|
if (e.key == 'Escape') {
|
|
this.cancelEdit();
|
|
} else if (e.key == 'Enter' && this.saveOnEnter) {
|
|
e.preventDefault()
|
|
this.update();
|
|
} else {
|
|
if (!this.error) this.$emit('error-cleared');
|
|
this.dirty = true;
|
|
}
|
|
},
|
|
update() {
|
|
this.refreshTexareaHeight();
|
|
|
|
if (!this.dirty && !this.isBlank) {
|
|
this.editing = false;
|
|
return;
|
|
}
|
|
|
|
if(this.error) return;
|
|
if(!this.$refs.input) return;
|
|
this.newValue = this.$refs.input.value.trim() // Fix for smart annotation
|
|
|
|
this.editing = false;
|
|
this.$emit('editingDisabled');
|
|
this.$emit('update', this.newValue);
|
|
},
|
|
refreshTexareaHeight() {
|
|
if (this.editing && !this.singleLine) {
|
|
this.$nextTick(() => {
|
|
this.$refs.input.style.height = '0px';
|
|
this.$refs.input.style.height = this.$refs.input.scrollHeight - 3 + 'px';
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|