mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-15 19:28:11 +00:00
401 lines
15 KiB
Vue
Executable File
401 lines
15 KiB
Vue
Executable File
<template>
|
|
<div class="chat-input-wrapper" :class="modeClass">
|
|
<div ref="editor"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {mapGetters, mapState} from "vuex";
|
|
|
|
import Quill from 'quill';
|
|
import "quill-mention";
|
|
|
|
export default {
|
|
name: 'ChatInput',
|
|
props: {
|
|
dialogId: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
taskId: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
value: {
|
|
type: [String, Number],
|
|
default: ''
|
|
},
|
|
placeholder: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
enterSend: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
options: {
|
|
type: Object,
|
|
default: () => ({})
|
|
},
|
|
maxlength: {
|
|
type: Number
|
|
},
|
|
defaultMenuOrientation: {
|
|
type: String,
|
|
default: "top"
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
quill: null,
|
|
_content: '',
|
|
_options: {},
|
|
|
|
modeClass: '',
|
|
|
|
userList: null,
|
|
taskList: null,
|
|
};
|
|
},
|
|
mounted() {
|
|
this.init();
|
|
},
|
|
beforeDestroy() {
|
|
this.quill = null
|
|
delete this.quill
|
|
},
|
|
computed: {
|
|
...mapState(['cacheProjects', 'cacheTasks', 'cacheUserBasic', 'userId']),
|
|
|
|
...mapGetters(['dashboardTask', 'transforTasks']),
|
|
},
|
|
watch: {
|
|
// Watch content change
|
|
value(newVal) {
|
|
if (this.quill) {
|
|
if (newVal && newVal !== this._content) {
|
|
this._content = newVal
|
|
this.quill.pasteHTML(newVal)
|
|
} else if(!newVal) {
|
|
this.quill.setText('')
|
|
}
|
|
}
|
|
},
|
|
|
|
// Watch disabled change
|
|
disabled(newVal) {
|
|
if (this.quill) {
|
|
this.quill.enable(!newVal)
|
|
}
|
|
},
|
|
|
|
// Reset lists
|
|
dialogId() {
|
|
this.userList = null;
|
|
this.taskList = null;
|
|
},
|
|
taskId() {
|
|
this.userList = null;
|
|
this.taskList = null;
|
|
},
|
|
},
|
|
methods: {
|
|
init() {
|
|
// Options
|
|
this._options = Object.assign({
|
|
theme: null,
|
|
readOnly: false,
|
|
placeholder: this.placeholder,
|
|
modules: {
|
|
keyboard: {
|
|
bindings: {
|
|
'short enter': {
|
|
key: 13,
|
|
shortKey: true,
|
|
handler: _ => {
|
|
if (!this.enterSend) {
|
|
this.$emit('on-send', this.quill)
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
},
|
|
'enter': {
|
|
key: 13,
|
|
shiftKey: false,
|
|
handler: _ => {
|
|
if (this.enterSend) {
|
|
this.$emit('on-send', this.quill)
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
},
|
|
mention: {
|
|
allowedChars: /^\S*$/,
|
|
mentionDenotationChars: ["@", "#"],
|
|
defaultMenuOrientation: this.defaultMenuOrientation,
|
|
renderItem: (data) => {
|
|
if (data.disabled === true) {
|
|
return `<div class="mention-item-disabled">${data.value}</div>`;
|
|
}
|
|
if (data.id === 0) {
|
|
return `<div class="mention-item-at">@</div><div class="mention-item-name">${data.value}</div><div class="mention-item-tip">${this.$L('提示所有成员')}</div>`;
|
|
}
|
|
if (data.avatar) {
|
|
return `<div class="mention-item-img${data.online ? ' online' : ''}"><img src="${data.avatar}"/><em></em></div><div class="mention-item-name">${data.value}</div>`;
|
|
}
|
|
return `<div class="mention-item-name" title="${data.value}">${data.value}</div>`;
|
|
},
|
|
renderLoading: () => {
|
|
return "Loading...";
|
|
},
|
|
source: (searchTerm, renderList, mentionChar) => {
|
|
this.getSource(mentionChar).then(array => {
|
|
let values = [];
|
|
array.some(item => {
|
|
let list = item.list;
|
|
if (searchTerm && !item.ignoreSearch) {
|
|
list = list.filter(({value}) => $A.strExists(value, searchTerm));
|
|
}
|
|
if (list.length > 0 || item.ignoreSearch) {
|
|
item.label && values.push(...item.label)
|
|
list.length > 0 && values.push(...list)
|
|
}
|
|
})
|
|
renderList(values, searchTerm);
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}, this.options)
|
|
|
|
// Instance
|
|
this.quill = new Quill(this.$refs.editor, this._options)
|
|
this.quill.enable(false)
|
|
|
|
// Set editor content
|
|
if (this.value) {
|
|
this.quill.pasteHTML(this.value)
|
|
}
|
|
|
|
// Disabled editor
|
|
if (!this.disabled) {
|
|
this.quill.enable(true)
|
|
}
|
|
|
|
// Mark model as touched if editor lost focus
|
|
this.quill.on('selection-change', range => {
|
|
if (!range) {
|
|
this.$emit('on-blur', this.quill)
|
|
} else {
|
|
this.$emit('on-focus', this.quill)
|
|
}
|
|
})
|
|
|
|
// Update model if text changes
|
|
this.quill.on('text-change', _ => {
|
|
if (this.maxlength > 0 && this.quill.getLength() > this.maxlength) {
|
|
this.quill.deleteText(this.maxlength, this.quill.getLength());
|
|
}
|
|
let html = this.$refs.editor.children[0].innerHTML
|
|
const quill = this.quill
|
|
const text = this.quill.getText()
|
|
if (/^(\<p\>\<br\>\<\/p\>)+$/.test(html)) html = ''
|
|
this._content = html
|
|
this.$emit('input', this._content)
|
|
this.$emit('on-change', { html, text, quill })
|
|
})
|
|
|
|
// Emit ready event
|
|
this.$emit('on-ready', this.quill)
|
|
},
|
|
|
|
focus() {
|
|
this.$nextTick(() => {
|
|
this.quill && this.quill.focus()
|
|
})
|
|
},
|
|
|
|
blur() {
|
|
this.$nextTick(() => {
|
|
this.quill && this.quill.blur()
|
|
})
|
|
},
|
|
|
|
getSource(mentionChar) {
|
|
return new Promise(resolve => {
|
|
switch (mentionChar) {
|
|
case "@": // @成员
|
|
this.modeClass = "user-mention";
|
|
if (this.userList !== null) {
|
|
resolve(this.userList)
|
|
return;
|
|
}
|
|
const atCallback = (list) => {
|
|
if (list.length > 2) {
|
|
this.userList = [{
|
|
ignoreSearch: true,
|
|
label: null,
|
|
list: [{id: 0, value: this.$L('所有人')}]
|
|
}, {
|
|
ignoreSearch: false,
|
|
label: [{id: 0, value: this.$L('会话内成员'), disabled: true}],
|
|
list,
|
|
}]
|
|
} else {
|
|
this.userList = [{
|
|
ignoreSearch: false,
|
|
label: null,
|
|
list
|
|
}]
|
|
}
|
|
resolve(this.userList)
|
|
}
|
|
let array = [];
|
|
if (this.dialogId > 0) {
|
|
// 根据会话ID获取成员
|
|
this.$store.dispatch("call", {
|
|
url: 'dialog/group/user',
|
|
data: {
|
|
dialog_id: this.dialogId,
|
|
getuser: 1
|
|
}
|
|
}).then(({data}) => {
|
|
if (data.length > 0) {
|
|
array.push(...data.map(item => {
|
|
return {
|
|
id: item.userid,
|
|
value: item.nickname,
|
|
avatar: item.userimg,
|
|
online: item.online,
|
|
}
|
|
}))
|
|
}
|
|
atCallback(array)
|
|
}).catch(_ => {
|
|
atCallback(array)
|
|
});
|
|
} else if (this.taskId > 0) {
|
|
// 根据任务ID获取成员
|
|
const task = this.cacheTasks.find(({id}) => id == this.taskId)
|
|
if (task && $A.isArray(task.task_user)) {
|
|
task.task_user.some(tmp => {
|
|
let item = this.cacheUserBasic.find(({userid}) => userid == tmp.userid);
|
|
if (item) {
|
|
array.push({
|
|
id: item.userid,
|
|
value: item.nickname,
|
|
avatar: item.userimg,
|
|
online: item.online,
|
|
})
|
|
}
|
|
})
|
|
}
|
|
atCallback(array)
|
|
}
|
|
break;
|
|
|
|
case "#": // #任务
|
|
this.modeClass = "task-mention";
|
|
if (this.taskList !== null) {
|
|
resolve(this.taskList)
|
|
return;
|
|
}
|
|
const taskCallback = (list) => {
|
|
this.taskList = [];
|
|
// 项目任务
|
|
if (list.length > 0) {
|
|
list = list.map(item => {
|
|
return {
|
|
id: item.id,
|
|
value: item.name
|
|
}
|
|
})
|
|
this.taskList.push({
|
|
ignoreSearch: false,
|
|
label: [{id: 0, value: this.$L('项目未完成任务'), disabled: true}],
|
|
list,
|
|
})
|
|
}
|
|
// 待完成任务
|
|
let data = this.transforTasks(this.dashboardTask['all']);
|
|
if (data.length > 0) {
|
|
data = data.sort((a, b) => {
|
|
return $A.Date(a.end_at || "2099-12-31 23:59:59") - $A.Date(b.end_at || "2099-12-31 23:59:59");
|
|
})
|
|
this.taskList.push({
|
|
ignoreSearch: false,
|
|
label: [{id: 0, value: this.$L('我的待完成任务'), disabled: true}],
|
|
list: data.map(item => {
|
|
return {
|
|
id: item.id,
|
|
value: item.name
|
|
}
|
|
}),
|
|
})
|
|
}
|
|
resolve(this.taskList)
|
|
}
|
|
//
|
|
const projectId = this.getProjectId();
|
|
if (projectId > 0) {
|
|
this.$store.dispatch("getTaskForProject", projectId).then(_ => {
|
|
let tasks = this.cacheTasks.filter(task => {
|
|
if (task.archived_at) {
|
|
return false;
|
|
}
|
|
return task.project_id == projectId
|
|
&& task.parent_id === 0
|
|
&& !task.archived_at
|
|
&& !task.complete_at
|
|
})
|
|
if (tasks.length > 0) {
|
|
taskCallback(tasks);
|
|
} else {
|
|
taskCallback([])
|
|
}
|
|
}).catch(_ => {
|
|
taskCallback([])
|
|
})
|
|
return;
|
|
}
|
|
taskCallback([])
|
|
break;
|
|
|
|
default:
|
|
resolve([])
|
|
break;
|
|
}
|
|
})
|
|
},
|
|
|
|
getProjectId() {
|
|
let object = null;
|
|
if (this.dialogId > 0) {
|
|
object = this.cacheProjects.find(({dialog_id}) => dialog_id == this.dialogId);
|
|
if (object) {
|
|
return object.id;
|
|
}
|
|
object = this.cacheTasks.find(({dialog_id}) => dialog_id == this.dialogId);
|
|
if (object) {
|
|
return object.project_id;
|
|
}
|
|
} else if (this.taskId > 0) {
|
|
object = this.cacheTasks.find(({id}) => id == this.taskId);
|
|
if (object) {
|
|
return object.project_id;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
</script>
|