@qxs-bns/components-wc 0.0.23 → 0.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/es/editor/blocksuite-editor.mjs +14 -14
  2. package/es/editor/blocksuite-editor.mjs.map +1 -1
  3. package/es/subject/action.mjs +18 -18
  4. package/es/subject/action.mjs.map +1 -1
  5. package/es/subject/blank-fill.mjs +128 -49
  6. package/es/subject/blank-fill.mjs.map +1 -1
  7. package/es/subject/layout.mjs +3 -3
  8. package/es/subject/layout.mjs.map +1 -1
  9. package/es/subject/list.mjs +80 -46
  10. package/es/subject/list.mjs.map +1 -1
  11. package/es/subject/page-end.mjs +8 -8
  12. package/es/subject/page-end.mjs.map +1 -1
  13. package/es/subject/scale.mjs +110 -29
  14. package/es/subject/scale.mjs.map +1 -1
  15. package/es/subject/single.mjs +48 -48
  16. package/es/subject/single.mjs.map +1 -1
  17. package/es/subject/text-fill.mjs +139 -98
  18. package/es/subject/text-fill.mjs.map +1 -1
  19. package/lib/editor/blocksuite-editor.cjs +4 -4
  20. package/lib/editor/blocksuite-editor.cjs.map +1 -1
  21. package/lib/subject/action.cjs +18 -18
  22. package/lib/subject/action.cjs.map +1 -1
  23. package/lib/subject/blank-fill.cjs +123 -44
  24. package/lib/subject/blank-fill.cjs.map +1 -1
  25. package/lib/subject/layout.cjs +2 -2
  26. package/lib/subject/layout.cjs.map +1 -1
  27. package/lib/subject/list.cjs +83 -49
  28. package/lib/subject/list.cjs.map +1 -1
  29. package/lib/subject/page-end.cjs +8 -8
  30. package/lib/subject/page-end.cjs.map +1 -1
  31. package/lib/subject/scale.cjs +103 -22
  32. package/lib/subject/scale.cjs.map +1 -1
  33. package/lib/subject/single.cjs +48 -48
  34. package/lib/subject/single.cjs.map +1 -1
  35. package/lib/subject/text-fill.cjs +128 -87
  36. package/lib/subject/text-fill.cjs.map +1 -1
  37. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"text-fill.mjs","sources":["../../../../packages/components-wc/src/subject/text-fill.ts"],"sourcesContent":["import { css, html, LitElement } from 'lit'\nimport { property, state } from 'lit/decorators.js'\nimport { safeCustomElement } from '../base/define'\nimport { SubjectError } from './single'\nimport { SubjectType } from './types'\n\ninterface TextAnswer {\n title: string\n tag: string\n showInput: boolean\n answerId?: string | number\n customAnswerId?: string | number\n}\n\nconst TAG_COLORS = [\n { bg: '#ecf5ff', color: '#3D61E3', border: '#d9ecff' }, // primary\n { bg: '#f0f9eb', color: '#67c23a', border: '#c2e7b0' }, // success\n { bg: '#fdf6ec', color: '#e6a23c', border: '#faecd8' }, // warning\n { bg: '#fef0f0', color: '#f56c6c', border: '#fde2e2' }, // danger\n { bg: '#f4f4f5', color: '#909399', border: '#e9e9eb' }, // info\n]\n\nfunction showToast(msg: string) {\n const el = document.createElement('div')\n el.textContent = msg\n Object.assign(el.style, {\n position: 'fixed', top: '20px', left: '50%', transform: 'translateX(-50%)',\n padding: '10px 20px', borderRadius: '4px', fontSize: '13px', color: '#fff',\n background: '#f56c6c', zIndex: '99999', boxShadow: '0 4px 12px rgba(0,0,0,.15)',\n transition: 'opacity .3s', opacity: '1',\n })\n document.body.appendChild(el)\n setTimeout(() => { el.style.opacity = '0'; setTimeout(() => el.remove(), 300) }, 2500)\n}\n\n@safeCustomElement('qxs-text-fill')\nexport class QxsTextFill extends LitElement {\n private readonly _iconPlus = html`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"/><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"/></svg>`\n private readonly _iconRemove = html`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"/></svg>`\n\n static styles = css`\n :host { display: block; font-family: system-ui, -apple-system, \"PingFang SC\", \"Microsoft YaHei\", sans-serif; font-size: 12px; color: #5a5a5a; }\n *, ::before, ::after { box-sizing: border-box; }\n\n .preview { padding: 12px 0; }\n .preview .title { font-size: 14px; color: #303133; }\n .preview .rich-text { margin-top: 8px; }\n .preview .rich-text img { max-width: 100%; }\n .preview-answer { display: flex; flex-direction: column; margin-top: 12px; }\n .preview-answer .radio { margin-top: 8px; padding-left: 8px; display: flex; align-items: center; gap: 6px; }\n .preview-answer .order { color: #909399; }\n .preview-answer .correct { color: #67c23a; }\n .preview-answer .result-info { color: #909399; }\n\n .flex { display: flex; }\n .flex-items-center { display: flex; align-items: center; }\n .flex-items-start { display: flex; align-items: flex-start; }\n .flex-justify-end { display: flex; justify-content: flex-end; }\n .label { min-width: 60px; font-size: 13px; color: #606266; }\n\n textarea {\n border: 1px solid #dcdfe6; border-radius: 3px; padding: 5px 11px;\n font-size: 13px; font-family: inherit; width: 100%; resize: none; transition: border-color .2s;\n line-height: 1.5; display: block; box-sizing: border-box;\n }\n textarea:focus { border-color: #3D61E3; outline: none; }\n textarea:disabled { background: #f5f7fa; color: #c0c4cc; cursor: not-allowed; }\n .el-input { position: relative; display: block; }\n .el-input textarea { padding-bottom: 24px; }\n .el-input .char-counter {\n position: absolute; right: 12px; bottom: 8px;\n font-size: 12px; color: #909399; line-height: 1; pointer-events: none;\n }\n\n .answer-list { margin-top: 12px; }\n .answer-item { display: flex; align-items: center; margin-top: 6px; border-radius: 4px; }\n .answer-item .label { min-width: 60px; font-size: 13px; color: #909399; }\n .answer-item .input { flex: 1; max-width: 360px; position: relative; display: block; }\n .answer-item .input input {\n height: 32px; padding: 0 50px 0 8px;\n font-size: 13px; line-height: 32px;\n border: 1px solid #dcdfe6; border-radius: 3px; width: 100%;\n transition: border-color .2s; box-sizing: border-box;\n }\n .answer-item .input input:focus { border-color: #3D61E3; outline: none; }\n .answer-item .input input:disabled { background: #f5f7fa; color: #c0c4cc; cursor: not-allowed; }\n .answer-item .input .char-counter {\n position: absolute; right: 8px; top: 50%; transform: translateY(-50%);\n font-size: 12px; color: #909399; line-height: 1; pointer-events: none;\n }\n\n .answer-item .correct { margin: 0 10px; color: #909399; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }\n .answer-item .correct:hover { color: #3D61E3; }\n .answer-item .correct.is-correct { color: #67c23a; }\n .answer-item .correct input { width: 14px; height: 14px; cursor: pointer; accent-color: #3D61E3; }\n\n .answer-item .icon {\n margin-left: 6px; cursor: pointer; display: inline-flex;\n align-items: center; justify-content: center;\n width: 24px; height: 24px; border-radius: 4px;\n border: 1px solid #dcdfe6; background: #fff; color: #909399;\n transition: all 0.2s;\n }\n .answer-item .icon:hover { color: #3D61E3; border-color: #3D61E3; background: #ecf5ff; }\n .answer-item .icon.disabled { color: #e4e7ed; border-color: #e4e7ed; cursor: not-allowed; }\n\n .answer-item .link { margin-left: 8px; color: #3D61E3; cursor: pointer; font-size: 12px; white-space: nowrap; }\n .answer-item .link:hover { color: #2D4CB8; }\n\n .answer-item .link { color: #3D61E3; cursor: pointer; font-size: 12px; white-space: nowrap; background: none; border: none; padding: 0; margin: 0; font-family: inherit; }\n .answer-item .link:hover { color: #2D4CB8; }\n\n .el-link { color: #3D61E3; cursor: pointer; font-size: 12px; background: none; border: none; padding: 0; margin: 0; font-family: inherit; line-height: 1; }\n .el-link:hover { color: #2D4CB8; }\n .el-link.danger { color: #f56c6c; }\n\n .modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 9000; display: flex; align-items: center; justify-content: center; }\n .modal { background: #fff; border-radius: 6px; width: 520px; max-width: 90vw; box-shadow: 0 12px 32px rgba(0,0,0,.12); display: flex; flex-direction: column; }\n .modal-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px 12px; border-bottom: 1px solid #e4e7ed; }\n .modal-title { font-size: 14px; font-weight: 600; color: #303133; }\n .modal-close { background: none; border: none; font-size: 18px; cursor: pointer; color: #909399; padding: 0; line-height: 1; }\n .modal-close:hover { color: #3D61E3; }\n .modal-body { padding: 20px; }\n .modal-body textarea { min-height: 120px; }\n .modal-footer { display: flex; justify-content: flex-end; gap: 8px; padding: 12px 20px; border-top: 1px solid #e4e7ed; }\n .modal-footer button { padding: 6px 16px; font-size: 12px; border-radius: 3px; cursor: pointer; border: 1px solid #dcdfe6; background: #fff; color: #606266; }\n .modal-footer button:hover { color: #3D61E3; border-color: #a0cfff; }\n .modal-footer button.primary { background: #3D61E3; border-color: #3D61E3; color: #fff; }\n .modal-footer button.primary:hover { background: #2D4CB8; border-color: #2D4CB8; }\n `\n\n @property({ type: Number, attribute: 'order-index' }) orderIndex = 0\n @property({ type: String }) title = ''\n @property({ type: String, attribute: 'custom-id' }) customId = ''\n @property({ type: Boolean, attribute: 'is-edit' }) isEdit = false\n @property({ type: Boolean, attribute: 'is-save' }) isSave = false\n @property({ type: Boolean, attribute: 'is-set' }) isSet = false\n @property({ type: Boolean, attribute: 'is-key' }) isKey = false\n @property({ type: Boolean, attribute: 'show-action' }) showAction = true\n @property({ type: Boolean, attribute: 'show-add' }) showAdd = true\n @property({ type: Boolean, attribute: 'show-answer-setting' }) showAnswerSetting = false\n @property({ type: Boolean, attribute: 'show-analysis' }) showAnalysis = true\n @property({ type: String, attribute: 'rich-text-content' }) richTextContent = ''\n @property({ type: String }) analysis = ''\n @property({ type: Number, attribute: 'exam-answer-relation-type' }) examAnswerRelationType = 0\n @property({ type: String, attribute: 'exam-expand' }) examExpand = ''\n @property({ type: Object, attribute: 'exam-answer-setting' })\n examAnswerSetting: { isInOrder: boolean, isIgnoreCase: boolean, keywordCount: number } = { isInOrder: true, isIgnoreCase: true, keywordCount: 1 }\n @property({ type: Object })\n uploadImage: (file: File) => Promise<string> = async (file: File) => {\n return new Promise((resolve, reject) => {\n const reader = new FileReader()\n reader.onload = (e) => resolve(e.target?.result as string)\n reader.onerror = reject\n reader.readAsDataURL(file)\n })\n }\n\n @property({ type: Array, attribute: 'answer-list' }) answerList: any[] = []\n\n // 双向绑定支持\n @property({ type: String, attribute: 'model-value' }) modelValue = ''\n @property({ type: Boolean, attribute: 'use-model' }) useModel = false\n\n @state() private _answers: TextAnswer[] = [{ title: '', tag: '', showInput: false }]\n @state() private _title = ''\n @state() private _analysis = ''\n @state() private _isInOrder = true\n @state() private _isIgnoreCase = true\n @state() private _keywordCount = 1\n @state() private _correct = ''\n @state() private _showRichText = false\n @state() private _richText = ''\n\n private readonly TITLE_MAX = 200\n\n willUpdate(changed: Map<string, unknown>) {\n if (changed.has('isEdit') && this.isEdit) { this._syncProps() }\n if (!this.isEdit && (changed.has('title') || changed.has('answerList') || changed.has('analysis') || changed.has('examAnswerSetting') || changed.has('richTextContent') || changed.has('examExpand'))) {\n this._syncProps()\n }\n // 当外部 modelValue 变化时同步内部状态\n if (changed.has('modelValue') && this.useModel) {\n this._title = this.modelValue\n }\n }\n\n private _normalizeAnswerTitle(answer: any) {\n return String(answer?.title ?? answer?.answer ?? '')\n }\n\n private _normalizedAnswerList(source: any[] = []) {\n return (Array.isArray(source) ? source : []).map((answer: any) => ({\n ...answer,\n answerId: answer?.answerId ?? answer?.examAnswerId,\n title: this._normalizeAnswerTitle(answer),\n }))\n }\n\n private _syncProps() {\n this._title = this.title || ''\n this._analysis = this.analysis || ''\n if (this.answerList?.length) {\n this._answers = this._normalizedAnswerList(this.answerList).map((a: any) => ({\n title: a.title || '',\n tag: '',\n showInput: false,\n answerId: a.answerId,\n customAnswerId: a.customAnswerId,\n }))\n }\n else {\n this._answers = [{ title: '', tag: '', showInput: false }]\n }\n if (this.examAnswerSetting) {\n this._isInOrder = !!this.examAnswerSetting.isInOrder\n this._isIgnoreCase = !!this.examAnswerSetting.isIgnoreCase\n this._keywordCount = this.examAnswerSetting.keywordCount || 1\n }\n this._richText = this.richTextContent || ''\n this._showRichText = !!this.richTextContent\n this._correct = this.examExpand || ''\n }\n\n private _emit(name: string, detail?: unknown) {\n this.dispatchEvent(new CustomEvent(name, { bubbles: true, composed: true, detail: detail ?? null }))\n }\n\n private _onTitleInput(e: Event) {\n const el = e.target as HTMLTextAreaElement\n if (el.value.length > this.TITLE_MAX) { el.value = el.value.slice(0, this.TITLE_MAX) }\n this._title = el.value\n // 双向绑定:通知外部更新\n if (this.useModel) {\n this.dispatchEvent(new CustomEvent('update:modelValue', {\n bubbles: true,\n composed: true,\n detail: this._title,\n }))\n }\n }\n\n private _addTag(i: number) {\n const a = { ...this._answers[i] }\n if (a.tag) {\n a.title = a.title ? [a.title, a.tag].join(',') : a.tag\n a.tag = ''\n }\n a.showInput = false\n this._answers = this._answers.map((x, j) => j === i ? a : x)\n }\n\n private _closeTag(tag: string, i: number) {\n const a = { ...this._answers[i] }\n a.title = a.title.split(',').filter(t => t !== tag).join(',')\n this._answers = this._answers.map((x, j) => j === i ? a : x)\n }\n\n async toJSON(): Promise<any> {\n return new Promise((resolve, reject) => {\n const row = { customId: this.customId || undefined, answerType: 'text_fill', orderIndex: this.orderIndex }\n\n const title = this.isEdit ? this._title : this.title || ''\n const answers = this.isEdit ? this._answers : this._normalizedAnswerList(this.answerList || [])\n const analysis = this.isEdit ? this._analysis : this.analysis || ''\n const correct = this.isEdit ? this._correct : (this as any).examExpand || ''\n const keywordCount = this.isEdit ? this._keywordCount : this.examAnswerSetting?.keywordCount || 1\n const isInOrder = this.isEdit ? this._isInOrder : this.examAnswerSetting?.isInOrder ?? true\n const isIgnoreCase = this.isEdit ? this._isIgnoreCase : this.examAnswerSetting?.isIgnoreCase ?? true\n const showRichText = this.isEdit ? this._showRichText : !!this.richTextContent\n const richText = this.isEdit ? this._richText : this.richTextContent || ''\n\n if (!title) {\n reject(new SubjectError('题目标题不能为空!', 'EMPTY_TITLE', 'title', row))\n return\n }\n if (keywordCount || correct) {\n if (!keywordCount) {\n reject(new SubjectError('请完善答题设置!', 'NO_KEYWORD_COUNT', 'keywordCount', row))\n return\n }\n if (!correct) {\n reject(new SubjectError('请输入问题正确答案!', 'NO_CORRECT_ANSWER', 'correct', row))\n return\n }\n if (answers.length !== keywordCount) {\n reject(new SubjectError('关键词个数设置有误!', 'KEYWORD_COUNT_MISMATCH', 'answers', row))\n return\n }\n const msg: string[] = []\n answers.forEach((item: any, i: number) => {\n if (!this._normalizeAnswerTitle(item)) { msg.push(`关键词${i + 1}未设置`) }\n })\n if (msg.length) {\n reject(new SubjectError(msg.join(','), 'KEYWORD_EMPTY', 'answers', row))\n return\n }\n }\n const result: any = {\n answerType: SubjectType.TEXT_FILL,\n title,\n answers: answers\n .filter((a: any) => this._normalizeAnswerTitle(a))\n .map((a: any) => ({\n title: this._normalizeAnswerTitle(a),\n ...(a.answerId ? { answerId: a.answerId } : {}),\n ...(a.customAnswerId ? { customAnswerId: a.customAnswerId } : {}),\n })),\n analysis,\n isSetCorrectAnswer: !!correct,\n isKey: this.isKey,\n examExpand: correct,\n examAnswerSettingBO: { isIgnoreCase, isInOrder, keywordCount },\n examRichTextContent: showRichText ? richText : '',\n }\n if (this.customId) { result.customId = this.customId }\n resolve(result)\n })\n }\n\n private _addAnswer() {\n if (this.isSave) { return }\n this._answers = [...this._answers, { title: '', tag: '', showInput: false }]\n }\n\n private _deleteAnswer(index: number) {\n if (this._answers.length < 2 || this.isSave) { return }\n this._answers = this._answers.filter((_, i) => i !== index)\n }\n\n private async _save(e?: Event) {\n e?.stopImmediatePropagation()\n try {\n const data = await this.toJSON()\n this._emit('save', data)\n }\n catch (err: any) {\n showToast(err.message)\n }\n }\n\n validate(): SubjectError[] {\n const errors: SubjectError[] = []\n const row = { customId: this.customId || undefined, answerType: 'text_fill', orderIndex: this.orderIndex }\n\n const title = this.isEdit ? this._title : this.title || ''\n const answers = this.isEdit ? this._answers : this._normalizedAnswerList(this.answerList || [])\n const correct = this.isEdit ? this._correct : (this as any).examExpand || ''\n const keywordCount = this.isEdit ? this._keywordCount : this.examAnswerSetting?.keywordCount || 1\n\n if (!title) {\n errors.push(new SubjectError('题目标题不能为空!', 'EMPTY_TITLE', 'title', row))\n }\n if (keywordCount || correct) {\n if (!keywordCount) {\n errors.push(new SubjectError('请完善答题设置!', 'NO_KEYWORD_COUNT', 'keywordCount', row))\n }\n if (!correct) {\n errors.push(new SubjectError('请输入问题正确答案!', 'NO_CORRECT_ANSWER', 'correct', row))\n }\n if (answers.length !== keywordCount) {\n errors.push(new SubjectError('关键词个数设置有误!', 'KEYWORD_COUNT_MISMATCH', 'answers', row))\n }\n answers.forEach((item: any, i: number) => {\n if (!this._normalizeAnswerTitle(item)) {\n errors.push(new SubjectError(`关键词${i + 1}未设置`, 'KEYWORD_EMPTY', 'answers', row))\n }\n })\n }\n\n return errors\n }\n\n private _renderPreview() {\n const previewAnswers = this.isEdit ? this._answers : this._normalizedAnswerList(this.answerList || [])\n const previewCorrect = this.isEdit ? this._correct : (this.examExpand || '')\n return html`\n <div class=\"preview\">\n <span class=\"title\">${this.orderIndex + 1}.${this.title}(问答题)</span>\n ${this.richTextContent ? html`<div class=\"rich-text\" .innerHTML=${this.richTextContent}></div>` : ''}\n ${previewAnswers.some(a => a.title)\n ? html`\n <div style=\"margin-top:8px;color:#a8abb2\">\n ${previewAnswers.map((a, i) => a.title\n ? html`\n <span style=\"margin-right:10px\">关键词${i + 1}: ${a.title}</span>\n `\n : '')}\n </div>\n `\n : ''}\n ${previewCorrect ? html`<div style=\"margin-top:8px;color:#a8abb2\">正确答案:${previewCorrect}</div>` : ''}\n ${this.analysis ? html`<div style=\"color:#909399;font-size:12px;margin-top:8px\">解析: ${this.analysis}</div>` : ''}\n </div>\n `\n }\n\n private _renderEdit() {\n return html`\n <div class=\"flex-items-start\">\n <div class=\"label\"><span>题目:</span></div>\n <div style=\"flex:1\">\n <div class=\"el-input\">\n <textarea rows=\"2\" .value=${this._title} ?disabled=${this.isSave}\n maxlength=${this.TITLE_MAX}\n @input=${(e: Event) => this._onTitleInput(e)}\n placeholder=\"【问答题】请输入问题\"></textarea>\n <span class=\"char-counter\">${this._title.length}/${this.TITLE_MAX}</span>\n </div>\n </div>\n </div>\n\n ${this.showAnswerSetting\n ? html`\n <div class=\"flex-items-start\" style=\"margin-top:12px\">\n <div class=\"label\"><span>答题设置:</span></div>\n <div style=\"flex:1;display:flex;align-items:center;flex-wrap:wrap;gap:8px\">\n <span style=\"font-size:13px;color:#606266\">共答对</span>\n <input type=\"number\" style=\"width:60px;height:24px;border:1px solid #dcdfe6;border-radius:3px;padding:0 8px;font-size:13px\"\n .value=${String(this._keywordCount)} min=\"1\"\n @change=${(e: Event) => { this._keywordCount = Number((e.target as HTMLInputElement).value) }} />\n <span style=\"font-size:13px;color:#606266\">个关键词,算是正确的</span>\n <label style=\"display:inline-flex;align-items:center;gap:4px;cursor:pointer;font-size:12px;color:#606266\">\n <input type=\"checkbox\" .checked=${this._isInOrder}\n @change=${(e: Event) => { this._isInOrder = (e.target as HTMLInputElement).checked }} />\n 答案不分顺序\n </label>\n <label style=\"display:inline-flex;align-items:center;gap:4px;cursor:pointer;font-size:12px;color:#606266\">\n <input type=\"checkbox\" .checked=${this._isIgnoreCase}\n @change=${(e: Event) => { this._isIgnoreCase = (e.target as HTMLInputElement).checked }} />\n 忽略大小写\n </label>\n </div>\n </div>\n `\n : ''}\n\n <div class=\"flex-items-start\" style=\"margin-top:12px\">\n <div class=\"label\"><span>答案:</span></div>\n <div style=\"flex:1\">\n <div class=\"el-input\">\n <textarea rows=\"2\" .value=${this._correct} ?disabled=${this.isSave}\n maxlength=\"200\"\n @input=${(e: Event) => { this._correct = (e.target as HTMLTextAreaElement).value }}\n placeholder=\"请输入正确答案\"></textarea>\n <span class=\"char-counter\">${this._correct.length}/200</span>\n </div>\n </div>\n </div>\n\n <div class=\"answer-list\" style=\"margin-top:12px\">\n <span style=\"padding-left:60px;font-size:12px;color:#909399\">*如遇包含特殊字符的关键词,需添加多个同义词,例:'CO₂'需添加同义词'CO2'</span>\n ${this._answers.map((a, i) => html`\n <div class=\"answer-item\">\n <span class=\"label\">关键词${i + 1}:</span>\n <div class=\"answer-tags\" style=\"display:flex;flex-wrap:wrap;gap:5px;align-items:center;flex:1;max-width:360px\">\n ${a.title.split(',').filter(Boolean).map((tag) => {\n const c = TAG_COLORS[i % TAG_COLORS.length]; return html`\n <span style=\"display:inline-flex;align-items:center;background:${c.bg};color:${c.color};border:1px solid ${c.border};border-radius:3px;padding:2px 8px;font-size:12px;line-height:16px\">\n ${tag}\n ${!this.isSave ? html`<span style=\"cursor:pointer;margin-left:4px;color:#909399\" @click=${() => this._closeTag(tag, i)}>×</span>` : ''}\n </span>\n `\n })}\n ${!this.isSave\n ? html`\n ${a.showInput\n ? html`\n <input type=\"text\" style=\"width:80px;height:24px;border:1px solid #dcdfe6;border-radius:3px;padding:0 8px;font-size:12px\"\n @keydown=${(e: KeyboardEvent) => {\n if (e.key === 'Enter') { this._addTag(i) }\n }}\n @input=${(e: Event) => { a.tag = (e.target as HTMLInputElement).value }}\n @blur=${() => this._addTag(i)} />\n <button class=\"el-link\" @click=${() => this._addTag(i)}>确认</button>\n `\n : html`\n <button class=\"link\" @click=${() => { this._answers = this._answers.map((x, j) => j === i ? { ...x, showInput: true } : x); this.updateComplete.then(() => { (this.shadowRoot?.querySelector(`input[style*=\"width:80px\"]`) as HTMLInputElement)?.focus() }) }}>\n ${a.title ? '添加同义词' : '添加关键词'}\n </button>\n `}\n `\n : ''}\n </div>\n <span class=\"icon ${this.isSave ? 'disabled' : ''}\" @click=${() => this._addAnswer()}>${this._iconPlus}</span>\n <span class=\"icon ${this.isSave || this._answers.length < 2 ? 'disabled' : ''}\" @click=${() => this._deleteAnswer(i)}>${this._iconRemove}</span>\n </div>\n `)}\n </div>\n\n ${this._showRichText\n ? html`\n <div class=\"flex-items-start\" style=\"margin-top:12px\">\n <div class=\"label\"><span>富文本:</span></div>\n <div style=\"flex:1\">\n <qxs-blocksuite-editor\n .content=${this._richText}\n .uploadImage=${this.uploadImage}\n ?is-edit=${true}\n ></qxs-blocksuite-editor>\n ${!this.showAction\n ? html`<div class=\"flex-justify-end\" style=\"margin-top:8px\"><span class=\"el-link danger\" @click=${() => { this._showRichText = false; this._richText = '' }}>删除富文本</span></div>`\n : ''}\n </div>\n </div>\n `\n : ''}\n\n ${this.showAnalysis\n ? html`\n <div class=\"flex-items-start\" style=\"margin-top:12px\">\n <div class=\"label\"><span>解析:</span></div>\n <div style=\"flex:1\">\n <div class=\"el-input\">\n <textarea rows=\"2\" .value=${this._analysis}\n @input=${(e: Event) => { this._analysis = (e.target as HTMLTextAreaElement).value }}\n placeholder=\"请输入题目解析\"></textarea>\n </div>\n </div>\n </div>\n `\n : ''}\n `\n }\n\n render() {\n return html`\n <qxs-subject-layout .showEdit=${this.isEdit}>\n <div slot=\"preview\">${this._renderPreview()}</div>\n <div slot=\"edit\">${this._renderEdit()}</div>\n ${this.showAction\n ? html`\n <qxs-subject-action\n .isEdit=${this.isEdit}\n .isSet=${this.isSet}\n .showAdd=${this.showAdd}\n .showRichText=${this._showRichText}\n exam-answer-relation-type=${this.examAnswerRelationType}\n @delete=${() => this._emit('delete')}\n @save=${this._save}\n @edit=${() => this._emit('edit')}\n @add=${(e: CustomEvent) => this._emit('add', e.detail)}\n @set-key=${(e: CustomEvent) => { this._emit('set-key', e.detail) }}\n @on-show-rich-text=${() => {\n this._showRichText = !this._showRichText\n if (!this._showRichText) {\n this._richText = ''\n }\n }}\n ></qxs-subject-action>\n `\n : ''}\n </qxs-subject-layout>\n `\n }\n}\n\nexport function register() {}\n"],"names":["TAG_COLORS","bg","color","border","QxsTextFill","LitElement","constructor","super","arguments","this","_iconPlus","html","_iconRemove","orderIndex","title","customId","isEdit","isSave","isSet","isKey","showAction","showAdd","showAnswerSetting","showAnalysis","richTextContent","analysis","examAnswerRelationType","examExpand","examAnswerSetting","isInOrder","isIgnoreCase","keywordCount","uploadImage","async","Promise","resolve","reject","reader","FileReader","onload","e","target","result","onerror","readAsDataURL","file","answerList","modelValue","useModel","_answers","tag","showInput","_title","_analysis","_isInOrder","_isIgnoreCase","_keywordCount","_correct","_showRichText","_richText","TITLE_MAX","willUpdate","changed","has","_syncProps","_normalizeAnswerTitle","answer","String","_normalizedAnswerList","source","length","undefined","Array","isArray","map","answerId","examAnswerId","a","customAnswerId","_emit","name","detail","dispatchEvent","CustomEvent","bubbles","composed","_onTitleInput","el","value","slice","_addTag","i","join","x","j","_closeTag","split","filter","t","toJSON","row","answerType","answers","correct","showRichText","richText","SubjectError","msg","forEach","item","push","SubjectType","TEXT_FILL","isSetCorrectAnswer","examAnswerSettingBO","examRichTextContent","_addAnswer","_deleteAnswer","index","_","_save","stopImmediatePropagation","data","err","document","createElement","textContent","Object","assign","style","position","top","left","transform","padding","borderRadius","fontSize","background","zIndex","boxShadow","transition","opacity","body","appendChild","setTimeout","remove","showToast","message","validate","errors","_renderPreview","previewAnswers","previewCorrect","some","_renderEdit","Number","checked","Boolean","c","key","updateComplete","then","shadowRoot","querySelector","focus","render","styles","css","__decorateClass","property","type","attribute","prototype","state","safeCustomElement"],"mappings":"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"}
1
+ {"version":3,"file":"text-fill.mjs","sources":["../../../../packages/components-wc/src/subject/text-fill.ts"],"sourcesContent":["import { css, html, LitElement } from 'lit'\nimport { property, state } from 'lit/decorators.js'\nimport { safeCustomElement } from '../base/define'\nimport { type Category, type Resource, SubjectError, type TagItem } from './single'\nimport { SubjectType } from './types'\n\ninterface TextAnswer {\n title: string\n tag: string\n showInput: boolean\n answerId?: string | number\n customAnswerId?: string | number\n}\n\ninterface TextAnswerSetting {\n isInOrder?: boolean\n isIgnoreCase?: boolean\n keywordCount?: number\n}\n\nconst TAG_COLORS = [\n { bg: '#ecf5ff', color: '#3D61E3', border: '#d9ecff' },\n { bg: '#f0f9eb', color: '#67c23a', border: '#c2e7b0' },\n { bg: '#fdf6ec', color: '#e6a23c', border: '#faecd8' },\n { bg: '#fef0f0', color: '#f56c6c', border: '#fde2e2' },\n { bg: '#f4f4f5', color: '#909399', border: '#e9e9eb' },\n]\n\nfunction showToast(msg: string) {\n const el = document.createElement('div')\n el.textContent = msg\n Object.assign(el.style, {\n position: 'fixed', top: '20px', left: '50%', transform: 'translateX(-50%)',\n padding: '10px 20px', borderRadius: '4px', fontSize: '13px', color: '#fff',\n background: '#f56c6c', zIndex: '99999', boxShadow: '0 4px 12px rgba(0,0,0,.15)',\n transition: 'opacity .3s', opacity: '1',\n })\n document.body.appendChild(el)\n setTimeout(() => { el.style.opacity = '0'; setTimeout(() => el.remove(), 300) }, 2500)\n}\n\n@safeCustomElement('qxs-text-fill')\nexport class QxsTextFill extends LitElement {\n private readonly _iconPlus = html`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"/><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"/></svg>`\n private readonly _iconRemove = html`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"/></svg>`\n\n static styles = css`\n :host { display: block; font-family: system-ui, -apple-system, \"PingFang SC\", \"Microsoft YaHei\", sans-serif; font-size: 12px; color: #5a5a5a; }\n *, ::before, ::after { box-sizing: border-box; }\n\n .preview { padding: 12px 0; }\n .preview .title { font-size: 14px; color: #303133; }\n .preview .rich-text { margin-top: 8px; }\n .preview .rich-text img { max-width: 100%; }\n\n .flex { display: flex; }\n .flex-items-center { display: flex; align-items: center; }\n .flex-items-start { display: flex; align-items: flex-start; }\n .flex-justify-end { display: flex; justify-content: flex-end; }\n .label { min-width: 60px; font-size: 13px; color: #606266; }\n\n textarea {\n border: 1px solid #dcdfe6; border-radius: 3px; padding: 5px 11px;\n font-size: 13px; font-family: inherit; width: 100%; resize: none; transition: border-color .2s;\n line-height: 1.5; display: block; box-sizing: border-box;\n }\n textarea:focus { border-color: #3D61E3; outline: none; }\n textarea:disabled { background: #f5f7fa; color: #c0c4cc; cursor: not-allowed; }\n .el-input { position: relative; display: block; }\n .el-input textarea { padding-bottom: 24px; }\n .el-input .char-counter {\n position: absolute; right: 12px; bottom: 8px;\n font-size: 12px; color: #909399; line-height: 1; pointer-events: none;\n }\n\n .answer-list { margin-top: 12px; }\n .answer-item { display: flex; align-items: center; margin-top: 6px; border-radius: 4px; }\n .answer-item .label { min-width: 60px; font-size: 13px; color: #909399; }\n .answer-item .icon {\n margin-left: 6px; cursor: pointer; display: inline-flex;\n align-items: center; justify-content: center;\n width: 24px; height: 24px; border-radius: 4px;\n border: 1px solid #dcdfe6; background: #fff; color: #909399;\n transition: all 0.2s;\n }\n .answer-item .icon:hover { color: #3D61E3; border-color: #3D61E3; background: #ecf5ff; }\n .answer-item .icon.disabled { color: #e4e7ed; border-color: #e4e7ed; cursor: not-allowed; }\n .answer-item .link { color: #3D61E3; cursor: pointer; font-size: 12px; white-space: nowrap; background: none; border: none; padding: 0; margin: 0; font-family: inherit; }\n .answer-item .link:hover { color: #2D4CB8; }\n\n .el-link { color: #3D61E3; cursor: pointer; font-size: 12px; background: none; border: none; padding: 0; margin: 0; font-family: inherit; line-height: 1; }\n .el-link:hover { color: #2D4CB8; }\n .el-link.danger { color: #f56c6c; }\n\n .section-row { margin-top: 12px; }\n .value-text { font-size: 13px; color: #606266; white-space: pre-wrap; }\n .tag-list { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; min-height: 32px; }\n .tag-item {\n display: inline-flex; align-items: center; gap: 4px;\n padding: 4px 8px; font-size: 12px; line-height: 1;\n color: #3D61E3; background: #ecf5ff; border: 1px solid #d9ecff; border-radius: 4px;\n }\n .tag-item .close { cursor: pointer; color: #909399; }\n .tag-item .close:hover { color: #f56c6c; }\n .tag-hint { font-size: 12px; color: #909399; }\n .el-select {\n width: 150px; height: 32px; border: 1px solid #dcdfe6; border-radius: 3px;\n padding: 0 8px; font-size: 13px; background: #fff; appearance: none;\n background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c0c4cc' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E\");\n background-repeat: no-repeat; background-position: right 8px center;\n }\n .resource-summary { font-size: 12px; color: #606266; }\n .resource-thumbs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 8px; }\n .resource-thumb {\n width: 72px; height: 72px; object-fit: cover; border-radius: 6px;\n border: 1px solid #e4e7ed; background: #f5f7fa;\n }\n `\n\n @property({ type: Number, attribute: 'order-index' }) 'order-index' = 0\n @property({ type: String }) title = ''\n @property({ type: String, attribute: 'custom-id' }) 'custom-id' = ''\n @property({ type: Boolean, attribute: 'is-edit' }) 'is-edit' = false\n @property({ type: Boolean, attribute: 'is-save' }) 'is-save' = false\n @property({ type: Boolean, attribute: 'is-set' }) 'is-set' = false\n @property({ type: Boolean, attribute: 'is-key' }) 'is-key' = false\n @property({ type: Boolean, attribute: 'show-action' }) 'show-action' = true\n @property({ type: Boolean, attribute: 'show-add' }) 'show-add' = true\n @property({ type: Boolean, attribute: 'show-answer-setting' }) 'show-answer-setting' = false\n @property({ type: Boolean, attribute: 'show-analysis' }) 'show-analysis' = true\n @property({ type: String, attribute: 'rich-text-content' }) 'rich-text-content' = ''\n @property({ type: String }) analysis = ''\n @property({ type: Number, attribute: 'exam-answer-relation-type' }) 'exam-answer-relation-type' = 0\n @property({ type: String, attribute: 'exam-expand' }) 'exam-expand' = ''\n @property({ type: Number, attribute: 'exam-id' }) 'exam-id' = 0\n @property({ type: String, attribute: 'category-id' }) 'category-id' = ''\n @property({ type: Object, attribute: 'exam-answer-setting' })\n 'exam-answer-setting': TextAnswerSetting = { isInOrder: false, isIgnoreCase: true }\n\n @property({ type: Object, attribute: 'upload-image' })\n 'upload-image': (file: File) => Promise<string> = async (file: File) => {\n return new Promise((resolve, reject) => {\n const reader = new FileReader()\n reader.onload = e => resolve(e.target?.result as string)\n reader.onerror = reject\n reader.readAsDataURL(file)\n })\n }\n\n @property({ type: Array, attribute: 'answer-list' }) 'answer-list': any[] = []\n @property({ type: Array, attribute: 'tag-list' }) 'tag-list': TagItem[] = []\n @property({ type: Array, attribute: 'category-list' }) 'category-list': Category[] = []\n @property({ type: Array, attribute: 'resource-list' }) 'resource-list': Resource[] = []\n @property({ type: Boolean, attribute: 'show-tag' }) 'show-tag' = false\n @property({ type: Boolean, attribute: 'show-category' }) 'show-category' = false\n @property({ type: Boolean, attribute: 'show-resource' }) 'show-resource' = false\n @property({ type: Object, attribute: 'search-handler' }) 'search-handler'?: (query: string, answerType: number) => Promise<any[]>\n\n @property({ type: String, attribute: 'model-value' }) 'model-value' = ''\n @property({ type: Boolean, attribute: 'use-model' }) 'use-model' = false\n\n @state() private _answers: TextAnswer[] = [{ title: '', tag: '', showInput: false }]\n @state() private _title = ''\n @state() private _analysis = ''\n @state() private _isInOrder = false\n @state() private _isIgnoreCase = true\n @state() private _keywordCount: number | null = null\n @state() private _correct = ''\n @state() private _showRichText = false\n @state() private _richText = ''\n @state() private _selectedTagList: TagItem[] = []\n @state() private _categoryId = ''\n\n private readonly TITLE_MAX = 200\n\n willUpdate(changed: Map<string, unknown>) {\n if (changed.has('is-edit') && this['is-edit']) { this._syncProps() }\n if (!this['is-edit'] && (changed.has('title') || changed.has('answer-list') || changed.has('analysis') || changed.has('exam-answer-setting') || changed.has('rich-text-content') || changed.has('exam-expand') || changed.has('tag-list') || changed.has('category-id'))) {\n this._syncProps()\n }\n if (changed.has('model-value') && this['use-model']) {\n this._title = this['model-value']\n }\n if (changed.has('tag-list')) {\n this._selectedTagList = Array.isArray(this['tag-list']) ? this['tag-list'].map(item => ({ ...item })) : []\n }\n if (changed.has('category-id')) {\n this._categoryId = this['category-id'] ? String(this['category-id']) : ''\n }\n }\n\n private _normalizeAnswerTitle(answer: any) {\n return String(answer?.title ?? answer?.answer ?? '')\n }\n\n private _normalizedAnswerList(source: any[] = []) {\n return (Array.isArray(source) ? source : []).map((answer: any) => ({\n ...answer,\n answerId: answer?.answerId ?? answer?.examAnswerId,\n title: this._normalizeAnswerTitle(answer),\n }))\n }\n\n private _filledAnswers(source: any[] = []) {\n return source.filter(answer => this._normalizeAnswerTitle(answer))\n }\n\n private _readKeywordCount(setting?: TextAnswerSetting | null) {\n if (!setting || setting.keywordCount === undefined || setting.keywordCount === null || setting.keywordCount === '') {\n return null\n }\n return Number(setting.keywordCount)\n }\n\n private _syncProps() {\n this._title = this.title || ''\n this._analysis = this.analysis || ''\n if (this['answer-list']?.length) {\n this._answers = this._normalizedAnswerList(this['answer-list']).map((answer: any) => ({\n title: answer.title || '',\n tag: '',\n showInput: false,\n answerId: answer.answerId,\n customAnswerId: answer.customAnswerId,\n }))\n }\n else {\n this._answers = [{ title: '', tag: '', showInput: false }]\n }\n this._isInOrder = !!this['exam-answer-setting']?.isInOrder\n this._isIgnoreCase = this['exam-answer-setting']?.isIgnoreCase ?? true\n this._keywordCount = this._readKeywordCount(this['exam-answer-setting'])\n this._richText = this['rich-text-content'] || ''\n this._showRichText = !!this['rich-text-content']\n this._correct = this['exam-expand'] || ''\n this._selectedTagList = Array.isArray(this['tag-list']) ? this['tag-list'].map(item => ({ ...item })) : []\n this._categoryId = this['category-id'] ? String(this['category-id']) : ''\n }\n\n private _emit(name: string, detail?: unknown) {\n this.dispatchEvent(new CustomEvent(name, { bubbles: true, composed: true, detail: detail ?? null }))\n }\n\n private _onTitleInput(e: Event) {\n const el = e.target as HTMLTextAreaElement\n if (el.value.length > this.TITLE_MAX) { el.value = el.value.slice(0, this.TITLE_MAX) }\n this._title = el.value\n if (this['use-model']) {\n this.dispatchEvent(new CustomEvent('update:modelValue', {\n bubbles: true,\n composed: true,\n detail: this._title,\n }))\n }\n }\n\n private _addTag(index: number) {\n const answer = { ...this._answers[index] }\n if (answer.tag) {\n answer.title = answer.title ? [answer.title, answer.tag].join(',') : answer.tag\n answer.tag = ''\n }\n answer.showInput = false\n this._answers = this._answers.map((item, currentIndex) => currentIndex === index ? answer : item)\n }\n\n private _closeTag(tag: string, index: number) {\n const answer = { ...this._answers[index] }\n answer.title = answer.title.split(',').filter(item => item !== tag).join(',')\n this._answers = this._answers.map((item, currentIndex) => currentIndex === index ? answer : item)\n }\n\n private _addAnswer() {\n if (this['is-save']) { return }\n this._answers = [...this._answers, { title: '', tag: '', showInput: false }]\n }\n\n private _deleteAnswer(index: number) {\n if (this._answers.length < 2 || this['is-save']) { return }\n this._answers = this._answers.filter((_, currentIndex) => currentIndex !== index)\n }\n\n private _removeTag(tagId: string | number) {\n this._selectedTagList = this._selectedTagList.filter(item => String(item.tagId) !== String(tagId))\n this._emit('tag-change', {\n value: this._selectedTagList,\n customId: this['custom-id'] || '',\n examId: this['exam-id'] || 0,\n })\n }\n\n private _chooseTag() {\n this._emit('choose-tag', {\n value: this._selectedTagList,\n customId: this['custom-id'] || '',\n examId: this['exam-id'] || 0,\n })\n }\n\n private _onCategoryChange(value: string) {\n this._categoryId = value\n this._emit('category-change', {\n value,\n customId: this['custom-id'] || '',\n examId: this['exam-id'] || 0,\n })\n }\n\n private _imageResources() {\n return (this['resource-list'] || [])\n .filter(item => item.resourceType === 1)\n .map(item => item.resource.middle || item.resource.url)\n .filter(Boolean) as string[]\n }\n\n private _videoResource() {\n return (this['resource-list'] || []).find(item => item.resourceType === 2)?.resource || null\n }\n\n private _categoryLabel() {\n const matched = this['category-list'].find((item: any) => String(item.categoryId) === String(this._categoryId))\n return matched?.title || matched?.categoryName || this._categoryId || '未选择分类'\n }\n\n private _validateState(options: {\n row: any\n title: string\n answers: TextAnswer[]\n correct: string\n keywordCount: number | null\n }) {\n const { row, title, answers, correct, keywordCount } = options\n if (!title) {\n return new SubjectError('题目标题不能为空!', 'EMPTY_TITLE', 'title', row)\n }\n\n const filledAnswers = this._filledAnswers(answers)\n const shouldValidateAnswers = !!correct || keywordCount !== null || filledAnswers.length > 0\n\n if (!shouldValidateAnswers) { return null }\n if (!correct) {\n return new SubjectError('请输入问题正确答案!', 'NO_CORRECT_ANSWER', 'correct', row)\n }\n if (!keywordCount || keywordCount < 1) {\n return new SubjectError('请完善答题设置!', 'NO_KEYWORD_COUNT', 'keywordCount', row)\n }\n if (!filledAnswers.length) {\n return new SubjectError('请设置关键词', 'NO_KEYWORDS', 'answers', row)\n }\n if (keywordCount > filledAnswers.length) {\n return new SubjectError('关键词个数设置有误!', 'KEYWORD_COUNT_MISMATCH', 'answers', row)\n }\n return null\n }\n\n async toJSON(): Promise<any> {\n return new Promise((resolve, reject) => {\n const row = { customId: this['custom-id'] || undefined, answerType: 'text_fill', orderIndex: this['order-index'] }\n\n const title = this['is-edit'] ? this._title : this.title || ''\n const answers = this['is-edit'] ? this._answers : this._normalizedAnswerList(this['answer-list'] || [])\n const analysis = this['is-edit'] ? this._analysis : this.analysis || ''\n const correct = this['is-edit'] ? this._correct : this['exam-expand'] || ''\n const keywordCount = this['is-edit'] ? this._keywordCount : this._readKeywordCount(this['exam-answer-setting'])\n const isInOrder = this['is-edit'] ? this._isInOrder : (this['exam-answer-setting']?.isInOrder ?? false)\n const isIgnoreCase = this['is-edit'] ? this._isIgnoreCase : (this['exam-answer-setting']?.isIgnoreCase ?? true)\n const showRichText = this['is-edit'] ? this._showRichText : !!this['rich-text-content']\n const richText = this['is-edit'] ? this._richText : this['rich-text-content'] || ''\n const selectedTagList = this._selectedTagList || []\n\n const validationError = this._validateState({ row, title, answers, correct, keywordCount })\n if (validationError) {\n reject(validationError)\n return\n }\n\n const result: any = {\n answerType: SubjectType.TEXT_FILL,\n title,\n answers: this._filledAnswers(answers).map((answer: any) => ({\n title: this._normalizeAnswerTitle(answer),\n ...(answer.answerId ? { answerId: answer.answerId } : {}),\n ...(answer.customAnswerId ? { customAnswerId: answer.customAnswerId } : {}),\n })),\n analysis,\n isSetCorrectAnswer: !!correct,\n isKey: this['is-key'],\n examExpand: correct,\n examAnswerSettingBO: {\n isIgnoreCase,\n isInOrder,\n ...(keywordCount !== null ? { keywordCount } : {}),\n },\n examRichTextContent: showRichText ? richText : '',\n categoryId: this._categoryId || '',\n memberTagInfo: selectedTagList,\n tagInfos: selectedTagList,\n resourceList: this['resource-list'] || [],\n examResourceBOList: this['resource-list'] || [],\n }\n if (this['custom-id']) { result.customId = this['custom-id'] }\n resolve(result)\n })\n }\n\n private async _save(e?: Event) {\n e?.stopImmediatePropagation()\n try {\n const data = await this.toJSON()\n this._emit('save', data)\n }\n catch (err: any) {\n showToast(err.message)\n }\n }\n\n validate(): SubjectError[] {\n const row = { customId: this['custom-id'] || undefined, answerType: 'text_fill', orderIndex: this['order-index'] }\n const title = this['is-edit'] ? this._title : this.title || ''\n const answers = this['is-edit'] ? this._answers : this._normalizedAnswerList(this['answer-list'] || [])\n const correct = this['is-edit'] ? this._correct : this['exam-expand'] || ''\n const keywordCount = this['is-edit'] ? this._keywordCount : this._readKeywordCount(this['exam-answer-setting'])\n const validationError = this._validateState({ row, title, answers, correct, keywordCount })\n return validationError ? [validationError] : []\n }\n\n private _renderPreview() {\n const previewAnswers = this['is-edit'] ? this._answers : this._normalizedAnswerList(this['answer-list'] || [])\n const previewCorrect = this['is-edit'] ? this._correct : (this['exam-expand'] || '')\n return html`\n <div class=\"preview\">\n <span class=\"title\">${this['order-index'] + 1}.${this.title}(问答题)</span>\n ${this['rich-text-content'] ? html`<div class=\"rich-text\" .innerHTML=${this['rich-text-content']}></div>` : ''}\n ${this._filledAnswers(previewAnswers).length\n ? html`\n <div style=\"margin-top:8px;color:#a8abb2\">\n ${this._filledAnswers(previewAnswers).map((answer, index) => html`<span style=\"margin-right:10px\">关键词${index + 1}: ${this._normalizeAnswerTitle(answer)}</span>`)}\n </div>\n `\n : ''}\n ${previewCorrect ? html`<div style=\"margin-top:8px;color:#a8abb2\">正确答案:${previewCorrect}</div>` : ''}\n ${this.analysis ? html`<div style=\"color:#909399;font-size:12px;margin-top:8px\">解析: ${this.analysis}</div>` : ''}\n ${this['show-category'] && this._categoryId\n ? html`<div class=\"section-row\"><span class=\"value-text\">分类:${this._categoryLabel()}</span></div>`\n : ''}\n ${this['show-tag'] && this._selectedTagList.length\n ? html`\n <div class=\"section-row\">\n <span class=\"value-text\">标签/关键信息:</span>\n <div class=\"tag-list\" style=\"margin-top:6px\">\n ${this._selectedTagList.map(item => html`<span class=\"tag-item\">${item.tagName}</span>`)}\n </div>\n </div>\n `\n : ''}\n ${this._renderResourceSection()}\n </div>\n `\n }\n\n private _renderTagSection() {\n if (!this['show-tag']) { return '' }\n return html`\n <div class=\"flex-items-start section-row\">\n <div class=\"label\"><span>标签:</span></div>\n <div style=\"flex:1\">\n <div class=\"tag-list\">\n ${this._selectedTagList.length\n ? this._selectedTagList.map(item => html`\n <span class=\"tag-item\">\n ${item.tagName}\n ${!this['is-save'] ? html`<span class=\"close\" @click=${() => this._removeTag(item.tagId)}>×</span>` : ''}\n </span>\n `)\n : html`<span class=\"tag-hint\">暂无标签/关键信息</span>`}\n </div>\n ${this['is-edit'] && !this['is-save']\n ? html`<div style=\"margin-top:8px\"><span class=\"el-link\" @click=${() => this._chooseTag()}>选择</span></div>`\n : ''}\n </div>\n </div>\n `\n }\n\n private _renderCategorySection() {\n if (!this['show-category']) { return '' }\n return html`\n <div class=\"flex-items-start section-row\">\n <div class=\"label\"><span>分类:</span></div>\n <div style=\"flex:1\">\n ${this['is-edit']\n ? html`\n <select class=\"el-select\" .value=${String(this._categoryId)} ?disabled=${this['is-save']}\n @change=${(e: Event) => this._onCategoryChange((e.target as HTMLSelectElement).value)}>\n <option value=\"\">选择分类</option>\n ${this['category-list'].map((item: any) => html`\n <option value=${String(item.categoryId)} ?selected=${String(item.categoryId) === String(this._categoryId)}>${item.title || item.categoryName}</option>\n `)}\n </select>\n `\n : html`<span class=\"value-text\">${this._categoryLabel()}</span>`}\n </div>\n </div>\n `\n }\n\n private _renderResourceSection() {\n if (!this['show-resource']) { return '' }\n const images = this._imageResources()\n const video = this._videoResource()\n return html`\n <div class=\"flex-items-start section-row\">\n <div class=\"label\"><span>资源:</span></div>\n <div style=\"flex:1\">\n <div class=\"resource-summary\">图片 ${images.length} 张${video?.url ? ',含视频资源' : ''}</div>\n ${images.length\n ? html`\n <div class=\"resource-thumbs\">\n ${images.slice(0, 4).map(src => html`<img class=\"resource-thumb\" src=${src} alt=\"resource\" />`)}\n </div>\n `\n : ''}\n ${video?.url ? html`<div style=\"margin-top:8px\"><a class=\"el-link\" href=${video.url} target=\"_blank\" rel=\"noreferrer\">查看视频</a></div>` : ''}\n ${!images.length && !video?.url ? html`<div class=\"tag-hint\">暂无资源</div>` : ''}\n </div>\n </div>\n `\n }\n\n private _renderEdit() {\n return html`\n <div class=\"flex-items-start\">\n <div class=\"label\"><span>题目:</span></div>\n <div style=\"flex:1\">\n <div class=\"el-input\">\n <textarea rows=\"2\" .value=${this._title} ?disabled=${this['is-save']}\n maxlength=${this.TITLE_MAX}\n @input=${(e: Event) => this._onTitleInput(e)}\n placeholder=\"【问答题】请输入问题\"></textarea>\n <span class=\"char-counter\">${this._title.length}/${this.TITLE_MAX}</span>\n </div>\n </div>\n </div>\n\n <div class=\"flex-items-start\" style=\"margin-top:12px\">\n <div class=\"label\"><span>答题设置:</span></div>\n <div style=\"flex:1;display:flex;align-items:center;flex-wrap:wrap;gap:8px\">\n <span style=\"font-size:13px;color:#606266\">共答对</span>\n <input\n type=\"number\"\n style=\"width:60px;height:24px;border:1px solid #dcdfe6;border-radius:3px;padding:0 8px;font-size:13px\"\n .value=${this._keywordCount === null ? '' : String(this._keywordCount)}\n min=\"1\"\n @change=${(e: Event) => {\n const value = (e.target as HTMLInputElement).value\n this._keywordCount = value === '' ? null : Number(value)\n }} />\n <span style=\"font-size:13px;color:#606266\">个关键词,算是正确的</span>\n <label style=\"display:inline-flex;align-items:center;gap:4px;cursor:pointer;font-size:12px;color:#606266\">\n <input type=\"checkbox\" .checked=${this._isInOrder}\n @change=${(e: Event) => { this._isInOrder = (e.target as HTMLInputElement).checked }} />\n 答案不分顺序\n </label>\n <label style=\"display:inline-flex;align-items:center;gap:4px;cursor:pointer;font-size:12px;color:#606266\">\n <input type=\"checkbox\" .checked=${this._isIgnoreCase}\n @change=${(e: Event) => { this._isIgnoreCase = (e.target as HTMLInputElement).checked }} />\n 忽略大小写\n </label>\n </div>\n </div>\n\n ${this._renderTagSection()}\n\n ${this._renderCategorySection()}\n\n ${this._renderResourceSection()}\n\n <div class=\"flex-items-start\" style=\"margin-top:12px\">\n <div class=\"label\"><span>答案:</span></div>\n <div style=\"flex:1\">\n <div class=\"el-input\">\n <textarea rows=\"2\" .value=${this._correct} ?disabled=${this['is-save']}\n maxlength=\"200\"\n @input=${(e: Event) => { this._correct = (e.target as HTMLTextAreaElement).value }}\n placeholder=\"请输入正确答案\"></textarea>\n <span class=\"char-counter\">${this._correct.length}/200</span>\n </div>\n </div>\n </div>\n\n <div class=\"answer-list\" style=\"margin-top:12px\">\n <span style=\"padding-left:60px;font-size:12px;color:#909399\">*如遇包含特殊字符的关键词,需添加多个同义词,例:'CO₂'需添加同义词'CO2'</span>\n ${this._answers.map((answer, index) => html`\n <div class=\"answer-item\">\n <span class=\"label\">关键词${index + 1}:</span>\n <div class=\"answer-tags\" style=\"display:flex;flex-wrap:wrap;gap:5px;align-items:center;flex:1;max-width:360px\">\n ${answer.title.split(',').filter(Boolean).map((tag) => {\n const color = TAG_COLORS[index % TAG_COLORS.length]\n return html`\n <span style=\"display:inline-flex;align-items:center;background:${color.bg};color:${color.color};border:1px solid ${color.border};border-radius:3px;padding:2px 8px;font-size:12px;line-height:16px\">\n ${tag}\n ${!this['is-save'] ? html`<span style=\"cursor:pointer;margin-left:4px;color:#909399\" @click=${() => this._closeTag(tag, index)}>×</span>` : ''}\n </span>\n `\n })}\n ${!this['is-save']\n ? html`\n ${answer.showInput\n ? html`\n <input type=\"text\" style=\"width:80px;height:24px;border:1px solid #dcdfe6;border-radius:3px;padding:0 8px;font-size:12px\"\n @keydown=${(e: KeyboardEvent) => {\n if (e.key === 'Enter') { this._addTag(index) }\n }}\n @input=${(e: Event) => { answer.tag = (e.target as HTMLInputElement).value }}\n @blur=${() => this._addTag(index)} />\n <button class=\"el-link\" @click=${() => this._addTag(index)}>确认</button>\n `\n : html`\n <button class=\"link\" @click=${() => { this._answers = this._answers.map((item, currentIndex) => currentIndex === index ? { ...item, showInput: true } : item); this.updateComplete.then(() => { (this.shadowRoot?.querySelector('input[style*=\\\"width:80px\\\"]') as HTMLInputElement)?.focus() }) }}>\n ${answer.title ? '添加同义词' : '添加关键词'}\n </button>\n `}\n `\n : ''}\n </div>\n <span class=\"icon ${this['is-save'] ? 'disabled' : ''}\" @click=${() => this._addAnswer()}>${this._iconPlus}</span>\n <span class=\"icon ${this['is-save'] || this._answers.length < 2 ? 'disabled' : ''}\" @click=${() => this._deleteAnswer(index)}>${this._iconRemove}</span>\n </div>\n `)}\n </div>\n\n ${this._showRichText\n ? html`\n <div class=\"flex-items-start\" style=\"margin-top:12px\">\n <div class=\"label\"><span>富文本:</span></div>\n <div style=\"flex:1\">\n <qxs-blocksuite-editor\n .content=${this._richText}\n .upload-image=${this['upload-image']}\n ?is-edit=${true}\n ></qxs-blocksuite-editor>\n ${!this['show-action']\n ? html`<div class=\"flex-justify-end\" style=\"margin-top:8px\"><span class=\"el-link danger\" @click=${() => { this._showRichText = false; this._richText = '' }}>删除富文本</span></div>`\n : ''}\n </div>\n </div>\n `\n : ''}\n\n ${this['show-analysis']\n ? html`\n <div class=\"flex-items-start\" style=\"margin-top:12px\">\n <div class=\"label\"><span>解析:</span></div>\n <div style=\"flex:1\">\n <div class=\"el-input\">\n <textarea rows=\"2\" .value=${this._analysis}\n @input=${(e: Event) => { this._analysis = (e.target as HTMLTextAreaElement).value }}\n placeholder=\"请输入题目解析\"></textarea>\n </div>\n </div>\n </div>\n `\n : ''}\n `\n }\n\n render() {\n return html`\n <qxs-subject-layout .show-edit=${this['is-edit']}>\n <div slot=\"preview\">${this._renderPreview()}</div>\n <div slot=\"edit\">${this._renderEdit()}</div>\n ${this['show-action']\n ? html`\n <qxs-subject-action\n .is-edit=${this['is-edit']}\n .is-set=${this['is-set']}\n .show-add=${this['show-add']}\n .show-rich-text=${this._showRichText}\n exam-answer-relation-type=${this['exam-answer-relation-type']}\n @delete=${() => this._emit('delete')}\n @save=${this._save}\n @edit=${() => this._emit('edit')}\n @add=${(e: CustomEvent) => this._emit('add', e.detail)}\n @set-key=${(e: CustomEvent) => { this._emit('set-key', e.detail) }}\n @on-show-rich-text=${() => {\n this._showRichText = !this._showRichText\n if (!this._showRichText) {\n this._richText = ''\n }\n }}\n ></qxs-subject-action>\n `\n : ''}\n </qxs-subject-layout>\n `\n }\n}\n\nexport function register() {}\n"],"names":["TAG_COLORS","bg","color","border","QxsTextFill","LitElement","constructor","super","arguments","this","_iconPlus","html","_iconRemove","title","analysis","isInOrder","isIgnoreCase","async","Promise","resolve","reject","reader","FileReader","onload","e","target","result","onerror","readAsDataURL","file","_answers","tag","showInput","_title","_analysis","_isInOrder","_isIgnoreCase","_keywordCount","_correct","_showRichText","_richText","_selectedTagList","_categoryId","TITLE_MAX","willUpdate","changed","has","_syncProps","Array","isArray","map","item","String","_normalizeAnswerTitle","answer","_normalizedAnswerList","source","length","undefined","answerId","examAnswerId","_filledAnswers","filter","_readKeywordCount","setting","keywordCount","Number","customAnswerId","_emit","name","detail","dispatchEvent","CustomEvent","bubbles","composed","_onTitleInput","el","value","slice","_addTag","index","join","currentIndex","_closeTag","split","_addAnswer","_deleteAnswer","_","_removeTag","tagId","customId","examId","_chooseTag","_onCategoryChange","_imageResources","resourceType","resource","middle","url","Boolean","_videoResource","find","_categoryLabel","matched","categoryId","categoryName","_validateState","options","row","answers","correct","SubjectError","filledAnswers","toJSON","answerType","orderIndex","showRichText","richText","selectedTagList","validationError","SubjectType","TEXT_FILL","isSetCorrectAnswer","isKey","examExpand","examAnswerSettingBO","examRichTextContent","memberTagInfo","tagInfos","resourceList","examResourceBOList","_save","stopImmediatePropagation","data","err","msg","document","createElement","textContent","Object","assign","style","position","top","left","transform","padding","borderRadius","fontSize","background","zIndex","boxShadow","transition","opacity","body","appendChild","setTimeout","remove","showToast","message","validate","_renderPreview","previewAnswers","previewCorrect","tagName","_renderResourceSection","_renderTagSection","_renderCategorySection","images","video","src","_renderEdit","checked","key","updateComplete","then","shadowRoot","querySelector","focus","render","styles","css","__decorateClass","property","type","attribute","prototype","state","safeCustomElement"],"mappings":"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"}
@@ -1,5 +1,5 @@
1
- "use strict";var e=require("@tiptap/core"),t=require("@tiptap/extension-blockquote"),i=require("@tiptap/extension-bold"),o=require("@tiptap/extension-bullet-list"),r=require("@tiptap/extension-code"),l=require("@tiptap/extension-document"),s=require("@tiptap/extension-heading"),n=require("@tiptap/extension-history"),a=require("@tiptap/extension-horizontal-rule"),d=require("@tiptap/extension-image"),c=require("@tiptap/extension-italic"),h=require("@tiptap/extension-link"),b=require("@tiptap/extension-list-item"),p=require("@tiptap/extension-ordered-list"),u=require("@tiptap/extension-paragraph"),g=require("@tiptap/extension-strike"),x=require("@tiptap/extension-table"),m=require("@tiptap/extension-table-cell"),v=require("@tiptap/extension-table-header"),y=require("@tiptap/extension-table-row"),f=require("@tiptap/extension-text"),_=require("@tiptap/extension-text-align"),w=require("@tiptap/extension-underline"),k=require("@tiptap/extension-placeholder"),C=require("lit"),M=require("lit/decorators.js"),T=require("../base/define.cjs"),A=Object.defineProperty,$=Object.getOwnPropertyDescriptor,B=(e,t,i,o)=>{for(var r,l=o>1?void 0:o?$(t,i):t,s=e.length-1;s>=0;s--)(r=e[s])&&(l=(o?r(t,i,l):r(l))||l);return o&&l&&A(t,i,l),l};exports.QxsBlocksuiteEditor=class extends C.LitElement{constructor(){super(...arguments),this.content="",this.modelValue="",this.placeholder="输入 / 唤出快捷命令",this.useModelAttr="false",this.readonlyAttr="false",this.previewAttr="false",this.customStylesAttr="",this._injectedStyleEl=null,this.uploadImage=async e=>new Promise((t,i)=>{const o=new FileReader;o.onload=e=>t(e.target?.result),o.onerror=i,o.readAsDataURL(e)}),this._editor=null,this._pendingContent=null,this._tableRows=3,this._tableCols=3,this._hoverRow=0,this._hoverCol=0,this._tableDropdownOpen=!1,this._tableCellToolbar={x:0,y:0,visible:!1,cellRow:0,cellCol:0},this._imageToolbar={x:0,y:0,visible:!1},this._imageMoreMenuVisible=!1,this._hasSlashCommand=!1,this._isUpdating=!1,this._tableEdgeDetectionSetup=!1}_injectCustomStyles(){const e=this.shadowRoot;if(!e)return;if(this._injectedStyleEl&&(this._injectedStyleEl.remove(),this._injectedStyleEl=null),!this.customStylesAttr)return;const t=document.createElement("style");t.textContent=this.customStylesAttr,e.appendChild(t),this._injectedStyleEl=t}get useModel(){return"true"===this.useModelAttr||""===this.useModelAttr||this.hasAttribute("use-model")}set useModel(e){this.useModelAttr=String(e)}get readonly(){return"false"!==this.readonlyAttr}set readonly(e){this.readonlyAttr=String(e)}get preview(){return"false"!==this.previewAttr}set preview(e){this.previewAttr=String(e)}_initEditor(){if(this._editor)return;const C=this.shadowRoot?.querySelector(".editor-content");if(!C)return void requestAnimationFrame(()=>this._initEditor());for(;C.firstChild;)C.removeChild(C.firstChild);const M=this.useModel||this.hasAttribute("use-model"),T=this.getAttribute("model-value")??this.modelValue,A=this.content,$=M?(this._pendingContent??T)||"<p></p>":(this._pendingContent??A)||"<p></p>",B=[l,u,f,i,c,w,g,r,s.configure({levels:[1,2,3]}),o,p,b,t,a,n,d.configure({inline:!1,allowBase64:!0}),h.configure({openOnClick:!1,HTMLAttributes:{rel:"noopener noreferrer"}}),_.configure({types:["heading","paragraph"]}),x.Table.configure({resizable:!0}),y.TableRow,m.TableCell,v.TableHeader,k.configure({placeholder:this.placeholder}),e.Extension.create({name:"clearMarksOnEnter",addKeyboardShortcuts(){return{Enter:()=>(this.editor.chain().focus().unsetAllMarks().clearNodes().run(),!1)}}})];this._editor=new e.Editor({element:C,extensions:B,editable:!this.readonly,content:$}),this._pendingContent=null,this._editor.on("selectionUpdate",()=>{this._updateBubbleMenuPosition(),this._editor?.isActive("table")?this._showTableCellToolbar():this._hideTableCellToolbar();const e=this._editor;if(e){const{selection:t}=e.state,{$from:i}=t;if("image"===i.node(i.depth).type.name){const t=e.view.coordsAtPos(i.start()),o=this.shadowRoot?.querySelector(".editor-wrapper")?.getBoundingClientRect();if(o){const e=t.left-o.left+(t.right-t.left)/2,i=t.top-o.top-40;this._showImageToolbar({x:e,y:i})}}else this._hideImageToolbar()}}),this._editor.on("transaction",()=>{this._editor?.isActive("table")?this._showTableCellToolbar():this._hideTableCellToolbar(),this._checkSlashCommand(),this._setupTableEdgeDetection()}),this._editor.on("update",()=>{this._emitContentChange()})}_emitContentChange(){if(!this._editor)return;const e=this._editor.getHTML();this.dispatchEvent(new CustomEvent("content-change",{detail:e,bubbles:!0,composed:!0}))}_setupTableEdgeDetection(){const e=this.shadowRoot?.querySelector(".editor-content"),t=this.shadowRoot?.querySelector(".editor-wrapper");if(!e||this._tableEdgeDetectionSetup)return;this._tableEdgeDetectionSetup=!0;const i=()=>{this._editor?.chain().focus().run()};e.addEventListener("click",i),t?.addEventListener("click",i)}_checkSlashCommand(){if(!this._editor)return;const{selection:e}=this._editor.state,t=this._editor.state.doc.textBetween(Math.max(0,e.from-10),e.from," ");this._hasSlashCommand=t.endsWith("/")}firstUpdated(){this._injectCustomStyles(),this._initEditor()}updated(e){if(e.has("customStylesAttr")&&this._injectCustomStyles(),this._editor){if(e.has("content")||e.has("modelValue")&&this.useModel){const e=this.useModel?this.modelValue:this.content;e!==this._editor.getHTML()&&this._editor.commands.setContent(e||"<p></p>")}e.has("readonly")&&this._editor.setEditable(!this.readonly)}else e.has("content")&&(this._pendingContent=this.content),e.has("modelValue")&&this.useModel&&(this._pendingContent=this.modelValue)}disconnectedCallback(){super.disconnectedCallback(),this._editor?.destroy(),this._editor=null}getContent(){return this._editor?.getHTML()??""}forceUpdate(){if(this.requestUpdate(),this._editor){const e=this.useModel?this.modelValue:this.content;e!==this._editor.getHTML()&&this._editor.commands.setContent(e||"<p></p>")}}_applyFormat(e){if(this._hasSlashCommand&&this._editor){const{selection:e}=this._editor.state;this._editor.chain().focus().deleteRange({from:e.from-1,to:e.from}).run(),this._hasSlashCommand=!1}e()}_toggleBold(){this._applyFormat(()=>this._editor?.chain().focus().toggleBold().run())}_toggleItalic(){this._applyFormat(()=>this._editor?.chain().focus().toggleItalic().run())}_toggleUnderline(){this._applyFormat(()=>this._editor?.chain().focus().toggleUnderline().run())}_toggleStrike(){this._applyFormat(()=>this._editor?.chain().focus().toggleStrike().run())}_toggleCode(){this._applyFormat(()=>this._editor?.chain().focus().toggleCode().run())}_setHeading(e){this._applyFormat(()=>this._editor?.chain().focus().toggleHeading({level:e}).run())}_setParagraph(){this._applyFormat(()=>this._editor?.chain().focus().setParagraph().run())}_toggleBulletList(){this._applyFormat(()=>this._editor?.chain().focus().toggleBulletList().run())}_toggleOrderedList(){this._applyFormat(()=>this._editor?.chain().focus().toggleOrderedList().run())}_toggleBlockquote(){this._applyFormat(()=>this._editor?.chain().focus().toggleBlockquote().run())}_setTextAlign(e){this._applyFormat(()=>this._editor?.chain().focus().setTextAlign(e).run())}_setLink(){const e=window.prompt("请输入链接地址:");e&&this._applyFormat(()=>this._editor?.chain().focus().setLink({href:e}).run())}_insertTable(e,t){this._editor?.chain().focus().insertTable({rows:e??this._tableRows,cols:t??this._tableCols,withHeaderRow:!0}).run()}async _handleImageUpload(e){const t=e.target,i=t.files?.[0];if(i)try{const e=await this.uploadImage(i);this._editor?.chain().focus().setImage({src:e}).run()}catch(e){}t.value=""}_triggerImageUpload(){const e=this.shadowRoot?.querySelector(".image-input");e?.click()}_insertTableByClick(e,t){if(this._hasSlashCommand&&this._editor){const{selection:e}=this._editor.state;this._editor.chain().focus().deleteRange({from:e.from-1,to:e.from}).run(),this._hasSlashCommand=!1}this._tableRows=e,this._tableCols=t,this._insertTable(e,t)}_showTableCellToolbar(){if(!this._editor?.isActive("table"))return;const{state:e}=this._editor,{selection:t}=e,i=this._editor.view.coordsAtPos(t.from),o=this.shadowRoot?.querySelector(".editor-wrapper");if(!o)return;const r=o.getBoundingClientRect(),l=this._getTableCellRow(),s=this._getTableCellCol();(0===l||0===s)&&requestAnimationFrame(()=>{this._tableCellToolbar={x:i.left-r.left,y:i.bottom-r.top+8,visible:!0,cellRow:l,cellCol:s}})}_getTableCellRow(){if(!this._editor)return 0;const{selection:e}=this._editor.state,t=this._editor.state.doc.resolve(e.from);for(let e=t.depth;e>0;e--){if("tableCell"===t.node(e).type.name)return t.index(e-1)}return 0}_getTableCellCol(){if(!this._editor)return 0;const{selection:e}=this._editor.state,t=this._editor.state.doc.resolve(e.from);for(let e=t.depth;e>0;e--){if("tableCell"===t.node(e).type.name)return t.index(e)}return 0}_hideTableCellToolbar(){requestAnimationFrame(()=>{this._tableCellToolbar={...this._tableCellToolbar,visible:!1}})}_addTableRowAbove(){this._editor?.chain().focus().addRowBefore().run(),this._hideTableCellToolbar()}_addTableRowBelow(){this._editor?.chain().focus().addRowAfter().run(),this._hideTableCellToolbar()}_addTableColumnLeft(){this._editor?.chain().focus().addColumnBefore().run(),this._hideTableCellToolbar()}_addTableColumnRight(){this._editor?.chain().focus().addColumnAfter().run(),this._hideTableCellToolbar()}_deleteTableRow(){this._editor?.chain().focus().deleteRow().run(),this._hideTableCellToolbar()}_deleteTableColumn(){this._editor?.chain().focus().deleteColumn().run(),this._hideTableCellToolbar()}_deleteTable(){this._editor?.chain().focus().deleteTable().run(),this._hideTableCellToolbar()}_showImageToolbar(e){requestAnimationFrame(()=>{this._imageToolbar={x:e.x,y:e.y,visible:!0},this._imageMoreMenuVisible=!1})}_hideImageToolbar(){requestAnimationFrame(()=>{this._imageToolbar={...this._imageToolbar,visible:!1},this._imageMoreMenuVisible=!1})}_toggleImageMoreMenu(){this._imageMoreMenuVisible=!this._imageMoreMenuVisible}_deleteImage(){this._editor?.chain().focus().deleteNode("image").run(),this._hideImageToolbar()}_insertImageAfter(){this._triggerImageUpload(),this._imageMoreMenuVisible=!1}_setImageAlignLeft(){const e=this._editor;if(e){const{selection:t}=e.state,i=t.from;e.chain().focus().setNodeSelection(i).run();const o=this.shadowRoot?.querySelector(".ProseMirror img.ProseMirror-selectednode");o&&(o.style.display="block",o.style.margin="0 auto 0 0")}this._imageMoreMenuVisible=!1}_setImageAlignCenter(){const e=this._editor;if(e){const{selection:t}=e.state,i=t.from;e.chain().focus().setNodeSelection(i).run();const o=this.shadowRoot?.querySelector(".ProseMirror img.ProseMirror-selectednode");o&&(o.style.display="block",o.style.margin="0 auto")}this._imageMoreMenuVisible=!1}_setImageAlignRight(){const e=this._editor;if(e){const{selection:t}=e.state,i=t.from;e.chain().focus().setNodeSelection(i).run();const o=this.shadowRoot?.querySelector(".ProseMirror img.ProseMirror-selectednode");o&&(o.style.display="block",o.style.margin="0 0 0 auto")}this._imageMoreMenuVisible=!1}_getTextLabel(){const e=this._editor;return e?e.isActive("heading",{level:1})?"标题 1":e.isActive("heading",{level:2})?"标题 2":e.isActive("heading",{level:3})?"标题 3":"正文":"正文"}_getAlignLabel(){const e=this._editor;return e?e.isActive({textAlign:"center"})?"居中":e.isActive({textAlign:"right"})?"右对齐":"左对齐":"对齐"}_updateBubbleMenuPosition(){requestAnimationFrame(()=>{const e=this.shadowRoot?.querySelector(".bubble-menu"),t=this.shadowRoot?.querySelector(".ProseMirror"),i=this.shadowRoot?.querySelector(".editor-wrapper");if(!e||!t||!i)return;const o=this._editor,r=o?.isActive("table")??!1,{selection:l}=o?.state??{selection:null};if(r&&l&&!l.empty&&o){const{from:t,to:i}=l,r=o.state.doc.resolve(t),s=o.state.doc.resolve(i);let n=!1;for(let e=r.depth;e>=0;e--)if("table"===r.node(e).type.name){n=!0;break}const a=r.node(r.depth),d=s.node(s.depth);if("table"!==a.type.name&&"table"!==d.type.name||(n=!0),n)return e.style.opacity="0",void(e.style.visibility="hidden")}if(l&&!l.empty);else if(!l||l.empty&&!this._hasSlashCommand)return e.style.opacity="0",void(e.style.visibility="hidden");const s=i.getBoundingClientRect(),n=e.getBoundingClientRect(),{from:a}=l,d=this._editor?.view.coordsAtPos(a);if(!d)return;let c=d.left-s.left,h=d.top-s.top-40;c+n.width>s.width&&(c=s.width-n.width-8),c<0&&(c=8),h<0&&(h=d.bottom-s.top+8),e.style.left=`${c}px`,e.style.top=`${h}px`,e.style.opacity="1",e.style.visibility="visible"})}render(){const e=this._editor;return C.html`
2
- <div class="editor-wrapper ${e?"":"loading"} ${this.preview?"preview":""}">
1
+ "use strict";var e=require("@tiptap/core"),t=require("@tiptap/extension-blockquote"),i=require("@tiptap/extension-bold"),o=require("@tiptap/extension-bullet-list"),r=require("@tiptap/extension-code"),l=require("@tiptap/extension-document"),s=require("@tiptap/extension-heading"),n=require("@tiptap/extension-history"),a=require("@tiptap/extension-horizontal-rule"),d=require("@tiptap/extension-image"),c=require("@tiptap/extension-italic"),h=require("@tiptap/extension-link"),b=require("@tiptap/extension-list-item"),p=require("@tiptap/extension-ordered-list"),u=require("@tiptap/extension-paragraph"),g=require("@tiptap/extension-placeholder"),x=require("@tiptap/extension-strike"),m=require("@tiptap/extension-table"),v=require("@tiptap/extension-table-cell"),y=require("@tiptap/extension-table-header"),f=require("@tiptap/extension-table-row"),_=require("@tiptap/extension-text"),w=require("@tiptap/extension-text-align"),k=require("@tiptap/extension-underline"),C=require("lit"),M=require("lit/decorators.js"),T=require("../base/define.cjs"),$=Object.defineProperty,B=Object.getOwnPropertyDescriptor,q=(e,t,i,o)=>{for(var r,l=o>1?void 0:o?B(t,i):t,s=e.length-1;s>=0;s--)(r=e[s])&&(l=(o?r(t,i,l):r(l))||l);return o&&l&&$(t,i,l),l};exports.QxsBlocksuiteEditor=class extends C.LitElement{constructor(){super(...arguments),this.content="",this["model-value"]="",this.placeholder="输入 / 唤出快捷命令",this["use-model"]="false",this.readonly="false",this.preview="false",this["custom-styles"]="",this._injectedStyleEl=null,this["upload-image"]=async e=>new Promise((t,i)=>{const o=new FileReader;o.onload=e=>t(e.target?.result),o.onerror=i,o.readAsDataURL(e)}),this._editor=null,this._pendingContent=null,this._tableRows=3,this._tableCols=3,this._hoverRow=0,this._hoverCol=0,this._tableDropdownOpen=!1,this._tableCellToolbar={x:0,y:0,visible:!1,cellRow:0,cellCol:0},this._imageToolbar={x:0,y:0,visible:!1},this._imageMoreMenuVisible=!1,this._hasSlashCommand=!1,this._isUpdating=!1,this._tableEdgeDetectionSetup=!1}_injectCustomStyles(){const e=this.shadowRoot;if(!e)return;if(this._injectedStyleEl&&(this._injectedStyleEl.remove(),this._injectedStyleEl=null),!this["custom-styles"])return;const t=document.createElement("style");t.textContent=this["custom-styles"],e.appendChild(t),this._injectedStyleEl=t}get _useModelValue(){return!0===this["use-model"]||"true"===this["use-model"]||""===this["use-model"]||this.hasAttribute("use-model")}get _readonlyValue(){return!1!==this.readonly&&"false"!==this.readonly}get _previewValue(){return!1!==this.preview&&"false"!==this.preview}_initEditor(){if(this._editor)return;const C=this.shadowRoot?.querySelector(".editor-content");if(!C)return void requestAnimationFrame(()=>this._initEditor());for(;C.firstChild;)C.removeChild(C.firstChild);const M=this._useModelValue,T=this.getAttribute("model-value")??this["model-value"],$=this.content,B=M?(this._pendingContent??T)||"<p></p>":(this._pendingContent??$)||"<p></p>",q=[l,u,_,i,c,k,x,r,s.configure({levels:[1,2,3]}),o,p,b,t,a,n,d.configure({inline:!1,allowBase64:!0}),h.configure({openOnClick:!1,HTMLAttributes:{rel:"noopener noreferrer"}}),w.configure({types:["heading","paragraph"]}),m.Table.configure({resizable:!0}),f.TableRow,v.TableCell,y.TableHeader,g.configure({placeholder:this.placeholder}),e.Extension.create({name:"clearMarksOnEnter",addKeyboardShortcuts(){return{Enter:()=>(this.editor.chain().focus().unsetAllMarks().clearNodes().run(),!1)}}})];this._editor=new e.Editor({element:C,extensions:q,editable:!this._readonlyValue,content:B}),this._pendingContent=null,this._editor.on("selectionUpdate",()=>{this._updateBubbleMenuPosition(),this._editor?.isActive("table")?this._showTableCellToolbar():this._hideTableCellToolbar();const e=this._editor;if(e){const{selection:t}=e.state,{$from:i}=t;if("image"===i.node(i.depth).type.name){const t=e.view.coordsAtPos(i.start()),o=this.shadowRoot?.querySelector(".editor-wrapper")?.getBoundingClientRect();if(o){const e=t.left-o.left+(t.right-t.left)/2,i=t.top-o.top-40;this._showImageToolbar({x:e,y:i})}}else this._hideImageToolbar()}}),this._editor.on("transaction",()=>{this._editor?.isActive("table")?this._showTableCellToolbar():this._hideTableCellToolbar(),this._checkSlashCommand(),this._setupTableEdgeDetection()}),this._editor.on("update",()=>{this._emitContentChange()})}_emitContentChange(){if(!this._editor)return;const e=this._editor.getHTML();this.dispatchEvent(new CustomEvent("content-change",{detail:e,bubbles:!0,composed:!0}))}_setupTableEdgeDetection(){const e=this.shadowRoot?.querySelector(".editor-content"),t=this.shadowRoot?.querySelector(".editor-wrapper");if(!e||this._tableEdgeDetectionSetup)return;this._tableEdgeDetectionSetup=!0;const i=()=>{this._editor?.chain().focus().run()};e.addEventListener("click",i),t?.addEventListener("click",i)}_checkSlashCommand(){if(!this._editor)return;const{selection:e}=this._editor.state,t=this._editor.state.doc.textBetween(Math.max(0,e.from-10),e.from," ");this._hasSlashCommand=t.endsWith("/")}firstUpdated(){this._injectCustomStyles(),this._initEditor()}updated(e){if(e.has("custom-styles")&&this._injectCustomStyles(),this._editor){if(e.has("content")||e.has("model-value")&&this._useModelValue){const e=this._useModelValue?this["model-value"]:this.content;e!==this._editor.getHTML()&&this._editor.commands.setContent(e||"<p></p>")}e.has("readonly")&&this._editor.setEditable(!this._readonlyValue)}else e.has("content")&&(this._pendingContent=this.content),e.has("model-value")&&this._useModelValue&&(this._pendingContent=this["model-value"])}disconnectedCallback(){super.disconnectedCallback(),this._editor?.destroy(),this._editor=null}getContent(){return this._editor?.getHTML()??""}forceUpdate(){if(this.requestUpdate(),this._editor){const e=this._useModelValue?this["model-value"]:this.content;e!==this._editor.getHTML()&&this._editor.commands.setContent(e||"<p></p>")}}_applyFormat(e){if(this._hasSlashCommand&&this._editor){const{selection:e}=this._editor.state;this._editor.chain().focus().deleteRange({from:e.from-1,to:e.from}).run(),this._hasSlashCommand=!1}e()}_toggleBold(){this._applyFormat(()=>this._editor?.chain().focus().toggleBold().run())}_toggleItalic(){this._applyFormat(()=>this._editor?.chain().focus().toggleItalic().run())}_toggleUnderline(){this._applyFormat(()=>this._editor?.chain().focus().toggleUnderline().run())}_toggleStrike(){this._applyFormat(()=>this._editor?.chain().focus().toggleStrike().run())}_toggleCode(){this._applyFormat(()=>this._editor?.chain().focus().toggleCode().run())}_setHeading(e){this._applyFormat(()=>this._editor?.chain().focus().toggleHeading({level:e}).run())}_setParagraph(){this._applyFormat(()=>this._editor?.chain().focus().setParagraph().run())}_toggleBulletList(){this._applyFormat(()=>this._editor?.chain().focus().toggleBulletList().run())}_toggleOrderedList(){this._applyFormat(()=>this._editor?.chain().focus().toggleOrderedList().run())}_toggleBlockquote(){this._applyFormat(()=>this._editor?.chain().focus().toggleBlockquote().run())}_setTextAlign(e){this._applyFormat(()=>this._editor?.chain().focus().setTextAlign(e).run())}_setLink(){const e=window.prompt("请输入链接地址:");e&&this._applyFormat(()=>this._editor?.chain().focus().setLink({href:e}).run())}_insertTable(e,t){this._editor?.chain().focus().insertTable({rows:e??this._tableRows,cols:t??this._tableCols,withHeaderRow:!0}).run()}async _handleImageUpload(e){const t=e.target,i=t.files?.[0];if(i)try{const e=await this["upload-image"](i);this._editor?.chain().focus().setImage({src:e}).run()}catch(e){}t.value=""}_triggerImageUpload(){const e=this.shadowRoot?.querySelector(".image-input");e?.click()}_insertTableByClick(e,t){if(this._hasSlashCommand&&this._editor){const{selection:e}=this._editor.state;this._editor.chain().focus().deleteRange({from:e.from-1,to:e.from}).run(),this._hasSlashCommand=!1}this._tableRows=e,this._tableCols=t,this._insertTable(e,t)}_showTableCellToolbar(){if(!this._editor?.isActive("table"))return;const{state:e}=this._editor,{selection:t}=e,i=this._editor.view.coordsAtPos(t.from),o=this.shadowRoot?.querySelector(".editor-wrapper");if(!o)return;const r=o.getBoundingClientRect(),l=this._getTableCellRow(),s=this._getTableCellCol();(0===l||0===s)&&requestAnimationFrame(()=>{this._tableCellToolbar={x:i.left-r.left,y:i.bottom-r.top+8,visible:!0,cellRow:l,cellCol:s}})}_getTableCellRow(){if(!this._editor)return 0;const{selection:e}=this._editor.state,t=this._editor.state.doc.resolve(e.from);for(let e=t.depth;e>0;e--){if("tableCell"===t.node(e).type.name)return t.index(e-1)}return 0}_getTableCellCol(){if(!this._editor)return 0;const{selection:e}=this._editor.state,t=this._editor.state.doc.resolve(e.from);for(let e=t.depth;e>0;e--){if("tableCell"===t.node(e).type.name)return t.index(e)}return 0}_hideTableCellToolbar(){requestAnimationFrame(()=>{this._tableCellToolbar={...this._tableCellToolbar,visible:!1}})}_addTableRowAbove(){this._editor?.chain().focus().addRowBefore().run(),this._hideTableCellToolbar()}_addTableRowBelow(){this._editor?.chain().focus().addRowAfter().run(),this._hideTableCellToolbar()}_addTableColumnLeft(){this._editor?.chain().focus().addColumnBefore().run(),this._hideTableCellToolbar()}_addTableColumnRight(){this._editor?.chain().focus().addColumnAfter().run(),this._hideTableCellToolbar()}_deleteTableRow(){this._editor?.chain().focus().deleteRow().run(),this._hideTableCellToolbar()}_deleteTableColumn(){this._editor?.chain().focus().deleteColumn().run(),this._hideTableCellToolbar()}_deleteTable(){this._editor?.chain().focus().deleteTable().run(),this._hideTableCellToolbar()}_showImageToolbar(e){requestAnimationFrame(()=>{this._imageToolbar={x:e.x,y:e.y,visible:!0},this._imageMoreMenuVisible=!1})}_hideImageToolbar(){requestAnimationFrame(()=>{this._imageToolbar={...this._imageToolbar,visible:!1},this._imageMoreMenuVisible=!1})}_toggleImageMoreMenu(){this._imageMoreMenuVisible=!this._imageMoreMenuVisible}_deleteImage(){this._editor?.chain().focus().deleteNode("image").run(),this._hideImageToolbar()}_insertImageAfter(){this._triggerImageUpload(),this._imageMoreMenuVisible=!1}_setImageAlignLeft(){const e=this._editor;if(e){const{selection:t}=e.state,i=t.from;e.chain().focus().setNodeSelection(i).run();const o=this.shadowRoot?.querySelector(".ProseMirror img.ProseMirror-selectednode");o&&(o.style.display="block",o.style.margin="0 auto 0 0")}this._imageMoreMenuVisible=!1}_setImageAlignCenter(){const e=this._editor;if(e){const{selection:t}=e.state,i=t.from;e.chain().focus().setNodeSelection(i).run();const o=this.shadowRoot?.querySelector(".ProseMirror img.ProseMirror-selectednode");o&&(o.style.display="block",o.style.margin="0 auto")}this._imageMoreMenuVisible=!1}_setImageAlignRight(){const e=this._editor;if(e){const{selection:t}=e.state,i=t.from;e.chain().focus().setNodeSelection(i).run();const o=this.shadowRoot?.querySelector(".ProseMirror img.ProseMirror-selectednode");o&&(o.style.display="block",o.style.margin="0 0 0 auto")}this._imageMoreMenuVisible=!1}_getTextLabel(){const e=this._editor;return e?e.isActive("heading",{level:1})?"标题 1":e.isActive("heading",{level:2})?"标题 2":e.isActive("heading",{level:3})?"标题 3":"正文":"正文"}_getAlignLabel(){const e=this._editor;return e?e.isActive({textAlign:"center"})?"居中":e.isActive({textAlign:"right"})?"右对齐":"左对齐":"对齐"}_updateBubbleMenuPosition(){requestAnimationFrame(()=>{const e=this.shadowRoot?.querySelector(".bubble-menu"),t=this.shadowRoot?.querySelector(".ProseMirror"),i=this.shadowRoot?.querySelector(".editor-wrapper");if(!e||!t||!i)return;const o=this._editor,r=o?.isActive("table")??!1,{selection:l}=o?.state??{selection:null};if(r&&l&&!l.empty&&o){const{from:t,to:i}=l,r=o.state.doc.resolve(t),s=o.state.doc.resolve(i);let n=!1;for(let e=r.depth;e>=0;e--)if("table"===r.node(e).type.name){n=!0;break}const a=r.node(r.depth),d=s.node(s.depth);if("table"!==a.type.name&&"table"!==d.type.name||(n=!0),n)return e.style.opacity="0",void(e.style.visibility="hidden")}if(l&&!l.empty);else if(!l||l.empty&&!this._hasSlashCommand)return e.style.opacity="0",void(e.style.visibility="hidden");const s=i.getBoundingClientRect(),n=e.getBoundingClientRect(),{from:a}=l,d=this._editor?.view.coordsAtPos(a);if(!d)return;let c=d.left-s.left,h=d.top-s.top-40;c+n.width>s.width&&(c=s.width-n.width-8),c<0&&(c=8),h<0&&(h=d.bottom-s.top+8),e.style.left=`${c}px`,e.style.top=`${h}px`,e.style.opacity="1",e.style.visibility="visible"})}render(){const e=this._editor;return C.html`
2
+ <div class="editor-wrapper ${e?"":"loading"} ${this._previewValue?"preview":""}">
3
3
  ${e?"":C.html`
4
4
  <div class="loading-placeholder">
5
5
  <div class="loading-spinner"></div>
@@ -14,7 +14,7 @@
14
14
  />
15
15
 
16
16
  <!-- Bubble Menu (悬浮操作栏) -->
17
- ${this.preview?"":C.html`
17
+ ${this._previewValue?"":C.html`
18
18
  <div class="bubble-menu">
19
19
  <!-- 文本格式 -->
20
20
  <button
@@ -888,5 +888,5 @@
888
888
  outline: 2px solid var(--qxs-color-primary, #3D61E3);
889
889
  outline-offset: 2px;
890
890
  }
891
- `,B([M.property({type:String,attribute:"content"})],exports.QxsBlocksuiteEditor.prototype,"content",2),B([M.property({type:String,attribute:"model-value"})],exports.QxsBlocksuiteEditor.prototype,"modelValue",2),B([M.property({type:String,attribute:"placeholder"})],exports.QxsBlocksuiteEditor.prototype,"placeholder",2),B([M.property({type:String,attribute:"use-model"})],exports.QxsBlocksuiteEditor.prototype,"useModelAttr",2),B([M.property({type:String,attribute:"readonly"})],exports.QxsBlocksuiteEditor.prototype,"readonlyAttr",2),B([M.property({type:String,attribute:"preview"})],exports.QxsBlocksuiteEditor.prototype,"previewAttr",2),B([M.property({type:String,attribute:"custom-styles"})],exports.QxsBlocksuiteEditor.prototype,"customStylesAttr",2),B([M.property({type:Object,attribute:"upload-image"})],exports.QxsBlocksuiteEditor.prototype,"uploadImage",2),B([M.state()],exports.QxsBlocksuiteEditor.prototype,"_editor",2),B([M.state()],exports.QxsBlocksuiteEditor.prototype,"_pendingContent",2),B([M.state()],exports.QxsBlocksuiteEditor.prototype,"_hoverRow",2),B([M.state()],exports.QxsBlocksuiteEditor.prototype,"_hoverCol",2),B([M.state()],exports.QxsBlocksuiteEditor.prototype,"_tableDropdownOpen",2),B([M.state()],exports.QxsBlocksuiteEditor.prototype,"_tableCellToolbar",2),B([M.state()],exports.QxsBlocksuiteEditor.prototype,"_imageToolbar",2),B([M.state()],exports.QxsBlocksuiteEditor.prototype,"_imageMoreMenuVisible",2),exports.QxsBlocksuiteEditor=B([T.safeCustomElement("qxs-blocksuite-editor")],exports.QxsBlocksuiteEditor);
891
+ `,q([M.property({type:String,attribute:"content"})],exports.QxsBlocksuiteEditor.prototype,"content",2),q([M.property({type:String,attribute:"model-value"})],exports.QxsBlocksuiteEditor.prototype,"model-value",2),q([M.property({type:String,attribute:"placeholder"})],exports.QxsBlocksuiteEditor.prototype,"placeholder",2),q([M.property({type:String,attribute:"use-model"})],exports.QxsBlocksuiteEditor.prototype,"use-model",2),q([M.property({type:String,attribute:"readonly"})],exports.QxsBlocksuiteEditor.prototype,"readonly",2),q([M.property({type:String,attribute:"preview"})],exports.QxsBlocksuiteEditor.prototype,"preview",2),q([M.property({type:String,attribute:"custom-styles"})],exports.QxsBlocksuiteEditor.prototype,"custom-styles",2),q([M.property({type:Object,attribute:"upload-image"})],exports.QxsBlocksuiteEditor.prototype,"upload-image",2),q([M.state()],exports.QxsBlocksuiteEditor.prototype,"_editor",2),q([M.state()],exports.QxsBlocksuiteEditor.prototype,"_pendingContent",2),q([M.state()],exports.QxsBlocksuiteEditor.prototype,"_hoverRow",2),q([M.state()],exports.QxsBlocksuiteEditor.prototype,"_hoverCol",2),q([M.state()],exports.QxsBlocksuiteEditor.prototype,"_tableDropdownOpen",2),q([M.state()],exports.QxsBlocksuiteEditor.prototype,"_tableCellToolbar",2),q([M.state()],exports.QxsBlocksuiteEditor.prototype,"_imageToolbar",2),q([M.state()],exports.QxsBlocksuiteEditor.prototype,"_imageMoreMenuVisible",2),exports.QxsBlocksuiteEditor=q([T.safeCustomElement("qxs-blocksuite-editor")],exports.QxsBlocksuiteEditor);
892
892
  //# sourceMappingURL=blocksuite-editor.cjs.map