mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
119 lines
2.4 KiB
Vue
119 lines
2.4 KiB
Vue
<template>
|
|
<div ref="editor" class="editor-root"></div>
|
|
</template>
|
|
|
|
<script>
|
|
import { EditorState } from 'prosemirror-state';
|
|
import { EditorView } from 'prosemirror-view';
|
|
import {
|
|
schema,
|
|
defaultMarkdownParser,
|
|
defaultMarkdownSerializer,
|
|
} from 'prosemirror-markdown';
|
|
import { wootWriterSetup } from '@chatwoot/prosemirror-schema';
|
|
|
|
const TYPING_INDICATOR_IDLE_TIME = 4000;
|
|
|
|
const createState = (content, placeholder) =>
|
|
EditorState.create({
|
|
doc: defaultMarkdownParser.parse(content),
|
|
plugins: wootWriterSetup({ schema, placeholder }),
|
|
});
|
|
|
|
export default {
|
|
name: 'WootMessageEditor',
|
|
props: {
|
|
value: { type: String, default: '' },
|
|
placeholder: { type: String, default: '' },
|
|
},
|
|
data() {
|
|
return {
|
|
lastValue: null,
|
|
};
|
|
},
|
|
watch: {
|
|
value(newValue) {
|
|
if (newValue !== this.lastValue) {
|
|
this.state = createState(newValue, this.placeholder);
|
|
this.view.updateState(this.state);
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
this.state = createState(this.value, this.placeholder);
|
|
},
|
|
mounted() {
|
|
this.view = new EditorView(this.$refs.editor, {
|
|
state: this.state,
|
|
dispatchTransaction: tx => {
|
|
this.state = this.state.apply(tx);
|
|
this.view.updateState(this.state);
|
|
this.lastValue = defaultMarkdownSerializer.serialize(this.state.doc);
|
|
this.$emit('input', this.lastValue);
|
|
},
|
|
handleDOMEvents: {
|
|
keyup: () => {
|
|
this.onKeyup();
|
|
},
|
|
focus: () => {
|
|
this.onFocus();
|
|
},
|
|
blur: () => {
|
|
this.onBlur();
|
|
},
|
|
},
|
|
});
|
|
},
|
|
methods: {
|
|
resetTyping() {
|
|
this.$emit('typing-off');
|
|
this.idleTimer = null;
|
|
},
|
|
turnOffIdleTimer() {
|
|
if (this.idleTimer) {
|
|
clearTimeout(this.idleTimer);
|
|
}
|
|
},
|
|
onKeyup() {
|
|
if (!this.idleTimer) {
|
|
this.$emit('typing-on');
|
|
}
|
|
this.turnOffIdleTimer();
|
|
this.idleTimer = setTimeout(
|
|
() => this.resetTyping(),
|
|
TYPING_INDICATOR_IDLE_TIME
|
|
);
|
|
},
|
|
onBlur() {
|
|
this.turnOffIdleTimer();
|
|
this.resetTyping();
|
|
this.$emit('blur');
|
|
},
|
|
onFocus() {
|
|
this.$emit('focus');
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.ProseMirror-menubar-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
> .ProseMirror {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.editor-root {
|
|
width: 100%;
|
|
}
|
|
|
|
.ProseMirror-woot-style {
|
|
min-height: 8rem;
|
|
max-height: 12rem;
|
|
overflow: auto;
|
|
}
|
|
</style>
|