mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-03 12:47:35 +01:00
53c86c66eb
fixes #1647
123 lines
3.1 KiB
JavaScript
123 lines
3.1 KiB
JavaScript
import { getSortableDelay } from '../../../utils.js';
|
|
import { QuickReplySetLink } from './QuickReplySetLink.js';
|
|
import { QuickReplySet } from './QuickReplySet.js';
|
|
|
|
export class QuickReplyConfig {
|
|
/**@type {QuickReplySetLink[]}*/ setList = [];
|
|
/**@type {Boolean}*/ isGlobal;
|
|
|
|
/**@type {Function}*/ onUpdate;
|
|
/**@type {Function}*/ onRequestEditSet;
|
|
|
|
/**@type {HTMLElement}*/ dom;
|
|
/**@type {HTMLElement}*/ setListDom;
|
|
|
|
|
|
|
|
|
|
static from(props) {
|
|
props.setList = props.setList?.map(it=>QuickReplySetLink.from(it))?.filter(it=>it.set) ?? [];
|
|
const instance = Object.assign(new this(), props);
|
|
instance.init();
|
|
return instance;
|
|
}
|
|
|
|
|
|
|
|
|
|
init() {
|
|
this.setList.forEach(it=>this.hookQuickReplyLink(it));
|
|
}
|
|
|
|
|
|
hasSet(qrs) {
|
|
return this.setList.find(it=>it.set == qrs) != null;
|
|
}
|
|
addSet(qrs, isVisible = true) {
|
|
if (!this.hasSet(qrs)) {
|
|
const qrl = new QuickReplySetLink();
|
|
qrl.set = qrs;
|
|
qrl.isVisible = isVisible;
|
|
this.hookQuickReplyLink(qrl);
|
|
this.setList.push(qrl);
|
|
this.setListDom.append(qrl.renderSettings(this.setList.length - 1));
|
|
this.update();
|
|
}
|
|
}
|
|
removeSet(qrs) {
|
|
const idx = this.setList.findIndex(it=>it.set == qrs);
|
|
if (idx > -1) {
|
|
this.setList.splice(idx, 1);
|
|
this.update();
|
|
this.updateSetListDom();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
renderSettingsInto(/**@type {HTMLElement}*/root) {
|
|
/**@type {HTMLElement}*/
|
|
this.setListDom = root.querySelector('.qr--setList');
|
|
root.querySelector('.qr--setListAdd').addEventListener('click', ()=>{
|
|
this.addSet(QuickReplySet.list[0]);
|
|
});
|
|
this.updateSetListDom();
|
|
}
|
|
updateSetListDom() {
|
|
this.setListDom.innerHTML = '';
|
|
// @ts-ignore
|
|
$(this.setListDom).sortable({
|
|
delay: getSortableDelay(),
|
|
stop: ()=>this.onSetListSort(),
|
|
});
|
|
this.setList.filter(it=>!it.set.isDeleted).forEach((qrl,idx)=>this.setListDom.append(qrl.renderSettings(idx)));
|
|
}
|
|
|
|
|
|
onSetListSort() {
|
|
this.setList = Array.from(this.setListDom.children).map((it,idx)=>{
|
|
const qrl = this.setList[Number(it.getAttribute('data-order'))];
|
|
qrl.index = idx;
|
|
it.setAttribute('data-order', String(idx));
|
|
return qrl;
|
|
});
|
|
this.update();
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
* @param {QuickReplySetLink} qrl
|
|
*/
|
|
hookQuickReplyLink(qrl) {
|
|
qrl.onDelete = ()=>this.deleteQuickReplyLink(qrl);
|
|
qrl.onUpdate = ()=>this.update();
|
|
qrl.onRequestEditSet = ()=>this.requestEditSet(qrl.set);
|
|
}
|
|
|
|
deleteQuickReplyLink(qrl) {
|
|
this.setList.splice(this.setList.indexOf(qrl), 1);
|
|
this.update();
|
|
}
|
|
|
|
update() {
|
|
if (this.onUpdate) {
|
|
this.onUpdate(this);
|
|
}
|
|
}
|
|
|
|
requestEditSet(qrs) {
|
|
if (this.onRequestEditSet) {
|
|
this.onRequestEditSet(qrs);
|
|
}
|
|
}
|
|
|
|
toJSON() {
|
|
return {
|
|
setList: this.setList,
|
|
};
|
|
}
|
|
}
|