@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":"blank-fill.cjs","sources":["../../../../packages/components-wc/src/subject/blank-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 BlankAnswer { title: string, tag: string, showInput: boolean }\n\nconst iconPlus = html`\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 24 24\" fill=\"none\"\n stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\">\n <line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"/><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"/>\n </svg>`\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-blank-fill')\nexport class QxsBlankFill extends LitElement {\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 .content { color: #a8abb2; margin-top: 10px; }\n\n .flex { display: flex; }\n .flex-wrap { flex-wrap: wrap; }\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: 70px; 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 /* Tag style */\n .el-tag {\n display: inline-flex; align-items: center; height: 24px; padding: 0 9px;\n font-size: 12px; line-height: 1; color: #3D61E3; background: #ecf5ff;\n border: 1px solid #d9ecff; border-radius: 4px; white-space: nowrap;\n }\n .el-tag .el-tag__close {\n display: inline-flex; align-items: center; justify-content: center;\n margin-left: 4px; width: 16px; height: 16px; border-radius: 50%;\n font-size: 12px; color: #909399; cursor: pointer; transition: all .2s;\n }\n .el-tag .el-tag__close:hover { background: #909399; color: #fff; }\n\n /* Button small style */\n .el-button--small {\n display: inline-flex; align-items: center; gap: 4px;\n height: 24px; padding: 0 10px; font-size: 12px; line-height: 1;\n border: 1px solid #dcdfe6; border-radius: 3px; background: #fff; color: #606266;\n cursor: pointer; transition: all .2s; white-space: nowrap;\n }\n .el-button--small:hover { color: #3D61E3; border-color: #c6e2ff; background-color: #ecf5ff; }\n\n /* Link style */\n .el-link { color: #3D61E3; cursor: pointer; font-size: 12px; text-decoration: none; }\n .el-link:hover { color: #2D4CB8; }\n .el-link.is-disabled { color: #c0c4cc; cursor: not-allowed; }\n\n /* Input small for tag */\n .el-input--small { width: 80px; }\n .el-input--small input {\n height: 24px; padding: 0 8px; font-size: 12px; line-height: 24px;\n border: 1px solid #dcdfe6; border-radius: 3px; width: 100%;\n }\n .el-input--small input:focus { border-color: #3D61E3; outline: none; }\n\n /* Checkbox style */\n .el-checkbox {\n display: inline-flex; align-items: center; gap: 6px; cursor: pointer;\n font-size: 13px; color: #606266; user-select: none; margin-right: 16px;\n }\n .el-checkbox input[type=\"checkbox\"] {\n width: 14px; height: 14px; cursor: pointer; accent-color: #3D61E3;\n }\n\n .answer-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }\n .answer-item .label { min-width: 70px; padding-top: 0; color: #909399; }\n .answer-tags { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; flex: 1; }\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 } = { isInOrder: false, isIgnoreCase: true }\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 _title = ''\n @state() private _analysis = ''\n @state() private _answers: BlankAnswer[] = [{ title: '', tag: '', showInput: false }]\n @state() private _isInOrder = false\n @state() private _isIgnoreCase = true\n @state() private _showRichText = false\n @state() private _richText = ''\n\n private readonly TITLE_MAX = 400\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'))) {\n this._syncProps()\n }\n // 当外部 modelValue 变化时同步内部状态\n if (changed.has('modelValue') && this.useModel) {\n this._title = this.modelValue.replaceAll(/<filter><\\/filter>/g, ' ______')\n }\n }\n\n private _normalizeAnswerTitle(answer: any) {\n return String(answer?.title ?? answer?.answer ?? '')\n }\n\n private _syncProps() {\n this._title = (this.title || '').replaceAll(/<filter><\\/filter>/g, ' ______')\n this._analysis = this.analysis || ''\n if (this.answerList?.length) {\n this._answers = this.answerList.map((a: any) => ({ title: this._normalizeAnswerTitle(a), tag: '', showInput: false }))\n }\n else {\n const blankCount = (this._title.match(/ ______/g) || []).length || 1\n this._answers = Array.from({ length: blankCount }, () => ({ title: '', tag: '', showInput: false }))\n }\n if (this.examAnswerSetting) {\n this._isInOrder = !!this.examAnswerSetting.isInOrder\n this._isIgnoreCase = !!this.examAnswerSetting.isIgnoreCase\n }\n this._richText = this.richTextContent || ''\n this._showRichText = !!this.richTextContent\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 _addBlank() {\n this._title += ' ______'\n this._answers = [...this._answers, { title: '', tag: '', showInput: false }]\n this.requestUpdate()\n this._emitModelUpdate()\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 const blankCount = (this._title.match(/ ______/g) || []).length\n if (blankCount !== this._answers.length) {\n if (blankCount > this._answers.length) {\n for (let i = this._answers.length; i < blankCount; i++) {\n this._answers = [...this._answers, { title: '', tag: '', showInput: false }]\n }\n }\n else {\n this._answers = this._answers.slice(0, blankCount)\n }\n }\n this._emitModelUpdate()\n }\n\n // 双向绑定:通知外部更新\n private _emitModelUpdate() {\n if (this.useModel) {\n const modelValue = this._title.replaceAll(/ ______/g, '<filter></filter>')\n this.dispatchEvent(new CustomEvent('update:modelValue', {\n bubbles: true,\n composed: true,\n detail: modelValue,\n }))\n }\n }\n\n private _handleAddTag(item: BlankAnswer) {\n item.showInput = false\n if (item.tag) {\n item.title = item.title ? [item.title, item.tag].join(',') : item.tag\n item.tag = ''\n }\n this.requestUpdate()\n }\n\n private _closeTag(tag: string, item: BlankAnswer) {\n if (tag) {\n const tags = item.title.split(',')\n const idx = tags.findIndex((t: string) => t === tag)\n if (idx > -1) { tags.splice(idx, 1); item.title = tags.join(',') }\n this.requestUpdate()\n }\n }\n\n async toJSON(): Promise<any> {\n return new Promise((resolve, reject) => {\n const row = { customId: this.customId || undefined, answerType: 'blank_fill', orderIndex: this.orderIndex }\n\n const title = this.isEdit ? this._title : this.title?.replaceAll(/<filter><\\/filter>/g, ' ______') || ''\n const answers = this.isEdit ? this._answers : (this.answerList || []).map((answer: any) => ({ ...answer, title: this._normalizeAnswerTitle(answer) }))\n const analysis = this.isEdit ? this._analysis : this.analysis || ''\n const isInOrder = this.isEdit ? this._isInOrder : this.examAnswerSetting?.isInOrder ?? false\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 (answers.length < 1) {\n reject(new SubjectError('至少添加一个填空符!', 'NO_BLANK', 'answers', row))\n return\n }\n const result: any = {\n answerType: SubjectType.BLANK_FILL,\n title: title.replaceAll(/ ______/g, '<filter></filter>'),\n answers: answers.map((a: any) => ({ title: a.title, isCorrect: true })),\n analysis,\n isSetCorrectAnswer: true,\n isKey: this.isKey,\n examAnswerSettingBO: { isIgnoreCase, isInOrder },\n examRichTextContent: showRichText ? richText : '',\n }\n if (this.customId) { result.customId = this.customId }\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 errors: SubjectError[] = []\n const row = { customId: this.customId || undefined, answerType: 'blank_fill', orderIndex: this.orderIndex }\n\n const title = this.isEdit ? this._title : this.title?.replaceAll(/<filter><\\/filter>/g, ' ______') || ''\n const answers = this.isEdit ? this._answers : (this.answerList || []).map((answer: any) => ({ ...answer, title: this._normalizeAnswerTitle(answer) }))\n\n if (!title) {\n errors.push(new SubjectError('题目标题不能为空!', 'EMPTY_TITLE', 'title', row))\n }\n if (answers.length < 1) {\n errors.push(new SubjectError('至少添加一个填空符!', 'NO_BLANK', 'answers', row))\n }\n\n return errors\n }\n\n private _renderPreview() {\n const displayTitle = this.title.replaceAll(/<filter><\\/filter>/g, ' ______')\n const previewAnswers = this.isEdit ? this._answers : (this.answerList || []).map((answer: any) => ({ ...answer, title: this._normalizeAnswerTitle(answer) }))\n return html`\n <div class=\"preview\">\n <span class=\"title\">${this.orderIndex + 1}.${displayTitle}(填空题)</span>\n ${this.richTextContent ? html`<div class=\"rich-text\" .innerHTML=${this.richTextContent}></div>` : ''}\n ${previewAnswers.some(a => a.title)\n ? html`\n <div class=\"content flex flex-wrap\">\n <span>正确答案:</span>\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 ${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 flex-items-start\">\n <div class=\"label\"><span>题目:</span></div>\n <div style=\"flex:1\">\n <div class=\"el-input\">\n <textarea rows=\"3\" .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 <div class=\"flex flex-justify-end\">\n <span class=\"el-link ${this.isSave ? 'is-disabled' : ''}\"\n @click=${() => {\n if (!this.isSave) { this._addBlank() }\n }}>插入填空符</span>\n </div>\n\n ${this.showAnswerSetting\n ? html`\n <div class=\"flex flex-items-center\" style=\"margin-top:12px\">\n <div class=\"label\"><span>答题设置:</span></div>\n <label class=\"el-checkbox\">\n <input type=\"checkbox\" .checked=${this._isInOrder}\n @change=${(e: Event) => { this._isInOrder = (e.target as HTMLInputElement).checked }} />\n 答案不分顺序\n </label>\n <label class=\"el-checkbox\">\n <input type=\"checkbox\" .checked=${this._isIgnoreCase}\n @change=${(e: Event) => { this._isIgnoreCase = (e.target as HTMLInputElement).checked }} />\n 忽略大小写\n </label>\n </div>\n `\n : ''}\n\n ${this._answers.map((a, i) => html`\n <div class=\"answer-item\" style=\"margin-top:12px\">\n <div class=\"label\"><span>第${i + 1}空答案:</span></div>\n <div class=\"answer-tags\">\n ${a.title.split(',').filter(Boolean).map(tag => html`\n <span class=\"el-tag\">\n ${tag}\n ${!this.isSave ? html`<span class=\"el-tag__close\" @click=${() => this._closeTag(tag, a)}>×</span>` : ''}\n </span>\n `)}\n ${!this.isSave\n ? html`\n ${a.showInput\n ? html`\n <input type=\"text\" class=\"el-input--small\"\n @keydown=${(e: KeyboardEvent) => {\n if (e.key === 'Enter') { this._handleAddTag(a) }\n }}\n @input=${(e: Event) => { a.tag = (e.target as HTMLInputElement).value }}\n @blur=${() => this._handleAddTag(a)} />\n `\n : html`\n <span class=\"el-button--small\" @click=${() => { a.showInput = true; this.requestUpdate(); this.updateComplete.then(() => { (this.shadowRoot?.querySelector('.el-input--small') as HTMLInputElement)?.focus() }) }}>\n ${iconPlus}\n <span>${a.title ? '添加同义词' : '添加答案'}</span>\n </span>\n `}\n `\n : ''}\n </div>\n </div>\n `)}\n\n ${this._showRichText\n ? html`\n <div class=\"flex 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`\n <div class=\"flex flex-justify-end\" style=\"margin-top:8px\">\n <span class=\"el-link\" style=\"color:#f56c6c\" @click=${() => { this._showRichText = false; this._richText = '' }}>删除富文本</span>\n </div>\n `\n : ''}\n </div>\n </div>\n `\n : ''}\n\n ${this.showAnalysis\n ? html`\n <div class=\"flex 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":["iconPlus","html","QxsBlankFill","LitElement","constructor","super","arguments","this","orderIndex","title","customId","isEdit","isSave","isSet","isKey","showAction","showAdd","showAnswerSetting","showAnalysis","richTextContent","analysis","examAnswerRelationType","examExpand","examAnswerSetting","isInOrder","isIgnoreCase","uploadImage","async","Promise","resolve","reject","reader","FileReader","onload","e","target","result","onerror","readAsDataURL","file","answerList","modelValue","useModel","_title","_analysis","_answers","tag","showInput","_isInOrder","_isIgnoreCase","_showRichText","_richText","TITLE_MAX","willUpdate","changed","has","_syncProps","replaceAll","_normalizeAnswerTitle","answer","String","length","map","a","blankCount","match","Array","from","_emit","name","detail","dispatchEvent","CustomEvent","bubbles","composed","_addBlank","requestUpdate","_emitModelUpdate","_onTitleInput","el","value","slice","i","_handleAddTag","item","join","_closeTag","tags","split","idx","findIndex","t","splice","toJSON","row","answerType","answers","showRichText","richText","SubjectError","SubjectType","BLANK_FILL","isCorrect","isSetCorrectAnswer","examAnswerSettingBO","examRichTextContent","_save","stopImmediatePropagation","data","err","msg","document","createElement","textContent","Object","assign","style","position","top","left","transform","padding","borderRadius","fontSize","color","background","zIndex","boxShadow","transition","opacity","body","appendChild","setTimeout","remove","showToast","message","validate","errors","push","_renderPreview","displayTitle","previewAnswers","some","_renderEdit","checked","filter","Boolean","key","updateComplete","then","shadowRoot","querySelector","focus","render","styles","css","__decorateClass","property","type","Number","attribute","prototype","state","safeCustomElement"],"mappings":"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"}
1
+ {"version":3,"file":"blank-fill.cjs","sources":["../../../../packages/components-wc/src/subject/blank-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 BlankAnswer {\n title: string\n tag: string\n showInput: boolean\n answerId?: string | number\n}\n\nconst iconPlus = html`\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 24 24\" fill=\"none\"\n stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\">\n <line x1=\"12\" y1=\"5\" x2=\"12\" y2=\"19\"/><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"/>\n </svg>`\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-blank-fill')\nexport class QxsBlankFill extends LitElement {\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 .content { color: #a8abb2; margin-top: 10px; }\n\n .flex { display: flex; }\n .flex-wrap { flex-wrap: wrap; }\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: 70px; 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 .el-tag {\n display: inline-flex; align-items: center; height: 24px; padding: 0 9px;\n font-size: 12px; line-height: 1; color: #3D61E3; background: #ecf5ff;\n border: 1px solid #d9ecff; border-radius: 4px; white-space: nowrap;\n }\n .el-tag .el-tag__close {\n display: inline-flex; align-items: center; justify-content: center;\n margin-left: 4px; width: 16px; height: 16px; border-radius: 50%;\n font-size: 12px; color: #909399; cursor: pointer; transition: all .2s;\n }\n .el-tag .el-tag__close:hover { background: #909399; color: #fff; }\n\n .el-button--small {\n display: inline-flex; align-items: center; gap: 4px;\n height: 24px; padding: 0 10px; font-size: 12px; line-height: 1;\n border: 1px solid #dcdfe6; border-radius: 3px; background: #fff; color: #606266;\n cursor: pointer; transition: all .2s; white-space: nowrap;\n }\n .el-button--small:hover { color: #3D61E3; border-color: #c6e2ff; background-color: #ecf5ff; }\n\n .el-link { color: #3D61E3; cursor: pointer; font-size: 12px; text-decoration: none; }\n .el-link:hover { color: #2D4CB8; }\n .el-link.is-disabled { color: #c0c4cc; cursor: not-allowed; }\n\n .el-input--small { width: 80px; }\n .el-input--small input {\n height: 24px; padding: 0 8px; font-size: 12px; line-height: 24px;\n border: 1px solid #dcdfe6; border-radius: 3px; width: 100%;\n }\n .el-input--small input:focus { border-color: #3D61E3; outline: none; }\n\n .el-checkbox {\n display: inline-flex; align-items: center; gap: 6px; cursor: pointer;\n font-size: 13px; color: #606266; user-select: none; margin-right: 16px;\n }\n .el-checkbox input[type=\"checkbox\"] {\n width: 14px; height: 14px; cursor: pointer; accent-color: #3D61E3;\n }\n\n .answer-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }\n .answer-item .label { min-width: 70px; padding-top: 0; color: #909399; }\n .answer-tags { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; flex: 1; }\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\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 .el-select:focus { border-color: #3D61E3; outline: none; }\n .el-select:disabled { background: #f5f7fa; color: #c0c4cc; cursor: not-allowed; }\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': { isInOrder: boolean, isIgnoreCase: boolean } = { 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\n @property({ type: String, attribute: 'model-value' }) 'model-value' = ''\n @property({ type: Boolean, attribute: 'use-model' }) 'use-model' = false\n\n @state() private _title = ''\n @state() private _analysis = ''\n @state() private _answers: BlankAnswer[] = [{ title: '', tag: '', showInput: false }]\n @state() private _isInOrder = false\n @state() private _isIgnoreCase = true\n @state() private _showRichText = false\n @state() private _richText = ''\n @state() private _selectedTagList: TagItem[] = []\n @state() private _categoryId = ''\n\n private readonly TITLE_MAX = 400\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('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'].replaceAll(/<filter><\\/filter>/g, ' ______')\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 _syncProps() {\n this._title = (this.title || '').replaceAll(/<filter><\\/filter>/g, ' ______')\n this._analysis = this.analysis || ''\n if (this['answer-list']?.length) {\n this._answers = this['answer-list'].map((a: any) => ({\n title: this._normalizeAnswerTitle(a),\n tag: '',\n showInput: false,\n answerId: a?.answerId ?? a?.examAnswerId,\n }))\n }\n else {\n const blankCount = (this._title.match(/ ______/g) || []).length || 1\n this._answers = Array.from({ length: blankCount }, () => ({ title: '', tag: '', showInput: false }))\n }\n if (this['exam-answer-setting']) {\n this._isInOrder = !!this['exam-answer-setting'].isInOrder\n this._isIgnoreCase = !!this['exam-answer-setting'].isIgnoreCase\n }\n this._richText = this['rich-text-content'] || ''\n this._showRichText = !!this['rich-text-content']\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 _addBlank() {\n this._title += ' ______'\n this._answers = [...this._answers, { title: '', tag: '', showInput: false }]\n this.requestUpdate()\n this._emitModelUpdate()\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 const blankCount = (this._title.match(/ ______/g) || []).length\n if (blankCount !== this._answers.length) {\n if (blankCount > this._answers.length) {\n for (let i = this._answers.length; i < blankCount; i++) {\n this._answers = [...this._answers, { title: '', tag: '', showInput: false }]\n }\n }\n else {\n this._answers = this._answers.slice(0, blankCount)\n }\n }\n this._emitModelUpdate()\n }\n\n private _emitModelUpdate() {\n if (this['use-model']) {\n const modelValue = this._title.replaceAll(/ ______/g, '<filter></filter>')\n this.dispatchEvent(new CustomEvent('update:modelValue', {\n bubbles: true,\n composed: true,\n detail: modelValue,\n }))\n }\n }\n\n private _handleAddTag(item: BlankAnswer) {\n item.showInput = false\n if (item.tag) {\n item.title = item.title ? [item.title, item.tag].join(',') : item.tag\n item.tag = ''\n }\n this.requestUpdate()\n }\n\n private _closeTag(tag: string, item: BlankAnswer) {\n if (!tag) { return }\n const tags = item.title.split(',')\n const idx = tags.findIndex((t: string) => t === tag)\n if (idx > -1) {\n tags.splice(idx, 1)\n item.title = tags.join(',')\n }\n this.requestUpdate()\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 async toJSON(): Promise<any> {\n return new Promise((resolve, reject) => {\n const row = { customId: this['custom-id'] || undefined, answerType: 'blank_fill', orderIndex: this['order-index'] }\n\n const title = this['is-edit'] ? this._title : this.title?.replaceAll(/<filter><\\/filter>/g, ' ______') || ''\n const answers = this['is-edit']\n ? this._answers\n : (this['answer-list'] || []).map((answer: any) => ({\n ...answer,\n title: this._normalizeAnswerTitle(answer),\n answerId: answer?.answerId ?? answer?.examAnswerId,\n }))\n const analysis = this['is-edit'] ? this._analysis : this.analysis || ''\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 const filledAnswers = answers.filter((answer: any) => this._normalizeAnswerTitle(answer))\n\n if (!title) {\n reject(new SubjectError('题目标题不能为空!', 'EMPTY_TITLE', 'title', row))\n return\n }\n if (answers.length < 1) {\n reject(new SubjectError('至少添加一个填空符!', 'NO_BLANK', 'answers', row))\n return\n }\n\n const result: any = {\n answerType: SubjectType.BLANK_FILL,\n title: title.replaceAll(/ ______/g, '<filter></filter>'),\n answers: filledAnswers.map((answer: any) => ({\n title: this._normalizeAnswerTitle(answer),\n isCorrect: true,\n ...(answer.answerId ? { answerId: answer.answerId } : {}),\n })),\n analysis,\n isSetCorrectAnswer: filledAnswers.length > 0,\n isKey: this['is-key'],\n examAnswerSettingBO: { isIgnoreCase, isInOrder },\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 errors: SubjectError[] = []\n const row = { customId: this['custom-id'] || undefined, answerType: 'blank_fill', orderIndex: this['order-index'] }\n\n const title = this['is-edit'] ? this._title : this.title?.replaceAll(/<filter><\\/filter>/g, ' ______') || ''\n const answers = this['is-edit'] ? this._answers : (this['answer-list'] || []).map((answer: any) => ({ ...answer, title: this._normalizeAnswerTitle(answer) }))\n\n if (!title) {\n errors.push(new SubjectError('题目标题不能为空!', 'EMPTY_TITLE', 'title', row))\n }\n if (answers.length < 1) {\n errors.push(new SubjectError('至少添加一个填空符!', 'NO_BLANK', 'answers', row))\n }\n\n return errors\n }\n\n private _renderPreview() {\n const displayTitle = this.title.replaceAll(/<filter><\\/filter>/g, ' ______')\n const previewAnswers = this['is-edit'] ? this._answers : (this['answer-list'] || []).map((answer: any) => ({ ...answer, title: this._normalizeAnswerTitle(answer) }))\n return html`\n <div class=\"preview\">\n <span class=\"title\">${this['order-index'] + 1}.${displayTitle}(填空题)</span>\n ${this['rich-text-content'] ? html`<div class=\"rich-text\" .innerHTML=${this['rich-text-content']}></div>` : ''}\n ${previewAnswers.some(a => a.title)\n ? html`\n <div class=\"content flex flex-wrap\">\n <span>正确答案:</span>\n ${previewAnswers.map((a, i) => a.title\n ? html`<span style=\"margin-right:10px\">填空${i + 1}: ${a.title}</span>`\n : '')}\n </div>\n `\n : ''}\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 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 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 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 flex-items-start\">\n <div class=\"label\"><span>题目:</span></div>\n <div style=\"flex:1\">\n <div class=\"el-input\">\n <textarea rows=\"3\" .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 flex-justify-end\">\n <span class=\"el-link ${this['is-save'] ? 'is-disabled' : ''}\"\n @click=${() => {\n if (!this['is-save']) { this._addBlank() }\n }}>插入填空符</span>\n </div>\n\n <div class=\"flex flex-items-center\" style=\"margin-top:12px\">\n <div class=\"label\"><span>答题设置:</span></div>\n <label class=\"el-checkbox\">\n <input type=\"checkbox\" .checked=${this._isInOrder}\n @change=${(e: Event) => { this._isInOrder = (e.target as HTMLInputElement).checked }} />\n 答案不分顺序\n </label>\n <label class=\"el-checkbox\">\n <input type=\"checkbox\" .checked=${this._isIgnoreCase}\n @change=${(e: Event) => { this._isIgnoreCase = (e.target as HTMLInputElement).checked }} />\n 忽略大小写\n </label>\n </div>\n\n ${this._renderTagSection()}\n\n ${this._renderCategorySection()}\n\n ${this._renderResourceSection()}\n\n ${this._answers.map((a, i) => html`\n <div class=\"answer-item\" style=\"margin-top:12px\">\n <div class=\"label\"><span>第${i + 1}空答案:</span></div>\n <div class=\"answer-tags\">\n ${a.title.split(',').filter(Boolean).map(tag => html`\n <span class=\"el-tag\">\n ${tag}\n ${!this['is-save'] ? html`<span class=\"el-tag__close\" @click=${() => this._closeTag(tag, a)}>×</span>` : ''}\n </span>\n `)}\n ${!this['is-save']\n ? html`\n ${a.showInput\n ? html`\n <input type=\"text\" class=\"el-input--small\"\n @keydown=${(e: KeyboardEvent) => {\n if (e.key === 'Enter') { this._handleAddTag(a) }\n }}\n @input=${(e: Event) => { a.tag = (e.target as HTMLInputElement).value }}\n @blur=${() => this._handleAddTag(a)} />\n `\n : html`\n <span class=\"el-button--small\" @click=${() => { a.showInput = true; this.requestUpdate(); this.updateComplete.then(() => { (this.shadowRoot?.querySelector('.el-input--small') as HTMLInputElement)?.focus() }) }}>\n ${iconPlus}\n <span>${a.title ? '添加同义词' : '添加答案'}</span>\n </span>\n `}\n `\n : ''}\n </div>\n </div>\n `)}\n\n ${this._showRichText\n ? html`\n <div class=\"flex 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`\n <div class=\"flex flex-justify-end\" style=\"margin-top:8px\">\n <span class=\"el-link\" style=\"color:#f56c6c\" @click=${() => { this._showRichText = false; this._richText = '' }}>删除富文本</span>\n </div>\n `\n : ''}\n </div>\n </div>\n `\n : ''}\n\n ${this['show-analysis']\n ? html`\n <div class=\"flex 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":["iconPlus","html","QxsBlankFill","LitElement","constructor","super","arguments","this","title","analysis","isInOrder","isIgnoreCase","async","Promise","resolve","reject","reader","FileReader","onload","e","target","result","onerror","readAsDataURL","file","_title","_analysis","_answers","tag","showInput","_isInOrder","_isIgnoreCase","_showRichText","_richText","_selectedTagList","_categoryId","TITLE_MAX","willUpdate","changed","has","_syncProps","replaceAll","Array","isArray","map","item","String","_normalizeAnswerTitle","answer","length","a","answerId","examAnswerId","blankCount","match","from","_emit","name","detail","dispatchEvent","CustomEvent","bubbles","composed","_addBlank","requestUpdate","_emitModelUpdate","_onTitleInput","el","value","slice","i","modelValue","_handleAddTag","join","_closeTag","tags","split","idx","findIndex","t","splice","_removeTag","tagId","filter","customId","examId","_chooseTag","_onCategoryChange","_imageResources","resourceType","resource","middle","url","Boolean","_videoResource","find","_categoryLabel","matched","categoryId","categoryName","toJSON","row","answerType","orderIndex","answers","showRichText","richText","selectedTagList","filledAnswers","SubjectError","SubjectType","BLANK_FILL","isCorrect","isSetCorrectAnswer","isKey","examAnswerSettingBO","examRichTextContent","memberTagInfo","tagInfos","resourceList","examResourceBOList","_save","stopImmediatePropagation","data","err","msg","document","createElement","textContent","Object","assign","style","position","top","left","transform","padding","borderRadius","fontSize","color","background","zIndex","boxShadow","transition","opacity","body","appendChild","setTimeout","remove","showToast","message","validate","errors","push","_renderPreview","displayTitle","previewAnswers","some","tagName","_renderResourceSection","_renderTagSection","_renderCategorySection","images","video","src","_renderEdit","checked","key","updateComplete","then","shadowRoot","querySelector","focus","render","styles","css","__decorateClass","property","type","Number","attribute","prototype","state","safeCustomElement"],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- "use strict";var t=require("lit"),e=require("lit/decorators.js"),s=require("../base/define.cjs"),o=Object.defineProperty,r=Object.getOwnPropertyDescriptor,i=(t,e,s,i)=>{for(var a,l=i>1?void 0:i?r(e,s):e,p=t.length-1;p>=0;p--)(a=t[p])&&(l=(i?a(e,s,l):a(l))||l);return i&&l&&o(e,s,l),l};exports.QxsSubjectLayout=class extends t.LitElement{constructor(){super(...arguments),this.showEdit=!1}render(){return this.showEdit?t.html`
1
+ "use strict";var t=require("lit"),e=require("lit/decorators.js"),s=require("../base/define.cjs"),o=Object.defineProperty,r=Object.getOwnPropertyDescriptor,i=(t,e,s,i)=>{for(var a,l=i>1?void 0:i?r(e,s):e,p=t.length-1;p>=0;p--)(a=t[p])&&(l=(i?a(e,s,l):a(l))||l);return i&&l&&o(e,s,l),l};exports.QxsSubjectLayout=class extends t.LitElement{constructor(){super(...arguments),this["show-edit"]=!1}render(){return this["show-edit"]?t.html`
2
2
  <div class="layout">
3
3
  <div class="edit">
4
4
  <slot name="edit"></slot>
@@ -17,5 +17,5 @@
17
17
  .layout { }
18
18
  .preview { padding: 12px 10px 10px; }
19
19
  .edit { position: relative; padding: 12px 10px 10px; background-color: #fff; border-radius: 6px; }
20
- `,i([e.property({type:Boolean,attribute:"show-edit"})],exports.QxsSubjectLayout.prototype,"showEdit",2),exports.QxsSubjectLayout=i([s.safeCustomElement("qxs-subject-layout")],exports.QxsSubjectLayout);
20
+ `,i([e.property({type:Boolean,attribute:"show-edit"})],exports.QxsSubjectLayout.prototype,"show-edit",2),exports.QxsSubjectLayout=i([s.safeCustomElement("qxs-subject-layout")],exports.QxsSubjectLayout);
21
21
  //# sourceMappingURL=layout.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"layout.cjs","sources":["../../../../packages/components-wc/src/subject/layout.ts"],"sourcesContent":["import { css, html, LitElement } from 'lit'\nimport { property } from 'lit/decorators.js'\nimport { safeCustomElement } from '../base/define'\n\n@safeCustomElement('qxs-subject-layout')\nexport class QxsSubjectLayout extends LitElement {\n static styles = css`\n :host { display: block; width: 100%; font-family: system-ui, -apple-system, \"PingFang SC\", \"Microsoft YaHei\", sans-serif; font-size: 12px; color: #5a5a5a; }\n .layout { }\n .preview { padding: 12px 10px 10px; }\n .edit { position: relative; padding: 12px 10px 10px; background-color: #fff; border-radius: 6px; }\n `\n\n @property({ type: Boolean, attribute: 'show-edit' }) showEdit = false\n\n render() {\n if (this.showEdit) {\n return html`\n <div class=\"layout\">\n <div class=\"edit\">\n <slot name=\"edit\"></slot>\n <slot></slot>\n </div>\n </div>\n `\n }\n return html`\n <div class=\"layout\">\n <div class=\"preview\">\n <slot name=\"preview\"></slot>\n <slot></slot>\n </div>\n </div>\n `\n }\n}\n\nexport function register() {}\n"],"names":["QxsSubjectLayout","LitElement","constructor","super","arguments","this","showEdit","render","html","styles","css","__decorateClass","property","type","Boolean","attribute","prototype","safeCustomElement"],"mappings":"6RAKaA,QAAAA,iBAAN,cAA+BC,EAAAA,WAA/BC,WAAAA,GAAAC,SAAAC,WAQgDC,KAAAC,UAAW,CAAA,CAEhEC,MAAAA,GACE,OAAIF,KAAKC,SACAE,EAAAA,IAAA;;;;;;;QASFA,EAAAA,IAAA;;;;;;;KAQT,GA7BWR,QAAAA,iBACJS,OAASC,EAAAA,GAAA;;;;;IAOqCC,EAAA,CAApDC,EAAAA,SAAS,CAAEC,KAAMC,QAASC,UAAW,eAR3Bf,QAAAA,iBAQ0CgB,UAAA,WAAA,GAR1ChB,QAAAA,iBAANW,EAAA,CADNM,EAAAA,kBAAkB,uBACNjB,QAAAA"}
1
+ {"version":3,"file":"layout.cjs","sources":["../../../../packages/components-wc/src/subject/layout.ts"],"sourcesContent":["import { css, html, LitElement } from 'lit'\nimport { property } from 'lit/decorators.js'\nimport { safeCustomElement } from '../base/define'\n\n@safeCustomElement('qxs-subject-layout')\nexport class QxsSubjectLayout extends LitElement {\n static styles = css`\n :host { display: block; width: 100%; font-family: system-ui, -apple-system, \"PingFang SC\", \"Microsoft YaHei\", sans-serif; font-size: 12px; color: #5a5a5a; }\n .layout { }\n .preview { padding: 12px 10px 10px; }\n .edit { position: relative; padding: 12px 10px 10px; background-color: #fff; border-radius: 6px; }\n `\n\n @property({ type: Boolean, attribute: 'show-edit' }) 'show-edit' = false\n\n render() {\n if (this['show-edit']) {\n return html`\n <div class=\"layout\">\n <div class=\"edit\">\n <slot name=\"edit\"></slot>\n <slot></slot>\n </div>\n </div>\n `\n }\n return html`\n <div class=\"layout\">\n <div class=\"preview\">\n <slot name=\"preview\"></slot>\n <slot></slot>\n </div>\n </div>\n `\n }\n}\n\nexport function register() {}\n"],"names":["QxsSubjectLayout","LitElement","constructor","super","arguments","this","render","html","styles","css","__decorateClass","property","type","Boolean","attribute","prototype","safeCustomElement"],"mappings":"6RAKaA,QAAAA,iBAAN,cAA+BC,EAAAA,WAA/BC,WAAAA,GAAAC,SAAAC,WAQgDC,KAAA,cAAc,CAAA,CAEnEC,MAAAA,GACE,OAAID,KAAK,aACAE,EAAAA,IAAA;;;;;;;QASFA,EAAAA,IAAA;;;;;;;KAQT,GA7BWP,QAAAA,iBACJQ,OAASC,EAAAA,GAAA;;;;;IAOqCC,EAAA,CAApDC,EAAAA,SAAS,CAAEC,KAAMC,QAASC,UAAW,eAR3Bd,QAAAA,iBAQ0Ce,UAAA,YAAA,GAR1Cf,QAAAA,iBAANU,EAAA,CADNM,EAAAA,kBAAkB,uBACNhB,QAAAA"}
@@ -1,38 +1,38 @@
1
- "use strict";var e=require("lit"),t=require("lit/decorators.js"),s=require("sortablejs"),i=require("../base/define.cjs"),r=require("../base/uid.cjs"),o=require("./single.cjs"),a=require("./types.cjs");require("./action.cjs"),require("./blank-fill.cjs"),require("./layout.cjs"),require("./text-fill.cjs"),require("./scale.cjs"),require("./page-end.cjs"),require("./type.cjs");var n=Object.defineProperty,l=Object.getOwnPropertyDescriptor,h=(e,t,s,i)=>{for(var r,o=i>1?void 0:i?l(t,s):t,a=e.length-1;a>=0;a--)(r=e[a])&&(o=(i?r(t,s,o):r(o))||o);return i&&o&&n(t,s,o),o};a.SubjectType.SINGLE,a.SubjectType.MULTIPLE,a.SubjectType.SORT,a.SubjectType.BLANK_FILL,a.SubjectType.TEXT_FILL,a.SubjectType.SCALE,exports.QxsSubjectList=class extends e.LitElement{constructor(){super(...arguments),this.isPreview=!1,this.useModelAttr=null,this._modelValueAttr="",this.uploadImage=async e=>new Promise((t,s)=>{const i=new FileReader;i.onload=e=>t(e.target?.result),i.onerror=s,i.readAsDataURL(e)}),this.categoryList=[],this.showTag=!1,this.showCategory=!1,this.showAi=!1,this.showResource=!1,this.showJump=!1,this.showAdd=!0,this.showAnswerSetting=!1,this.showKey=!1,this.searchApi="",this._list=[],this._sortMode=!1,this._sortable=null,this._initialDataProcessed=!1}get modelValue(){return JSON.stringify(this._list)}set modelValue(e){if(e&&e!==this._modelValueAttr){this._modelValueAttr=e;try{const t=JSON.parse(e);Array.isArray(t)&&(this._list=this._normalizeIncomingList(t),this.requestUpdate())}catch{}}}get _useModel(){return"true"===this.useModelAttr||""===this.useModelAttr||this.hasAttribute("use-model")}get subjectList(){return this._list}set subjectList(e){if(e){if("string"==typeof e)try{e=JSON.parse(e)}catch{return this._list=[],void this.requestUpdate()}if(!Array.isArray(e))return this._list=[],void this.requestUpdate();this._list=this._normalizeIncomingList(e),this.requestUpdate()}else this._list=[]}attributeChangedCallback(e,t,s){if(super.attributeChangedCallback(e,t,s),"subject-list"===e&&s&&!this._list.length){if(s.includes("[object Object]"))return;try{const e=JSON.parse(s);Array.isArray(e)&&(this._list=this._normalizeIncomingList(e),this.requestUpdate())}catch{}}}get _isPreviewValue(){const e=this.isPreview;return"string"==typeof e?"false"!==e:!!e}connectedCallback(){super.connectedCallback(),this._initialDataProcessed||(this._initialDataProcessed=!0,Promise.resolve().then(()=>{0===this._list.length&&this._processAttributeList()}))}_processAttributeList(){const e=this.getAttribute("subject-list");if(e&&"[]"!==e&&!e.includes("[object Object]"))try{const t=JSON.parse(e);Array.isArray(t)&&t.length>0&&(this._list=this._normalizeIncomingList(t),this.requestUpdate())}catch{}}_normalizeAnswer(e){return{...e,title:String(e?.title??e?.answer??""),answerId:e?.answerId??e?.examAnswerId}}_normalizeItem(e){const t=e?.answerType||(e?.richTextContent?e?.answerType:e?.examTypeEnum),s=Array.isArray(e?.answers)?e.answers.map(e=>this._normalizeAnswer(e)):[];return{...e,customId:e?.customId||r.uid(),...t?{answerType:t}:{},...s.length||Array.isArray(e?.answers)?{answers:s}:{}}}_rebuildPageEndMarkers(e){if(!e.length)return e;if(e.some(e=>"page_end"===e?.answerType))return e;if(!e.some(e=>Number(e?.pageIndex)>1))return e;let t=1;const s=[];return e.forEach(e=>{const i=Number(e?.pageIndex)||1;if(i>t)if(s.length>0)for(;t<i;)s.push({customId:r.uid(),answerType:"page_end"}),t++;else t=i;s.push(e)}),s}_normalizeIncomingList(e){const t=e.map(e=>this._normalizeItem(e));return this._rebuildPageEndMarkers(t)}firstUpdated(){this.updateComplete.then(()=>this._initSortable())}updated(e){e.has("_sortMode")&&(this._sortable?.destroy(),this._sortable=null,this.updateComplete.then(()=>this._initSortable())),e.has("_list")&&this._sortMode&&setTimeout(()=>{this._sortable&&(this._sortable.destroy(),this._sortable=null),this._initSortable()},50)}disconnectedCallback(){super.disconnectedCallback(),this._sortable?.destroy(),this._sortable=null}_initSortable(){if(!this._sortMode)return;this.renderRoot.querySelector(".sort-list")&&(this._sortable&&(this._sortable.destroy(),this._sortable=null),requestAnimationFrame(()=>{const e=this.renderRoot.querySelector(".sort-list");e&&!this._sortable&&(this._sortable=s.create(e,{handle:".sort-handle",animation:200,ghostClass:"sort-ghost",chosenClass:"sort-chosen",onEnd:e=>{const{oldIndex:t,newIndex:s}=e;if(void 0===t||void 0===s||t===s)return;const i=[...this._list],[r]=i.splice(t,1);i.splice(s,0,r),this._list=i,this._emitListChange()}}))}))}_emit(e,t){this.dispatchEvent(new CustomEvent(e,{bubbles:!0,composed:!0,detail:t??null}))}_emitListChange(){this._emit("change",this._list),this._useModel&&(this._modelValueAttr=JSON.stringify(this._list),this._emit("list-change",this._list))}_withPageIndex(e){const t=[];let s=1,i=!1;return e.forEach(e=>{e&&("page_end"!==e.answerType?(i&&(s+=1,i=!1),t.push({...e,pageIndex:s})):t.length>0&&(i=!0))}),t}async toJSON(){const e=this.renderRoot.querySelectorAll("qxs-subject-single, qxs-blank-fill, qxs-text-fill, qxs-scale, qxs-page-end, qxs-subject-rich-text");if(!e||0===e.length)return[];const t=[],s=[];for(const i of e)if("function"==typeof i.toJSON)try{const e=await i.toJSON();t.push(e)}catch(e){e instanceof o.SubjectError?s.push(e):s.push(new o.SubjectError(e.message||"未知错误","UNKNOWN","unknown"))}if(s.length>0)throw s;return this._withPageIndex(t)}async validate(){const e=this.renderRoot.querySelectorAll("qxs-subject-single, qxs-blank-fill, qxs-text-fill, qxs-scale, qxs-page-end");if(!e||0===e.length)return{valid:!0,errors:[]};const t=[];for(const s of e)if("function"==typeof s.validate){const e=s.validate();e?.length&&t.push(...e)}return{valid:0===t.length,errors:t}}get currentList(){return this._list}addSubject(e,t){let s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;if("page_end"===e){const e={customId:r.uid(),answerType:"page_end"},s=[...this._list];return"number"==typeof t&&t>=0?s.splice(t+1,0,e):s.push(e),this._list=s,this.requestUpdate(),void this._emitListChange()}const i={customId:r.uid(),answerType:e,title:"",answers:[],analysis:"",scaleQuestionList:[],isEdit:!0,isSave:!1,isRealCanDel:!0,hasSet:!1,isKey:!1,answerCheckType:1,examAnswerRelationType:s??0},o=[...this._list];"number"==typeof t&&t>=0?o.splice(t+1,0,i):o.push(i),this._list=o,this.requestUpdate(),this._emitListChange()}addExam(e){const t=this._normalizeIncomingList(e).map(e=>({...e,isEdit:!0,isSave:!1,isRealCanDel:!0,hasSet:!1}));this._list=[...this._list,...t],this._emitListChange()}uploadExcel(e){this._list=[...this._list,...this._normalizeIncomingList(e).map(e=>({...e,isRealCanDel:!0}))],this._emitListChange()}setAnswerRelation(e,t,s){const i=this._list.find(e=>e.customId===t);if(i){const t=i.answers?.find(e=>e.customAnswerId===s);t&&(t.answerRelations=e)}this.requestUpdate(),this._emitListChange()}setTagList(e,t){const s=this._list.find(e=>e.customId===t);if(s)return s.tagInfos=Array.isArray(e)?e:[],s.memberTagInfo=Array.isArray(e)?e:[],this._list=[...this._list],void this._emitListChange();this.requestUpdate()}_orderIndex(e){let t=0,s=0;return this._list.forEach(i=>{t++,i.customId===e&&(s=t)}),s-1}_move(e,t){const s=[...this._list];"up"===t&&e>0?[s[e-1],s[e]]=[s[e],s[e-1]]:"down"===t&&e<s.length-1&&([s[e],s[e+1]]=[s[e+1],s[e]]),this._list=s,this._emitListChange()}_save(e,t){this._list=this._list.map((s,i)=>i===e?{...s,...t.detail,isEdit:!1,isSave:!0}:s),this._emitListChange()}_deleteByCustomId(e){this._list=this._list.filter(t=>t.customId!==e),this._emitListChange()}_delete(e){const t=[...this._list];t.splice(e,1),this._list=t,this._emitListChange()}_setEdit(e,t){this._list=this._list.map((s,i)=>i===e?{...s,isEdit:t}:s)}_pageEndTotal(){return this._list.filter(e=>"page_end"===e.answerType).length+1}_pageEndIndex(e){return this._list.slice(0,e+1).filter(e=>"page_end"===e.answerType).length}_syncRelationAnswer(e,t){const s=this._list[e];if(!s||!Array.isArray(s.answers)||!t?.answer)return;const i=[...s.answers],r=t.answer;let o="number"==typeof t.answerIndex?t.answerIndex:-1;(o<0||o>=i.length)&&(o=i.findIndex((e,t)=>String(e.customAnswerId||"")===String(r.customAnswerId||"")||String(e.answerId||"")===String(r.answerId||"")||String(e.orderIndex||t+1)===String(r.orderIndex||""))),o<0||(i[o]={...i[o],customAnswerId:r.customAnswerId||i[o].customAnswerId||r.answerId},this._list[e]={...s,answers:i},this._list=[...this._list])}_renderItem(t,s){const i=this._orderIndex(t.customId),r=(t.isEdit,t.hasSet,t.isRealCanDel,this._isPreviewValue,t.examAnswerRelationType,e=>this._move(s,e.detail)),o=()=>this._deleteByCustomId(t.customId),n=e=>this._save(s,e),l=()=>this._setEdit(s,!0),h=e=>this.addSubject(e.detail?.type??e.detail,s);return[a.SubjectType.SINGLE,a.SubjectType.MULTIPLE,a.SubjectType.SORT].includes(t.answerType)?e.html`<qxs-subject-single
1
+ "use strict";var e=require("lit"),t=require("lit/decorators.js"),s=require("sortablejs"),i=require("../base/define.cjs"),r=require("../base/uid.cjs"),a=require("./single.cjs"),o=require("./types.cjs");require("./action.cjs"),require("./blank-fill.cjs"),require("./layout.cjs"),require("./text-fill.cjs"),require("./scale.cjs"),require("./page-end.cjs"),require("./type.cjs");var n=Object.defineProperty,l=Object.getOwnPropertyDescriptor,h=(e,t,s,i)=>{for(var r,a=i>1?void 0:i?l(t,s):t,o=e.length-1;o>=0;o--)(r=e[o])&&(a=(i?r(t,s,a):r(a))||a);return i&&a&&n(t,s,a),a};exports.QxsSubjectList=class extends e.LitElement{constructor(){super(...arguments),this["is-preview"]=!1,this["use-model"]=null,this._modelValueAttr="",this["upload-image"]=async e=>new Promise((t,s)=>{const i=new FileReader;i.onload=e=>t(e.target?.result),i.onerror=s,i.readAsDataURL(e)}),this["category-list"]=[],this["show-tag"]=!1,this["show-category"]=!1,this["show-ai"]=!1,this["show-resource"]=!1,this["show-jump"]=!1,this["show-add"]=!0,this["show-answer-setting"]=!1,this["show-key"]=!1,this["search-api"]="",this._list=[],this._sortMode=!1,this._sortable=null,this._initialDataProcessed=!1}get"model-value"(){return JSON.stringify(this._list)}set"model-value"(e){if(e&&e!==this._modelValueAttr){this._modelValueAttr=e;try{const t=JSON.parse(e);Array.isArray(t)&&(this._list=this._normalizeIncomingList(t),this.requestUpdate())}catch{}}}get _useModel(){return"true"===this["use-model"]||""===this["use-model"]||this.hasAttribute("use-model")}get"subject-list"(){return this._list}set"subject-list"(e){if(e){if("string"==typeof e)try{e=JSON.parse(e)}catch{return this._list=[],void this.requestUpdate()}if(!Array.isArray(e))return this._list=[],void this.requestUpdate();this._list=this._normalizeIncomingList(e),this.requestUpdate()}else this._list=[]}attributeChangedCallback(e,t,s){if(super.attributeChangedCallback(e,t,s),"subject-list"===e&&s&&!this._list.length){if(s.includes("[object Object]"))return;try{const e=JSON.parse(s);Array.isArray(e)&&(this._list=this._normalizeIncomingList(e),this.requestUpdate())}catch{}}}get _isPreviewValue(){const e=this["is-preview"];return"string"==typeof e?"false"!==e:!!e}connectedCallback(){super.connectedCallback(),this._initialDataProcessed||(this._initialDataProcessed=!0,Promise.resolve().then(()=>{0===this._list.length&&this._processAttributeList()}))}_processAttributeList(){const e=this.getAttribute("subject-list");if(e&&"[]"!==e&&!e.includes("[object Object]"))try{const t=JSON.parse(e);Array.isArray(t)&&t.length>0&&(this._list=this._normalizeIncomingList(t),this.requestUpdate())}catch{}}_normalizeAnswer(e){return{...e,title:String(e?.title??e?.answer??""),answerId:e?.answerId??e?.examAnswerId}}_normalizeItem(e){const t=e?.answerType||(e?.richTextContent?e?.answerType:e?.examTypeEnum),s=Array.isArray(e?.answers)?e.answers.map(e=>this._normalizeAnswer(e)):[];return{...e,customId:e?.customId||r.uid(),...t?{answerType:t}:{},...s.length||Array.isArray(e?.answers)?{answers:s}:{}}}_rebuildPageEndMarkers(e){if(!e.length)return e;if(e.some(e=>"page_end"===e?.answerType))return e;if(!e.some(e=>Number(e?.pageIndex)>1))return e;let t=1;const s=[];return e.forEach(e=>{const i=Number(e?.pageIndex)||1;if(i>t)if(s.length>0)for(;t<i;)s.push({customId:r.uid(),answerType:"page_end"}),t++;else t=i;s.push(e)}),s}_normalizeIncomingList(e){const t=e.map(e=>this._normalizeItem(e));return this._rebuildPageEndMarkers(t)}firstUpdated(){this.updateComplete.then(()=>this._initSortable())}updated(e){e.has("_sortMode")&&(this._sortable?.destroy(),this._sortable=null,this.updateComplete.then(()=>this._initSortable())),e.has("_list")&&this._sortMode&&setTimeout(()=>{this._sortable&&(this._sortable.destroy(),this._sortable=null),this._initSortable()},50)}disconnectedCallback(){super.disconnectedCallback(),this._sortable?.destroy(),this._sortable=null}_initSortable(){if(!this._sortMode)return;this.renderRoot.querySelector(".sort-list")&&(this._sortable&&(this._sortable.destroy(),this._sortable=null),requestAnimationFrame(()=>{const e=this.renderRoot.querySelector(".sort-list");e&&!this._sortable&&(this._sortable=s.create(e,{handle:".sort-handle",animation:200,ghostClass:"sort-ghost",chosenClass:"sort-chosen",onEnd:e=>{const{oldIndex:t,newIndex:s}=e;if(void 0===t||void 0===s||t===s)return;const i=[...this._list],[r]=i.splice(t,1);i.splice(s,0,r),this._list=i,this._emitListChange()}}))}))}_emit(e,t){this.dispatchEvent(new CustomEvent(e,{bubbles:!0,composed:!0,detail:t??null}))}_emitListChange(){this._emit("change",this._list),this._useModel&&(this._modelValueAttr=JSON.stringify(this._list),this._emit("list-change",this._list))}_withPageIndex(e){const t=[];let s=1,i=!1;return e.forEach(e=>{e&&("page_end"!==e.answerType?(i&&(s+=1,i=!1),t.push({...e,pageIndex:s})):t.length>0&&(i=!0))}),t}async toJSON(){const e=this.renderRoot.querySelectorAll("qxs-subject-single, qxs-blank-fill, qxs-text-fill, qxs-scale, qxs-page-end, qxs-subject-rich-text");if(!e||0===e.length)return[];const t=[],s=[];for(const i of e)if("function"==typeof i.toJSON)try{const e=await i.toJSON();t.push(e)}catch(e){e instanceof a.SubjectError?s.push(e):s.push(new a.SubjectError(e.message||"未知错误","UNKNOWN","unknown"))}if(s.length>0)throw s;return this._withPageIndex(t)}async validate(){const e=this.renderRoot.querySelectorAll("qxs-subject-single, qxs-blank-fill, qxs-text-fill, qxs-scale, qxs-page-end");if(!e||0===e.length)return{valid:!0,errors:[]};const t=[];for(const s of e)if("function"==typeof s.validate){const e=s.validate();e?.length&&t.push(...e)}return{valid:0===t.length,errors:t}}get currentList(){return this._list}addSubject(e,t){let s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;if("page_end"===e){const e={customId:r.uid(),answerType:"page_end"},s=[...this._list];return"number"==typeof t&&t>=0?s.splice(t+1,0,e):s.push(e),this._list=s,this.requestUpdate(),void this._emitListChange()}const i={customId:r.uid(),answerType:e,title:"",answers:[],analysis:"",scaleQuestionList:[],isEdit:!0,isSave:!1,isRealCanDel:!0,hasSet:!1,isKey:!1,answerCheckType:1,examAnswerRelationType:s??0},a=[...this._list];"number"==typeof t&&t>=0?a.splice(t+1,0,i):a.push(i),this._list=a,this.requestUpdate(),this._emitListChange()}addExam(e){const t=this._normalizeIncomingList(e).map(e=>({...e,isEdit:!0,isSave:!1,isRealCanDel:!0,hasSet:!1}));this._list=[...this._list,...t],this._emitListChange()}uploadExcel(e){this._list=[...this._list,...this._normalizeIncomingList(e).map(e=>({...e,isRealCanDel:!0}))],this._emitListChange()}setAnswerRelation(e,t,s){const i=this._list.find(e=>e.customId===t);if(i){const t=i.answers?.find(e=>e.customAnswerId===s);t&&(t.answerRelations=e)}this.requestUpdate(),this._emitListChange()}setTagList(e,t){const s=this._list.find(e=>e.customId===t);if(s)return s.tagInfos=Array.isArray(e)?e:[],s.memberTagInfo=Array.isArray(e)?e:[],this._list=[...this._list],void this._emitListChange();this.requestUpdate()}_orderIndex(e){let t=0,s=0;return this._list.forEach(i=>{t++,i.customId===e&&(s=t)}),s-1}_move(e,t){const s=[...this._list];"up"===t&&e>0?[s[e-1],s[e]]=[s[e],s[e-1]]:"down"===t&&e<s.length-1&&([s[e],s[e+1]]=[s[e+1],s[e]]),this._list=s,this._emitListChange()}_save(e,t){this._list=this._list.map((s,i)=>i===e?{...s,...t.detail,isEdit:!1,isSave:!0}:s),this._emitListChange()}_deleteByCustomId(e){this._list=this._list.filter(t=>t.customId!==e),this._emitListChange()}_delete(e){const t=[...this._list];t.splice(e,1),this._list=t,this._emitListChange()}_setEdit(e,t){this._list=this._list.map((s,i)=>i===e?{...s,isEdit:t}:s)}_pageEndTotal(){return this._list.filter(e=>"page_end"===e.answerType).length+1}_pageEndIndex(e){return this._list.slice(0,e+1).filter(e=>"page_end"===e.answerType).length}_syncRelationAnswer(e,t){const s=this._list[e];if(!s||!Array.isArray(s.answers)||!t?.answer)return;const i=[...s.answers],r=t.answer;let a="number"==typeof t.answerIndex?t.answerIndex:-1;(a<0||a>=i.length)&&(a=i.findIndex((e,t)=>String(e.customAnswerId||"")===String(r.customAnswerId||"")||String(e.answerId||"")===String(r.answerId||"")||String(e.orderIndex||t+1)===String(r.orderIndex||""))),a<0||(i[a]={...i[a],customAnswerId:r.customAnswerId||i[a].customAnswerId||r.answerId},this._list[e]={...s,answers:i},this._list=[...this._list])}_renderItem(t,s){const i=this._orderIndex(t.customId),r=(t.isEdit,t.hasSet,t.isRealCanDel,this._isPreviewValue,t.examAnswerRelationType,e=>this._move(s,e.detail)),a=()=>this._deleteByCustomId(t.customId),n=e=>this._save(s,e),l=()=>this._setEdit(s,!0),h=e=>this.addSubject(e.detail?.type??e.detail,s);return[o.SubjectType.SINGLE,o.SubjectType.MULTIPLE,o.SubjectType.SORT].includes(t.answerType)?e.html`<qxs-subject-single
2
2
  .title=${t.title||""}
3
- .answerList=${t.answers||[]}
4
- .tagList=${t.tagInfos||t.memberTagInfo||[]}
5
- .categoryList=${this.categoryList}
6
- .resourceList=${t.examResourceBOList||t.resourceList||[]}
7
- .searchHandler=${this.searchHandler}
8
- .uploadImage=${this.uploadImage}
3
+ .answer-list=${t.answers||[]}
4
+ .tag-list=${t.tagInfos||t.memberTagInfo||[]}
5
+ .category-list=${this["category-list"]}
6
+ .resource-list=${t.examResourceBOList||t.resourceList||[]}
7
+ .search-handler=${this["search-handler"]}
8
+ .upload-image=${this["upload-image"]}
9
9
  order-index=${i}
10
- .isEdit=${!!t.isEdit}
11
- .isSet=${!!t.hasSet}
12
- .isSave=${!t.isRealCanDel}
13
- .showAction=${!this._isPreviewValue}
14
- .showAdd=${this.showAdd}
15
- .showAnswerSetting=${this.showAnswerSetting}
16
- .showKey=${this.showKey}
17
- .showTag=${this.showTag}
18
- .showCategory=${this.showCategory}
19
- .showAi=${this.showAi}
20
- .showResource=${this.showResource}
21
- .showJump=${this.showJump}
22
- .isKey=${!!t.isKey}
10
+ .is-edit=${!!t.isEdit}
11
+ .is-set=${!!t.hasSet}
12
+ .is-save=${!t.isRealCanDel}
13
+ .show-action=${!this._isPreviewValue}
14
+ .show-add=${this["show-add"]}
15
+ .show-answer-setting=${this["show-answer-setting"]}
16
+ .show-key=${this["show-key"]}
17
+ .show-tag=${this["show-tag"]}
18
+ .show-category=${this["show-category"]}
19
+ .show-ai=${this["show-ai"]}
20
+ .show-resource=${this["show-resource"]}
21
+ .show-jump=${this["show-jump"]}
22
+ .is-key=${!!t.isKey}
23
23
  question-type=${String(t.answerType)}
24
24
  answer-check-type=${t.answerCheckType??1}
25
25
  exam-answer-relation-type=${t.examAnswerRelationType??0}
26
26
  rich-text-content=${t.examRichTextContent||""}
27
27
  analysis=${t.analysis||""}
28
- .leastAnswerCount=${Number(t.leastAnswerCount)||0}
28
+ .least-answer-count=${Number(t.leastAnswerCount)||0}
29
29
  exam-expand=${t.examExpand||""}
30
30
  category-id=${t.categoryId||t.category?.categoryId||""}
31
31
  ai-answer=${t.aiAnswer||""}
32
- search-api=${this.searchApi}
32
+ search-api=${this["search-api"]}
33
33
  custom-id=${t.customId||""}
34
34
  exam-id=${t.examId??0}
35
- @move=${r} @delete=${o} @save=${n} @edit=${l} @add=${h}
35
+ @move=${r} @delete=${a} @save=${n} @edit=${l} @add=${h}
36
36
  @set-key=${e=>{this._list[s].isKey=e.detail.value,this.requestUpdate()}}
37
37
  @title-select=${e=>this._emit("title-select",e.detail)}
38
38
  @choose-tag=${e=>this._emit("choose-tag",{...e.detail,item:this._list[s]})}
@@ -40,53 +40,87 @@
40
40
  @category-change=${e=>{this._list[s].categoryId=e.detail.value,this.requestUpdate()}}
41
41
  @jump=${e=>this._emit("jump",{...e.detail,item:this._list[s]})}
42
42
  @set-relation=${e=>{this._syncRelationAnswer(s,e.detail),this._emit("set-relation",{...e.detail,item:this._list[s]})}}
43
- ></qxs-subject-single>`:t.answerType===a.SubjectType.BLANK_FILL?e.html`<qxs-blank-fill
43
+ ></qxs-subject-single>`:t.answerType===o.SubjectType.BLANK_FILL?e.html`<qxs-blank-fill
44
44
  .title=${t.title||""}
45
- .answerList=${t.answers||[]}
46
- .examAnswerSetting=${t.examAnswerSettingBO||t.examAnswerSettingVO||{}}
47
- .uploadImage=${this.uploadImage}
45
+ .answer-list=${t.answers||[]}
46
+ .tag-list=${t.tagInfos||t.memberTagInfo||[]}
47
+ .category-list=${this["category-list"]}
48
+ .resource-list=${t.examResourceBOList||t.resourceList||[]}
49
+ .exam-answer-setting=${t.examAnswerSettingBO||t.examAnswerSettingVO||{}}
50
+ .upload-image=${this["upload-image"]}
48
51
  order-index=${i}
49
- .isEdit=${!!t.isEdit} .isSet=${!!t.hasSet} .isSave=${!t.isRealCanDel} .showAction=${!this._isPreviewValue} .showAdd=${this.showAdd}
50
- .showAnswerSetting=${this.showAnswerSetting}
52
+ .is-edit=${!!t.isEdit} .is-set=${!!t.hasSet} .is-save=${!t.isRealCanDel} .show-action=${!this._isPreviewValue} .show-add=${this["show-add"]}
53
+ .show-answer-setting=${this["show-answer-setting"]}
54
+ .show-tag=${this["show-tag"]}
55
+ .show-category=${this["show-category"]}
56
+ .show-resource=${this["show-resource"]}
51
57
  exam-answer-relation-type=${t.examAnswerRelationType??0}
52
58
  exam-expand=${t.examExpand||""}
53
59
  rich-text-content=${t.examRichTextContent||""}
54
60
  analysis=${t.analysis||""}
61
+ category-id=${t.categoryId||t.category?.categoryId||""}
55
62
  custom-id=${t.customId||""}
56
- @move=${r} @delete=${o} @save=${n} @edit=${l} @add=${h}
57
- ></qxs-blank-fill>`:t.answerType===a.SubjectType.TEXT_FILL?e.html`<qxs-text-fill
63
+ exam-id=${t.examId??0}
64
+ @move=${r} @delete=${a} @save=${n} @edit=${l} @add=${h}
65
+ @choose-tag=${e=>this._emit("choose-tag",{...e.detail,item:this._list[s]})}
66
+ @tag-change=${e=>{this._list[s].tagInfos=e.detail.value,this._list[s].memberTagInfo=e.detail.value,this.requestUpdate()}}
67
+ @category-change=${e=>{this._list[s].categoryId=e.detail.value,this.requestUpdate()}}
68
+ ></qxs-blank-fill>`:t.answerType===o.SubjectType.TEXT_FILL?e.html`<qxs-text-fill
58
69
  .title=${t.title||""}
59
- .answerList=${t.answers||[]}
60
- .examAnswerSetting=${t.examAnswerSettingBO||t.examAnswerSettingVO||{}}
61
- .uploadImage=${this.uploadImage}
70
+ .answer-list=${t.answers||[]}
71
+ .tag-list=${t.tagInfos||t.memberTagInfo||[]}
72
+ .category-list=${this["category-list"]}
73
+ .resource-list=${t.examResourceBOList||t.resourceList||[]}
74
+ .search-handler=${this["search-handler"]}
75
+ .exam-answer-setting=${t.examAnswerSettingBO||t.examAnswerSettingVO||{}}
76
+ .upload-image=${this["upload-image"]}
62
77
  order-index=${i}
63
- .isEdit=${!!t.isEdit} .isSet=${!!t.hasSet} .isSave=${!t.isRealCanDel} .showAction=${!this._isPreviewValue} .showAdd=${this.showAdd}
64
- .showAnswerSetting=${this.showAnswerSetting}
78
+ .is-edit=${!!t.isEdit} .is-set=${!!t.hasSet} .is-save=${!t.isRealCanDel} .show-action=${!this._isPreviewValue} .show-add=${this["show-add"]}
79
+ .show-answer-setting=${this["show-answer-setting"]}
80
+ .show-tag=${this["show-tag"]}
81
+ .show-category=${this["show-category"]}
82
+ .show-resource=${this["show-resource"]}
65
83
  exam-answer-relation-type=${t.examAnswerRelationType??0}
66
84
  exam-expand=${t.examExpand||""}
67
85
  rich-text-content=${t.examRichTextContent||""}
68
86
  analysis=${t.analysis||""}
87
+ category-id=${t.categoryId||t.category?.categoryId||""}
69
88
  custom-id=${t.customId||""}
70
- @move=${r} @delete=${o} @save=${n} @edit=${l} @add=${h}
71
- ></qxs-text-fill>`:t.answerType===a.SubjectType.SCALE?e.html`<qxs-scale
89
+ exam-id=${t.examId??0}
90
+ @move=${r} @delete=${a} @save=${n} @edit=${l} @add=${h}
91
+ @choose-tag=${e=>this._emit("choose-tag",{...e.detail,item:this._list[s]})}
92
+ @tag-change=${e=>{this._list[s].tagInfos=e.detail.value,this._list[s].memberTagInfo=e.detail.value,this.requestUpdate()}}
93
+ @category-change=${e=>{this._list[s].categoryId=e.detail.value,this.requestUpdate()}}
94
+ ></qxs-text-fill>`:t.answerType===o.SubjectType.SCALE?e.html`<qxs-scale
72
95
  .title=${t.title||""}
73
- .answerList=${t.answers||[]}
74
- .scaleQuestions=${t.scaleQuestionList||[]}
75
- .uploadImage=${this.uploadImage}
96
+ .answer-list=${t.answers||[]}
97
+ .scale-questions=${t.scaleQuestionList||[]}
98
+ .tag-list=${t.tagInfos||t.memberTagInfo||[]}
99
+ .category-list=${this["category-list"]}
100
+ .resource-list=${t.examResourceBOList||t.resourceList||[]}
101
+ .upload-image=${this["upload-image"]}
76
102
  order-index=${i}
77
- .isEdit=${!!t.isEdit} .isSet=${!!t.hasSet} .isSave=${!t.isRealCanDel} .showAction=${!this._isPreviewValue} .showAdd=${this.showAdd}
103
+ .is-edit=${!!t.isEdit} .is-set=${!!t.hasSet} .is-save=${!t.isRealCanDel} .show-action=${!this._isPreviewValue} .show-add=${this["show-add"]}
104
+ .show-tag=${this["show-tag"]}
105
+ .show-category=${this["show-category"]}
106
+ .show-resource=${this["show-resource"]}
78
107
  exam-answer-relation-type=${t.examAnswerRelationType??0}
79
108
  rich-text-content=${t.examRichTextContent||""}
80
109
  analysis=${t.analysis||""}
110
+ category-id=${t.categoryId||t.category?.categoryId||""}
81
111
  custom-id=${t.customId||""}
82
- @move=${r} @delete=${o} @save=${n} @edit=${l} @add=${h}
112
+ exam-id=${t.examId??0}
113
+ @move=${r} @delete=${a} @save=${n} @edit=${l} @add=${h}
114
+ @choose-tag=${e=>this._emit("choose-tag",{...e.detail,item:this._list[s]})}
115
+ @tag-change=${e=>{this._list[s].tagInfos=e.detail.value,this._list[s].memberTagInfo=e.detail.value,this.requestUpdate()}}
116
+ @category-change=${e=>{this._list[s].categoryId=e.detail.value,this.requestUpdate()}}
83
117
  ></qxs-scale>`:"page_end"===t.answerType?e.html`<qxs-page-end
84
- current-page-index=${t.currentPageIndex||this._pageEndIndex(s)}
85
- total-page=${t.totalPage||this._pageEndTotal()}
86
- .showAction=${!this._isPreviewValue}
87
- .showAdd=${this.showAdd}
118
+ .current-page-index=${t.currentPageIndex||this._pageEndIndex(s)}
119
+ .total-page=${t.totalPage||this._pageEndTotal()}
120
+ .show-action=${!this._isPreviewValue}
121
+ .show-add=${this["show-add"]}
88
122
  custom-id=${t.customId||""}
89
- @delete=${o}
123
+ @delete=${a}
90
124
  @add=${h}
91
125
  ></qxs-page-end>`:e.html`<div style="color:#909399;padding:8px">未知题型: ${t.answerType}</div>`}render(){return e.html`
92
126
  <div class="subject-list">
@@ -114,5 +148,5 @@
114
148
  .sort-index { font-size: 13px; color: #606266; font-weight: 500; margin-right: 8px; min-width: 24px; flex-shrink: 0; }
115
149
  .sort-title { flex: 1; font-size: 14px; color: #303133; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
116
150
  .sort-type { font-size: 12px; color: #909399; margin-left: 12px; padding: 2px 8px; background: #f0f0f0; border-radius: 4px; flex-shrink: 0; }
117
- `,h([t.property({attribute:"is-preview"})],exports.QxsSubjectList.prototype,"isPreview",2),h([t.property({attribute:"use-model"})],exports.QxsSubjectList.prototype,"useModelAttr",2),h([t.property({attribute:"model-value"})],exports.QxsSubjectList.prototype,"modelValue",1),h([t.property({type:Object})],exports.QxsSubjectList.prototype,"uploadImage",2),h([t.property({type:Array,attribute:"category-list"})],exports.QxsSubjectList.prototype,"categoryList",2),h([t.property({type:Boolean,attribute:"show-tag"})],exports.QxsSubjectList.prototype,"showTag",2),h([t.property({type:Boolean,attribute:"show-category"})],exports.QxsSubjectList.prototype,"showCategory",2),h([t.property({type:Boolean,attribute:"show-ai"})],exports.QxsSubjectList.prototype,"showAi",2),h([t.property({type:Boolean,attribute:"show-resource"})],exports.QxsSubjectList.prototype,"showResource",2),h([t.property({type:Boolean,attribute:"show-jump"})],exports.QxsSubjectList.prototype,"showJump",2),h([t.property({type:Boolean,attribute:"show-add"})],exports.QxsSubjectList.prototype,"showAdd",2),h([t.property({type:Boolean,attribute:"show-answer-setting"})],exports.QxsSubjectList.prototype,"showAnswerSetting",2),h([t.property({type:Boolean,attribute:"show-key"})],exports.QxsSubjectList.prototype,"showKey",2),h([t.property({type:String,attribute:"search-api"})],exports.QxsSubjectList.prototype,"searchApi",2),h([t.property({type:Object})],exports.QxsSubjectList.prototype,"searchHandler",2),h([t.property({type:Array})],exports.QxsSubjectList.prototype,"subjectList",1),h([t.state()],exports.QxsSubjectList.prototype,"_list",2),h([t.state()],exports.QxsSubjectList.prototype,"_sortMode",2),exports.QxsSubjectList=h([i.safeCustomElement("qxs-subject-list")],exports.QxsSubjectList);
151
+ `,h([t.property({attribute:"is-preview"})],exports.QxsSubjectList.prototype,"is-preview",2),h([t.property({attribute:"use-model"})],exports.QxsSubjectList.prototype,"use-model",2),h([t.property({attribute:"model-value"})],exports.QxsSubjectList.prototype,"model-value",1),h([t.property({type:Object,attribute:"upload-image"})],exports.QxsSubjectList.prototype,"upload-image",2),h([t.property({type:Array,attribute:"category-list"})],exports.QxsSubjectList.prototype,"category-list",2),h([t.property({type:Boolean,attribute:"show-tag"})],exports.QxsSubjectList.prototype,"show-tag",2),h([t.property({type:Boolean,attribute:"show-category"})],exports.QxsSubjectList.prototype,"show-category",2),h([t.property({type:Boolean,attribute:"show-ai"})],exports.QxsSubjectList.prototype,"show-ai",2),h([t.property({type:Boolean,attribute:"show-resource"})],exports.QxsSubjectList.prototype,"show-resource",2),h([t.property({type:Boolean,attribute:"show-jump"})],exports.QxsSubjectList.prototype,"show-jump",2),h([t.property({type:Boolean,attribute:"show-add"})],exports.QxsSubjectList.prototype,"show-add",2),h([t.property({type:Boolean,attribute:"show-answer-setting"})],exports.QxsSubjectList.prototype,"show-answer-setting",2),h([t.property({type:Boolean,attribute:"show-key"})],exports.QxsSubjectList.prototype,"show-key",2),h([t.property({type:String,attribute:"search-api"})],exports.QxsSubjectList.prototype,"search-api",2),h([t.property({type:Object,attribute:"search-handler"})],exports.QxsSubjectList.prototype,"search-handler",2),h([t.property({type:Array,attribute:"subject-list"})],exports.QxsSubjectList.prototype,"subject-list",1),h([t.state()],exports.QxsSubjectList.prototype,"_list",2),h([t.state()],exports.QxsSubjectList.prototype,"_sortMode",2),exports.QxsSubjectList=h([i.safeCustomElement("qxs-subject-list")],exports.QxsSubjectList);
118
152
  //# sourceMappingURL=list.cjs.map