From 6aa0d27da19ce03c038b0d72029fea37323f6c8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A1=E8=8B=A5?= Date: Thu, 26 Mar 2026 20:08:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=98=85=E8=AF=BB=E9=A1=B5=E4=B8=8E?= =?UTF-8?q?=E7=AB=A0=E8=8A=82=E9=A2=84=E8=A7=88=20API=EF=BC=9B=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E7=AB=AF=E5=86=85=E5=AE=B9=E9=A1=B5=EF=BC=9Bbook/h5?= =?UTF-8?q?=5Fread=EF=BC=9B=E8=84=9A=E6=9C=AC=E4=B8=8E=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - miniprogram: read 页与 member-detail/my;SOP 文档 - soul-api: chapter_preview、book/h5_read 调整;VIP 订单回填 SQL - soul-admin: ContentPage、dist - scripts: pull_from_baota;content_upload、gitignore、对话规则 Made-with: Cursor --- .cursor/rules/soul-karuo-dialogue.mdc | 2 +- .gitignore | 3 + content_upload.py | 9 +- .../docs/SOP_碎片时间小程序_认证任务众包.md | 57 + .../pages/member-detail/member-detail.js | 87 +- miniprogram/pages/my/my.js | 11 + miniprogram/pages/read/read.js | 116 +- miniprogram/pages/read/read.wxml | 45 +- miniprogram/pages/read/read.wxss | 35 + scripts/pull_from_baota.py | 153 +++ soul-admin/dist/assets/index-CXKq85jN.js | 1010 +++++++++++++++++ soul-admin/dist/index.html | 6 +- soul-admin/src/pages/content/ContentPage.tsx | 115 +- soul-api/internal/handler/book.go | 69 +- soul-api/internal/handler/chapter_preview.go | 121 ++ soul-api/internal/handler/h5_read.go | 27 +- .../backfill-vip-orders-for-revenue.sql | 12 + .../scripts/backfill-vip-orders-insert.sql | 44 + .../scripts/backfill-vip-orders-preview.sql | 33 + 19 files changed, 1825 insertions(+), 130 deletions(-) create mode 100644 miniprogram/docs/SOP_碎片时间小程序_认证任务众包.md create mode 100644 scripts/pull_from_baota.py create mode 100644 soul-admin/dist/assets/index-CXKq85jN.js create mode 100644 soul-api/internal/handler/chapter_preview.go create mode 100644 soul-api/scripts/backfill-vip-orders-for-revenue.sql create mode 100644 soul-api/scripts/backfill-vip-orders-insert.sql create mode 100644 soul-api/scripts/backfill-vip-orders-preview.sql diff --git a/.cursor/rules/soul-karuo-dialogue.mdc b/.cursor/rules/soul-karuo-dialogue.mdc index 3e916b40..ea410a51 100644 --- a/.cursor/rules/soul-karuo-dialogue.mdc +++ b/.cursor/rules/soul-karuo-dialogue.mdc @@ -12,7 +12,7 @@ alwaysApply: true 0. **默认零提问**:派对/Soul 相关开发、运维、脚本、填表链路,**禁止**反问用户「是否执行」「要不要」。缺信息则读本仓库代码与配置、用合理默认推进;**仅**验证码/密钥缺失/不可逆删除等无法代劳时,用**一句**说明缺什么。 1. **语言**:面向用户的说明、结论、按钮文案解释等,默认 **简体中文**。 -2. **收尾**:每一轮对用户可见的助手回复,**最后一段**必须是完整 **[卡若复盘](YYYY-MM-DD HH:mm)** 块,含五段:**🎯 目标·结果·达成率**(单行 ≤30 字且含达成率 %)·**📌 过程** · **💡 反思** · **📝 总结** · **▶ 下一步执行**。复盘块内**禁止表格**。 +2. **收尾**:每一轮对用户可见的助手回复,**最后一段**必须是完整 **[卡若复盘](YYYY-MM-DD HH:mm)** 块,含五段:**🎯 目标·结果·达成率**(**单行一句 ≤50 字**,句内含达成率 **%**、**可负**;分发任务按视频号等**实际成功÷计划**计;**禁止** ➡️/📊 复述行与标准 ☯)·**📌 过程** · **💡 反思** · **📝 总结** · **▶ 下一步执行**。复盘块内**禁止表格**。细则以卡若 `运营中枢/参考资料/卡若复盘格式_固定规则.md` **v5.0** 为准。 3. **格式源**:与卡若 AI 仓库内 `运营中枢/参考资料/卡若复盘格式_固定规则.md` 保持同一种写法;若当前工作区已挂载「卡若AI」目录,修改复盘规则时以该文件为唯一真源。 4. **需求节奏**:仍服从「需求即执行」——先「好」再改代码再报结果;复盘块放在**全条回复最末**。 5. **直接执行**:用户说「直接做、别讲写了什么」时,**正文极短**;**复盘五块不可省**,可压缩过程为 1~2 条要点。 diff --git a/.gitignore b/.gitignore index 6d17c5ed..1d642de8 100644 --- a/.gitignore +++ b/.gitignore @@ -49,3 +49,6 @@ soul-api/soul-api-new # 本地技能包临时打包目录 .tmp_skill_bundle/ + +# 从宝塔拉取的线上运行目录镜像(含 .env / 二进制,勿提交) +_server_live/ diff --git a/content_upload.py b/content_upload.py index bb469820..f12017c1 100644 --- a/content_upload.py +++ b/content_upload.py @@ -10,6 +10,7 @@ from __future__ import annotations import argparse import importlib.util +import re import sys from pathlib import Path @@ -44,15 +45,17 @@ def strip_md_title_line(text: str) -> str: def for_miniprogram_body(text: str) -> str: - """上传 README:少用 --- 分割线;正文内独立一行的 --- 改为空行分段。""" + """上传 README:少用 --- 与 **;独立一行的 --- 改为空行;去掉 **;压缩多余空行。""" out_lines: list[str] = [] for line in text.splitlines(): if line.strip() == "---": out_lines.append("") - out_lines.append("") else: out_lines.append(line) - return "\n".join(out_lines).strip() + "\n" + body = "\n".join(out_lines) + body = body.replace("**", "") + body = re.sub(r"\n{3,}", "\n\n", body) + return body.strip() + "\n" def next_10_id(cur) -> str: diff --git a/miniprogram/docs/SOP_碎片时间小程序_认证任务众包.md b/miniprogram/docs/SOP_碎片时间小程序_认证任务众包.md new file mode 100644 index 00000000..778388c0 --- /dev/null +++ b/miniprogram/docs/SOP_碎片时间小程序_认证任务众包.md @@ -0,0 +1,57 @@ +# 碎片时间小程序 · 认证任务众包 SOP + +> 流程口径:平台只撮合任务与验收;账号来源、合规与平台规则由发起方自负,建议在合同/任务说明里写清。 + +--- + +## 角色 + +| 角色 | 说明 | +|:---|:---| +| 发起方(你) | 发任务、采购号、审核截图、打款 | +| 接单方 | 登录指定账号、完成认证、上传成功截图 | + +--- + +## 步骤 + +**Step 0|产品** +碎片时间小程序具备:发布任务、任务详情、接单/认领(或群内确认后你在后台绑定接单方)、上传凭证、发起方审核、标记完成/打款(或线下打款后在小程序确认)。 + +**Step 1|生成任务** +在小程序里创建「认证类」任务:写清平台名称、认证类型、截止时间、赏金、**需上传的验收材料**(如:认证成功页截图)。 + +**Step 2|丢到群里** +把任务链接或任务卡片发到目标群,说明谁接谁在小程序里认领(或私信你登记,由你在后台绑定该用户为执行人)。 +**门禁:必须等到明确有人接单/认领后,再进入 Step 3。** + +**Step 3|采购认证号** +接单已锁定后,再到淘宝等平台购买符合任务要求的认证号(店铺、类目、是否已部分认证等按任务说明买)。 + +**Step 4|交付登录信息** +将 **账号、密码、绑定手机号**(及验证码接收方式,若需要)通过约定渠道发给接单方;附 **极简认证流程**(要点的什么、上传什么、注意哪几条),避免长篇说明书。 + +**Step 5|跟进认证** +接单方登录并按流程完成认证;页面显示 **已成功** 后,截取 **带成功状态** 的截图。 + +**Step 6|上传与验收** +接单方在小程序任务里 **上传成功截图**;发起方核对截图与任务要求一致后 **审核通过并打款**,任务关闭。 + +--- + +## 验收清单(发起方勾选) + +- [ ] 群内/小程序已锁定唯一接单方,未锁人不买号 +- [ ] 账号信息与绑定手机已完整交给接单方 +- [ ] 截图含明确「认证成功」或平台等价状态,且在任务约定平台内 +- [ ] 赏金金额与打款方式与任务页一致 + +--- + +## 异常处理(简) + +| 情况 | 处理 | +|:---|:---| +| 买号后接单方失联 | 任务重新挂群;原接单方在小程序取消认领规则需产品支持 | +| 认证失败 | 先区分是号问题还是操作问题;换号或换人按任务规则是否补赏金,事先写进任务说明 | +| 截图不清晰 | 退回补传,限次数写在任务里 | diff --git a/miniprogram/pages/member-detail/member-detail.js b/miniprogram/pages/member-detail/member-detail.js index ccb293aa..15b1ad6b 100644 --- a/miniprogram/pages/member-detail/member-detail.js +++ b/miniprogram/pages/member-detail/member-detail.js @@ -14,6 +14,9 @@ const { isSafeImageSrc } = require('../../utils/imageUrl.js') const { resolveAvatarWithMbti } = require('../../utils/mbtiAvatar.js') const mpPagePopups = require('../../utils/mpPagePopups.js') +/** 从「我的」登录成功后 reLaunch 回本页并自动继续链接流程 */ +const LOGIN_RESUME_MEMBER_DETAIL_KEY = 'login_resume_member_detail_id' + Page({ data: { statusBarHeight: 44, navBarTotalPx: 88, member: null, loading: true, isOwnProfile: false }, @@ -22,10 +25,48 @@ Page({ const sb = app.globalData.statusBarHeight || 44 const myId = app.globalData.userInfo?.id const isOwnProfile = !!(options.id && myId && String(options.id) === String(myId)) + if (options.resumeLink === '1') this._resumeLinkAfterLoad = true this.setData({ statusBarHeight: sb, navBarTotalPx: sb + 44, isOwnProfile }) if (options.id) this.loadMember(options.id) }, + /** 朋友圈单页等受限环境 */ + _isSinglePageMode() { + try { + if (app.globalData.isSinglePageMode) return true + const sys = wx.getSystemInfoSync() + if (sys && sys.mode === 'singlePage') return true + const launch = typeof wx.getLaunchOptionsSync === 'function' ? wx.getLaunchOptionsSync() : null + if (launch && Number(launch.scene) === 1154) return true + } catch (e) {} + return false + }, + + /** 资料加载完成后:① resumeLink=1(我的页登录回流)② 本地存了待链接 memberId(单页→完整版且已登录) */ + _scheduleResumeLinkFlowIfNeeded() { + if (!this.data.member || !app.globalData.isLoggedIn) return + let trigger = false + if (this._resumeLinkAfterLoad) { + trigger = true + this._resumeLinkAfterLoad = false + } else { + try { + const rid = wx.getStorageSync(LOGIN_RESUME_MEMBER_DETAIL_KEY) + if (rid != null && String(rid).trim() !== '' && String(rid) === String(this.data.member.id)) { + wx.removeStorageSync(LOGIN_RESUME_MEMBER_DETAIL_KEY) + trigger = true + } + } catch (_) {} + } + if (!trigger) return + if (this._resumeLinkScheduled) return + this._resumeLinkScheduled = true + setTimeout(() => { + this._resumeLinkScheduled = false + this.startLinkFlow() + }, 400) + }, + /** 本人名片:去完整编辑资料(单页) */ goMyProfileEdit() { wx.navigateTo({ url: '/pages/profile-edit/profile-edit?full=1' }) @@ -92,6 +133,7 @@ Page({ }), loading: false }) + this._scheduleResumeLinkFlowIfNeeded() return } } catch (e) {} @@ -101,7 +143,11 @@ Page({ const res = await app.request({ url: `/api/miniprogram/vip/members?id=${id}`, silent: true }) if (res?.success && res.data) { const d = Array.isArray(res.data) ? res.data[0] : res.data - if (d) { this.setData({ member: this.enrichAndFormat(d), loading: false }); return } + if (d) { + this.setData({ member: this.enrichAndFormat(d), loading: false }) + this._scheduleResumeLinkFlowIfNeeded() + return + } } } catch (e) {} @@ -125,11 +171,13 @@ Page({ helpNeed: u.helpNeed || u.help_need, ckbLeadToken: u.ckbLeadToken || u.ckb_lead_token, }), loading: false }) + this._scheduleResumeLinkFlowIfNeeded() return } } } catch (e) {} this.setData({ loading: false }) + this._resumeLinkAfterLoad = false }, // 将空值、「未填写」、纯空格均视为未填写(用于隐藏对应项) @@ -315,12 +363,41 @@ Page({ trackClick('member_detail', 'avatar_click', '链接头像_' + (member.id || '')) if (!app.globalData.isLoggedIn || !app.globalData.userInfo) { + // 第一步:仅说明原因;第二步:引导登录(完整版去「我的」;单页引导底部「前往小程序」) wx.showModal({ - title: `链接「${nickname}」`, - content: '请先登录后再发起链接。', - confirmText: '去登录', + title: '提示', + content: `发起与「${nickname}」的链接前,需要先登录小程序账号。登录后智能助手与人工可协同协助您对接。`, + confirmText: '下一步', cancelText: '取消', - success: (r) => { if (r.confirm) wx.switchTab({ url: '/pages/my/my' }) } + success: (r1) => { + if (!r1.confirm) return + const isSp = this._isSinglePageMode() + if (isSp) { + try { + wx.setStorageSync(LOGIN_RESUME_MEMBER_DETAIL_KEY, String(member.id)) + } catch (_) {} + wx.showModal({ + title: '前往完整小程序', + content: '当前为预览模式。请轻触屏幕底部「前往小程序」进入完整版,在「我的」中登录;登录成功后将自动回到本页并继续链接流程。', + showCancel: false, + confirmText: '我知道了' + }) + return + } + wx.showModal({ + title: `链接「${nickname}」`, + content: '是否前往「我的」页登录?', + confirmText: '去登录', + cancelText: '取消', + success: (r2) => { + if (!r2.confirm) return + try { + wx.setStorageSync(LOGIN_RESUME_MEMBER_DETAIL_KEY, String(member.id)) + } catch (_) {} + wx.switchTab({ url: '/pages/my/my' }) + } + }) + } }) return } diff --git a/miniprogram/pages/my/my.js b/miniprogram/pages/my/my.js index 71f77ecb..b6088f14 100644 --- a/miniprogram/pages/my/my.js +++ b/miniprogram/pages/my/my.js @@ -871,6 +871,17 @@ Page({ this.initUserStatus() this.setData({ showLoginModal: false }) wx.showToast({ title: '登录成功', icon: 'success' }) + // 超级个体详情:未登录点链接 → 去登录 → 回详情页自动继续链接流程(与 member-detail LOGIN_RESUME_MEMBER_DETAIL_KEY 一致) + try { + const LOGIN_RESUME_MEMBER_DETAIL_KEY = 'login_resume_member_detail_id' + const rid = wx.getStorageSync(LOGIN_RESUME_MEMBER_DETAIL_KEY) + if (rid != null && String(rid).trim() !== '') { + wx.removeStorageSync(LOGIN_RESUME_MEMBER_DETAIL_KEY) + wx.reLaunch({ + url: '/pages/member-detail/member-detail?id=' + encodeURIComponent(String(rid).trim()) + '&resumeLink=1' + }) + } + } catch (_) {} }, // 点击菜单 diff --git a/miniprogram/pages/read/read.js b/miniprogram/pages/read/read.js index 8257b373..1072ac6f 100644 --- a/miniprogram/pages/read/read.js +++ b/miniprogram/pages/read/read.js @@ -24,6 +24,28 @@ const soulBridge = require('../../utils/soulBridge.js') const app = getApp() const mpPagePopups = require('../../utils/mpPagePopups.js') +/** 与后端 defaultReadPreviewUI / read_preview_ui 配置键一致;占位符 {percent} {price} 在拉章节后替换 */ +const READ_UI_DEFAULTS = { + singlePageUnlockTitle: '解锁完整内容', + singlePagePayButtonText: '支付 ¥{price} 解锁全文', + singlePageExpandedHint: '预览页不能直接付款,务必先点底栏「前往小程序」。', + payTapModalTitle: '解锁说明', + payTapModalContent: + '全文 ¥{price}。预览里无法完成支付:请先点屏幕底部「前往小程序」进入完整版,登录后再付款解锁。', + fullUnlockTitle: '解锁完整内容', + fullUnlockDesc: '可先上滑阅读预览;需要全文时,点下方「支付¥{price}」查看说明', + fullLockedProgressText: '已阅读约 {percent}% ,购买后继续阅读', + fullPaywallTip: '转发给需要的人,一起学习还能赚佣金', + notLoginUnlockDesc: '已预览约 {percent}% 内容,登录并支付 ¥{price} 后阅读全文', + notLoginPaywallTip: '分享给好友一起学习,还能赚取佣金', + shareTipLine: '好友经你分享购买,你可获得约 90% 收益', + momentsModalTitle: '分享到朋友圈', + momentsModalContent: + '已复制发圈文案(非分享给好友)。\n\n请点击右上角「···」→「分享到朋友圈」粘贴发布。', + momentsClipboardFooter: '\n\n—— 以上为正文预览约 {percent}% ,搜「卡若创业派对」小程序阅读全文 ——', + timelineTitleSuffix: '(预览{percent}%)', +} + /** 阅读页解析正文用:人物字典 + #标签(与 /config/read-extras 一致) */ function getContentParseConfig() { const g = getApp().globalData || {} @@ -186,6 +208,11 @@ Page({ readSinglePageMode: false, // 朋友圈单页付费墙:说明默认收起,点「购买本章」后展开极简文案 + 底栏箭头(无长 Modal) momentsPaywallExpanded: false, + + // 未付费预览比例(与后端 unpaid_preview_percent / 章节 preview_percent 一致) + effectivePreviewPercent: 20, + // 付费墙 / 朋友圈文案(后端 read_preview_ui + 占位符已替换) + readUi: {}, }, _isLockedState(state) { @@ -268,15 +295,61 @@ Page({ return !!app.globalData.isSinglePageMode }, - /** 单页模式下点「购买本章」:触觉反馈 + 展开极简说明;引导靠页内文案 + 底栏箭头,不再弹长 Modal */ + _formatPriceToken(n) { + const x = Number(n) + if (!isFinite(x)) return '1' + if (Math.abs(x - Math.round(x)) < 1e-9) return String(Math.round(x)) + return String(Number(x.toFixed(2))) + }, + + /** 章节接口 meta:预览比例 + 付费墙/朋友圈文案模板 */ + _applyChapterMetaFromResponse(res) { + if (!res || typeof res !== 'object') return + const pct = + typeof res.unpaidPreviewPercent === 'number' ? res.unpaidPreviewPercent : 20 + const priceNum = + res.price != null + ? Number(res.price) + : this.data.section?.price != null + ? Number(this.data.section.price) + : Number(this.data.sectionPrice || 1) + const priceTok = this._formatPriceToken(priceNum) + const base = { ...READ_UI_DEFAULTS } + if (res.readPreviewUi && typeof res.readPreviewUi === 'object') { + Object.keys(res.readPreviewUi).forEach((k) => { + const v = res.readPreviewUi[k] + if (typeof v === 'string' && v.trim()) base[k] = v.trim() + }) + } + const filled = {} + Object.keys(base).forEach((k) => { + filled[k] = String(base[k] || '') + .replace(/\{percent\}/g, String(pct)) + .replace(/\{price\}/g, priceTok) + }) + this.setData({ effectivePreviewPercent: pct, readUi: filled }) + }, + + /** 单页模式:点支付解锁 → 弹窗说明 → 展开底栏引导与箭头 */ onUnlockTapInSinglePage() { trackClick('read', 'btn_click', '单页_解锁引导') try { wx.vibrateShort({ type: 'light' }) } catch (e) {} - if (this._detectReadSinglePage() && typeof this.setData === 'function') { - this.setData({ readSinglePageMode: true, momentsPaywallExpanded: true }) - } + const ui = this.data.readUi || {} + wx.showModal({ + title: ui.payTapModalTitle || '解锁说明', + content: + ui.payTapModalContent || + '请先点屏幕底部「前往小程序」进入完整版,登录后再付款解锁。', + showCancel: false, + confirmText: '知道了', + success: () => { + if (this._detectReadSinglePage() && typeof this.setData === 'function') { + this.setData({ readSinglePageMode: true, momentsPaywallExpanded: true }) + } + }, + }) }, onShow() { @@ -529,6 +602,7 @@ Page({ if (!res || !res.content) { res = await app.request({ url: this._getChapterUrl({ id }), silent: true }) } + this._applyChapterMetaFromResponse(res) const section = { id: res.id || id, title: res.sectionTitle || res.title || this.getSectionTitle(id), @@ -680,6 +754,7 @@ Page({ // 设置章节内容(兼容纯文本/Markdown 与 TipTap HTML) async setChapterContent(res) { + this._applyChapterMetaFromResponse(res) await app.getReadExtras() const { lines, segments } = contentParser.parseContent(res.content, getContentParseConfig()) // 预览内容由后端统一截取比例,这里展示全部预览内容 @@ -1068,14 +1143,12 @@ Page({ shareToMoments() { trackClick('read', 'btn_click', '分享到朋友圈_' + (this.data.sectionId || '')) const title = this.data.section?.title || this.data.chapterTitle || '好文推荐' - const raw = (this.data.content || '') - .replace(/<[^>]+>/g, '\n') - .replace(/ /g, ' ') - .replace(/</g, '<').replace(/>/g, '>').replace(/&/g, '&').replace(/"/g, '"') - .replace(/[#@]\S+/g, '') - const sentences = raw.split(/[。!?\n]+/).map(s => s.trim()).filter(s => s.length > 4) - const picked = sentences.slice(0, 5) - const copyText = picked.length > 0 ? title + '\n\n' + picked.join('\n\n') : `🔥 刚看完这篇《${title}》,推荐给你!\n\n#卡若创业派对 #真实商业故事` + const ui = this.data.readUi || {} + const paras = (this.data.previewParagraphs || []).filter(Boolean).join('\n\n') + const footer = ui.momentsClipboardFooter || '' + const copyText = paras + ? `${title}\n\n${paras}${footer}` + : `${title}${footer || `\n\n—— 预览约 ${this.data.effectivePreviewPercent ?? 20}% ,搜「卡若创业派对」小程序阅读全文 ——`}` wx.setClipboardData({ data: copyText, success: () => { @@ -1084,8 +1157,10 @@ Page({ setTimeout(() => { wx.hideToast() wx.showModal({ - title: '分享到朋友圈', - content: '已复制发圈文案(非分享给好友)。\n\n请点击右上角「···」→「分享到朋友圈」粘贴发布。', + title: ui.momentsModalTitle || '分享到朋友圈', + content: + ui.momentsModalContent || + '已复制发圈文案。\n\n请点击右上角「···」→「分享到朋友圈」粘贴发布。', showCancel: false, confirmText: '知道了' }) @@ -1099,15 +1174,18 @@ Page({ // 分享到朋友圈:带文章标题,过长时截断 onShareTimeline() { - const { section, sectionId, sectionMid, chapterTitle } = this.data + const { section, sectionId, sectionMid, chapterTitle, readUi } = this.data const ref = app.getMyReferralCode() const q = sectionMid ? `mid=${sectionMid}` : `id=${sectionId}` const query = ref ? `${q}&ref=${ref}` : q const articleTitle = (section?.title || chapterTitle || '').trim() - const title = articleTitle - ? (articleTitle.length > 28 ? articleTitle.slice(0, 28) + '...' : articleTitle) - : '卡若创业派对 - 真实商业故事' - return { title, query } + const base = articleTitle || '卡若创业派对 - 真实商业故事' + const suffix = (readUi && readUi.timelineTitleSuffix) || '' + let full = base + suffix + if (full.length > 30) { + full = full.slice(0, 30) + '…' + } + return { title: full, query } }, // 显示登录弹窗(每次打开协议未勾选,符合审核要求) diff --git a/miniprogram/pages/read/read.wxml b/miniprogram/pages/read/read.wxml index baa547a2..0b981a1a 100644 --- a/miniprogram/pages/read/read.wxml +++ b/miniprogram/pages/read/read.wxml @@ -106,7 +106,7 @@ - + @@ -132,27 +132,30 @@ + + 预览 {{effectivePreviewPercent}}% + + - {{readSinglePageTitle}} - 试读 {{previewPercent}}%(与后台试读比例一致) + {{readUi.singlePageUnlockTitle || '解锁完整内容'}} + {{readUi.fullUnlockDesc}} - - 购买本章 - ¥1 + + {{readUi.singlePagePayButtonText || '支付解锁'}} 审核中,暂不支持购买 - {{readSinglePageHint || '预览不可付款,请点底部「前往小程序」。'}} + {{readUi.singlePageExpandedHint || '预览不可付款,请点底部「前往小程序」。'}} - 解锁完整内容 + {{readUi.fullUnlockTitle || '解锁完整内容'}} {{readBeforeLoginHint}} - 已阅读{{previewPercent}}%,登录并支付 ¥{{section && section.price != null ? section.price : sectionPrice}} 后阅读全文 + {{readUi.notLoginUnlockDesc || '已预览部分内容,登录并支付后阅读全文'}} 购买本章 @@ -162,7 +165,7 @@ - 分享给好友一起学习,还能赚取佣金 + {{readUi.notLoginPaywallTip || '分享给好友一起学习,还能赚取佣金'}} @@ -216,26 +219,30 @@ + + 预览 {{effectivePreviewPercent}}% + + - {{readSinglePageTitle}} - 试读 {{previewPercent}}%(与后台试读比例一致) + {{readUi.singlePageUnlockTitle || '解锁完整内容'}} + {{readUi.fullUnlockDesc}} - - 购买本章 - ¥1 + + {{readUi.singlePagePayButtonText || '支付解锁'}} 审核中,暂不支持购买 - {{readSinglePageHint || '预览不可付款,请点底部「前往小程序」。'}} + {{readUi.singlePageExpandedHint || '预览不可付款,请点底部「前往小程序」。'}} - 解锁完整内容 - 已阅读{{previewPercent}}%,购买后继续阅读 + {{readUi.fullUnlockTitle || '解锁完整内容'}} + {{readUi.fullUnlockDesc || '可先上滑阅读预览'}} + {{readUi.fullLockedProgressText}} 购买本章 @@ -253,7 +260,7 @@ 审核中,暂不支持购买 - 分享给好友一起学习,还能赚取佣金 + {{readUi.fullPaywallTip || '分享给好友一起学习,还能赚取佣金'}} 代付分享 diff --git a/miniprogram/pages/read/read.wxss b/miniprogram/pages/read/read.wxss index a011982f..5d200d8f 100644 --- a/miniprogram/pages/read/read.wxss +++ b/miniprogram/pages/read/read.wxss @@ -327,6 +327,41 @@ margin-bottom: 48rpx; } +.paywall-subdesc { + font-size: 26rpx; + color: rgba(255, 255, 255, 0.52); + text-align: center; + display: block; + margin-bottom: 36rpx; + line-height: 1.5; + padding: 0 16rpx; +} + +.preview-percent-row { + margin: 16rpx 0 8rpx; + display: flex; + justify-content: center; +} + +.preview-percent-badge { + font-size: 24rpx; + color: #00CED1; + border: 2rpx solid rgba(0, 206, 209, 0.35); + border-radius: 999rpx; + padding: 8rpx 24rpx; + background: rgba(0, 206, 209, 0.08); +} + +.purchase-btn--fulltext { + justify-content: center; +} + +.purchase-btn--fulltext .btn-label--block { + flex: 1; + text-align: center; + width: 100%; +} + /* ===== 购买选项 ===== */ .purchase-options { display: flex; diff --git a/scripts/pull_from_baota.py b/scripts/pull_from_baota.py new file mode 100644 index 00000000..7c0ed300 --- /dev/null +++ b/scripts/pull_from_baota.py @@ -0,0 +1,153 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +从宝塔正式机拉取线上运行目录到本地镜像(与 soul-api/master.py、soul-admin/master.py 同源 SSH 配置)。 + +说明: +- 服务器上一般是「二进制 + .env + 日志」与「静态 dist」,不包含完整 Go/React 源码。 +- 默认解压到仓库根目录 _server_live/soul-api、_server_live/soul-admin,不覆盖本地工程源码。 + +环境变量与 master.py 一致:DEPLOY_HOST、DEPLOY_USER、DEPLOY_PASSWORD、DEPLOY_SSH_KEY、 +DEPLOY_PROJECT_PATH、DEPLOY_BASE_PATH。 +""" + +from __future__ import print_function + +import argparse +import importlib.util +import os +import shutil +import sys +import tarfile +import tempfile +import threading + +ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) +SOUL_API_DIR = os.path.join(ROOT, "soul-api") + + +def _load_api_master(): + path = os.path.join(SOUL_API_DIR, "master.py") + spec = importlib.util.spec_from_file_location("soul_api_deploy_master", path) + mod = importlib.util.module_from_spec(spec) + spec.loader.exec_module(mod) + return mod + + +def _pull_dir_tar(client, remote_dir, local_dir, mod, timeout=600): + """远端 tar czf 流式下载并解压到 local_dir。""" + import shlex + + remote_q = shlex.quote(remote_dir) + cmd = "tar czf - -C %s . 2>/dev/null" % remote_q + stdin, stdout, stderr = client.exec_command(cmd, timeout=timeout) + + err_holder = [] + + def _drain(): + try: + err_holder.append(stderr.read()) + except Exception: + pass + + t = threading.Thread(target=_drain) + t.daemon = True + t.start() + + fd, tmp_path = tempfile.mkstemp(suffix=".tar.gz") + os.close(fd) + try: + with open(tmp_path, "wb") as out: + while True: + chunk = stdout.read(256 * 1024) + if not chunk: + break + out.write(chunk) + t.join(timeout=5) + exit_status = stdout.channel.recv_exit_status() + if exit_status != 0: + print(" [警告] 远端 tar 退出码: %s" % exit_status) + if os.path.isdir(local_dir): + shutil.rmtree(local_dir) + os.makedirs(local_dir, exist_ok=True) + with tarfile.open(tmp_path, "r:gz") as tf: + tf.extractall(local_dir) + print(" [成功] 已同步到: %s" % local_dir) + return True + finally: + try: + os.remove(tmp_path) + except OSError: + pass + + +def main(): + parser = argparse.ArgumentParser(description="从宝塔拉取 soul-api / soul-admin 线上目录") + parser.add_argument("--api-only", action="store_true", help="仅拉 soul-api") + parser.add_argument("--admin-only", action="store_true", help="仅拉 soul-admin") + args = parser.parse_args() + + mod = _load_api_master() + cfg = mod.get_cfg() + if not cfg.get("password") and not cfg.get("ssh_key"): + print("[失败] 请设置 DEPLOY_PASSWORD 或 DEPLOY_SSH_KEY") + return 1 + + pull_api = not args.admin_only + pull_admin = not args.api_only + if args.api_only and args.admin_only: + print("[失败] 不能同时指定 --api-only 与 --admin-only") + return 1 + + client = None + try: + client = mod._connect_ssh(cfg) + live_root = os.path.join(ROOT, "_server_live") + os.makedirs(live_root, exist_ok=True) + + print("=" * 60) + print(" 从宝塔拉取线上目录 → %s" % live_root) + print(" 主机: %s@%s:%s" % (cfg["user"], cfg["host"], mod.DEFAULT_SSH_PORT)) + print("=" * 60) + + if pull_api: + print("[1] soul-api: %s" % cfg["project_path"]) + _pull_dir_tar( + client, + cfg["project_path"], + os.path.join(live_root, "soul-api"), + mod, + ) + + if pull_admin: + admin_base = os.environ.get("DEPLOY_BASE_PATH", "/www/wwwroot/self/soul-admin").rstrip("/") + print("[2] soul-admin: %s" % admin_base) + # 复用同一连接;若仅拉 admin,上面未开新连接也行 + if not pull_api: + pass + _pull_dir_tar( + client, + admin_base, + os.path.join(live_root, "soul-admin"), + mod, + ) + + print("") + print(" 完成。镜像根目录: %s" % live_root) + return 0 + except Exception as e: + print("[失败] %s" % e) + import traceback + + traceback.print_exc() + return 1 + finally: + if client: + try: + client.close() + except Exception: + pass + + +if __name__ == "__main__": + sys.exit(main() or 0) diff --git a/soul-admin/dist/assets/index-CXKq85jN.js b/soul-admin/dist/assets/index-CXKq85jN.js new file mode 100644 index 00000000..cf8b7d1d --- /dev/null +++ b/soul-admin/dist/assets/index-CXKq85jN.js @@ -0,0 +1,1010 @@ +function RT(t,e){for(var n=0;nr[a]})}}}return Object.freeze(Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}))}(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const a of document.querySelectorAll('link[rel="modulepreload"]'))r(a);new MutationObserver(a=>{for(const i of a)if(i.type==="childList")for(const o of i.addedNodes)o.tagName==="LINK"&&o.rel==="modulepreload"&&r(o)}).observe(document,{childList:!0,subtree:!0});function n(a){const i={};return a.integrity&&(i.integrity=a.integrity),a.referrerPolicy&&(i.referrerPolicy=a.referrerPolicy),a.crossOrigin==="use-credentials"?i.credentials="include":a.crossOrigin==="anonymous"?i.credentials="omit":i.credentials="same-origin",i}function r(a){if(a.ep)return;a.ep=!0;const i=n(a);fetch(a.href,i)}})();function pj(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var sx={exports:{}},wd={},rx={exports:{}},jt={};/** + * @license React + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var Wv;function OT(){if(Wv)return jt;Wv=1;var t=Symbol.for("react.element"),e=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),r=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),i=Symbol.for("react.provider"),o=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),h=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),m=Symbol.iterator;function x(_){return _===null||typeof _!="object"?null:(_=m&&_[m]||_["@@iterator"],typeof _=="function"?_:null)}var y={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},v=Object.assign,N={};function w(_,U,H){this.props=_,this.context=U,this.refs=N,this.updater=H||y}w.prototype.isReactComponent={},w.prototype.setState=function(_,U){if(typeof _!="object"&&typeof _!="function"&&_!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,_,U,"setState")},w.prototype.forceUpdate=function(_){this.updater.enqueueForceUpdate(this,_,"forceUpdate")};function k(){}k.prototype=w.prototype;function E(_,U,H){this.props=_,this.context=U,this.refs=N,this.updater=H||y}var C=E.prototype=new k;C.constructor=E,v(C,w.prototype),C.isPureReactComponent=!0;var R=Array.isArray,O=Object.prototype.hasOwnProperty,q={current:null},$={key:!0,ref:!0,__self:!0,__source:!0};function V(_,U,H){var K,me={},X=null,le=null;if(U!=null)for(K in U.ref!==void 0&&(le=U.ref),U.key!==void 0&&(X=""+U.key),U)O.call(U,K)&&!$.hasOwnProperty(K)&&(me[K]=U[K]);var de=arguments.length-2;if(de===1)me.children=H;else if(1>>1,U=P[_];if(0>>1;_a(me,G))Xa(le,me)?(P[_]=le,P[X]=G,_=X):(P[_]=me,P[K]=G,_=K);else if(Xa(le,G))P[_]=le,P[X]=G,_=X;else break e}}return oe}function a(P,oe){var G=P.sortIndex-oe.sortIndex;return G!==0?G:P.id-oe.id}if(typeof performance=="object"&&typeof performance.now=="function"){var i=performance;t.unstable_now=function(){return i.now()}}else{var o=Date,c=o.now();t.unstable_now=function(){return o.now()-c}}var u=[],h=[],f=1,m=null,x=3,y=!1,v=!1,N=!1,w=typeof setTimeout=="function"?setTimeout:null,k=typeof clearTimeout=="function"?clearTimeout:null,E=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function C(P){for(var oe=n(h);oe!==null;){if(oe.callback===null)r(h);else if(oe.startTime<=P)r(h),oe.sortIndex=oe.expirationTime,e(u,oe);else break;oe=n(h)}}function R(P){if(N=!1,C(P),!v)if(n(u)!==null)v=!0,F(O);else{var oe=n(h);oe!==null&&D(R,oe.startTime-P)}}function O(P,oe){v=!1,N&&(N=!1,k(V),V=-1),y=!0;var G=x;try{for(C(oe),m=n(u);m!==null&&(!(m.expirationTime>oe)||P&&!Q());){var _=m.callback;if(typeof _=="function"){m.callback=null,x=m.priorityLevel;var U=_(m.expirationTime<=oe);oe=t.unstable_now(),typeof U=="function"?m.callback=U:m===n(u)&&r(u),C(oe)}else r(u);m=n(u)}if(m!==null)var H=!0;else{var K=n(h);K!==null&&D(R,K.startTime-oe),H=!1}return H}finally{m=null,x=G,y=!1}}var q=!1,$=null,V=-1,I=5,te=-1;function Q(){return!(t.unstable_now()-teP||125_?(P.sortIndex=G,e(h,P),n(u)===null&&P===n(h)&&(N?(k(V),V=-1):N=!0,D(R,G-_))):(P.sortIndex=U,e(u,P),v||y||(v=!0,F(O))),P},t.unstable_shouldYield=Q,t.unstable_wrapCallback=function(P){var oe=x;return function(){var G=x;x=oe;try{return P.apply(this,arguments)}finally{x=G}}}})(ox)),ox}var Qv;function zT(){return Qv||(Qv=1,ix.exports=_T()),ix.exports}/** + * @license React + * react-dom.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var Yv;function $T(){if(Yv)return er;Yv=1;var t=du(),e=zT();function n(l){for(var d="https://reactjs.org/docs/error-decoder.html?invariant="+l,p=1;p"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),u=Object.prototype.hasOwnProperty,h=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,f={},m={};function x(l){return u.call(m,l)?!0:u.call(f,l)?!1:h.test(l)?m[l]=!0:(f[l]=!0,!1)}function y(l,d,p,g){if(p!==null&&p.type===0)return!1;switch(typeof d){case"function":case"symbol":return!0;case"boolean":return g?!1:p!==null?!p.acceptsBooleans:(l=l.toLowerCase().slice(0,5),l!=="data-"&&l!=="aria-");default:return!1}}function v(l,d,p,g){if(d===null||typeof d>"u"||y(l,d,p,g))return!0;if(g)return!1;if(p!==null)switch(p.type){case 3:return!d;case 4:return d===!1;case 5:return isNaN(d);case 6:return isNaN(d)||1>d}return!1}function N(l,d,p,g,j,S,M){this.acceptsBooleans=d===2||d===3||d===4,this.attributeName=g,this.attributeNamespace=j,this.mustUseProperty=p,this.propertyName=l,this.type=d,this.sanitizeURL=S,this.removeEmptyString=M}var w={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(l){w[l]=new N(l,0,!1,l,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(l){var d=l[0];w[d]=new N(d,1,!1,l[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(l){w[l]=new N(l,2,!1,l.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(l){w[l]=new N(l,2,!1,l,null,!1,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(l){w[l]=new N(l,3,!1,l.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(l){w[l]=new N(l,3,!0,l,null,!1,!1)}),["capture","download"].forEach(function(l){w[l]=new N(l,4,!1,l,null,!1,!1)}),["cols","rows","size","span"].forEach(function(l){w[l]=new N(l,6,!1,l,null,!1,!1)}),["rowSpan","start"].forEach(function(l){w[l]=new N(l,5,!1,l.toLowerCase(),null,!1,!1)});var k=/[\-:]([a-z])/g;function E(l){return l[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(l){var d=l.replace(k,E);w[d]=new N(d,1,!1,l,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(l){var d=l.replace(k,E);w[d]=new N(d,1,!1,l,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(l){var d=l.replace(k,E);w[d]=new N(d,1,!1,l,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(l){w[l]=new N(l,1,!1,l.toLowerCase(),null,!1,!1)}),w.xlinkHref=new N("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(l){w[l]=new N(l,1,!1,l.toLowerCase(),null,!0,!0)});function C(l,d,p,g){var j=w.hasOwnProperty(d)?w[d]:null;(j!==null?j.type!==0:g||!(2W||j[M]!==S[W]){var Z=` +`+j[M].replace(" at new "," at ");return l.displayName&&Z.includes("")&&(Z=Z.replace("",l.displayName)),Z}while(1<=M&&0<=W);break}}}finally{H=!1,Error.prepareStackTrace=p}return(l=l?l.displayName||l.name:"")?U(l):""}function me(l){switch(l.tag){case 5:return U(l.type);case 16:return U("Lazy");case 13:return U("Suspense");case 19:return U("SuspenseList");case 0:case 2:case 15:return l=K(l.type,!1),l;case 11:return l=K(l.type.render,!1),l;case 1:return l=K(l.type,!0),l;default:return""}}function X(l){if(l==null)return null;if(typeof l=="function")return l.displayName||l.name||null;if(typeof l=="string")return l;switch(l){case $:return"Fragment";case q:return"Portal";case I:return"Profiler";case V:return"StrictMode";case re:return"Suspense";case ae:return"SuspenseList"}if(typeof l=="object")switch(l.$$typeof){case Q:return(l.displayName||"Context")+".Consumer";case te:return(l._context.displayName||"Context")+".Provider";case B:var d=l.render;return l=l.displayName,l||(l=d.displayName||d.name||"",l=l!==""?"ForwardRef("+l+")":"ForwardRef"),l;case J:return d=l.displayName||null,d!==null?d:X(l.type)||"Memo";case F:d=l._payload,l=l._init;try{return X(l(d))}catch{}}return null}function le(l){var d=l.type;switch(l.tag){case 24:return"Cache";case 9:return(d.displayName||"Context")+".Consumer";case 10:return(d._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return l=d.render,l=l.displayName||l.name||"",d.displayName||(l!==""?"ForwardRef("+l+")":"ForwardRef");case 7:return"Fragment";case 5:return d;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return X(d);case 8:return d===V?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof d=="function")return d.displayName||d.name||null;if(typeof d=="string")return d}return null}function de(l){switch(typeof l){case"boolean":case"number":case"string":case"undefined":return l;case"object":return l;default:return""}}function ve(l){var d=l.type;return(l=l.nodeName)&&l.toLowerCase()==="input"&&(d==="checkbox"||d==="radio")}function ye(l){var d=ve(l)?"checked":"value",p=Object.getOwnPropertyDescriptor(l.constructor.prototype,d),g=""+l[d];if(!l.hasOwnProperty(d)&&typeof p<"u"&&typeof p.get=="function"&&typeof p.set=="function"){var j=p.get,S=p.set;return Object.defineProperty(l,d,{configurable:!0,get:function(){return j.call(this)},set:function(M){g=""+M,S.call(this,M)}}),Object.defineProperty(l,d,{enumerable:p.enumerable}),{getValue:function(){return g},setValue:function(M){g=""+M},stopTracking:function(){l._valueTracker=null,delete l[d]}}}}function Se(l){l._valueTracker||(l._valueTracker=ye(l))}function Fe(l){if(!l)return!1;var d=l._valueTracker;if(!d)return!0;var p=d.getValue(),g="";return l&&(g=ve(l)?l.checked?"true":"false":l.value),l=g,l!==p?(d.setValue(l),!0):!1}function mt(l){if(l=l||(typeof document<"u"?document:void 0),typeof l>"u")return null;try{return l.activeElement||l.body}catch{return l.body}}function kt(l,d){var p=d.checked;return G({},d,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:p??l._wrapperState.initialChecked})}function ft(l,d){var p=d.defaultValue==null?"":d.defaultValue,g=d.checked!=null?d.checked:d.defaultChecked;p=de(d.value!=null?d.value:p),l._wrapperState={initialChecked:g,initialValue:p,controlled:d.type==="checkbox"||d.type==="radio"?d.checked!=null:d.value!=null}}function Dt(l,d){d=d.checked,d!=null&&C(l,"checked",d,!1)}function Pt(l,d){Dt(l,d);var p=de(d.value),g=d.type;if(p!=null)g==="number"?(p===0&&l.value===""||l.value!=p)&&(l.value=""+p):l.value!==""+p&&(l.value=""+p);else if(g==="submit"||g==="reset"){l.removeAttribute("value");return}d.hasOwnProperty("value")?yn(l,d.type,p):d.hasOwnProperty("defaultValue")&&yn(l,d.type,de(d.defaultValue)),d.checked==null&&d.defaultChecked!=null&&(l.defaultChecked=!!d.defaultChecked)}function Rn(l,d,p){if(d.hasOwnProperty("value")||d.hasOwnProperty("defaultValue")){var g=d.type;if(!(g!=="submit"&&g!=="reset"||d.value!==void 0&&d.value!==null))return;d=""+l._wrapperState.initialValue,p||d===l.value||(l.value=d),l.defaultValue=d}p=l.name,p!==""&&(l.name=""),l.defaultChecked=!!l._wrapperState.initialChecked,p!==""&&(l.name=p)}function yn(l,d,p){(d!=="number"||mt(l.ownerDocument)!==l)&&(p==null?l.defaultValue=""+l._wrapperState.initialValue:l.defaultValue!==""+p&&(l.defaultValue=""+p))}var Wt=Array.isArray;function Xt(l,d,p,g){if(l=l.options,d){d={};for(var j=0;j"+d.valueOf().toString()+"",d=ge.firstChild;l.firstChild;)l.removeChild(l.firstChild);for(;d.firstChild;)l.appendChild(d.firstChild)}});function Be(l,d){if(d){var p=l.firstChild;if(p&&p===l.lastChild&&p.nodeType===3){p.nodeValue=d;return}}l.textContent=d}var Ze={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},St=["Webkit","ms","Moz","O"];Object.keys(Ze).forEach(function(l){St.forEach(function(d){d=d+l.charAt(0).toUpperCase()+l.substring(1),Ze[d]=Ze[l]})});function vt(l,d,p){return d==null||typeof d=="boolean"||d===""?"":p||typeof d!="number"||d===0||Ze.hasOwnProperty(l)&&Ze[l]?(""+d).trim():d+"px"}function L(l,d){l=l.style;for(var p in d)if(d.hasOwnProperty(p)){var g=p.indexOf("--")===0,j=vt(p,d[p],g);p==="float"&&(p="cssFloat"),g?l.setProperty(p,j):l[p]=j}}var Ie=G({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function xt(l,d){if(d){if(Ie[l]&&(d.children!=null||d.dangerouslySetInnerHTML!=null))throw Error(n(137,l));if(d.dangerouslySetInnerHTML!=null){if(d.children!=null)throw Error(n(60));if(typeof d.dangerouslySetInnerHTML!="object"||!("__html"in d.dangerouslySetInnerHTML))throw Error(n(61))}if(d.style!=null&&typeof d.style!="object")throw Error(n(62))}}function Rt(l,d){if(l.indexOf("-")===-1)return typeof d.is=="string";switch(l){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var pt=null;function at(l){return l=l.target||l.srcElement||window,l.correspondingUseElement&&(l=l.correspondingUseElement),l.nodeType===3?l.parentNode:l}var At=null,Kt=null,en=null;function ls(l){if(l=od(l)){if(typeof At!="function")throw Error(n(280));var d=l.stateNode;d&&(d=Eu(d),At(l.stateNode,l.type,d))}}function Ws(l){Kt?en?en.push(l):en=[l]:Kt=l}function Fr(){if(Kt){var l=Kt,d=en;if(en=Kt=null,ls(l),d)for(l=0;l>>=0,l===0?32:31-(Ll(l)/Mi|0)|0}var Ua=64,Ai=4194304;function Nr(l){switch(l&-l){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return l&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return l&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return l}}function Wa(l,d){var p=l.pendingLanes;if(p===0)return 0;var g=0,j=l.suspendedLanes,S=l.pingedLanes,M=p&268435455;if(M!==0){var W=M&~j;W!==0?g=Nr(W):(S&=M,S!==0&&(g=Nr(S)))}else M=p&~j,M!==0?g=Nr(M):S!==0&&(g=Nr(S));if(g===0)return 0;if(d!==0&&d!==g&&(d&j)===0&&(j=g&-g,S=d&-d,j>=S||j===16&&(S&4194240)!==0))return d;if((g&4)!==0&&(g|=p&16),d=l.entangledLanes,d!==0)for(l=l.entanglements,d&=g;0p;p++)d.push(l);return d}function ua(l,d,p){l.pendingLanes|=d,d!==536870912&&(l.suspendedLanes=0,l.pingedLanes=0),l=l.eventTimes,d=31-ws(d),l[d]=p}function Ii(l,d){var p=l.pendingLanes&~d;l.pendingLanes=d,l.suspendedLanes=0,l.pingedLanes=0,l.expiredLanes&=d,l.mutableReadLanes&=d,l.entangledLanes&=d,d=l.entanglements;var g=l.eventTimes;for(l=l.expirationTimes;0=Xc),zy=" ",$y=!1;function Fy(l,d){switch(l){case"keyup":return E4.indexOf(d.keyCode)!==-1;case"keydown":return d.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function By(l){return l=l.detail,typeof l=="object"&&"data"in l?l.data:null}var $l=!1;function A4(l,d){switch(l){case"compositionend":return By(d);case"keypress":return d.which!==32?null:($y=!0,zy);case"textInput":return l=d.data,l===zy&&$y?null:l;default:return null}}function I4(l,d){if($l)return l==="compositionend"||!_p&&Fy(l,d)?(l=_i(),Ya=Qa=Cr=null,$l=!1,l):null;switch(l){case"paste":return null;case"keypress":if(!(d.ctrlKey||d.altKey||d.metaKey)||d.ctrlKey&&d.altKey){if(d.char&&1=d)return{node:p,offset:d-l};l=g}e:{for(;p;){if(p.nextSibling){p=p.nextSibling;break e}p=p.parentNode}p=void 0}p=Gy(p)}}function Qy(l,d){return l&&d?l===d?!0:l&&l.nodeType===3?!1:d&&d.nodeType===3?Qy(l,d.parentNode):"contains"in l?l.contains(d):l.compareDocumentPosition?!!(l.compareDocumentPosition(d)&16):!1:!1}function Yy(){for(var l=window,d=mt();d instanceof l.HTMLIFrameElement;){try{var p=typeof d.contentWindow.location.href=="string"}catch{p=!1}if(p)l=d.contentWindow;else break;d=mt(l.document)}return d}function Fp(l){var d=l&&l.nodeName&&l.nodeName.toLowerCase();return d&&(d==="input"&&(l.type==="text"||l.type==="search"||l.type==="tel"||l.type==="url"||l.type==="password")||d==="textarea"||l.contentEditable==="true")}function F4(l){var d=Yy(),p=l.focusedElem,g=l.selectionRange;if(d!==p&&p&&p.ownerDocument&&Qy(p.ownerDocument.documentElement,p)){if(g!==null&&Fp(p)){if(d=g.start,l=g.end,l===void 0&&(l=d),"selectionStart"in p)p.selectionStart=d,p.selectionEnd=Math.min(l,p.value.length);else if(l=(d=p.ownerDocument||document)&&d.defaultView||window,l.getSelection){l=l.getSelection();var j=p.textContent.length,S=Math.min(g.start,j);g=g.end===void 0?S:Math.min(g.end,j),!l.extend&&S>g&&(j=g,g=S,S=j),j=Jy(p,S);var M=Jy(p,g);j&&M&&(l.rangeCount!==1||l.anchorNode!==j.node||l.anchorOffset!==j.offset||l.focusNode!==M.node||l.focusOffset!==M.offset)&&(d=d.createRange(),d.setStart(j.node,j.offset),l.removeAllRanges(),S>g?(l.addRange(d),l.extend(M.node,M.offset)):(d.setEnd(M.node,M.offset),l.addRange(d)))}}for(d=[],l=p;l=l.parentNode;)l.nodeType===1&&d.push({element:l,left:l.scrollLeft,top:l.scrollTop});for(typeof p.focus=="function"&&p.focus(),p=0;p=document.documentMode,Fl=null,Bp=null,nd=null,Vp=!1;function Xy(l,d,p){var g=p.window===p?p.document:p.nodeType===9?p:p.ownerDocument;Vp||Fl==null||Fl!==mt(g)||(g=Fl,"selectionStart"in g&&Fp(g)?g={start:g.selectionStart,end:g.selectionEnd}:(g=(g.ownerDocument&&g.ownerDocument.defaultView||window).getSelection(),g={anchorNode:g.anchorNode,anchorOffset:g.anchorOffset,focusNode:g.focusNode,focusOffset:g.focusOffset}),nd&&td(nd,g)||(nd=g,g=Su(Bp,"onSelect"),0Wl||(l.current=em[Wl],em[Wl]=null,Wl--)}function on(l,d){Wl++,em[Wl]=l.current,l.current=d}var Wi={},Ss=Ui(Wi),Js=Ui(!1),Wo=Wi;function Kl(l,d){var p=l.type.contextTypes;if(!p)return Wi;var g=l.stateNode;if(g&&g.__reactInternalMemoizedUnmaskedChildContext===d)return g.__reactInternalMemoizedMaskedChildContext;var j={},S;for(S in p)j[S]=d[S];return g&&(l=l.stateNode,l.__reactInternalMemoizedUnmaskedChildContext=d,l.__reactInternalMemoizedMaskedChildContext=j),j}function Qs(l){return l=l.childContextTypes,l!=null}function Mu(){hn(Js),hn(Ss)}function fb(l,d,p){if(Ss.current!==Wi)throw Error(n(168));on(Ss,d),on(Js,p)}function pb(l,d,p){var g=l.stateNode;if(d=d.childContextTypes,typeof g.getChildContext!="function")return p;g=g.getChildContext();for(var j in g)if(!(j in d))throw Error(n(108,le(l)||"Unknown",j));return G({},p,g)}function Au(l){return l=(l=l.stateNode)&&l.__reactInternalMemoizedMergedChildContext||Wi,Wo=Ss.current,on(Ss,l),on(Js,Js.current),!0}function mb(l,d,p){var g=l.stateNode;if(!g)throw Error(n(169));p?(l=pb(l,d,Wo),g.__reactInternalMemoizedMergedChildContext=l,hn(Js),hn(Ss),on(Ss,l)):hn(Js),on(Js,p)}var ei=null,Iu=!1,tm=!1;function xb(l){ei===null?ei=[l]:ei.push(l)}function X4(l){Iu=!0,xb(l)}function Ki(){if(!tm&&ei!==null){tm=!0;var l=0,d=Tt;try{var p=ei;for(Tt=1;l>=M,j-=M,ti=1<<32-ws(d)+j|p<ut?(ns=rt,rt=null):ns=rt.sibling;var _t=Te(he,rt,fe[ut],Oe);if(_t===null){rt===null&&(rt=ns);break}l&&rt&&_t.alternate===null&&d(he,rt),se=S(_t,se,ut),st===null?Ye=_t:st.sibling=_t,st=_t,rt=ns}if(ut===fe.length)return p(he,rt),mn&&qo(he,ut),Ye;if(rt===null){for(;utut?(ns=rt,rt=null):ns=rt.sibling;var to=Te(he,rt,_t.value,Oe);if(to===null){rt===null&&(rt=ns);break}l&&rt&&to.alternate===null&&d(he,rt),se=S(to,se,ut),st===null?Ye=to:st.sibling=to,st=to,rt=ns}if(_t.done)return p(he,rt),mn&&qo(he,ut),Ye;if(rt===null){for(;!_t.done;ut++,_t=fe.next())_t=Pe(he,_t.value,Oe),_t!==null&&(se=S(_t,se,ut),st===null?Ye=_t:st.sibling=_t,st=_t);return mn&&qo(he,ut),Ye}for(rt=g(he,rt);!_t.done;ut++,_t=fe.next())_t=He(rt,he,ut,_t.value,Oe),_t!==null&&(l&&_t.alternate!==null&&rt.delete(_t.key===null?ut:_t.key),se=S(_t,se,ut),st===null?Ye=_t:st.sibling=_t,st=_t);return l&&rt.forEach(function(PT){return d(he,PT)}),mn&&qo(he,ut),Ye}function Ln(he,se,fe,Oe){if(typeof fe=="object"&&fe!==null&&fe.type===$&&fe.key===null&&(fe=fe.props.children),typeof fe=="object"&&fe!==null){switch(fe.$$typeof){case O:e:{for(var Ye=fe.key,st=se;st!==null;){if(st.key===Ye){if(Ye=fe.type,Ye===$){if(st.tag===7){p(he,st.sibling),se=j(st,fe.props.children),se.return=he,he=se;break e}}else if(st.elementType===Ye||typeof Ye=="object"&&Ye!==null&&Ye.$$typeof===F&&wb(Ye)===st.type){p(he,st.sibling),se=j(st,fe.props),se.ref=ld(he,st,fe),se.return=he,he=se;break e}p(he,st);break}else d(he,st);st=st.sibling}fe.type===$?(se=tl(fe.props.children,he.mode,Oe,fe.key),se.return=he,he=se):(Oe=ah(fe.type,fe.key,fe.props,null,he.mode,Oe),Oe.ref=ld(he,se,fe),Oe.return=he,he=Oe)}return M(he);case q:e:{for(st=fe.key;se!==null;){if(se.key===st)if(se.tag===4&&se.stateNode.containerInfo===fe.containerInfo&&se.stateNode.implementation===fe.implementation){p(he,se.sibling),se=j(se,fe.children||[]),se.return=he,he=se;break e}else{p(he,se);break}else d(he,se);se=se.sibling}se=Xm(fe,he.mode,Oe),se.return=he,he=se}return M(he);case F:return st=fe._init,Ln(he,se,st(fe._payload),Oe)}if(Wt(fe))return Ke(he,se,fe,Oe);if(oe(fe))return Je(he,se,fe,Oe);Lu(he,fe)}return typeof fe=="string"&&fe!==""||typeof fe=="number"?(fe=""+fe,se!==null&&se.tag===6?(p(he,se.sibling),se=j(se,fe),se.return=he,he=se):(p(he,se),se=Ym(fe,he.mode,Oe),se.return=he,he=se),M(he)):p(he,se)}return Ln}var Ql=jb(!0),kb=jb(!1),Du=Ui(null),_u=null,Yl=null,om=null;function lm(){om=Yl=_u=null}function cm(l){var d=Du.current;hn(Du),l._currentValue=d}function dm(l,d,p){for(;l!==null;){var g=l.alternate;if((l.childLanes&d)!==d?(l.childLanes|=d,g!==null&&(g.childLanes|=d)):g!==null&&(g.childLanes&d)!==d&&(g.childLanes|=d),l===p)break;l=l.return}}function Xl(l,d){_u=l,om=Yl=null,l=l.dependencies,l!==null&&l.firstContext!==null&&((l.lanes&d)!==0&&(Ys=!0),l.firstContext=null)}function Ar(l){var d=l._currentValue;if(om!==l)if(l={context:l,memoizedValue:d,next:null},Yl===null){if(_u===null)throw Error(n(308));Yl=l,_u.dependencies={lanes:0,firstContext:l}}else Yl=Yl.next=l;return d}var Go=null;function um(l){Go===null?Go=[l]:Go.push(l)}function Sb(l,d,p,g){var j=d.interleaved;return j===null?(p.next=p,um(d)):(p.next=j.next,j.next=p),d.interleaved=p,si(l,g)}function si(l,d){l.lanes|=d;var p=l.alternate;for(p!==null&&(p.lanes|=d),p=l,l=l.return;l!==null;)l.childLanes|=d,p=l.alternate,p!==null&&(p.childLanes|=d),p=l,l=l.return;return p.tag===3?p.stateNode:null}var qi=!1;function hm(l){l.updateQueue={baseState:l.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Cb(l,d){l=l.updateQueue,d.updateQueue===l&&(d.updateQueue={baseState:l.baseState,firstBaseUpdate:l.firstBaseUpdate,lastBaseUpdate:l.lastBaseUpdate,shared:l.shared,effects:l.effects})}function ri(l,d){return{eventTime:l,lane:d,tag:0,payload:null,callback:null,next:null}}function Gi(l,d,p){var g=l.updateQueue;if(g===null)return null;if(g=g.shared,(Lt&2)!==0){var j=g.pending;return j===null?d.next=d:(d.next=j.next,j.next=d),g.pending=d,si(l,p)}return j=g.interleaved,j===null?(d.next=d,um(g)):(d.next=j.next,j.next=d),g.interleaved=d,si(l,p)}function zu(l,d,p){if(d=d.updateQueue,d!==null&&(d=d.shared,(p&4194240)!==0)){var g=d.lanes;g&=l.pendingLanes,p|=g,d.lanes=p,qs(l,p)}}function Tb(l,d){var p=l.updateQueue,g=l.alternate;if(g!==null&&(g=g.updateQueue,p===g)){var j=null,S=null;if(p=p.firstBaseUpdate,p!==null){do{var M={eventTime:p.eventTime,lane:p.lane,tag:p.tag,payload:p.payload,callback:p.callback,next:null};S===null?j=S=M:S=S.next=M,p=p.next}while(p!==null);S===null?j=S=d:S=S.next=d}else j=S=d;p={baseState:g.baseState,firstBaseUpdate:j,lastBaseUpdate:S,shared:g.shared,effects:g.effects},l.updateQueue=p;return}l=p.lastBaseUpdate,l===null?p.firstBaseUpdate=d:l.next=d,p.lastBaseUpdate=d}function $u(l,d,p,g){var j=l.updateQueue;qi=!1;var S=j.firstBaseUpdate,M=j.lastBaseUpdate,W=j.shared.pending;if(W!==null){j.shared.pending=null;var Z=W,pe=Z.next;Z.next=null,M===null?S=pe:M.next=pe,M=Z;var Ee=l.alternate;Ee!==null&&(Ee=Ee.updateQueue,W=Ee.lastBaseUpdate,W!==M&&(W===null?Ee.firstBaseUpdate=pe:W.next=pe,Ee.lastBaseUpdate=Z))}if(S!==null){var Pe=j.baseState;M=0,Ee=pe=Z=null,W=S;do{var Te=W.lane,He=W.eventTime;if((g&Te)===Te){Ee!==null&&(Ee=Ee.next={eventTime:He,lane:0,tag:W.tag,payload:W.payload,callback:W.callback,next:null});e:{var Ke=l,Je=W;switch(Te=d,He=p,Je.tag){case 1:if(Ke=Je.payload,typeof Ke=="function"){Pe=Ke.call(He,Pe,Te);break e}Pe=Ke;break e;case 3:Ke.flags=Ke.flags&-65537|128;case 0:if(Ke=Je.payload,Te=typeof Ke=="function"?Ke.call(He,Pe,Te):Ke,Te==null)break e;Pe=G({},Pe,Te);break e;case 2:qi=!0}}W.callback!==null&&W.lane!==0&&(l.flags|=64,Te=j.effects,Te===null?j.effects=[W]:Te.push(W))}else He={eventTime:He,lane:Te,tag:W.tag,payload:W.payload,callback:W.callback,next:null},Ee===null?(pe=Ee=He,Z=Pe):Ee=Ee.next=He,M|=Te;if(W=W.next,W===null){if(W=j.shared.pending,W===null)break;Te=W,W=Te.next,Te.next=null,j.lastBaseUpdate=Te,j.shared.pending=null}}while(!0);if(Ee===null&&(Z=Pe),j.baseState=Z,j.firstBaseUpdate=pe,j.lastBaseUpdate=Ee,d=j.shared.interleaved,d!==null){j=d;do M|=j.lane,j=j.next;while(j!==d)}else S===null&&(j.shared.lanes=0);Yo|=M,l.lanes=M,l.memoizedState=Pe}}function Eb(l,d,p){if(l=d.effects,d.effects=null,l!==null)for(d=0;dp?p:4,l(!0);var g=gm.transition;gm.transition={};try{l(!1),d()}finally{Tt=p,gm.transition=g}}function qb(){return Ir().memoizedState}function nT(l,d,p){var g=Xi(l);if(p={lane:g,action:p,hasEagerState:!1,eagerState:null,next:null},Gb(l))Jb(d,p);else if(p=Sb(l,d,p,g),p!==null){var j=Bs();Xr(p,l,g,j),Qb(p,d,g)}}function sT(l,d,p){var g=Xi(l),j={lane:g,action:p,hasEagerState:!1,eagerState:null,next:null};if(Gb(l))Jb(d,j);else{var S=l.alternate;if(l.lanes===0&&(S===null||S.lanes===0)&&(S=d.lastRenderedReducer,S!==null))try{var M=d.lastRenderedState,W=S(M,p);if(j.hasEagerState=!0,j.eagerState=W,qr(W,M)){var Z=d.interleaved;Z===null?(j.next=j,um(d)):(j.next=Z.next,Z.next=j),d.interleaved=j;return}}catch{}finally{}p=Sb(l,d,j,g),p!==null&&(j=Bs(),Xr(p,l,g,j),Qb(p,d,g))}}function Gb(l){var d=l.alternate;return l===jn||d!==null&&d===jn}function Jb(l,d){hd=Vu=!0;var p=l.pending;p===null?d.next=d:(d.next=p.next,p.next=d),l.pending=d}function Qb(l,d,p){if((p&4194240)!==0){var g=d.lanes;g&=l.pendingLanes,p|=g,d.lanes=p,qs(l,p)}}var Wu={readContext:Ar,useCallback:Cs,useContext:Cs,useEffect:Cs,useImperativeHandle:Cs,useInsertionEffect:Cs,useLayoutEffect:Cs,useMemo:Cs,useReducer:Cs,useRef:Cs,useState:Cs,useDebugValue:Cs,useDeferredValue:Cs,useTransition:Cs,useMutableSource:Cs,useSyncExternalStore:Cs,useId:Cs,unstable_isNewReconciler:!1},rT={readContext:Ar,useCallback:function(l,d){return ja().memoizedState=[l,d===void 0?null:d],l},useContext:Ar,useEffect:$b,useImperativeHandle:function(l,d,p){return p=p!=null?p.concat([l]):null,Hu(4194308,4,Vb.bind(null,d,l),p)},useLayoutEffect:function(l,d){return Hu(4194308,4,l,d)},useInsertionEffect:function(l,d){return Hu(4,2,l,d)},useMemo:function(l,d){var p=ja();return d=d===void 0?null:d,l=l(),p.memoizedState=[l,d],l},useReducer:function(l,d,p){var g=ja();return d=p!==void 0?p(d):d,g.memoizedState=g.baseState=d,l={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:l,lastRenderedState:d},g.queue=l,l=l.dispatch=nT.bind(null,jn,l),[g.memoizedState,l]},useRef:function(l){var d=ja();return l={current:l},d.memoizedState=l},useState:_b,useDebugValue:km,useDeferredValue:function(l){return ja().memoizedState=l},useTransition:function(){var l=_b(!1),d=l[0];return l=tT.bind(null,l[1]),ja().memoizedState=l,[d,l]},useMutableSource:function(){},useSyncExternalStore:function(l,d,p){var g=jn,j=ja();if(mn){if(p===void 0)throw Error(n(407));p=p()}else{if(p=d(),ts===null)throw Error(n(349));(Qo&30)!==0||Pb(g,d,p)}j.memoizedState=p;var S={value:p,getSnapshot:d};return j.queue=S,$b(Ob.bind(null,g,S,l),[l]),g.flags|=2048,md(9,Rb.bind(null,g,S,p,d),void 0,null),p},useId:function(){var l=ja(),d=ts.identifierPrefix;if(mn){var p=ni,g=ti;p=(g&~(1<<32-ws(g)-1)).toString(32)+p,d=":"+d+"R"+p,p=fd++,0<\/script>",l=l.removeChild(l.firstChild)):typeof g.is=="string"?l=M.createElement(p,{is:g.is}):(l=M.createElement(p),p==="select"&&(M=l,g.multiple?M.multiple=!0:g.size&&(M.size=g.size))):l=M.createElementNS(l,p),l[Na]=d,l[id]=g,xv(l,d,!1,!1),d.stateNode=l;e:{switch(M=Rt(p,g),p){case"dialog":un("cancel",l),un("close",l),j=g;break;case"iframe":case"object":case"embed":un("load",l),j=g;break;case"video":case"audio":for(j=0;jsc&&(d.flags|=128,g=!0,xd(S,!1),d.lanes=4194304)}else{if(!g)if(l=Fu(M),l!==null){if(d.flags|=128,g=!0,p=l.updateQueue,p!==null&&(d.updateQueue=p,d.flags|=4),xd(S,!0),S.tail===null&&S.tailMode==="hidden"&&!M.alternate&&!mn)return Ts(d),null}else 2*Ft()-S.renderingStartTime>sc&&p!==1073741824&&(d.flags|=128,g=!0,xd(S,!1),d.lanes=4194304);S.isBackwards?(M.sibling=d.child,d.child=M):(p=S.last,p!==null?p.sibling=M:d.child=M,S.last=M)}return S.tail!==null?(d=S.tail,S.rendering=d,S.tail=d.sibling,S.renderingStartTime=Ft(),d.sibling=null,p=wn.current,on(wn,g?p&1|2:p&1),d):(Ts(d),null);case 22:case 23:return Gm(),g=d.memoizedState!==null,l!==null&&l.memoizedState!==null!==g&&(d.flags|=8192),g&&(d.mode&1)!==0?(hr&1073741824)!==0&&(Ts(d),d.subtreeFlags&6&&(d.flags|=8192)):Ts(d),null;case 24:return null;case 25:return null}throw Error(n(156,d.tag))}function hT(l,d){switch(sm(d),d.tag){case 1:return Qs(d.type)&&Mu(),l=d.flags,l&65536?(d.flags=l&-65537|128,d):null;case 3:return Zl(),hn(Js),hn(Ss),xm(),l=d.flags,(l&65536)!==0&&(l&128)===0?(d.flags=l&-65537|128,d):null;case 5:return pm(d),null;case 13:if(hn(wn),l=d.memoizedState,l!==null&&l.dehydrated!==null){if(d.alternate===null)throw Error(n(340));Jl()}return l=d.flags,l&65536?(d.flags=l&-65537|128,d):null;case 19:return hn(wn),null;case 4:return Zl(),null;case 10:return cm(d.type._context),null;case 22:case 23:return Gm(),null;case 24:return null;default:return null}}var Ju=!1,Es=!1,fT=typeof WeakSet=="function"?WeakSet:Set,We=null;function tc(l,d){var p=l.ref;if(p!==null)if(typeof p=="function")try{p(null)}catch(g){Tn(l,d,g)}else p.current=null}function Dm(l,d,p){try{p()}catch(g){Tn(l,d,g)}}var bv=!1;function pT(l,d){if(Gp=Ga,l=Yy(),Fp(l)){if("selectionStart"in l)var p={start:l.selectionStart,end:l.selectionEnd};else e:{p=(p=l.ownerDocument)&&p.defaultView||window;var g=p.getSelection&&p.getSelection();if(g&&g.rangeCount!==0){p=g.anchorNode;var j=g.anchorOffset,S=g.focusNode;g=g.focusOffset;try{p.nodeType,S.nodeType}catch{p=null;break e}var M=0,W=-1,Z=-1,pe=0,Ee=0,Pe=l,Te=null;t:for(;;){for(var He;Pe!==p||j!==0&&Pe.nodeType!==3||(W=M+j),Pe!==S||g!==0&&Pe.nodeType!==3||(Z=M+g),Pe.nodeType===3&&(M+=Pe.nodeValue.length),(He=Pe.firstChild)!==null;)Te=Pe,Pe=He;for(;;){if(Pe===l)break t;if(Te===p&&++pe===j&&(W=M),Te===S&&++Ee===g&&(Z=M),(He=Pe.nextSibling)!==null)break;Pe=Te,Te=Pe.parentNode}Pe=He}p=W===-1||Z===-1?null:{start:W,end:Z}}else p=null}p=p||{start:0,end:0}}else p=null;for(Jp={focusedElem:l,selectionRange:p},Ga=!1,We=d;We!==null;)if(d=We,l=d.child,(d.subtreeFlags&1028)!==0&&l!==null)l.return=d,We=l;else for(;We!==null;){d=We;try{var Ke=d.alternate;if((d.flags&1024)!==0)switch(d.tag){case 0:case 11:case 15:break;case 1:if(Ke!==null){var Je=Ke.memoizedProps,Ln=Ke.memoizedState,he=d.stateNode,se=he.getSnapshotBeforeUpdate(d.elementType===d.type?Je:Jr(d.type,Je),Ln);he.__reactInternalSnapshotBeforeUpdate=se}break;case 3:var fe=d.stateNode.containerInfo;fe.nodeType===1?fe.textContent="":fe.nodeType===9&&fe.documentElement&&fe.removeChild(fe.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(n(163))}}catch(Oe){Tn(d,d.return,Oe)}if(l=d.sibling,l!==null){l.return=d.return,We=l;break}We=d.return}return Ke=bv,bv=!1,Ke}function gd(l,d,p){var g=d.updateQueue;if(g=g!==null?g.lastEffect:null,g!==null){var j=g=g.next;do{if((j.tag&l)===l){var S=j.destroy;j.destroy=void 0,S!==void 0&&Dm(d,p,S)}j=j.next}while(j!==g)}}function Qu(l,d){if(d=d.updateQueue,d=d!==null?d.lastEffect:null,d!==null){var p=d=d.next;do{if((p.tag&l)===l){var g=p.create;p.destroy=g()}p=p.next}while(p!==d)}}function _m(l){var d=l.ref;if(d!==null){var p=l.stateNode;switch(l.tag){case 5:l=p;break;default:l=p}typeof d=="function"?d(l):d.current=l}}function vv(l){var d=l.alternate;d!==null&&(l.alternate=null,vv(d)),l.child=null,l.deletions=null,l.sibling=null,l.tag===5&&(d=l.stateNode,d!==null&&(delete d[Na],delete d[id],delete d[Zp],delete d[Q4],delete d[Y4])),l.stateNode=null,l.return=null,l.dependencies=null,l.memoizedProps=null,l.memoizedState=null,l.pendingProps=null,l.stateNode=null,l.updateQueue=null}function Nv(l){return l.tag===5||l.tag===3||l.tag===4}function wv(l){e:for(;;){for(;l.sibling===null;){if(l.return===null||Nv(l.return))return null;l=l.return}for(l.sibling.return=l.return,l=l.sibling;l.tag!==5&&l.tag!==6&&l.tag!==18;){if(l.flags&2||l.child===null||l.tag===4)continue e;l.child.return=l,l=l.child}if(!(l.flags&2))return l.stateNode}}function zm(l,d,p){var g=l.tag;if(g===5||g===6)l=l.stateNode,d?p.nodeType===8?p.parentNode.insertBefore(l,d):p.insertBefore(l,d):(p.nodeType===8?(d=p.parentNode,d.insertBefore(l,p)):(d=p,d.appendChild(l)),p=p._reactRootContainer,p!=null||d.onclick!==null||(d.onclick=Tu));else if(g!==4&&(l=l.child,l!==null))for(zm(l,d,p),l=l.sibling;l!==null;)zm(l,d,p),l=l.sibling}function $m(l,d,p){var g=l.tag;if(g===5||g===6)l=l.stateNode,d?p.insertBefore(l,d):p.appendChild(l);else if(g!==4&&(l=l.child,l!==null))for($m(l,d,p),l=l.sibling;l!==null;)$m(l,d,p),l=l.sibling}var hs=null,Qr=!1;function Ji(l,d,p){for(p=p.child;p!==null;)jv(l,d,p),p=p.sibling}function jv(l,d,p){if(Ns&&typeof Ns.onCommitFiberUnmount=="function")try{Ns.onCommitFiberUnmount(da,p)}catch{}switch(p.tag){case 5:Es||tc(p,d);case 6:var g=hs,j=Qr;hs=null,Ji(l,d,p),hs=g,Qr=j,hs!==null&&(Qr?(l=hs,p=p.stateNode,l.nodeType===8?l.parentNode.removeChild(p):l.removeChild(p)):hs.removeChild(p.stateNode));break;case 18:hs!==null&&(Qr?(l=hs,p=p.stateNode,l.nodeType===8?Xp(l.parentNode,p):l.nodeType===1&&Xp(l,p),Gs(l)):Xp(hs,p.stateNode));break;case 4:g=hs,j=Qr,hs=p.stateNode.containerInfo,Qr=!0,Ji(l,d,p),hs=g,Qr=j;break;case 0:case 11:case 14:case 15:if(!Es&&(g=p.updateQueue,g!==null&&(g=g.lastEffect,g!==null))){j=g=g.next;do{var S=j,M=S.destroy;S=S.tag,M!==void 0&&((S&2)!==0||(S&4)!==0)&&Dm(p,d,M),j=j.next}while(j!==g)}Ji(l,d,p);break;case 1:if(!Es&&(tc(p,d),g=p.stateNode,typeof g.componentWillUnmount=="function"))try{g.props=p.memoizedProps,g.state=p.memoizedState,g.componentWillUnmount()}catch(W){Tn(p,d,W)}Ji(l,d,p);break;case 21:Ji(l,d,p);break;case 22:p.mode&1?(Es=(g=Es)||p.memoizedState!==null,Ji(l,d,p),Es=g):Ji(l,d,p);break;default:Ji(l,d,p)}}function kv(l){var d=l.updateQueue;if(d!==null){l.updateQueue=null;var p=l.stateNode;p===null&&(p=l.stateNode=new fT),d.forEach(function(g){var j=jT.bind(null,l,g);p.has(g)||(p.add(g),g.then(j,j))})}}function Yr(l,d){var p=d.deletions;if(p!==null)for(var g=0;gj&&(j=M),g&=~S}if(g=j,g=Ft()-g,g=(120>g?120:480>g?480:1080>g?1080:1920>g?1920:3e3>g?3e3:4320>g?4320:1960*xT(g/1960))-g,10l?16:l,Yi===null)var g=!1;else{if(l=Yi,Yi=null,th=0,(Lt&6)!==0)throw Error(n(331));var j=Lt;for(Lt|=4,We=l.current;We!==null;){var S=We,M=S.child;if((We.flags&16)!==0){var W=S.deletions;if(W!==null){for(var Z=0;ZFt()-Vm?Zo(l,0):Bm|=p),Zs(l,d)}function _v(l,d){d===0&&((l.mode&1)===0?d=1:(d=Ai,Ai<<=1,(Ai&130023424)===0&&(Ai=4194304)));var p=Bs();l=si(l,d),l!==null&&(ua(l,d,p),Zs(l,p))}function wT(l){var d=l.memoizedState,p=0;d!==null&&(p=d.retryLane),_v(l,p)}function jT(l,d){var p=0;switch(l.tag){case 13:var g=l.stateNode,j=l.memoizedState;j!==null&&(p=j.retryLane);break;case 19:g=l.stateNode;break;default:throw Error(n(314))}g!==null&&g.delete(d),_v(l,p)}var zv;zv=function(l,d,p){if(l!==null)if(l.memoizedProps!==d.pendingProps||Js.current)Ys=!0;else{if((l.lanes&p)===0&&(d.flags&128)===0)return Ys=!1,dT(l,d,p);Ys=(l.flags&131072)!==0}else Ys=!1,mn&&(d.flags&1048576)!==0&&gb(d,Ru,d.index);switch(d.lanes=0,d.tag){case 2:var g=d.type;Gu(l,d),l=d.pendingProps;var j=Kl(d,Ss.current);Xl(d,p),j=bm(null,d,g,l,j,p);var S=vm();return d.flags|=1,typeof j=="object"&&j!==null&&typeof j.render=="function"&&j.$$typeof===void 0?(d.tag=1,d.memoizedState=null,d.updateQueue=null,Qs(g)?(S=!0,Au(d)):S=!1,d.memoizedState=j.state!==null&&j.state!==void 0?j.state:null,hm(d),j.updater=Ku,d.stateNode=j,j._reactInternals=d,Cm(d,g,l,p),d=Am(null,d,g,!0,S,p)):(d.tag=0,mn&&S&&nm(d),Fs(null,d,j,p),d=d.child),d;case 16:g=d.elementType;e:{switch(Gu(l,d),l=d.pendingProps,j=g._init,g=j(g._payload),d.type=g,j=d.tag=ST(g),l=Jr(g,l),j){case 0:d=Mm(null,d,g,l,p);break e;case 1:d=dv(null,d,g,l,p);break e;case 11:d=av(null,d,g,l,p);break e;case 14:d=iv(null,d,g,Jr(g.type,l),p);break e}throw Error(n(306,g,""))}return d;case 0:return g=d.type,j=d.pendingProps,j=d.elementType===g?j:Jr(g,j),Mm(l,d,g,j,p);case 1:return g=d.type,j=d.pendingProps,j=d.elementType===g?j:Jr(g,j),dv(l,d,g,j,p);case 3:e:{if(uv(d),l===null)throw Error(n(387));g=d.pendingProps,S=d.memoizedState,j=S.element,Cb(l,d),$u(d,g,null,p);var M=d.memoizedState;if(g=M.element,S.isDehydrated)if(S={element:g,isDehydrated:!1,cache:M.cache,pendingSuspenseBoundaries:M.pendingSuspenseBoundaries,transitions:M.transitions},d.updateQueue.baseState=S,d.memoizedState=S,d.flags&256){j=ec(Error(n(423)),d),d=hv(l,d,g,p,j);break e}else if(g!==j){j=ec(Error(n(424)),d),d=hv(l,d,g,p,j);break e}else for(ur=Hi(d.stateNode.containerInfo.firstChild),dr=d,mn=!0,Gr=null,p=kb(d,null,g,p),d.child=p;p;)p.flags=p.flags&-3|4096,p=p.sibling;else{if(Jl(),g===j){d=ai(l,d,p);break e}Fs(l,d,g,p)}d=d.child}return d;case 5:return Mb(d),l===null&&am(d),g=d.type,j=d.pendingProps,S=l!==null?l.memoizedProps:null,M=j.children,Qp(g,j)?M=null:S!==null&&Qp(g,S)&&(d.flags|=32),cv(l,d),Fs(l,d,M,p),d.child;case 6:return l===null&&am(d),null;case 13:return fv(l,d,p);case 4:return fm(d,d.stateNode.containerInfo),g=d.pendingProps,l===null?d.child=Ql(d,null,g,p):Fs(l,d,g,p),d.child;case 11:return g=d.type,j=d.pendingProps,j=d.elementType===g?j:Jr(g,j),av(l,d,g,j,p);case 7:return Fs(l,d,d.pendingProps,p),d.child;case 8:return Fs(l,d,d.pendingProps.children,p),d.child;case 12:return Fs(l,d,d.pendingProps.children,p),d.child;case 10:e:{if(g=d.type._context,j=d.pendingProps,S=d.memoizedProps,M=j.value,on(Du,g._currentValue),g._currentValue=M,S!==null)if(qr(S.value,M)){if(S.children===j.children&&!Js.current){d=ai(l,d,p);break e}}else for(S=d.child,S!==null&&(S.return=d);S!==null;){var W=S.dependencies;if(W!==null){M=S.child;for(var Z=W.firstContext;Z!==null;){if(Z.context===g){if(S.tag===1){Z=ri(-1,p&-p),Z.tag=2;var pe=S.updateQueue;if(pe!==null){pe=pe.shared;var Ee=pe.pending;Ee===null?Z.next=Z:(Z.next=Ee.next,Ee.next=Z),pe.pending=Z}}S.lanes|=p,Z=S.alternate,Z!==null&&(Z.lanes|=p),dm(S.return,p,d),W.lanes|=p;break}Z=Z.next}}else if(S.tag===10)M=S.type===d.type?null:S.child;else if(S.tag===18){if(M=S.return,M===null)throw Error(n(341));M.lanes|=p,W=M.alternate,W!==null&&(W.lanes|=p),dm(M,p,d),M=S.sibling}else M=S.child;if(M!==null)M.return=S;else for(M=S;M!==null;){if(M===d){M=null;break}if(S=M.sibling,S!==null){S.return=M.return,M=S;break}M=M.return}S=M}Fs(l,d,j.children,p),d=d.child}return d;case 9:return j=d.type,g=d.pendingProps.children,Xl(d,p),j=Ar(j),g=g(j),d.flags|=1,Fs(l,d,g,p),d.child;case 14:return g=d.type,j=Jr(g,d.pendingProps),j=Jr(g.type,j),iv(l,d,g,j,p);case 15:return ov(l,d,d.type,d.pendingProps,p);case 17:return g=d.type,j=d.pendingProps,j=d.elementType===g?j:Jr(g,j),Gu(l,d),d.tag=1,Qs(g)?(l=!0,Au(d)):l=!1,Xl(d,p),Xb(d,g,j),Cm(d,g,j,p),Am(null,d,g,!0,l,p);case 19:return mv(l,d,p);case 22:return lv(l,d,p)}throw Error(n(156,d.tag))};function $v(l,d){return Ct(l,d)}function kT(l,d,p,g){this.tag=l,this.key=p,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=d,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=g,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Rr(l,d,p,g){return new kT(l,d,p,g)}function Qm(l){return l=l.prototype,!(!l||!l.isReactComponent)}function ST(l){if(typeof l=="function")return Qm(l)?1:0;if(l!=null){if(l=l.$$typeof,l===B)return 11;if(l===J)return 14}return 2}function eo(l,d){var p=l.alternate;return p===null?(p=Rr(l.tag,d,l.key,l.mode),p.elementType=l.elementType,p.type=l.type,p.stateNode=l.stateNode,p.alternate=l,l.alternate=p):(p.pendingProps=d,p.type=l.type,p.flags=0,p.subtreeFlags=0,p.deletions=null),p.flags=l.flags&14680064,p.childLanes=l.childLanes,p.lanes=l.lanes,p.child=l.child,p.memoizedProps=l.memoizedProps,p.memoizedState=l.memoizedState,p.updateQueue=l.updateQueue,d=l.dependencies,p.dependencies=d===null?null:{lanes:d.lanes,firstContext:d.firstContext},p.sibling=l.sibling,p.index=l.index,p.ref=l.ref,p}function ah(l,d,p,g,j,S){var M=2;if(g=l,typeof l=="function")Qm(l)&&(M=1);else if(typeof l=="string")M=5;else e:switch(l){case $:return tl(p.children,j,S,d);case V:M=8,j|=8;break;case I:return l=Rr(12,p,d,j|2),l.elementType=I,l.lanes=S,l;case re:return l=Rr(13,p,d,j),l.elementType=re,l.lanes=S,l;case ae:return l=Rr(19,p,d,j),l.elementType=ae,l.lanes=S,l;case D:return ih(p,j,S,d);default:if(typeof l=="object"&&l!==null)switch(l.$$typeof){case te:M=10;break e;case Q:M=9;break e;case B:M=11;break e;case J:M=14;break e;case F:M=16,g=null;break e}throw Error(n(130,l==null?l:typeof l,""))}return d=Rr(M,p,d,j),d.elementType=l,d.type=g,d.lanes=S,d}function tl(l,d,p,g){return l=Rr(7,l,g,d),l.lanes=p,l}function ih(l,d,p,g){return l=Rr(22,l,g,d),l.elementType=D,l.lanes=p,l.stateNode={isHidden:!1},l}function Ym(l,d,p){return l=Rr(6,l,null,d),l.lanes=p,l}function Xm(l,d,p){return d=Rr(4,l.children!==null?l.children:[],l.key,d),d.lanes=p,d.stateNode={containerInfo:l.containerInfo,pendingChildren:null,implementation:l.implementation},d}function CT(l,d,p,g,j){this.tag=d,this.containerInfo=l,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=zs(0),this.expirationTimes=zs(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=zs(0),this.identifierPrefix=g,this.onRecoverableError=j,this.mutableSourceEagerHydrationData=null}function Zm(l,d,p,g,j,S,M,W,Z){return l=new CT(l,d,p,W,Z),d===1?(d=1,S===!0&&(d|=8)):d=0,S=Rr(3,null,null,d),l.current=S,S.stateNode=l,S.memoizedState={element:g,isDehydrated:p,cache:null,transitions:null,pendingSuspenseBoundaries:null},hm(S),l}function TT(l,d,p){var g=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(e){console.error(e)}}return t(),ax.exports=$T(),ax.exports}var Zv;function FT(){if(Zv)return fh;Zv=1;var t=mj();return fh.createRoot=t.createRoot,fh.hydrateRoot=t.hydrateRoot,fh}var BT=FT(),uu=mj();const xj=pj(uu);/** + * @remix-run/router v1.23.2 + * + * Copyright (c) Remix Software Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE.md file in the root directory of this source tree. + * + * @license MIT + */function Gd(){return Gd=Object.assign?Object.assign.bind():function(t){for(var e=1;e"u")throw new Error(e)}function g0(t,e){if(!t){typeof console<"u"&&console.warn(e);try{throw new Error(e)}catch{}}}function HT(){return Math.random().toString(36).substr(2,8)}function t1(t,e){return{usr:t.state,key:t.key,idx:e}}function ig(t,e,n,r){return n===void 0&&(n=null),Gd({pathname:typeof t=="string"?t:t.pathname,search:"",hash:""},typeof e=="string"?Fc(e):e,{state:n,key:e&&e.key||r||HT()})}function Xh(t){let{pathname:e="/",search:n="",hash:r=""}=t;return n&&n!=="?"&&(e+=n.charAt(0)==="?"?n:"?"+n),r&&r!=="#"&&(e+=r.charAt(0)==="#"?r:"#"+r),e}function Fc(t){let e={};if(t){let n=t.indexOf("#");n>=0&&(e.hash=t.substr(n),t=t.substr(0,n));let r=t.indexOf("?");r>=0&&(e.search=t.substr(r),t=t.substr(0,r)),t&&(e.pathname=t)}return e}function UT(t,e,n,r){r===void 0&&(r={});let{window:a=document.defaultView,v5Compat:i=!1}=r,o=a.history,c=po.Pop,u=null,h=f();h==null&&(h=0,o.replaceState(Gd({},o.state,{idx:h}),""));function f(){return(o.state||{idx:null}).idx}function m(){c=po.Pop;let w=f(),k=w==null?null:w-h;h=w,u&&u({action:c,location:N.location,delta:k})}function x(w,k){c=po.Push;let E=ig(N.location,w,k);h=f()+1;let C=t1(E,h),R=N.createHref(E);try{o.pushState(C,"",R)}catch(O){if(O instanceof DOMException&&O.name==="DataCloneError")throw O;a.location.assign(R)}i&&u&&u({action:c,location:N.location,delta:1})}function y(w,k){c=po.Replace;let E=ig(N.location,w,k);h=f();let C=t1(E,h),R=N.createHref(E);o.replaceState(C,"",R),i&&u&&u({action:c,location:N.location,delta:0})}function v(w){let k=a.location.origin!=="null"?a.location.origin:a.location.href,E=typeof w=="string"?w:Xh(w);return E=E.replace(/ $/,"%20"),zn(k,"No window.location.(origin|href) available to create URL for href: "+E),new URL(E,k)}let N={get action(){return c},get location(){return t(a,o)},listen(w){if(u)throw new Error("A history only accepts one active listener");return a.addEventListener(e1,m),u=w,()=>{a.removeEventListener(e1,m),u=null}},createHref(w){return e(a,w)},createURL:v,encodeLocation(w){let k=v(w);return{pathname:k.pathname,search:k.search,hash:k.hash}},push:x,replace:y,go(w){return o.go(w)}};return N}var n1;(function(t){t.data="data",t.deferred="deferred",t.redirect="redirect",t.error="error"})(n1||(n1={}));function WT(t,e,n){return n===void 0&&(n="/"),KT(t,e,n)}function KT(t,e,n,r){let a=typeof e=="string"?Fc(e):e,i=y0(a.pathname||"/",n);if(i==null)return null;let o=gj(t);qT(o);let c=null;for(let u=0;c==null&&u{let u={relativePath:c===void 0?i.path||"":c,caseSensitive:i.caseSensitive===!0,childrenIndex:o,route:i};u.relativePath.startsWith("/")&&(zn(u.relativePath.startsWith(r),'Absolute route path "'+u.relativePath+'" nested under path '+('"'+r+'" is not valid. An absolute child route path ')+"must start with the combined path of all its parent routes."),u.relativePath=u.relativePath.slice(r.length));let h=bo([r,u.relativePath]),f=n.concat(u);i.children&&i.children.length>0&&(zn(i.index!==!0,"Index routes must not have child routes. Please remove "+('all child routes from route path "'+h+'".')),gj(i.children,e,f,h)),!(i.path==null&&!i.index)&&e.push({path:h,score:eE(h,i.index),routesMeta:f})};return t.forEach((i,o)=>{var c;if(i.path===""||!((c=i.path)!=null&&c.includes("?")))a(i,o);else for(let u of yj(i.path))a(i,o,u)}),e}function yj(t){let e=t.split("/");if(e.length===0)return[];let[n,...r]=e,a=n.endsWith("?"),i=n.replace(/\?$/,"");if(r.length===0)return a?[i,""]:[i];let o=yj(r.join("/")),c=[];return c.push(...o.map(u=>u===""?i:[i,u].join("/"))),a&&c.push(...o),c.map(u=>t.startsWith("/")&&u===""?"/":u)}function qT(t){t.sort((e,n)=>e.score!==n.score?n.score-e.score:tE(e.routesMeta.map(r=>r.childrenIndex),n.routesMeta.map(r=>r.childrenIndex)))}const GT=/^:[\w-]+$/,JT=3,QT=2,YT=1,XT=10,ZT=-2,s1=t=>t==="*";function eE(t,e){let n=t.split("/"),r=n.length;return n.some(s1)&&(r+=ZT),e&&(r+=QT),n.filter(a=>!s1(a)).reduce((a,i)=>a+(GT.test(i)?JT:i===""?YT:XT),r)}function tE(t,e){return t.length===e.length&&t.slice(0,-1).every((r,a)=>r===e[a])?t[t.length-1]-e[e.length-1]:0}function nE(t,e,n){let{routesMeta:r}=t,a={},i="/",o=[];for(let c=0;c{let{paramName:x,isOptional:y}=f;if(x==="*"){let N=c[m]||"";o=i.slice(0,i.length-N.length).replace(/(.)\/+$/,"$1")}const v=c[m];return y&&!v?h[x]=void 0:h[x]=(v||"").replace(/%2F/g,"/"),h},{}),pathname:i,pathnameBase:o,pattern:t}}function rE(t,e,n){e===void 0&&(e=!1),n===void 0&&(n=!0),g0(t==="*"||!t.endsWith("*")||t.endsWith("/*"),'Route path "'+t+'" will be treated as if it were '+('"'+t.replace(/\*$/,"/*")+'" because the `*` character must ')+"always follow a `/` in the pattern. To get rid of this warning, "+('please change the route path to "'+t.replace(/\*$/,"/*")+'".'));let r=[],a="^"+t.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^${}|()[\]]/g,"\\$&").replace(/\/:([\w-]+)(\?)?/g,(o,c,u)=>(r.push({paramName:c,isOptional:u!=null}),u?"/?([^\\/]+)?":"/([^\\/]+)"));return t.endsWith("*")?(r.push({paramName:"*"}),a+=t==="*"||t==="/*"?"(.*)$":"(?:\\/(.+)|\\/*)$"):n?a+="\\/*$":t!==""&&t!=="/"&&(a+="(?:(?=\\/|$))"),[new RegExp(a,e?void 0:"i"),r]}function aE(t){try{return t.split("/").map(e=>decodeURIComponent(e).replace(/\//g,"%2F")).join("/")}catch(e){return g0(!1,'The URL path "'+t+'" could not be decoded because it is is a malformed URL segment. This is probably due to a bad percent '+("encoding ("+e+").")),t}}function y0(t,e){if(e==="/")return t;if(!t.toLowerCase().startsWith(e.toLowerCase()))return null;let n=e.endsWith("/")?e.length-1:e.length,r=t.charAt(n);return r&&r!=="/"?null:t.slice(n)||"/"}const iE=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,oE=t=>iE.test(t);function lE(t,e){e===void 0&&(e="/");let{pathname:n,search:r="",hash:a=""}=typeof t=="string"?Fc(t):t,i;if(n)if(oE(n))i=n;else{if(n.includes("//")){let o=n;n=n.replace(/\/\/+/g,"/"),g0(!1,"Pathnames cannot have embedded double slashes - normalizing "+(o+" -> "+n))}n.startsWith("/")?i=r1(n.substring(1),"/"):i=r1(n,e)}else i=e;return{pathname:i,search:uE(r),hash:hE(a)}}function r1(t,e){let n=e.replace(/\/+$/,"").split("/");return t.split("/").forEach(a=>{a===".."?n.length>1&&n.pop():a!=="."&&n.push(a)}),n.length>1?n.join("/"):"/"}function lx(t,e,n,r){return"Cannot include a '"+t+"' character in a manually specified "+("`to."+e+"` field ["+JSON.stringify(r)+"]. Please separate it out to the ")+("`to."+n+"` field. Alternatively you may provide the full path as ")+'a string in and the router will parse it for you.'}function cE(t){return t.filter((e,n)=>n===0||e.route.path&&e.route.path.length>0)}function b0(t,e){let n=cE(t);return e?n.map((r,a)=>a===n.length-1?r.pathname:r.pathnameBase):n.map(r=>r.pathnameBase)}function v0(t,e,n,r){r===void 0&&(r=!1);let a;typeof t=="string"?a=Fc(t):(a=Gd({},t),zn(!a.pathname||!a.pathname.includes("?"),lx("?","pathname","search",a)),zn(!a.pathname||!a.pathname.includes("#"),lx("#","pathname","hash",a)),zn(!a.search||!a.search.includes("#"),lx("#","search","hash",a)));let i=t===""||a.pathname==="",o=i?"/":a.pathname,c;if(o==null)c=n;else{let m=e.length-1;if(!r&&o.startsWith("..")){let x=o.split("/");for(;x[0]==="..";)x.shift(),m-=1;a.pathname=x.join("/")}c=m>=0?e[m]:"/"}let u=lE(a,c),h=o&&o!=="/"&&o.endsWith("/"),f=(i||o===".")&&n.endsWith("/");return!u.pathname.endsWith("/")&&(h||f)&&(u.pathname+="/"),u}const bo=t=>t.join("/").replace(/\/\/+/g,"/"),dE=t=>t.replace(/\/+$/,"").replace(/^\/*/,"/"),uE=t=>!t||t==="?"?"":t.startsWith("?")?t:"?"+t,hE=t=>!t||t==="#"?"":t.startsWith("#")?t:"#"+t;function fE(t){return t!=null&&typeof t.status=="number"&&typeof t.statusText=="string"&&typeof t.internal=="boolean"&&"data"in t}const bj=["post","put","patch","delete"];new Set(bj);const pE=["get",...bj];new Set(pE);/** + * React Router v6.30.3 + * + * Copyright (c) Remix Software Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE.md file in the root directory of this source tree. + * + * @license MIT + */function Jd(){return Jd=Object.assign?Object.assign.bind():function(t){for(var e=1;e{c.current=!0}),b.useCallback(function(h,f){if(f===void 0&&(f={}),!c.current)return;if(typeof h=="number"){r.go(h);return}let m=v0(h,JSON.parse(o),i,f.relative==="path");t==null&&e!=="/"&&(m.pathname=m.pathname==="/"?e:bo([e,m.pathname])),(f.replace?r.replace:r.push)(m,f.state,f)},[e,r,o,i,t])}const yE=b.createContext(null);function bE(t){let e=b.useContext(Ci).outlet;return e&&b.createElement(yE.Provider,{value:t},e)}function wj(t,e){let{relative:n}=e===void 0?{}:e,{future:r}=b.useContext(Po),{matches:a}=b.useContext(Ci),{pathname:i}=Ro(),o=JSON.stringify(b0(a,r.v7_relativeSplatPath));return b.useMemo(()=>v0(t,JSON.parse(o),i,n==="path"),[t,o,i,n])}function vE(t,e){return NE(t,e)}function NE(t,e,n,r){Bc()||zn(!1);let{navigator:a}=b.useContext(Po),{matches:i}=b.useContext(Ci),o=i[i.length-1],c=o?o.params:{};o&&o.pathname;let u=o?o.pathnameBase:"/";o&&o.route;let h=Ro(),f;if(e){var m;let w=typeof e=="string"?Fc(e):e;u==="/"||(m=w.pathname)!=null&&m.startsWith(u)||zn(!1),f=w}else f=h;let x=f.pathname||"/",y=x;if(u!=="/"){let w=u.replace(/^\//,"").split("/");y="/"+x.replace(/^\//,"").split("/").slice(w.length).join("/")}let v=WT(t,{pathname:y}),N=CE(v&&v.map(w=>Object.assign({},w,{params:Object.assign({},c,w.params),pathname:bo([u,a.encodeLocation?a.encodeLocation(w.pathname).pathname:w.pathname]),pathnameBase:w.pathnameBase==="/"?u:bo([u,a.encodeLocation?a.encodeLocation(w.pathnameBase).pathname:w.pathnameBase])})),i,n,r);return e&&N?b.createElement(ap.Provider,{value:{location:Jd({pathname:"/",search:"",hash:"",state:null,key:"default"},f),navigationType:po.Pop}},N):N}function wE(){let t=AE(),e=fE(t)?t.status+" "+t.statusText:t instanceof Error?t.message:JSON.stringify(t),n=t instanceof Error?t.stack:null,a={padding:"0.5rem",backgroundColor:"rgba(200,200,200, 0.5)"};return b.createElement(b.Fragment,null,b.createElement("h2",null,"Unexpected Application Error!"),b.createElement("h3",{style:{fontStyle:"italic"}},e),n?b.createElement("pre",{style:a},n):null,null)}const jE=b.createElement(wE,null);class kE extends b.Component{constructor(e){super(e),this.state={location:e.location,revalidation:e.revalidation,error:e.error}}static getDerivedStateFromError(e){return{error:e}}static getDerivedStateFromProps(e,n){return n.location!==e.location||n.revalidation!=="idle"&&e.revalidation==="idle"?{error:e.error,location:e.location,revalidation:e.revalidation}:{error:e.error!==void 0?e.error:n.error,location:n.location,revalidation:e.revalidation||n.revalidation}}componentDidCatch(e,n){console.error("React Router caught the following error during render",e,n)}render(){return this.state.error!==void 0?b.createElement(Ci.Provider,{value:this.props.routeContext},b.createElement(vj.Provider,{value:this.state.error,children:this.props.component})):this.props.children}}function SE(t){let{routeContext:e,match:n,children:r}=t,a=b.useContext(N0);return a&&a.static&&a.staticContext&&(n.route.errorElement||n.route.ErrorBoundary)&&(a.staticContext._deepestRenderedBoundaryId=n.route.id),b.createElement(Ci.Provider,{value:e},r)}function CE(t,e,n,r){var a;if(e===void 0&&(e=[]),n===void 0&&(n=null),r===void 0&&(r=null),t==null){var i;if(!n)return null;if(n.errors)t=n.matches;else if((i=r)!=null&&i.v7_partialHydration&&e.length===0&&!n.initialized&&n.matches.length>0)t=n.matches;else return null}let o=t,c=(a=n)==null?void 0:a.errors;if(c!=null){let f=o.findIndex(m=>m.route.id&&(c==null?void 0:c[m.route.id])!==void 0);f>=0||zn(!1),o=o.slice(0,Math.min(o.length,f+1))}let u=!1,h=-1;if(n&&r&&r.v7_partialHydration)for(let f=0;f=0?o=o.slice(0,h+1):o=[o[0]];break}}}return o.reduceRight((f,m,x)=>{let y,v=!1,N=null,w=null;n&&(y=c&&m.route.id?c[m.route.id]:void 0,N=m.route.errorElement||jE,u&&(h<0&&x===0?(PE("route-fallback"),v=!0,w=null):h===x&&(v=!0,w=m.route.hydrateFallbackElement||null)));let k=e.concat(o.slice(0,x+1)),E=()=>{let C;return y?C=N:v?C=w:m.route.Component?C=b.createElement(m.route.Component,null):m.route.element?C=m.route.element:C=f,b.createElement(SE,{match:m,routeContext:{outlet:f,matches:k,isDataRoute:n!=null},children:C})};return n&&(m.route.ErrorBoundary||m.route.errorElement||x===0)?b.createElement(kE,{location:n.location,revalidation:n.revalidation,component:N,error:y,children:E(),routeContext:{outlet:null,matches:k,isDataRoute:!0}}):E()},null)}var jj=(function(t){return t.UseBlocker="useBlocker",t.UseRevalidator="useRevalidator",t.UseNavigateStable="useNavigate",t})(jj||{}),kj=(function(t){return t.UseBlocker="useBlocker",t.UseLoaderData="useLoaderData",t.UseActionData="useActionData",t.UseRouteError="useRouteError",t.UseNavigation="useNavigation",t.UseRouteLoaderData="useRouteLoaderData",t.UseMatches="useMatches",t.UseRevalidator="useRevalidator",t.UseNavigateStable="useNavigate",t.UseRouteId="useRouteId",t})(kj||{});function TE(t){let e=b.useContext(N0);return e||zn(!1),e}function EE(t){let e=b.useContext(mE);return e||zn(!1),e}function ME(t){let e=b.useContext(Ci);return e||zn(!1),e}function Sj(t){let e=ME(),n=e.matches[e.matches.length-1];return n.route.id||zn(!1),n.route.id}function AE(){var t;let e=b.useContext(vj),n=EE(),r=Sj();return e!==void 0?e:(t=n.errors)==null?void 0:t[r]}function IE(){let{router:t}=TE(jj.UseNavigateStable),e=Sj(kj.UseNavigateStable),n=b.useRef(!1);return Nj(()=>{n.current=!0}),b.useCallback(function(a,i){i===void 0&&(i={}),n.current&&(typeof a=="number"?t.navigate(a):t.navigate(a,Jd({fromRouteId:e},i)))},[t,e])}const a1={};function PE(t,e,n){a1[t]||(a1[t]=!0)}function RE(t,e){t==null||t.v7_startTransition,t==null||t.v7_relativeSplatPath}function ph(t){let{to:e,replace:n,state:r,relative:a}=t;Bc()||zn(!1);let{future:i,static:o}=b.useContext(Po),{matches:c}=b.useContext(Ci),{pathname:u}=Ro(),h=La(),f=v0(e,b0(c,i.v7_relativeSplatPath),u,a==="path"),m=JSON.stringify(f);return b.useEffect(()=>h(JSON.parse(m),{replace:n,state:r,relative:a}),[h,m,a,n,r]),null}function OE(t){return bE(t.context)}function ln(t){zn(!1)}function LE(t){let{basename:e="/",children:n=null,location:r,navigationType:a=po.Pop,navigator:i,static:o=!1,future:c}=t;Bc()&&zn(!1);let u=e.replace(/^\/*/,"/"),h=b.useMemo(()=>({basename:u,navigator:i,static:o,future:Jd({v7_relativeSplatPath:!1},c)}),[u,c,i,o]);typeof r=="string"&&(r=Fc(r));let{pathname:f="/",search:m="",hash:x="",state:y=null,key:v="default"}=r,N=b.useMemo(()=>{let w=y0(f,u);return w==null?null:{location:{pathname:w,search:m,hash:x,state:y,key:v},navigationType:a}},[u,f,m,x,y,v,a]);return N==null?null:b.createElement(Po.Provider,{value:h},b.createElement(ap.Provider,{children:n,value:N}))}function DE(t){let{children:e,location:n}=t;return vE(og(e),n)}new Promise(()=>{});function og(t,e){e===void 0&&(e=[]);let n=[];return b.Children.forEach(t,(r,a)=>{if(!b.isValidElement(r))return;let i=[...e,a];if(r.type===b.Fragment){n.push.apply(n,og(r.props.children,i));return}r.type!==ln&&zn(!1),!r.props.index||!r.props.children||zn(!1);let o={id:r.props.id||i.join("-"),caseSensitive:r.props.caseSensitive,element:r.props.element,Component:r.props.Component,index:r.props.index,path:r.props.path,loader:r.props.loader,action:r.props.action,errorElement:r.props.errorElement,ErrorBoundary:r.props.ErrorBoundary,hasErrorBoundary:r.props.ErrorBoundary!=null||r.props.errorElement!=null,shouldRevalidate:r.props.shouldRevalidate,handle:r.props.handle,lazy:r.props.lazy};r.props.children&&(o.children=og(r.props.children,i)),n.push(o)}),n}/** + * React Router DOM v6.30.3 + * + * Copyright (c) Remix Software Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE.md file in the root directory of this source tree. + * + * @license MIT + */function lg(){return lg=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0)&&(n[a]=t[a]);return n}function zE(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}function $E(t,e){return t.button===0&&(!e||e==="_self")&&!zE(t)}function cg(t){return t===void 0&&(t=""),new URLSearchParams(typeof t=="string"||Array.isArray(t)||t instanceof URLSearchParams?t:Object.keys(t).reduce((e,n)=>{let r=t[n];return e.concat(Array.isArray(r)?r.map(a=>[n,a]):[[n,r]])},[]))}function FE(t,e){let n=cg(t);return e&&e.forEach((r,a)=>{n.has(a)||e.getAll(a).forEach(i=>{n.append(a,i)})}),n}const BE=["onClick","relative","reloadDocument","replace","state","target","to","preventScrollReset","viewTransition"],VE="6";try{window.__reactRouterVersion=VE}catch{}const HE="startTransition",i1=rp[HE];function UE(t){let{basename:e,children:n,future:r,window:a}=t,i=b.useRef();i.current==null&&(i.current=VT({window:a,v5Compat:!0}));let o=i.current,[c,u]=b.useState({action:o.action,location:o.location}),{v7_startTransition:h}=r||{},f=b.useCallback(m=>{h&&i1?i1(()=>u(m)):u(m)},[u,h]);return b.useLayoutEffect(()=>o.listen(f),[o,f]),b.useEffect(()=>RE(r),[r]),b.createElement(LE,{basename:e,children:n,location:c.location,navigationType:c.action,navigator:o,future:r})}const WE=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",KE=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,Tc=b.forwardRef(function(e,n){let{onClick:r,relative:a,reloadDocument:i,replace:o,state:c,target:u,to:h,preventScrollReset:f,viewTransition:m}=e,x=_E(e,BE),{basename:y}=b.useContext(Po),v,N=!1;if(typeof h=="string"&&KE.test(h)&&(v=h,WE))try{let C=new URL(window.location.href),R=h.startsWith("//")?new URL(C.protocol+h):new URL(h),O=y0(R.pathname,y);R.origin===C.origin&&O!=null?h=O+R.search+R.hash:N=!0}catch{}let w=xE(h,{relative:a}),k=qE(h,{replace:o,state:c,target:u,preventScrollReset:f,relative:a,viewTransition:m});function E(C){r&&r(C),C.defaultPrevented||k(C)}return b.createElement("a",lg({},x,{href:v||w,onClick:N||i?r:E,ref:n,target:u}))});var o1;(function(t){t.UseScrollRestoration="useScrollRestoration",t.UseSubmit="useSubmit",t.UseSubmitFetcher="useSubmitFetcher",t.UseFetcher="useFetcher",t.useViewTransitionState="useViewTransitionState"})(o1||(o1={}));var l1;(function(t){t.UseFetcher="useFetcher",t.UseFetchers="useFetchers",t.UseScrollRestoration="useScrollRestoration"})(l1||(l1={}));function qE(t,e){let{target:n,replace:r,state:a,preventScrollReset:i,relative:o,viewTransition:c}=e===void 0?{}:e,u=La(),h=Ro(),f=wj(t,{relative:o});return b.useCallback(m=>{if($E(m,n)){m.preventDefault();let x=r!==void 0?r:Xh(h)===Xh(f);u(t,{replace:x,state:a,preventScrollReset:i,relative:o,viewTransition:c})}},[h,u,f,r,a,n,t,i,o,c])}function w0(t){let e=b.useRef(cg(t)),n=b.useRef(!1),r=Ro(),a=b.useMemo(()=>FE(r.search,n.current?null:e.current),[r.search]),i=La(),o=b.useCallback((c,u)=>{const h=cg(typeof c=="function"?c(a):c);n.current=!0,i("?"+h,u)},[i,a]);return[a,o]}/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const GE=t=>t.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),JE=t=>t.replace(/^([A-Z])|[\s-_]+(\w)/g,(e,n,r)=>r?r.toUpperCase():n.toLowerCase()),c1=t=>{const e=JE(t);return e.charAt(0).toUpperCase()+e.slice(1)},Cj=(...t)=>t.filter((e,n,r)=>!!e&&e.trim()!==""&&r.indexOf(e)===n).join(" ").trim(),QE=t=>{for(const e in t)if(e.startsWith("aria-")||e==="role"||e==="title")return!0};/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */var YE={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const XE=b.forwardRef(({color:t="currentColor",size:e=24,strokeWidth:n=2,absoluteStrokeWidth:r,className:a="",children:i,iconNode:o,...c},u)=>b.createElement("svg",{ref:u,...YE,width:e,height:e,stroke:t,strokeWidth:r?Number(n)*24/Number(e):n,className:Cj("lucide",a),...!i&&!QE(c)&&{"aria-hidden":"true"},...c},[...o.map(([h,f])=>b.createElement(h,f)),...Array.isArray(i)?i:[i]]));/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const Me=(t,e)=>{const n=b.forwardRef(({className:r,...a},i)=>b.createElement(XE,{ref:i,iconNode:e,className:Cj(`lucide-${GE(c1(t))}`,`lucide-${t}`,r),...a}));return n.displayName=c1(t),n};/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const ZE=[["path",{d:"m21 16-4 4-4-4",key:"f6ql7i"}],["path",{d:"M17 20V4",key:"1ejh1v"}],["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}]],cx=Me("arrow-up-down",ZE);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const e5=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8",key:"7n84p3"}]],t5=Me("at-sign",e5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const n5=[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727",key:"yr8idg"}]],d1=Me("bitcoin",n5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const s5=[["path",{d:"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8",key:"mg9rjx"}]],r5=Me("bold",s5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const a5=[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}]],rr=Me("book-open",a5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const i5=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}]],dg=Me("calendar",i5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const o5=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M18 17V9",key:"2bz60n"}],["path",{d:"M13 17V5",key:"1frdt8"}],["path",{d:"M8 17v-3",key:"17ska0"}]],hc=Me("chart-column",o5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const l5=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],ip=Me("check",l5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const c5=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],Ec=Me("chevron-down",c5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const d5=[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]],u5=Me("chevron-left",d5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const h5=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],ol=Me("chevron-right",h5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const f5=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],ug=Me("chevron-up",f5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const p5=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]],Tj=Me("circle-alert",p5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const m5=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]],dx=Me("circle-check-big",m5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const x5=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],Ej=Me("circle-check",x5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const g5=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]],Mj=Me("circle-question-mark",g5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const y5=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662",key:"154egf"}]],mh=Me("circle-user",y5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const b5=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],Aj=Me("circle-x",b5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const v5=[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],hg=Me("clock",v5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const N5=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]],u1=Me("cloud",N5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const w5=[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]],j5=Me("code",w5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const k5=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Ij=Me("copy",k5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const S5=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2",key:"ynyp8z"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10",key:"1b3vmo"}]],h1=Me("credit-card",S5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const C5=[["path",{d:"M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z",key:"1vdc57"}],["path",{d:"M5 21h14",key:"11awu3"}]],wc=Me("crown",C5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const T5=[["line",{x1:"12",x2:"12",y1:"2",y2:"22",key:"7eqyqh"}],["path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6",key:"1b0p4s"}]],Zh=Me("dollar-sign",T5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const E5=[["path",{d:"M12 15V3",key:"m9g1x1"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["path",{d:"m7 10 5 5 5-5",key:"brsn70"}]],M5=Me("download",E5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const A5=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]],wi=Me("external-link",A5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const I5=[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",key:"ct8e1f"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242",key:"151rxh"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",key:"13bj9a"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],P5=Me("eye-off",I5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const R5=[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",key:"1nclc0"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],ef=Me("eye",R5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const O5=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]],Pj=Me("file-text",O5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const L5=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",key:"sc7q7i"}]],Rj=Me("funnel",L5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const D5=[["rect",{x:"3",y:"8",width:"18",height:"4",rx:"1",key:"bkv52"}],["path",{d:"M12 8v13",key:"1c76mn"}],["path",{d:"M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7",key:"6wjy6b"}],["path",{d:"M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5",key:"1ihvrl"}]],fg=Me("gift",D5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const _5=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9",key:"7kw0sc"}]],z5=Me("git-merge",_5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const $5=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]],pg=Me("globe",$5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const F5=[["path",{d:"M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z",key:"j76jl0"}],["path",{d:"M22 10v6",key:"1lu8f3"}],["path",{d:"M6 12.5V16a6 3 0 0 0 12 0v-3.5",key:"1r8lef"}]],B5=Me("graduation-cap",F5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const V5=[["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}],["circle",{cx:"9",cy:"5",r:"1",key:"hp0tcf"}],["circle",{cx:"9",cy:"19",r:"1",key:"fkjjf6"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"15",cy:"5",r:"1",key:"19l28e"}],["circle",{cx:"15",cy:"19",r:"1",key:"f4zoj3"}]],oi=Me("grip-vertical",V5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const H5=[["path",{d:"m11 17 2 2a1 1 0 1 0 3-3",key:"efffak"}],["path",{d:"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4",key:"9pr0kb"}],["path",{d:"m21 3 1 11h-2",key:"1tisrp"}],["path",{d:"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3",key:"1uvwmv"}],["path",{d:"M3 4h8",key:"1ep09j"}]],U5=Me("handshake",H5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const W5=[["line",{x1:"4",x2:"20",y1:"9",y2:"9",key:"4lhtct"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15",key:"vyu0kd"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21",key:"1ggp8o"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21",key:"weycgp"}]],f1=Me("hash",W5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const K5=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"m17 12 3-2v8",key:"1hhhft"}]],q5=Me("heading-1",K5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const G5=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1",key:"9jr5yi"}]],J5=Me("heading-2",G5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const Q5=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2",key:"68ncm8"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2",key:"1ejuhz"}]],Y5=Me("heading-3",Q5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const X5=[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",key:"5wwlr5"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"r6nss1"}]],Z5=Me("house",X5);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const eM=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]],Oj=Me("image",eM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const tM=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]],xh=Me("info",tM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const nM=[["line",{x1:"19",x2:"10",y1:"4",y2:"4",key:"15jd3p"}],["line",{x1:"14",x2:"5",y1:"20",y2:"20",key:"bu0au3"}],["line",{x1:"15",x2:"9",y1:"4",y2:"20",key:"uljnxc"}]],sM=Me("italic",nM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const rM=[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4",key:"g0fldk"}],["path",{d:"m21 2-9.6 9.6",key:"1j0ho8"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5",key:"yqb3hr"}]],mg=Me("key",rM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const aM=[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]],iM=Me("layout-dashboard",aM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const oM=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}]],lM=Me("layout-grid",oM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const cM=[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2",key:"8i5ue5"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2",key:"1b9ql8"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]],Ea=Me("link-2",cM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const dM=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]],xg=Me("link",dM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const uM=[["path",{d:"M11 5h10",key:"1cz7ny"}],["path",{d:"M11 12h10",key:"1438ji"}],["path",{d:"M11 19h10",key:"11t30w"}],["path",{d:"M4 4h1v5",key:"10yrso"}],["path",{d:"M4 9h2",key:"r1h2o0"}],["path",{d:"M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02",key:"xtkcd5"}]],hM=Me("list-ordered",uM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const fM=[["path",{d:"M3 5h.01",key:"18ugdj"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M3 19h.01",key:"noohij"}],["path",{d:"M8 5h13",key:"1pao27"}],["path",{d:"M8 12h13",key:"1za7za"}],["path",{d:"M8 19h13",key:"m83p4d"}]],pM=Me("list",fM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const mM=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2",key:"1w4ew1"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4",key:"fwvmzm"}]],xM=Me("lock",mM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const gM=[["path",{d:"m16 17 5-5-5-5",key:"1bji2h"}],["path",{d:"M21 12H9",key:"dn1m92"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}]],yM=Me("log-out",gM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const bM=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]],Lj=Me("map-pin",bM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const vM=[["path",{d:"M4 5h16",key:"1tepv9"}],["path",{d:"M4 12h16",key:"1lakjw"}],["path",{d:"M4 19h16",key:"1djgab"}]],NM=Me("menu",vM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const wM=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",key:"1sd12s"}]],jM=Me("message-circle",wM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const kM=[["path",{d:"M5 12h14",key:"1ays0h"}]],SM=Me("minus",kM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const CM=[["polygon",{points:"3 11 22 2 13 21 11 13 3 11",key:"1ltx0t"}]],ea=Me("navigation",CM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const TM=[["path",{d:"M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z",key:"e79jfc"}],["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor",key:"1okk4w"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor",key:"f64h9f"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor",key:"qy21gx"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor",key:"fotxhn"}]],EM=Me("palette",TM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const MM=[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551",key:"1miecu"}]],AM=Me("paperclip",MM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const IM=[["path",{d:"M13 21h8",key:"1jsn5i"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]],tn=Me("pen-line",IM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const PM=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],p1=Me("pencil",PM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const RM=[["line",{x1:"19",x2:"5",y1:"5",y2:"19",key:"1x9vlm"}],["circle",{cx:"6.5",cy:"6.5",r:"2.5",key:"4mh3h7"}],["circle",{cx:"17.5",cy:"17.5",r:"2.5",key:"1mdrzq"}]],OM=Me("percent",RM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const LM=[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",key:"9njp5v"}]],m1=Me("phone",LM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const DM=[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",key:"1nkz8b"}]],_M=Me("pin",DM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const zM=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],Dn=Me("plus",zM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const $M=[["rect",{width:"5",height:"5",x:"3",y:"3",rx:"1",key:"1tu5fj"}],["rect",{width:"5",height:"5",x:"16",y:"3",rx:"1",key:"1v8r4q"}],["rect",{width:"5",height:"5",x:"3",y:"16",rx:"1",key:"1x03jg"}],["path",{d:"M21 16h-3a2 2 0 0 0-2 2v3",key:"177gqh"}],["path",{d:"M21 21v.01",key:"ents32"}],["path",{d:"M12 7v3a2 2 0 0 1-2 2H7",key:"8crl2c"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M12 3h.01",key:"n36tog"}],["path",{d:"M12 16v.01",key:"133mhm"}],["path",{d:"M16 12h1",key:"1slzba"}],["path",{d:"M21 12v.01",key:"1lwtk9"}],["path",{d:"M12 21v-1",key:"1880an"}]],x1=Me("qr-code",$M);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const FM=[["path",{d:"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",key:"rib7q0"}],["path",{d:"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",key:"1ymkrd"}]],BM=Me("quote",FM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const VM=[["path",{d:"M21 7v6h-6",key:"3ptur4"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7",key:"1kgawr"}]],HM=Me("redo",VM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const UM=[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]],Ve=Me("refresh-cw",UM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const WM=[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]],kn=Me("save",WM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const KM=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],Aa=Me("search",KM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const qM=[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]],GM=Me("send",qM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const JM=[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",key:"1i5ecw"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],mo=Me("settings",JM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const QM=[["path",{d:"M14 17H5",key:"gfn3mx"}],["path",{d:"M19 7h-9",key:"6i9tg"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]],gh=Me("settings-2",QM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const YM=[["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}],["circle",{cx:"6",cy:"12",r:"3",key:"w7nqdw"}],["circle",{cx:"18",cy:"19",r:"3",key:"1xt0gg"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49",key:"47mynk"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49",key:"1n3mei"}]],XM=Me("share-2",YM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const ZM=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],yc=Me("shield-check",ZM);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const eA=[["path",{d:"M16 10a4 4 0 0 1-8 0",key:"1ltviw"}],["path",{d:"M3.103 6.034h17.794",key:"awc11p"}],["path",{d:"M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z",key:"o988cm"}]],Ld=Me("shopping-bag",eA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const tA=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12 18h.01",key:"mhygvu"}]],gl=Me("smartphone",tA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const nA=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]],sA=Me("smile",nA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const rA=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",key:"1s2grr"}],["path",{d:"M20 2v4",key:"1rf3ol"}],["path",{d:"M22 4h-4",key:"gwowj6"}],["circle",{cx:"4",cy:"20",r:"2",key:"6kqj1y"}]],aA=Me("sparkles",rA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const iA=[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]],bc=Me("star",iA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const oA=[["path",{d:"M16 4H9a3 3 0 0 0-2.83 4",key:"43sutm"}],["path",{d:"M14 12a4 4 0 0 1 0 8H6",key:"nlfj13"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12",key:"1e0a9i"}]],lA=Me("strikethrough",oA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const cA=[["path",{d:"M12 3v18",key:"108xh3"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M3 15h18",key:"5xshup"}]],dA=Me("table",cA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const uA=[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]],Dd=Me("tag",uA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const hA=[["path",{d:"M10 11v6",key:"nco0om"}],["path",{d:"M14 11v6",key:"outv1u"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",key:"miytrc"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",key:"e791ji"}]],Ms=Me("trash-2",hA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const fA=[["path",{d:"M16 7h6v6",key:"box55l"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17",key:"1t1m79"}]],tf=Me("trending-up",fA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const pA=[["path",{d:"M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978",key:"1n3hpd"}],["path",{d:"M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978",key:"rfe1zi"}],["path",{d:"M18 9h1.5a1 1 0 0 0 0-5H18",key:"7xy6bh"}],["path",{d:"M4 22h16",key:"57wxv0"}],["path",{d:"M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z",key:"1mhfuq"}],["path",{d:"M6 9H4.5a1 1 0 0 1 0-5H6",key:"tex48p"}]],gg=Me("trophy",pA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const mA=[["path",{d:"M9 14 4 9l5-5",key:"102s5s"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11",key:"f3b9sd"}]],Dj=Me("undo-2",mA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const xA=[["path",{d:"M3 7v6h6",key:"1v2h90"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13",key:"1r6uu6"}]],gA=Me("undo",xA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const yA=[["path",{d:"M12 3v12",key:"1x0j5s"}],["path",{d:"m17 8-5-5-5 5",key:"7q97r8"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}]],nf=Me("upload",yA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const bA=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["line",{x1:"19",x2:"19",y1:"8",y2:"14",key:"1bvyxn"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11",key:"1shjgl"}]],vc=Me("user-plus",bA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const vA=[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",key:"975kel"}],["circle",{cx:"12",cy:"7",r:"4",key:"17ys0d"}]],xi=Me("user",vA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const NA=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744",key:"16gr8j"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]],_n=Me("users",NA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const wA=[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5",key:"ftymec"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2",key:"158x01"}]],jA=Me("video",wA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const kA=[["path",{d:"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1",key:"18etb6"}],["path",{d:"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4",key:"xoc0q4"}]],Mc=Me("wallet",kA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const SA=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",key:"ul74o6"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"M5 6v4",key:"ilb8ba"}],["path",{d:"M19 14v4",key:"blhpug"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M7 8H3",key:"zfb6yr"}],["path",{d:"M21 16h-4",key:"1cnmox"}],["path",{d:"M11 3H9",key:"1obp7u"}]],CA=Me("wand-sparkles",SA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const TA=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],ss=Me("x",TA);/** + * @license lucide-react v0.562.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const EA=[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]],ji=Me("zap",EA),j0="admin_token";function hu(){try{return localStorage.getItem(j0)}catch{return null}}function MA(t){try{localStorage.setItem(j0,t)}catch{}}function ux(){try{localStorage.removeItem(j0)}catch{}}const AA="https://soulapi.quwanzhi.com",IA=15e3,g1=6e4,PA=()=>{const t="https://soulapi.quwanzhi.com";{const e=t.trim();if(e.length>0)return e.replace(/\/$/,"")}return AA};function Ac(t){const e=PA(),n=t.startsWith("/")?t:`/${t}`;return e?`${e}${n}`:n}async function op(t,e={}){const{data:n,...r}=e,a=Ac(t),i=new Headers(r.headers),o=hu();o&&i.set("Authorization",`Bearer ${o}`),n!=null&&!i.has("Content-Type")&&i.set("Content-Type","application/json");const c=n!=null?JSON.stringify(n):r.body,u=r.timeout??IA,h=new AbortController,f=setTimeout(()=>h.abort(),u),m=await fetch(a,{...r,headers:i,body:c,credentials:"include",signal:h.signal}).finally(()=>clearTimeout(f)),x=m.headers.get("Content-Type")||"";let y;if(x.includes("application/json"))try{y=await m.json()}catch{throw new Error(`API 响应解析失败 (${m.status})`)}else{const N=await m.text();throw new Error(`API 返回非 JSON 响应 (${m.status}): ${N.slice(0,100)}`)}const v=N=>{const w=N,k=((w==null?void 0:w.message)||(w==null?void 0:w.error)||"").toString();(k.includes("可提现金额不足")||k.includes("可提现不足")||k.includes("余额不足"))&&window.dispatchEvent(new CustomEvent("recharge-alert",{detail:k}))};if(!m.ok){v(y);const N=new Error((y==null?void 0:y.error)||`HTTP ${m.status}`);throw N.status=m.status,N.data=y,N}return v(y),y}function Le(t,e){return op(t,{...e,method:"GET"})}function Et(t,e,n){return op(t,{...n,method:"POST",data:e})}function Zt(t,e,n){return op(t,{...n,method:"PUT",data:e})}function gi(t,e){return op(t,{...e,method:"DELETE"})}function RA(){const[t,e]=b.useState(!1),[n,r]=b.useState("");return b.useEffect(()=>{const a=i=>{const o=i.detail;r(o||"可提现/余额不足,请及时充值商户号"),e(!0)};return window.addEventListener("recharge-alert",a),()=>window.removeEventListener("recharge-alert",a)},[]),t?s.jsxs("div",{className:"flex items-center justify-between gap-4 px-4 py-3 bg-red-900/80 border-b border-red-600/50 text-red-100",role:"alert",children:[s.jsxs("div",{className:"flex items-center gap-3 min-w-0",children:[s.jsx(Tj,{className:"w-5 h-5 shrink-0 text-red-400"}),s.jsxs("span",{className:"text-sm font-medium",children:[n,s.jsx("span",{className:"ml-2 text-red-300",children:"请及时充值商户号或核对账户后重试。"})]})]}),s.jsx("button",{type:"button",onClick:()=>e(!1),className:"shrink-0 p-1 rounded hover:bg-red-800/50 transition-colors","aria-label":"关闭告警",children:s.jsx(ss,{className:"w-4 h-4"})})]}):null}const OA=[{icon:iM,label:"数据概览",href:"/dashboard"},{icon:rr,label:"内容管理",href:"/content"},{icon:_n,label:"用户管理",href:"/users"},{icon:z5,label:"找伙伴",href:"/find-partner"},{icon:Mc,label:"推广中心",href:"/distribution"}];function LA(){const t=Ro(),e=La(),[n,r]=b.useState(!1),[a,i]=b.useState(!1);b.useEffect(()=>{r(!0)},[]),b.useEffect(()=>{if(!n)return;i(!1);let c=!1;if(!hu()){e("/login",{replace:!0});return}return Le("/api/admin").then(u=>{c||(u&&u.success!==!1?i(!0):(ux(),e("/login",{replace:!0,state:{from:t.pathname}})))}).catch(()=>{c||(ux(),e("/login",{replace:!0,state:{from:t.pathname}}))}),()=>{c=!0}},[t.pathname,n,e]);const o=async()=>{ux();try{await Et("/api/admin/logout",{})}catch{}e("/login",{replace:!0})};return!n||!a?s.jsxs("div",{className:"flex min-h-screen bg-[#0a1628]",children:[s.jsx("div",{className:"w-64 bg-[#0f2137] border-r border-gray-700/50"}),s.jsx("div",{className:"flex-1 flex items-center justify-center",children:s.jsx("div",{className:"text-[#38bdac]",children:"加载中..."})})]}):s.jsxs("div",{className:"flex min-h-screen bg-[#0a1628]",children:[s.jsxs("div",{className:"w-64 bg-[#0f2137] flex flex-col border-r border-gray-700/50 shadow-xl",children:[s.jsxs("div",{className:"p-6 border-b border-gray-700/50",children:[s.jsx("h1",{className:"text-xl font-bold text-[#38bdac]",children:"管理后台"}),s.jsx("p",{className:"text-xs text-gray-400 mt-1",children:"Soul创业派对"})]}),s.jsxs("nav",{className:"flex-1 p-4 space-y-1 overflow-y-auto",children:[OA.map(c=>{const u=t.pathname===c.href;return s.jsxs(Tc,{to:c.href,className:`flex items-center gap-3 px-4 py-3 rounded-lg transition-colors ${u?"bg-[#38bdac]/20 text-[#38bdac] font-medium":"text-gray-400 hover:bg-gray-700/50 hover:text-white"}`,children:[s.jsx(c.icon,{className:"w-5 h-5 shrink-0"}),s.jsx("span",{className:"text-sm",children:c.label})]},c.href)}),s.jsx("div",{className:"pt-4 mt-4 border-t border-gray-700/50",children:s.jsxs(Tc,{to:"/settings",className:`flex items-center gap-3 px-4 py-3 rounded-lg transition-colors ${t.pathname==="/settings"?"bg-[#38bdac]/20 text-[#38bdac] font-medium":"text-gray-400 hover:bg-gray-700/50 hover:text-white"}`,children:[s.jsx(mo,{className:"w-5 h-5 shrink-0"}),s.jsx("span",{className:"text-sm",children:"系统设置"})]})})]}),s.jsx("div",{className:"p-4 border-t border-gray-700/50 space-y-1",children:s.jsxs("button",{type:"button",onClick:o,className:"w-full flex items-center gap-3 px-4 py-3 text-gray-400 hover:text-white rounded-lg hover:bg-gray-700/50 transition-colors",children:[s.jsx(yM,{className:"w-5 h-5"}),s.jsx("span",{className:"text-sm",children:"退出登录"})]})})]}),s.jsxs("div",{className:"flex-1 overflow-auto bg-[#0a1628] min-w-0 flex flex-col",children:[s.jsx(RA,{}),s.jsx("div",{className:"w-full min-w-[1024px] min-h-full flex-1",children:s.jsx(OE,{})})]})]})}function y1(t,e){if(typeof t=="function")return t(e);t!=null&&(t.current=e)}function k0(...t){return e=>{let n=!1;const r=t.map(a=>{const i=y1(a,e);return!n&&typeof i=="function"&&(n=!0),i});if(n)return()=>{for(let a=0;a{let{children:i,...o}=r;_j(i)&&typeof sf=="function"&&(i=sf(i._payload));const c=b.Children.toArray(i),u=c.find(FA);if(u){const h=u.props.children,f=c.map(m=>m===u?b.Children.count(h)>1?b.Children.only(null):b.isValidElement(h)?h.props.children:null:m);return s.jsx(e,{...o,ref:a,children:b.isValidElement(h)?b.cloneElement(h,void 0,f):null})}return s.jsx(e,{...o,ref:a,children:i})});return n.displayName=`${t}.Slot`,n}var $j=zj("Slot");function zA(t){const e=b.forwardRef((n,r)=>{let{children:a,...i}=n;if(_j(a)&&typeof sf=="function"&&(a=sf(a._payload)),b.isValidElement(a)){const o=VA(a),c=BA(i,a.props);return a.type!==b.Fragment&&(c.ref=r?k0(r,o):o),b.cloneElement(a,c)}return b.Children.count(a)>1?b.Children.only(null):null});return e.displayName=`${t}.SlotClone`,e}var $A=Symbol("radix.slottable");function FA(t){return b.isValidElement(t)&&typeof t.type=="function"&&"__radixId"in t.type&&t.type.__radixId===$A}function BA(t,e){const n={...e};for(const r in e){const a=t[r],i=e[r];/^on[A-Z]/.test(r)?a&&i?n[r]=(...c)=>{const u=i(...c);return a(...c),u}:a&&(n[r]=a):r==="style"?n[r]={...a,...i}:r==="className"&&(n[r]=[a,i].filter(Boolean).join(" "))}return{...t,...n}}function VA(t){var r,a;let e=(r=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:r.get,n=e&&"isReactWarning"in e&&e.isReactWarning;return n?t.ref:(e=(a=Object.getOwnPropertyDescriptor(t,"ref"))==null?void 0:a.get,n=e&&"isReactWarning"in e&&e.isReactWarning,n?t.props.ref:t.props.ref||t.ref)}function Fj(t){var e,n,r="";if(typeof t=="string"||typeof t=="number")r+=t;else if(typeof t=="object")if(Array.isArray(t)){var a=t.length;for(e=0;etypeof t=="boolean"?`${t}`:t===0?"0":t,v1=Bj,Vj=(t,e)=>n=>{var r;if((e==null?void 0:e.variants)==null)return v1(t,n==null?void 0:n.class,n==null?void 0:n.className);const{variants:a,defaultVariants:i}=e,o=Object.keys(a).map(h=>{const f=n==null?void 0:n[h],m=i==null?void 0:i[h];if(f===null)return null;const x=b1(f)||b1(m);return a[h][x]}),c=n&&Object.entries(n).reduce((h,f)=>{let[m,x]=f;return x===void 0||(h[m]=x),h},{}),u=e==null||(r=e.compoundVariants)===null||r===void 0?void 0:r.reduce((h,f)=>{let{class:m,className:x,...y}=f;return Object.entries(y).every(v=>{let[N,w]=v;return Array.isArray(w)?w.includes({...i,...c}[N]):{...i,...c}[N]===w})?[...h,m,x]:h},[]);return v1(t,o,u,n==null?void 0:n.class,n==null?void 0:n.className)},HA=(t,e)=>{const n=new Array(t.length+e.length);for(let r=0;r({classGroupId:t,validator:e}),Hj=(t=new Map,e=null,n)=>({nextPart:t,validators:e,classGroupId:n}),rf="-",N1=[],WA="arbitrary..",KA=t=>{const e=GA(t),{conflictingClassGroups:n,conflictingClassGroupModifiers:r}=t;return{getClassGroupId:o=>{if(o.startsWith("[")&&o.endsWith("]"))return qA(o);const c=o.split(rf),u=c[0]===""&&c.length>1?1:0;return Uj(c,u,e)},getConflictingClassGroupIds:(o,c)=>{if(c){const u=r[o],h=n[o];return u?h?HA(h,u):u:h||N1}return n[o]||N1}}},Uj=(t,e,n)=>{if(t.length-e===0)return n.classGroupId;const a=t[e],i=n.nextPart.get(a);if(i){const h=Uj(t,e+1,i);if(h)return h}const o=n.validators;if(o===null)return;const c=e===0?t.join(rf):t.slice(e).join(rf),u=o.length;for(let h=0;ht.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const e=t.slice(1,-1),n=e.indexOf(":"),r=e.slice(0,n);return r?WA+r:void 0})(),GA=t=>{const{theme:e,classGroups:n}=t;return JA(n,e)},JA=(t,e)=>{const n=Hj();for(const r in t){const a=t[r];S0(a,n,r,e)}return n},S0=(t,e,n,r)=>{const a=t.length;for(let i=0;i{if(typeof t=="string"){YA(t,e,n);return}if(typeof t=="function"){XA(t,e,n,r);return}ZA(t,e,n,r)},YA=(t,e,n)=>{const r=t===""?e:Wj(e,t);r.classGroupId=n},XA=(t,e,n,r)=>{if(eI(t)){S0(t(r),e,n,r);return}e.validators===null&&(e.validators=[]),e.validators.push(UA(n,t))},ZA=(t,e,n,r)=>{const a=Object.entries(t),i=a.length;for(let o=0;o{let n=t;const r=e.split(rf),a=r.length;for(let i=0;i"isThemeGetter"in t&&t.isThemeGetter===!0,tI=t=>{if(t<1)return{get:()=>{},set:()=>{}};let e=0,n=Object.create(null),r=Object.create(null);const a=(i,o)=>{n[i]=o,e++,e>t&&(e=0,r=n,n=Object.create(null))};return{get(i){let o=n[i];if(o!==void 0)return o;if((o=r[i])!==void 0)return a(i,o),o},set(i,o){i in n?n[i]=o:a(i,o)}}},yg="!",w1=":",nI=[],j1=(t,e,n,r,a)=>({modifiers:t,hasImportantModifier:e,baseClassName:n,maybePostfixModifierPosition:r,isExternal:a}),sI=t=>{const{prefix:e,experimentalParseClassName:n}=t;let r=a=>{const i=[];let o=0,c=0,u=0,h;const f=a.length;for(let N=0;Nu?h-u:void 0;return j1(i,y,x,v)};if(e){const a=e+w1,i=r;r=o=>o.startsWith(a)?i(o.slice(a.length)):j1(nI,!1,o,void 0,!0)}if(n){const a=r;r=i=>n({className:i,parseClassName:a})}return r},rI=t=>{const e=new Map;return t.orderSensitiveModifiers.forEach((n,r)=>{e.set(n,1e6+r)}),n=>{const r=[];let a=[];for(let i=0;i0&&(a.sort(),r.push(...a),a=[]),r.push(o)):a.push(o)}return a.length>0&&(a.sort(),r.push(...a)),r}},aI=t=>({cache:tI(t.cacheSize),parseClassName:sI(t),sortModifiers:rI(t),...KA(t)}),iI=/\s+/,oI=(t,e)=>{const{parseClassName:n,getClassGroupId:r,getConflictingClassGroupIds:a,sortModifiers:i}=e,o=[],c=t.trim().split(iI);let u="";for(let h=c.length-1;h>=0;h-=1){const f=c[h],{isExternal:m,modifiers:x,hasImportantModifier:y,baseClassName:v,maybePostfixModifierPosition:N}=n(f);if(m){u=f+(u.length>0?" "+u:u);continue}let w=!!N,k=r(w?v.substring(0,N):v);if(!k){if(!w){u=f+(u.length>0?" "+u:u);continue}if(k=r(v),!k){u=f+(u.length>0?" "+u:u);continue}w=!1}const E=x.length===0?"":x.length===1?x[0]:i(x).join(":"),C=y?E+yg:E,R=C+k;if(o.indexOf(R)>-1)continue;o.push(R);const O=a(k,w);for(let q=0;q0?" "+u:u)}return u},lI=(...t)=>{let e=0,n,r,a="";for(;e{if(typeof t=="string")return t;let e,n="";for(let r=0;r{let n,r,a,i;const o=u=>{const h=e.reduce((f,m)=>m(f),t());return n=aI(h),r=n.cache.get,a=n.cache.set,i=c,c(u)},c=u=>{const h=r(u);if(h)return h;const f=oI(u,n);return a(u,f),f};return i=o,(...u)=>i(lI(...u))},dI=[],Jn=t=>{const e=n=>n[t]||dI;return e.isThemeGetter=!0,e},qj=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,Gj=/^\((?:(\w[\w-]*):)?(.+)\)$/i,uI=/^\d+\/\d+$/,hI=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,fI=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,pI=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,mI=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,xI=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,ac=t=>uI.test(t),Nt=t=>!!t&&!Number.isNaN(Number(t)),no=t=>!!t&&Number.isInteger(Number(t)),hx=t=>t.endsWith("%")&&Nt(t.slice(0,-1)),li=t=>hI.test(t),gI=()=>!0,yI=t=>fI.test(t)&&!pI.test(t),Jj=()=>!1,bI=t=>mI.test(t),vI=t=>xI.test(t),NI=t=>!qe(t)&&!Ge(t),wI=t=>Vc(t,Xj,Jj),qe=t=>qj.test(t),nl=t=>Vc(t,Zj,yI),fx=t=>Vc(t,TI,Nt),k1=t=>Vc(t,Qj,Jj),jI=t=>Vc(t,Yj,vI),yh=t=>Vc(t,ek,bI),Ge=t=>Gj.test(t),jd=t=>Hc(t,Zj),kI=t=>Hc(t,EI),S1=t=>Hc(t,Qj),SI=t=>Hc(t,Xj),CI=t=>Hc(t,Yj),bh=t=>Hc(t,ek,!0),Vc=(t,e,n)=>{const r=qj.exec(t);return r?r[1]?e(r[1]):n(r[2]):!1},Hc=(t,e,n=!1)=>{const r=Gj.exec(t);return r?r[1]?e(r[1]):n:!1},Qj=t=>t==="position"||t==="percentage",Yj=t=>t==="image"||t==="url",Xj=t=>t==="length"||t==="size"||t==="bg-size",Zj=t=>t==="length",TI=t=>t==="number",EI=t=>t==="family-name",ek=t=>t==="shadow",MI=()=>{const t=Jn("color"),e=Jn("font"),n=Jn("text"),r=Jn("font-weight"),a=Jn("tracking"),i=Jn("leading"),o=Jn("breakpoint"),c=Jn("container"),u=Jn("spacing"),h=Jn("radius"),f=Jn("shadow"),m=Jn("inset-shadow"),x=Jn("text-shadow"),y=Jn("drop-shadow"),v=Jn("blur"),N=Jn("perspective"),w=Jn("aspect"),k=Jn("ease"),E=Jn("animate"),C=()=>["auto","avoid","all","avoid-page","page","left","right","column"],R=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],O=()=>[...R(),Ge,qe],q=()=>["auto","hidden","clip","visible","scroll"],$=()=>["auto","contain","none"],V=()=>[Ge,qe,u],I=()=>[ac,"full","auto",...V()],te=()=>[no,"none","subgrid",Ge,qe],Q=()=>["auto",{span:["full",no,Ge,qe]},no,Ge,qe],B=()=>[no,"auto",Ge,qe],re=()=>["auto","min","max","fr",Ge,qe],ae=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],J=()=>["start","end","center","stretch","center-safe","end-safe"],F=()=>["auto",...V()],D=()=>[ac,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...V()],P=()=>[t,Ge,qe],oe=()=>[...R(),S1,k1,{position:[Ge,qe]}],G=()=>["no-repeat",{repeat:["","x","y","space","round"]}],_=()=>["auto","cover","contain",SI,wI,{size:[Ge,qe]}],U=()=>[hx,jd,nl],H=()=>["","none","full",h,Ge,qe],K=()=>["",Nt,jd,nl],me=()=>["solid","dashed","dotted","double"],X=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],le=()=>[Nt,hx,S1,k1],de=()=>["","none",v,Ge,qe],ve=()=>["none",Nt,Ge,qe],ye=()=>["none",Nt,Ge,qe],Se=()=>[Nt,Ge,qe],Fe=()=>[ac,"full",...V()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[li],breakpoint:[li],color:[gI],container:[li],"drop-shadow":[li],ease:["in","out","in-out"],font:[NI],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[li],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[li],shadow:[li],spacing:["px",Nt],text:[li],"text-shadow":[li],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",ac,qe,Ge,w]}],container:["container"],columns:[{columns:[Nt,qe,Ge,c]}],"break-after":[{"break-after":C()}],"break-before":[{"break-before":C()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:O()}],overflow:[{overflow:q()}],"overflow-x":[{"overflow-x":q()}],"overflow-y":[{"overflow-y":q()}],overscroll:[{overscroll:$()}],"overscroll-x":[{"overscroll-x":$()}],"overscroll-y":[{"overscroll-y":$()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:I()}],"inset-x":[{"inset-x":I()}],"inset-y":[{"inset-y":I()}],start:[{start:I()}],end:[{end:I()}],top:[{top:I()}],right:[{right:I()}],bottom:[{bottom:I()}],left:[{left:I()}],visibility:["visible","invisible","collapse"],z:[{z:[no,"auto",Ge,qe]}],basis:[{basis:[ac,"full","auto",c,...V()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[Nt,ac,"auto","initial","none",qe]}],grow:[{grow:["",Nt,Ge,qe]}],shrink:[{shrink:["",Nt,Ge,qe]}],order:[{order:[no,"first","last","none",Ge,qe]}],"grid-cols":[{"grid-cols":te()}],"col-start-end":[{col:Q()}],"col-start":[{"col-start":B()}],"col-end":[{"col-end":B()}],"grid-rows":[{"grid-rows":te()}],"row-start-end":[{row:Q()}],"row-start":[{"row-start":B()}],"row-end":[{"row-end":B()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":re()}],"auto-rows":[{"auto-rows":re()}],gap:[{gap:V()}],"gap-x":[{"gap-x":V()}],"gap-y":[{"gap-y":V()}],"justify-content":[{justify:[...ae(),"normal"]}],"justify-items":[{"justify-items":[...J(),"normal"]}],"justify-self":[{"justify-self":["auto",...J()]}],"align-content":[{content:["normal",...ae()]}],"align-items":[{items:[...J(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...J(),{baseline:["","last"]}]}],"place-content":[{"place-content":ae()}],"place-items":[{"place-items":[...J(),"baseline"]}],"place-self":[{"place-self":["auto",...J()]}],p:[{p:V()}],px:[{px:V()}],py:[{py:V()}],ps:[{ps:V()}],pe:[{pe:V()}],pt:[{pt:V()}],pr:[{pr:V()}],pb:[{pb:V()}],pl:[{pl:V()}],m:[{m:F()}],mx:[{mx:F()}],my:[{my:F()}],ms:[{ms:F()}],me:[{me:F()}],mt:[{mt:F()}],mr:[{mr:F()}],mb:[{mb:F()}],ml:[{ml:F()}],"space-x":[{"space-x":V()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":V()}],"space-y-reverse":["space-y-reverse"],size:[{size:D()}],w:[{w:[c,"screen",...D()]}],"min-w":[{"min-w":[c,"screen","none",...D()]}],"max-w":[{"max-w":[c,"screen","none","prose",{screen:[o]},...D()]}],h:[{h:["screen","lh",...D()]}],"min-h":[{"min-h":["screen","lh","none",...D()]}],"max-h":[{"max-h":["screen","lh",...D()]}],"font-size":[{text:["base",n,jd,nl]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[r,Ge,fx]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",hx,qe]}],"font-family":[{font:[kI,qe,e]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[a,Ge,qe]}],"line-clamp":[{"line-clamp":[Nt,"none",Ge,fx]}],leading:[{leading:[i,...V()]}],"list-image":[{"list-image":["none",Ge,qe]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",Ge,qe]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:P()}],"text-color":[{text:P()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...me(),"wavy"]}],"text-decoration-thickness":[{decoration:[Nt,"from-font","auto",Ge,nl]}],"text-decoration-color":[{decoration:P()}],"underline-offset":[{"underline-offset":[Nt,"auto",Ge,qe]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:V()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",Ge,qe]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",Ge,qe]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:oe()}],"bg-repeat":[{bg:G()}],"bg-size":[{bg:_()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},no,Ge,qe],radial:["",Ge,qe],conic:[no,Ge,qe]},CI,jI]}],"bg-color":[{bg:P()}],"gradient-from-pos":[{from:U()}],"gradient-via-pos":[{via:U()}],"gradient-to-pos":[{to:U()}],"gradient-from":[{from:P()}],"gradient-via":[{via:P()}],"gradient-to":[{to:P()}],rounded:[{rounded:H()}],"rounded-s":[{"rounded-s":H()}],"rounded-e":[{"rounded-e":H()}],"rounded-t":[{"rounded-t":H()}],"rounded-r":[{"rounded-r":H()}],"rounded-b":[{"rounded-b":H()}],"rounded-l":[{"rounded-l":H()}],"rounded-ss":[{"rounded-ss":H()}],"rounded-se":[{"rounded-se":H()}],"rounded-ee":[{"rounded-ee":H()}],"rounded-es":[{"rounded-es":H()}],"rounded-tl":[{"rounded-tl":H()}],"rounded-tr":[{"rounded-tr":H()}],"rounded-br":[{"rounded-br":H()}],"rounded-bl":[{"rounded-bl":H()}],"border-w":[{border:K()}],"border-w-x":[{"border-x":K()}],"border-w-y":[{"border-y":K()}],"border-w-s":[{"border-s":K()}],"border-w-e":[{"border-e":K()}],"border-w-t":[{"border-t":K()}],"border-w-r":[{"border-r":K()}],"border-w-b":[{"border-b":K()}],"border-w-l":[{"border-l":K()}],"divide-x":[{"divide-x":K()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":K()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...me(),"hidden","none"]}],"divide-style":[{divide:[...me(),"hidden","none"]}],"border-color":[{border:P()}],"border-color-x":[{"border-x":P()}],"border-color-y":[{"border-y":P()}],"border-color-s":[{"border-s":P()}],"border-color-e":[{"border-e":P()}],"border-color-t":[{"border-t":P()}],"border-color-r":[{"border-r":P()}],"border-color-b":[{"border-b":P()}],"border-color-l":[{"border-l":P()}],"divide-color":[{divide:P()}],"outline-style":[{outline:[...me(),"none","hidden"]}],"outline-offset":[{"outline-offset":[Nt,Ge,qe]}],"outline-w":[{outline:["",Nt,jd,nl]}],"outline-color":[{outline:P()}],shadow:[{shadow:["","none",f,bh,yh]}],"shadow-color":[{shadow:P()}],"inset-shadow":[{"inset-shadow":["none",m,bh,yh]}],"inset-shadow-color":[{"inset-shadow":P()}],"ring-w":[{ring:K()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:P()}],"ring-offset-w":[{"ring-offset":[Nt,nl]}],"ring-offset-color":[{"ring-offset":P()}],"inset-ring-w":[{"inset-ring":K()}],"inset-ring-color":[{"inset-ring":P()}],"text-shadow":[{"text-shadow":["none",x,bh,yh]}],"text-shadow-color":[{"text-shadow":P()}],opacity:[{opacity:[Nt,Ge,qe]}],"mix-blend":[{"mix-blend":[...X(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":X()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[Nt]}],"mask-image-linear-from-pos":[{"mask-linear-from":le()}],"mask-image-linear-to-pos":[{"mask-linear-to":le()}],"mask-image-linear-from-color":[{"mask-linear-from":P()}],"mask-image-linear-to-color":[{"mask-linear-to":P()}],"mask-image-t-from-pos":[{"mask-t-from":le()}],"mask-image-t-to-pos":[{"mask-t-to":le()}],"mask-image-t-from-color":[{"mask-t-from":P()}],"mask-image-t-to-color":[{"mask-t-to":P()}],"mask-image-r-from-pos":[{"mask-r-from":le()}],"mask-image-r-to-pos":[{"mask-r-to":le()}],"mask-image-r-from-color":[{"mask-r-from":P()}],"mask-image-r-to-color":[{"mask-r-to":P()}],"mask-image-b-from-pos":[{"mask-b-from":le()}],"mask-image-b-to-pos":[{"mask-b-to":le()}],"mask-image-b-from-color":[{"mask-b-from":P()}],"mask-image-b-to-color":[{"mask-b-to":P()}],"mask-image-l-from-pos":[{"mask-l-from":le()}],"mask-image-l-to-pos":[{"mask-l-to":le()}],"mask-image-l-from-color":[{"mask-l-from":P()}],"mask-image-l-to-color":[{"mask-l-to":P()}],"mask-image-x-from-pos":[{"mask-x-from":le()}],"mask-image-x-to-pos":[{"mask-x-to":le()}],"mask-image-x-from-color":[{"mask-x-from":P()}],"mask-image-x-to-color":[{"mask-x-to":P()}],"mask-image-y-from-pos":[{"mask-y-from":le()}],"mask-image-y-to-pos":[{"mask-y-to":le()}],"mask-image-y-from-color":[{"mask-y-from":P()}],"mask-image-y-to-color":[{"mask-y-to":P()}],"mask-image-radial":[{"mask-radial":[Ge,qe]}],"mask-image-radial-from-pos":[{"mask-radial-from":le()}],"mask-image-radial-to-pos":[{"mask-radial-to":le()}],"mask-image-radial-from-color":[{"mask-radial-from":P()}],"mask-image-radial-to-color":[{"mask-radial-to":P()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":R()}],"mask-image-conic-pos":[{"mask-conic":[Nt]}],"mask-image-conic-from-pos":[{"mask-conic-from":le()}],"mask-image-conic-to-pos":[{"mask-conic-to":le()}],"mask-image-conic-from-color":[{"mask-conic-from":P()}],"mask-image-conic-to-color":[{"mask-conic-to":P()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:oe()}],"mask-repeat":[{mask:G()}],"mask-size":[{mask:_()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",Ge,qe]}],filter:[{filter:["","none",Ge,qe]}],blur:[{blur:de()}],brightness:[{brightness:[Nt,Ge,qe]}],contrast:[{contrast:[Nt,Ge,qe]}],"drop-shadow":[{"drop-shadow":["","none",y,bh,yh]}],"drop-shadow-color":[{"drop-shadow":P()}],grayscale:[{grayscale:["",Nt,Ge,qe]}],"hue-rotate":[{"hue-rotate":[Nt,Ge,qe]}],invert:[{invert:["",Nt,Ge,qe]}],saturate:[{saturate:[Nt,Ge,qe]}],sepia:[{sepia:["",Nt,Ge,qe]}],"backdrop-filter":[{"backdrop-filter":["","none",Ge,qe]}],"backdrop-blur":[{"backdrop-blur":de()}],"backdrop-brightness":[{"backdrop-brightness":[Nt,Ge,qe]}],"backdrop-contrast":[{"backdrop-contrast":[Nt,Ge,qe]}],"backdrop-grayscale":[{"backdrop-grayscale":["",Nt,Ge,qe]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[Nt,Ge,qe]}],"backdrop-invert":[{"backdrop-invert":["",Nt,Ge,qe]}],"backdrop-opacity":[{"backdrop-opacity":[Nt,Ge,qe]}],"backdrop-saturate":[{"backdrop-saturate":[Nt,Ge,qe]}],"backdrop-sepia":[{"backdrop-sepia":["",Nt,Ge,qe]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":V()}],"border-spacing-x":[{"border-spacing-x":V()}],"border-spacing-y":[{"border-spacing-y":V()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",Ge,qe]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[Nt,"initial",Ge,qe]}],ease:[{ease:["linear","initial",k,Ge,qe]}],delay:[{delay:[Nt,Ge,qe]}],animate:[{animate:["none",E,Ge,qe]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[N,Ge,qe]}],"perspective-origin":[{"perspective-origin":O()}],rotate:[{rotate:ve()}],"rotate-x":[{"rotate-x":ve()}],"rotate-y":[{"rotate-y":ve()}],"rotate-z":[{"rotate-z":ve()}],scale:[{scale:ye()}],"scale-x":[{"scale-x":ye()}],"scale-y":[{"scale-y":ye()}],"scale-z":[{"scale-z":ye()}],"scale-3d":["scale-3d"],skew:[{skew:Se()}],"skew-x":[{"skew-x":Se()}],"skew-y":[{"skew-y":Se()}],transform:[{transform:[Ge,qe,"","none","gpu","cpu"]}],"transform-origin":[{origin:O()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:Fe()}],"translate-x":[{"translate-x":Fe()}],"translate-y":[{"translate-y":Fe()}],"translate-z":[{"translate-z":Fe()}],"translate-none":["translate-none"],accent:[{accent:P()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:P()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",Ge,qe]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":V()}],"scroll-mx":[{"scroll-mx":V()}],"scroll-my":[{"scroll-my":V()}],"scroll-ms":[{"scroll-ms":V()}],"scroll-me":[{"scroll-me":V()}],"scroll-mt":[{"scroll-mt":V()}],"scroll-mr":[{"scroll-mr":V()}],"scroll-mb":[{"scroll-mb":V()}],"scroll-ml":[{"scroll-ml":V()}],"scroll-p":[{"scroll-p":V()}],"scroll-px":[{"scroll-px":V()}],"scroll-py":[{"scroll-py":V()}],"scroll-ps":[{"scroll-ps":V()}],"scroll-pe":[{"scroll-pe":V()}],"scroll-pt":[{"scroll-pt":V()}],"scroll-pr":[{"scroll-pr":V()}],"scroll-pb":[{"scroll-pb":V()}],"scroll-pl":[{"scroll-pl":V()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",Ge,qe]}],fill:[{fill:["none",...P()]}],"stroke-w":[{stroke:[Nt,jd,nl,fx]}],stroke:[{stroke:["none",...P()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},AI=cI(MI);function Qt(...t){return AI(Bj(t))}function So(t){if(!t)return"";let e=t.trim();return e?(e=e.replace(/^(https?)\/\//,"$1://"),e):""}const II=Vj("inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px]",{variants:{variant:{default:"bg-primary text-primary-foreground hover:bg-primary/90",destructive:"bg-destructive text-white hover:bg-destructive/90",outline:"border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 px-4 py-2 has-[>svg]:px-3",sm:"h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",lg:"h-10 rounded-md px-6 has-[>svg]:px-4",icon:"size-9","icon-sm":"size-8","icon-lg":"size-10"}},defaultVariants:{variant:"default",size:"default"}});function Y({className:t,variant:e,size:n,asChild:r=!1,...a}){const i=r?$j:"button";return s.jsx(i,{"data-slot":"button",className:Qt(II({variant:e,size:n,className:t})),...a})}function ce({className:t,type:e,...n}){return s.jsx("input",{type:e,"data-slot":"input",className:Qt("h-9 w-full min-w-0 rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-xs outline-none placeholder:text-muted-foreground disabled:pointer-events-none disabled:opacity-50 md:text-sm focus-visible:ring-2 focus-visible:ring-ring",t),...n})}function PI(){const t=La(),[e,n]=b.useState(""),[r,a]=b.useState(""),[i,o]=b.useState(""),[c,u]=b.useState(!1);b.useEffect(()=>{hu()&&t("/dashboard",{replace:!0})},[t]);const h=async()=>{o(""),u(!0);try{const f=await Et("/api/admin",{username:e.trim(),password:r});if((f==null?void 0:f.success)!==!1&&(f!=null&&f.token)){MA(f.token),t("/dashboard",{replace:!0});return}o(f.error||"用户名或密码错误")}catch(f){const m=f;o(m.status===401?"用户名或密码错误":(m==null?void 0:m.message)||"网络错误,请重试")}finally{u(!1)}};return s.jsxs("div",{className:"min-h-screen bg-[#0a1628] flex items-center justify-center p-4",children:[s.jsxs("div",{className:"absolute inset-0 overflow-hidden",children:[s.jsx("div",{className:"absolute top-1/4 left-1/4 w-96 h-96 bg-[#38bdac]/5 rounded-full blur-3xl"}),s.jsx("div",{className:"absolute bottom-1/4 right-1/4 w-96 h-96 bg-blue-500/5 rounded-full blur-3xl"})]}),s.jsxs("div",{className:"w-full max-w-md relative z-10",children:[s.jsxs("div",{className:"text-center mb-8",children:[s.jsx("div",{className:"w-16 h-16 bg-[#38bdac]/20 rounded-2xl flex items-center justify-center mx-auto mb-4 border border-[#38bdac]/30",children:s.jsx(yc,{className:"w-8 h-8 text-[#38bdac]"})}),s.jsx("h1",{className:"text-2xl font-bold text-white mb-2",children:"管理后台"}),s.jsx("p",{className:"text-gray-400",children:"一场SOUL的创业实验场"})]}),s.jsxs("div",{className:"bg-[#0f2137] rounded-2xl p-8 shadow-xl border border-gray-700/50 backdrop-blur-xl",children:[s.jsx("h2",{className:"text-xl font-semibold text-white mb-6 text-center",children:"管理员登录"}),s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{children:[s.jsx("label",{className:"block text-gray-400 text-sm mb-2",children:"用户名"}),s.jsxs("div",{className:"relative",children:[s.jsx(xi,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-gray-500"}),s.jsx(ce,{type:"text",value:e,onChange:f=>{n(f.target.value),i&&o("")},placeholder:"请输入用户名",className:"pl-10 bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500 focus:border-[#38bdac]"})]})]}),s.jsxs("div",{children:[s.jsx("label",{className:"block text-gray-400 text-sm mb-2",children:"密码"}),s.jsxs("div",{className:"relative",children:[s.jsx(xM,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-gray-500"}),s.jsx(ce,{type:"password",value:r,onChange:f=>{a(f.target.value),i&&o("")},placeholder:"请输入密码",className:"pl-10 bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500 focus:border-[#38bdac]",onKeyDown:f=>f.key==="Enter"&&h()})]})]}),i&&s.jsx("div",{className:"bg-red-500/10 text-red-400 text-sm p-3 rounded-lg border border-red-500/20",children:i}),s.jsx(Y,{onClick:h,disabled:c,className:"w-full bg-[#38bdac] hover:bg-[#2da396] text-white py-5 disabled:opacity-50",children:c?"登录中...":"登录"})]})]}),s.jsx("p",{className:"text-center text-gray-500 text-xs mt-6",children:"Soul创业实验场 · 后台管理系统"})]})]})}const De=b.forwardRef(({className:t,...e},n)=>s.jsx("div",{ref:n,className:Qt("rounded-xl border bg-card text-card-foreground shadow",t),...e}));De.displayName="Card";const it=b.forwardRef(({className:t,...e},n)=>s.jsx("div",{ref:n,className:Qt("flex flex-col space-y-1.5 p-6",t),...e}));it.displayName="CardHeader";const ot=b.forwardRef(({className:t,...e},n)=>s.jsx("h3",{ref:n,className:Qt("font-semibold leading-none tracking-tight",t),...e}));ot.displayName="CardTitle";const Yt=b.forwardRef(({className:t,...e},n)=>s.jsx("p",{ref:n,className:Qt("text-sm text-muted-foreground",t),...e}));Yt.displayName="CardDescription";const _e=b.forwardRef(({className:t,...e},n)=>s.jsx("div",{ref:n,className:Qt("p-6 pt-0",t),...e}));_e.displayName="CardContent";const RI=b.forwardRef(({className:t,...e},n)=>s.jsx("div",{ref:n,className:Qt("flex items-center p-6 pt-0",t),...e}));RI.displayName="CardFooter";const OI={success:{bg:"#f0fdf4",border:"#22c55e",icon:"✓"},error:{bg:"#fef2f2",border:"#ef4444",icon:"✕"},info:{bg:"#eff6ff",border:"#3b82f6",icon:"ℹ"}};function px(t,e="info",n=3e3){const r=`toast-${Date.now()}`,a=OI[e],i=document.createElement("div");i.id=r,i.setAttribute("role","alert"),Object.assign(i.style,{position:"fixed",top:"24px",right:"24px",zIndex:"9999",display:"flex",alignItems:"center",gap:"10px",padding:"12px 18px",borderRadius:"10px",background:a.bg,border:`1.5px solid ${a.border}`,boxShadow:"0 4px 20px rgba(0,0,0,.12)",fontSize:"14px",color:"#1a1a1a",fontWeight:"500",maxWidth:"380px",lineHeight:"1.5",opacity:"0",transform:"translateY(-8px)",transition:"opacity .22s ease, transform .22s ease",pointerEvents:"none"});const o=document.createElement("span");Object.assign(o.style,{width:"20px",height:"20px",borderRadius:"50%",background:a.border,color:"#fff",display:"flex",alignItems:"center",justifyContent:"center",fontSize:"12px",fontWeight:"700",flexShrink:"0"}),o.textContent=a.icon;const c=document.createElement("span");c.textContent=t,i.appendChild(o),i.appendChild(c),document.body.appendChild(i),requestAnimationFrame(()=>{i.style.opacity="1",i.style.transform="translateY(0)"});const u=setTimeout(()=>h(r),n);function h(f){clearTimeout(u);const m=document.getElementById(f);m&&(m.style.opacity="0",m.style.transform="translateY(-8px)",setTimeout(()=>{var x;return(x=m.parentNode)==null?void 0:x.removeChild(m)},250))}}const ne={success:(t,e)=>px(t,"success",e),error:(t,e)=>px(t,"error",e),info:(t,e)=>px(t,"info",e)};function yt(t,e,{checkForDefaultPrevented:n=!0}={}){return function(a){if(t==null||t(a),n===!1||!a.defaultPrevented)return e==null?void 0:e(a)}}function LI(t,e){const n=b.createContext(e),r=i=>{const{children:o,...c}=i,u=b.useMemo(()=>c,Object.values(c));return s.jsx(n.Provider,{value:u,children:o})};r.displayName=t+"Provider";function a(i){const o=b.useContext(n);if(o)return o;if(e!==void 0)return e;throw new Error(`\`${i}\` must be used within \`${t}\``)}return[r,a]}function Oo(t,e=[]){let n=[];function r(i,o){const c=b.createContext(o),u=n.length;n=[...n,o];const h=m=>{var k;const{scope:x,children:y,...v}=m,N=((k=x==null?void 0:x[t])==null?void 0:k[u])||c,w=b.useMemo(()=>v,Object.values(v));return s.jsx(N.Provider,{value:w,children:y})};h.displayName=i+"Provider";function f(m,x){var N;const y=((N=x==null?void 0:x[t])==null?void 0:N[u])||c,v=b.useContext(y);if(v)return v;if(o!==void 0)return o;throw new Error(`\`${m}\` must be used within \`${i}\``)}return[h,f]}const a=()=>{const i=n.map(o=>b.createContext(o));return function(c){const u=(c==null?void 0:c[t])||i;return b.useMemo(()=>({[`__scope${t}`]:{...c,[t]:u}}),[c,u])}};return a.scopeName=t,[r,DI(a,...e)]}function DI(...t){const e=t[0];if(t.length===1)return e;const n=()=>{const r=t.map(a=>({useScope:a(),scopeName:a.scopeName}));return function(i){const o=r.reduce((c,{useScope:u,scopeName:h})=>{const m=u(i)[`__scope${h}`];return{...c,...m}},{});return b.useMemo(()=>({[`__scope${e.scopeName}`]:o}),[o])}};return n.scopeName=e.scopeName,n}var Is=globalThis!=null&&globalThis.document?b.useLayoutEffect:()=>{},_I=rp[" useId ".trim().toString()]||(()=>{}),zI=0;function vo(t){const[e,n]=b.useState(_I());return Is(()=>{n(r=>r??String(zI++))},[t]),e?`radix-${e}`:""}var $I=rp[" useInsertionEffect ".trim().toString()]||Is;function yl({prop:t,defaultProp:e,onChange:n=()=>{},caller:r}){const[a,i,o]=FI({defaultProp:e,onChange:n}),c=t!==void 0,u=c?t:a;{const f=b.useRef(t!==void 0);b.useEffect(()=>{const m=f.current;m!==c&&console.warn(`${r} is changing from ${m?"controlled":"uncontrolled"} to ${c?"controlled":"uncontrolled"}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),f.current=c},[c,r])}const h=b.useCallback(f=>{var m;if(c){const x=BI(f)?f(t):f;x!==t&&((m=o.current)==null||m.call(o,x))}else i(f)},[c,t,i,o]);return[u,h]}function FI({defaultProp:t,onChange:e}){const[n,r]=b.useState(t),a=b.useRef(n),i=b.useRef(e);return $I(()=>{i.current=e},[e]),b.useEffect(()=>{var o;a.current!==n&&((o=i.current)==null||o.call(i,n),a.current=n)},[n,a]),[n,r,i]}function BI(t){return typeof t=="function"}function Qd(t){const e=VI(t),n=b.forwardRef((r,a)=>{const{children:i,...o}=r,c=b.Children.toArray(i),u=c.find(UI);if(u){const h=u.props.children,f=c.map(m=>m===u?b.Children.count(h)>1?b.Children.only(null):b.isValidElement(h)?h.props.children:null:m);return s.jsx(e,{...o,ref:a,children:b.isValidElement(h)?b.cloneElement(h,void 0,f):null})}return s.jsx(e,{...o,ref:a,children:i})});return n.displayName=`${t}.Slot`,n}function VI(t){const e=b.forwardRef((n,r)=>{const{children:a,...i}=n;if(b.isValidElement(a)){const o=KI(a),c=WI(i,a.props);return a.type!==b.Fragment&&(c.ref=r?k0(r,o):o),b.cloneElement(a,c)}return b.Children.count(a)>1?b.Children.only(null):null});return e.displayName=`${t}.SlotClone`,e}var HI=Symbol("radix.slottable");function UI(t){return b.isValidElement(t)&&typeof t.type=="function"&&"__radixId"in t.type&&t.type.__radixId===HI}function WI(t,e){const n={...e};for(const r in e){const a=t[r],i=e[r];/^on[A-Z]/.test(r)?a&&i?n[r]=(...c)=>{const u=i(...c);return a(...c),u}:a&&(n[r]=a):r==="style"?n[r]={...a,...i}:r==="className"&&(n[r]=[a,i].filter(Boolean).join(" "))}return{...t,...n}}function KI(t){var r,a;let e=(r=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:r.get,n=e&&"isReactWarning"in e&&e.isReactWarning;return n?t.ref:(e=(a=Object.getOwnPropertyDescriptor(t,"ref"))==null?void 0:a.get,n=e&&"isReactWarning"in e&&e.isReactWarning,n?t.props.ref:t.props.ref||t.ref)}var qI=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],wt=qI.reduce((t,e)=>{const n=Qd(`Primitive.${e}`),r=b.forwardRef((a,i)=>{const{asChild:o,...c}=a,u=o?n:e;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),s.jsx(u,{...c,ref:i})});return r.displayName=`Primitive.${e}`,{...t,[e]:r}},{});function GI(t,e){t&&uu.flushSync(()=>t.dispatchEvent(e))}function Co(t){const e=b.useRef(t);return b.useEffect(()=>{e.current=t}),b.useMemo(()=>(...n)=>{var r;return(r=e.current)==null?void 0:r.call(e,...n)},[])}function JI(t,e=globalThis==null?void 0:globalThis.document){const n=Co(t);b.useEffect(()=>{const r=a=>{a.key==="Escape"&&n(a)};return e.addEventListener("keydown",r,{capture:!0}),()=>e.removeEventListener("keydown",r,{capture:!0})},[n,e])}var QI="DismissableLayer",bg="dismissableLayer.update",YI="dismissableLayer.pointerDownOutside",XI="dismissableLayer.focusOutside",C1,tk=b.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),C0=b.forwardRef((t,e)=>{const{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:r,onPointerDownOutside:a,onFocusOutside:i,onInteractOutside:o,onDismiss:c,...u}=t,h=b.useContext(tk),[f,m]=b.useState(null),x=(f==null?void 0:f.ownerDocument)??(globalThis==null?void 0:globalThis.document),[,y]=b.useState({}),v=Jt(e,$=>m($)),N=Array.from(h.layers),[w]=[...h.layersWithOutsidePointerEventsDisabled].slice(-1),k=N.indexOf(w),E=f?N.indexOf(f):-1,C=h.layersWithOutsidePointerEventsDisabled.size>0,R=E>=k,O=tP($=>{const V=$.target,I=[...h.branches].some(te=>te.contains(V));!R||I||(a==null||a($),o==null||o($),$.defaultPrevented||c==null||c())},x),q=nP($=>{const V=$.target;[...h.branches].some(te=>te.contains(V))||(i==null||i($),o==null||o($),$.defaultPrevented||c==null||c())},x);return JI($=>{E===h.layers.size-1&&(r==null||r($),!$.defaultPrevented&&c&&($.preventDefault(),c()))},x),b.useEffect(()=>{if(f)return n&&(h.layersWithOutsidePointerEventsDisabled.size===0&&(C1=x.body.style.pointerEvents,x.body.style.pointerEvents="none"),h.layersWithOutsidePointerEventsDisabled.add(f)),h.layers.add(f),T1(),()=>{n&&h.layersWithOutsidePointerEventsDisabled.size===1&&(x.body.style.pointerEvents=C1)}},[f,x,n,h]),b.useEffect(()=>()=>{f&&(h.layers.delete(f),h.layersWithOutsidePointerEventsDisabled.delete(f),T1())},[f,h]),b.useEffect(()=>{const $=()=>y({});return document.addEventListener(bg,$),()=>document.removeEventListener(bg,$)},[]),s.jsx(wt.div,{...u,ref:v,style:{pointerEvents:C?R?"auto":"none":void 0,...t.style},onFocusCapture:yt(t.onFocusCapture,q.onFocusCapture),onBlurCapture:yt(t.onBlurCapture,q.onBlurCapture),onPointerDownCapture:yt(t.onPointerDownCapture,O.onPointerDownCapture)})});C0.displayName=QI;var ZI="DismissableLayerBranch",eP=b.forwardRef((t,e)=>{const n=b.useContext(tk),r=b.useRef(null),a=Jt(e,r);return b.useEffect(()=>{const i=r.current;if(i)return n.branches.add(i),()=>{n.branches.delete(i)}},[n.branches]),s.jsx(wt.div,{...t,ref:a})});eP.displayName=ZI;function tP(t,e=globalThis==null?void 0:globalThis.document){const n=Co(t),r=b.useRef(!1),a=b.useRef(()=>{});return b.useEffect(()=>{const i=c=>{if(c.target&&!r.current){let u=function(){nk(YI,n,h,{discrete:!0})};const h={originalEvent:c};c.pointerType==="touch"?(e.removeEventListener("click",a.current),a.current=u,e.addEventListener("click",a.current,{once:!0})):u()}else e.removeEventListener("click",a.current);r.current=!1},o=window.setTimeout(()=>{e.addEventListener("pointerdown",i)},0);return()=>{window.clearTimeout(o),e.removeEventListener("pointerdown",i),e.removeEventListener("click",a.current)}},[e,n]),{onPointerDownCapture:()=>r.current=!0}}function nP(t,e=globalThis==null?void 0:globalThis.document){const n=Co(t),r=b.useRef(!1);return b.useEffect(()=>{const a=i=>{i.target&&!r.current&&nk(XI,n,{originalEvent:i},{discrete:!1})};return e.addEventListener("focusin",a),()=>e.removeEventListener("focusin",a)},[e,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function T1(){const t=new CustomEvent(bg);document.dispatchEvent(t)}function nk(t,e,n,{discrete:r}){const a=n.originalEvent.target,i=new CustomEvent(t,{bubbles:!1,cancelable:!0,detail:n});e&&a.addEventListener(t,e,{once:!0}),r?GI(a,i):a.dispatchEvent(i)}var mx="focusScope.autoFocusOnMount",xx="focusScope.autoFocusOnUnmount",E1={bubbles:!1,cancelable:!0},sP="FocusScope",T0=b.forwardRef((t,e)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:a,onUnmountAutoFocus:i,...o}=t,[c,u]=b.useState(null),h=Co(a),f=Co(i),m=b.useRef(null),x=Jt(e,N=>u(N)),y=b.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;b.useEffect(()=>{if(r){let N=function(C){if(y.paused||!c)return;const R=C.target;c.contains(R)?m.current=R:ao(m.current,{select:!0})},w=function(C){if(y.paused||!c)return;const R=C.relatedTarget;R!==null&&(c.contains(R)||ao(m.current,{select:!0}))},k=function(C){if(document.activeElement===document.body)for(const O of C)O.removedNodes.length>0&&ao(c)};document.addEventListener("focusin",N),document.addEventListener("focusout",w);const E=new MutationObserver(k);return c&&E.observe(c,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",N),document.removeEventListener("focusout",w),E.disconnect()}}},[r,c,y.paused]),b.useEffect(()=>{if(c){A1.add(y);const N=document.activeElement;if(!c.contains(N)){const k=new CustomEvent(mx,E1);c.addEventListener(mx,h),c.dispatchEvent(k),k.defaultPrevented||(rP(cP(sk(c)),{select:!0}),document.activeElement===N&&ao(c))}return()=>{c.removeEventListener(mx,h),setTimeout(()=>{const k=new CustomEvent(xx,E1);c.addEventListener(xx,f),c.dispatchEvent(k),k.defaultPrevented||ao(N??document.body,{select:!0}),c.removeEventListener(xx,f),A1.remove(y)},0)}}},[c,h,f,y]);const v=b.useCallback(N=>{if(!n&&!r||y.paused)return;const w=N.key==="Tab"&&!N.altKey&&!N.ctrlKey&&!N.metaKey,k=document.activeElement;if(w&&k){const E=N.currentTarget,[C,R]=aP(E);C&&R?!N.shiftKey&&k===R?(N.preventDefault(),n&&ao(C,{select:!0})):N.shiftKey&&k===C&&(N.preventDefault(),n&&ao(R,{select:!0})):k===E&&N.preventDefault()}},[n,r,y.paused]);return s.jsx(wt.div,{tabIndex:-1,...o,ref:x,onKeyDown:v})});T0.displayName=sP;function rP(t,{select:e=!1}={}){const n=document.activeElement;for(const r of t)if(ao(r,{select:e}),document.activeElement!==n)return}function aP(t){const e=sk(t),n=M1(e,t),r=M1(e.reverse(),t);return[n,r]}function sk(t){const e=[],n=document.createTreeWalker(t,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>{const a=r.tagName==="INPUT"&&r.type==="hidden";return r.disabled||r.hidden||a?NodeFilter.FILTER_SKIP:r.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)e.push(n.currentNode);return e}function M1(t,e){for(const n of t)if(!iP(n,{upTo:e}))return n}function iP(t,{upTo:e}){if(getComputedStyle(t).visibility==="hidden")return!0;for(;t;){if(e!==void 0&&t===e)return!1;if(getComputedStyle(t).display==="none")return!0;t=t.parentElement}return!1}function oP(t){return t instanceof HTMLInputElement&&"select"in t}function ao(t,{select:e=!1}={}){if(t&&t.focus){const n=document.activeElement;t.focus({preventScroll:!0}),t!==n&&oP(t)&&e&&t.select()}}var A1=lP();function lP(){let t=[];return{add(e){const n=t[0];e!==n&&(n==null||n.pause()),t=I1(t,e),t.unshift(e)},remove(e){var n;t=I1(t,e),(n=t[0])==null||n.resume()}}}function I1(t,e){const n=[...t],r=n.indexOf(e);return r!==-1&&n.splice(r,1),n}function cP(t){return t.filter(e=>e.tagName!=="A")}var dP="Portal",E0=b.forwardRef((t,e)=>{var c;const{container:n,...r}=t,[a,i]=b.useState(!1);Is(()=>i(!0),[]);const o=n||a&&((c=globalThis==null?void 0:globalThis.document)==null?void 0:c.body);return o?xj.createPortal(s.jsx(wt.div,{...r,ref:e}),o):null});E0.displayName=dP;function uP(t,e){return b.useReducer((n,r)=>e[n][r]??n,t)}var fu=t=>{const{present:e,children:n}=t,r=hP(e),a=typeof n=="function"?n({present:r.isPresent}):b.Children.only(n),i=Jt(r.ref,fP(a));return typeof n=="function"||r.isPresent?b.cloneElement(a,{ref:i}):null};fu.displayName="Presence";function hP(t){const[e,n]=b.useState(),r=b.useRef(null),a=b.useRef(t),i=b.useRef("none"),o=t?"mounted":"unmounted",[c,u]=uP(o,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return b.useEffect(()=>{const h=vh(r.current);i.current=c==="mounted"?h:"none"},[c]),Is(()=>{const h=r.current,f=a.current;if(f!==t){const x=i.current,y=vh(h);t?u("MOUNT"):y==="none"||(h==null?void 0:h.display)==="none"?u("UNMOUNT"):u(f&&x!==y?"ANIMATION_OUT":"UNMOUNT"),a.current=t}},[t,u]),Is(()=>{if(e){let h;const f=e.ownerDocument.defaultView??window,m=y=>{const N=vh(r.current).includes(CSS.escape(y.animationName));if(y.target===e&&N&&(u("ANIMATION_END"),!a.current)){const w=e.style.animationFillMode;e.style.animationFillMode="forwards",h=f.setTimeout(()=>{e.style.animationFillMode==="forwards"&&(e.style.animationFillMode=w)})}},x=y=>{y.target===e&&(i.current=vh(r.current))};return e.addEventListener("animationstart",x),e.addEventListener("animationcancel",m),e.addEventListener("animationend",m),()=>{f.clearTimeout(h),e.removeEventListener("animationstart",x),e.removeEventListener("animationcancel",m),e.removeEventListener("animationend",m)}}else u("ANIMATION_END")},[e,u]),{isPresent:["mounted","unmountSuspended"].includes(c),ref:b.useCallback(h=>{r.current=h?getComputedStyle(h):null,n(h)},[])}}function vh(t){return(t==null?void 0:t.animationName)||"none"}function fP(t){var r,a;let e=(r=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:r.get,n=e&&"isReactWarning"in e&&e.isReactWarning;return n?t.ref:(e=(a=Object.getOwnPropertyDescriptor(t,"ref"))==null?void 0:a.get,n=e&&"isReactWarning"in e&&e.isReactWarning,n?t.props.ref:t.props.ref||t.ref)}var gx=0;function rk(){b.useEffect(()=>{const t=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",t[0]??P1()),document.body.insertAdjacentElement("beforeend",t[1]??P1()),gx++,()=>{gx===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(e=>e.remove()),gx--}},[])}function P1(){const t=document.createElement("span");return t.setAttribute("data-radix-focus-guard",""),t.tabIndex=0,t.style.outline="none",t.style.opacity="0",t.style.position="fixed",t.style.pointerEvents="none",t}var Ta=function(){return Ta=Object.assign||function(e){for(var n,r=1,a=arguments.length;r"u")return AP;var e=IP(t),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:e[0],top:e[1],right:e[2],gap:Math.max(0,r-n+e[2]-e[0])}},RP=lk(),jc="data-scroll-locked",OP=function(t,e,n,r){var a=t.left,i=t.top,o=t.right,c=t.gap;return n===void 0&&(n="margin"),` + .`.concat(mP,` { + overflow: hidden `).concat(r,`; + padding-right: `).concat(c,"px ").concat(r,`; + } + body[`).concat(jc,`] { + overflow: hidden `).concat(r,`; + overscroll-behavior: contain; + `).concat([e&&"position: relative ".concat(r,";"),n==="margin"&&` + padding-left: `.concat(a,`px; + padding-top: `).concat(i,`px; + padding-right: `).concat(o,`px; + margin-left:0; + margin-top:0; + margin-right: `).concat(c,"px ").concat(r,`; + `),n==="padding"&&"padding-right: ".concat(c,"px ").concat(r,";")].filter(Boolean).join(""),` + } + + .`).concat(Vh,` { + right: `).concat(c,"px ").concat(r,`; + } + + .`).concat(Hh,` { + margin-right: `).concat(c,"px ").concat(r,`; + } + + .`).concat(Vh," .").concat(Vh,` { + right: 0 `).concat(r,`; + } + + .`).concat(Hh," .").concat(Hh,` { + margin-right: 0 `).concat(r,`; + } + + body[`).concat(jc,`] { + `).concat(xP,": ").concat(c,`px; + } +`)},O1=function(){var t=parseInt(document.body.getAttribute(jc)||"0",10);return isFinite(t)?t:0},LP=function(){b.useEffect(function(){return document.body.setAttribute(jc,(O1()+1).toString()),function(){var t=O1()-1;t<=0?document.body.removeAttribute(jc):document.body.setAttribute(jc,t.toString())}},[])},DP=function(t){var e=t.noRelative,n=t.noImportant,r=t.gapMode,a=r===void 0?"margin":r;LP();var i=b.useMemo(function(){return PP(a)},[a]);return b.createElement(RP,{styles:OP(i,!e,a,n?"":"!important")})},vg=!1;if(typeof window<"u")try{var Nh=Object.defineProperty({},"passive",{get:function(){return vg=!0,!0}});window.addEventListener("test",Nh,Nh),window.removeEventListener("test",Nh,Nh)}catch{vg=!1}var ic=vg?{passive:!1}:!1,_P=function(t){return t.tagName==="TEXTAREA"},ck=function(t,e){if(!(t instanceof Element))return!1;var n=window.getComputedStyle(t);return n[e]!=="hidden"&&!(n.overflowY===n.overflowX&&!_P(t)&&n[e]==="visible")},zP=function(t){return ck(t,"overflowY")},$P=function(t){return ck(t,"overflowX")},L1=function(t,e){var n=e.ownerDocument,r=e;do{typeof ShadowRoot<"u"&&r instanceof ShadowRoot&&(r=r.host);var a=dk(t,r);if(a){var i=uk(t,r),o=i[1],c=i[2];if(o>c)return!0}r=r.parentNode}while(r&&r!==n.body);return!1},FP=function(t){var e=t.scrollTop,n=t.scrollHeight,r=t.clientHeight;return[e,n,r]},BP=function(t){var e=t.scrollLeft,n=t.scrollWidth,r=t.clientWidth;return[e,n,r]},dk=function(t,e){return t==="v"?zP(e):$P(e)},uk=function(t,e){return t==="v"?FP(e):BP(e)},VP=function(t,e){return t==="h"&&e==="rtl"?-1:1},HP=function(t,e,n,r,a){var i=VP(t,window.getComputedStyle(e).direction),o=i*r,c=n.target,u=e.contains(c),h=!1,f=o>0,m=0,x=0;do{if(!c)break;var y=uk(t,c),v=y[0],N=y[1],w=y[2],k=N-w-i*v;(v||k)&&dk(t,c)&&(m+=k,x+=v);var E=c.parentNode;c=E&&E.nodeType===Node.DOCUMENT_FRAGMENT_NODE?E.host:E}while(!u&&c!==document.body||u&&(e.contains(c)||e===c));return(f&&Math.abs(m)<1||!f&&Math.abs(x)<1)&&(h=!0),h},wh=function(t){return"changedTouches"in t?[t.changedTouches[0].clientX,t.changedTouches[0].clientY]:[0,0]},D1=function(t){return[t.deltaX,t.deltaY]},_1=function(t){return t&&"current"in t?t.current:t},UP=function(t,e){return t[0]===e[0]&&t[1]===e[1]},WP=function(t){return` + .block-interactivity-`.concat(t,` {pointer-events: none;} + .allow-interactivity-`).concat(t,` {pointer-events: all;} +`)},KP=0,oc=[];function qP(t){var e=b.useRef([]),n=b.useRef([0,0]),r=b.useRef(),a=b.useState(KP++)[0],i=b.useState(lk)[0],o=b.useRef(t);b.useEffect(function(){o.current=t},[t]),b.useEffect(function(){if(t.inert){document.body.classList.add("block-interactivity-".concat(a));var N=pP([t.lockRef.current],(t.shards||[]).map(_1),!0).filter(Boolean);return N.forEach(function(w){return w.classList.add("allow-interactivity-".concat(a))}),function(){document.body.classList.remove("block-interactivity-".concat(a)),N.forEach(function(w){return w.classList.remove("allow-interactivity-".concat(a))})}}},[t.inert,t.lockRef.current,t.shards]);var c=b.useCallback(function(N,w){if("touches"in N&&N.touches.length===2||N.type==="wheel"&&N.ctrlKey)return!o.current.allowPinchZoom;var k=wh(N),E=n.current,C="deltaX"in N?N.deltaX:E[0]-k[0],R="deltaY"in N?N.deltaY:E[1]-k[1],O,q=N.target,$=Math.abs(C)>Math.abs(R)?"h":"v";if("touches"in N&&$==="h"&&q.type==="range")return!1;var V=window.getSelection(),I=V&&V.anchorNode,te=I?I===q||I.contains(q):!1;if(te)return!1;var Q=L1($,q);if(!Q)return!0;if(Q?O=$:(O=$==="v"?"h":"v",Q=L1($,q)),!Q)return!1;if(!r.current&&"changedTouches"in N&&(C||R)&&(r.current=O),!O)return!0;var B=r.current||O;return HP(B,w,N,B==="h"?C:R)},[]),u=b.useCallback(function(N){var w=N;if(!(!oc.length||oc[oc.length-1]!==i)){var k="deltaY"in w?D1(w):wh(w),E=e.current.filter(function(O){return O.name===w.type&&(O.target===w.target||w.target===O.shadowParent)&&UP(O.delta,k)})[0];if(E&&E.should){w.cancelable&&w.preventDefault();return}if(!E){var C=(o.current.shards||[]).map(_1).filter(Boolean).filter(function(O){return O.contains(w.target)}),R=C.length>0?c(w,C[0]):!o.current.noIsolation;R&&w.cancelable&&w.preventDefault()}}},[]),h=b.useCallback(function(N,w,k,E){var C={name:N,delta:w,target:k,should:E,shadowParent:GP(k)};e.current.push(C),setTimeout(function(){e.current=e.current.filter(function(R){return R!==C})},1)},[]),f=b.useCallback(function(N){n.current=wh(N),r.current=void 0},[]),m=b.useCallback(function(N){h(N.type,D1(N),N.target,c(N,t.lockRef.current))},[]),x=b.useCallback(function(N){h(N.type,wh(N),N.target,c(N,t.lockRef.current))},[]);b.useEffect(function(){return oc.push(i),t.setCallbacks({onScrollCapture:m,onWheelCapture:m,onTouchMoveCapture:x}),document.addEventListener("wheel",u,ic),document.addEventListener("touchmove",u,ic),document.addEventListener("touchstart",f,ic),function(){oc=oc.filter(function(N){return N!==i}),document.removeEventListener("wheel",u,ic),document.removeEventListener("touchmove",u,ic),document.removeEventListener("touchstart",f,ic)}},[]);var y=t.removeScrollBar,v=t.inert;return b.createElement(b.Fragment,null,v?b.createElement(i,{styles:WP(a)}):null,y?b.createElement(DP,{noRelative:t.noRelative,gapMode:t.gapMode}):null)}function GP(t){for(var e=null;t!==null;)t instanceof ShadowRoot&&(e=t.host,t=t.host),t=t.parentNode;return e}const JP=jP(ok,qP);var M0=b.forwardRef(function(t,e){return b.createElement(lp,Ta({},t,{ref:e,sideCar:JP}))});M0.classNames=lp.classNames;var QP=function(t){if(typeof document>"u")return null;var e=Array.isArray(t)?t[0]:t;return e.ownerDocument.body},lc=new WeakMap,jh=new WeakMap,kh={},Nx=0,hk=function(t){return t&&(t.host||hk(t.parentNode))},YP=function(t,e){return e.map(function(n){if(t.contains(n))return n;var r=hk(n);return r&&t.contains(r)?r:(console.error("aria-hidden",n,"in not contained inside",t,". Doing nothing"),null)}).filter(function(n){return!!n})},XP=function(t,e,n,r){var a=YP(e,Array.isArray(t)?t:[t]);kh[n]||(kh[n]=new WeakMap);var i=kh[n],o=[],c=new Set,u=new Set(a),h=function(m){!m||c.has(m)||(c.add(m),h(m.parentNode))};a.forEach(h);var f=function(m){!m||u.has(m)||Array.prototype.forEach.call(m.children,function(x){if(c.has(x))f(x);else try{var y=x.getAttribute(r),v=y!==null&&y!=="false",N=(lc.get(x)||0)+1,w=(i.get(x)||0)+1;lc.set(x,N),i.set(x,w),o.push(x),N===1&&v&&jh.set(x,!0),w===1&&x.setAttribute(n,"true"),v||x.setAttribute(r,"true")}catch(k){console.error("aria-hidden: cannot operate on ",x,k)}})};return f(e),c.clear(),Nx++,function(){o.forEach(function(m){var x=lc.get(m)-1,y=i.get(m)-1;lc.set(m,x),i.set(m,y),x||(jh.has(m)||m.removeAttribute(r),jh.delete(m)),y||m.removeAttribute(n)}),Nx--,Nx||(lc=new WeakMap,lc=new WeakMap,jh=new WeakMap,kh={})}},fk=function(t,e,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(t)?t:[t]),a=QP(t);return a?(r.push.apply(r,Array.from(a.querySelectorAll("[aria-live], script"))),XP(r,a,n,"aria-hidden")):function(){return null}},cp="Dialog",[pk]=Oo(cp),[ZP,aa]=pk(cp),mk=t=>{const{__scopeDialog:e,children:n,open:r,defaultOpen:a,onOpenChange:i,modal:o=!0}=t,c=b.useRef(null),u=b.useRef(null),[h,f]=yl({prop:r,defaultProp:a??!1,onChange:i,caller:cp});return s.jsx(ZP,{scope:e,triggerRef:c,contentRef:u,contentId:vo(),titleId:vo(),descriptionId:vo(),open:h,onOpenChange:f,onOpenToggle:b.useCallback(()=>f(m=>!m),[f]),modal:o,children:n})};mk.displayName=cp;var xk="DialogTrigger",eR=b.forwardRef((t,e)=>{const{__scopeDialog:n,...r}=t,a=aa(xk,n),i=Jt(e,a.triggerRef);return s.jsx(wt.button,{type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":P0(a.open),...r,ref:i,onClick:yt(t.onClick,a.onOpenToggle)})});eR.displayName=xk;var A0="DialogPortal",[tR,gk]=pk(A0,{forceMount:void 0}),yk=t=>{const{__scopeDialog:e,forceMount:n,children:r,container:a}=t,i=aa(A0,e);return s.jsx(tR,{scope:e,forceMount:n,children:b.Children.map(r,o=>s.jsx(fu,{present:n||i.open,children:s.jsx(E0,{asChild:!0,container:a,children:o})}))})};yk.displayName=A0;var af="DialogOverlay",bk=b.forwardRef((t,e)=>{const n=gk(af,t.__scopeDialog),{forceMount:r=n.forceMount,...a}=t,i=aa(af,t.__scopeDialog);return i.modal?s.jsx(fu,{present:r||i.open,children:s.jsx(sR,{...a,ref:e})}):null});bk.displayName=af;var nR=Qd("DialogOverlay.RemoveScroll"),sR=b.forwardRef((t,e)=>{const{__scopeDialog:n,...r}=t,a=aa(af,n);return s.jsx(M0,{as:nR,allowPinchZoom:!0,shards:[a.contentRef],children:s.jsx(wt.div,{"data-state":P0(a.open),...r,ref:e,style:{pointerEvents:"auto",...r.style}})})}),bl="DialogContent",vk=b.forwardRef((t,e)=>{const n=gk(bl,t.__scopeDialog),{forceMount:r=n.forceMount,...a}=t,i=aa(bl,t.__scopeDialog);return s.jsx(fu,{present:r||i.open,children:i.modal?s.jsx(rR,{...a,ref:e}):s.jsx(aR,{...a,ref:e})})});vk.displayName=bl;var rR=b.forwardRef((t,e)=>{const n=aa(bl,t.__scopeDialog),r=b.useRef(null),a=Jt(e,n.contentRef,r);return b.useEffect(()=>{const i=r.current;if(i)return fk(i)},[]),s.jsx(Nk,{...t,ref:a,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:yt(t.onCloseAutoFocus,i=>{var o;i.preventDefault(),(o=n.triggerRef.current)==null||o.focus()}),onPointerDownOutside:yt(t.onPointerDownOutside,i=>{const o=i.detail.originalEvent,c=o.button===0&&o.ctrlKey===!0;(o.button===2||c)&&i.preventDefault()}),onFocusOutside:yt(t.onFocusOutside,i=>i.preventDefault())})}),aR=b.forwardRef((t,e)=>{const n=aa(bl,t.__scopeDialog),r=b.useRef(!1),a=b.useRef(!1);return s.jsx(Nk,{...t,ref:e,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:i=>{var o,c;(o=t.onCloseAutoFocus)==null||o.call(t,i),i.defaultPrevented||(r.current||(c=n.triggerRef.current)==null||c.focus(),i.preventDefault()),r.current=!1,a.current=!1},onInteractOutside:i=>{var u,h;(u=t.onInteractOutside)==null||u.call(t,i),i.defaultPrevented||(r.current=!0,i.detail.originalEvent.type==="pointerdown"&&(a.current=!0));const o=i.target;((h=n.triggerRef.current)==null?void 0:h.contains(o))&&i.preventDefault(),i.detail.originalEvent.type==="focusin"&&a.current&&i.preventDefault()}})}),Nk=b.forwardRef((t,e)=>{const{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:a,onCloseAutoFocus:i,...o}=t,c=aa(bl,n),u=b.useRef(null),h=Jt(e,u);return rk(),s.jsxs(s.Fragment,{children:[s.jsx(T0,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:a,onUnmountAutoFocus:i,children:s.jsx(C0,{role:"dialog",id:c.contentId,"aria-describedby":c.descriptionId,"aria-labelledby":c.titleId,"data-state":P0(c.open),...o,ref:h,onDismiss:()=>c.onOpenChange(!1)})}),s.jsxs(s.Fragment,{children:[s.jsx(iR,{titleId:c.titleId}),s.jsx(lR,{contentRef:u,descriptionId:c.descriptionId})]})]})}),I0="DialogTitle",wk=b.forwardRef((t,e)=>{const{__scopeDialog:n,...r}=t,a=aa(I0,n);return s.jsx(wt.h2,{id:a.titleId,...r,ref:e})});wk.displayName=I0;var jk="DialogDescription",kk=b.forwardRef((t,e)=>{const{__scopeDialog:n,...r}=t,a=aa(jk,n);return s.jsx(wt.p,{id:a.descriptionId,...r,ref:e})});kk.displayName=jk;var Sk="DialogClose",Ck=b.forwardRef((t,e)=>{const{__scopeDialog:n,...r}=t,a=aa(Sk,n);return s.jsx(wt.button,{type:"button",...r,ref:e,onClick:yt(t.onClick,()=>a.onOpenChange(!1))})});Ck.displayName=Sk;function P0(t){return t?"open":"closed"}var Tk="DialogTitleWarning",[DV,Ek]=LI(Tk,{contentName:bl,titleName:I0,docsSlug:"dialog"}),iR=({titleId:t})=>{const e=Ek(Tk),n=`\`${e.contentName}\` requires a \`${e.titleName}\` for the component to be accessible for screen reader users. + +If you want to hide the \`${e.titleName}\`, you can wrap it with our VisuallyHidden component. + +For more information, see https://radix-ui.com/primitives/docs/components/${e.docsSlug}`;return b.useEffect(()=>{t&&(document.getElementById(t)||console.error(n))},[n,t]),null},oR="DialogDescriptionWarning",lR=({contentRef:t,descriptionId:e})=>{const r=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${Ek(oR).contentName}}.`;return b.useEffect(()=>{var i;const a=(i=t.current)==null?void 0:i.getAttribute("aria-describedby");e&&a&&(document.getElementById(e)||console.warn(r))},[r,t,e]),null},cR=mk,dR=yk,uR=bk,hR=vk,fR=wk,pR=kk,mR=Ck;function Bt(t){return s.jsx(cR,{"data-slot":"dialog",...t})}function xR(t){return s.jsx(dR,{...t})}const Mk=b.forwardRef(({className:t,...e},n)=>s.jsx(uR,{ref:n,className:Qt("fixed inset-0 z-50 bg-black/50",t),...e}));Mk.displayName="DialogOverlay";const zt=b.forwardRef(({className:t,children:e,showCloseButton:n=!0,...r},a)=>s.jsxs(xR,{children:[s.jsx(Mk,{}),s.jsxs(hR,{ref:a,"aria-describedby":void 0,className:Qt("fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] -translate-x-1/2 -translate-y-1/2 gap-4 rounded-lg border bg-background p-6 shadow-lg",t),...r,children:[e,n&&s.jsxs(mR,{className:"absolute right-4 top-4 rounded-sm opacity-70 hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none",children:[s.jsx(ss,{className:"h-4 w-4"}),s.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));zt.displayName="DialogContent";function Vt({className:t,...e}){return s.jsx("div",{className:Qt("flex flex-col gap-2 text-center sm:text-left",t),...e})}function xn({className:t,...e}){return s.jsx("div",{className:Qt("flex flex-col-reverse gap-2 sm:flex-row sm:justify-end",t),...e})}function Ht(t){return s.jsx(fR,{className:"text-lg font-semibold leading-none",...t})}function of(t){return s.jsx(pR,{className:"text-sm text-muted-foreground",...t})}const gR=Vj("inline-flex items-center justify-center rounded-md border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 transition-colors",{variants:{variant:{default:"border-transparent bg-primary text-primary-foreground",secondary:"border-transparent bg-secondary text-secondary-foreground",destructive:"border-transparent bg-destructive text-white",outline:"text-foreground"}},defaultVariants:{variant:"default"}});function Ue({className:t,variant:e,asChild:n=!1,...r}){const a=n?$j:"span";return s.jsx(a,{className:Qt(gR({variant:e}),t),...r})}var yR=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],bR=yR.reduce((t,e)=>{const n=zj(`Primitive.${e}`),r=b.forwardRef((a,i)=>{const{asChild:o,...c}=a,u=o?n:e;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),s.jsx(u,{...c,ref:i})});return r.displayName=`Primitive.${e}`,{...t,[e]:r}},{}),vR="Label",Ak=b.forwardRef((t,e)=>s.jsx(bR.label,{...t,ref:e,onMouseDown:n=>{var a;n.target.closest("button, input, select, textarea")||((a=t.onMouseDown)==null||a.call(t,n),!n.defaultPrevented&&n.detail>1&&n.preventDefault())}}));Ak.displayName=vR;var Ik=Ak;const ee=b.forwardRef(({className:t,...e},n)=>s.jsx(Ik,{ref:n,className:Qt("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",t),...e}));ee.displayName=Ik.displayName;function R0(t){const e=t+"CollectionProvider",[n,r]=Oo(e),[a,i]=n(e,{collectionRef:{current:null},itemMap:new Map}),o=N=>{const{scope:w,children:k}=N,E=Vs.useRef(null),C=Vs.useRef(new Map).current;return s.jsx(a,{scope:w,itemMap:C,collectionRef:E,children:k})};o.displayName=e;const c=t+"CollectionSlot",u=Qd(c),h=Vs.forwardRef((N,w)=>{const{scope:k,children:E}=N,C=i(c,k),R=Jt(w,C.collectionRef);return s.jsx(u,{ref:R,children:E})});h.displayName=c;const f=t+"CollectionItemSlot",m="data-radix-collection-item",x=Qd(f),y=Vs.forwardRef((N,w)=>{const{scope:k,children:E,...C}=N,R=Vs.useRef(null),O=Jt(w,R),q=i(f,k);return Vs.useEffect(()=>(q.itemMap.set(R,{ref:R,...C}),()=>void q.itemMap.delete(R))),s.jsx(x,{[m]:"",ref:O,children:E})});y.displayName=f;function v(N){const w=i(t+"CollectionConsumer",N);return Vs.useCallback(()=>{const E=w.collectionRef.current;if(!E)return[];const C=Array.from(E.querySelectorAll(`[${m}]`));return Array.from(w.itemMap.values()).sort((q,$)=>C.indexOf(q.ref.current)-C.indexOf($.ref.current))},[w.collectionRef,w.itemMap])}return[{Provider:o,Slot:h,ItemSlot:y},v,r]}var NR=b.createContext(void 0);function dp(t){const e=b.useContext(NR);return t||e||"ltr"}var wx="rovingFocusGroup.onEntryFocus",wR={bubbles:!1,cancelable:!0},pu="RovingFocusGroup",[Ng,Pk,jR]=R0(pu),[kR,Rk]=Oo(pu,[jR]),[SR,CR]=kR(pu),Ok=b.forwardRef((t,e)=>s.jsx(Ng.Provider,{scope:t.__scopeRovingFocusGroup,children:s.jsx(Ng.Slot,{scope:t.__scopeRovingFocusGroup,children:s.jsx(TR,{...t,ref:e})})}));Ok.displayName=pu;var TR=b.forwardRef((t,e)=>{const{__scopeRovingFocusGroup:n,orientation:r,loop:a=!1,dir:i,currentTabStopId:o,defaultCurrentTabStopId:c,onCurrentTabStopIdChange:u,onEntryFocus:h,preventScrollOnEntryFocus:f=!1,...m}=t,x=b.useRef(null),y=Jt(e,x),v=dp(i),[N,w]=yl({prop:o,defaultProp:c??null,onChange:u,caller:pu}),[k,E]=b.useState(!1),C=Co(h),R=Pk(n),O=b.useRef(!1),[q,$]=b.useState(0);return b.useEffect(()=>{const V=x.current;if(V)return V.addEventListener(wx,C),()=>V.removeEventListener(wx,C)},[C]),s.jsx(SR,{scope:n,orientation:r,dir:v,loop:a,currentTabStopId:N,onItemFocus:b.useCallback(V=>w(V),[w]),onItemShiftTab:b.useCallback(()=>E(!0),[]),onFocusableItemAdd:b.useCallback(()=>$(V=>V+1),[]),onFocusableItemRemove:b.useCallback(()=>$(V=>V-1),[]),children:s.jsx(wt.div,{tabIndex:k||q===0?-1:0,"data-orientation":r,...m,ref:y,style:{outline:"none",...t.style},onMouseDown:yt(t.onMouseDown,()=>{O.current=!0}),onFocus:yt(t.onFocus,V=>{const I=!O.current;if(V.target===V.currentTarget&&I&&!k){const te=new CustomEvent(wx,wR);if(V.currentTarget.dispatchEvent(te),!te.defaultPrevented){const Q=R().filter(F=>F.focusable),B=Q.find(F=>F.active),re=Q.find(F=>F.id===N),J=[B,re,...Q].filter(Boolean).map(F=>F.ref.current);_k(J,f)}}O.current=!1}),onBlur:yt(t.onBlur,()=>E(!1))})})}),Lk="RovingFocusGroupItem",Dk=b.forwardRef((t,e)=>{const{__scopeRovingFocusGroup:n,focusable:r=!0,active:a=!1,tabStopId:i,children:o,...c}=t,u=vo(),h=i||u,f=CR(Lk,n),m=f.currentTabStopId===h,x=Pk(n),{onFocusableItemAdd:y,onFocusableItemRemove:v,currentTabStopId:N}=f;return b.useEffect(()=>{if(r)return y(),()=>v()},[r,y,v]),s.jsx(Ng.ItemSlot,{scope:n,id:h,focusable:r,active:a,children:s.jsx(wt.span,{tabIndex:m?0:-1,"data-orientation":f.orientation,...c,ref:e,onMouseDown:yt(t.onMouseDown,w=>{r?f.onItemFocus(h):w.preventDefault()}),onFocus:yt(t.onFocus,()=>f.onItemFocus(h)),onKeyDown:yt(t.onKeyDown,w=>{if(w.key==="Tab"&&w.shiftKey){f.onItemShiftTab();return}if(w.target!==w.currentTarget)return;const k=AR(w,f.orientation,f.dir);if(k!==void 0){if(w.metaKey||w.ctrlKey||w.altKey||w.shiftKey)return;w.preventDefault();let C=x().filter(R=>R.focusable).map(R=>R.ref.current);if(k==="last")C.reverse();else if(k==="prev"||k==="next"){k==="prev"&&C.reverse();const R=C.indexOf(w.currentTarget);C=f.loop?IR(C,R+1):C.slice(R+1)}setTimeout(()=>_k(C))}}),children:typeof o=="function"?o({isCurrentTabStop:m,hasTabStop:N!=null}):o})})});Dk.displayName=Lk;var ER={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function MR(t,e){return e!=="rtl"?t:t==="ArrowLeft"?"ArrowRight":t==="ArrowRight"?"ArrowLeft":t}function AR(t,e,n){const r=MR(t.key,n);if(!(e==="vertical"&&["ArrowLeft","ArrowRight"].includes(r))&&!(e==="horizontal"&&["ArrowUp","ArrowDown"].includes(r)))return ER[r]}function _k(t,e=!1){const n=document.activeElement;for(const r of t)if(r===n||(r.focus({preventScroll:e}),document.activeElement!==n))return}function IR(t,e){return t.map((n,r)=>t[(e+r)%t.length])}var PR=Ok,RR=Dk,up="Tabs",[OR]=Oo(up,[Rk]),zk=Rk(),[LR,O0]=OR(up),$k=b.forwardRef((t,e)=>{const{__scopeTabs:n,value:r,onValueChange:a,defaultValue:i,orientation:o="horizontal",dir:c,activationMode:u="automatic",...h}=t,f=dp(c),[m,x]=yl({prop:r,onChange:a,defaultProp:i??"",caller:up});return s.jsx(LR,{scope:n,baseId:vo(),value:m,onValueChange:x,orientation:o,dir:f,activationMode:u,children:s.jsx(wt.div,{dir:f,"data-orientation":o,...h,ref:e})})});$k.displayName=up;var Fk="TabsList",Bk=b.forwardRef((t,e)=>{const{__scopeTabs:n,loop:r=!0,...a}=t,i=O0(Fk,n),o=zk(n);return s.jsx(PR,{asChild:!0,...o,orientation:i.orientation,dir:i.dir,loop:r,children:s.jsx(wt.div,{role:"tablist","aria-orientation":i.orientation,...a,ref:e})})});Bk.displayName=Fk;var Vk="TabsTrigger",Hk=b.forwardRef((t,e)=>{const{__scopeTabs:n,value:r,disabled:a=!1,...i}=t,o=O0(Vk,n),c=zk(n),u=Kk(o.baseId,r),h=qk(o.baseId,r),f=r===o.value;return s.jsx(RR,{asChild:!0,...c,focusable:!a,active:f,children:s.jsx(wt.button,{type:"button",role:"tab","aria-selected":f,"aria-controls":h,"data-state":f?"active":"inactive","data-disabled":a?"":void 0,disabled:a,id:u,...i,ref:e,onMouseDown:yt(t.onMouseDown,m=>{!a&&m.button===0&&m.ctrlKey===!1?o.onValueChange(r):m.preventDefault()}),onKeyDown:yt(t.onKeyDown,m=>{[" ","Enter"].includes(m.key)&&o.onValueChange(r)}),onFocus:yt(t.onFocus,()=>{const m=o.activationMode!=="manual";!f&&!a&&m&&o.onValueChange(r)})})})});Hk.displayName=Vk;var Uk="TabsContent",Wk=b.forwardRef((t,e)=>{const{__scopeTabs:n,value:r,forceMount:a,children:i,...o}=t,c=O0(Uk,n),u=Kk(c.baseId,r),h=qk(c.baseId,r),f=r===c.value,m=b.useRef(f);return b.useEffect(()=>{const x=requestAnimationFrame(()=>m.current=!1);return()=>cancelAnimationFrame(x)},[]),s.jsx(fu,{present:a||f,children:({present:x})=>s.jsx(wt.div,{"data-state":f?"active":"inactive","data-orientation":c.orientation,role:"tabpanel","aria-labelledby":u,hidden:!x,id:h,tabIndex:0,...o,ref:e,style:{...t.style,animationDuration:m.current?"0s":void 0},children:x&&i})})});Wk.displayName=Uk;function Kk(t,e){return`${t}-trigger-${e}`}function qk(t,e){return`${t}-content-${e}`}var DR=$k,Gk=Bk,Jk=Hk,Qk=Wk;const Ic=DR,vl=b.forwardRef(({className:t,...e},n)=>s.jsx(Gk,{ref:n,className:Qt("inline-flex h-9 items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground",t),...e}));vl.displayName=Gk.displayName;const nn=b.forwardRef(({className:t,...e},n)=>s.jsx(Jk,{ref:n,className:Qt("inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow",t),...e}));nn.displayName=Jk.displayName;const sn=b.forwardRef(({className:t,...e},n)=>s.jsx(Qk,{ref:n,className:Qt("mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",t),...e}));sn.displayName=Qk.displayName;function L0(t){const e=b.useRef({value:t,previous:t});return b.useMemo(()=>(e.current.value!==t&&(e.current.previous=e.current.value,e.current.value=t),e.current.previous),[t])}function D0(t){const[e,n]=b.useState(void 0);return Is(()=>{if(t){n({width:t.offsetWidth,height:t.offsetHeight});const r=new ResizeObserver(a=>{if(!Array.isArray(a)||!a.length)return;const i=a[0];let o,c;if("borderBoxSize"in i){const u=i.borderBoxSize,h=Array.isArray(u)?u[0]:u;o=h.inlineSize,c=h.blockSize}else o=t.offsetWidth,c=t.offsetHeight;n({width:o,height:c})});return r.observe(t,{box:"border-box"}),()=>r.unobserve(t)}else n(void 0)},[t]),e}var hp="Switch",[_R]=Oo(hp),[zR,$R]=_R(hp),Yk=b.forwardRef((t,e)=>{const{__scopeSwitch:n,name:r,checked:a,defaultChecked:i,required:o,disabled:c,value:u="on",onCheckedChange:h,form:f,...m}=t,[x,y]=b.useState(null),v=Jt(e,C=>y(C)),N=b.useRef(!1),w=x?f||!!x.closest("form"):!0,[k,E]=yl({prop:a,defaultProp:i??!1,onChange:h,caller:hp});return s.jsxs(zR,{scope:n,checked:k,disabled:c,children:[s.jsx(wt.button,{type:"button",role:"switch","aria-checked":k,"aria-required":o,"data-state":t2(k),"data-disabled":c?"":void 0,disabled:c,value:u,...m,ref:v,onClick:yt(t.onClick,C=>{E(R=>!R),w&&(N.current=C.isPropagationStopped(),N.current||C.stopPropagation())})}),w&&s.jsx(e2,{control:x,bubbles:!N.current,name:r,value:u,checked:k,required:o,disabled:c,form:f,style:{transform:"translateX(-100%)"}})]})});Yk.displayName=hp;var Xk="SwitchThumb",Zk=b.forwardRef((t,e)=>{const{__scopeSwitch:n,...r}=t,a=$R(Xk,n);return s.jsx(wt.span,{"data-state":t2(a.checked),"data-disabled":a.disabled?"":void 0,...r,ref:e})});Zk.displayName=Xk;var FR="SwitchBubbleInput",e2=b.forwardRef(({__scopeSwitch:t,control:e,checked:n,bubbles:r=!0,...a},i)=>{const o=b.useRef(null),c=Jt(o,i),u=L0(n),h=D0(e);return b.useEffect(()=>{const f=o.current;if(!f)return;const m=window.HTMLInputElement.prototype,y=Object.getOwnPropertyDescriptor(m,"checked").set;if(u!==n&&y){const v=new Event("click",{bubbles:r});y.call(f,n),f.dispatchEvent(v)}},[u,n,r]),s.jsx("input",{type:"checkbox","aria-hidden":!0,defaultChecked:n,...a,tabIndex:-1,ref:c,style:{...a.style,...h,position:"absolute",pointerEvents:"none",opacity:0,margin:0}})});e2.displayName=FR;function t2(t){return t?"checked":"unchecked"}var n2=Yk,BR=Zk;const Ut=b.forwardRef(({className:t,...e},n)=>s.jsx(n2,{className:Qt("peer inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent shadow-sm transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[#38bdac] focus-visible:ring-offset-2 focus-visible:ring-offset-[#0a1628] disabled:cursor-not-allowed disabled:opacity-50 data-[state=unchecked]:bg-gray-600 data-[state=checked]:bg-[#38bdac]",t),...e,ref:n,children:s.jsx(BR,{className:Qt("pointer-events-none block h-4 w-4 rounded-full bg-white shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0")})}));Ut.displayName=n2.displayName;const VR={view_chapter:"浏览章节",purchase:"购买",match:"派对匹配",login:"登录",register:"注册",share:"分享",bind_phone:"绑定手机",bind_wechat:"绑定微信",fill_profile:"完善资料",fill_avatar:"设置头像",visit_page:"访问页面",first_pay:"首次付款",vip_activate:"开通会员",click_super:"点击超级个体",lead_submit:"提交留资",withdraw:"申请提现",referral_bind:"绑定推荐人",card_click:"点击名片",btn_click:"按钮点击",tab_click:"切换标签",nav_click:"导航点击",page_view:"页面浏览",search:"搜索"};function HR(t){return VR[t]||t||"行为"}function UR(t,e){const n=new Set,r=a=>(t[a]??0)>0;return(r("purchase")||r("first_pay")||r("vip_activate"))&&n.add("已付费"),(r("lead_submit")||r("click_super"))&&n.add("高意向"),r("view_chapter")&&n.add("想学习"),r("match")&&n.add("找合伙人"),r("withdraw")&&n.add("有提现行为"),r("referral_bind")&&n.add("推广参与"),(r("fill_profile")||r("fill_avatar")||r("bind_phone"))&&n.add("资料完善中"),e!=null&&e.hasFullBook&&n.add("全书读者"),e!=null&&e.isVip&&n.add("VIP会员"),e!=null&&e.mbti&&/^[EI][NS][FT][JP]$/i.test(e.mbti)&&n.add(String(e.mbti).toUpperCase()),Array.from(n)}function _0({open:t,onClose:e,userId:n,onUserUpdated:r}){var Vr,Ls,Ds,or,br,la;const[a,i]=b.useState(null),[o,c]=b.useState([]),[u,h]=b.useState({}),[f,m]=b.useState([]),[x,y]=b.useState(null),[v,N]=b.useState(null),[w,k]=b.useState(!1),[E,C]=b.useState(!1),[R,O]=b.useState(!1),[q,$]=b.useState("info"),[V,I]=b.useState(""),[te,Q]=b.useState(""),[B,re]=b.useState(""),[ae,J]=b.useState([]),[F,D]=b.useState(""),[P,oe]=b.useState(""),[G,_]=b.useState(""),[U,H]=b.useState(!1),[K,me]=b.useState({isVip:!1,vipExpireDate:"",vipRole:"",vipName:"",vipProject:"",vipContact:"",vipBio:""}),[X,le]=b.useState([]),[de,ve]=b.useState(!1),[ye,Se]=b.useState(""),[Fe,mt]=b.useState(""),[kt,ft]=b.useState(!1),[Dt,Pt]=b.useState(!1),[Rn,yn]=b.useState(null),[Wt,Xt]=b.useState(null),[Sn,Fn]=b.useState(""),[Wn,Mt]=b.useState(""),[pn,bn]=b.useState(""),[ge,Ce]=b.useState(!1),[Be,Ze]=b.useState(null),[St,vt]=b.useState(!1),[L,Ie]=b.useState({}),[xt,Rt]=b.useState([]);b.useEffect(()=>{t&&n&&(vt(!1),$("info"),yn(null),Xt(null),Ze(null),oe(""),_(""),at(),Le("/api/db/vip-roles").then(ie=>{ie!=null&&ie.success&&ie.data&&le(ie.data)}).catch(()=>{}))},[t,n]),b.useEffect(()=>{t&&Le("/api/admin/mbti-avatars").then(ie=>{ie!=null&&ie.avatars&&typeof ie.avatars=="object"?Ie(ie.avatars):Ie({})}).catch(()=>Ie({}))},[t]);const pt=(ie,xe)=>{const It=(ie||"").trim();if(It)return So(It);const $t=(xe||"").trim().toUpperCase();return/^[EI][NS][FT][JP]$/.test($t)?(L[$t]||"").trim():""};async function at(){if(n){k(!0);try{const ie=await Le(`/api/db/users?id=${encodeURIComponent(n)}`);if(ie!=null&&ie.success&&ie.user){const xe=ie.user;i(xe),I(xe.phone||""),Q(xe.wechatId||""),re(xe.nickname||""),Fn(xe.phone||""),Mt(xe.wechatId||""),bn(xe.openId||"");try{J(typeof xe.tags=="string"?JSON.parse(xe.tags||"[]"):[])}catch{J([])}me({isVip:!!(xe.isVip??!1),vipExpireDate:xe.vipExpireDate?String(xe.vipExpireDate).slice(0,10):"",vipRole:String(xe.vipRole??""),vipName:String(xe.vipName??""),vipProject:String(xe.vipProject??""),vipContact:String(xe.vipContact??""),vipBio:String(xe.vipBio??"")})}try{const xe=await Le(`/api/admin/user/track?userId=${encodeURIComponent(n)}&limit=100`);if(xe!=null&&xe.success){h(xe.stats&&typeof xe.stats=="object"?xe.stats:{});const It=xe.tracks||[];c(It.map($t=>({...$t,actionLabel:$t.actionLabel||$t.action,timeAgo:$t.timeAgo||""})))}else h({}),c([])}catch{h({}),c([])}try{const xe=await Le(`/api/db/users/referrals?userId=${encodeURIComponent(n)}`);xe!=null&&xe.success?(m(xe.referrals||[]),y(xe.inboundSource||null)):(m([]),y(null))}catch{m([]),y(null)}try{const xe=await Le(`/api/admin/users/${encodeURIComponent(n)}/balance`);xe!=null&&xe.success&&xe.data?N(xe.data):N(null)}catch{N(null)}try{const xe=await Le(`/api/orders?userId=${encodeURIComponent(n)}&status=paid&pageSize=50`);xe!=null&&xe.success&&xe.orders?Rt(xe.orders):Rt([])}catch{Rt([])}}catch(ie){console.error("Load user detail error:",ie)}finally{k(!1)}}}async function At(){if(!(a!=null&&a.phone)){ne.info("用户未绑定手机号,无法同步");return}C(!0);try{const ie=await Et("/api/ckb/sync",{action:"full_sync",phone:a.phone,userId:a.id});ie!=null&&ie.success?(ne.success("同步成功"),at()):ne.error("同步失败: "+(ie==null?void 0:ie.error))}catch(ie){console.error("Sync CKB error:",ie),ne.error("同步失败")}finally{C(!1)}}async function Kt(){if(a){if(K.isVip&&!K.vipExpireDate.trim()){ne.error("开启 VIP 请填写有效到期日");return}O(!0);try{const ie={id:a.id,phone:V.trim()||void 0,wechatId:te.trim(),nickname:B||void 0,tags:JSON.stringify(ae),isVip:K.isVip,vipExpireDate:K.isVip?K.vipExpireDate:void 0,vipRole:K.vipRole||void 0,vipName:K.vipName||void 0,vipProject:K.vipProject||void 0,vipContact:K.vipContact||void 0,vipBio:K.vipBio||void 0},xe=await Zt("/api/db/users",ie);xe!=null&&xe.success?(ne.success("保存成功"),at(),r==null||r()):ne.error("保存失败: "+(xe==null?void 0:xe.error))}catch(ie){console.error("Save user error:",ie),ne.error("保存失败")}finally{O(!1)}}}const en=()=>{F&&!ae.includes(F)&&(J([...ae,F]),D(""))},ls=ie=>J(ae.filter(xe=>xe!==ie));async function Ws(){if(a){if(!P){ne.error("请输入新密码");return}if(P!==G){ne.error("两次密码不一致");return}if(P.length<6){ne.error("密码至少 6 位");return}H(!0);try{const ie=await Zt("/api/db/users",{id:a.id,password:P});ie!=null&&ie.success?(ne.success("修改成功"),oe(""),_("")):ne.error("修改失败: "+((ie==null?void 0:ie.error)||""))}catch{ne.error("修改失败")}finally{H(!1)}}}async function Fr(){if(!a)return;const ie=parseFloat(ye);if(Number.isNaN(ie)||ie===0){ne.error("请输入有效金额(正数增加、负数扣减)");return}ft(!0);try{const xe=await Et(`/api/admin/users/${a.id}/balance/adjust`,{amount:ie,remark:Fe||void 0});xe!=null&&xe.success?(ne.success("余额已调整"),ve(!1),Se(""),mt(""),at(),r==null||r()):ne.error("调整失败: "+((xe==null?void 0:xe.error)||""))}catch{ne.error("调整失败")}finally{ft(!1)}}async function za(){if(!Sn&&!pn&&!Wn){Xt("请至少输入手机号、微信号或 OpenID 中的一项");return}Pt(!0),Xt(null),yn(null);try{const ie=new URLSearchParams;Sn&&ie.set("phone",Sn),pn&&ie.set("openId",pn),Wn&&ie.set("wechatId",Wn);const xe=await Le(`/api/admin/shensheshou/query?${ie}`);xe!=null&&xe.success&&xe.data?(yn(xe.data),a&&await $a(xe.data)):Xt((xe==null?void 0:xe.error)||"未查询到数据,该用户可能未在神射手收录")}catch(ie){console.error("SSS query error:",ie),Xt("请求失败,请检查神射手接口配置")}finally{Pt(!1)}}async function $a(ie){if(a)try{await Et("/api/admin/shensheshou/enrich",{userId:a.id,phone:Sn||a.phone||"",openId:pn||a.openId||"",wechatId:Wn||a.wechatId||""}),at()}catch(xe){console.error("SSS enrich error:",xe)}}async function Fa(){if(a){Ce(!0),Ze(null);try{const ie=Array.from(new Set(o.filter(Xn=>Xn.action==="view_chapter"||Xn.action==="purchase"||Xn.action==="first_pay").map(Xn=>(Xn.chapterTitle||Xn.target||"").trim()).filter(Boolean))).slice(0,12),xe={viewChapter:u.view_chapter||0,purchase:u.purchase||0,firstPay:u.first_pay||0},It=ie.length>0?`意向章节:${ie.join("、")}`:"",$t={users:[{phone:a.phone||"",name:a.nickname||"",openId:a.openId||"",tags:ae,purchaseIntent:xe,purchaseIntentChapters:ie,remark:It}]},Yn=await Et("/api/admin/shensheshou/ingest",$t);Yn!=null&&Yn.success&&Yn.data?Ze(Yn.data):Ze({error:(Yn==null?void 0:Yn.error)||"推送失败"})}catch(ie){console.error("SSS ingest error:",ie),Ze({error:"请求失败"})}finally{Ce(!1)}}}const oa=ie=>{const It={view_chapter:rr,purchase:Ld,match:_n,login:xi,register:xi,share:Ea,bind_phone:m1,bind_wechat:jM,fill_profile:Dd,fill_avatar:xi,visit_page:ea,first_pay:Ld,vip_activate:wc,click_super:_n,lead_submit:m1,withdraw:mg,referral_bind:Ea,card_click:xi,btn_click:ji,tab_click:ea,nav_click:ea,page_view:ea,search:ea}[ie]||hg;return s.jsx(It,{className:"w-4 h-4"})};function Br(ie){const xe=String(ie||"").trim();return xe.length>22&&/^[a-zA-Z0-9_-]+$/.test(xe)}const yr=b.useMemo(()=>UR(u,a),[u,a]);function ir(){const ie=[...ae];for(const xe of yr)ie.includes(xe)||ie.push(xe);J(ie),ne.success("已将旅程推断标签合并到已选")}return t?s.jsxs(s.Fragment,{children:[s.jsx(Bt,{open:t,onOpenChange:()=>e(),children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-4xl max-h-[92vh] overflow-hidden flex flex-col p-4 sm:p-5",children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(xi,{className:"w-5 h-5 text-[#38bdac]"}),"用户详情",(a==null?void 0:a.phone)&&s.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0 ml-2",children:"已绑定手机"}),(a==null?void 0:a.isVip)&&s.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 border-0",children:"VIP"})]})}),w?s.jsxs("div",{className:"flex items-center justify-center py-20",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):a?s.jsxs("div",{className:"flex flex-col min-h-0 flex-1 overflow-hidden",children:[s.jsxs("div",{className:"flex flex-col sm:flex-row gap-2.5 p-2.5 bg-[#0a1628] rounded-lg mb-2 shrink-0",children:[s.jsxs("div",{className:"flex gap-2.5 min-w-0 flex-1",children:[s.jsx("div",{className:"w-11 h-11 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-lg text-[#38bdac] shrink-0",children:pt(a.avatar,a.mbti)&&!St?s.jsx("img",{src:pt(a.avatar,a.mbti),className:"w-full h-full rounded-full object-cover",alt:"",onError:()=>vt(!0)}):((Vr=a.nickname)==null?void 0:Vr.charAt(0))||"?"}),s.jsxs("div",{className:"min-w-0 flex-1",children:[s.jsxs("div",{className:"flex items-center gap-1.5 flex-wrap",children:[s.jsx("h3",{className:"text-base font-bold text-white leading-tight",children:a.nickname}),a.isAdmin&&s.jsx(Ue,{className:"bg-purple-500/20 text-purple-400 border-0 text-[10px] py-0",children:"管理员"}),a.hasFullBook&&s.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0 text-[10px] py-0",children:"全书已购"}),a.vipRole&&s.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 border-0 text-[10px] py-0",children:a.vipRole})]}),a.referralCode&&s.jsxs("p",{className:"text-[10px] text-gray-500 mt-0.5",children:["推荐码 ",s.jsx("code",{className:"text-[#38bdac]",children:a.referralCode})]}),s.jsxs("div",{className:"mt-1 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-1.5 text-[11px]",children:[s.jsxs("div",{className:"px-2 py-1 rounded bg-[#162840] border border-gray-700/50",children:[s.jsx("span",{className:"text-gray-500",children:"昵称"}),s.jsx("p",{className:"text-white truncate",children:B||a.nickname||"—"})]}),s.jsxs("div",{className:"px-2 py-1 rounded bg-[#162840] border border-gray-700/50",children:[s.jsx("span",{className:"text-gray-500",children:"手机号"}),s.jsx("p",{className:"text-white truncate",children:V||"—"})]}),s.jsxs("div",{className:"px-2 py-1 rounded bg-[#162840] border border-gray-700/50",children:[s.jsx("span",{className:"text-gray-500",children:"微信标识"}),s.jsx("p",{className:"text-white truncate",children:te||"—"})]}),s.jsxs("div",{className:"px-2 py-1 rounded bg-[#162840] border border-gray-700/50",children:[s.jsx("span",{className:"text-gray-500",children:"画像"}),s.jsx("p",{className:"text-[#38bdac] truncate",children:[a.region,a.industry,a.position,a.mbti?`MBTI ${a.mbti}`:""].filter(Boolean).join(" · ")||"未完善"})]})]})]})]}),s.jsxs("div",{className:"grid grid-cols-2 sm:grid-cols-2 gap-1.5 shrink-0 sm:w-[220px]",children:[s.jsxs("div",{className:"rounded-md bg-[#162840] px-2 py-1.5 border border-gray-700/40",children:[s.jsx("p",{className:"text-[9px] text-gray-500 uppercase tracking-wide",children:"累计佣金"}),s.jsxs("p",{className:"text-sm font-bold text-[#38bdac] leading-tight",children:["¥",(a.earnings??0).toFixed(2)]}),s.jsx("p",{className:"text-[9px] text-gray-600",children:"推广/分佣入账"})]}),s.jsxs("div",{className:"rounded-md bg-[#162840] px-2 py-1.5 border border-gray-700/40",children:[s.jsx("p",{className:"text-[9px] text-gray-500",children:"待提现"}),s.jsxs("p",{className:"text-sm font-bold text-yellow-400 leading-tight",children:["¥",(a.pendingEarnings??0).toFixed(2)]}),s.jsx("p",{className:"text-[9px] text-gray-600",children:"未打款部分"})]}),s.jsxs("div",{className:"rounded-md bg-[#162840] px-2 py-1.5 border border-gray-700/40",children:[s.jsxs("div",{className:"flex items-center justify-between gap-1",children:[s.jsx("p",{className:"text-[9px] text-gray-500",children:"账户余额"}),s.jsx(Y,{type:"button",size:"sm",variant:"ghost",className:"h-5 px-1 text-[9px] text-[#38bdac] hover:bg-[#38bdac]/10",onClick:()=>{Se(""),mt(""),ve(!0)},children:"调整"})]}),s.jsxs("p",{className:"text-sm font-bold text-white leading-tight",children:["¥",((v==null?void 0:v.balance)??0).toFixed(2)]}),s.jsx("p",{className:"text-[9px] text-gray-600",children:"可消费/抵扣"})]}),s.jsxs("div",{className:"rounded-md bg-[#162840] px-2 py-1.5 border border-gray-700/40",children:[s.jsx("p",{className:"text-[9px] text-gray-500",children:"推荐人数"}),s.jsx("p",{className:"text-sm font-bold text-white leading-tight",children:a.referralCount??0}),s.jsx("p",{className:"text-[9px] text-gray-600",children:a.createdAt?`注册 ${new Date(a.createdAt).toLocaleDateString()}`:"—"})]})]})]}),s.jsxs(Ic,{value:q,onValueChange:$,className:"flex-1 flex flex-col min-h-0 overflow-hidden",children:[s.jsxs(vl,{className:"bg-[#0a1628] border border-gray-700/50 p-0.5 mb-2 flex-wrap h-auto gap-0.5 shrink-0",children:[s.jsx(nn,{value:"info",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-[11px] px-2 py-1 h-7",children:"用户信息"}),s.jsxs(nn,{value:"journey",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-[11px] px-2 py-1 h-7",children:[s.jsx(ea,{className:"w-3 h-3 mr-0.5"}),"旅程与轨迹"]}),s.jsx(nn,{value:"relations",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-[11px] px-2 py-1 h-7",children:"关系链路"}),s.jsx(nn,{value:"tags",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-[11px] px-2 py-1 h-7",children:"标签体系"})]}),s.jsxs(sn,{value:"info",className:"flex-1 min-h-0 overflow-y-auto space-y-2 pr-0.5",children:[s.jsxs("details",{className:"rounded-lg bg-[#0a1628] border border-gray-700/40 p-2 text-[11px] group",children:[s.jsxs("summary",{className:"cursor-pointer text-gray-400 select-none list-none flex items-center gap-1",children:[s.jsx("span",{className:"group-open:text-[#38bdac]",children:"技术标识"}),s.jsx("span",{className:"text-gray-600",children:"(用户ID / OpenID,默认折叠)"})]}),s.jsxs("div",{className:"mt-2 space-y-1.5 text-gray-300 font-mono text-[10px] break-all border-t border-gray-700/30 pt-2",children:[s.jsxs("p",{children:[s.jsx("span",{className:"text-gray-500 not-italic font-sans",children:"用户ID"})," ",a.id]}),s.jsxs("p",{children:[s.jsx("span",{className:"text-gray-500 not-italic font-sans",children:"OpenID"})," ",a.openId||"—"]}),s.jsx("p",{className:"text-gray-500 not-italic font-sans leading-snug",children:"OpenID 为微信用户标识;下方「微信标识」为微信号/wxid,供存客宝归属,与 OpenID 不同。"})]})]}),s.jsxs("div",{className:"grid grid-cols-1 sm:grid-cols-3 gap-2",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-400 text-[11px]",children:"昵称"}),s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-8 text-xs",placeholder:"昵称",value:B,onChange:ie=>re(ie.target.value)})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-400 text-[11px]",children:"手机号(可改,点底部保存生效)"}),s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-8 text-xs",placeholder:"11 位手机号",value:V,onChange:ie=>I(ie.target.value)})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-400 text-[11px]",children:"微信标识(微信号/wxid,非 OpenID)"}),s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-8 text-xs",placeholder:"如 wxid_xxx 或自定义微信号",value:te,onChange:ie=>Q(ie.target.value)})]})]}),(a.region||a.industry||a.position||a.mbti)&&s.jsxs("div",{className:"flex flex-wrap gap-1.5 text-[11px]",children:[a.region&&s.jsxs("span",{className:"px-2 py-0.5 rounded bg-[#162840] text-gray-300",children:[s.jsx(Lj,{className:"w-3 h-3 inline mr-0.5"}),a.region]}),a.industry&&s.jsxs("span",{className:"px-2 py-0.5 rounded bg-[#162840] text-gray-300",children:["行业 ",a.industry]}),a.position&&s.jsxs("span",{className:"px-2 py-0.5 rounded bg-[#162840] text-gray-300",children:["职位 ",a.position]}),a.mbti&&s.jsxs("span",{className:"px-2 py-0.5 rounded bg-[#38bdac]/15 text-[#38bdac]",children:["MBTI ",a.mbti]})]}),s.jsxs("div",{className:"p-2 rounded-lg bg-[#0a1628] border border-amber-500/25",children:[s.jsxs("div",{className:"flex items-center justify-between gap-2",children:[s.jsxs("div",{className:"flex items-center gap-1.5 min-w-0",children:[s.jsx(wc,{className:"w-3.5 h-3.5 text-amber-400 shrink-0"}),s.jsx("span",{className:"text-white text-xs font-medium",children:"超级个体"}),a.isVip&&s.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 border-0 text-[10px] py-0 shrink-0",children:a.vipRole||"VIP"})]}),s.jsx(Ut,{className:"scale-90",checked:K.isVip,onCheckedChange:ie=>me(xe=>({...xe,isVip:ie}))})]}),K.isVip&&s.jsxs("div",{className:"grid grid-cols-2 sm:grid-cols-3 gap-1.5 mt-2",children:[s.jsxs("div",{className:"space-y-0.5",children:[s.jsx(ee,{className:"text-gray-500 text-[10px]",children:"到期日"}),s.jsx(ce,{type:"date",className:"bg-[#162840] border-gray-700 text-white h-7 text-xs",value:K.vipExpireDate,onChange:ie=>me(xe=>({...xe,vipExpireDate:ie.target.value}))})]}),s.jsxs("div",{className:"space-y-0.5",children:[s.jsx(ee,{className:"text-gray-500 text-[10px]",children:"角色"}),s.jsxs("select",{className:"w-full bg-[#162840] border border-gray-700 text-white rounded px-1.5 h-7 text-xs",value:K.vipRole,onChange:ie=>me(xe=>({...xe,vipRole:ie.target.value})),children:[s.jsx("option",{value:"",children:"请选择"}),X.map(ie=>s.jsx("option",{value:ie.name,children:ie.name},ie.id))]})]}),s.jsxs("div",{className:"space-y-0.5",children:[s.jsx(ee,{className:"text-gray-500 text-[10px]",children:"展示名"}),s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-7 text-xs",placeholder:"展示名",value:K.vipName,onChange:ie=>me(xe=>({...xe,vipName:ie.target.value}))})]}),s.jsxs("div",{className:"space-y-0.5",children:[s.jsx(ee,{className:"text-gray-500 text-[10px]",children:"项目"}),s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-7 text-xs",placeholder:"项目",value:K.vipProject,onChange:ie=>me(xe=>({...xe,vipProject:ie.target.value}))})]}),s.jsxs("div",{className:"space-y-0.5",children:[s.jsx(ee,{className:"text-gray-500 text-[10px]",children:"联系方式"}),s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-7 text-xs",placeholder:"微信/手机",value:K.vipContact,onChange:ie=>me(xe=>({...xe,vipContact:ie.target.value}))})]}),s.jsxs("div",{className:"space-y-0.5 sm:col-span-2",children:[s.jsx(ee,{className:"text-gray-500 text-[10px]",children:"简介"}),s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-7 text-xs",placeholder:"简短介绍",value:K.vipBio,onChange:ie=>me(xe=>({...xe,vipBio:ie.target.value}))})]})]})]}),s.jsxs("div",{className:"p-2 rounded-lg bg-[#0a1628] border border-[#38bdac]/20",children:[s.jsxs("div",{className:"flex items-center gap-1.5 mb-1.5",children:[s.jsx(ji,{className:"w-3.5 h-3.5 text-[#38bdac]"}),s.jsx("span",{className:"text-white text-xs font-medium",children:"外部资料 · 神射手 / 存客宝(与上方基础信息联动)"})]}),s.jsxs("div",{className:"grid grid-cols-3 gap-1.5 mb-1.5",children:[s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-7 text-xs",placeholder:"查:手机",value:Sn,onChange:ie=>Fn(ie.target.value)}),s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-7 text-xs",placeholder:"查:微信号",value:Wn,onChange:ie=>Mt(ie.target.value)}),s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-7 text-xs",placeholder:"查:OpenID",value:pn,onChange:ie=>bn(ie.target.value)})]}),s.jsxs("div",{className:"flex flex-wrap gap-1",children:[s.jsxs(Y,{size:"sm",className:"h-7 text-[11px] px-2 bg-[#38bdac] hover:bg-[#2da396]",onClick:za,disabled:Dt,children:[Dt?s.jsx(Ve,{className:"w-3 h-3 animate-spin"}):s.jsx(Aa,{className:"w-3 h-3 mr-0.5"}),"查询回填"]}),s.jsx(Y,{size:"sm",variant:"outline",className:"h-7 text-[11px] px-2 border-purple-500/40 text-purple-300",onClick:Fa,disabled:ge||!a.phone,children:ge?"推送…":"推神射手"}),s.jsx(Y,{size:"sm",variant:"outline",className:"h-7 text-[11px] px-2",onClick:At,disabled:E||!a.phone,children:E?"同步…":"存客宝同步"})]}),a.ckbSyncedAt&&s.jsxs("p",{className:"text-[10px] text-gray-500 mt-1",children:["最近存客宝同步:",new Date(a.ckbSyncedAt).toLocaleString()]}),Wt&&s.jsx("p",{className:"mt-1 text-red-400 text-[11px]",children:Wt}),Rn&&s.jsxs("div",{className:"mt-1.5 grid grid-cols-2 gap-1.5",children:[s.jsxs("div",{className:"p-1.5 bg-[#162840] rounded text-[11px]",children:[s.jsx("span",{className:"text-gray-500",children:"RFM"})," ",s.jsx("span",{className:"text-[#38bdac] font-semibold",children:Rn.rfm_score??"—"})]}),s.jsxs("div",{className:"p-1.5 bg-[#162840] rounded text-[11px]",children:[s.jsx("span",{className:"text-gray-500",children:"等级"})," ",s.jsx("span",{className:"text-white font-semibold",children:Rn.user_level??"—"})]})]}),Be&&s.jsx("p",{className:"mt-1 text-[11px]",children:Be.error?s.jsx("span",{className:"text-red-400",children:String(Be.error)}):s.jsx("span",{className:"text-green-400",children:"推送成功"})})]}),s.jsxs("div",{className:"p-2 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[s.jsxs("div",{className:"flex items-center gap-1.5 mb-1.5",children:[s.jsx(mg,{className:"w-3.5 h-3.5 text-yellow-400"}),s.jsx("span",{className:"text-white text-xs font-medium",children:"修改密码"})]}),s.jsxs("div",{className:"flex flex-col sm:flex-row gap-1.5 sm:items-center",children:[s.jsx(ce,{type:"password",className:"bg-[#162840] border-gray-700 text-white h-7 text-xs flex-1",placeholder:"新密码 ≥6 位",value:P,onChange:ie=>oe(ie.target.value)}),s.jsx(ce,{type:"password",className:"bg-[#162840] border-gray-700 text-white h-7 text-xs flex-1",placeholder:"确认密码",value:G,onChange:ie=>_(ie.target.value)}),s.jsx(Y,{size:"sm",className:"h-7 text-[11px] shrink-0 bg-yellow-500/20 text-yellow-300 border border-yellow-500/35 hover:bg-yellow-500/30",onClick:Ws,disabled:U||!P||!G,children:U?"保存中":"确认修改"})]})]})]}),s.jsxs(sn,{value:"journey",className:"flex-1 min-h-0 overflow-y-auto space-y-2 pr-0.5",children:[xt.length>0&&s.jsxs("div",{className:"p-2 bg-[#0a1628] rounded-lg border border-amber-500/20",children:[s.jsxs("div",{className:"flex items-center gap-1.5 mb-1.5",children:[s.jsx(Ld,{className:"w-3.5 h-3.5 text-amber-400"}),s.jsxs("span",{className:"text-white text-xs font-medium",children:["购买清单(",xt.length," 笔)"]})]}),s.jsx("div",{className:"space-y-1 max-h-[120px] overflow-y-auto",children:xt.map((ie,xe)=>s.jsxs("div",{className:"flex items-center justify-between p-1.5 bg-[#162840] rounded text-[11px]",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsx("span",{className:"text-amber-300",children:ie.productType==="fullbook"||ie.productType==="vip"?"全书/VIP":`章节 ${ie.productId||""}`}),s.jsxs("span",{className:"text-gray-500 ml-2",children:["¥",Number(ie.amount||0).toFixed(2)]})]}),s.jsx("span",{className:"text-gray-500 text-[10px] shrink-0",children:ie.createdAt?new Date(ie.createdAt).toLocaleString("zh-CN"):""})]},ie.orderSn||xe))})]}),s.jsxs("div",{className:"p-2 bg-[#0a1628] rounded-lg flex flex-col gap-1.5 text-[11px]",children:[s.jsxs("div",{className:"flex items-center gap-1.5 text-gray-400",children:[s.jsx(ea,{className:"w-3.5 h-3.5 text-[#38bdac] shrink-0"}),s.jsxs("span",{children:["全站埋点共 ",o.length," 条;用于 RFM 与「标签体系」旅程推断"]})]}),Object.keys(u).length>0&&s.jsx("div",{className:"flex flex-wrap gap-1 pt-1 border-t border-gray-700/40",children:Object.entries(u).sort((ie,xe)=>xe[1]-ie[1]).map(([ie,xe])=>s.jsxs(Ue,{variant:"outline",className:"text-[10px] border-gray-600 text-gray-300 bg-[#162840] py-0 h-5",children:[HR(ie)," ×",xe]},ie))})]}),s.jsx("div",{className:"space-y-1.5",children:o.length>0?o.map((ie,xe)=>s.jsxs("div",{className:"flex items-start gap-2 p-2 bg-[#0a1628] rounded-lg",children:[s.jsxs("div",{className:"flex flex-col items-center shrink-0",children:[s.jsx("div",{className:"w-7 h-7 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-[#38bdac]",children:oa(ie.action)}),xe0?((x==null?void 0:x.visits)||[]).map((ie,xe)=>s.jsxs("div",{className:"flex items-center justify-between p-1.5 bg-[#162840] rounded text-xs",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsxs("p",{className:"text-white truncate",children:["第 ",ie.seq||xe+1," 次 · ",ie.referrerNickname||"微信用户",ie.referrerId?`(${ie.referrerId})`:""]}),ie.page?s.jsx("p",{className:"text-gray-500 text-[10px] truncate",children:ie.page}):null]}),s.jsx("span",{className:"text-gray-500 text-[10px] shrink-0",children:ie.visitedAt?new Date(ie.visitedAt).toLocaleString():""})]},`${ie.referrerId||"unknown"}_${xe}`)):s.jsx("p",{className:"text-gray-500 text-sm text-center py-2",children:"暂无来源点击记录"})})]}),s.jsxs("div",{className:"p-2 bg-[#0a1628] rounded-lg",children:[s.jsxs("div",{className:"flex items-center justify-between mb-2",children:[s.jsxs("div",{className:"flex items-center gap-1.5",children:[s.jsx(Ea,{className:"w-3.5 h-3.5 text-[#38bdac]"}),s.jsx("span",{className:"text-white text-sm font-medium",children:"推荐的用户"})]}),s.jsxs(Ue,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0 text-[10px]",children:["共 ",f.length," 人"]})]}),s.jsx("div",{className:"space-y-1 max-h-[min(280px,40vh)] overflow-y-auto",children:f.length>0?f.map((ie,xe)=>{var $t;const It=ie;return s.jsxs("div",{className:"flex items-center justify-between p-1.5 bg-[#162840] rounded text-xs",children:[s.jsxs("div",{className:"flex items-center gap-1.5 min-w-0",children:[s.jsx("div",{className:"w-6 h-6 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-[10px] text-[#38bdac] shrink-0",children:(($t=It.nickname)==null?void 0:$t.charAt(0))||"?"}),s.jsx("span",{className:"text-white truncate",children:It.nickname})]}),s.jsxs("div",{className:"flex items-center gap-1.5 shrink-0",children:[It.status==="vip"&&s.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0 text-[10px] py-0",children:"已购"}),s.jsx("span",{className:"text-gray-500 text-[10px]",children:It.createdAt?new Date(It.createdAt).toLocaleDateString():""})]})]},It.id||xe)}):s.jsx("p",{className:"text-gray-500 text-sm text-center py-3",children:"暂无推荐用户"})})]})]}),s.jsxs(sn,{value:"tags",className:"flex-1 min-h-0 overflow-y-auto space-y-3 pr-0.5",children:[s.jsxs("div",{className:"p-2.5 bg-[#0a1628] rounded-lg",children:[s.jsxs("div",{className:"flex items-center gap-2 mb-2 flex-wrap",children:[s.jsx(Dd,{className:"w-4 h-4 text-[#38bdac]"}),s.jsx("span",{className:"text-white text-sm font-medium",children:"用户标签"}),s.jsx("span",{className:"text-gray-500 text-[11px]",children:"《一场 Soul 的创业实验》维度"})]}),s.jsxs("div",{className:"mb-2 p-2 bg-[#38bdac]/5 border border-[#38bdac]/20 rounded-lg flex items-start gap-2 text-[11px] text-gray-400",children:[s.jsx(Ej,{className:"w-3.5 h-3.5 text-[#38bdac] shrink-0 mt-0.5"}),"预设可点选;下方「旅程推断」由轨迹+资料自动算出,可一键并入已选后点弹窗底部保存。"]}),s.jsxs("div",{className:"mb-3 p-2 rounded-lg bg-[#162840]/80 border border-cyan-500/20",children:[s.jsxs("div",{className:"flex flex-wrap items-center justify-between gap-2 mb-1.5",children:[s.jsx("span",{className:"text-cyan-300/90 text-xs font-medium",children:"旅程推断标签"}),s.jsx(Y,{type:"button",size:"sm",variant:"outline",className:"h-7 text-[11px] border-cyan-500/40 text-cyan-200 hover:bg-cyan-500/10",disabled:yr.length===0,onClick:ir,children:"合并到已选"})]}),yr.length>0?s.jsx("div",{className:"flex flex-wrap gap-1",children:yr.map(ie=>s.jsxs(Ue,{variant:"outline",className:`text-[10px] py-0 h-5 border-cyan-500/30 ${ae.includes(ie)?"bg-cyan-500/15 text-cyan-200":"text-gray-300"}`,children:[ae.includes(ie)?"✓ ":"",ie]},ie))}):s.jsx("p",{className:"text-[11px] text-gray-500",children:"暂无推断(无轨迹或行为未命中规则)"})]}),s.jsx("div",{className:"mb-3 space-y-2",children:[{category:"身份类型",tags:["创业者","打工人","自由职业","学生","投资人","合伙人"]},{category:"行业背景",tags:["电商","内容","传统行业","科技/AI","金融","教育","餐饮"]},{category:"痛点标签",tags:["找资源","找方向","找合伙人","想赚钱","想学习","找情感出口"]},{category:"付费意愿",tags:["高意向","已付费","观望中","薅羊毛"]},{category:"MBTI",tags:["ENTJ","INTJ","ENFP","INFP","ENTP","INTP","ESTJ","ISFJ"]}].map(ie=>s.jsxs("div",{children:[s.jsx("p",{className:"text-gray-500 text-[11px] mb-1",children:ie.category}),s.jsx("div",{className:"flex flex-wrap gap-1",children:ie.tags.map(xe=>s.jsxs("button",{type:"button",onClick:()=>{ae.includes(xe)?ls(xe):J([...ae,xe])},className:`px-1.5 py-0.5 rounded text-[11px] border transition-all ${ae.includes(xe)?"bg-[#38bdac]/20 border-[#38bdac]/50 text-[#38bdac]":"bg-transparent border-gray-700 text-gray-500 hover:border-gray-500 hover:text-gray-300"}`,children:[ae.includes(xe)?"✓ ":"",xe]},xe))})]},ie.category))}),s.jsxs("div",{className:"border-t border-gray-700/50 pt-2",children:[s.jsx("p",{className:"text-gray-500 text-[11px] mb-1.5",children:"已选标签(需保存修改写入库)"}),s.jsxs("div",{className:"flex flex-wrap gap-1.5 mb-2 min-h-[28px]",children:[ae.map((ie,xe)=>s.jsxs(Ue,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0 pr-1 text-[11px] py-0",children:[ie,s.jsx("button",{type:"button",onClick:()=>ls(ie),className:"ml-1 hover:text-red-400",children:s.jsx(ss,{className:"w-3 h-3"})})]},xe)),ae.length===0&&s.jsx("span",{className:"text-gray-600 text-xs",children:"暂未选择"})]}),s.jsxs("div",{className:"flex gap-1.5",children:[s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white flex-1 h-8 text-xs",placeholder:"自定义标签,回车添加",value:F,onChange:ie=>D(ie.target.value),onKeyDown:ie=>ie.key==="Enter"&&en()}),s.jsx(Y,{onClick:en,className:"bg-[#38bdac] hover:bg-[#2da396] h-8 text-xs px-3",children:"添加"})]})]})]}),(()=>{const ie=a.tags||a.ckbTags||"";let xe=[];try{const $t=typeof ie=="string"?JSON.parse(ie||"[]"):[];xe=Array.isArray($t)?$t:typeof ie=="string"?ie.split(","):[]}catch{xe=typeof ie=="string"?ie.split(","):[]}const It=xe.map($t=>String($t).trim()).filter(Boolean);return It.length===0?null:s.jsxs("div",{className:"p-2.5 bg-[#0a1628] rounded-lg",children:[s.jsxs("div",{className:"flex items-center gap-2 mb-1.5",children:[s.jsx(Dd,{className:"w-3.5 h-3.5 text-purple-400"}),s.jsx("span",{className:"text-white text-sm font-medium",children:"存客宝标签"})]}),s.jsx("div",{className:"flex flex-wrap gap-1",children:It.map(($t,Yn)=>s.jsx(Ue,{className:"bg-purple-500/20 text-purple-400 border-0 text-[11px] py-0",children:$t},Yn))})]})})()]})]}),s.jsxs("div",{className:"flex justify-end gap-2 pt-3 border-t border-gray-700 mt-3 shrink-0",children:[s.jsxs(Y,{variant:"outline",onClick:e,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(ss,{className:"w-4 h-4 mr-2"}),"关闭"]}),s.jsxs(Y,{onClick:Kt,disabled:R,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),R?"保存中...":"保存修改"]})]})]}):s.jsx("div",{className:"text-center py-12 text-gray-500",children:"用户不存在"})]})}),s.jsx(Bt,{open:de,onOpenChange:ve,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white",showCloseButton:!0,children:[s.jsx(Vt,{children:s.jsx(Ht,{children:"调整余额"})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsxs("div",{children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"调整金额(元)"}),s.jsx(ce,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white mt-1",placeholder:"正数增加,负数扣减,如 10 或 -5",value:ye,onChange:ie=>Se(ie.target.value)})]}),s.jsxs("div",{children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"备注(可选)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white mt-1",placeholder:"如:活动补偿",value:Fe,onChange:ie=>mt(ie.target.value)})]})]}),s.jsxs("div",{className:"flex justify-end gap-2",children:[s.jsx(Y,{variant:"outline",onClick:()=>ve(!1),className:"border-gray-600 text-gray-300",children:"取消"}),s.jsx(Y,{onClick:Fr,disabled:kt,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:kt?"提交中...":"确认调整"})]})]})})]}):null}function WR(){const t=La(),[e,n]=b.useState(!0),[r,a]=b.useState(!0),[i,o]=b.useState(!0),[c,u]=b.useState([]),[h,f]=b.useState([]),[m,x]=b.useState(0),[y,v]=b.useState(0),[N,w]=b.useState(0),[k,E]=b.useState(0),[C,R]=b.useState(null),[O,q]=b.useState(null),[$,V]=b.useState(!1),[I,te]=b.useState(0),[Q,B]=b.useState(!1),[re,ae]=b.useState(null),[J,F]=b.useState("overview"),[D,P]=b.useState([]),[oe,G]=b.useState(!1),[_,U]=b.useState("today"),[H,K]=b.useState(null),[me,X]=b.useState(!1),[le,de]=b.useState(!0),[ve,ye]=b.useState(null),[Se,Fe]=b.useState(null),[mt,kt]=b.useState([]),ft=ge=>{const Ce=ge;if((Ce==null?void 0:Ce.status)===401)R("登录已过期,请重新登录");else{if((Ce==null?void 0:Ce.name)==="AbortError")return;R("加载失败,请检查网络或联系管理员")}};async function Dt(ge){var St,vt;const Ce=ge?{signal:ge}:void 0;n(!0),R(null);try{const L=await Le("/api/admin/dashboard/stats",Ce);L!=null&&L.success&&(x(L.totalUsers??0),v(L.paidOrderCount??0),w(L.totalRevenue??0),E(L.conversionRate??0))}catch(L){if((L==null?void 0:L.name)!=="AbortError"){console.error("stats 失败,尝试 overview 降级",L);try{const Ie=await Le("/api/admin/dashboard/overview",Ce);Ie!=null&&Ie.success&&(x(Ie.totalUsers??0),v(Ie.paidOrderCount??0),w(Ie.totalRevenue??0),E(Ie.conversionRate??0))}catch(Ie){ft(Ie)}}}finally{n(!1)}try{const L=await Le("/api/admin/balance/summary",Ce);L!=null&&L.success&&L.data&&te(L.data.totalGifted??0)}catch{}try{const L=await Le("/api/db/ckb-plan-stats",Ce);L!=null&&L.success&&L.data?ae({ckbTotal:L.data.ckbTotal??0,withContact:L.data.withContact??0}):ae(null)}catch{ae(null)}de(!0);try{const[L,Ie]=await Promise.allSettled([Le("/api/db/match-records?stats=true",Ce),Le("/api/admin/distribution/overview",Ce)]);L.status==="fulfilled"&&((St=L.value)!=null&&St.success)&&L.value.data?ye({totalMatches:L.value.data.totalMatches??0,todayMatches:L.value.data.todayMatches??0,uniqueUsers:L.value.data.uniqueUsers??0,paidMatchCount:L.value.data.paidMatchCount??0}):ye(null),Ie.status==="fulfilled"&&((vt=Ie.value)!=null&&vt.success)&&Ie.value.overview?Fe({todayClicks:Ie.value.overview.todayClicks??0,todayBindings:Ie.value.overview.todayBindings??0,todayConversions:Ie.value.overview.todayConversions??0,monthClicks:Ie.value.overview.monthClicks??0,monthBindings:Ie.value.overview.monthBindings??0,monthConversions:Ie.value.overview.monthConversions??0,totalClicks:Ie.value.overview.totalClicks??0,totalBindings:Ie.value.overview.totalBindings??0,totalConversions:Ie.value.overview.totalConversions??0,conversionRate:Ie.value.overview.conversionRate}):Fe(null)}catch{ye(null),Fe(null)}finally{de(!1)}try{const L=await Le("/api/db/vip-members?limit=500",Ce);L!=null&&L.success&&Array.isArray(L.data)?kt(L.data):kt([])}catch{kt([])}a(!0),o(!0);const Be=async()=>{try{const L=await Le("/api/admin/dashboard/recent-orders?limit=10",Ce);if(L!=null&&L.success&&L.recentOrders)f(L.recentOrders);else throw new Error("no data")}catch(L){if((L==null?void 0:L.name)!=="AbortError")try{const Ie=await Le("/api/admin/orders?page=1&pageSize=20&status=paid",Ce),Rt=((Ie==null?void 0:Ie.orders)??[]).filter(pt=>["paid","completed","success"].includes(pt.status||""));f(Rt.slice(0,5))}catch{f([])}}finally{a(!1)}},Ze=async()=>{try{const L=await Le("/api/admin/dashboard/new-users",Ce);if(L!=null&&L.success&&L.newUsers)u(L.newUsers);else throw new Error("no data")}catch(L){if((L==null?void 0:L.name)!=="AbortError")try{const Ie=await Le("/api/db/users?page=1&pageSize=10",Ce);u((Ie==null?void 0:Ie.users)??[])}catch{u([])}}finally{o(!1)}};await Promise.all([Be(),Ze()])}async function Pt(ge){const Ce=ge||_;X(!0);try{const Be=await Le(`/api/admin/track/stats?period=${Ce}`);Be!=null&&Be.success&&K({total:Be.total??0,byModule:Be.byModule??{}})}catch{K(null)}finally{X(!1)}}const Rn={home:"首页",chapters:"目录",read:"阅读页",my:"我的",vip:"超级个体",wallet:"钱包",match:"找伙伴",referral:"推广中心",search:"搜索",settings:"设置",about:"关于",member_detail:"成员详情",other:"其他"},yn={btn_click:"按钮点击",nav_click:"导航点击",card_click:"卡片点击",tab_click:"标签切换",page_view:"页面浏览",share:"分享",purchase:"购买",register:"注册",rule_trigger:"规则触发",view_chapter:"浏览章节",link_click:"链接点击"},Wt=ge=>ge?ge.replace(/^part-/,"").replace(/^soulvip_/,"").replace(/^super_?/,"").replace(/^user_/,"").replace(/[_-]+/g," ").trim():"",Xt=ge=>{if(!ge)return"";const Ce=ge.trim().toLowerCase();if(!Ce)return"";const Be=mt.find(St=>{const vt=String(St.id||"").toLowerCase();return vt===Ce||vt.includes(Ce)||Ce.includes(vt)});if(Be)return Be.name||Be.nickname||"";const Ze=mt.find(St=>{const vt=String(St.token||"").toLowerCase();return vt&&(vt===Ce||vt.includes(Ce)||Ce.includes(vt))});return Ze&&(Ze.name||Ze.nickname)||""},Sn=ge=>{if(!ge)return"未命名点击";const Ce=ge.trim(),Be=Ce.toLowerCase();if(/^链接头像[_-]/.test(Ce)){const St=Wt(Ce.replace(/^链接头像[_-]/,""));return St?`头像:${St}`:"头像点击"}if(/^member[_-]?detail$/i.test(Be)||Be.includes("member detail"))return"成员详情";if(/^giftpay$/i.test(Be)||Be.includes("gift pay"))return"代付入口";if(/^part[-_]/i.test(Be))return`章节:${Wt(Ce)}`;if(Be.includes("soulvip")||Be.includes("super")){const St=Ce.replace(/^超级个体[::]?/i,"").replace(/^super[_-]?/i,"").replace(/^soulvip[_-]?/i,"").replace(/^user[_-]?/i,"").trim(),vt=Xt(St)||Xt(Wt(St));return vt?`超级个体:${vt}`:`超级个体:${Wt(St)}`}if(Be.includes("qgdtw")||Be.includes("token")||Be.includes("0000"))return`对象:${Wt(Ce)}`;const Ze={开始匹配:"开始匹配",mentor:"导师顾问",team:"团队招募",investor:"资源对接",充值:"充值",退款:"退款",wallet:"钱包",设置:"设置",VIP:"VIP会员",推广:"推广中心",目录:"目录",搜索:"搜索",匹配:"找伙伴",settings:"设置",expired:"已过期",active:"活跃",converted:"已转化",fill_profile:"完善资料",register:"注册",purchase:"购买",链接卡若:"链接卡若",更多分享:"更多分享",分享朋友圈文案:"分享朋友圈",选择金额10:"选择金额10元",member_detail:"成员详情",giftPay:"代付入口"};return Ze[Ce]?Ze[Ce]:/^[a-z0-9_-]+$/i.test(Ce)&&Wt(Ce)||Ce},Fn=ge=>{const Ce=Rn[ge.module]||Rn[ge.page]||ge.module||ge.page||"其他",Be=yn[ge.action]||ge.action||"点击",Ze=Sn(ge.target);return`${Ce} · ${Be} · ${Ze}`};async function Wn(){G(!0);try{const ge=await Le("/api/admin/super-individual/stats");ge!=null&&ge.success&&Array.isArray(ge.data)&&P(ge.data)}catch{}finally{G(!1)}}b.useEffect(()=>{const ge=new AbortController;return Dt(ge.signal),Pt(),Wn(),()=>{ge.abort()}},[]);const Mt=m,pn=ge=>{const Ce=ge.productType||"",Be=ge.description||"";if(Ce==="balance_recharge")return{title:`余额充值 ¥${typeof ge.amount=="number"?ge.amount.toFixed(2):parseFloat(String(ge.amount||"0")).toFixed(2)}`,subtitle:"余额充值"};if(Ce==="gift_pay")return{title:`代付 ¥${typeof ge.amount=="number"?ge.amount.toFixed(2):parseFloat(String(ge.amount||"0")).toFixed(2)}`,subtitle:"好友代付"};if(Ce==="gift_pay_batch"){const Ze=typeof ge.amount=="number"?ge.amount.toFixed(2):parseFloat(String(ge.amount||"0")).toFixed(2);return{title:Be||`代付分享 ¥${Ze}`,subtitle:"代付分享"}}if(Ce==="section"&&Be.includes("代付领取"))return{title:Be.replace("代付领取 - ",""),subtitle:"代付领取"};if(Be){if(Ce==="section"&&Be.includes("章节")){if(Be.includes("-")){const Ze=Be.split("-");if(Ze.length>=3)return{title:`第${Ze[1]}章 第${Ze[2]}节`,subtitle:"《一场Soul的创业实验》"}}return{title:Be,subtitle:"章节购买"}}return Ce==="fullbook"||Be.includes("全书")?{title:"《一场Soul的创业实验》",subtitle:"全书购买"}:Ce==="vip"||Be.includes("VIP")?{title:"超级个体开通费用",subtitle:"超级个体"}:Ce==="match"||Be.includes("伙伴")?{title:"找伙伴匹配",subtitle:"功能服务"}:{title:Be,subtitle:Ce==="section"?"单章":Ce==="fullbook"?"全书":"其他"}}return Ce==="section"?{title:`章节 ${ge.productId||""}`,subtitle:"单章购买"}:Ce==="fullbook"?{title:"《一场Soul的创业实验》",subtitle:"全书购买"}:Ce==="vip"?{title:"超级个体开通费用",subtitle:"超级个体"}:Ce==="match"?{title:"找伙伴匹配",subtitle:"功能服务"}:{title:"未知商品",subtitle:Ce||"其他"}},bn=[{title:"总用户数",value:e?null:Mt,sub:null,icon:_n,color:"text-blue-400",bg:"bg-blue-500/20",link:"/users"},{title:"总收入",value:e?null:`¥${(N??0).toFixed(2)}`,sub:I>0?`含代付 ¥${I.toFixed(2)}`:null,icon:tf,color:"text-[#38bdac]",bg:"bg-[#38bdac]/20",link:"/orders"},{title:"订单数",value:e?null:y,sub:null,icon:Ld,color:"text-purple-400",bg:"bg-purple-500/20",link:"/orders"},{title:"转化率",value:e?null:`${typeof k=="number"?k.toFixed(1):0}%`,sub:null,icon:rr,color:"text-orange-400",bg:"bg-orange-500/20",link:"/distribution"},{title:"存客宝获客",value:re?re.ckbTotal??0:null,sub:(re==null?void 0:re.withContact)!=null?`含联系方式 ${re.withContact} 人`:null,icon:vc,color:"text-cyan-400",bg:"bg-cyan-500/20",link:"/users?tab=leads"},{title:"伙伴&推广协同",value:le?null:((ve==null?void 0:ve.totalMatches)??0)+((Se==null?void 0:Se.totalClicks)??0),sub:le?null:`找伙伴 ${(ve==null?void 0:ve.totalMatches)??0} / 推广 ${(Se==null?void 0:Se.totalClicks)??0}`,icon:hc,color:"text-emerald-400",bg:"bg-emerald-500/20",link:"/find-partner"}];return s.jsxs("div",{className:"p-8 w-full",children:[s.jsx("h1",{className:"text-2xl font-bold mb-8 text-white",children:"数据概览"}),C&&s.jsxs("div",{className:"mb-6 px-4 py-3 rounded-lg bg-amber-500/20 border border-amber-500/50 text-amber-200 text-sm flex items-center justify-between",children:[s.jsx("span",{children:C}),s.jsx("button",{type:"button",onClick:()=>Dt(),className:"text-amber-400 hover:text-amber-300 underline",children:"重试"})]}),s.jsx("div",{className:"flex flex-nowrap gap-6 mb-8 overflow-x-auto pb-1",children:bn.map((ge,Ce)=>s.jsxs(De,{className:"min-w-[220px] flex-1 bg-[#0f2137] border-gray-700/50 shadow-xl cursor-pointer hover:border-[#38bdac]/50 transition-colors group",onClick:()=>ge.link&&t(ge.link),children:[s.jsxs(it,{className:"flex flex-row items-center justify-between pb-2",children:[s.jsx(ot,{className:"text-sm font-medium text-gray-400",children:ge.title}),s.jsx("div",{className:`p-2 rounded-lg ${ge.bg}`,children:s.jsx(ge.icon,{className:`w-4 h-4 ${ge.color}`})})]}),s.jsx(_e,{children:s.jsxs("div",{className:"flex items-center justify-between",children:[s.jsxs("div",{children:[s.jsx("div",{className:"text-2xl font-bold text-white min-h-8 flex items-center",children:ge.value!=null?ge.value:s.jsxs("span",{className:"inline-flex items-center gap-2 text-gray-500",children:[s.jsx(Ve,{className:"w-4 h-4 animate-spin"}),"加载中"]})}),ge.sub&&s.jsx("p",{className:"text-xs text-gray-500 mt-1",children:ge.sub})]}),s.jsx(ol,{className:"w-5 h-5 text-gray-600 group-hover:text-[#38bdac] transition-colors"})]})})]},Ce))}),s.jsxs("div",{className:"flex gap-2 mb-6 mt-2",children:[s.jsx("button",{type:"button",onClick:()=>F("overview"),className:`px-5 py-2 rounded-lg text-sm font-medium transition-colors ${J==="overview"?"bg-[#38bdac] text-white":"bg-[#0f2137] text-gray-400 hover:text-white hover:bg-gray-700/50 border border-gray-700/50"}`,children:"数据概览"}),s.jsx("button",{type:"button",onClick:()=>F("tags"),className:`px-5 py-2 rounded-lg text-sm font-medium transition-colors ${J==="tags"?"bg-[#38bdac] text-white":"bg-[#0f2137] text-gray-400 hover:text-white hover:bg-gray-700/50 border border-gray-700/50"}`,children:"用户标签点击统计"}),s.jsx("button",{type:"button",onClick:()=>F("super"),className:`px-5 py-2 rounded-lg text-sm font-medium transition-colors ${J==="super"?"bg-[#38bdac] text-white":"bg-[#0f2137] text-gray-400 hover:text-white hover:bg-gray-700/50 border border-gray-700/50"}`,children:"超级个体统计"})]}),J==="overview"&&s.jsxs("div",{className:"space-y-8",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"flex flex-row items-center justify-between",children:[s.jsx(ot,{className:"text-white",children:"找伙伴 × 推广中心(共统计)"}),s.jsxs("button",{type:"button",onClick:()=>Dt(),disabled:le,className:"text-xs text-gray-400 hover:text-[#38bdac] flex items-center gap-1 disabled:opacity-50",title:"刷新共统计",children:[s.jsx(Ve,{className:`w-3.5 h-3.5 ${le?"animate-spin":""}`}),"刷新"]})]}),s.jsxs(_e,{children:[le&&!ve&&!Se?s.jsxs("div",{className:"flex items-center justify-center py-10 text-gray-500",children:[s.jsx(Ve,{className:"w-6 h-6 animate-spin mr-2"}),s.jsx("span",{children:"加载中..."})]}):s.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-6 gap-4",children:[s.jsxs("div",{className:"rounded-lg bg-[#0a1628] border border-gray-700/30 p-4",children:[s.jsx("p",{className:"text-xs text-gray-400",children:"找伙伴总匹配"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:(ve==null?void 0:ve.totalMatches)??0})]}),s.jsxs("div",{className:"rounded-lg bg-[#0a1628] border border-gray-700/30 p-4",children:[s.jsx("p",{className:"text-xs text-gray-400",children:"找伙伴今日"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:(ve==null?void 0:ve.todayMatches)??0})]}),s.jsxs("div",{className:"rounded-lg bg-[#0a1628] border border-gray-700/30 p-4",children:[s.jsx("p",{className:"text-xs text-gray-400",children:"找伙伴用户数"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:(ve==null?void 0:ve.uniqueUsers)??0})]}),s.jsxs("div",{className:"rounded-lg bg-[#0a1628] border border-gray-700/30 p-4",children:[s.jsx("p",{className:"text-xs text-gray-400",children:"推广总点击"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:(Se==null?void 0:Se.totalClicks)??0})]}),s.jsxs("div",{className:"rounded-lg bg-[#0a1628] border border-gray-700/30 p-4",children:[s.jsx("p",{className:"text-xs text-gray-400",children:"推广总绑定"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:(Se==null?void 0:Se.totalBindings)??0})]}),s.jsxs("div",{className:"rounded-lg bg-[#0a1628] border border-gray-700/30 p-4",children:[s.jsx("p",{className:"text-xs text-gray-400",children:"推广总转化"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:(Se==null?void 0:Se.totalConversions)??0})]})]}),(Se==null?void 0:Se.conversionRate)&&s.jsxs("p",{className:"text-xs text-gray-500 mt-3",children:["推广转化率:",Se.conversionRate]})]})]}),s.jsxs("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-8",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"flex flex-row items-center justify-between",children:[s.jsx(ot,{className:"text-white",children:"最近订单"}),s.jsxs("button",{type:"button",onClick:()=>Dt(),disabled:r||i,className:"text-xs text-gray-400 hover:text-[#38bdac] flex items-center gap-1 disabled:opacity-50",title:"刷新",children:[r||i?s.jsx(Ve,{className:"w-3.5 h-3.5 animate-spin"}):s.jsx(Ve,{className:"w-3.5 h-3.5"}),"刷新"]})]}),s.jsx(_e,{children:s.jsx("div",{className:"space-y-3",children:r&&h.length===0?s.jsxs("div",{className:"flex flex-col items-center justify-center py-12 text-gray-500",children:[s.jsx(Ve,{className:"w-8 h-8 animate-spin mb-2"}),s.jsx("span",{className:"text-sm",children:"加载中..."})]}):s.jsxs(s.Fragment,{children:[h.slice(0,Q?10:4).map(ge=>{var vt;const Ce=ge.referrerId?c.find(L=>L.id===ge.referrerId):void 0,Be=ge.referralCode||(Ce==null?void 0:Ce.referralCode)||(Ce==null?void 0:Ce.nickname)||(ge.referrerId?String(ge.referrerId).slice(0,8):""),Ze=pn(ge),St=ge.userNickname||((vt=c.find(L=>L.id===ge.userId))==null?void 0:vt.nickname)||"匿名用户";return s.jsxs("div",{className:"flex items-start justify-between p-4 bg-[#0a1628] rounded-lg border border-gray-700/30 hover:border-[#38bdac]/30 transition-colors",children:[s.jsxs("div",{className:"flex items-start gap-3 flex-1",children:[ge.userAvatar?s.jsx("img",{src:ge.userAvatar,alt:St,className:"w-9 h-9 rounded-full object-cover shrink-0 mt-0.5",onError:L=>{L.currentTarget.style.display="none";const Ie=L.currentTarget.nextElementSibling;Ie&&Ie.classList.remove("hidden")}}):null,s.jsx("div",{className:`w-9 h-9 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm font-medium text-[#38bdac] shrink-0 mt-0.5 ${ge.userAvatar?"hidden":""}`,children:St.charAt(0)}),s.jsxs("div",{className:"flex-1 min-w-0",children:[s.jsxs("div",{className:"flex items-center gap-2 mb-1",children:[s.jsx("button",{type:"button",onClick:()=>{ge.userId&&(q(ge.userId),V(!0))},className:"text-sm text-[#38bdac] hover:text-[#2da396] hover:underline text-left",children:St}),s.jsx("span",{className:"text-gray-600",children:"·"}),s.jsx("span",{className:"text-sm font-medium text-white truncate",title:Ze.title,children:Ze.title})]}),s.jsxs("div",{className:"flex items-center gap-2 text-xs text-gray-500",children:[Ze.subtitle&&Ze.subtitle!=="章节购买"&&s.jsx("span",{className:"px-1.5 py-0.5 bg-gray-700/50 rounded",children:Ze.subtitle}),s.jsx("span",{children:new Date(ge.createdAt||0).toLocaleString("zh-CN",{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"})})]}),Be&&s.jsxs("p",{className:"text-xs text-gray-600 mt-1",children:["推荐: ",Be]})]})]}),s.jsxs("div",{className:"text-right ml-4 shrink-0",children:[s.jsxs("p",{className:"text-sm font-bold text-[#38bdac]",children:["+¥",Number(ge.amount).toFixed(2)]}),s.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:ge.paymentMethod||"微信"})]})]},ge.id)}),h.length>4&&!Q&&s.jsx("button",{type:"button",onClick:()=>B(!0),className:"w-full py-2 text-sm text-[#38bdac] hover:text-[#2da396] border border-dashed border-gray-600 rounded-lg hover:border-[#38bdac]/50 transition-colors",children:"展开更多"}),h.length===0&&!r&&s.jsxs("div",{className:"text-center py-12",children:[s.jsx(Ld,{className:"w-12 h-12 text-gray-600 mx-auto mb-3"}),s.jsx("p",{className:"text-gray-500",children:"暂无订单数据"})]})]})})})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsx(it,{children:s.jsx(ot,{className:"text-white",children:"新注册用户"})}),s.jsx(_e,{children:s.jsx("div",{className:"space-y-3",children:i&&c.length===0?s.jsxs("div",{className:"flex flex-col items-center justify-center py-12 text-gray-500",children:[s.jsx(Ve,{className:"w-8 h-8 animate-spin mb-2"}),s.jsx("span",{className:"text-sm",children:"加载中..."})]}):s.jsxs(s.Fragment,{children:[c.slice(0,5).map(ge=>{var Ce;return s.jsxs("div",{className:"flex items-center justify-between p-4 bg-[#0a1628] rounded-lg border border-gray-700/30",children:[s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx("div",{className:"w-10 h-10 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm font-medium text-[#38bdac]",children:((Ce=ge.nickname)==null?void 0:Ce.charAt(0))||"?"}),s.jsxs("div",{children:[s.jsx("button",{type:"button",onClick:()=>{q(ge.id),V(!0)},className:"text-sm font-medium text-[#38bdac] hover:text-[#2da396] hover:underline text-left",children:ge.nickname||"匿名用户"}),s.jsx("p",{className:"text-xs text-gray-500",children:ge.phone||"未绑定手机"})]})]}),s.jsx("p",{className:"text-xs text-gray-400",children:ge.createdAt?new Date(ge.createdAt).toLocaleDateString():"-"})]},ge.id)}),c.length===0&&!i&&s.jsx("p",{className:"text-gray-500 text-center py-8",children:"暂无用户数据"})]})})})]})]})]}),J==="tags"&&s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"flex flex-row items-center justify-between",children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(hc,{className:"w-5 h-5 text-[#38bdac]"}),"分类标签点击统计"]}),s.jsx("div",{className:"flex items-center gap-2",children:["today","week","month","all"].map(ge=>s.jsx("button",{type:"button",onClick:()=>{U(ge),Pt(ge)},className:`px-3 py-1 text-xs rounded-full transition-colors ${_===ge?"bg-[#38bdac] text-white":"bg-gray-700/50 text-gray-400 hover:bg-gray-700"}`,children:{today:"今日",week:"本周",month:"本月",all:"全部"}[ge]},ge))})]}),s.jsx(_e,{children:me&&!H?s.jsxs("div",{className:"flex items-center justify-center py-12 text-gray-500",children:[s.jsx(Ve,{className:"w-6 h-6 animate-spin mr-2"}),s.jsx("span",{children:"加载中..."})]}):H&&Object.keys(H.byModule).length>0?s.jsxs("div",{className:"space-y-6",children:[s.jsxs("p",{className:"text-sm text-gray-400",children:["总点击 ",s.jsx("span",{className:"text-white font-bold text-lg",children:H.total})," 次"]}),s.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",children:Object.entries(H.byModule).sort((ge,Ce)=>Ce[1].reduce((Be,Ze)=>Be+Ze.count,0)-ge[1].reduce((Be,Ze)=>Be+Ze.count,0)).slice(0,5).map(([ge,Ce])=>{const Be=Ce.reduce((Ze,St)=>Ze+St.count,0);return s.jsxs("div",{className:"bg-[#0a1628] rounded-lg border border-gray-700/30 p-4",children:[s.jsxs("div",{className:"flex items-center justify-between mb-3",children:[s.jsx("span",{className:"text-sm font-medium text-[#38bdac]",children:Rn[ge]||ge}),s.jsxs("span",{className:"text-xs text-gray-500",children:[Be," 次"]})]}),s.jsx("div",{className:"space-y-2",children:Ce.sort((Ze,St)=>St.count-Ze.count).slice(0,8).map((Ze,St)=>{const vt=Fn(Ze);return s.jsxs("div",{className:"flex items-center justify-between text-xs",children:[s.jsx("span",{className:"text-gray-300 truncate mr-2",title:vt,children:vt}),s.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[s.jsx("div",{className:"w-16 h-1.5 bg-gray-700 rounded-full overflow-hidden",children:s.jsx("div",{className:"h-full bg-[#38bdac] rounded-full",style:{width:`${Be>0?Ze.count/Be*100:0}%`}})}),s.jsx("span",{className:"text-gray-400 w-8 text-right",children:Ze.count})]})]},St)})})]},ge)})})]}):s.jsxs("div",{className:"text-center py-12",children:[s.jsx(hc,{className:"w-12 h-12 text-gray-600 mx-auto mb-3"}),s.jsx("p",{className:"text-gray-500",children:"暂无点击数据"}),s.jsx("p",{className:"text-gray-600 text-xs mt-1",children:"小程序端接入埋点后,数据将在此实时展示"})]})})]}),J==="super"&&s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"flex flex-row items-center justify-between",children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(hc,{className:"w-5 h-5 text-amber-400"}),"超级个体点击统计"]}),s.jsxs(Y,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-300 h-8",onClick:Wn,disabled:oe,children:[s.jsx(Ve,{className:`w-3.5 h-3.5 mr-1 ${oe?"animate-spin":""}`}),"刷新"]})]}),s.jsx(_e,{children:oe&&D.length===0?s.jsxs("div",{className:"flex items-center justify-center py-12 text-gray-500",children:[s.jsx(Ve,{className:"w-6 h-6 animate-spin mr-2"}),s.jsx("span",{children:"加载中..."})]}):D.length>0?s.jsx("div",{className:"overflow-x-auto",children:s.jsxs("table",{className:"w-full text-sm",children:[s.jsx("thead",{children:s.jsxs("tr",{className:"text-xs text-gray-400 border-b border-gray-700/50",children:[s.jsx("th",{className:"text-left py-2 px-3 font-normal",children:"排名"}),s.jsx("th",{className:"text-left py-2 px-3 font-normal",children:"超级个体"}),s.jsx("th",{className:"text-center py-2 px-3 font-normal",children:"总点击"}),s.jsx("th",{className:"text-center py-2 px-3 font-normal",children:"独立访客"}),s.jsx("th",{className:"text-center py-2 px-3 font-normal",children:"人均点击"}),s.jsx("th",{className:"text-center py-2 px-3 font-normal",title:"该用户绑定 @人物 后,指向其 person 的留资独立人数",children:"获客(去重)"}),s.jsx("th",{className:"text-left py-2 px-3 font-normal",children:"手机号"})]})}),s.jsx("tbody",{children:D.map((ge,Ce)=>s.jsxs("tr",{className:"border-b border-gray-700/30 hover:bg-[#0a1628]/80",children:[s.jsx("td",{className:"py-2 px-3 text-gray-500 text-xs",children:Ce+1}),s.jsx("td",{className:"py-2 px-3",children:s.jsxs("div",{className:"flex items-center gap-2",children:[ge.avatar?s.jsx("img",{src:ge.avatar,alt:"",className:"w-7 h-7 rounded-full object-cover"}):s.jsx("div",{className:"w-7 h-7 rounded-full bg-gray-700 flex items-center justify-center text-xs text-gray-400",children:"?"}),s.jsx("button",{type:"button",className:"text-amber-400 hover:text-amber-300 hover:underline text-left text-sm truncate max-w-[160px]",onClick:()=>t(`/users?search=${encodeURIComponent(ge.nickname||ge.userId)}`),title:"点击跳转用户管理",children:ge.nickname||ge.userId})]})}),s.jsx("td",{className:"py-2 px-3 text-center text-white font-bold",children:ge.clicks}),s.jsx("td",{className:"py-2 px-3 text-center text-[#38bdac]",children:ge.uniqueClicks}),s.jsx("td",{className:"py-2 px-3 text-center text-gray-400",children:ge.uniqueClicks>0?(ge.clicks/ge.uniqueClicks).toFixed(1):"-"}),s.jsx("td",{className:"py-2 px-3 text-center text-green-400 text-xs font-medium",children:typeof ge.leadCount=="number"?ge.leadCount:0}),s.jsx("td",{className:"py-2 px-3 text-gray-400 text-xs",children:ge.phone||"-"})]},ge.userId))})]})}):s.jsxs("div",{className:"text-center py-12",children:[s.jsx(hc,{className:"w-12 h-12 text-gray-600 mx-auto mb-3"}),s.jsx("p",{className:"text-gray-500",children:"暂无超级个体点击数据"}),s.jsx("p",{className:"text-gray-600 text-xs mt-1",children:"小程序首页的超级个体被用户点击后,数据将展示在此"})]})})]}),s.jsx(_0,{open:$,onClose:()=>{V(!1),q(null)},userId:O,onUserUpdated:()=>Dt()})]})}const gs=b.forwardRef(({className:t,...e},n)=>s.jsx("div",{className:"relative w-full overflow-auto",children:s.jsx("table",{ref:n,className:Qt("w-full caption-bottom text-sm",t),...e})}));gs.displayName="Table";const ys=b.forwardRef(({className:t,...e},n)=>s.jsx("thead",{ref:n,className:Qt("[&_tr]:border-b",t),...e}));ys.displayName="TableHeader";const bs=b.forwardRef(({className:t,...e},n)=>s.jsx("tbody",{ref:n,className:Qt("[&_tr:last-child]:border-0",t),...e}));bs.displayName="TableBody";const ht=b.forwardRef(({className:t,...e},n)=>s.jsx("tr",{ref:n,className:Qt("border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",t),...e}));ht.displayName="TableRow";const ke=b.forwardRef(({className:t,...e},n)=>s.jsx("th",{ref:n,className:Qt("h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",t),...e}));ke.displayName="TableHead";const be=b.forwardRef(({className:t,...e},n)=>s.jsx("td",{ref:n,className:Qt("p-4 align-middle [&:has([role=checkbox])]:pr-0",t),...e}));be.displayName="TableCell";function lf(t,e){const[n,r]=b.useState(t);return b.useEffect(()=>{const a=setTimeout(()=>r(t),e);return()=>clearTimeout(a)},[t,e]),n}function sr({page:t,totalPages:e,total:n,pageSize:r,onPageChange:a,onPageSizeChange:i,pageSizeOptions:o=[10,20,50,100]}){return e<=1&&!i?null:s.jsxs("div",{className:"flex items-center justify-between gap-4 py-4 px-5 border-t border-gray-700/50",children:[s.jsxs("div",{className:"flex items-center gap-2 text-sm text-gray-400",children:[s.jsxs("span",{children:["共 ",n," 条"]}),i&&s.jsx("select",{value:r,onChange:c=>i(Number(c.target.value)),className:"bg-[#0f2137] border border-gray-600 rounded px-2 py-1 text-gray-300 text-sm",children:o.map(c=>s.jsxs("option",{value:c,children:[c," 条/页"]},c))})]}),e>1&&s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("button",{type:"button",onClick:()=>a(1),disabled:t<=1,className:"px-2 py-1 rounded border border-gray-600 text-gray-400 hover:bg-gray-700/50 disabled:opacity-40 text-sm",children:"首页"}),s.jsx("button",{type:"button",onClick:()=>a(t-1),disabled:t<=1,className:"px-3 py-1 rounded border border-gray-600 text-gray-400 hover:bg-gray-700/50 disabled:opacity-40 text-sm",children:"上一页"}),s.jsxs("span",{className:"px-3 py-1 text-gray-400 text-sm",children:[t," / ",e]}),s.jsx("button",{type:"button",onClick:()=>a(t+1),disabled:t>=e,className:"px-3 py-1 rounded border border-gray-600 text-gray-400 hover:bg-gray-700/50 disabled:opacity-40 text-sm",children:"下一页"}),s.jsx("button",{type:"button",onClick:()=>a(e),disabled:t>=e,className:"px-2 py-1 rounded border border-gray-600 text-gray-400 hover:bg-gray-700/50 disabled:opacity-40 text-sm",children:"末页"})]})]})}function KR(){const[t,e]=b.useState([]),[n,r]=b.useState([]),[a,i]=b.useState(0),[o,c]=b.useState(0),[u,h]=b.useState(0),[f,m]=b.useState(1),[x,y]=b.useState(10),[v,N]=b.useState(""),w=lf(v,300),[k,E]=b.useState("all"),[C,R]=b.useState(!0),[O,q]=b.useState(null),[$,V]=b.useState(null),[I,te]=b.useState(""),[Q,B]=b.useState(!1);async function re(){R(!0),q(null);try{const G=k==="all"?"":k==="completed"?"completed":k,_=new URLSearchParams({page:String(f),pageSize:String(x),...G&&{status:G},...w&&{search:w}}),[U,H]=await Promise.all([Le(`/api/admin/orders?${_}`),Le("/api/db/users?page=1&pageSize=500")]);U!=null&&U.success&&(e(U.orders||[]),i(U.total??0),c(U.totalRevenue??0),h(U.todayRevenue??0)),H!=null&&H.success&&H.users&&r(H.users)}catch(G){console.error("加载订单失败",G),q("加载订单失败,请检查网络后重试")}finally{R(!1)}}b.useEffect(()=>{m(1)},[w,k]),b.useEffect(()=>{re()},[f,x,w,k]);const ae=G=>{var _;return G.userNickname||((_=n.find(U=>U.id===G.userId))==null?void 0:_.nickname)||"匿名用户"},J=G=>{var _;return((_=n.find(U=>U.id===G))==null?void 0:_.phone)||"-"},F=G=>{const _=G.productType||G.type||"",U=G.description||"";if(_==="balance_recharge")return{name:`余额充值 ¥${Number(G.amount||0).toFixed(2)}`,type:"余额充值"};if(U){if(_==="section"&&(U.includes("章节")||U.includes("代付领取"))){if(U.includes("代付领取"))return{name:U.replace("代付领取 - ",""),type:"代付领取"};if(U.includes("-")){const H=U.split("-");if(H.length>=3)return{name:`第${H[1]}章 第${H[2]}节`,type:"《一场Soul的创业实验》"}}return{name:U,type:"章节购买"}}return _==="fullbook"||U.includes("全书")?{name:"《一场Soul的创业实验》",type:"全书购买"}:_==="vip"||U.includes("VIP")?{name:"超级个体开通费用",type:"超级个体"}:_==="match"||U.includes("伙伴")?{name:"找伙伴匹配",type:"功能服务"}:{name:U,type:"其他"}}return _==="section"?{name:`章节 ${G.productId||G.sectionId||""}`,type:"单章"}:_==="fullbook"?{name:"《一场Soul的创业实验》",type:"全书"}:_==="vip"?{name:"超级个体开通费用",type:"超级个体"}:_==="match"?{name:"找伙伴匹配",type:"功能"}:{name:"未知商品",type:_||"其他"}},D=Math.ceil(a/x)||1;async function P(){var G;if(!(!($!=null&&$.orderSn)&&!($!=null&&$.id))){B(!0),q(null);try{const _=await Zt("/api/admin/orders/refund",{orderSn:$.orderSn||$.id,reason:I||void 0});_!=null&&_.success?(V(null),te(""),re()):q((_==null?void 0:_.error)||"退款失败")}catch(_){const U=_;q(((G=U==null?void 0:U.data)==null?void 0:G.error)||"退款失败,请检查网络后重试")}finally{B(!1)}}}function oe(){if(t.length===0){ne.info("暂无数据可导出");return}const G=["订单号","用户","手机号","商品","金额","支付方式","状态","退款原因","分销佣金","下单时间"],_=t.map(X=>{const le=F(X);return[X.orderSn||X.id||"",ae(X),J(X.userId),le.name,Number(X.amount||0).toFixed(2),X.paymentMethod==="wechat"?"微信支付":X.paymentMethod==="balance"?"余额支付":X.paymentMethod==="alipay"?"支付宝":X.paymentMethod||"微信支付",X.status==="refunded"?"已退款":X.status==="paid"||X.status==="completed"?"已完成":X.status==="pending"||X.status==="created"?"待支付":"已失败",X.status==="refunded"&&X.refundReason?X.refundReason:"-",X.referrerEarnings?Number(X.referrerEarnings).toFixed(2):"-",X.createdAt?new Date(X.createdAt).toLocaleString("zh-CN"):""].join(",")}),U="\uFEFF"+[G.join(","),..._].join(` +`),H=new Blob([U],{type:"text/csv;charset=utf-8"}),K=URL.createObjectURL(H),me=document.createElement("a");me.href=K,me.download=`订单列表_${new Date().toISOString().slice(0,10)}.csv`,me.click(),URL.revokeObjectURL(K)}return s.jsxs("div",{className:"p-8 w-full",children:[O&&s.jsxs("div",{className:"mb-4 px-4 py-3 rounded-lg bg-red-500/20 border border-red-500/50 text-red-400 text-sm flex items-center justify-between",children:[s.jsx("span",{children:O}),s.jsx("button",{type:"button",onClick:()=>q(null),className:"hover:text-red-300",children:"×"})]}),s.jsxs("div",{className:"flex justify-between items-center mb-8",children:[s.jsxs("div",{children:[s.jsx("h2",{className:"text-2xl font-bold text-white",children:"订单管理"}),s.jsxs("p",{className:"text-gray-400 mt-1",children:["共 ",t.length," 笔订单"]})]}),s.jsxs("div",{className:"flex items-center gap-4",children:[s.jsxs(Y,{variant:"outline",onClick:re,disabled:C,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${C?"animate-spin":""}`}),"刷新"]}),s.jsxs("div",{className:"flex items-center gap-2 text-sm",children:[s.jsx("span",{className:"text-gray-400",children:"总收入:"}),s.jsxs("span",{className:"text-[#38bdac] font-bold",children:["¥",o.toFixed(2)]}),s.jsx("span",{className:"text-gray-600",children:"|"}),s.jsx("span",{className:"text-gray-400",children:"今日:"}),s.jsxs("span",{className:"text-[#FFD700] font-bold",children:["¥",u.toFixed(2)]})]})]})]}),s.jsxs("div",{className:"flex items-center gap-4 mb-6",children:[s.jsxs("div",{className:"relative flex-1 max-w-md",children:[s.jsx(Aa,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-500"}),s.jsx(ce,{type:"text",placeholder:"搜索订单号/用户/章节...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white placeholder:text-gray-500",value:v,onChange:G=>N(G.target.value)})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(Rj,{className:"w-4 h-4 text-gray-400"}),s.jsxs("select",{value:k,onChange:G=>E(G.target.value),className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:[s.jsx("option",{value:"all",children:"全部状态"}),s.jsx("option",{value:"completed",children:"已完成"}),s.jsx("option",{value:"pending",children:"待支付"}),s.jsx("option",{value:"created",children:"已创建"}),s.jsx("option",{value:"failed",children:"已失败"}),s.jsx("option",{value:"refunded",children:"已退款"})]})]}),s.jsxs(Y,{variant:"outline",onClick:oe,disabled:t.length===0,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(M5,{className:"w-4 h-4 mr-2"}),"导出 CSV"]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:s.jsx(_e,{className:"p-0",children:C?s.jsxs("div",{className:"flex items-center justify-center py-12",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):s.jsxs("div",{children:[s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"订单号"}),s.jsx(ke,{className:"text-gray-400",children:"用户"}),s.jsx(ke,{className:"text-gray-400",children:"商品"}),s.jsx(ke,{className:"text-gray-400",children:"金额"}),s.jsx(ke,{className:"text-gray-400",children:"支付方式"}),s.jsx(ke,{className:"text-gray-400",children:"状态"}),s.jsx(ke,{className:"text-gray-400",children:"退款原因"}),s.jsx(ke,{className:"text-gray-400",children:"分销佣金"}),s.jsx(ke,{className:"text-gray-400",children:"下单时间"}),s.jsx(ke,{className:"text-gray-400",children:"操作"})]})}),s.jsxs(bs,{children:[t.map(G=>{const _=F(G);return s.jsxs(ht,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[s.jsxs(be,{className:"font-mono text-xs text-gray-400",children:[(G.orderSn||G.id||"").slice(0,12),"..."]}),s.jsx(be,{children:s.jsxs("div",{children:[s.jsxs("p",{className:"text-white text-sm flex items-center gap-2",children:[ae(G),G.paymentMethod==="gift_pay"&&s.jsx(Ue,{className:"bg-emerald-500/20 text-emerald-400 hover:bg-emerald-500/20 border-0 text-xs",children:"代付领取"}),G.payerUserId&&G.paymentMethod!=="gift_pay"&&s.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 hover:bg-amber-500/20 border-0 text-xs",children:"代付"})]}),s.jsx("p",{className:"text-gray-500 text-xs",children:J(G.userId)}),G.payerUserId&&G.payerNickname&&s.jsxs("p",{className:"text-amber-400/80 text-xs mt-0.5",children:[G.paymentMethod==="gift_pay"?"赠送人:":"代付人:",G.payerNickname]})]})}),s.jsx(be,{children:s.jsxs("div",{children:[s.jsxs("p",{className:"text-white text-sm flex items-center gap-2",children:[_.name,(G.productType||G.type)==="vip"&&s.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 hover:bg-amber-500/20 border-0 text-xs",children:"超级个体"})]}),s.jsx("p",{className:"text-gray-500 text-xs",children:_.type})]})}),s.jsxs(be,{className:"text-[#38bdac] font-bold",children:["¥",Number(G.amount||0).toFixed(2)]}),s.jsx(be,{className:"text-gray-300",children:G.paymentMethod==="wechat"?"微信支付":G.paymentMethod==="balance"?"余额支付":G.paymentMethod==="alipay"?"支付宝":G.paymentMethod||"微信支付"}),s.jsx(be,{children:s.jsxs("div",{className:"flex items-center gap-2 flex-wrap",children:[G.status==="refunded"?s.jsx(Ue,{className:"bg-gray-500/20 text-gray-400 hover:bg-gray-500/20 border-0",children:"已退款"}):G.status==="paid"||G.status==="completed"?s.jsx(Ue,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"已完成"}):G.status==="pending"||G.status==="created"?s.jsx(Ue,{className:"bg-yellow-500/20 text-yellow-400 hover:bg-yellow-500/20 border-0",children:"待支付"}):s.jsx(Ue,{className:"bg-red-500/20 text-red-400 hover:bg-red-500/20 border-0",children:"已失败"}),(G.status==="paid"||G.status==="completed")&&(G.webhookPushStatus==="sent"?s.jsx(Ue,{className:"bg-emerald-500/20 text-emerald-300 hover:bg-emerald-500/20 border-0",children:"已推送"}):s.jsx(Ue,{className:"bg-orange-500/20 text-orange-300 hover:bg-orange-500/20 border-0",children:"待补推"}))]})}),s.jsx(be,{className:"text-gray-400 text-sm max-w-[120px] truncate",title:G.refundReason,children:G.status==="refunded"&&G.refundReason?G.refundReason:"-"}),s.jsx(be,{className:"text-[#FFD700]",children:G.referrerEarnings?`¥${Number(G.referrerEarnings).toFixed(2)}`:"-"}),s.jsx(be,{className:"text-gray-400 text-sm",children:new Date(G.createdAt).toLocaleString("zh-CN")}),s.jsx(be,{children:(G.status==="paid"||G.status==="completed")&&G.paymentMethod!=="balance"&&s.jsxs(Y,{variant:"outline",size:"sm",className:"border-orange-500/50 text-orange-400 hover:bg-orange-500/20",onClick:()=>{V(G),te("")},children:[s.jsx(Dj,{className:"w-3 h-3 mr-1"}),"退款"]})})]},G.id)}),t.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:10,className:"text-center py-12 text-gray-500",children:"暂无订单数据"})})]})]}),s.jsx(sr,{page:f,totalPages:D,total:a,pageSize:x,onPageChange:m,onPageSizeChange:G=>{y(G),m(1)}})]})})}),s.jsx(Bt,{open:!!$,onOpenChange:G=>!G&&V(null),children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[s.jsx(Vt,{children:s.jsx(Ht,{className:"text-white",children:"订单退款"})}),$&&s.jsxs("div",{className:"space-y-4",children:[s.jsxs("p",{className:"text-gray-400 text-sm",children:["订单号:",$.orderSn||$.id]}),s.jsxs("p",{className:"text-gray-400 text-sm",children:["退款金额:¥",Number($.amount||0).toFixed(2)]}),s.jsxs("div",{children:[s.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"退款原因(选填)"}),s.jsx("div",{className:"form-input",children:s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"如:用户申请退款",value:I,onChange:G=>te(G.target.value)})})]}),s.jsx("p",{className:"text-orange-400/80 text-xs",children:"退款将原路退回至用户微信,且无法撤销,请确认后再操作。"})]}),s.jsxs(xn,{children:[s.jsx(Y,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:()=>V(null),disabled:Q,children:"取消"}),s.jsx(Y,{className:"bg-orange-500 hover:bg-orange-600 text-white",onClick:P,disabled:Q,children:Q?"退款中...":"确认退款"})]})]})})]})}const To=b.forwardRef(({className:t,...e},n)=>s.jsx("textarea",{className:Qt("flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-sm placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",t),ref:n,...e}));To.displayName="Textarea";const z1=["INTJ","INTP","ENTJ","ENTP","INFJ","INFP","ENFJ","ENFP","ISTJ","ISFJ","ESTJ","ESFJ","ISTP","ISFP","ESTP","ESFP"],s2={INTJ:{title:"战略家",group:"NT",mood:"sharp"},INTP:{title:"逻辑学家",group:"NT",mood:"calm"},ENTJ:{title:"指挥官",group:"NT",mood:"sharp"},ENTP:{title:"辩论家",group:"NT",mood:"playful"},INFJ:{title:"提倡者",group:"NF",mood:"warm"},INFP:{title:"调停者",group:"NF",mood:"warm"},ENFJ:{title:"主人公",group:"NF",mood:"warm"},ENFP:{title:"竞选者",group:"NF",mood:"playful"},ISTJ:{title:"物流师",group:"SJ",mood:"calm"},ISFJ:{title:"守卫者",group:"SJ",mood:"warm"},ESTJ:{title:"总经理",group:"SJ",mood:"sharp"},ESFJ:{title:"执政官",group:"SJ",mood:"warm"},ISTP:{title:"鉴赏家",group:"SP",mood:"sharp"},ISFP:{title:"探险家",group:"SP",mood:"playful"},ESTP:{title:"企业家",group:"SP",mood:"playful"},ESFP:{title:"表演者",group:"SP",mood:"playful"}};function qR(t){switch(t){case"NT":return{bg:"#0d1424",body:"#c89a2c",accent:"#ffd66b",hair:"#6d540f",line:"#111827"};case"NF":return{bg:"#0a1721",body:"#2e9f7c",accent:"#84e9c9",hair:"#2d6a4f",line:"#11212a"};case"SJ":return{bg:"#101828",body:"#4f8cb8",accent:"#9bd4ff",hair:"#2e4a66",line:"#111f2d"};case"SP":return{bg:"#161225",body:"#8b6bc0",accent:"#ccb3ff",hair:"#574183",line:"#211832"};default:return{bg:"#0e1422",body:"#38bdac",accent:"#7ee7db",hair:"#1f6f66",line:"#10202d"}}}function GR(t){switch(t){case"sharp":return{eye:"M222 222 L242 220 M270 220 L290 222",brow:"M218 210 L244 202 M268 202 L294 210",mouth:"M234 256 Q256 246 278 256",tilt:-5};case"warm":return{eye:"M222 224 Q232 230 242 224 M270 224 Q280 230 290 224",brow:"M220 210 Q232 206 244 210 M268 210 Q280 206 292 210",mouth:"M232 254 Q256 272 280 254",tilt:2};case"playful":return{eye:"M222 224 Q232 236 242 224 M270 224 Q280 236 290 224",brow:"M220 210 Q234 200 246 208 M266 208 Q278 200 292 210",mouth:"M232 256 Q256 266 280 250",tilt:8};default:return{eye:"M222 224 Q232 220 242 224 M270 224 Q280 220 290 224",brow:"M220 210 Q232 208 244 210 M268 210 Q280 208 292 210",mouth:"M236 256 Q256 260 276 256",tilt:0}}}function JR(t){switch(t){case"sharp":return"M168 370 L206 300 L256 332 L306 300 L344 370 L306 392 L256 374 L206 392 Z";case"warm":return"M166 368 Q188 318 226 314 L256 340 L286 314 Q324 318 346 368 L314 392 Q286 404 256 396 Q226 404 198 392 Z";case"playful":return"M164 370 L198 304 L252 332 L318 300 L350 374 L316 394 L258 378 L196 396 Z";default:return"M166 370 L202 306 L256 336 L310 306 L346 370 L310 392 L256 380 L202 392 Z"}}function $1(t){const e=s2[t],n=qR(e.group),r=GR(e.mood),a=JR(e.mood),i=` + + + + + + + + + + + + + + + + + + + + + + + + + +`;return`data:image/svg+xml;utf8,${encodeURIComponent(i)}`}function QR(){const[t,e]=b.useState({}),[n,r]=b.useState(!0),[a,i]=b.useState(!1),[o,c]=b.useState(!1),u=b.useCallback(async()=>{r(!0);try{const x=await Le("/api/admin/mbti-avatars");x!=null&&x.avatars?e(x.avatars):e({})}catch{ne.error("加载 MBTI 头像配置失败")}finally{r(!1)}},[]);b.useEffect(()=>{u()},[u]);const h=async()=>{i(!0);try{const x=await Et("/api/admin/mbti-avatars",{avatars:t});if(!x||x.success===!1){ne.error((x==null?void 0:x.error)||"保存失败");return}ne.success("已保存,后台与小程序默认头像同步生效"),u()}catch{ne.error("保存失败")}finally{i(!1)}},f=x=>{const y=$1(x);e(v=>({...v,[x]:y})),ne.success(`${x} 已生成`)},m=()=>{c(!0);try{const x={...t};z1.forEach(y=>{x[y]=$1(y)}),e(x),ne.success("16 型头像已生成(仅人物)")}finally{c(!1)}};return n?s.jsxs("div",{className:"flex items-center justify-center py-16 text-gray-400",children:[s.jsx(Ve,{className:"w-5 h-5 mr-2 animate-spin text-[#38bdac]"}),"加载配置…"]}):s.jsxs("div",{className:"space-y-4",children:[s.jsxs(De,{className:"bg-[#0f2137] border-[#38bdac]/25 shadow-xl",children:[s.jsxs(it,{className:"pb-2",children:[s.jsxs(ot,{className:"text-white flex items-center gap-2 text-lg",children:[s.jsx(sA,{className:"w-5 h-5 text-[#38bdac]"}),"MBTI 头像库"]}),s.jsx(Yt,{className:"text-gray-400 text-sm leading-relaxed",children:"采用人物化风格,按 MBTI 性格自动生成。头像内不显示中英文,仅显示人物形象,颜色与站点主题融合。"})]}),s.jsxs(_e,{className:"flex flex-wrap gap-2",children:[s.jsxs(Y,{type:"button",size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396]",onClick:m,disabled:o,children:[s.jsx(CA,{className:"w-3.5 h-3.5 mr-1"}),o?"生成中…":"一键生成16头像"]}),s.jsxs(Y,{type:"button",size:"sm",variant:"outline",className:"border-gray-600 text-gray-300",onClick:u,children:[s.jsx(Ve,{className:"w-3.5 h-3.5 mr-1"}),"重新加载"]}),s.jsxs(Y,{type:"button",size:"sm",className:"bg-emerald-600 hover:bg-emerald-500",onClick:h,disabled:a,children:[s.jsx(kn,{className:"w-3.5 h-3.5 mr-1"}),a?"保存中…":"保存映射"]})]})]}),s.jsx("div",{className:"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-3",children:z1.map(x=>{const y=t[x]??"",v=s2[x];return s.jsxs("div",{className:"rounded-xl border border-gray-700/60 bg-[#0a1628] p-3 flex flex-col gap-2 hover:border-[#38bdac]/35 transition-colors",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(Ue,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0 font-mono text-xs",children:x}),s.jsx("span",{className:"text-xs text-gray-400 truncate",title:v.title,children:v.title})]}),s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx("div",{className:"w-16 h-16 rounded-full shrink-0 overflow-hidden flex items-center justify-center bg-[#081322] ring-2 ring-[#38bdac]/40 ring-offset-2 ring-offset-[#0a1628]",children:y?s.jsx("img",{src:y,alt:x,className:"w-full h-full object-cover scale-110"}):s.jsx("span",{className:"text-gray-600 text-[10px]",children:"未配"})}),s.jsx("div",{className:"flex-1 min-w-0",children:s.jsx(ce,{className:"bg-[#162840] border-gray-700 text-white h-8 text-xs",placeholder:"https://... 或 data:image/...",value:y,onChange:N=>e(w=>({...w,[x]:N.target.value}))})})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(Y,{type:"button",size:"sm",variant:"outline",className:"h-7 text-[11px] border-[#38bdac]/40 text-[#38bdac]",onClick:()=>f(x),children:"生成这张"}),s.jsx(Y,{type:"button",size:"sm",variant:"ghost",className:"h-7 text-[11px] text-gray-400",onClick:()=>e(N=>({...N,[x]:""})),children:"清空"})]})]},x)})})]})}const F1=[{value:"after_login",label:"注册/登录成功",group:"用户状态"},{value:"bind_phone",label:"绑定手机号",group:"用户状态"},{value:"update_avatar",label:"完善头像(非默认图,与昵称分开配置)",group:"用户状态"},{value:"update_nickname",label:"修改昵称(非默认微信昵称,与头像分开)",group:"用户状态"},{value:"fill_profile",label:"完善资料(MBTI/行业/职位,不含头像昵称)",group:"用户状态"},{value:"view_chapter",label:"浏览章节",group:"阅读行为"},{value:"browse_5_chapters",label:"累计浏览5个章节",group:"阅读行为"},{value:"purchase_section",label:"购买单章",group:"付费行为"},{value:"purchase_fullbook",label:"购买全书/VIP",group:"付费行为"},{value:"after_pay",label:"任意付款成功",group:"付费行为"},{value:"after_match",label:"完成派对匹配",group:"社交行为"},{value:"click_super_individual",label:"点击超级个体头像",group:"社交行为"},{value:"lead_submit",label:"提交留资/链接",group:"社交行为"},{value:"referral_bind",label:"被推荐人绑定",group:"分销行为"},{value:"share_action",label:"分享给好友/朋友圈",group:"分销行为"},{value:"withdraw_request",label:"申请提现",group:"分销行为"},{value:"add_wechat",label:"添加微信联系方式",group:"用户状态"}],B1=[{value:"popup",label:"弹窗提示",desc:"在小程序内弹窗引导用户完成下一步"},{value:"navigate",label:"跳转页面",desc:"引导用户跳转到指定页面"},{value:"webhook",label:"推送飞书群",desc:"触发后推送消息到飞书群Webhook"},{value:"tag",label:"自动打标签",desc:"触发后自动给用户打上指定标签"}];function r2(t){if(Array.isArray(t))return t.filter(e=>typeof e=="string");if(typeof t=="string")try{const e=JSON.parse(t);if(Array.isArray(e))return e.filter(n=>typeof n=="string")}catch{try{const e=typeof atob=="function"?atob(t):"",n=JSON.parse(e);if(Array.isArray(n))return n.filter(r=>typeof r=="string")}catch{}}return[]}function YR(t){return{...t,triggerConditions:r2(t.triggerConditions)}}const XR=[{level:"S",range:"≥85",label:"高价值"},{level:"A",range:"70–84",label:"优质"},{level:"B",range:"50–69",label:"中等"},{level:"C",range:"30–49",label:"潜力"},{level:"D",range:"<30",label:"待激活"}],cc=[{id:"register",label:"注册/登录",icon:"👤",color:"bg-blue-500/20 border-blue-500/40 text-blue-400",desc:"微信授权登录或手机号注册"},{id:"browse",label:"浏览章节",icon:"📖",color:"bg-purple-500/20 border-purple-500/40 text-purple-400",desc:"点击免费/付费章节预览"},{id:"bind_phone",label:"绑定手机",icon:"📱",color:"bg-cyan-500/20 border-cyan-500/40 text-cyan-400",desc:"触发付费章节后绑定手机"},{id:"first_pay",label:"首次付款",icon:"💳",color:"bg-green-500/20 border-green-500/40 text-green-400",desc:"购买单章或全书"},{id:"fill_profile",label:"完善资料",icon:"✍️",color:"bg-yellow-500/20 border-yellow-500/40 text-yellow-400",desc:"填写头像、MBTI、行业等"},{id:"match",label:"派对房匹配",icon:"🤝",color:"bg-orange-500/20 border-orange-500/40 text-orange-400",desc:"参与 Soul 派对房"},{id:"vip",label:"升级 VIP",icon:"👑",color:"bg-amber-500/20 border-amber-500/40 text-amber-400",desc:"付款 ¥1980 购买全书"},{id:"distribution",label:"开启分销",icon:"🔗",color:"bg-[#38bdac]/20 border-[#38bdac]/40 text-[#38bdac]",desc:"生成推广码并推荐好友"}];function V1(t){return confirm(`确定删除该${t}?此操作不可恢复。`)?window.prompt(`请输入「删除」以确认删除${t}`)==="删除":!1}function ZR(){var $i,ya,zl,Fi,Bi,ba,Xa;const[t,e]=w0(),n=t.get("pool"),r=t.get("tab")||"users",a=["users","journey","rules","vip-roles","leads"].includes(r)?r:"users",[i,o]=b.useState([]),[c,u]=b.useState(0),[h,f]=b.useState(1),[m,x]=b.useState(10),[y,v]=b.useState(""),N=lf(y,300),w=n==="vip"?"vip":n==="complete"?"complete":"all",[k,E]=b.useState(w),[C,R]=b.useState(!0),[O,q]=b.useState(!1),[$,V]=b.useState(null),[I,te]=b.useState(!1),[Q,B]=b.useState(!1),[re,ae]=b.useState("desc");b.useEffect(()=>{n==="vip"?E("vip"):n==="complete"?E("complete"):n==="all"&&E("all")},[n]);const[J,F]=b.useState(!1),[D,P]=b.useState(null),[oe,G]=b.useState(!1),[_,U]=b.useState(!1),[H,K]=b.useState({referrals:[],stats:{}}),[me,X]=b.useState(!1),[le,de]=b.useState(null),[ve,ye]=b.useState(!1),[Se,Fe]=b.useState(null),[mt,kt]=b.useState(!1),[ft,Dt]=b.useState({phone:"",nickname:"",password:"",isAdmin:!1,hasFullBook:!1}),[Pt,Rn]=b.useState([]),[yn,Wt]=b.useState(!1),[Xt,Sn]=b.useState(!1),[Fn,Wn]=b.useState(null),[Mt,pn]=b.useState({title:"",description:"",trigger:"",triggerConditions:[],actionType:"popup",sort:0,enabled:!0}),[bn,ge]=b.useState([]),[Ce,Be]=b.useState(!1),[Ze,St]=b.useState(null),[vt,L]=b.useState(null),[Ie,xt]=b.useState({}),[Rt,pt]=b.useState(!1),[at,At]=b.useState(null),[Kt,en]=b.useState([]),[ls,Ws]=b.useState(!1),[Fr,za]=b.useState(null),[$a,Fa]=b.useState(""),[oa,Br]=b.useState([]),[yr,ir]=b.useState(!1),[Vr,Ls]=b.useState({}),[Ds,or]=b.useState([]),[br,la]=b.useState(0),[ie,xe]=b.useState(1),[It]=b.useState(20),[$t,Yn]=b.useState(!1),[Xn,Ks]=b.useState(null),[Ba,Ct]=b.useState(""),vn=lf(Ba,300),[Va,Ol]=b.useState(""),[Ft,Fo]=b.useState({}),vr=b.useCallback(async(A,je)=>{Yn(!0),Ks(null);try{const Ae=new URLSearchParams({mode:"contact",page:String(ie),pageSize:String(It)}),$e=A??vn;$e&&Ae.set("search",$e);const et=je??Va;et&&Ae.set("source",et);const gt=await Le(`/api/db/ckb-leads?${Ae}`);if(gt!=null&>.success)or(gt.records||[]),la(gt.total??0),gt.stats&&Fo(gt.stats);else{const Nn=(gt==null?void 0:gt.error)||"加载获客列表失败";Ks(Nn),ne.error(Nn),or([]),la(0)}}catch(Ae){const $e=Ae instanceof Error?Ae.message:"网络错误";Ks($e),ne.error("加载获客列表失败: "+$e),or([]),la(0)}finally{Yn(!1)}},[ie,It,vn,Va]),ca=b.useCallback(async()=>{try{const A=await Le("/api/admin/mbti-avatars"),je=A!=null&&A.avatars&&typeof A.avatars=="object"?A.avatars:{};Ls(je)}catch{Ls({})}},[]);b.useEffect(()=>{t.get("tab")==="leads"&&vr()},[t.get("tab"),ie,vr]),b.useEffect(()=>{ca()},[ca]);const cs=b.useCallback((A,je)=>{const Ae=(A||"").trim();if(Ae)return Ae;const $e=(je||"").trim().toUpperCase();return/^[EI][NS][FT][JP]$/.test($e)?(Vr[$e]||"").trim():""},[Vr]),Ei=b.useCallback(A=>{const je=!!A.hasFullBook,Ae=Number(A.purchasedSectionCount||0);return je?{tone:"vip",main:"已购全书",sub:Ae>0?`另购单章 ${Ae} 章`:"购买项:VIP / 全书"}:Ae>0?{tone:"paid",main:`已购 ${Ae} 章`,sub:"购买项:章节"}:{tone:"free",main:"未购买",sub:""}},[]),[Ha,da]=b.useState(null),Ns=b.useCallback(async()=>{try{const A=await Le("/api/admin/users/online-stats");A!=null&&A.success&&typeof A.onlineCount=="number"?da(A.onlineCount):da(0)}catch{da(null)}},[]);b.useEffect(()=>{Ns();const A=setInterval(Ns,1e4);return()=>clearInterval(A)},[Ns]);async function Hr(A=!1){var je;R(!0),A&&q(!0),V(null);try{if(I){const Ae=new URLSearchParams({search:N,limit:String(m*5)}),$e=await Le(`/api/db/users/rfm?${Ae}`);if($e!=null&&$e.success){let et=$e.users||[];re==="asc"&&(et=[...et].reverse());const gt=(h-1)*m;o(et.slice(gt,gt+m)),u(((je=$e.users)==null?void 0:je.length)??0),et.length===0&&(te(!1),V("暂无订单数据,RFM 排序需要用户有购买记录后才能生效"))}else te(!1),V(($e==null?void 0:$e.error)||"RFM 加载失败,已切回普通模式")}else{const Ae=new URLSearchParams({page:String(h),pageSize:String(m),search:N,...k==="vip"&&{vip:"true"},...k==="complete"&&{pool:"complete"}}),$e=await Le(`/api/db/users?${Ae}`);$e!=null&&$e.success?(o($e.users||[]),u($e.total??0)):V(($e==null?void 0:$e.error)||"加载失败")}}catch(Ae){console.error("Load users error:",Ae),V("网络错误")}finally{R(!1),A&&q(!1)}}b.useEffect(()=>{f(1)},[N,k,I]),b.useEffect(()=>{Hr()},[h,m,N,k,I,re]);const ws=Math.ceil(c/m)||1,Ll=()=>{I?re==="desc"?ae("asc"):(te(!1),ae("desc")):(te(!0),ae("desc"))},Mi=A=>({S:"bg-amber-500/20 text-amber-400",A:"bg-green-500/20 text-green-400",B:"bg-blue-500/20 text-blue-400",C:"bg-gray-500/20 text-gray-400",D:"bg-red-500/20 text-red-400"})[A||""]||"bg-gray-500/20 text-gray-400";async function Jc(A){var je;if(!V1("用户")){ne.info("已取消删除");return}try{const Ae=await gi(`/api/db/users?id=${encodeURIComponent(A)}`);Ae!=null&&Ae.success?(ne.success("已删除"),Hr()):ne.error("删除失败: "+((Ae==null?void 0:Ae.error)||"未知错误"))}catch(Ae){const $e=Ae,et=((je=$e==null?void 0:$e.data)==null?void 0:je.error)||($e==null?void 0:$e.message)||"网络错误";ne.error("删除失败: "+et)}}const Ua=A=>{P(A),Dt({phone:A.phone||"",nickname:A.nickname||"",password:"",isAdmin:!!(A.isAdmin??!1),hasFullBook:!!(A.hasFullBook??!1)}),F(!0)},Ai=()=>{P(null),Dt({phone:"",nickname:"",password:"",isAdmin:!1,hasFullBook:!1}),F(!0)};async function Nr(){if(!ft.phone||!ft.nickname){ne.error("请填写手机号和昵称");return}G(!0);try{if(D){const A=await Zt("/api/db/users",{id:D.id,phone:ft.phone||void 0,nickname:ft.nickname,isAdmin:ft.isAdmin,hasFullBook:ft.hasFullBook,...ft.password&&{password:ft.password}});if(!(A!=null&&A.success)){ne.error("更新失败: "+((A==null?void 0:A.error)||""));return}}else{const A=await Et("/api/db/users",{phone:ft.phone,nickname:ft.nickname,password:ft.password,isAdmin:ft.isAdmin});if(!(A!=null&&A.success)){ne.error("创建失败: "+((A==null?void 0:A.error)||""));return}}F(!1),Hr()}catch{ne.error("保存失败")}finally{G(!1)}}async function Wa(A){de(A),U(!0),X(!0);try{const je=await Le(`/api/db/users/referrals?userId=${encodeURIComponent(A.id)}`);je!=null&&je.success?K({referrals:je.referrals||[],stats:je.stats||{}}):K({referrals:[],stats:{}})}catch{K({referrals:[],stats:{}})}finally{X(!1)}}const _s=b.useCallback(async()=>{Wt(!0);try{const A=await Le("/api/db/user-rules");A!=null&&A.success&&Rn((A.rules||[]).map(je=>YR(je)))}catch{}finally{Wt(!1)}},[]);async function Qc(){if(!Mt.title){ne.error("请填写规则标题");return}G(!0);try{if(Fn){const A=await Zt("/api/db/user-rules",{id:Fn.id,...Mt});if(!(A!=null&&A.success)){ne.error("更新失败: "+((A==null?void 0:A.error)||""));return}}else{const A=await Et("/api/db/user-rules",Mt);if(!(A!=null&&A.success)){ne.error("创建失败: "+((A==null?void 0:A.error)||""));return}}Sn(!1),_s()}catch{ne.error("保存失败")}finally{G(!1)}}async function Bo(A){if(!V1("规则")){ne.info("已取消删除");return}try{const je=await gi(`/api/db/user-rules?id=${A}`);je!=null&&je.success&&_s()}catch{}}async function Vo(A){try{await Zt("/api/db/user-rules",{id:A.id,enabled:!A.enabled}),_s()}catch{}}const zs=b.useCallback(async()=>{Be(!0);try{const A=await Le("/api/db/vip-members?limit=500");if(A!=null&&A.success&&A.data){const je=[...A.data].map((Ae,$e)=>({...Ae,vipSort:typeof Ae.vipSort=="number"?Ae.vipSort:$e+1}));je.sort((Ae,$e)=>(Ae.vipSort??999999)-($e.vipSort??999999)),ge(je)}else A&&A.error&&ne.error(A.error)}catch{ne.error("加载超级个体列表失败")}finally{Be(!1)}},[]),[ua,Ii]=b.useState(!1),[qs,Tt]=b.useState(null),[ha,Pi]=b.useState(""),[Bn,Ri]=b.useState(!1),[Ka,Ur]=b.useState(!1),[wr,Cn]=b.useState(null),[ds,lr]=b.useState(""),[cr,fa]=b.useState(!1),pa=["创业者","资源整合者","技术达人","投资人","产品经理","流量操盘手"],jr=A=>{Tt(A),Pi(A.vipRole||""),Ii(!0)},Dl=A=>{Cn(A),lr((A.webhookUrl||"").trim()),Ur(!0)},kr=async A=>{const je=A.trim();if(qs){if(!je){ne.error("请选择或输入标签");return}Ri(!0);try{const Ae=await Zt("/api/db/users",{id:qs.id,vipRole:je});if(!(Ae!=null&&Ae.success)){ne.error((Ae==null?void 0:Ae.error)||"更新超级个体标签失败");return}ne.success("已更新超级个体标签"),Ii(!1),Tt(null),await zs()}catch{ne.error("更新超级个体标签失败")}finally{Ri(!1)}}},$s=async()=>{if(!wr)return;const A=ds.trim();if(A&&!/^https?:\/\//i.test(A)){ne.error("Webhook 地址需以 http/https 开头");return}fa(!0);try{const je=await Zt("/api/db/vip-members/webhook",{userId:wr.id,webhookUrl:A});if(!(je!=null&&je.success)){ne.error((je==null?void 0:je.error)||"保存飞书群 Webhook 失败");return}ne.success(A?"已保存该超级个体的飞书群 Webhook":"已清空该超级个体的飞书群 Webhook"),Ur(!1),Cn(null),await zs()}catch{ne.error("保存飞书群 Webhook 失败")}finally{fa(!1)}},[_l,ma]=b.useState(!1),[js,Sr]=b.useState(null),[qa,xa]=b.useState(""),[Gs,ks]=b.useState(!1),Ga=A=>{Sr(A),xa(A.vipSort!=null?String(A.vipSort):""),ma(!0)},Wr=async()=>{if(!js)return;const A=Number(qa);if(!Number.isFinite(A)){ne.error("请输入有效的数字序号");return}ks(!0);try{const je=await Zt("/api/db/users",{id:js.id,vipSort:A});if(!(je!=null&&je.success)){ne.error((je==null?void 0:je.error)||"更新排序序号失败");return}ne.success("已更新排序序号"),ma(!1),Sr(null),await zs()}catch{ne.error("更新排序序号失败")}finally{ks(!1)}},Yc=(A,je)=>{A.dataTransfer.effectAllowed="move",A.dataTransfer.setData("text/plain",je),St(je)},Oi=(A,je)=>{A.preventDefault(),vt!==je&&L(je)},Ja=()=>{St(null),L(null)},Li=async(A,je)=>{A.preventDefault();const Ae=A.dataTransfer.getData("text/plain")||Ze;if(St(null),L(null),!Ae||Ae===je)return;const $e=bn.find(ct=>ct.id===Ae),et=bn.find(ct=>ct.id===je);if(!$e||!et)return;const gt=$e.vipSort??bn.findIndex(ct=>ct.id===Ae)+1,Nn=et.vipSort??bn.findIndex(ct=>ct.id===je)+1;ge(ct=>{const T=[...ct],z=T.findIndex(Ot=>Ot.id===Ae),ue=T.findIndex(Ot=>Ot.id===je);if(z===-1||ue===-1)return ct;const we=[...T],[Qe,dt]=[we[z],we[ue]];return we[z]={...dt,vipSort:gt},we[ue]={...Qe,vipSort:Nn},we});try{const[ct,T]=await Promise.all([Zt("/api/db/users",{id:Ae,vipSort:Nn}),Zt("/api/db/users",{id:je,vipSort:gt})]);if(!(ct!=null&&ct.success)||!(T!=null&&T.success)){ne.error((ct==null?void 0:ct.error)||(T==null?void 0:T.error)||"更新排序失败"),await zs();return}ne.success("已更新排序"),await zs()}catch{ne.error("更新排序失败"),await zs()}},Di=b.useCallback(async()=>{pt(!0);try{const A=await Le("/api/db/users/journey-stats");A!=null&&A.success&&A.stats&&xt(A.stats)}catch{}finally{pt(!1)}},[]),Cr=b.useCallback(async A=>{At(A),Ws(!0);try{const je=await Le(`/api/db/users/journey-users?stage=${A}&limit=50`);je!=null&&je.success&&je.users&&en(je.users)}catch{}finally{Ws(!1)}},[]),Qa=b.useCallback(async(A,je)=>{za(A),Fa(je),ir(!0);try{const Ae=await Le(`/api/db/users/tracks?userId=${A}&limit=50`);Ae!=null&&Ae.success&&Ae.tracks&&Br(Ae.tracks)}catch{}finally{ir(!1)}},[]),[Ya,_i]=b.useState(!1),ga=async()=>{_i(!0);try{const A=await Et("/api/admin/shensheshou/batch-enrich",{limit:20});A!=null&&A.success?(ne.success(`批量补全完成:${A.enriched} 人已补全,${A.skipped} 人跳过`),Hr()):ne.error((A==null?void 0:A.error)||"批量补全失败")}catch{ne.error("批量补全请求失败")}finally{_i(!1)}},zi=A=>{const je=[A.phone,A.nickname,A.avatar,A.wechatId,A.mbti,A.industry,A.region,A.position],Ae=je.filter($e=>$e!=null&&$e!=="").length;return Math.round(Ae/je.length*100)},{leadsRows:Ho,leadsRawCount:us,leadsDeduped:Kr}=b.useMemo(()=>{const A=ct=>(ct||"").replace(/\D/g,"")||"",je=ct=>{const T=A(ct.phone);if(T)return`phone:${T}`;const z=(ct.userId||"").trim();if(z)return`user:${z}`;const ue=(ct.wechatId||"").trim();return ue?`wechat:${ue}`:`row:${ct.id}`},Ae=vn.trim().toLowerCase();let $e=Ds;Ae&&($e=Ds.filter(ct=>[ct.userNickname,ct.name,ct.phone,ct.wechatId,ct.personName,ct.source,String(ct.ckbPlanId??"")].filter(Boolean).join(" ").toLowerCase().includes(Ae)));const et=[...$e].sort((ct,T)=>{const z=ct.createdAt?new Date(ct.createdAt).getTime():0;return(T.createdAt?new Date(T.createdAt).getTime():0)-z}),gt=new Set,Nn=[];for(const ct of et){const T=je(ct);gt.has(T)||(gt.add(T),Nn.push(ct))}return{leadsRows:Nn,leadsRawCount:$e.length,leadsDeduped:$e.length-Nn.length}},[Ds,vn]);return s.jsxs("div",{className:"p-8 w-full",children:[$&&s.jsxs("div",{className:"mb-4 px-4 py-3 rounded-lg bg-red-500/20 border border-red-500/50 text-red-400 text-sm flex items-center justify-between",children:[s.jsx("span",{children:$}),s.jsx("button",{type:"button",onClick:()=>V(null),children:"×"})]}),s.jsxs("div",{className:"flex justify-between items-start gap-6 mb-6 flex-wrap",children:[s.jsxs("div",{className:"min-w-0",children:[s.jsx("h2",{className:"text-2xl font-bold text-white",children:"用户管理"}),s.jsxs("p",{className:"text-gray-400 mt-1 text-sm",children:["共 ",c," 位注册用户",Ha!==null&&s.jsxs("span",{className:"text-[#38bdac] ml-1",children:["· 在线 ",Ha," 人"]}),I&&" · RFM 排序中"]})]}),s.jsx(De,{className:"shrink-0 w-full max-w-md border-[#38bdac]/35 bg-[#0f2137]/90",children:s.jsxs(_e,{className:"p-3 sm:p-4 space-y-3",children:[s.jsxs("div",{className:"flex flex-wrap items-center justify-between gap-2",children:[s.jsxs("button",{type:"button",onClick:()=>B(A=>!A),className:"flex items-center gap-2 min-w-0 flex-1 text-left rounded-lg px-1 py-0.5 hover:bg-white/5 transition-colors","aria-expanded":Q,children:[s.jsx(tf,{className:"w-5 h-5 text-[#38bdac] shrink-0"}),s.jsxs("div",{className:"min-w-0",children:[s.jsx("div",{className:"text-sm font-semibold text-white",children:"算法配置"}),s.jsx("div",{className:"text-xs text-gray-500 truncate",children:Q?"RFM · Are you good(用户价值分层)":"RFM · 点击展开说明"})]}),Q?s.jsx(ug,{className:"w-4 h-4 text-gray-400 shrink-0"}):s.jsx(Ec,{className:"w-4 h-4 text-gray-400 shrink-0"})]}),s.jsx(Y,{type:"button",variant:"outline",size:"sm",onClick:Ll,className:"border-[#38bdac]/50 text-[#38bdac] hover:bg-[#38bdac]/10 bg-transparent shrink-0",children:I?re==="desc"?"RFM 降序":"RFM 升序":"按 RFM 排序"})]}),Q&&s.jsxs(s.Fragment,{children:[s.jsxs("p",{className:"text-xs text-gray-400 leading-relaxed",children:["综合分 0–100(六维度):最近消费 R(25%)+ 订单频次 F(20%)+ 累计金额 M(20%)+ 推荐人数(15%)+ 行为轨迹(10%)+ 资料完善(10%)。各维度在全量用户中归一化,与后端"," ",s.jsx("code",{className:"text-gray-500",children:"/api/db/users/rfm"})," 一致。"]}),s.jsx("div",{className:"flex flex-wrap gap-1.5",children:XR.map(({level:A,range:je,label:Ae})=>s.jsxs(Ue,{variant:"outline",className:`text-[10px] border-0 ${Mi(A)}`,children:[A," ",je," · ",Ae]},A))})]})]})})]}),s.jsxs(Ic,{value:a,onValueChange:A=>{const je=new URLSearchParams(t);A==="users"?je.delete("tab"):je.set("tab",A),e(je)},className:"w-full",children:[s.jsxs(vl,{className:"bg-[#0a1628] border border-gray-700/50 p-1 mb-6 flex-wrap h-auto gap-1",children:[s.jsxs(nn,{value:"users",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",children:[s.jsx(_n,{className:"w-4 h-4"})," 用户列表"]}),s.jsxs(nn,{value:"leads",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:()=>vr(),children:[s.jsx(vc,{className:"w-4 h-4"})," 获客列表"]}),s.jsxs(nn,{value:"journey",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:Di,children:[s.jsx(ea,{className:"w-4 h-4"})," 用户旅程总览"]}),s.jsxs(nn,{value:"rules",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:_s,children:[s.jsx(mo,{className:"w-4 h-4"})," 规则配置"]}),s.jsxs(nn,{value:"vip-roles",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:zs,children:[s.jsx(wc,{className:"w-4 h-4"})," 超级个体列表"]})]}),s.jsxs(sn,{value:"users",children:[s.jsxs("div",{className:"flex items-center gap-3 mb-4 justify-end flex-wrap",children:[s.jsxs(Y,{variant:"outline",onClick:ga,disabled:Ya,className:"border-purple-500/50 text-purple-400 hover:bg-purple-500/10 bg-transparent",title:"批量调用神射手补全有手机号用户的资料",children:[Ya?s.jsx(Ve,{className:"w-4 h-4 mr-2 animate-spin"}):s.jsx(ji,{className:"w-4 h-4 mr-2"}),"批量补全"]}),s.jsxs(Y,{variant:"outline",onClick:()=>Hr(!0),disabled:O,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${O?"animate-spin":""}`})," 刷新"]}),s.jsxs("select",{value:k,onChange:A=>{const je=A.target.value;E(je),f(1),n&&(t.delete("pool"),e(t))},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",disabled:I,children:[s.jsx("option",{value:"all",children:"全部用户"}),s.jsx("option",{value:"vip",children:"VIP会员(超级个体)"}),s.jsx("option",{value:"complete",children:"完善资料用户"})]}),s.jsxs("div",{className:"relative",children:[s.jsx(Aa,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-500"}),s.jsx(ce,{type:"text",placeholder:"搜索用户...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white placeholder:text-gray-500 w-56",value:y,onChange:A=>v(A.target.value)})]}),s.jsxs(Y,{onClick:Ai,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(vc,{className:"w-4 h-4 mr-2"})," 添加用户"]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:s.jsx(_e,{className:"p-0",children:C?s.jsxs("div",{className:"flex items-center justify-center py-12",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):s.jsxs("div",{children:[s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"用户信息"}),s.jsx(ke,{className:"text-gray-400",children:"绑定信息"}),s.jsx(ke,{className:"text-gray-400",children:"购买状态"}),s.jsx(ke,{className:"text-gray-400",children:"分销收益"}),s.jsxs(ke,{className:"text-gray-400 cursor-pointer select-none",onClick:Ll,children:[s.jsxs("div",{className:"flex items-center gap-1 group",children:[s.jsx(tf,{className:"w-3.5 h-3.5"}),s.jsx("span",{children:"RFM分值"}),I?re==="desc"?s.jsx(Ec,{className:"w-3.5 h-3.5 text-[#38bdac]"}):s.jsx(ug,{className:"w-3.5 h-3.5 text-[#38bdac]"}):s.jsx(cx,{className:"w-3.5 h-3.5 text-gray-600 group-hover:text-gray-400"})]}),I&&s.jsx("div",{className:"text-[10px] text-[#38bdac] font-normal mt-0.5",children:"点击切换方向/关闭"})]}),s.jsx(ke,{className:"text-gray-400",children:"资料完善"}),s.jsx(ke,{className:"text-gray-400",children:"注册时间"}),s.jsx(ke,{className:"text-right text-gray-400",children:"操作"})]})}),s.jsxs(bs,{children:[i.map(A=>{var je,Ae,$e;return s.jsxs(ht,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[s.jsx(be,{children:s.jsxs("div",{className:"flex items-center gap-3",children:[(()=>{var Nn;const et=cs(A.avatar,A.mbti),gt=((Nn=A.nickname)==null?void 0:Nn.charAt(0))||"?";return s.jsx("button",{type:"button",title:"点击管理 MBTI 默认头像库",onClick:()=>kt(!0),className:"w-10 h-10 shrink-0 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm font-medium text-[#38bdac] overflow-hidden ring-1 ring-transparent hover:ring-[#38bdac]/60 transition",children:et?s.jsx("img",{src:et,className:"w-full h-full rounded-full object-cover",alt:"",onError:ct=>{var ue;const T=ct.target;if(T.style.display="none",T.nextElementSibling)return;const z=document.createElement("span");z.textContent=gt,(ue=T.parentElement)==null||ue.appendChild(z)}}):gt})})(),s.jsxs("div",{className:"min-w-0",children:[s.jsxs("div",{className:"flex items-center gap-1.5",children:[s.jsx("button",{type:"button",onClick:()=>{Fe(A.id),ye(!0)},className:"font-medium text-[#38bdac] hover:text-[#2da396] hover:underline text-left truncate max-w-[120px]",children:A.nickname}),A.isAdmin&&s.jsx(Ue,{className:"bg-purple-500/20 text-purple-400 hover:bg-purple-500/20 border-0 text-xs",children:"管理员"}),A.openId&&!((je=A.id)!=null&&je.startsWith("user_"))&&s.jsx(Ue,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0 text-xs",children:"微信"})]}),s.jsxs("p",{className:"text-xs text-gray-500 font-mono truncate max-w-[140px]",title:A.id,children:[(Ae=A.id)==null?void 0:Ae.slice(0,16),((($e=A.id)==null?void 0:$e.length)??0)>16?"…":""]})]})]})}),s.jsx(be,{children:s.jsxs("div",{className:"space-y-1",children:[A.phone&&s.jsxs("div",{className:"flex items-center gap-1 text-xs",children:[s.jsx("span",{className:"text-gray-500",children:"📱"}),s.jsx("span",{className:"text-gray-300",children:A.phone})]}),A.wechatId&&s.jsxs("div",{className:"flex items-center gap-1 text-xs",children:[s.jsx("span",{className:"text-gray-500",children:"💬"}),s.jsx("span",{className:"text-gray-300",children:A.wechatId})]}),!A.phone&&!A.wechatId&&s.jsx("span",{className:"text-gray-600 text-xs",children:"未绑定"})]})}),s.jsx(be,{children:(()=>{const et=Ei(A);return et.tone==="vip"?s.jsxs("div",{className:"space-y-1",children:[s.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 hover:bg-amber-500/20 border-0",children:et.main}),et.sub&&s.jsx("p",{className:"text-[11px] text-amber-300/80",children:et.sub})]}):et.tone==="paid"?s.jsxs("div",{className:"space-y-1",children:[s.jsx(Ue,{className:"bg-blue-500/20 text-blue-400 hover:bg-blue-500/20 border-0",children:et.main}),et.sub&&s.jsx("p",{className:"text-[11px] text-blue-300/80",children:et.sub})]}):s.jsx(Ue,{variant:"outline",className:"text-gray-500 border-gray-600",children:et.main})})()}),s.jsx(be,{children:s.jsxs("div",{className:"space-y-1",children:[s.jsxs("div",{className:"text-white font-medium",children:["¥",parseFloat(String(A.earnings||0)).toFixed(2)]}),parseFloat(String(A.pendingEarnings||0))>0&&s.jsxs("div",{className:"text-xs text-yellow-400",children:["待提现: ¥",parseFloat(String(A.pendingEarnings||0)).toFixed(2)]}),s.jsxs("div",{className:"text-xs text-[#38bdac] cursor-pointer hover:underline flex items-center gap-1",onClick:()=>Wa(A),role:"button",tabIndex:0,onKeyDown:et=>et.key==="Enter"&&Wa(A),children:[s.jsx(_n,{className:"w-3 h-3"})," 绑定",A.referralCount||0,"人"]})]})}),s.jsx(be,{children:A.rfmScore!=null&&A.rfmScore!==void 0?s.jsxs("div",{className:"flex items-center gap-1.5",children:[s.jsx("span",{className:"text-white font-bold text-base",children:A.rfmScore}),s.jsx(Ue,{className:`border-0 text-xs ${Mi(A.rfmLevel)}`,children:A.rfmLevel})]}):s.jsx("span",{className:"text-gray-600 text-xs",children:"无订单"})}),s.jsx(be,{children:(()=>{const et=zi(A),gt=et>=75?"text-green-400":et>=50?"text-yellow-400":"text-gray-500";return s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("div",{className:"w-12 h-1.5 bg-gray-700 rounded-full overflow-hidden",children:s.jsx("div",{className:`h-full rounded-full ${et>=75?"bg-green-500":et>=50?"bg-yellow-500":"bg-gray-500"}`,style:{width:`${et}%`}})}),s.jsxs("span",{className:`text-xs ${gt}`,children:[et,"%"]})]})})()}),s.jsx(be,{className:"text-gray-400",children:A.createdAt?new Date(A.createdAt).toLocaleDateString():"-"}),s.jsx(be,{className:"text-right",children:s.jsxs("div",{className:"flex items-center justify-end gap-1",children:[s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>{Fe(A.id),ye(!0)},className:"text-gray-400 hover:text-blue-400 hover:bg-blue-400/10",title:"用户详情",children:s.jsx(ef,{className:"w-4 h-4"})}),s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>Ua(A),className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",title:"编辑用户",children:s.jsx(tn,{className:"w-4 h-4"})}),s.jsx(Y,{variant:"ghost",size:"sm",className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",onClick:()=>Jc(A.id),title:"删除",children:s.jsx(Ms,{className:"w-4 h-4"})})]})})]},A.id)}),i.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:8,className:"text-center py-12 text-gray-500",children:"暂无用户数据"})})]})]}),s.jsx(sr,{page:h,totalPages:ws,total:c,pageSize:m,onPageChange:f,onPageSizeChange:A=>{x(A),f(1)}})]})})})]}),s.jsxs(sn,{value:"leads",children:[Xn&&s.jsxs("div",{className:"mb-4 px-4 py-3 rounded-lg bg-red-500/20 border border-red-500/50 text-red-400 text-sm flex items-center justify-between",children:[s.jsx("span",{children:Xn}),s.jsx("button",{type:"button",className:"shrink-0 ml-2",onClick:()=>Ks(null),"aria-label":"关闭",children:"×"})]}),!$t&&s.jsxs("div",{className:"grid grid-cols-2 sm:grid-cols-4 gap-3 mb-4",children:[s.jsxs("div",{className:"p-3 bg-[#0f2137] border border-gray-700/50 rounded-lg",children:[s.jsx("p",{className:"text-gray-500 text-xs",children:"总留资条数"}),s.jsx("p",{className:"text-xl font-bold text-white",children:br})]}),s.jsxs("div",{className:"p-3 bg-[#0f2137] border border-gray-700/50 rounded-lg",children:[s.jsx("p",{className:"text-gray-500 text-xs",children:"去重用户数(按 userId)"}),s.jsx("p",{className:"text-xl font-bold text-[#38bdac]",title:"后端 COUNT(DISTINCT user_id)",children:Ft.uniqueUsers??0})]}),(Ft.sourceStats&&Ft.sourceStats.length>0?Ft.sourceStats.slice(0,2):[]).map(A=>s.jsxs("div",{className:"p-3 bg-[#0f2137] border border-gray-700/50 rounded-lg",children:[s.jsxs("p",{className:"text-gray-500 text-xs",children:["来源:",A.source]}),s.jsx("p",{className:"text-xl font-bold text-purple-400",children:A.cnt})]},A.source))]}),s.jsxs("div",{className:"flex flex-wrap items-center justify-between gap-3 mb-4",children:[s.jsxs("div",{className:"flex flex-wrap items-center gap-2 flex-1 min-w-[200px]",children:[s.jsxs("div",{className:"relative flex-1 max-w-xs",children:[s.jsx(Aa,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-500"}),s.jsx(ce,{placeholder:"搜索昵称/手机/微信/@人/来源…",value:Ba,onChange:A=>Ct(A.target.value),className:"pl-9 bg-[#0f2137] border-gray-700 text-white placeholder:text-gray-500"})]}),Ft.sourceStats&&Ft.sourceStats.length>0&&s.jsxs("select",{value:Va,onChange:A=>{Ol(A.target.value),xe(1)},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:[s.jsx("option",{value:"",children:"全部来源"}),Ft.sourceStats.map(A=>s.jsxs("option",{value:A.source,children:[A.source,"(",A.cnt,")"]},A.source))]}),s.jsxs("span",{className:"text-xs text-gray-500 whitespace-nowrap max-w-[min(100%,20rem)]",title:"同一页内:相同手机号或相同用户 ID(含微信侧标识)只保留最近一条",children:["本页 ",us," 条",Kr>0?` · 已合并 ${Kr} 条重复`:""]})]}),s.jsxs(Y,{variant:"outline",onClick:()=>vr(),disabled:$t,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent shrink-0",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${$t?"animate-spin":""}`})," 刷新"]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:s.jsx(_e,{className:"p-0",children:$t?s.jsxs("div",{className:"flex items-center justify-center py-12",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):s.jsxs("div",{children:[s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"昵称"}),s.jsx(ke,{className:"text-gray-400",children:"手机号"}),s.jsx(ke,{className:"text-gray-400",children:"微信号"}),s.jsx(ke,{className:"text-gray-400",children:"对应 @人"}),s.jsx(ke,{className:"text-gray-400",children:"获客计划"}),s.jsx(ke,{className:"text-gray-400",children:"来源"}),s.jsx(ke,{className:"text-gray-400",children:"时间"})]})}),s.jsxs(bs,{children:[Ho.map(A=>s.jsxs(ht,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[s.jsx(be,{className:"text-gray-300",children:A.userNickname||A.name||"-"}),s.jsx(be,{className:"text-gray-300",children:A.phone||"-"}),s.jsx(be,{className:"text-gray-300",children:A.wechatId||"-"}),s.jsx(be,{className:"text-[#38bdac]",children:A.personName||"-"}),s.jsx(be,{className:"text-gray-400",children:A.ckbPlanId?`#${A.ckbPlanId}`:"-"}),s.jsx(be,{children:s.jsx(Ue,{variant:"outline",className:"text-gray-400 border-gray-600 text-xs",children:A.source||"未知"})}),s.jsx(be,{className:"text-gray-400",children:A.createdAt?new Date(A.createdAt).toLocaleString():"-"})]},A.id)),Ho.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:7,className:"p-0 align-top",children:s.jsxs("div",{className:"py-16 px-6 text-center border-t border-gray-700/40 bg-[#0a1628]/30",children:[s.jsx(vc,{className:"w-14 h-14 text-[#38bdac]/20 mx-auto mb-4","aria-hidden":!0}),s.jsx("p",{className:"text-gray-200 font-medium mb-1",children:"暂无获客线索"}),s.jsx("p",{className:"text-gray-500 text-sm mb-6 max-w-md mx-auto leading-relaxed",children:vn.trim()||Va?"当前搜索或来源筛选下没有匹配记录,可清空条件后重试。":"存客宝场景产生的手机号 / 微信留资会出现在此列表。请确认获客计划已开启,并有用户完成留资。"}),s.jsxs(Y,{type:"button",variant:"outline",onClick:()=>vr(),disabled:$t,className:"border-[#38bdac]/40 text-[#38bdac] hover:bg-[#38bdac]/10 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${$t?"animate-spin":""}`}),"重新加载"]})]})})})]})]}),s.jsx(sr,{page:ie,totalPages:Math.ceil(br/It)||1,total:br,pageSize:It,onPageChange:xe,onPageSizeChange:()=>{}})]})})})]}),s.jsxs(sn,{value:"journey",children:[s.jsxs("div",{className:"flex items-center justify-between mb-5",children:[s.jsx("p",{className:"text-gray-400 text-sm",children:"用户从注册到 VIP 的完整行动路径,点击各阶段查看用户动态"}),s.jsxs(Y,{variant:"outline",onClick:Di,disabled:Rt,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${Rt?"animate-spin":""}`})," 刷新数据"]})]}),s.jsxs("div",{className:"relative mb-8",children:[s.jsx("div",{className:"absolute top-16 left-0 right-0 h-0.5 bg-gradient-to-r from-blue-500/20 via-[#38bdac]/30 to-amber-500/20 mx-20"}),s.jsx("div",{className:"grid grid-cols-4 gap-4 lg:grid-cols-8",children:cc.map((A,je)=>s.jsxs("div",{className:"relative flex flex-col items-center",children:[s.jsxs("div",{className:`relative w-full p-3 rounded-xl border ${A.color} text-center cursor-pointer hover:opacity-80 transition-opacity ${at===A.id?"ring-2 ring-[#38bdac]":""}`,onClick:()=>Cr(A.id),title:`点击查看「${A.label}」阶段的用户`,children:[s.jsx("div",{className:"text-2xl mb-1",children:A.icon}),s.jsx("div",{className:`text-xs font-medium ${A.color.split(" ").find(Ae=>Ae.startsWith("text-"))}`,children:A.label}),Ie[A.id]!==void 0&&s.jsxs("div",{className:"mt-1.5 text-xs text-gray-400",children:[s.jsx("span",{className:"font-bold text-white",children:Ie[A.id]})," 人"]}),s.jsx("div",{className:"absolute -top-2.5 -left-2.5 w-5 h-5 rounded-full bg-[#0a1628] border border-gray-700 flex items-center justify-center text-[10px] text-gray-500",children:je+1})]}),jes.jsxs("div",{className:"flex items-start gap-3 p-2 bg-[#0a1628] rounded",children:[s.jsx("span",{className:"text-[#38bdac] font-mono text-xs shrink-0 mt-0.5",children:A.step}),s.jsxs("div",{children:[s.jsx("p",{className:"text-gray-300",children:A.action}),s.jsxs("p",{className:"text-gray-600 text-xs",children:["→ ",A.next]})]})]},A.step))})]}),s.jsxs("div",{className:"bg-[#0f2137] border border-gray-700/50 rounded-lg p-4",children:[s.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[s.jsx(rr,{className:"w-4 h-4 text-purple-400"}),s.jsx("span",{className:"text-white font-medium",children:"行为锚点统计"}),s.jsx("span",{className:"text-gray-500 text-xs ml-auto",children:"实时更新"})]}),Rt?s.jsx("div",{className:"flex items-center justify-center py-8",children:s.jsx(Ve,{className:"w-5 h-5 text-[#38bdac] animate-spin"})}):Object.keys(Ie).length>0?s.jsx("div",{className:"space-y-2",children:cc.map(A=>{const je=Ie[A.id]||0,Ae=Math.max(...cc.map(et=>Ie[et.id]||0),1),$e=Math.round(je/Ae*100);return s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsxs("span",{className:"text-gray-500 text-xs w-20 shrink-0",children:[A.icon," ",A.label]}),s.jsx("div",{className:"flex-1 h-2 bg-[#0a1628] rounded-full overflow-hidden",children:s.jsx("div",{className:"h-full bg-[#38bdac]/60 rounded-full transition-all",style:{width:`${$e}%`}})}),s.jsx("span",{className:"text-gray-400 text-xs w-10 text-right",children:je})]},A.id)})}):s.jsx("div",{className:"text-center py-8",children:s.jsx("p",{className:"text-gray-500 text-sm",children:"点击「刷新数据」加载统计"})})]})]}),at&&s.jsxs("div",{className:"mt-6 bg-[#0f2137] border border-gray-700/50 rounded-lg p-4",children:[s.jsxs("div",{className:"flex items-center justify-between mb-3",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(_n,{className:"w-4 h-4 text-[#38bdac]"}),s.jsxs("span",{className:"text-white font-medium",children:[($i=cc.find(A=>A.id===at))==null?void 0:$i.icon," ",(ya=cc.find(A=>A.id===at))==null?void 0:ya.label," 阶段用户"]}),s.jsxs(Ue,{className:"bg-[#38bdac]/10 text-[#38bdac] border border-[#38bdac]/30 text-xs",children:[Kt.length," 人"]})]}),s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>At(null),className:"text-gray-400 hover:text-white",children:s.jsx(ss,{className:"w-4 h-4"})})]}),ls?s.jsx("div",{className:"flex items-center justify-center py-8",children:s.jsx(Ve,{className:"w-5 h-5 text-[#38bdac] animate-spin"})}):Kt.length===0?s.jsx("p",{className:"text-gray-500 text-center py-6",children:"该阶段暂无用户"}):s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"昵称"}),s.jsx(ke,{className:"text-gray-400",children:"手机号"}),s.jsx(ke,{className:"text-gray-400",children:"注册时间"}),s.jsx(ke,{className:"text-gray-400 text-right",children:"操作"})]})}),s.jsx(bs,{children:Kt.map(A=>s.jsxs(ht,{className:"border-gray-700/50 hover:bg-[#0a1628]",children:[s.jsx(be,{className:"text-white",children:A.nickname||"微信用户"}),s.jsx(be,{className:"text-gray-300",children:A.phone||"-"}),s.jsx(be,{className:"text-gray-400 text-xs",children:A.createdAt?new Date(A.createdAt).toLocaleString("zh-CN"):"-"}),s.jsx(be,{className:"text-right",children:s.jsxs(Y,{variant:"ghost",size:"sm",className:"text-[#38bdac] hover:bg-[#38bdac]/10",onClick:()=>Qa(A.id,A.nickname||"微信用户"),children:[s.jsx(ef,{className:"w-4 h-4 mr-1"})," 行为轨迹"]})})]},A.id))})]})]}),s.jsx(Bt,{open:!!Fr,onOpenChange:A=>{A||za(null)},children:s.jsxs(zt,{className:"sm:max-w-[600px] bg-[#0f2137] border-gray-700 text-white max-h-[80vh] overflow-y-auto",children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(ea,{className:"w-5 h-5 text-[#38bdac]"}),$a," 的行为轨迹"]})}),yr?s.jsx("div",{className:"flex items-center justify-center py-12",children:s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"})}):oa.length===0?s.jsx("p",{className:"text-gray-500 text-center py-8",children:"该用户暂无行为记录"}):s.jsxs("div",{className:"relative pl-6 space-y-0",children:[s.jsx("div",{className:"absolute left-[11px] top-2 bottom-2 w-0.5 bg-gray-700"}),oa.map((A,je)=>s.jsxs("div",{className:"relative flex items-start gap-3 py-2",children:[s.jsx("div",{className:"absolute left-[-13px] top-3 w-2.5 h-2.5 rounded-full bg-[#38bdac] border-2 border-[#0f2137] z-10"}),s.jsxs("div",{className:"flex-1 min-w-0",children:[s.jsxs("div",{className:"flex items-center gap-2 flex-wrap",children:[s.jsx("span",{className:"text-white text-sm font-medium",children:A.actionLabel}),A.module&&s.jsx(Ue,{className:"bg-purple-500/10 text-purple-400 border border-purple-500/30 text-[10px]",children:A.module})]}),(A.chapterTitle||A.target)&&s.jsx("p",{className:"text-gray-400 text-xs mt-0.5 truncate",children:A.chapterTitle||A.target}),s.jsxs("p",{className:"text-gray-600 text-[10px] mt-0.5",children:[A.timeAgo," · ",A.createdAt?new Date(A.createdAt).toLocaleString("zh-CN"):""]})]})]},A.id||je))]})]})})]}),s.jsxs(sn,{value:"rules",children:[s.jsxs("div",{className:"mb-4 flex items-center justify-between",children:[s.jsx("p",{className:"text-gray-400 text-sm",children:"用户旅程触达规则:各行为节点的触发条件与展示文案(偏利他说明,少用命令式)"}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsxs(Y,{variant:"outline",onClick:_s,disabled:yn,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${yn?"animate-spin":""}`})," 刷新"]}),s.jsxs(Y,{onClick:()=>{Wn(null),pn({title:"",description:"",trigger:"",triggerConditions:[],actionType:"popup",sort:0,enabled:!0}),Sn(!0)},className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"})," 添加规则"]})]})]}),yn?s.jsx("div",{className:"flex items-center justify-center py-12",children:s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"})}):Pt.length===0?s.jsxs("div",{className:"text-center py-16 bg-[#0f2137] rounded-lg border border-gray-700/50",children:[s.jsx(rr,{className:"w-12 h-12 text-[#38bdac]/30 mx-auto mb-4"}),s.jsx("p",{className:"text-gray-400 mb-4",children:"暂无规则(重启服务将自动写入10条默认规则)"}),s.jsxs(Y,{onClick:_s,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(Ve,{className:"w-4 h-4 mr-2"})," 重新加载"]})]}):s.jsx("div",{className:"space-y-2",children:Pt.map(A=>{var Ae;const je=r2(A.triggerConditions);return s.jsxs("div",{className:`p-3 rounded-lg border transition-all ${A.enabled?"bg-[#0f2137] border-gray-700/50":"bg-[#0a1628]/50 border-gray-700/30 opacity-55"}`,children:[s.jsxs("div",{className:"flex items-center justify-between",children:[s.jsxs("div",{className:"flex items-center gap-2 flex-1 min-w-0",children:[s.jsxs("span",{className:"text-gray-600 text-xs font-mono w-5 shrink-0 text-right",children:["#",A.sort]}),s.jsx(tn,{className:"w-3.5 h-3.5 text-[#38bdac] shrink-0"}),s.jsx("span",{className:"text-white font-medium text-sm truncate",children:A.title}),A.trigger&&s.jsx(Ue,{className:"bg-[#38bdac]/10 text-[#38bdac] border border-[#38bdac]/30 text-[10px] shrink-0",children:A.trigger}),je.length>0&&s.jsxs("div",{className:"flex flex-wrap gap-0.5 ml-1",children:[je.slice(0,3).map($e=>{const et=F1.find(gt=>gt.value===$e);return s.jsx(Ue,{className:"bg-purple-500/10 text-purple-400 border border-purple-500/30 text-[9px]",children:(et==null?void 0:et.label)||$e},$e)}),je.length>3&&s.jsxs("span",{className:"text-gray-500 text-[9px]",children:["+",je.length-3]})]}),A.actionType&&A.actionType!=="popup"&&s.jsx(Ue,{className:"bg-amber-500/10 text-amber-400 border border-amber-500/30 text-[9px] shrink-0",children:((Ae=B1.find($e=>$e.value===A.actionType))==null?void 0:Ae.label)||A.actionType})]}),s.jsxs("div",{className:"flex items-center gap-1.5 ml-3 shrink-0",children:[s.jsx(Ut,{checked:A.enabled,onCheckedChange:()=>Vo(A)}),s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>{Wn(A),pn({title:A.title,description:A.description,trigger:A.trigger,triggerConditions:je,actionType:A.actionType||"popup",sort:A.sort,enabled:A.enabled}),Sn(!0)},className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10 h-7 w-7 p-0",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>Bo(A.id),className:"text-red-400 hover:text-red-300 hover:bg-red-500/10 h-7 w-7 p-0",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})})]})]}),A.description&&s.jsxs("details",{className:"ml-[52px] mt-1",children:[s.jsxs("summary",{className:"text-gray-500 text-xs cursor-pointer hover:text-gray-400 select-none",children:["查看完整描述",s.jsxs("span",{className:"text-gray-600 ml-1",children:["(",A.description.length," 字,默认折叠)"]})]}),s.jsx("p",{className:"text-gray-400 text-sm mt-1 pl-1 border-l-2 border-gray-700 whitespace-pre-wrap",children:A.description})]})]},A.id)})})]}),s.jsxs(sn,{value:"vip-roles",children:[s.jsxs("div",{className:"mb-4 flex items-center justify-between",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsx("p",{className:"text-gray-400 text-sm",children:"展示当前所有有效的超级个体(VIP 用户),用于检查会员信息与排序值。"}),s.jsx("p",{className:"text-xs text-[#38bdac]",children:"提示:按住任意一行即可拖拽排序,释放后将同步更新小程序展示顺序。"})]}),s.jsx("div",{className:"flex items-center gap-2",children:s.jsxs(Y,{variant:"outline",onClick:zs,disabled:Ce,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${Ce?"animate-spin":""}`})," ","刷新"]})})]}),Ce?s.jsxs("div",{className:"flex items-center justify-center py-12",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):bn.length===0?s.jsxs("div",{className:"text-center py-16 bg-[#0f2137] rounded-lg border border-gray-700/50",children:[s.jsx(wc,{className:"w-12 h-12 text-amber-400/30 mx-auto mb-4"}),s.jsx("p",{className:"text-gray-400 mb-4",children:"当前没有有效的超级个体用户。"})]}):s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:s.jsx(_e,{className:"p-0",children:s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400 w-12",children:"序号"}),s.jsx(ke,{className:"text-gray-400",children:"成员"}),s.jsx(ke,{className:"text-gray-400 min-w-40",children:"超级个体标签"}),s.jsx(ke,{className:"text-gray-400 w-16 text-center",children:"头像点击"}),s.jsx(ke,{className:"text-gray-400 w-16 text-center",children:"获客数"}),s.jsx(ke,{className:"text-gray-400 w-20",children:"排序值"}),s.jsx(ke,{className:"text-gray-400 w-36",children:"飞书群"}),s.jsx(ke,{className:"text-gray-400 w-36 text-right",children:"操作"})]})}),s.jsx(bs,{children:bn.map((A,je)=>{var et;const Ae=Ze===A.id,$e=vt===A.id;return s.jsxs(ht,{draggable:!0,onDragStart:gt=>Yc(gt,A.id),onDragOver:gt=>Oi(gt,A.id),onDrop:gt=>Li(gt,A.id),onDragEnd:Ja,className:`border-gray-700/50 cursor-grab active:cursor-grabbing select-none ${Ae?"opacity-60":""} ${$e?"bg-[#38bdac]/10":""}`,children:[s.jsx(be,{className:"text-gray-300",children:je+1}),s.jsx(be,{children:s.jsxs("div",{className:"flex items-center gap-3",children:[cs(A.avatar,A.mbti)?s.jsx("img",{src:cs(A.avatar,A.mbti),className:"w-8 h-8 rounded-full object-cover border border-amber-400/60",alt:"",onError:gt=>{var ct,T;gt.target.style.display="none";const Nn=document.createElement("div");Nn.className="w-8 h-8 rounded-full bg-amber-500/20 border border-amber-400/60 flex items-center justify-center text-amber-300 text-sm",Nn.textContent=((ct=A.name)==null?void 0:ct[0])||"创",(T=gt.target.parentElement)==null||T.appendChild(Nn)}}):s.jsx("div",{className:"w-8 h-8 rounded-full bg-amber-500/20 border border-amber-400/60 flex items-center justify-center text-amber-300 text-sm",children:((et=A.name)==null?void 0:et[0])||"创"}),s.jsx("div",{className:"min-w-0",children:s.jsx("div",{className:"text-white text-sm truncate",children:A.name})})]})}),s.jsx(be,{className:"text-gray-300 whitespace-nowrap",children:A.vipRole||s.jsx("span",{className:"text-gray-500",children:"(未设置)"})}),s.jsx(be,{className:"text-center text-blue-400 text-xs font-mono",children:A.clickCount!=null?String(A.clickCount):"-"}),s.jsx(be,{className:"text-center text-green-400 text-xs font-mono",children:A.leadCount!=null?String(A.leadCount):"-"}),s.jsx(be,{className:"text-gray-300",children:A.vipSort??je+1}),s.jsx(be,{className:"text-xs",children:A.webhookUrl?s.jsx("span",{className:"text-[#38bdac] truncate block max-w-[180px]",title:A.webhookUrl,children:"已配置"}):s.jsx("span",{className:"text-gray-500",children:"未配置"})}),s.jsx(be,{className:"text-right text-xs text-gray-300",children:s.jsxs("div",{className:"inline-flex items-center gap-1.5",children:[s.jsx(Y,{variant:"ghost",size:"sm",className:"h-7 w-7 px-0 text-amber-300 hover:text-amber-200",onClick:()=>jr(A),title:"设置超级个体标签",children:s.jsx(Dd,{className:"w-3.5 h-3.5"})}),s.jsx(Y,{variant:"ghost",size:"sm",className:"h-7 w-7 px-0 text-[#38bdac] hover:text-[#5fe0cd]",onClick:()=>Dl(A),title:"编辑飞书群Webhook",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),s.jsx(Y,{variant:"ghost",size:"sm",className:"h-7 w-7 px-0 text-sky-300 hover:text-sky-200",onClick:()=>Ga(A),title:"设置排序序号",children:s.jsx(cx,{className:"w-3.5 h-3.5"})})]})})]},A.id)})})]})})})]})]}),s.jsx(Bt,{open:mt,onOpenChange:kt,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-6xl",children:[s.jsx(Vt,{children:s.jsx(Ht,{className:"text-white",children:"MBTI 默认头像库"})}),s.jsx(QR,{})]})}),s.jsx(Bt,{open:_l,onOpenChange:A=>{ma(A),A||Sr(null)},children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-sm",children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(cx,{className:"w-5 h-5 text-[#38bdac]"}),"设置排序 — ",js==null?void 0:js.name]})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"排序序号(数字越小越靠前)"}),s.jsx(ce,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:1",value:qa,onChange:A=>xa(A.target.value)})]}),s.jsxs(xn,{children:[s.jsxs(Y,{variant:"outline",onClick:()=>ma(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(ss,{className:"w-4 h-4 mr-2"}),"取消"]}),s.jsxs(Y,{onClick:Wr,disabled:Gs,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),Gs?"保存中...":"保存"]})]})]})}),s.jsx(Bt,{open:ua,onOpenChange:A=>{Ii(A),A||Tt(null)},children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(wc,{className:"w-5 h-5 text-amber-400"}),"设置超级个体标签 — ",qs==null?void 0:qs.name]})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"选择或输入标签"}),s.jsx("div",{className:"flex flex-wrap gap-2",children:pa.map(A=>s.jsx(Y,{variant:ha===A?"default":"outline",size:"sm",className:ha===A?"bg-[#38bdac] hover:bg-[#2da396] text-white":"border-gray-600 text-gray-300 hover:bg-gray-700/50",onClick:()=>Pi(A),children:A},A))}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"或手动输入"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:创业者、资源整合者等",value:ha,onChange:A=>Pi(A.target.value)})]})]}),s.jsxs(xn,{children:[s.jsxs(Y,{variant:"outline",onClick:()=>Ii(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(ss,{className:"w-4 h-4 mr-2"}),"取消"]}),s.jsxs(Y,{onClick:()=>kr(ha),disabled:Bn,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),Bn?"保存中...":"保存"]})]})]})}),s.jsx(Bt,{open:Ka,onOpenChange:A=>{Ur(A),A||Cn(null)},children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-xl",children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(tn,{className:"w-5 h-5 text-[#38bdac]"}),"设置飞书群 Webhook — ",wr==null?void 0:wr.name]})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"VOX Webhook 地址(留空即清空)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"https://open.feishu.cn/open-apis/bot/v2/hook/...",value:ds,onChange:A=>lr(A.target.value)}),s.jsx("p",{className:"text-xs text-gray-500",children:"当用户点击该超级个体头像并提交链接时,线索将优先推送到这里配置的飞书群。"})]}),s.jsxs(xn,{children:[s.jsxs(Y,{variant:"outline",onClick:()=>Ur(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(ss,{className:"w-4 h-4 mr-2"}),"取消"]}),s.jsxs(Y,{onClick:$s,disabled:cr,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),cr?"保存中...":"保存"]})]})]})}),s.jsx(Bt,{open:J,onOpenChange:F,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[D?s.jsx(tn,{className:"w-5 h-5 text-[#38bdac]"}):s.jsx(vc,{className:"w-5 h-5 text-[#38bdac]"}),D?"编辑用户":"添加用户"]})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"手机号"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"请输入手机号",value:ft.phone,onChange:A=>Dt({...ft,phone:A.target.value})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"昵称"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"请输入昵称",value:ft.nickname,onChange:A=>Dt({...ft,nickname:A.target.value})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:D?"新密码 (留空则不修改)":"密码"}),s.jsx(ce,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:D?"留空则不修改":"请输入密码",value:ft.password,onChange:A=>Dt({...ft,password:A.target.value})})]}),s.jsxs("div",{className:"flex items-center justify-between",children:[s.jsx(ee,{className:"text-gray-300",children:"管理员权限"}),s.jsx(Ut,{checked:ft.isAdmin,onCheckedChange:A=>Dt({...ft,isAdmin:A})})]}),s.jsxs("div",{className:"flex items-center justify-between",children:[s.jsx(ee,{className:"text-gray-300",children:"已购全书"}),s.jsx(Ut,{checked:ft.hasFullBook,onCheckedChange:A=>Dt({...ft,hasFullBook:A})})]})]}),s.jsxs(xn,{children:[s.jsxs(Y,{variant:"outline",onClick:()=>F(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(ss,{className:"w-4 h-4 mr-2"}),"取消"]}),s.jsxs(Y,{onClick:Nr,disabled:oe,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),oe?"保存中...":"保存"]})]})]})}),s.jsx(Bt,{open:Xt,onOpenChange:Sn,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-2xl max-h-[90vh] overflow-y-auto",children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(tn,{className:"w-5 h-5 text-[#38bdac]"}),Fn?"编辑规则":"添加规则"]})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"规则标题 *"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例:匹配后填写头像、付款1980需填写信息",value:Mt.title,onChange:A=>pn({...Mt,title:A.target.value})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"规则描述"}),s.jsx(To,{className:"bg-[#0a1628] border-gray-700 text-white min-h-[60px] resize-none",placeholder:"弹窗内容/推送文案...",value:Mt.description,onChange:A=>pn({...Mt,description:A.target.value})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"触发条件(可多选)"}),s.jsx("div",{className:"space-y-2",children:["用户状态","阅读行为","付费行为","社交行为","分销行为"].map(A=>{const je=F1.filter(Ae=>Ae.group===A);return je.length===0?null:s.jsxs("div",{children:[s.jsx("p",{className:"text-[10px] text-gray-500 mb-1",children:A}),s.jsx("div",{className:"flex flex-wrap gap-1.5",children:je.map(Ae=>{const $e=(Mt.triggerConditions||[]).includes(Ae.value);return s.jsx("button",{type:"button",className:`px-2.5 py-1 rounded-md text-xs border transition-colors ${$e?"bg-[#38bdac]/20 border-[#38bdac]/50 text-[#38bdac]":"bg-[#0a1628] border-gray-700 text-gray-400 hover:border-gray-500"}`,onClick:()=>{const et=Mt.triggerConditions||[],gt=$e?et.filter(Nn=>Nn!==Ae.value):[...et,Ae.value];pn({...Mt,triggerConditions:gt})},children:Ae.label},Ae.value)})})]},A)})}),(Mt.triggerConditions||[]).length>0&&s.jsxs("p",{className:"text-[10px] text-[#38bdac]",children:["已选 ",(Mt.triggerConditions||[]).length," 个触发条件(满足任一即触发)"]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"兼容触发标识(旧版)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white text-xs h-8",placeholder:"与小程序一致:注册、完成付款、update_avatar、update_nickname 等",value:Mt.trigger,onChange:A=>pn({...Mt,trigger:A.target.value})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"推送动作"}),s.jsx("div",{className:"grid grid-cols-2 gap-2",children:B1.map(A=>s.jsxs("button",{type:"button",className:`p-2 rounded-lg border text-left transition-colors ${Mt.actionType===A.value?"bg-[#38bdac]/15 border-[#38bdac]/50":"bg-[#0a1628] border-gray-700 hover:border-gray-500"}`,onClick:()=>pn({...Mt,actionType:A.value}),children:[s.jsx("span",{className:`text-xs font-medium ${Mt.actionType===A.value?"text-[#38bdac]":"text-gray-300"}`,children:A.label}),s.jsx("p",{className:"text-[10px] text-gray-500 mt-0.5",children:A.desc})]},A.value))})]}),s.jsxs("div",{className:"flex items-center justify-between",children:[s.jsx("div",{children:s.jsx(ee,{className:"text-gray-300",children:"启用状态"})}),s.jsx(Ut,{checked:Mt.enabled,onCheckedChange:A=>pn({...Mt,enabled:A})})]})]}),s.jsxs(xn,{children:[s.jsxs(Y,{variant:"outline",onClick:()=>Sn(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(ss,{className:"w-4 h-4 mr-2"}),"取消"]}),s.jsxs(Y,{onClick:Qc,disabled:oe,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),oe?"保存中...":"保存"]})]})]})}),s.jsx(Bt,{open:_,onOpenChange:U,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-2xl max-h-[80vh] overflow-auto",children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"}),"绑定关系 - ",le==null?void 0:le.nickname]})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsxs("div",{className:"grid grid-cols-4 gap-3",children:[s.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[s.jsx("div",{className:"text-2xl font-bold text-[#38bdac]",children:((zl=H.stats)==null?void 0:zl.total)||0}),s.jsx("div",{className:"text-xs text-gray-400",children:"绑定总数"})]}),s.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[s.jsx("div",{className:"text-2xl font-bold text-green-400",children:((Fi=H.stats)==null?void 0:Fi.purchased)||0}),s.jsx("div",{className:"text-xs text-gray-400",children:"已付费"})]}),s.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[s.jsxs("div",{className:"text-2xl font-bold text-yellow-400",children:["¥",(((Bi=H.stats)==null?void 0:Bi.earnings)||0).toFixed(2)]}),s.jsx("div",{className:"text-xs text-gray-400",children:"累计收益"})]}),s.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[s.jsxs("div",{className:"text-2xl font-bold text-orange-400",children:["¥",(((ba=H.stats)==null?void 0:ba.pendingEarnings)||0).toFixed(2)]}),s.jsx("div",{className:"text-xs text-gray-400",children:"待提现"})]})]}),me?s.jsxs("div",{className:"flex items-center justify-center py-8",children:[s.jsx(Ve,{className:"w-5 h-5 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):(((Xa=H.referrals)==null?void 0:Xa.length)??0)>0?s.jsx("div",{className:"space-y-2 max-h-[300px] overflow-y-auto",children:(H.referrals??[]).map((A,je)=>{var $e;const Ae=A;return s.jsxs("div",{className:"flex items-center justify-between bg-[#0a1628] rounded-lg p-3",children:[s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx("div",{className:"w-8 h-8 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm text-[#38bdac]",children:(($e=Ae.nickname)==null?void 0:$e.charAt(0))||"?"}),s.jsxs("div",{children:[s.jsx("div",{className:"text-white text-sm",children:Ae.nickname}),s.jsx("div",{className:"text-xs text-gray-500",children:Ae.phone||(Ae.hasOpenId?"微信用户":"未绑定")})]})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[Ae.status==="vip"&&s.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0 text-xs",children:"全书已购"}),Ae.status==="paid"&&s.jsxs(Ue,{className:"bg-blue-500/20 text-blue-400 border-0 text-xs",children:["已付费",Ae.purchasedSections,"章"]}),Ae.status==="free"&&s.jsx(Ue,{className:"bg-gray-500/20 text-gray-400 border-0 text-xs",children:"未付费"}),s.jsx("span",{className:"text-xs text-gray-500",children:Ae.createdAt?new Date(Ae.createdAt).toLocaleDateString():""})]})]},Ae.id||je)})}):s.jsx("div",{className:"text-center py-8 text-gray-500",children:"暂无绑定用户"})]}),s.jsx(xn,{children:s.jsx(Y,{variant:"outline",onClick:()=>U(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"关闭"})})]})}),s.jsx(_0,{open:ve,onClose:()=>ye(!1),userId:Se,onUserUpdated:Hr})]})}function cf(t,[e,n]){return Math.min(n,Math.max(e,t))}var a2=["PageUp","PageDown"],i2=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],o2={"from-left":["Home","PageDown","ArrowDown","ArrowLeft"],"from-right":["Home","PageDown","ArrowDown","ArrowRight"],"from-bottom":["Home","PageDown","ArrowDown","ArrowLeft"],"from-top":["Home","PageDown","ArrowUp","ArrowLeft"]},Uc="Slider",[wg,e8,t8]=R0(Uc),[l2]=Oo(Uc,[t8]),[n8,fp]=l2(Uc),c2=b.forwardRef((t,e)=>{const{name:n,min:r=0,max:a=100,step:i=1,orientation:o="horizontal",disabled:c=!1,minStepsBetweenThumbs:u=0,defaultValue:h=[r],value:f,onValueChange:m=()=>{},onValueCommit:x=()=>{},inverted:y=!1,form:v,...N}=t,w=b.useRef(new Set),k=b.useRef(0),C=o==="horizontal"?s8:r8,[R=[],O]=yl({prop:f,defaultProp:h,onChange:Q=>{var re;(re=[...w.current][k.current])==null||re.focus(),m(Q)}}),q=b.useRef(R);function $(Q){const B=c8(R,Q);te(Q,B)}function V(Q){te(Q,k.current)}function I(){const Q=q.current[k.current];R[k.current]!==Q&&x(R)}function te(Q,B,{commit:re}={commit:!1}){const ae=f8(i),J=p8(Math.round((Q-r)/i)*i+r,ae),F=cf(J,[r,a]);O((D=[])=>{const P=o8(D,F,B);if(h8(P,u*i)){k.current=P.indexOf(F);const oe=String(P)!==String(D);return oe&&re&&x(P),oe?P:D}else return D})}return s.jsx(n8,{scope:t.__scopeSlider,name:n,disabled:c,min:r,max:a,valueIndexToChangeRef:k,thumbs:w.current,values:R,orientation:o,form:v,children:s.jsx(wg.Provider,{scope:t.__scopeSlider,children:s.jsx(wg.Slot,{scope:t.__scopeSlider,children:s.jsx(C,{"aria-disabled":c,"data-disabled":c?"":void 0,...N,ref:e,onPointerDown:yt(N.onPointerDown,()=>{c||(q.current=R)}),min:r,max:a,inverted:y,onSlideStart:c?void 0:$,onSlideMove:c?void 0:V,onSlideEnd:c?void 0:I,onHomeKeyDown:()=>!c&&te(r,0,{commit:!0}),onEndKeyDown:()=>!c&&te(a,R.length-1,{commit:!0}),onStepKeyDown:({event:Q,direction:B})=>{if(!c){const J=a2.includes(Q.key)||Q.shiftKey&&i2.includes(Q.key)?10:1,F=k.current,D=R[F],P=i*J*B;te(D+P,F,{commit:!0})}}})})})})});c2.displayName=Uc;var[d2,u2]=l2(Uc,{startEdge:"left",endEdge:"right",size:"width",direction:1}),s8=b.forwardRef((t,e)=>{const{min:n,max:r,dir:a,inverted:i,onSlideStart:o,onSlideMove:c,onSlideEnd:u,onStepKeyDown:h,...f}=t,[m,x]=b.useState(null),y=Jt(e,C=>x(C)),v=b.useRef(void 0),N=dp(a),w=N==="ltr",k=w&&!i||!w&&i;function E(C){const R=v.current||m.getBoundingClientRect(),O=[0,R.width],$=z0(O,k?[n,r]:[r,n]);return v.current=R,$(C-R.left)}return s.jsx(d2,{scope:t.__scopeSlider,startEdge:k?"left":"right",endEdge:k?"right":"left",direction:k?1:-1,size:"width",children:s.jsx(h2,{dir:N,"data-orientation":"horizontal",...f,ref:y,style:{...f.style,"--radix-slider-thumb-transform":"translateX(-50%)"},onSlideStart:C=>{const R=E(C.clientX);o==null||o(R)},onSlideMove:C=>{const R=E(C.clientX);c==null||c(R)},onSlideEnd:()=>{v.current=void 0,u==null||u()},onStepKeyDown:C=>{const O=o2[k?"from-left":"from-right"].includes(C.key);h==null||h({event:C,direction:O?-1:1})}})})}),r8=b.forwardRef((t,e)=>{const{min:n,max:r,inverted:a,onSlideStart:i,onSlideMove:o,onSlideEnd:c,onStepKeyDown:u,...h}=t,f=b.useRef(null),m=Jt(e,f),x=b.useRef(void 0),y=!a;function v(N){const w=x.current||f.current.getBoundingClientRect(),k=[0,w.height],C=z0(k,y?[r,n]:[n,r]);return x.current=w,C(N-w.top)}return s.jsx(d2,{scope:t.__scopeSlider,startEdge:y?"bottom":"top",endEdge:y?"top":"bottom",size:"height",direction:y?1:-1,children:s.jsx(h2,{"data-orientation":"vertical",...h,ref:m,style:{...h.style,"--radix-slider-thumb-transform":"translateY(50%)"},onSlideStart:N=>{const w=v(N.clientY);i==null||i(w)},onSlideMove:N=>{const w=v(N.clientY);o==null||o(w)},onSlideEnd:()=>{x.current=void 0,c==null||c()},onStepKeyDown:N=>{const k=o2[y?"from-bottom":"from-top"].includes(N.key);u==null||u({event:N,direction:k?-1:1})}})})}),h2=b.forwardRef((t,e)=>{const{__scopeSlider:n,onSlideStart:r,onSlideMove:a,onSlideEnd:i,onHomeKeyDown:o,onEndKeyDown:c,onStepKeyDown:u,...h}=t,f=fp(Uc,n);return s.jsx(wt.span,{...h,ref:e,onKeyDown:yt(t.onKeyDown,m=>{m.key==="Home"?(o(m),m.preventDefault()):m.key==="End"?(c(m),m.preventDefault()):a2.concat(i2).includes(m.key)&&(u(m),m.preventDefault())}),onPointerDown:yt(t.onPointerDown,m=>{const x=m.target;x.setPointerCapture(m.pointerId),m.preventDefault(),f.thumbs.has(x)?x.focus():r(m)}),onPointerMove:yt(t.onPointerMove,m=>{m.target.hasPointerCapture(m.pointerId)&&a(m)}),onPointerUp:yt(t.onPointerUp,m=>{const x=m.target;x.hasPointerCapture(m.pointerId)&&(x.releasePointerCapture(m.pointerId),i(m))})})}),f2="SliderTrack",p2=b.forwardRef((t,e)=>{const{__scopeSlider:n,...r}=t,a=fp(f2,n);return s.jsx(wt.span,{"data-disabled":a.disabled?"":void 0,"data-orientation":a.orientation,...r,ref:e})});p2.displayName=f2;var jg="SliderRange",m2=b.forwardRef((t,e)=>{const{__scopeSlider:n,...r}=t,a=fp(jg,n),i=u2(jg,n),o=b.useRef(null),c=Jt(e,o),u=a.values.length,h=a.values.map(x=>y2(x,a.min,a.max)),f=u>1?Math.min(...h):0,m=100-Math.max(...h);return s.jsx(wt.span,{"data-orientation":a.orientation,"data-disabled":a.disabled?"":void 0,...r,ref:c,style:{...t.style,[i.startEdge]:f+"%",[i.endEdge]:m+"%"}})});m2.displayName=jg;var kg="SliderThumb",x2=b.forwardRef((t,e)=>{const n=e8(t.__scopeSlider),[r,a]=b.useState(null),i=Jt(e,c=>a(c)),o=b.useMemo(()=>r?n().findIndex(c=>c.ref.current===r):-1,[n,r]);return s.jsx(a8,{...t,ref:i,index:o})}),a8=b.forwardRef((t,e)=>{const{__scopeSlider:n,index:r,name:a,...i}=t,o=fp(kg,n),c=u2(kg,n),[u,h]=b.useState(null),f=Jt(e,E=>h(E)),m=u?o.form||!!u.closest("form"):!0,x=D0(u),y=o.values[r],v=y===void 0?0:y2(y,o.min,o.max),N=l8(r,o.values.length),w=x==null?void 0:x[c.size],k=w?d8(w,v,c.direction):0;return b.useEffect(()=>{if(u)return o.thumbs.add(u),()=>{o.thumbs.delete(u)}},[u,o.thumbs]),s.jsxs("span",{style:{transform:"var(--radix-slider-thumb-transform)",position:"absolute",[c.startEdge]:`calc(${v}% + ${k}px)`},children:[s.jsx(wg.ItemSlot,{scope:t.__scopeSlider,children:s.jsx(wt.span,{role:"slider","aria-label":t["aria-label"]||N,"aria-valuemin":o.min,"aria-valuenow":y,"aria-valuemax":o.max,"aria-orientation":o.orientation,"data-orientation":o.orientation,"data-disabled":o.disabled?"":void 0,tabIndex:o.disabled?void 0:0,...i,ref:f,style:y===void 0?{display:"none"}:t.style,onFocus:yt(t.onFocus,()=>{o.valueIndexToChangeRef.current=r})})}),m&&s.jsx(g2,{name:a??(o.name?o.name+(o.values.length>1?"[]":""):void 0),form:o.form,value:y},r)]})});x2.displayName=kg;var i8="RadioBubbleInput",g2=b.forwardRef(({__scopeSlider:t,value:e,...n},r)=>{const a=b.useRef(null),i=Jt(a,r),o=L0(e);return b.useEffect(()=>{const c=a.current;if(!c)return;const u=window.HTMLInputElement.prototype,f=Object.getOwnPropertyDescriptor(u,"value").set;if(o!==e&&f){const m=new Event("input",{bubbles:!0});f.call(c,e),c.dispatchEvent(m)}},[o,e]),s.jsx(wt.input,{style:{display:"none"},...n,ref:i,defaultValue:e})});g2.displayName=i8;function o8(t=[],e,n){const r=[...t];return r[n]=e,r.sort((a,i)=>a-i)}function y2(t,e,n){const i=100/(n-e)*(t-e);return cf(i,[0,100])}function l8(t,e){return e>2?`Value ${t+1} of ${e}`:e===2?["Minimum","Maximum"][t]:void 0}function c8(t,e){if(t.length===1)return 0;const n=t.map(a=>Math.abs(a-e)),r=Math.min(...n);return n.indexOf(r)}function d8(t,e,n){const r=t/2,i=z0([0,50],[0,r]);return(r-i(e)*n)*n}function u8(t){return t.slice(0,-1).map((e,n)=>t[n+1]-e)}function h8(t,e){if(e>0){const n=u8(t);return Math.min(...n)>=e}return!0}function z0(t,e){return n=>{if(t[0]===t[1]||e[0]===e[1])return e[0];const r=(e[1]-e[0])/(t[1]-t[0]);return e[0]+r*(n-t[0])}}function f8(t){return(String(t).split(".")[1]||"").length}function p8(t,e){const n=Math.pow(10,e);return Math.round(t*n)/n}var m8=c2,x8=p2,g8=m2,y8=x2;function b8({className:t,defaultValue:e,value:n,min:r=0,max:a=100,...i}){const o=b.useMemo(()=>Array.isArray(n)?n:Array.isArray(e)?e:[r,a],[n,e,r,a]);return s.jsxs(m8,{defaultValue:e,value:n,min:r,max:a,className:Qt("relative flex w-full touch-none items-center select-none data-[disabled]:opacity-50",t),...i,children:[s.jsx(x8,{className:"bg-gray-600 relative grow overflow-hidden rounded-full h-1.5 w-full",children:s.jsx(g8,{className:"bg-[#38bdac] absolute h-full rounded-full"})}),Array.from({length:o.length},(c,u)=>s.jsx(y8,{className:"block size-4 shrink-0 rounded-full border-2 border-[#38bdac] bg-white shadow-sm focus-visible:ring-2 focus-visible:ring-[#38bdac] focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50"},u))]})}const v8={distributorShare:90,minWithdrawAmount:10,bindingDays:30,userDiscount:5,withdrawFee:5,enableAutoWithdraw:!1,vipOrderShareVip:20,vipOrderShareNonVip:10};function b2(t){const e=!!(t!=null&&t.embedded),[n,r]=b.useState(v8),[a,i]=b.useState(!0),[o,c]=b.useState(!1);b.useEffect(()=>{Le("/api/admin/referral-settings").then(f=>{const m=f==null?void 0:f.data;m&&typeof m=="object"&&r({distributorShare:m.distributorShare??90,minWithdrawAmount:m.minWithdrawAmount??10,bindingDays:m.bindingDays??30,userDiscount:m.userDiscount??5,withdrawFee:m.withdrawFee??5,enableAutoWithdraw:m.enableAutoWithdraw??!1,vipOrderShareVip:m.vipOrderShareVip??20,vipOrderShareNonVip:m.vipOrderShareNonVip??10})}).catch(console.error).finally(()=>i(!1))},[]);const u=async()=>{c(!0);try{const f={distributorShare:Number(n.distributorShare)||0,minWithdrawAmount:Number(n.minWithdrawAmount)||0,bindingDays:Number(n.bindingDays)||0,userDiscount:Number(n.userDiscount)||0,withdrawFee:Number(n.withdrawFee)??5,enableAutoWithdraw:!!n.enableAutoWithdraw,vipOrderShareVip:Number(n.vipOrderShareVip)||20,vipOrderShareNonVip:Number(n.vipOrderShareNonVip)||10},m=await Et("/api/admin/referral-settings",f);if(!m||m.success===!1){ne.error("保存失败: "+(m&&typeof m=="object"&&"error"in m?m.error:""));return}ne.success(`✅ 分销配置已保存成功! + +• 小程序与网站的推广规则会一起生效 +• 绑定关系会使用新的天数配置 +• 佣金比例会立即应用到新订单 + +如有缓存,请刷新前台/小程序页面。`)}catch(f){console.error(f),ne.error("保存失败: "+(f instanceof Error?f.message:String(f)))}finally{c(!1)}},h=f=>m=>{const x=parseFloat(m.target.value||"0");r(y=>({...y,[f]:isNaN(x)?0:x}))};return a?s.jsx("div",{className:"p-8 text-gray-500",children:"加载中..."}):s.jsxs("div",{className:e?"p-4 w-full":"p-8 w-full",children:[s.jsxs("div",{className:"flex justify-between items-center mb-8",children:[s.jsxs("div",{children:[s.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[s.jsx(Mc,{className:"w-5 h-5 text-[#38bdac]"}),"推广 / 分销设置"]}),s.jsxs("p",{className:"text-gray-400 mt-1",children:["统一管理「好友优惠」「你得 90% 收益」「绑定期 30 天」「提现门槛」等规则,小程序和 Web 共用这套配置(与系统设置中的「推广功能」开关配合:开关在"," ",s.jsx(Tc,{to:"/settings",className:"text-[#38bdac] underline hover:text-[#5ee0d1]",children:"系统设置 → 功能开关"}),")。"]})]}),s.jsxs(Y,{onClick:u,disabled:o||a,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),o?"保存中...":"保存配置"]})]}),s.jsxs("div",{className:"space-y-6",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"flex items-center gap-2 text-white",children:[s.jsx(OM,{className:"w-4 h-4 text-[#38bdac]"}),"推广规则"]}),s.jsx(Yt,{className:"text-gray-400",children:"这三项会直接体现在小程序「推广规则」卡片上,同时影响实收佣金计算。"})]}),s.jsx(_e,{className:"space-y-6",children:s.jsxs("div",{className:"grid grid-cols-3 gap-6",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[s.jsx(xh,{className:"w-3 h-3 text-[#38bdac]"}),"好友优惠(%)"]}),s.jsx(ce,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:n.userDiscount,onChange:h("userDiscount")}),s.jsx("p",{className:"text-xs text-gray-500",children:"例如 5 表示好友立减 5%(在价格配置基础上生效)。"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[s.jsx(_n,{className:"w-3 h-3 text-[#38bdac]"}),"推广者分成(%)"]}),s.jsxs("div",{className:"flex items-center gap-4",children:[s.jsx(b8,{className:"flex-1",min:10,max:100,step:1,value:[n.distributorShare],onValueChange:([f])=>r(m=>({...m,distributorShare:f}))}),s.jsx(ce,{type:"number",min:0,max:100,className:"w-20 bg-[#0a1628] border-gray-700 text-white text-center",value:n.distributorShare,onChange:h("distributorShare")})]}),s.jsxs("p",{className:"text-xs text-gray-500",children:["内容订单佣金 = 订单金额 ×"," ",s.jsxs("span",{className:"text-[#38bdac] font-mono",children:[n.distributorShare,"%"]}),";会员订单见下方。"]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[s.jsx(xh,{className:"w-3 h-3 text-[#38bdac]"}),"会员订单分润(推广者是会员 %)"]}),s.jsx(ce,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:n.vipOrderShareVip,onChange:h("vipOrderShareVip")}),s.jsx("p",{className:"text-xs text-gray-500",children:"推广者已是会员时,会员订单佣金比例,默认 20%。"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[s.jsx(xh,{className:"w-3 h-3 text-[#38bdac]"}),"会员订单分润(推广者非会员 %)"]}),s.jsx(ce,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:n.vipOrderShareNonVip,onChange:h("vipOrderShareNonVip")}),s.jsx("p",{className:"text-xs text-gray-500",children:"推广者非会员时,会员订单佣金比例,默认 10%。"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[s.jsx(_n,{className:"w-3 h-3 text-[#38bdac]"}),"绑定有效期(天)"]}),s.jsx(ce,{type:"number",min:1,max:365,className:"bg-[#0a1628] border-gray-700 text-white",value:n.bindingDays,onChange:h("bindingDays")}),s.jsx("p",{className:"text-xs text-gray-500",children:"好友通过你的链接进来并登录后,绑定在你名下的天数。"})]})]})})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"flex items-center gap-2 text-white",children:[s.jsx(Mc,{className:"w-4 h-4 text-[#38bdac]"}),"提现规则"]}),s.jsx(Yt,{className:"text-gray-400",children:"与「提现中心」「自动提现」相关的参数,影响推广者看到的可提现金额和最低门槛。"})]}),s.jsx(_e,{className:"space-y-6",children:s.jsxs("div",{className:"grid grid-cols-2 gap-6",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"最低提现金额(元)"}),s.jsx(ce,{type:"number",min:0,step:1,className:"bg-[#0a1628] border-gray-700 text-white",value:n.minWithdrawAmount,onChange:h("minWithdrawAmount")}),s.jsx("p",{className:"text-xs text-gray-500",children:"小程序「满 X 元可提现」展示的门槛,同时用于后端接口校验。"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"提现手续费(%)"}),s.jsx(ce,{type:"number",min:0,max:100,step:.5,className:"bg-[#0a1628] border-gray-700 text-white",value:n.withdrawFee,onChange:h("withdrawFee")}),s.jsx("p",{className:"text-xs text-gray-500",children:"批准提现时按此比例扣除后打款,如 5 表示申请 100 元实际到账 95 元。"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:["自动提现开关",s.jsx(Ue,{variant:"outline",className:"border-[#38bdac]/40 text-[#38bdac] text-[10px]",children:"预留"})]}),s.jsxs("div",{className:"flex items-center gap-3 mt-1",children:[s.jsx(Ut,{checked:n.enableAutoWithdraw,onCheckedChange:f=>r(m=>({...m,enableAutoWithdraw:f}))}),s.jsx("span",{className:"text-sm text-gray-400",children:"开启后,可结合定时任务实现「收益自动打款到微信零钱」。"})]})]})]})})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50",children:[s.jsx(it,{children:s.jsxs(ot,{className:"flex items-center gap-2 text-gray-200 text-sm",children:[s.jsx(xh,{className:"w-4 h-4 text-[#38bdac]"}),"使用说明"]})}),s.jsxs(_e,{className:"space-y-2 text-xs text-gray-400 leading-relaxed",children:[s.jsxs("p",{children:["1. 以上配置会写入"," ",s.jsx("code",{className:"font-mono text-[11px] text-[#38bdac]",children:"system_config.referral_config"}),",小程序「推广中心」、Web 推广页以及支付回调都会读取同一份配置。"]}),s.jsx("p",{children:"2. 修改后新订单立即生效;旧订单的历史佣金不会自动重算,只影响之后产生的订单。"}),s.jsx("p",{children:"3. 如遇前端展示与实际结算不一致,优先以此处配置为准,再排查缓存和小程序版本。"})]})]})]})]})}function N8(){const[t]=w0(),[e,n]=b.useState("overview"),[r,a]=b.useState("orders"),[i,o]=b.useState([]),[c,u]=b.useState(null),[h,f]=b.useState([]),[m,x]=b.useState([]),[y,v]=b.useState([]),[N,w]=b.useState(!0),[k,E]=b.useState(null),[C,R]=b.useState(""),[O,q]=b.useState("all"),[$,V]=b.useState(1),[I,te]=b.useState(10),[Q,B]=b.useState(0),[re,ae]=b.useState(new Set),[J,F]=b.useState(null),[D,P]=b.useState(""),[oe,G]=b.useState(!1),[_,U]=b.useState(null),[H,K]=b.useState(""),[me,X]=b.useState(!1),[le,de]=b.useState(!1),[ve,ye]=b.useState(!1),[Se,Fe]=b.useState([]),[mt,kt]=b.useState(1),[ft,Dt]=b.useState(0),[Pt,Rn]=b.useState("");b.useEffect(()=>{yn()},[]),b.useEffect(()=>{const L=t.get("tab");(L==="overview"||L==="orders"||L==="bindings"||L==="withdrawals"||L==="settings")&&n(L)},[t]),b.useEffect(()=>{V(1)},[e,O]),b.useEffect(()=>{Wt(e)},[e]),b.useEffect(()=>{if(e==="orders"&&r==="giftpay"){Wt("giftPay",!0);return}["orders","bindings","withdrawals"].includes(e)&&Wt(e,!0)},[$,I,O,C,e,r,mt,Pt]),b.useEffect(()=>{e==="withdrawals"&&Mt()},[e]);async function yn(){E(null);try{const L=await Le("/api/admin/distribution/overview");L!=null&&L.success&&L.overview&&u(L.overview)}catch(L){console.error("[Admin] 概览接口异常:",L),E("加载概览失败")}try{const L=await Le("/api/db/users");v((L==null?void 0:L.users)||[])}catch(L){console.error("[Admin] 用户数据加载失败:",L)}}async function Wt(L,Ie=!1){var xt;if(!(!Ie&&re.has(L))){w(!0);try{const Rt=y;switch(L){case"overview":break;case"orders":{try{const pt=new URLSearchParams({page:String($),pageSize:String(I),...O!=="all"&&{status:O},...C&&{search:C}}),at=await Le(`/api/admin/orders?${pt}`);if(at!=null&&at.success&&at.orders){const At=at.orders.map(Kt=>{const en=Rt.find(Ws=>Ws.id===Kt.userId),ls=Kt.referrerId?Rt.find(Ws=>Ws.id===Kt.referrerId):null;return{...Kt,amount:parseFloat(String(Kt.amount))||0,userNickname:(en==null?void 0:en.nickname)||Kt.userNickname||"未知用户",userPhone:(en==null?void 0:en.phone)||Kt.userPhone||"-",referrerNickname:(ls==null?void 0:ls.nickname)||null,referrerCode:(ls==null?void 0:ls.referralCode)??null,type:Kt.productType||Kt.type}});o(At),B(at.total??At.length)}else o([]),B(0)}catch(pt){console.error(pt),E("加载订单失败"),o([])}break}case"bindings":{try{const pt=new URLSearchParams({page:String($),pageSize:String(I),...O!=="all"&&{status:O}}),at=await Le(`/api/db/distribution?${pt}`);f((at==null?void 0:at.bindings)||[]),B((at==null?void 0:at.total)??((xt=at==null?void 0:at.bindings)==null?void 0:xt.length)??0)}catch(pt){console.error(pt),E("加载绑定数据失败"),f([])}break}case"withdrawals":{try{const pt=O==="completed"?"success":O==="rejected"?"failed":O,at=new URLSearchParams({...pt&&pt!=="all"&&{status:pt},page:String($),pageSize:String(I)}),At=await Le(`/api/admin/withdrawals?${at}`);if(At!=null&&At.success&&At.withdrawals){const Kt=At.withdrawals.map(en=>({...en,account:en.account??"未绑定微信号",status:en.status==="success"?"completed":en.status==="failed"?"rejected":en.status}));x(Kt),B((At==null?void 0:At.total)??Kt.length)}else At!=null&&At.success||E(`获取提现记录失败: ${(At==null?void 0:At.error)||"未知错误"}`),x([])}catch(pt){console.error(pt),E("加载提现数据失败"),x([])}break}case"giftPay":{try{const pt=new URLSearchParams({page:String(mt),pageSize:"20",...Pt&&{status:Pt}}),at=await Le(`/api/admin/gift-pay-requests?${pt}`);at!=null&&at.success&&at.data?(Fe(at.data),Dt(at.total??at.data.length)):(Fe([]),Dt(0))}catch(pt){console.error(pt),E("加载代付请求失败"),Fe([])}break}}ae(pt=>new Set(pt).add(L))}catch(Rt){console.error(Rt)}finally{w(!1)}}}async function Xt(){E(null),ae(L=>{const Ie=new Set(L);return Ie.delete(e),e==="orders"&&r==="giftpay"&&Ie.delete("giftPay"),Ie}),e==="overview"&&yn(),e==="orders"&&r==="giftpay"?await Wt("giftPay",!0):await Wt(e,!0)}async function Sn(L){if(confirm("确认审核通过并打款?"))try{const Ie=await Zt("/api/admin/withdrawals",{id:L,action:"approve"});if(!(Ie!=null&&Ie.success)){const xt=(Ie==null?void 0:Ie.message)||(Ie==null?void 0:Ie.error)||"操作失败";ne.error(xt);return}await Xt()}catch(Ie){console.error(Ie),ne.error("操作失败")}}function Fn(L){U(L),K("")}async function Wn(){const L=_;if(!L)return;const Ie=H.trim();if(!Ie){ne.error("请填写拒绝原因");return}X(!0);try{const xt=await Zt("/api/admin/withdrawals",{id:L,action:"reject",errorMessage:Ie});if(!(xt!=null&&xt.success)){ne.error((xt==null?void 0:xt.error)||"操作失败");return}ne.success("已拒绝该提现申请"),U(null),K(""),await Xt()}catch(xt){console.error(xt),ne.error("操作失败")}finally{X(!1)}}async function Mt(){try{const L=await Le("/api/admin/withdrawals/auto-approve");L!=null&&L.success&&typeof L.enableAutoApprove=="boolean"&&de(L.enableAutoApprove)}catch{}}async function pn(L){ye(!0);try{const Ie=await Zt("/api/admin/withdrawals/auto-approve",{enableAutoApprove:L});Ie!=null&&Ie.success?(de(L),ne.success(L?"已开启自动审批,新提现将自动打款":"已关闭自动审批")):ne.error("更新失败: "+((Ie==null?void 0:Ie.error)??""))}catch{ne.error("更新失败")}finally{ye(!1)}}function bn(){_&&ne.info("已取消操作"),U(null),K("")}async function ge(){var L;if(!(!(J!=null&&J.orderSn)&&!(J!=null&&J.id))){G(!0),E(null);try{const Ie=await Zt("/api/admin/orders/refund",{orderSn:J.orderSn||J.id,reason:D||void 0});Ie!=null&&Ie.success?(F(null),P(""),await Wt("orders",!0)):E((Ie==null?void 0:Ie.error)||"退款失败")}catch(Ie){const xt=Ie;E(((L=xt==null?void 0:xt.data)==null?void 0:L.error)||"退款失败,请检查网络后重试")}finally{G(!1)}}}function Ce(L){const Ie={active:"bg-green-500/20 text-green-400",converted:"bg-blue-500/20 text-blue-400",expired:"bg-gray-500/20 text-gray-400",cancelled:"bg-red-500/20 text-red-400",pending:"bg-orange-500/20 text-orange-400",pending_confirm:"bg-orange-500/20 text-orange-400",processing:"bg-blue-500/20 text-blue-400",completed:"bg-green-500/20 text-green-400",rejected:"bg-red-500/20 text-red-400"},xt={active:"有效",converted:"已转化",expired:"已过期",cancelled:"已取消",pending:"待审核",pending_confirm:"待用户确认",processing:"处理中",completed:"已完成",rejected:"已拒绝"};return s.jsx(Ue,{className:`${Ie[L]||"bg-gray-500/20 text-gray-400"} border-0`,children:xt[L]||L})}const Be=Math.ceil(Q/I)||1,Ze=i,St=h.filter(L=>{var xt,Rt,pt,at;if(!C)return!0;const Ie=C.toLowerCase();return((xt=L.refereeNickname)==null?void 0:xt.toLowerCase().includes(Ie))||((Rt=L.refereePhone)==null?void 0:Rt.includes(Ie))||((pt=L.referrerName)==null?void 0:pt.toLowerCase().includes(Ie))||((at=L.referrerCode)==null?void 0:at.toLowerCase().includes(Ie))}),vt=m.filter(L=>{var xt;if(!C)return!0;const Ie=C.toLowerCase();return((xt=L.userName)==null?void 0:xt.toLowerCase().includes(Ie))||L.account&&L.account.toLowerCase().includes(Ie)});return s.jsxs("div",{className:"p-8 w-full",children:[k&&s.jsxs("div",{className:"mb-4 px-4 py-3 rounded-lg bg-red-500/20 border border-red-500/50 text-red-400 text-sm flex items-center justify-between",children:[s.jsx("span",{children:k}),s.jsx("button",{type:"button",onClick:()=>E(null),className:"hover:text-red-300",children:"×"})]}),s.jsxs("div",{className:"flex items-center justify-between mb-6",children:[s.jsxs("div",{children:[s.jsx("h1",{className:"text-xl font-semibold text-white",children:"推广中心"}),s.jsx("p",{className:"text-gray-500 text-sm mt-0.5",children:"分销绑定、提现审核、推广设置"})]}),s.jsxs(Y,{onClick:Xt,disabled:N,variant:"outline",size:"sm",className:"border-gray-700 text-gray-300 hover:bg-gray-800",children:[s.jsx(Ve,{className:`w-3.5 h-3.5 mr-1.5 ${N?"animate-spin":""}`}),"刷新"]})]}),s.jsx("div",{className:"flex gap-1 mb-6 bg-[#0a1628] rounded-lg p-1 border border-gray-700/40",children:[{key:"overview",label:"数据概览",icon:tf},{key:"orders",label:"订单与代付",icon:Zh},{key:"bindings",label:"绑定管理",icon:Ea},{key:"withdrawals",label:"提现审核",icon:Mc},{key:"settings",label:"推广设置",icon:mo}].map(L=>s.jsxs("button",{type:"button",onClick:()=>{n(L.key),q("all"),R(""),L.key!=="orders"&&a("orders")},className:`flex-1 flex items-center justify-center gap-1.5 px-3 py-2 rounded-md text-sm transition-all ${e===L.key?"bg-[#38bdac] text-white shadow-md":"text-gray-400 hover:text-white hover:bg-gray-700/40"}`,children:[s.jsx(L.icon,{className:"w-3.5 h-3.5"}),L.label]},L.key))}),N?s.jsxs("div",{className:"flex items-center justify-center py-20",children:[s.jsx(Ve,{className:"w-8 h-8 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):s.jsxs(s.Fragment,{children:[e==="overview"&&c&&s.jsxs("div",{className:"space-y-6",children:[s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsxs(_e,{className:"p-4",children:[s.jsxs("div",{className:"flex items-center justify-between mb-4",children:[s.jsxs("span",{className:"text-sm font-medium text-gray-300 flex items-center gap-2",children:[s.jsx(ji,{className:"w-4 h-4 text-amber-400"}),"推广转化漏斗"]}),s.jsx(Y,{type:"button",size:"sm",variant:"ghost",onClick:()=>void Xt(),disabled:N,className:"text-gray-400 h-7",children:s.jsx(Ve,{className:`w-3.5 h-3.5 ${N?"animate-spin":""}`})})]}),s.jsx("div",{className:"overflow-x-auto",children:s.jsxs("table",{className:"w-full text-sm",children:[s.jsx("thead",{children:s.jsxs("tr",{className:"text-gray-500 text-xs border-b border-gray-700/50",children:[s.jsx("th",{className:"pb-2 text-left font-normal",children:"指标"}),s.jsx("th",{className:"pb-2 text-right font-normal",children:"今日"}),s.jsx("th",{className:"pb-2 text-right font-normal",children:"本月"}),s.jsx("th",{className:"pb-2 text-right font-normal",children:"累计"})]})}),s.jsxs("tbody",{className:"text-white",children:[s.jsxs("tr",{className:"border-b border-gray-700/30",children:[s.jsxs("td",{className:"py-2.5 flex items-center gap-2",children:[s.jsx(ef,{className:"w-4 h-4 text-blue-400"}),"点击数"]}),s.jsx("td",{className:"py-2.5 text-right font-bold",children:c.todayClicks}),s.jsx("td",{className:"py-2.5 text-right",children:c.monthClicks}),s.jsx("td",{className:"py-2.5 text-right",children:c.totalClicks})]}),s.jsxs("tr",{className:"border-b border-gray-700/30",children:[s.jsxs("td",{className:"py-2.5 flex items-center gap-2",children:[s.jsx(Ea,{className:"w-4 h-4 text-green-400"}),"绑定关系"]}),s.jsx("td",{className:"py-2.5 text-right font-bold",children:c.todayBindings}),s.jsx("td",{className:"py-2.5 text-right",children:c.monthBindings}),s.jsx("td",{className:"py-2.5 text-right",children:c.totalBindings})]}),s.jsxs("tr",{className:"border-b border-gray-700/30",children:[s.jsxs("td",{className:"py-2.5 flex items-center gap-2",children:[s.jsx(dx,{className:"w-4 h-4 text-purple-400"}),"付款转化"]}),s.jsx("td",{className:"py-2.5 text-right font-bold",children:c.todayConversions}),s.jsx("td",{className:"py-2.5 text-right",children:c.monthConversions}),s.jsx("td",{className:"py-2.5 text-right",children:c.totalConversions})]}),s.jsxs("tr",{children:[s.jsxs("td",{className:"py-2.5 flex items-center gap-2",children:[s.jsx(Zh,{className:"w-4 h-4 text-[#38bdac]"}),"佣金收入"]}),s.jsxs("td",{className:"py-2.5 text-right font-bold text-[#38bdac]",children:["¥",(c.todayEarnings??0).toFixed(0)]}),s.jsxs("td",{className:"py-2.5 text-right text-[#38bdac]",children:["¥",(c.monthEarnings??0).toFixed(0)]}),s.jsxs("td",{className:"py-2.5 text-right text-[#38bdac]",children:["¥",(c.totalEarnings??0).toFixed(0)]})]})]})]})}),c.conversionRate&&s.jsxs("p",{className:"text-xs text-gray-500 mt-3 text-right",children:["综合转化率 ",c.conversionRate]})]})}),s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsx(De,{className:"bg-orange-500/10 border-orange-500/30",children:s.jsx(_e,{className:"p-4",children:s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(hg,{className:"w-5 h-5 text-orange-400 shrink-0"}),s.jsxs("div",{className:"flex-1 min-w-0",children:[s.jsx("p",{className:"text-orange-300 font-medium text-sm",children:"即将过期绑定"}),s.jsxs("p",{className:"text-xl font-bold text-white",children:[c.expiringBindings," ",s.jsx("span",{className:"text-sm font-normal text-orange-300/60",children:"个 · 7天内"})]})]})]})})}),s.jsx(De,{className:"bg-blue-500/10 border-blue-500/30",children:s.jsx(_e,{className:"p-4",children:s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Mc,{className:"w-5 h-5 text-blue-400 shrink-0"}),s.jsxs("div",{className:"flex-1 min-w-0",children:[s.jsx("p",{className:"text-blue-300 font-medium text-sm",children:"待审核提现"}),s.jsxs("p",{className:"text-xl font-bold text-white",children:[c.pendingWithdrawals," ",s.jsxs("span",{className:"text-sm font-normal text-blue-300/60",children:["笔 · ¥",(c.pendingWithdrawAmount??0).toFixed(0)]})]})]}),s.jsx(Y,{onClick:()=>n("withdrawals"),variant:"outline",size:"sm",className:"border-blue-500/50 text-blue-400 hover:bg-blue-500/20 shrink-0",children:"去审核"})]})})})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsx(_e,{className:"p-4",children:s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsxs("div",{className:"flex items-center gap-3 p-3 rounded-lg bg-white/5",children:[s.jsx(_n,{className:"w-5 h-5 text-gray-400 shrink-0"}),s.jsxs("div",{children:[s.jsx("p",{className:"text-lg font-bold text-white",children:c.totalDistributors}),s.jsx("p",{className:"text-[10px] text-gray-500",children:"推广用户"})]})]}),s.jsxs("div",{className:"flex items-center gap-3 p-3 rounded-lg bg-white/5",children:[s.jsx(dx,{className:"w-5 h-5 text-green-400 shrink-0"}),s.jsxs("div",{children:[s.jsx("p",{className:"text-lg font-bold text-green-400",children:c.activeDistributors}),s.jsx("p",{className:"text-[10px] text-gray-500",children:"有收益用户"})]})]})]})})})]}),e==="orders"&&s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"flex gap-2 mb-2",children:[s.jsx("button",{type:"button",className:`px-3 py-1.5 rounded-md text-xs font-medium transition-all ${r==="orders"?"bg-[#38bdac]/20 text-[#38bdac] border border-[#38bdac]/50":"bg-[#0a1628] text-gray-400 border border-gray-700 hover:text-white"}`,onClick:()=>a("orders"),children:"普通订单"}),s.jsxs("button",{type:"button",className:`px-3 py-1.5 rounded-md text-xs font-medium transition-all ${r==="giftpay"?"bg-amber-500/20 text-amber-400 border border-amber-500/50":"bg-[#0a1628] text-gray-400 border border-gray-700 hover:text-white"}`,onClick:()=>{a("giftpay"),Wt("giftPay",!0)},children:[s.jsx(fg,{className:"w-3 h-3 inline mr-1"}),"代付请求"]})]}),r==="orders"&&s.jsxs(s.Fragment,{children:[s.jsxs("div",{className:"flex flex-wrap gap-4 items-center",children:[s.jsxs("div",{className:"relative flex-1 min-w-[200px]",children:[s.jsx(Aa,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),s.jsx(ce,{value:C,onChange:L=>R(L.target.value),placeholder:"搜索订单号、用户名、手机号...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white"})]}),s.jsxs("select",{value:O,onChange:L=>q(L.target.value),className:"px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white shrink-0",children:[s.jsx("option",{value:"all",children:"全部状态"}),s.jsx("option",{value:"completed",children:"已完成"}),s.jsx("option",{value:"pending",children:"待支付"}),s.jsx("option",{value:"failed",children:"已失败"}),s.jsx("option",{value:"refunded",children:"已退款"})]}),s.jsxs(Y,{type:"button",variant:"outline",onClick:()=>void Xt(),disabled:N,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent shrink-0",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${N?"animate-spin":""}`}),"刷新"]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsxs(_e,{className:"p-0",children:[i.length===0?s.jsx("div",{className:"py-12 text-center text-gray-500",children:"暂无订单数据"}):s.jsx("div",{className:"overflow-x-auto",children:s.jsxs("table",{className:"w-full text-sm",children:[s.jsx("thead",{children:s.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[s.jsx("th",{className:"p-4 text-left font-medium",children:"订单号"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"用户"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"商品"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"金额"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"支付方式"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"退款原因"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"推荐人/邀请码"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"分销佣金"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"下单时间"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"操作"})]})}),s.jsx("tbody",{className:"divide-y divide-gray-700/50",children:Ze.map(L=>{var Ie,xt;return s.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[s.jsxs("td",{className:"p-4 font-mono text-xs text-gray-400",children:[(Ie=L.id)==null?void 0:Ie.slice(0,12),"..."]}),s.jsx("td",{className:"p-4",children:s.jsxs("div",{children:[s.jsx("p",{className:"text-white text-sm",children:L.userNickname}),s.jsx("p",{className:"text-gray-500 text-xs",children:L.userPhone})]})}),s.jsx("td",{className:"p-4",children:s.jsxs("div",{children:[s.jsx("p",{className:"text-white text-sm",children:(()=>{const Rt=L.productType||L.type,pt=L.description||"",at=String(L.productId||L.sectionId||""),At=Rt==="vip"||pt.includes("VIP")||pt.toLowerCase().includes("vip")||at.toLowerCase().includes("vip");return Rt==="balance_recharge"?`余额充值 ¥${typeof L.amount=="number"?L.amount.toFixed(2):parseFloat(String(L.amount||"0")).toFixed(2)}`:At?"超级个体开通费用":Rt==="fullbook"?`${L.bookName||"《底层逻辑》"} - 全本`:Rt==="match"?"匹配次数购买":`${L.bookName||"《底层逻辑》"} - ${L.sectionTitle||L.chapterTitle||`章节${L.productId||L.sectionId||""}`}`})()}),s.jsx("p",{className:"text-gray-500 text-xs",children:(()=>{const Rt=L.productType||L.type,pt=L.description||"",at=String(L.productId||L.sectionId||""),At=Rt==="vip"||pt.includes("VIP")||pt.toLowerCase().includes("vip")||at.toLowerCase().includes("vip");return Rt==="balance_recharge"?"余额充值":At?"超级个体":Rt==="fullbook"?"全书解锁":Rt==="match"?"功能权益":L.chapterTitle||"单章购买"})()})]})}),s.jsxs("td",{className:"p-4 text-[#38bdac] font-bold",children:["¥",typeof L.amount=="number"?L.amount.toFixed(2):parseFloat(String(L.amount||"0")).toFixed(2)]}),s.jsx("td",{className:"p-4 text-gray-300",children:L.paymentMethod==="wechat"?"微信支付":L.paymentMethod==="balance"?"余额支付":L.paymentMethod==="alipay"?"支付宝":L.paymentMethod||"微信支付"}),s.jsx("td",{className:"p-4",children:L.status==="refunded"?s.jsx(Ue,{className:"bg-gray-500/20 text-gray-400 border-0",children:"已退款"}):L.status==="completed"||L.status==="paid"?s.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0",children:"已完成"}):L.status==="pending"||L.status==="created"?s.jsx(Ue,{className:"bg-yellow-500/20 text-yellow-400 border-0",children:"待支付"}):s.jsx(Ue,{className:"bg-red-500/20 text-red-400 border-0",children:"已失败"})}),s.jsx("td",{className:"p-4 text-gray-400 text-sm max-w-[120px]",title:L.refundReason,children:L.status==="refunded"&&L.refundReason?L.refundReason:"-"}),s.jsx("td",{className:"p-4 text-gray-300 text-sm",children:L.referrerId||L.referralCode?s.jsxs("span",{title:L.referralCode||L.referrerCode||L.referrerId||"",children:[L.referrerNickname||L.referralCode||L.referrerCode||((xt=L.referrerId)==null?void 0:xt.slice(0,8)),(L.referralCode||L.referrerCode)&&` (${L.referralCode||L.referrerCode})`]}):"-"}),s.jsx("td",{className:"p-4 text-[#FFD700]",children:L.referrerEarnings?`¥${(typeof L.referrerEarnings=="number"?L.referrerEarnings:parseFloat(String(L.referrerEarnings))).toFixed(2)}`:"-"}),s.jsx("td",{className:"p-4 text-gray-400 text-sm",children:L.createdAt?new Date(L.createdAt).toLocaleString("zh-CN"):"-"}),s.jsx("td",{className:"p-4",children:(L.status==="paid"||L.status==="completed")&&s.jsxs(Y,{variant:"outline",size:"sm",className:"border-orange-500/50 text-orange-400 hover:bg-orange-500/20",onClick:()=>{F(L),P("")},children:[s.jsx(Dj,{className:"w-3 h-3 mr-1"}),"退款"]})})]},L.id)})})]})}),e==="orders"&&s.jsx(sr,{page:$,totalPages:Be,total:Q,pageSize:I,onPageChange:V,onPageSizeChange:L=>{te(L),V(1)}})]})})]}),r==="giftpay"&&s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50",children:[s.jsx(it,{children:s.jsxs("div",{className:"flex flex-wrap items-center justify-between gap-4",children:[s.jsx(ot,{className:"text-white text-base",children:"代付请求列表"}),s.jsxs("div",{className:"flex gap-2 items-center",children:[s.jsxs("select",{className:"bg-[#0a1628] border border-gray-700 text-white rounded px-3 py-1.5 text-sm",value:Pt,onChange:L=>{Rn(L.target.value),kt(1)},children:[s.jsx("option",{value:"",children:"全部状态"}),s.jsx("option",{value:"pending",children:"待支付(旧)"}),s.jsx("option",{value:"pending_pay",children:"待发起人支付"}),s.jsx("option",{value:"paid",children:"已支付"}),s.jsx("option",{value:"refunded",children:"已退款"}),s.jsx("option",{value:"cancelled",children:"已取消"}),s.jsx("option",{value:"expired",children:"已过期"})]}),s.jsxs(Y,{size:"sm",variant:"outline",onClick:()=>void Wt("giftPay",!0),disabled:N,className:"border-gray-600 text-gray-300",children:[s.jsx(Ve,{className:`w-3.5 h-3.5 mr-1 ${N?"animate-spin":""}`}),"刷新"]})]})]})}),s.jsxs(_e,{children:[s.jsx("div",{className:"overflow-x-auto",children:s.jsxs("table",{className:"w-full text-sm",children:[s.jsx("thead",{children:s.jsxs("tr",{className:"border-b border-gray-700/50",children:[s.jsx("th",{className:"p-3 text-left font-normal text-gray-400 text-xs",children:"请求号"}),s.jsx("th",{className:"p-3 text-left font-normal text-gray-400 text-xs",children:"发起人"}),s.jsx("th",{className:"p-3 text-left font-normal text-gray-400 text-xs",children:"商品/金额"}),s.jsx("th",{className:"p-3 text-left font-normal text-gray-400 text-xs",children:"份数/已领"}),s.jsx("th",{className:"p-3 text-left font-normal text-gray-400 text-xs",children:"付款人"}),s.jsx("th",{className:"p-3 text-left font-normal text-gray-400 text-xs",children:"状态"}),s.jsx("th",{className:"p-3 text-left font-normal text-gray-400 text-xs",children:"创建时间"})]})}),s.jsx("tbody",{className:"divide-y divide-gray-700/50",children:Se.map(L=>s.jsxs("tr",{className:"hover:bg-[#0a1628]",children:[s.jsx("td",{className:"p-3 font-mono text-xs text-gray-400",children:L.requestSn}),s.jsx("td",{className:"p-3 text-white text-sm",children:L.initiatorNick||L.initiatorUserId}),s.jsxs("td",{className:"p-3",children:[s.jsxs("p",{className:"text-white",children:[L.productType," · ¥",L.amount.toFixed(2)]}),L.description&&s.jsx("p",{className:"text-gray-500 text-xs",children:L.description})]}),s.jsx("td",{className:"p-3 text-gray-400",children:(L.quantity??1)>1?`${L.quantity}份 / 已领${L.redeemedCount??0}`:"-"}),s.jsx("td",{className:"p-3 text-gray-400",children:L.payerNick||(L.payerUserId?L.payerUserId:"-")}),s.jsx("td",{className:"p-3",children:s.jsx(Ue,{className:L.status==="paid"?"bg-green-500/20 text-green-400 border-0":L.status==="pending"||L.status==="pending_pay"?"bg-amber-500/20 text-amber-400 border-0":L.status==="refunded"?"bg-red-500/20 text-red-400 border-0":"bg-gray-500/20 text-gray-400 border-0",children:L.status==="paid"?"已支付":L.status==="pending"||L.status==="pending_pay"?"待支付":L.status==="refunded"?"已退款":L.status==="cancelled"?"已取消":"已过期"})}),s.jsx("td",{className:"p-3 text-gray-400 text-xs",children:L.createdAt?new Date(L.createdAt).toLocaleString("zh-CN"):"-"})]},L.id))})]})}),Se.length===0&&!N&&s.jsx("p",{className:"text-center py-8 text-gray-500",children:"暂无代付请求"}),ft>20&&s.jsx("div",{className:"mt-4 flex justify-center",children:s.jsx(sr,{page:mt,totalPages:Math.ceil(ft/20),total:ft,pageSize:20,onPageChange:kt,onPageSizeChange:()=>{}})})]})]})]}),e==="bindings"&&s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"flex flex-wrap gap-4 items-center",children:[s.jsxs("div",{className:"relative flex-1 min-w-[200px]",children:[s.jsx(Aa,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),s.jsx(ce,{value:C,onChange:L=>R(L.target.value),placeholder:"搜索用户昵称、手机号、推广码...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white"})]}),s.jsxs("select",{value:O,onChange:L=>q(L.target.value),className:"px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white shrink-0",children:[s.jsx("option",{value:"all",children:"全部状态"}),s.jsx("option",{value:"active",children:"有效"}),s.jsx("option",{value:"converted",children:"已转化"}),s.jsx("option",{value:"expired",children:"已过期"})]}),s.jsxs(Y,{type:"button",variant:"outline",onClick:()=>void Xt(),disabled:N,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent shrink-0",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${N?"animate-spin":""}`}),"刷新"]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsxs(_e,{className:"p-0",children:[St.length===0?s.jsx("div",{className:"py-12 text-center text-gray-500",children:"暂无绑定数据"}):s.jsx("div",{className:"overflow-x-auto",children:s.jsxs("table",{className:"w-full text-sm",children:[s.jsx("thead",{children:s.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[s.jsx("th",{className:"p-4 text-left font-medium",children:"访客"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"分销商"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"绑定时间"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"到期时间"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"佣金"})]})}),s.jsx("tbody",{className:"divide-y divide-gray-700/50",children:St.map(L=>s.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[s.jsx("td",{className:"p-4",children:s.jsxs("div",{children:[s.jsx("p",{className:"text-white font-medium",children:L.refereeNickname||"匿名用户"}),s.jsx("p",{className:"text-gray-500 text-xs",children:L.refereePhone})]})}),s.jsx("td",{className:"p-4",children:s.jsxs("div",{children:[s.jsx("p",{className:"text-white",children:L.referrerName||"-"}),s.jsx("p",{className:"text-gray-500 text-xs font-mono",children:L.referrerCode})]})}),s.jsx("td",{className:"p-4 text-gray-400",children:L.boundAt?new Date(L.boundAt).toLocaleDateString("zh-CN"):"-"}),s.jsx("td",{className:"p-4 text-gray-400",children:L.expiresAt?new Date(L.expiresAt).toLocaleDateString("zh-CN"):"-"}),s.jsx("td",{className:"p-4",children:Ce(L.status)}),s.jsx("td",{className:"p-4",children:L.commission?s.jsxs("span",{className:"text-[#38bdac] font-medium",children:["¥",L.commission.toFixed(2)]}):s.jsx("span",{className:"text-gray-500",children:"-"})})]},L.id))})]})}),e==="bindings"&&s.jsx(sr,{page:$,totalPages:Be,total:Q,pageSize:I,onPageChange:V,onPageSizeChange:L=>{te(L),V(1)}})]})})]}),e==="withdrawals"&&s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"flex flex-wrap gap-4 items-center",children:[s.jsxs("div",{className:"relative flex-1 min-w-[200px]",children:[s.jsx(Aa,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),s.jsx(ce,{value:C,onChange:L=>R(L.target.value),placeholder:"搜索用户名称、账号...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white"})]}),s.jsxs("select",{value:O,onChange:L=>q(L.target.value),className:"px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white shrink-0",children:[s.jsx("option",{value:"all",children:"全部状态"}),s.jsx("option",{value:"pending",children:"待审核"}),s.jsx("option",{value:"completed",children:"已完成"}),s.jsx("option",{value:"rejected",children:"已拒绝"})]}),s.jsxs("div",{className:"flex items-center gap-2 px-4 py-2 rounded-lg bg-[#0f2137] border border-gray-700/50 shrink-0",children:[s.jsx(ji,{className:"w-4 h-4 text-[#38bdac]"}),s.jsx("span",{className:"text-sm text-gray-300",children:"自动审批"}),s.jsx(Ut,{checked:le,onCheckedChange:pn,disabled:ve,className:"data-[state=checked]:bg-[#38bdac]"})]}),s.jsxs(Y,{type:"button",variant:"outline",onClick:()=>void Xt(),disabled:N,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent shrink-0",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${N?"animate-spin":""}`}),"刷新"]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsxs(_e,{className:"p-0",children:[vt.length===0?s.jsx("div",{className:"py-12 text-center text-gray-500",children:"暂无提现记录"}):s.jsx("div",{className:"overflow-x-auto",children:s.jsxs("table",{className:"w-full text-sm",children:[s.jsx("thead",{children:s.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[s.jsx("th",{className:"p-4 text-left font-medium",children:"申请人"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"金额"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"收款方式"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"收款账号"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"申请时间"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"备注"}),s.jsx("th",{className:"p-4 text-right font-medium",children:"操作"})]})}),s.jsx("tbody",{className:"divide-y divide-gray-700/50",children:vt.map(L=>s.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[s.jsx("td",{className:"p-4",children:s.jsxs("div",{className:"flex items-center gap-2",children:[L.userAvatar?s.jsx("img",{src:L.userAvatar,alt:"",className:"w-8 h-8 rounded-full object-cover"}):s.jsx("div",{className:"w-8 h-8 rounded-full bg-gray-600 flex items-center justify-center text-white text-sm font-medium",children:(L.userName||L.name||"?").slice(0,1)}),s.jsx("p",{className:"text-white font-medium",children:L.userName||L.name})]})}),s.jsx("td",{className:"p-4",children:s.jsxs("span",{className:"text-[#38bdac] font-bold",children:["¥",L.amount.toFixed(2)]})}),s.jsx("td",{className:"p-4",children:s.jsx(Ue,{className:L.method==="wechat"?"bg-green-500/20 text-green-400 border-0":"bg-blue-500/20 text-blue-400 border-0",children:L.method==="wechat"?"微信":"支付宝"})}),s.jsx("td",{className:"p-4",children:s.jsxs("div",{children:[s.jsx("p",{className:"text-white font-mono text-xs",children:L.account}),s.jsx("p",{className:"text-gray-500 text-xs",children:L.name})]})}),s.jsx("td",{className:"p-4 text-gray-400",children:L.createdAt?new Date(L.createdAt).toLocaleString("zh-CN"):"-"}),s.jsx("td",{className:"p-4",children:Ce(L.status)}),s.jsx("td",{className:"p-4 max-w-[160px]",children:s.jsx("span",{className:`text-xs ${L.status==="rejected"||L.status==="failed"?"text-red-400":"text-gray-400"}`,title:L.remark,children:L.remark||"-"})}),s.jsx("td",{className:"p-4 text-right",children:L.status==="pending"&&s.jsxs("div",{className:"flex gap-2 justify-end",children:[s.jsxs(Y,{size:"sm",onClick:()=>Sn(L.id),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(dx,{className:"w-4 h-4 mr-1"}),"通过"]}),s.jsxs(Y,{size:"sm",variant:"outline",onClick:()=>Fn(L.id),className:"border-red-500/50 text-red-400 hover:bg-red-500/20",children:[s.jsx(Aj,{className:"w-4 h-4 mr-1"}),"拒绝"]})]})})]},L.id))})]})}),e==="withdrawals"&&s.jsx(sr,{page:$,totalPages:Be,total:Q,pageSize:I,onPageChange:V,onPageSizeChange:L=>{te(L),V(1)}})]})})]})]}),s.jsx(Bt,{open:!!J,onOpenChange:L=>!L&&F(null),children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[s.jsx(Vt,{children:s.jsx(Ht,{className:"text-white",children:"订单退款"})}),J&&s.jsxs("div",{className:"space-y-4",children:[s.jsxs("p",{className:"text-gray-400 text-sm",children:["订单号:",J.orderSn||J.id]}),s.jsxs("p",{className:"text-gray-400 text-sm",children:["退款金额:¥",typeof J.amount=="number"?J.amount.toFixed(2):parseFloat(String(J.amount||"0")).toFixed(2)]}),s.jsxs("div",{children:[s.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"退款原因(选填)"}),s.jsx("div",{className:"form-input",children:s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"如:用户申请退款",value:D,onChange:L=>P(L.target.value)})})]}),s.jsx("p",{className:"text-orange-400/80 text-xs",children:"退款将原路退回至用户微信,且无法撤销,请确认后再操作。"})]}),s.jsxs(xn,{children:[s.jsx(Y,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:()=>F(null),disabled:oe,children:"取消"}),s.jsx(Y,{className:"bg-orange-500 hover:bg-orange-600 text-white",onClick:ge,disabled:oe,children:oe?"退款中...":"确认退款"})]})]})}),s.jsx(Bt,{open:!!_,onOpenChange:L=>!L&&bn(),children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[s.jsx(Vt,{children:s.jsx(Ht,{className:"text-white",children:"拒绝提现"})}),s.jsxs("div",{className:"space-y-4",children:[s.jsx("p",{className:"text-gray-400 text-sm",children:"拒绝后该笔提现金额将返还用户余额。"}),s.jsxs("div",{children:[s.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"拒绝原因(必填)"}),s.jsx("div",{className:"form-input",children:s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"请输入拒绝原因",value:H,onChange:L=>K(L.target.value)})})]})]}),s.jsxs(xn,{children:[s.jsx(Y,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:bn,disabled:me,children:"取消"}),s.jsx(Y,{className:"bg-red-600 hover:bg-red-700 text-white",onClick:Wn,disabled:me||!H.trim(),children:me?"提交中...":"确认拒绝"})]})]})}),e==="settings"&&s.jsx("div",{className:"-mx-8 -mt-6",children:s.jsx(b2,{embedded:!0})})]})}function w8(){const[t,e]=b.useState([]),[n,r]=b.useState({total:0,pendingCount:0,pendingAmount:0,successCount:0,successAmount:0,failedCount:0}),[a,i]=b.useState(!0),[o,c]=b.useState(null),[u,h]=b.useState("all"),[f,m]=b.useState(1),[x,y]=b.useState(10),[v,N]=b.useState(0),[w,k]=b.useState(null),[E,C]=b.useState(null),[R,O]=b.useState(""),[q,$]=b.useState(!1);async function V(){var J,F,D,P,oe,G,_;i(!0),c(null);try{const U=new URLSearchParams({status:u,page:String(f),pageSize:String(x)}),H=await Le(`/api/admin/withdrawals?${U}`);if(H!=null&&H.success){const K=H.withdrawals||[];e(K),N(H.total??((J=H.stats)==null?void 0:J.total)??K.length),r({total:((F=H.stats)==null?void 0:F.total)??H.total??K.length,pendingCount:((D=H.stats)==null?void 0:D.pendingCount)??0,pendingAmount:((P=H.stats)==null?void 0:P.pendingAmount)??0,successCount:((oe=H.stats)==null?void 0:oe.successCount)??0,successAmount:((G=H.stats)==null?void 0:G.successAmount)??0,failedCount:((_=H.stats)==null?void 0:_.failedCount)??0})}else c("加载提现记录失败")}catch(U){console.error("Load withdrawals error:",U),c("加载失败,请检查网络后重试")}finally{i(!1)}}b.useEffect(()=>{m(1)},[u]),b.useEffect(()=>{V()},[u,f,x]);const I=Math.ceil(v/x)||1;async function te(J){const F=t.find(D=>D.id===J);if(F!=null&&F.userCommissionInfo&&F.userCommissionInfo.availableAfterThis<0){if(!confirm(`⚠️ 风险警告:该用户审核后余额为负数(¥${F.userCommissionInfo.availableAfterThis.toFixed(2)}),可能存在超额提现。 + +确认已核实用户账户并完成打款?`))return}else if(!confirm("确认已完成打款?批准后将更新用户提现记录。"))return;k(J);try{const D=await Zt("/api/admin/withdrawals",{id:J,action:"approve"});D!=null&&D.success?V():ne.error("操作失败: "+((D==null?void 0:D.error)??""))}catch{ne.error("操作失败")}finally{k(null)}}function Q(J){C(J),O("")}async function B(){const J=E;if(!J)return;const F=R.trim();if(!F){ne.error("请填写拒绝原因");return}$(!0);try{const D=await Zt("/api/admin/withdrawals",{id:J,action:"reject",errorMessage:F});D!=null&&D.success?(ne.success("已拒绝该提现申请"),C(null),O(""),V()):ne.error("操作失败: "+((D==null?void 0:D.error)??""))}catch{ne.error("操作失败")}finally{$(!1)}}function re(){E&&ne.info("已取消操作"),C(null),O("")}function ae(J){switch(J){case"pending":return s.jsx(Ue,{className:"bg-orange-500/20 text-orange-400 hover:bg-orange-500/20 border-0",children:"待处理"});case"pending_confirm":return s.jsx(Ue,{className:"bg-orange-500/20 text-orange-400 hover:bg-orange-500/20 border-0",children:"待用户确认"});case"processing":return s.jsx(Ue,{className:"bg-blue-500/20 text-blue-400 hover:bg-blue-500/20 border-0",children:"已审批等待打款"});case"success":case"completed":return s.jsx(Ue,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"已完成"});case"failed":case"rejected":return s.jsx(Ue,{className:"bg-red-500/20 text-red-400 hover:bg-red-500/20 border-0",children:"已拒绝"});default:return s.jsx(Ue,{className:"bg-gray-500/20 text-gray-400 border-0",children:J})}}return s.jsxs("div",{className:"p-8 w-full",children:[o&&s.jsxs("div",{className:"mb-4 px-4 py-3 rounded-lg bg-red-500/20 border border-red-500/50 text-red-400 text-sm flex items-center justify-between",children:[s.jsx("span",{children:o}),s.jsx("button",{type:"button",onClick:()=>c(null),className:"hover:text-red-300",children:"×"})]}),s.jsxs("div",{className:"flex justify-between items-start mb-8",children:[s.jsxs("div",{children:[s.jsx("h1",{className:"text-2xl font-bold text-white",children:"分账提现管理"}),s.jsx("p",{className:"text-gray-400 mt-1",children:"管理用户分销收益的提现申请"})]}),s.jsxs(Y,{variant:"outline",onClick:V,disabled:a,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${a?"animate-spin":""}`}),"刷新"]})]}),s.jsx(De,{className:"bg-gradient-to-r from-[#38bdac]/10 to-[#0f2137] border-[#38bdac]/30 mb-6",children:s.jsx(_e,{className:"p-4",children:s.jsxs("div",{className:"flex items-start gap-3",children:[s.jsx(Zh,{className:"w-5 h-5 text-[#38bdac] mt-0.5"}),s.jsxs("div",{children:[s.jsx("h3",{className:"text-white font-medium mb-2",children:"自动分账规则"}),s.jsxs("div",{className:"text-sm text-gray-400 space-y-1",children:[s.jsxs("p",{children:["• ",s.jsx("span",{className:"text-[#38bdac]",children:"分销比例"}),":推广者获得订单金额的"," ",s.jsx("span",{className:"text-white font-medium",children:"90%"})]}),s.jsxs("p",{children:["• ",s.jsx("span",{className:"text-[#38bdac]",children:"结算方式"}),":用户付款后,分销收益自动计入推广者账户"]}),s.jsxs("p",{children:["• ",s.jsx("span",{className:"text-[#38bdac]",children:"提现方式"}),":用户在小程序端点击提现,系统自动转账到微信零钱"]}),s.jsxs("p",{children:["• ",s.jsx("span",{className:"text-[#38bdac]",children:"审批流程"}),":待处理的提现需管理员手动确认打款后批准(自动审批开关在推广中心-提现审核)"]})]})]})]})})}),s.jsxs("div",{className:"grid grid-cols-4 gap-4 mb-6",children:[s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsxs(_e,{className:"p-4 text-center",children:[s.jsx("div",{className:"text-3xl font-bold text-[#38bdac]",children:n.total}),s.jsx("div",{className:"text-sm text-gray-400",children:"总申请"})]})}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsxs(_e,{className:"p-4 text-center",children:[s.jsx("div",{className:"text-3xl font-bold text-orange-400",children:n.pendingCount}),s.jsx("div",{className:"text-sm text-gray-400",children:"待处理"}),s.jsxs("div",{className:"text-xs text-orange-400 mt-1",children:["¥",n.pendingAmount.toFixed(2)]})]})}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsxs(_e,{className:"p-4 text-center",children:[s.jsx("div",{className:"text-3xl font-bold text-green-400",children:n.successCount}),s.jsx("div",{className:"text-sm text-gray-400",children:"已完成"}),s.jsxs("div",{className:"text-xs text-green-400 mt-1",children:["¥",n.successAmount.toFixed(2)]})]})}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsxs(_e,{className:"p-4 text-center",children:[s.jsx("div",{className:"text-3xl font-bold text-red-400",children:n.failedCount}),s.jsx("div",{className:"text-sm text-gray-400",children:"已拒绝"})]})})]}),s.jsx("div",{className:"flex gap-2 mb-4",children:["all","pending","success","failed"].map(J=>s.jsx(Y,{variant:u===J?"default":"outline",size:"sm",onClick:()=>h(J),className:u===J?"bg-[#38bdac] hover:bg-[#2da396] text-white":"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:J==="all"?"全部":J==="pending"?"待处理":J==="success"?"已完成":"已拒绝"},J))}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:s.jsx(_e,{className:"p-0",children:a?s.jsxs("div",{className:"flex items-center justify-center py-12",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):t.length===0?s.jsxs("div",{className:"text-center py-12",children:[s.jsx(Mc,{className:"w-12 h-12 text-gray-600 mx-auto mb-3"}),s.jsx("p",{className:"text-gray-500",children:"暂无提现记录"})]}):s.jsxs(s.Fragment,{children:[s.jsx("div",{className:"overflow-x-auto",children:s.jsxs("table",{className:"w-full text-sm",children:[s.jsx("thead",{children:s.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[s.jsx("th",{className:"p-4 text-left font-medium",children:"申请时间"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"用户"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"提现金额"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"用户佣金信息"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"备注"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"处理时间"}),s.jsx("th",{className:"p-4 text-left font-medium",children:"确认收款"}),s.jsx("th",{className:"p-4 text-right font-medium",children:"操作"})]})}),s.jsx("tbody",{className:"divide-y divide-gray-700/50",children:t.map(J=>s.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[s.jsx("td",{className:"p-4 text-gray-400",children:new Date(J.createdAt??"").toLocaleString()}),s.jsx("td",{className:"p-4",children:s.jsxs("div",{className:"flex items-center gap-2",children:[J.userAvatar?s.jsx("img",{src:So(J.userAvatar),alt:J.userName??"",className:"w-8 h-8 rounded-full object-cover"}):s.jsx("div",{className:"w-8 h-8 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm text-[#38bdac]",children:(J.userName??"?").charAt(0)}),s.jsxs("div",{children:[s.jsx("p",{className:"font-medium text-white",children:J.userName??"未知"}),s.jsx("p",{className:"text-xs text-gray-500",children:J.userPhone??J.referralCode??(J.userId??"").slice(0,10)})]})]})}),s.jsx("td",{className:"p-4",children:s.jsxs("span",{className:"font-bold text-orange-400",children:["¥",Number(J.amount).toFixed(2)]})}),s.jsx("td",{className:"p-4",children:J.userCommissionInfo?s.jsxs("div",{className:"text-xs space-y-1",children:[s.jsxs("div",{className:"flex justify-between gap-4",children:[s.jsx("span",{className:"text-gray-500",children:"累计佣金:"}),s.jsxs("span",{className:"text-[#38bdac] font-medium",children:["¥",J.userCommissionInfo.totalCommission.toFixed(2)]})]}),s.jsxs("div",{className:"flex justify-between gap-4",children:[s.jsx("span",{className:"text-gray-500",children:"已提现:"}),s.jsxs("span",{className:"text-gray-400",children:["¥",J.userCommissionInfo.withdrawnEarnings.toFixed(2)]})]}),s.jsxs("div",{className:"flex justify-between gap-4",children:[s.jsx("span",{className:"text-gray-500",children:"待审核:"}),s.jsxs("span",{className:"text-orange-400",children:["¥",J.userCommissionInfo.pendingWithdrawals.toFixed(2)]})]}),s.jsxs("div",{className:"flex justify-between gap-4 pt-1 border-t border-gray-700/30",children:[s.jsx("span",{className:"text-gray-500",children:"审核后余额:"}),s.jsxs("span",{className:J.userCommissionInfo.availableAfterThis>=0?"text-green-400 font-medium":"text-red-400 font-medium",children:["¥",J.userCommissionInfo.availableAfterThis.toFixed(2)]})]})]}):s.jsx("span",{className:"text-gray-500 text-xs",children:"暂无数据"})}),s.jsx("td",{className:"p-4",children:ae(J.status)}),s.jsx("td",{className:"p-4 max-w-[180px]",children:s.jsx("span",{className:`text-xs ${J.status==="rejected"||J.status==="failed"?"text-red-400":"text-gray-400"}`,title:J.remark,children:J.remark||"-"})}),s.jsx("td",{className:"p-4 text-gray-400",children:J.processedAt?new Date(J.processedAt).toLocaleString():"-"}),s.jsx("td",{className:"p-4 text-gray-400",children:J.userConfirmedAt?s.jsxs("span",{className:"text-green-400",title:J.userConfirmedAt,children:["已确认 ",new Date(J.userConfirmedAt).toLocaleString()]}):"-"}),s.jsxs("td",{className:"p-4 text-right",children:[(J.status==="pending"||J.status==="pending_confirm")&&s.jsxs("div",{className:"flex items-center justify-end gap-2",children:[s.jsxs(Y,{size:"sm",onClick:()=>te(J.id),disabled:w===J.id,className:"bg-green-600 hover:bg-green-700 text-white",children:[s.jsx(ip,{className:"w-4 h-4 mr-1"}),"批准"]}),s.jsxs(Y,{size:"sm",variant:"outline",onClick:()=>Q(J.id),disabled:w===J.id,className:"border-red-500/50 text-red-400 hover:bg-red-500/10 bg-transparent",children:[s.jsx(ss,{className:"w-4 h-4 mr-1"}),"拒绝"]})]}),(J.status==="success"||J.status==="completed")&&J.transactionId&&s.jsx("span",{className:"text-xs text-gray-500 font-mono",children:J.transactionId})]})]},J.id))})]})}),s.jsx(sr,{page:f,totalPages:I,total:v,pageSize:x,onPageChange:m,onPageSizeChange:J=>{y(J),m(1)}})]})})}),s.jsx(Bt,{open:!!E,onOpenChange:J=>!J&&re(),children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[s.jsx(Vt,{children:s.jsx(Ht,{className:"text-white",children:"拒绝提现"})}),s.jsxs("div",{className:"space-y-4",children:[s.jsx("p",{className:"text-gray-400 text-sm",children:"拒绝后该笔提现金额将返还用户余额。"}),s.jsxs("div",{children:[s.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"拒绝原因(必填)"}),s.jsx("div",{className:"form-input",children:s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"请输入拒绝原因",value:R,onChange:J=>O(J.target.value)})})]})]}),s.jsxs(xn,{children:[s.jsx(Y,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:re,disabled:q,children:"取消"}),s.jsx(Y,{className:"bg-red-600 hover:bg-red-700 text-white",onClick:B,disabled:q||!R.trim(),children:q?"提交中...":"确认拒绝"})]})]})})]})}var jx={exports:{}},kx={};/** + * @license React + * use-sync-external-store-shim.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var H1;function j8(){if(H1)return kx;H1=1;var t=du();function e(m,x){return m===x&&(m!==0||1/m===1/x)||m!==m&&x!==x}var n=typeof Object.is=="function"?Object.is:e,r=t.useState,a=t.useEffect,i=t.useLayoutEffect,o=t.useDebugValue;function c(m,x){var y=x(),v=r({inst:{value:y,getSnapshot:x}}),N=v[0].inst,w=v[1];return i(function(){N.value=y,N.getSnapshot=x,u(N)&&w({inst:N})},[m,y,x]),a(function(){return u(N)&&w({inst:N}),m(function(){u(N)&&w({inst:N})})},[m]),o(y),y}function u(m){var x=m.getSnapshot;m=m.value;try{var y=x();return!n(m,y)}catch{return!0}}function h(m,x){return x()}var f=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?h:c;return kx.useSyncExternalStore=t.useSyncExternalStore!==void 0?t.useSyncExternalStore:f,kx}var U1;function v2(){return U1||(U1=1,jx.exports=j8()),jx.exports}var N2=v2();function ps(t){this.content=t}ps.prototype={constructor:ps,find:function(t){for(var e=0;e>1}};ps.from=function(t){if(t instanceof ps)return t;var e=[];if(t)for(var n in t)e.push(n,t[n]);return new ps(e)};function w2(t,e,n){for(let r=0;;r++){if(r==t.childCount||r==e.childCount)return t.childCount==e.childCount?null:n;let a=t.child(r),i=e.child(r);if(a==i){n+=a.nodeSize;continue}if(!a.sameMarkup(i))return n;if(a.isText&&a.text!=i.text){for(let o=0;a.text[o]==i.text[o];o++)n++;return n}if(a.content.size||i.content.size){let o=w2(a.content,i.content,n+1);if(o!=null)return o}n+=a.nodeSize}}function j2(t,e,n,r){for(let a=t.childCount,i=e.childCount;;){if(a==0||i==0)return a==i?null:{a:n,b:r};let o=t.child(--a),c=e.child(--i),u=o.nodeSize;if(o==c){n-=u,r-=u;continue}if(!o.sameMarkup(c))return{a:n,b:r};if(o.isText&&o.text!=c.text){let h=0,f=Math.min(o.text.length,c.text.length);for(;he&&r(u,a+c,i||null,o)!==!1&&u.content.size){let f=c+1;u.nodesBetween(Math.max(0,e-f),Math.min(u.content.size,n-f),r,a+f)}c=h}}descendants(e){this.nodesBetween(0,this.size,e)}textBetween(e,n,r,a){let i="",o=!0;return this.nodesBetween(e,n,(c,u)=>{let h=c.isText?c.text.slice(Math.max(e,u)-u,n-u):c.isLeaf?a?typeof a=="function"?a(c):a:c.type.spec.leafText?c.type.spec.leafText(c):"":"";c.isBlock&&(c.isLeaf&&h||c.isTextblock)&&r&&(o?o=!1:i+=r),i+=h},0),i}append(e){if(!e.size)return this;if(!this.size)return e;let n=this.lastChild,r=e.firstChild,a=this.content.slice(),i=0;for(n.isText&&n.sameMarkup(r)&&(a[a.length-1]=n.withText(n.text+r.text),i=1);ie)for(let i=0,o=0;oe&&((on)&&(c.isText?c=c.cut(Math.max(0,e-o),Math.min(c.text.length,n-o)):c=c.cut(Math.max(0,e-o-1),Math.min(c.content.size,n-o-1))),r.push(c),a+=c.nodeSize),o=u}return new Ne(r,a)}cutByIndex(e,n){return e==n?Ne.empty:e==0&&n==this.content.length?this:new Ne(this.content.slice(e,n))}replaceChild(e,n){let r=this.content[e];if(r==n)return this;let a=this.content.slice(),i=this.size+n.nodeSize-r.nodeSize;return a[e]=n,new Ne(a,i)}addToStart(e){return new Ne([e].concat(this.content),this.size+e.nodeSize)}addToEnd(e){return new Ne(this.content.concat(e),this.size+e.nodeSize)}eq(e){if(this.content.length!=e.content.length)return!1;for(let n=0;nthis.size||e<0)throw new RangeError(`Position ${e} outside of fragment (${this})`);for(let n=0,r=0;;n++){let a=this.child(n),i=r+a.nodeSize;if(i>=e)return i==e?Sh(n+1,i):Sh(n,r);r=i}}toString(){return"<"+this.toStringInner()+">"}toStringInner(){return this.content.join(", ")}toJSON(){return this.content.length?this.content.map(e=>e.toJSON()):null}static fromJSON(e,n){if(!n)return Ne.empty;if(!Array.isArray(n))throw new RangeError("Invalid input for Fragment.fromJSON");return new Ne(n.map(e.nodeFromJSON))}static fromArray(e){if(!e.length)return Ne.empty;let n,r=0;for(let a=0;athis.type.rank&&(n||(n=e.slice(0,a)),n.push(this),r=!0),n&&n.push(i)}}return n||(n=e.slice()),r||n.push(this),n}removeFromSet(e){for(let n=0;nr.type.rank-a.type.rank),n}};an.none=[];class uf extends Error{}class ze{constructor(e,n,r){this.content=e,this.openStart=n,this.openEnd=r}get size(){return this.content.size-this.openStart-this.openEnd}insertAt(e,n){let r=S2(this.content,e+this.openStart,n);return r&&new ze(r,this.openStart,this.openEnd)}removeBetween(e,n){return new ze(k2(this.content,e+this.openStart,n+this.openStart),this.openStart,this.openEnd)}eq(e){return this.content.eq(e.content)&&this.openStart==e.openStart&&this.openEnd==e.openEnd}toString(){return this.content+"("+this.openStart+","+this.openEnd+")"}toJSON(){if(!this.content.size)return null;let e={content:this.content.toJSON()};return this.openStart>0&&(e.openStart=this.openStart),this.openEnd>0&&(e.openEnd=this.openEnd),e}static fromJSON(e,n){if(!n)return ze.empty;let r=n.openStart||0,a=n.openEnd||0;if(typeof r!="number"||typeof a!="number")throw new RangeError("Invalid input for Slice.fromJSON");return new ze(Ne.fromJSON(e,n.content),r,a)}static maxOpen(e,n=!0){let r=0,a=0;for(let i=e.firstChild;i&&!i.isLeaf&&(n||!i.type.spec.isolating);i=i.firstChild)r++;for(let i=e.lastChild;i&&!i.isLeaf&&(n||!i.type.spec.isolating);i=i.lastChild)a++;return new ze(e,r,a)}}ze.empty=new ze(Ne.empty,0,0);function k2(t,e,n){let{index:r,offset:a}=t.findIndex(e),i=t.maybeChild(r),{index:o,offset:c}=t.findIndex(n);if(a==e||i.isText){if(c!=n&&!t.child(o).isText)throw new RangeError("Removing non-flat range");return t.cut(0,e).append(t.cut(n))}if(r!=o)throw new RangeError("Removing non-flat range");return t.replaceChild(r,i.copy(k2(i.content,e-a-1,n-a-1)))}function S2(t,e,n,r){let{index:a,offset:i}=t.findIndex(e),o=t.maybeChild(a);if(i==e||o.isText)return r&&!r.canReplace(a,a,n)?null:t.cut(0,e).append(n).append(t.cut(e));let c=S2(o.content,e-i-1,n,o);return c&&t.replaceChild(a,o.copy(c))}function k8(t,e,n){if(n.openStart>t.depth)throw new uf("Inserted content deeper than insertion position");if(t.depth-n.openStart!=e.depth-n.openEnd)throw new uf("Inconsistent open depths");return C2(t,e,n,0)}function C2(t,e,n,r){let a=t.index(r),i=t.node(r);if(a==e.index(r)&&r=0&&t.isText&&t.sameMarkup(e[n])?e[n]=t.withText(e[n].text+t.text):e.push(t)}function _d(t,e,n,r){let a=(e||t).node(n),i=0,o=e?e.index(n):a.childCount;t&&(i=t.index(n),t.depth>n?i++:t.textOffset&&(hl(t.nodeAfter,r),i++));for(let c=i;ca&&Cg(t,e,a+1),o=r.depth>a&&Cg(n,r,a+1),c=[];return _d(null,t,a,c),i&&o&&e.index(a)==n.index(a)?(T2(i,o),hl(fl(i,E2(t,e,n,r,a+1)),c)):(i&&hl(fl(i,hf(t,e,a+1)),c),_d(e,n,a,c),o&&hl(fl(o,hf(n,r,a+1)),c)),_d(r,null,a,c),new Ne(c)}function hf(t,e,n){let r=[];if(_d(null,t,n,r),t.depth>n){let a=Cg(t,e,n+1);hl(fl(a,hf(t,e,n+1)),r)}return _d(e,null,n,r),new Ne(r)}function S8(t,e){let n=e.depth-t.openStart,a=e.node(n).copy(t.content);for(let i=n-1;i>=0;i--)a=e.node(i).copy(Ne.from(a));return{start:a.resolveNoCache(t.openStart+n),end:a.resolveNoCache(a.content.size-t.openEnd-n)}}class Yd{constructor(e,n,r){this.pos=e,this.path=n,this.parentOffset=r,this.depth=n.length/3-1}resolveDepth(e){return e==null?this.depth:e<0?this.depth+e:e}get parent(){return this.node(this.depth)}get doc(){return this.node(0)}node(e){return this.path[this.resolveDepth(e)*3]}index(e){return this.path[this.resolveDepth(e)*3+1]}indexAfter(e){return e=this.resolveDepth(e),this.index(e)+(e==this.depth&&!this.textOffset?0:1)}start(e){return e=this.resolveDepth(e),e==0?0:this.path[e*3-1]+1}end(e){return e=this.resolveDepth(e),this.start(e)+this.node(e).content.size}before(e){if(e=this.resolveDepth(e),!e)throw new RangeError("There is no position before the top-level node");return e==this.depth+1?this.pos:this.path[e*3-1]}after(e){if(e=this.resolveDepth(e),!e)throw new RangeError("There is no position after the top-level node");return e==this.depth+1?this.pos:this.path[e*3-1]+this.path[e*3].nodeSize}get textOffset(){return this.pos-this.path[this.path.length-1]}get nodeAfter(){let e=this.parent,n=this.index(this.depth);if(n==e.childCount)return null;let r=this.pos-this.path[this.path.length-1],a=e.child(n);return r?e.child(n).cut(r):a}get nodeBefore(){let e=this.index(this.depth),n=this.pos-this.path[this.path.length-1];return n?this.parent.child(e).cut(0,n):e==0?null:this.parent.child(e-1)}posAtIndex(e,n){n=this.resolveDepth(n);let r=this.path[n*3],a=n==0?0:this.path[n*3-1]+1;for(let i=0;i0;n--)if(this.start(n)<=e&&this.end(n)>=e)return n;return 0}blockRange(e=this,n){if(e.pos=0;r--)if(e.pos<=this.end(r)&&(!n||n(this.node(r))))return new ff(this,e,r);return null}sameParent(e){return this.pos-this.parentOffset==e.pos-e.parentOffset}max(e){return e.pos>this.pos?e:this}min(e){return e.pos=0&&n<=e.content.size))throw new RangeError("Position "+n+" out of range");let r=[],a=0,i=n;for(let o=e;;){let{index:c,offset:u}=o.content.findIndex(i),h=i-u;if(r.push(o,c,a+u),!h||(o=o.child(c),o.isText))break;i=h-1,a+=u+1}return new Yd(n,r,i)}static resolveCached(e,n){let r=W1.get(e);if(r)for(let i=0;ie&&this.nodesBetween(e,n,i=>(r.isInSet(i.marks)&&(a=!0),!a)),a}get isBlock(){return this.type.isBlock}get isTextblock(){return this.type.isTextblock}get inlineContent(){return this.type.inlineContent}get isInline(){return this.type.isInline}get isText(){return this.type.isText}get isLeaf(){return this.type.isLeaf}get isAtom(){return this.type.isAtom}toString(){if(this.type.spec.toDebugString)return this.type.spec.toDebugString(this);let e=this.type.name;return this.content.size&&(e+="("+this.content.toStringInner()+")"),M2(this.marks,e)}contentMatchAt(e){let n=this.type.contentMatch.matchFragment(this.content,0,e);if(!n)throw new Error("Called contentMatchAt on a node with invalid content");return n}canReplace(e,n,r=Ne.empty,a=0,i=r.childCount){let o=this.contentMatchAt(e).matchFragment(r,a,i),c=o&&o.matchFragment(this.content,n);if(!c||!c.validEnd)return!1;for(let u=a;un.type.name)}`);this.content.forEach(n=>n.check())}toJSON(){let e={type:this.type.name};for(let n in this.attrs){e.attrs=this.attrs;break}return this.content.size&&(e.content=this.content.toJSON()),this.marks.length&&(e.marks=this.marks.map(n=>n.toJSON())),e}static fromJSON(e,n){if(!n)throw new RangeError("Invalid input for Node.fromJSON");let r;if(n.marks){if(!Array.isArray(n.marks))throw new RangeError("Invalid mark data for Node.fromJSON");r=n.marks.map(e.markFromJSON)}if(n.type=="text"){if(typeof n.text!="string")throw new RangeError("Invalid text node in JSON");return e.text(n.text,r)}let a=Ne.fromJSON(e,n.content),i=e.nodeType(n.type).create(n.attrs,a,r);return i.type.checkAttrs(i.attrs),i}};bi.prototype.text=void 0;class pf extends bi{constructor(e,n,r,a){if(super(e,n,null,a),!r)throw new RangeError("Empty text nodes are not allowed");this.text=r}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):M2(this.marks,JSON.stringify(this.text))}get textContent(){return this.text}textBetween(e,n){return this.text.slice(e,n)}get nodeSize(){return this.text.length}mark(e){return e==this.marks?this:new pf(this.type,this.attrs,this.text,e)}withText(e){return e==this.text?this:new pf(this.type,this.attrs,e,this.marks)}cut(e=0,n=this.text.length){return e==0&&n==this.text.length?this:this.withText(this.text.slice(e,n))}eq(e){return this.sameMarkup(e)&&this.text==e.text}toJSON(){let e=super.toJSON();return e.text=this.text,e}}function M2(t,e){for(let n=t.length-1;n>=0;n--)e=t[n].type.name+"("+e+")";return e}class Nl{constructor(e){this.validEnd=e,this.next=[],this.wrapCache=[]}static parse(e,n){let r=new M8(e,n);if(r.next==null)return Nl.empty;let a=A2(r);r.next&&r.err("Unexpected trailing text");let i=D8(L8(a));return _8(i,r),i}matchType(e){for(let n=0;nh.createAndFill()));for(let h=0;h=this.next.length)throw new RangeError(`There's no ${e}th edge in this content match`);return this.next[e]}toString(){let e=[];function n(r){e.push(r);for(let a=0;a{let i=a+(r.validEnd?"*":" ")+" ";for(let o=0;o"+e.indexOf(r.next[o].next);return i}).join(` +`)}}Nl.empty=new Nl(!0);class M8{constructor(e,n){this.string=e,this.nodeTypes=n,this.inline=null,this.pos=0,this.tokens=e.split(/\s*(?=\b|\W|$)/),this.tokens[this.tokens.length-1]==""&&this.tokens.pop(),this.tokens[0]==""&&this.tokens.shift()}get next(){return this.tokens[this.pos]}eat(e){return this.next==e&&(this.pos++||!0)}err(e){throw new SyntaxError(e+" (in content expression '"+this.string+"')")}}function A2(t){let e=[];do e.push(A8(t));while(t.eat("|"));return e.length==1?e[0]:{type:"choice",exprs:e}}function A8(t){let e=[];do e.push(I8(t));while(t.next&&t.next!=")"&&t.next!="|");return e.length==1?e[0]:{type:"seq",exprs:e}}function I8(t){let e=O8(t);for(;;)if(t.eat("+"))e={type:"plus",expr:e};else if(t.eat("*"))e={type:"star",expr:e};else if(t.eat("?"))e={type:"opt",expr:e};else if(t.eat("{"))e=P8(t,e);else break;return e}function K1(t){/\D/.test(t.next)&&t.err("Expected number, got '"+t.next+"'");let e=Number(t.next);return t.pos++,e}function P8(t,e){let n=K1(t),r=n;return t.eat(",")&&(t.next!="}"?r=K1(t):r=-1),t.eat("}")||t.err("Unclosed braced range"),{type:"range",min:n,max:r,expr:e}}function R8(t,e){let n=t.nodeTypes,r=n[e];if(r)return[r];let a=[];for(let i in n){let o=n[i];o.isInGroup(e)&&a.push(o)}return a.length==0&&t.err("No node type or group '"+e+"' found"),a}function O8(t){if(t.eat("(")){let e=A2(t);return t.eat(")")||t.err("Missing closing paren"),e}else if(/\W/.test(t.next))t.err("Unexpected token '"+t.next+"'");else{let e=R8(t,t.next).map(n=>(t.inline==null?t.inline=n.isInline:t.inline!=n.isInline&&t.err("Mixing inline and block content"),{type:"name",value:n}));return t.pos++,e.length==1?e[0]:{type:"choice",exprs:e}}}function L8(t){let e=[[]];return a(i(t,0),n()),e;function n(){return e.push([])-1}function r(o,c,u){let h={term:u,to:c};return e[o].push(h),h}function a(o,c){o.forEach(u=>u.to=c)}function i(o,c){if(o.type=="choice")return o.exprs.reduce((u,h)=>u.concat(i(h,c)),[]);if(o.type=="seq")for(let u=0;;u++){let h=i(o.exprs[u],c);if(u==o.exprs.length-1)return h;a(h,c=n())}else if(o.type=="star"){let u=n();return r(c,u),a(i(o.expr,u),u),[r(u)]}else if(o.type=="plus"){let u=n();return a(i(o.expr,c),u),a(i(o.expr,u),u),[r(u)]}else{if(o.type=="opt")return[r(c)].concat(i(o.expr,c));if(o.type=="range"){let u=c;for(let h=0;h{t[o].forEach(({term:c,to:u})=>{if(!c)return;let h;for(let f=0;f{h||a.push([c,h=[]]),h.indexOf(f)==-1&&h.push(f)})})});let i=e[r.join(",")]=new Nl(r.indexOf(t.length-1)>-1);for(let o=0;o-1}get whitespace(){return this.spec.whitespace||(this.spec.code?"pre":"normal")}hasRequiredAttrs(){for(let e in this.attrs)if(this.attrs[e].isRequired)return!0;return!1}compatibleContent(e){return this==e||this.contentMatch.compatible(e.contentMatch)}computeAttrs(e){return!e&&this.defaultAttrs?this.defaultAttrs:R2(this.attrs,e)}create(e=null,n,r){if(this.isText)throw new Error("NodeType.create can't construct text nodes");return new bi(this,this.computeAttrs(e),Ne.from(n),an.setFrom(r))}createChecked(e=null,n,r){return n=Ne.from(n),this.checkContent(n),new bi(this,this.computeAttrs(e),n,an.setFrom(r))}createAndFill(e=null,n,r){if(e=this.computeAttrs(e),n=Ne.from(n),n.size){let o=this.contentMatch.fillBefore(n);if(!o)return null;n=o.append(n)}let a=this.contentMatch.matchFragment(n),i=a&&a.fillBefore(Ne.empty,!0);return i?new bi(this,e,n.append(i),an.setFrom(r)):null}validContent(e){let n=this.contentMatch.matchFragment(e);if(!n||!n.validEnd)return!1;for(let r=0;r-1}allowsMarks(e){if(this.markSet==null)return!0;for(let n=0;nr[i]=new D2(i,n,o));let a=n.spec.topNode||"doc";if(!r[a])throw new RangeError("Schema is missing its top node type ('"+a+"')");if(!r.text)throw new RangeError("Every schema needs a 'text' type");for(let i in r.text.attrs)throw new RangeError("The text node type should not have attributes");return r}};function z8(t,e,n){let r=n.split("|");return a=>{let i=a===null?"null":typeof a;if(r.indexOf(i)<0)throw new RangeError(`Expected value of type ${r} for attribute ${e} on type ${t}, got ${i}`)}}class $8{constructor(e,n,r){this.hasDefault=Object.prototype.hasOwnProperty.call(r,"default"),this.default=r.default,this.validate=typeof r.validate=="string"?z8(e,n,r.validate):r.validate}get isRequired(){return!this.hasDefault}}class pp{constructor(e,n,r,a){this.name=e,this.rank=n,this.schema=r,this.spec=a,this.attrs=L2(e,a.attrs),this.excluded=null;let i=P2(this.attrs);this.instance=i?new an(this,i):null}create(e=null){return!e&&this.instance?this.instance:new an(this,R2(this.attrs,e))}static compile(e,n){let r=Object.create(null),a=0;return e.forEach((i,o)=>r[i]=new pp(i,a++,n,o)),r}removeFromSet(e){for(var n=0;n-1}}class _2{constructor(e){this.linebreakReplacement=null,this.cached=Object.create(null);let n=this.spec={};for(let a in e)n[a]=e[a];n.nodes=ps.from(e.nodes),n.marks=ps.from(e.marks||{}),this.nodes=G1.compile(this.spec.nodes,this),this.marks=pp.compile(this.spec.marks,this);let r=Object.create(null);for(let a in this.nodes){if(a in this.marks)throw new RangeError(a+" can not be both a node and a mark");let i=this.nodes[a],o=i.spec.content||"",c=i.spec.marks;if(i.contentMatch=r[o]||(r[o]=Nl.parse(o,this.nodes)),i.inlineContent=i.contentMatch.inlineContent,i.spec.linebreakReplacement){if(this.linebreakReplacement)throw new RangeError("Multiple linebreak nodes defined");if(!i.isInline||!i.isLeaf)throw new RangeError("Linebreak replacement nodes must be inline leaf nodes");this.linebreakReplacement=i}i.markSet=c=="_"?null:c?J1(this,c.split(" ")):c==""||!i.inlineContent?[]:null}for(let a in this.marks){let i=this.marks[a],o=i.spec.excludes;i.excluded=o==null?[i]:o==""?[]:J1(this,o.split(" "))}this.nodeFromJSON=a=>bi.fromJSON(this,a),this.markFromJSON=a=>an.fromJSON(this,a),this.topNodeType=this.nodes[this.spec.topNode||"doc"],this.cached.wrappings=Object.create(null)}node(e,n=null,r,a){if(typeof e=="string")e=this.nodeType(e);else if(e instanceof G1){if(e.schema!=this)throw new RangeError("Node type from different schema used ("+e.name+")")}else throw new RangeError("Invalid node type: "+e);return e.createChecked(n,r,a)}text(e,n){let r=this.nodes.text;return new pf(r,r.defaultAttrs,e,an.setFrom(n))}mark(e,n){return typeof e=="string"&&(e=this.marks[e]),e.create(n)}nodeType(e){let n=this.nodes[e];if(!n)throw new RangeError("Unknown node type: "+e);return n}}function J1(t,e){let n=[];for(let r=0;r-1)&&n.push(o=u)}if(!o)throw new SyntaxError("Unknown mark type: '"+e[r]+"'")}return n}function F8(t){return t.tag!=null}function B8(t){return t.style!=null}class No{constructor(e,n){this.schema=e,this.rules=n,this.tags=[],this.styles=[];let r=this.matchedStyles=[];n.forEach(a=>{if(F8(a))this.tags.push(a);else if(B8(a)){let i=/[^=]*/.exec(a.style)[0];r.indexOf(i)<0&&r.push(i),this.styles.push(a)}}),this.normalizeLists=!this.tags.some(a=>{if(!/^(ul|ol)\b/.test(a.tag)||!a.node)return!1;let i=e.nodes[a.node];return i.contentMatch.matchType(i)})}parse(e,n={}){let r=new Y1(this,n,!1);return r.addAll(e,an.none,n.from,n.to),r.finish()}parseSlice(e,n={}){let r=new Y1(this,n,!0);return r.addAll(e,an.none,n.from,n.to),ze.maxOpen(r.finish())}matchTag(e,n,r){for(let a=r?this.tags.indexOf(r)+1:0;ae.length&&(c.charCodeAt(e.length)!=61||c.slice(e.length+1)!=n))){if(o.getAttrs){let u=o.getAttrs(n);if(u===!1)continue;o.attrs=u||void 0}return o}}}static schemaRules(e){let n=[];function r(a){let i=a.priority==null?50:a.priority,o=0;for(;o{r(o=X1(o)),o.mark||o.ignore||o.clearMark||(o.mark=a)})}for(let a in e.nodes){let i=e.nodes[a].spec.parseDOM;i&&i.forEach(o=>{r(o=X1(o)),o.node||o.ignore||o.mark||(o.node=a)})}return n}static fromSchema(e){return e.cached.domParser||(e.cached.domParser=new No(e,No.schemaRules(e)))}}const z2={address:!0,article:!0,aside:!0,blockquote:!0,canvas:!0,dd:!0,div:!0,dl:!0,fieldset:!0,figcaption:!0,figure:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,li:!0,noscript:!0,ol:!0,output:!0,p:!0,pre:!0,section:!0,table:!0,tfoot:!0,ul:!0},V8={head:!0,noscript:!0,object:!0,script:!0,style:!0,title:!0},$2={ol:!0,ul:!0},Xd=1,Eg=2,zd=4;function Q1(t,e,n){return e!=null?(e?Xd:0)|(e==="full"?Eg:0):t&&t.whitespace=="pre"?Xd|Eg:n&~zd}class Ch{constructor(e,n,r,a,i,o){this.type=e,this.attrs=n,this.marks=r,this.solid=a,this.options=o,this.content=[],this.activeMarks=an.none,this.match=i||(o&zd?null:e.contentMatch)}findWrapping(e){if(!this.match){if(!this.type)return[];let n=this.type.contentMatch.fillBefore(Ne.from(e));if(n)this.match=this.type.contentMatch.matchFragment(n);else{let r=this.type.contentMatch,a;return(a=r.findWrapping(e.type))?(this.match=r,a):null}}return this.match.findWrapping(e.type)}finish(e){if(!(this.options&Xd)){let r=this.content[this.content.length-1],a;if(r&&r.isText&&(a=/[ \t\r\n\u000c]+$/.exec(r.text))){let i=r;r.text.length==a[0].length?this.content.pop():this.content[this.content.length-1]=i.withText(i.text.slice(0,i.text.length-a[0].length))}}let n=Ne.from(this.content);return!e&&this.match&&(n=n.append(this.match.fillBefore(Ne.empty,!0))),this.type?this.type.create(this.attrs,n,this.marks):n}inlineContext(e){return this.type?this.type.inlineContent:this.content.length?this.content[0].isInline:e.parentNode&&!z2.hasOwnProperty(e.parentNode.nodeName.toLowerCase())}}class Y1{constructor(e,n,r){this.parser=e,this.options=n,this.isOpen=r,this.open=0,this.localPreserveWS=!1;let a=n.topNode,i,o=Q1(null,n.preserveWhitespace,0)|(r?zd:0);a?i=new Ch(a.type,a.attrs,an.none,!0,n.topMatch||a.type.contentMatch,o):r?i=new Ch(null,null,an.none,!0,null,o):i=new Ch(e.schema.topNodeType,null,an.none,!0,null,o),this.nodes=[i],this.find=n.findPositions,this.needsBlock=!1}get top(){return this.nodes[this.open]}addDOM(e,n){e.nodeType==3?this.addTextNode(e,n):e.nodeType==1&&this.addElement(e,n)}addTextNode(e,n){let r=e.nodeValue,a=this.top,i=a.options&Eg?"full":this.localPreserveWS||(a.options&Xd)>0,{schema:o}=this.parser;if(i==="full"||a.inlineContext(e)||/[^ \t\r\n\u000c]/.test(r)){if(i)if(i==="full")r=r.replace(/\r\n?/g,` +`);else if(o.linebreakReplacement&&/[\r\n]/.test(r)&&this.top.findWrapping(o.linebreakReplacement.create())){let c=r.split(/\r?\n|\r/);for(let u=0;u!u.clearMark(h)):n=n.concat(this.parser.schema.marks[u.mark].create(u.attrs)),u.consuming===!1)c=u;else break}}return n}addElementByRule(e,n,r,a){let i,o;if(n.node)if(o=this.parser.schema.nodes[n.node],o.isLeaf)this.insertNode(o.create(n.attrs),r,e.nodeName=="BR")||this.leafFallback(e,r);else{let u=this.enter(o,n.attrs||null,r,n.preserveWhitespace);u&&(i=!0,r=u)}else{let u=this.parser.schema.marks[n.mark];r=r.concat(u.create(n.attrs))}let c=this.top;if(o&&o.isLeaf)this.findInside(e);else if(a)this.addElement(e,r,a);else if(n.getContent)this.findInside(e),n.getContent(e,this.parser.schema).forEach(u=>this.insertNode(u,r,!1));else{let u=e;typeof n.contentElement=="string"?u=e.querySelector(n.contentElement):typeof n.contentElement=="function"?u=n.contentElement(e):n.contentElement&&(u=n.contentElement),this.findAround(e,u,!0),this.addAll(u,r),this.findAround(e,u,!1)}i&&this.sync(c)&&this.open--}addAll(e,n,r,a){let i=r||0;for(let o=r?e.childNodes[r]:e.firstChild,c=a==null?null:e.childNodes[a];o!=c;o=o.nextSibling,++i)this.findAtPoint(e,i),this.addDOM(o,n);this.findAtPoint(e,i)}findPlace(e,n,r){let a,i;for(let o=this.open,c=0;o>=0;o--){let u=this.nodes[o],h=u.findWrapping(e);if(h&&(!a||a.length>h.length+c)&&(a=h,i=u,!h.length))break;if(u.solid){if(r)break;c+=2}}if(!a)return null;this.sync(i);for(let o=0;o(o.type?o.type.allowsMarkType(h.type):Z1(h.type,e))?(u=h.addToSet(u),!1):!0),this.nodes.push(new Ch(e,n,u,a,null,c)),this.open++,r}closeExtra(e=!1){let n=this.nodes.length-1;if(n>this.open){for(;n>this.open;n--)this.nodes[n-1].content.push(this.nodes[n].finish(e));this.nodes.length=this.open+1}}finish(){return this.open=0,this.closeExtra(this.isOpen),this.nodes[0].finish(!!(this.isOpen||this.options.topOpen))}sync(e){for(let n=this.open;n>=0;n--){if(this.nodes[n]==e)return this.open=n,!0;this.localPreserveWS&&(this.nodes[n].options|=Xd)}return!1}get currentPos(){this.closeExtra();let e=0;for(let n=this.open;n>=0;n--){let r=this.nodes[n].content;for(let a=r.length-1;a>=0;a--)e+=r[a].nodeSize;n&&e++}return e}findAtPoint(e,n){if(this.find)for(let r=0;r-1)return e.split(/\s*\|\s*/).some(this.matchesContext,this);let n=e.split("/"),r=this.options.context,a=!this.isOpen&&(!r||r.parent.type==this.nodes[0].type),i=-(r?r.depth+1:0)+(a?0:1),o=(c,u)=>{for(;c>=0;c--){let h=n[c];if(h==""){if(c==n.length-1||c==0)continue;for(;u>=i;u--)if(o(c-1,u))return!0;return!1}else{let f=u>0||u==0&&a?this.nodes[u].type:r&&u>=i?r.node(u-i).type:null;if(!f||f.name!=h&&!f.isInGroup(h))return!1;u--}}return!0};return o(n.length-1,this.open)}textblockFromContext(){let e=this.options.context;if(e)for(let n=e.depth;n>=0;n--){let r=e.node(n).contentMatchAt(e.indexAfter(n)).defaultType;if(r&&r.isTextblock&&r.defaultAttrs)return r}for(let n in this.parser.schema.nodes){let r=this.parser.schema.nodes[n];if(r.isTextblock&&r.defaultAttrs)return r}}}function H8(t){for(let e=t.firstChild,n=null;e;e=e.nextSibling){let r=e.nodeType==1?e.nodeName.toLowerCase():null;r&&$2.hasOwnProperty(r)&&n?(n.appendChild(e),e=n):r=="li"?n=e:r&&(n=null)}}function U8(t,e){return(t.matches||t.msMatchesSelector||t.webkitMatchesSelector||t.mozMatchesSelector).call(t,e)}function X1(t){let e={};for(let n in t)e[n]=t[n];return e}function Z1(t,e){let n=e.schema.nodes;for(let r in n){let a=n[r];if(!a.allowsMarkType(t))continue;let i=[],o=c=>{i.push(c);for(let u=0;u{if(i.length||o.marks.length){let c=0,u=0;for(;c=0;a--){let i=this.serializeMark(e.marks[a],e.isInline,n);i&&((i.contentDOM||i.dom).appendChild(r),r=i.dom)}return r}serializeMark(e,n,r={}){let a=this.marks[e.type.name];return a&&Uh(Cx(r),a(e,n),null,e.attrs)}static renderSpec(e,n,r=null,a){return Uh(e,n,r,a)}static fromSchema(e){return e.cached.domSerializer||(e.cached.domSerializer=new Il(this.nodesFromSchema(e),this.marksFromSchema(e)))}static nodesFromSchema(e){let n=eN(e.nodes);return n.text||(n.text=r=>r.text),n}static marksFromSchema(e){return eN(e.marks)}}function eN(t){let e={};for(let n in t){let r=t[n].spec.toDOM;r&&(e[n]=r)}return e}function Cx(t){return t.document||window.document}const tN=new WeakMap;function W8(t){let e=tN.get(t);return e===void 0&&tN.set(t,e=K8(t)),e}function K8(t){let e=null;function n(r){if(r&&typeof r=="object")if(Array.isArray(r))if(typeof r[0]=="string")e||(e=[]),e.push(r);else for(let a=0;a-1)throw new RangeError("Using an array from an attribute object as a DOM spec. This may be an attempted cross site scripting attack.");let o=a.indexOf(" ");o>0&&(n=a.slice(0,o),a=a.slice(o+1));let c,u=n?t.createElementNS(n,a):t.createElement(a),h=e[1],f=1;if(h&&typeof h=="object"&&h.nodeType==null&&!Array.isArray(h)){f=2;for(let m in h)if(h[m]!=null){let x=m.indexOf(" ");x>0?u.setAttributeNS(m.slice(0,x),m.slice(x+1),h[m]):m=="style"&&u.style?u.style.cssText=h[m]:u.setAttribute(m,h[m])}}for(let m=f;mf)throw new RangeError("Content hole must be the only child of its parent node");return{dom:u,contentDOM:u}}else{let{dom:y,contentDOM:v}=Uh(t,x,n,r);if(u.appendChild(y),v){if(c)throw new RangeError("Multiple content holes");c=v}}}return{dom:u,contentDOM:c}}const F2=65535,B2=Math.pow(2,16);function q8(t,e){return t+e*B2}function nN(t){return t&F2}function G8(t){return(t-(t&F2))/B2}const V2=1,H2=2,Wh=4,U2=8;class Mg{constructor(e,n,r){this.pos=e,this.delInfo=n,this.recover=r}get deleted(){return(this.delInfo&U2)>0}get deletedBefore(){return(this.delInfo&(V2|Wh))>0}get deletedAfter(){return(this.delInfo&(H2|Wh))>0}get deletedAcross(){return(this.delInfo&Wh)>0}}class pr{constructor(e,n=!1){if(this.ranges=e,this.inverted=n,!e.length&&pr.empty)return pr.empty}recover(e){let n=0,r=nN(e);if(!this.inverted)for(let a=0;ae)break;let h=this.ranges[c+i],f=this.ranges[c+o],m=u+h;if(e<=m){let x=h?e==u?-1:e==m?1:n:n,y=u+a+(x<0?0:f);if(r)return y;let v=e==(n<0?u:m)?null:q8(c/3,e-u),N=e==u?H2:e==m?V2:Wh;return(n<0?e!=u:e!=m)&&(N|=U2),new Mg(y,N,v)}a+=f-h}return r?e+a:new Mg(e+a,0,null)}touches(e,n){let r=0,a=nN(n),i=this.inverted?2:1,o=this.inverted?1:2;for(let c=0;ce)break;let h=this.ranges[c+i],f=u+h;if(e<=f&&c==a*3)return!0;r+=this.ranges[c+o]-h}return!1}forEach(e){let n=this.inverted?2:1,r=this.inverted?1:2;for(let a=0,i=0;a=0;n--){let a=e.getMirror(n);this.appendMap(e._maps[n].invert(),a!=null&&a>n?r-a-1:void 0)}}invert(){let e=new Zd;return e.appendMappingInverted(this),e}map(e,n=1){if(this.mirror)return this._map(e,n,!0);for(let r=this.from;ri&&u!o.isAtom||!c.type.allowsMarkType(this.mark.type)?o:o.mark(this.mark.addToSet(o.marks)),a),n.openStart,n.openEnd);return Hn.fromReplace(e,this.from,this.to,i)}invert(){return new na(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1);return n.deleted&&r.deleted||n.pos>=r.pos?null:new xo(n.pos,r.pos,this.mark)}merge(e){return e instanceof xo&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new xo(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"addMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for AddMarkStep.fromJSON");return new xo(n.from,n.to,e.markFromJSON(n.mark))}}Os.jsonID("addMark",xo);class na extends Os{constructor(e,n,r){super(),this.from=e,this.to=n,this.mark=r}apply(e){let n=e.slice(this.from,this.to),r=new ze($0(n.content,a=>a.mark(this.mark.removeFromSet(a.marks)),e),n.openStart,n.openEnd);return Hn.fromReplace(e,this.from,this.to,r)}invert(){return new xo(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1);return n.deleted&&r.deleted||n.pos>=r.pos?null:new na(n.pos,r.pos,this.mark)}merge(e){return e instanceof na&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new na(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"removeMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for RemoveMarkStep.fromJSON");return new na(n.from,n.to,e.markFromJSON(n.mark))}}Os.jsonID("removeMark",na);class go extends Os{constructor(e,n){super(),this.pos=e,this.mark=n}apply(e){let n=e.nodeAt(this.pos);if(!n)return Hn.fail("No node at mark step's position");let r=n.type.create(n.attrs,null,this.mark.addToSet(n.marks));return Hn.fromReplace(e,this.pos,this.pos+1,new ze(Ne.from(r),0,n.isLeaf?0:1))}invert(e){let n=e.nodeAt(this.pos);if(n){let r=this.mark.addToSet(n.marks);if(r.length==n.marks.length){for(let a=0;ar.pos?null:new as(n.pos,r.pos,a,i,this.slice,this.insert,this.structure)}toJSON(){let e={stepType:"replaceAround",from:this.from,to:this.to,gapFrom:this.gapFrom,gapTo:this.gapTo,insert:this.insert};return this.slice.size&&(e.slice=this.slice.toJSON()),this.structure&&(e.structure=!0),e}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number"||typeof n.gapFrom!="number"||typeof n.gapTo!="number"||typeof n.insert!="number")throw new RangeError("Invalid input for ReplaceAroundStep.fromJSON");return new as(n.from,n.to,n.gapFrom,n.gapTo,ze.fromJSON(e,n.slice),n.insert,!!n.structure)}}Os.jsonID("replaceAround",as);function Ag(t,e,n){let r=t.resolve(e),a=n-e,i=r.depth;for(;a>0&&i>0&&r.indexAfter(i)==r.node(i).childCount;)i--,a--;if(a>0){let o=r.node(i).maybeChild(r.indexAfter(i));for(;a>0;){if(!o||o.isLeaf)return!0;o=o.firstChild,a--}}return!1}function J8(t,e,n,r){let a=[],i=[],o,c;t.doc.nodesBetween(e,n,(u,h,f)=>{if(!u.isInline)return;let m=u.marks;if(!r.isInSet(m)&&f.type.allowsMarkType(r.type)){let x=Math.max(h,e),y=Math.min(h+u.nodeSize,n),v=r.addToSet(m);for(let N=0;Nt.step(u)),i.forEach(u=>t.step(u))}function Q8(t,e,n,r){let a=[],i=0;t.doc.nodesBetween(e,n,(o,c)=>{if(!o.isInline)return;i++;let u=null;if(r instanceof pp){let h=o.marks,f;for(;f=r.isInSet(h);)(u||(u=[])).push(f),h=f.removeFromSet(h)}else r?r.isInSet(o.marks)&&(u=[r]):u=o.marks;if(u&&u.length){let h=Math.min(c+o.nodeSize,n);for(let f=0;ft.step(new na(o.from,o.to,o.style)))}function F0(t,e,n,r=n.contentMatch,a=!0){let i=t.doc.nodeAt(e),o=[],c=e+1;for(let u=0;u=0;u--)t.step(o[u])}function Y8(t,e,n){return(e==0||t.canReplace(e,t.childCount))&&(n==t.childCount||t.canReplace(0,n))}function Wc(t){let n=t.parent.content.cutByIndex(t.startIndex,t.endIndex);for(let r=t.depth,a=0,i=0;;--r){let o=t.$from.node(r),c=t.$from.index(r)+a,u=t.$to.indexAfter(r)-i;if(rn;v--)N||r.index(v)>0?(N=!0,f=Ne.from(r.node(v).copy(f)),m++):u--;let x=Ne.empty,y=0;for(let v=i,N=!1;v>n;v--)N||a.after(v+1)=0;o--){if(r.size){let c=n[o].type.contentMatch.matchFragment(r);if(!c||!c.validEnd)throw new RangeError("Wrapper type given to Transform.wrap does not form valid content of its parent wrapper")}r=Ne.from(n[o].type.create(n[o].attrs,r))}let a=e.start,i=e.end;t.step(new as(a,i,a,i,new ze(r,0,0),n.length,!0))}function nO(t,e,n,r,a){if(!r.isTextblock)throw new RangeError("Type given to setBlockType should be a textblock");let i=t.steps.length;t.doc.nodesBetween(e,n,(o,c)=>{let u=typeof a=="function"?a(o):a;if(o.isTextblock&&!o.hasMarkup(r,u)&&sO(t.doc,t.mapping.slice(i).map(c),r)){let h=null;if(r.schema.linebreakReplacement){let y=r.whitespace=="pre",v=!!r.contentMatch.matchType(r.schema.linebreakReplacement);y&&!v?h=!1:!y&&v&&(h=!0)}h===!1&&K2(t,o,c,i),F0(t,t.mapping.slice(i).map(c,1),r,void 0,h===null);let f=t.mapping.slice(i),m=f.map(c,1),x=f.map(c+o.nodeSize,1);return t.step(new as(m,x,m+1,x-1,new ze(Ne.from(r.create(u,null,o.marks)),0,0),1,!0)),h===!0&&W2(t,o,c,i),!1}})}function W2(t,e,n,r){e.forEach((a,i)=>{if(a.isText){let o,c=/\r?\n|\r/g;for(;o=c.exec(a.text);){let u=t.mapping.slice(r).map(n+1+i+o.index);t.replaceWith(u,u+1,e.type.schema.linebreakReplacement.create())}}})}function K2(t,e,n,r){e.forEach((a,i)=>{if(a.type==a.type.schema.linebreakReplacement){let o=t.mapping.slice(r).map(n+1+i);t.replaceWith(o,o+1,e.type.schema.text(` +`))}})}function sO(t,e,n){let r=t.resolve(e),a=r.index();return r.parent.canReplaceWith(a,a+1,n)}function rO(t,e,n,r,a){let i=t.doc.nodeAt(e);if(!i)throw new RangeError("No node at given position");n||(n=i.type);let o=n.create(r,null,a||i.marks);if(i.isLeaf)return t.replaceWith(e,e+i.nodeSize,o);if(!n.validContent(i.content))throw new RangeError("Invalid content for node type "+n.name);t.step(new as(e,e+i.nodeSize,e+1,e+i.nodeSize-1,new ze(Ne.from(o),0,0),1,!0))}function vi(t,e,n=1,r){let a=t.resolve(e),i=a.depth-n,o=r&&r[r.length-1]||a.parent;if(i<0||a.parent.type.spec.isolating||!a.parent.canReplace(a.index(),a.parent.childCount)||!o.type.validContent(a.parent.content.cutByIndex(a.index(),a.parent.childCount)))return!1;for(let h=a.depth-1,f=n-2;h>i;h--,f--){let m=a.node(h),x=a.index(h);if(m.type.spec.isolating)return!1;let y=m.content.cutByIndex(x,m.childCount),v=r&&r[f+1];v&&(y=y.replaceChild(0,v.type.create(v.attrs)));let N=r&&r[f]||m;if(!m.canReplace(x+1,m.childCount)||!N.type.validContent(y))return!1}let c=a.indexAfter(i),u=r&&r[0];return a.node(i).canReplaceWith(c,c,u?u.type:a.node(i+1).type)}function aO(t,e,n=1,r){let a=t.doc.resolve(e),i=Ne.empty,o=Ne.empty;for(let c=a.depth,u=a.depth-n,h=n-1;c>u;c--,h--){i=Ne.from(a.node(c).copy(i));let f=r&&r[h];o=Ne.from(f?f.type.create(f.attrs,o):a.node(c).copy(o))}t.step(new rs(e,e,new ze(i.append(o),n,n),!0))}function Lo(t,e){let n=t.resolve(e),r=n.index();return q2(n.nodeBefore,n.nodeAfter)&&n.parent.canReplace(r,r+1)}function iO(t,e){e.content.size||t.type.compatibleContent(e.type);let n=t.contentMatchAt(t.childCount),{linebreakReplacement:r}=t.type.schema;for(let a=0;a0?(i=r.node(a+1),c++,o=r.node(a).maybeChild(c)):(i=r.node(a).maybeChild(c-1),o=r.node(a+1)),i&&!i.isTextblock&&q2(i,o)&&r.node(a).canReplace(c,c+1))return e;if(a==0)break;e=n<0?r.before(a):r.after(a)}}function oO(t,e,n){let r=null,{linebreakReplacement:a}=t.doc.type.schema,i=t.doc.resolve(e-n),o=i.node().type;if(a&&o.inlineContent){let f=o.whitespace=="pre",m=!!o.contentMatch.matchType(a);f&&!m?r=!1:!f&&m&&(r=!0)}let c=t.steps.length;if(r===!1){let f=t.doc.resolve(e+n);K2(t,f.node(),f.before(),c)}o.inlineContent&&F0(t,e+n-1,o,i.node().contentMatchAt(i.index()),r==null);let u=t.mapping.slice(c),h=u.map(e-n);if(t.step(new rs(h,u.map(e+n,-1),ze.empty,!0)),r===!0){let f=t.doc.resolve(h);W2(t,f.node(),f.before(),t.steps.length)}return t}function lO(t,e,n){let r=t.resolve(e);if(r.parent.canReplaceWith(r.index(),r.index(),n))return e;if(r.parentOffset==0)for(let a=r.depth-1;a>=0;a--){let i=r.index(a);if(r.node(a).canReplaceWith(i,i,n))return r.before(a+1);if(i>0)return null}if(r.parentOffset==r.parent.content.size)for(let a=r.depth-1;a>=0;a--){let i=r.indexAfter(a);if(r.node(a).canReplaceWith(i,i,n))return r.after(a+1);if(i=0;o--){let c=o==r.depth?0:r.pos<=(r.start(o+1)+r.end(o+1))/2?-1:1,u=r.index(o)+(c>0?1:0),h=r.node(o),f=!1;if(i==1)f=h.canReplace(u,u,a);else{let m=h.contentMatchAt(u).findWrapping(a.firstChild.type);f=m&&h.canReplaceWith(u,u,m[0])}if(f)return c==0?r.pos:c<0?r.before(o+1):r.after(o+1)}return null}function xp(t,e,n=e,r=ze.empty){if(e==n&&!r.size)return null;let a=t.resolve(e),i=t.resolve(n);return J2(a,i,r)?new rs(e,n,r):new cO(a,i,r).fit()}function J2(t,e,n){return!n.openStart&&!n.openEnd&&t.start()==e.start()&&t.parent.canReplace(t.index(),e.index(),n.content)}class cO{constructor(e,n,r){this.$from=e,this.$to=n,this.unplaced=r,this.frontier=[],this.placed=Ne.empty;for(let a=0;a<=e.depth;a++){let i=e.node(a);this.frontier.push({type:i.type,match:i.contentMatchAt(e.indexAfter(a))})}for(let a=e.depth;a>0;a--)this.placed=Ne.from(e.node(a).copy(this.placed))}get depth(){return this.frontier.length-1}fit(){for(;this.unplaced.size;){let h=this.findFittable();h?this.placeNodes(h):this.openMore()||this.dropNode()}let e=this.mustMoveInline(),n=this.placed.size-this.depth-this.$from.depth,r=this.$from,a=this.close(e<0?this.$to:r.doc.resolve(e));if(!a)return null;let i=this.placed,o=r.depth,c=a.depth;for(;o&&c&&i.childCount==1;)i=i.firstChild.content,o--,c--;let u=new ze(i,o,c);return e>-1?new as(r.pos,e,this.$to.pos,this.$to.end(),u,n):u.size||r.pos!=this.$to.pos?new rs(r.pos,a.pos,u):null}findFittable(){let e=this.unplaced.openStart;for(let n=this.unplaced.content,r=0,a=this.unplaced.openEnd;r1&&(a=0),i.type.spec.isolating&&a<=r){e=r;break}n=i.content}for(let n=1;n<=2;n++)for(let r=n==1?e:this.unplaced.openStart;r>=0;r--){let a,i=null;r?(i=Ex(this.unplaced.content,r-1).firstChild,a=i.content):a=this.unplaced.content;let o=a.firstChild;for(let c=this.depth;c>=0;c--){let{type:u,match:h}=this.frontier[c],f,m=null;if(n==1&&(o?h.matchType(o.type)||(m=h.fillBefore(Ne.from(o),!1)):i&&u.compatibleContent(i.type)))return{sliceDepth:r,frontierDepth:c,parent:i,inject:m};if(n==2&&o&&(f=h.findWrapping(o.type)))return{sliceDepth:r,frontierDepth:c,parent:i,wrap:f};if(i&&h.matchType(i.type))break}}}openMore(){let{content:e,openStart:n,openEnd:r}=this.unplaced,a=Ex(e,n);return!a.childCount||a.firstChild.isLeaf?!1:(this.unplaced=new ze(e,n+1,Math.max(r,a.size+n>=e.size-r?n+1:0)),!0)}dropNode(){let{content:e,openStart:n,openEnd:r}=this.unplaced,a=Ex(e,n);if(a.childCount<=1&&n>0){let i=e.size-n<=n+a.size;this.unplaced=new ze(Ed(e,n-1,1),n-1,i?n-1:r)}else this.unplaced=new ze(Ed(e,n,1),n,r)}placeNodes({sliceDepth:e,frontierDepth:n,parent:r,inject:a,wrap:i}){for(;this.depth>n;)this.closeFrontierNode();if(i)for(let N=0;N1||u==0||N.content.size)&&(m=w,f.push(Q2(N.mark(x.allowedMarks(N.marks)),h==1?u:0,h==c.childCount?y:-1)))}let v=h==c.childCount;v||(y=-1),this.placed=Md(this.placed,n,Ne.from(f)),this.frontier[n].match=m,v&&y<0&&r&&r.type==this.frontier[this.depth].type&&this.frontier.length>1&&this.closeFrontierNode();for(let N=0,w=c;N1&&a==this.$to.end(--r);)++a;return a}findCloseLevel(e){e:for(let n=Math.min(this.depth,e.depth);n>=0;n--){let{match:r,type:a}=this.frontier[n],i=n=0;c--){let{match:u,type:h}=this.frontier[c],f=Mx(e,c,h,u,!0);if(!f||f.childCount)continue e}return{depth:n,fit:o,move:i?e.doc.resolve(e.after(n+1)):e}}}}close(e){let n=this.findCloseLevel(e);if(!n)return null;for(;this.depth>n.depth;)this.closeFrontierNode();n.fit.childCount&&(this.placed=Md(this.placed,n.depth,n.fit)),e=n.move;for(let r=n.depth+1;r<=e.depth;r++){let a=e.node(r),i=a.type.contentMatch.fillBefore(a.content,!0,e.index(r));this.openFrontierNode(a.type,a.attrs,i)}return e}openFrontierNode(e,n=null,r){let a=this.frontier[this.depth];a.match=a.match.matchType(e),this.placed=Md(this.placed,this.depth,Ne.from(e.create(n,r))),this.frontier.push({type:e,match:e.contentMatch})}closeFrontierNode(){let n=this.frontier.pop().match.fillBefore(Ne.empty,!0);n.childCount&&(this.placed=Md(this.placed,this.frontier.length,n))}}function Ed(t,e,n){return e==0?t.cutByIndex(n,t.childCount):t.replaceChild(0,t.firstChild.copy(Ed(t.firstChild.content,e-1,n)))}function Md(t,e,n){return e==0?t.append(n):t.replaceChild(t.childCount-1,t.lastChild.copy(Md(t.lastChild.content,e-1,n)))}function Ex(t,e){for(let n=0;n1&&(r=r.replaceChild(0,Q2(r.firstChild,e-1,r.childCount==1?n-1:0))),e>0&&(r=t.type.contentMatch.fillBefore(r).append(r),n<=0&&(r=r.append(t.type.contentMatch.matchFragment(r).fillBefore(Ne.empty,!0)))),t.copy(r)}function Mx(t,e,n,r,a){let i=t.node(e),o=a?t.indexAfter(e):t.index(e);if(o==i.childCount&&!n.compatibleContent(i.type))return null;let c=r.fillBefore(i.content,!0,o);return c&&!dO(n,i.content,o)?c:null}function dO(t,e,n){for(let r=n;r0;x--,y--){let v=a.node(x).type.spec;if(v.defining||v.definingAsContext||v.isolating)break;o.indexOf(x)>-1?c=x:a.before(x)==y&&o.splice(1,0,-x)}let u=o.indexOf(c),h=[],f=r.openStart;for(let x=r.content,y=0;;y++){let v=x.firstChild;if(h.push(v),y==r.openStart)break;x=v.content}for(let x=f-1;x>=0;x--){let y=h[x],v=uO(y.type);if(v&&!y.sameMarkup(a.node(Math.abs(c)-1)))f=x;else if(v||!y.type.isTextblock)break}for(let x=r.openStart;x>=0;x--){let y=(x+f+1)%(r.openStart+1),v=h[y];if(v)for(let N=0;N=0&&(t.replace(e,n,r),!(t.steps.length>m));x--){let y=o[x];y<0||(e=a.before(y),n=i.after(y))}}function Y2(t,e,n,r,a){if(er){let i=a.contentMatchAt(0),o=i.fillBefore(t).append(t);t=o.append(i.matchFragment(o).fillBefore(Ne.empty,!0))}return t}function fO(t,e,n,r){if(!r.isInline&&e==n&&t.doc.resolve(e).parent.content.size){let a=lO(t.doc,e,r.type);a!=null&&(e=n=a)}t.replaceRange(e,n,new ze(Ne.from(r),0,0))}function pO(t,e,n){let r=t.doc.resolve(e),a=t.doc.resolve(n),i=X2(r,a);for(let o=0;o0&&(u||r.node(c-1).canReplace(r.index(c-1),a.indexAfter(c-1))))return t.delete(r.before(c),a.after(c))}for(let o=1;o<=r.depth&&o<=a.depth;o++)if(e-r.start(o)==r.depth-o&&n>r.end(o)&&a.end(o)-n!=a.depth-o&&r.start(o-1)==a.start(o-1)&&r.node(o-1).canReplace(r.index(o-1),a.index(o-1)))return t.delete(r.before(o),n);t.delete(e,n)}function X2(t,e){let n=[],r=Math.min(t.depth,e.depth);for(let a=r;a>=0;a--){let i=t.start(a);if(ie.pos+(e.depth-a)||t.node(a).type.spec.isolating||e.node(a).type.spec.isolating)break;(i==e.start(a)||a==t.depth&&a==e.depth&&t.parent.inlineContent&&e.parent.inlineContent&&a&&e.start(a-1)==i-1)&&n.push(a)}return n}class kc extends Os{constructor(e,n,r){super(),this.pos=e,this.attr=n,this.value=r}apply(e){let n=e.nodeAt(this.pos);if(!n)return Hn.fail("No node at attribute step's position");let r=Object.create(null);for(let i in n.attrs)r[i]=n.attrs[i];r[this.attr]=this.value;let a=n.type.create(r,null,n.marks);return Hn.fromReplace(e,this.pos,this.pos+1,new ze(Ne.from(a),0,n.isLeaf?0:1))}getMap(){return pr.empty}invert(e){return new kc(this.pos,this.attr,e.nodeAt(this.pos).attrs[this.attr])}map(e){let n=e.mapResult(this.pos,1);return n.deletedAfter?null:new kc(n.pos,this.attr,this.value)}toJSON(){return{stepType:"attr",pos:this.pos,attr:this.attr,value:this.value}}static fromJSON(e,n){if(typeof n.pos!="number"||typeof n.attr!="string")throw new RangeError("Invalid input for AttrStep.fromJSON");return new kc(n.pos,n.attr,n.value)}}Os.jsonID("attr",kc);class eu extends Os{constructor(e,n){super(),this.attr=e,this.value=n}apply(e){let n=Object.create(null);for(let a in e.attrs)n[a]=e.attrs[a];n[this.attr]=this.value;let r=e.type.create(n,e.content,e.marks);return Hn.ok(r)}getMap(){return pr.empty}invert(e){return new eu(this.attr,e.attrs[this.attr])}map(e){return this}toJSON(){return{stepType:"docAttr",attr:this.attr,value:this.value}}static fromJSON(e,n){if(typeof n.attr!="string")throw new RangeError("Invalid input for DocAttrStep.fromJSON");return new eu(n.attr,n.value)}}Os.jsonID("docAttr",eu);let Pc=class extends Error{};Pc=function t(e){let n=Error.call(this,e);return n.__proto__=t.prototype,n};Pc.prototype=Object.create(Error.prototype);Pc.prototype.constructor=Pc;Pc.prototype.name="TransformError";class V0{constructor(e){this.doc=e,this.steps=[],this.docs=[],this.mapping=new Zd}get before(){return this.docs.length?this.docs[0]:this.doc}step(e){let n=this.maybeStep(e);if(n.failed)throw new Pc(n.failed);return this}maybeStep(e){let n=e.apply(this.doc);return n.failed||this.addStep(e,n.doc),n}get docChanged(){return this.steps.length>0}changedRange(){let e=1e9,n=-1e9;for(let r=0;r{e=Math.min(e,c),n=Math.max(n,u)})}return e==1e9?null:{from:e,to:n}}addStep(e,n){this.docs.push(this.doc),this.steps.push(e),this.mapping.appendMap(e.getMap()),this.doc=n}replace(e,n=e,r=ze.empty){let a=xp(this.doc,e,n,r);return a&&this.step(a),this}replaceWith(e,n,r){return this.replace(e,n,new ze(Ne.from(r),0,0))}delete(e,n){return this.replace(e,n,ze.empty)}insert(e,n){return this.replaceWith(e,e,n)}replaceRange(e,n,r){return hO(this,e,n,r),this}replaceRangeWith(e,n,r){return fO(this,e,n,r),this}deleteRange(e,n){return pO(this,e,n),this}lift(e,n){return X8(this,e,n),this}join(e,n=1){return oO(this,e,n),this}wrap(e,n){return tO(this,e,n),this}setBlockType(e,n=e,r,a=null){return nO(this,e,n,r,a),this}setNodeMarkup(e,n,r=null,a){return rO(this,e,n,r,a),this}setNodeAttribute(e,n,r){return this.step(new kc(e,n,r)),this}setDocAttribute(e,n){return this.step(new eu(e,n)),this}addNodeMark(e,n){return this.step(new go(e,n)),this}removeNodeMark(e,n){let r=this.doc.nodeAt(e);if(!r)throw new RangeError("No node at position "+e);if(n instanceof an)n.isInSet(r.marks)&&this.step(new wl(e,n));else{let a=r.marks,i,o=[];for(;i=n.isInSet(a);)o.push(new wl(e,i)),a=i.removeFromSet(a);for(let c=o.length-1;c>=0;c--)this.step(o[c])}return this}split(e,n=1,r){return aO(this,e,n,r),this}addMark(e,n,r){return J8(this,e,n,r),this}removeMark(e,n,r){return Q8(this,e,n,r),this}clearIncompatible(e,n,r){return F0(this,e,n,r),this}}const Ax=Object.create(null);class lt{constructor(e,n,r){this.$anchor=e,this.$head=n,this.ranges=r||[new Z2(e.min(n),e.max(n))]}get anchor(){return this.$anchor.pos}get head(){return this.$head.pos}get from(){return this.$from.pos}get to(){return this.$to.pos}get $from(){return this.ranges[0].$from}get $to(){return this.ranges[0].$to}get empty(){let e=this.ranges;for(let n=0;n=0;i--){let o=n<0?fc(e.node(0),e.node(i),e.before(i+1),e.index(i),n,r):fc(e.node(0),e.node(i),e.after(i+1),e.index(i)+1,n,r);if(o)return o}return null}static near(e,n=1){return this.findFrom(e,n)||this.findFrom(e,-n)||new xr(e.node(0))}static atStart(e){return fc(e,e,0,0,1)||new xr(e)}static atEnd(e){return fc(e,e,e.content.size,e.childCount,-1)||new xr(e)}static fromJSON(e,n){if(!n||!n.type)throw new RangeError("Invalid input for Selection.fromJSON");let r=Ax[n.type];if(!r)throw new RangeError(`No selection type ${n.type} defined`);return r.fromJSON(e,n)}static jsonID(e,n){if(e in Ax)throw new RangeError("Duplicate use of selection JSON ID "+e);return Ax[e]=n,n.prototype.jsonID=e,n}getBookmark(){return nt.between(this.$anchor,this.$head).getBookmark()}}lt.prototype.visible=!0;class Z2{constructor(e,n){this.$from=e,this.$to=n}}let rN=!1;function aN(t){!rN&&!t.parent.inlineContent&&(rN=!0,console.warn("TextSelection endpoint not pointing into a node with inline content ("+t.parent.type.name+")"))}class nt extends lt{constructor(e,n=e){aN(e),aN(n),super(e,n)}get $cursor(){return this.$anchor.pos==this.$head.pos?this.$head:null}map(e,n){let r=e.resolve(n.map(this.head));if(!r.parent.inlineContent)return lt.near(r);let a=e.resolve(n.map(this.anchor));return new nt(a.parent.inlineContent?a:r,r)}replace(e,n=ze.empty){if(super.replace(e,n),n==ze.empty){let r=this.$from.marksAcross(this.$to);r&&e.ensureMarks(r)}}eq(e){return e instanceof nt&&e.anchor==this.anchor&&e.head==this.head}getBookmark(){return new gp(this.anchor,this.head)}toJSON(){return{type:"text",anchor:this.anchor,head:this.head}}static fromJSON(e,n){if(typeof n.anchor!="number"||typeof n.head!="number")throw new RangeError("Invalid input for TextSelection.fromJSON");return new nt(e.resolve(n.anchor),e.resolve(n.head))}static create(e,n,r=n){let a=e.resolve(n);return new this(a,r==n?a:e.resolve(r))}static between(e,n,r){let a=e.pos-n.pos;if((!r||a)&&(r=a>=0?1:-1),!n.parent.inlineContent){let i=lt.findFrom(n,r,!0)||lt.findFrom(n,-r,!0);if(i)n=i.$head;else return lt.near(n,r)}return e.parent.inlineContent||(a==0?e=n:(e=(lt.findFrom(e,-r,!0)||lt.findFrom(e,r,!0)).$anchor,e.pos0?0:1);a>0?o=0;o+=a){let c=e.child(o);if(c.isAtom){if(!i&&tt.isSelectable(c))return tt.create(t,n-(a<0?c.nodeSize:0))}else{let u=fc(t,c,n+a,a<0?c.childCount:0,a,i);if(u)return u}n+=c.nodeSize*a}return null}function iN(t,e,n){let r=t.steps.length-1;if(r{o==null&&(o=f)}),t.setSelection(lt.near(t.doc.resolve(o),n))}const oN=1,Th=2,lN=4;class xO extends V0{constructor(e){super(e.doc),this.curSelectionFor=0,this.updated=0,this.meta=Object.create(null),this.time=Date.now(),this.curSelection=e.selection,this.storedMarks=e.storedMarks}get selection(){return this.curSelectionFor0}setStoredMarks(e){return this.storedMarks=e,this.updated|=Th,this}ensureMarks(e){return an.sameSet(this.storedMarks||this.selection.$from.marks(),e)||this.setStoredMarks(e),this}addStoredMark(e){return this.ensureMarks(e.addToSet(this.storedMarks||this.selection.$head.marks()))}removeStoredMark(e){return this.ensureMarks(e.removeFromSet(this.storedMarks||this.selection.$head.marks()))}get storedMarksSet(){return(this.updated&Th)>0}addStep(e,n){super.addStep(e,n),this.updated=this.updated&~Th,this.storedMarks=null}setTime(e){return this.time=e,this}replaceSelection(e){return this.selection.replace(this,e),this}replaceSelectionWith(e,n=!0){let r=this.selection;return n&&(e=e.mark(this.storedMarks||(r.empty?r.$from.marks():r.$from.marksAcross(r.$to)||an.none))),r.replaceWith(this,e),this}deleteSelection(){return this.selection.replace(this),this}insertText(e,n,r){let a=this.doc.type.schema;if(n==null)return e?this.replaceSelectionWith(a.text(e),!0):this.deleteSelection();{if(r==null&&(r=n),!e)return this.deleteRange(n,r);let i=this.storedMarks;if(!i){let o=this.doc.resolve(n);i=r==n?o.marks():o.marksAcross(this.doc.resolve(r))}return this.replaceRangeWith(n,r,a.text(e,i)),!this.selection.empty&&this.selection.to==n+e.length&&this.setSelection(lt.near(this.selection.$to)),this}}setMeta(e,n){return this.meta[typeof e=="string"?e:e.key]=n,this}getMeta(e){return this.meta[typeof e=="string"?e:e.key]}get isGeneric(){for(let e in this.meta)return!1;return!0}scrollIntoView(){return this.updated|=lN,this}get scrolledIntoView(){return(this.updated&lN)>0}}function cN(t,e){return!e||!t?t:t.bind(e)}class Ad{constructor(e,n,r){this.name=e,this.init=cN(n.init,r),this.apply=cN(n.apply,r)}}const gO=[new Ad("doc",{init(t){return t.doc||t.schema.topNodeType.createAndFill()},apply(t){return t.doc}}),new Ad("selection",{init(t,e){return t.selection||lt.atStart(e.doc)},apply(t){return t.selection}}),new Ad("storedMarks",{init(t){return t.storedMarks||null},apply(t,e,n,r){return r.selection.$cursor?t.storedMarks:null}}),new Ad("scrollToSelection",{init(){return 0},apply(t,e){return t.scrolledIntoView?e+1:e}})];class Ix{constructor(e,n){this.schema=e,this.plugins=[],this.pluginsByKey=Object.create(null),this.fields=gO.slice(),n&&n.forEach(r=>{if(this.pluginsByKey[r.key])throw new RangeError("Adding different instances of a keyed plugin ("+r.key+")");this.plugins.push(r),this.pluginsByKey[r.key]=r,r.spec.state&&this.fields.push(new Ad(r.key,r.spec.state,r))})}}class Nc{constructor(e){this.config=e}get schema(){return this.config.schema}get plugins(){return this.config.plugins}apply(e){return this.applyTransaction(e).state}filterTransaction(e,n=-1){for(let r=0;rr.toJSON())),e&&typeof e=="object")for(let r in e){if(r=="doc"||r=="selection")throw new RangeError("The JSON fields `doc` and `selection` are reserved");let a=e[r],i=a.spec.state;i&&i.toJSON&&(n[r]=i.toJSON.call(a,this[a.key]))}return n}static fromJSON(e,n,r){if(!n)throw new RangeError("Invalid input for EditorState.fromJSON");if(!e.schema)throw new RangeError("Required config field 'schema' missing");let a=new Ix(e.schema,e.plugins),i=new Nc(a);return a.fields.forEach(o=>{if(o.name=="doc")i.doc=bi.fromJSON(e.schema,n.doc);else if(o.name=="selection")i.selection=lt.fromJSON(i.doc,n.selection);else if(o.name=="storedMarks")n.storedMarks&&(i.storedMarks=n.storedMarks.map(e.schema.markFromJSON));else{if(r)for(let c in r){let u=r[c],h=u.spec.state;if(u.key==o.name&&h&&h.fromJSON&&Object.prototype.hasOwnProperty.call(n,c)){i[o.name]=h.fromJSON.call(u,e,n[c],i);return}}i[o.name]=o.init(e,i)}}),i}}function eS(t,e,n){for(let r in t){let a=t[r];a instanceof Function?a=a.bind(e):r=="handleDOMEvents"&&(a=eS(a,e,{})),n[r]=a}return n}class dn{constructor(e){this.spec=e,this.props={},e.props&&eS(e.props,this,this.props),this.key=e.key?e.key.key:tS("plugin")}getState(e){return e[this.key]}}const Px=Object.create(null);function tS(t){return t in Px?t+"$"+ ++Px[t]:(Px[t]=0,t+"$")}class gn{constructor(e="key"){this.key=tS(e)}get(e){return e.config.pluginsByKey[this.key]}getState(e){return e[this.key]}}const U0=(t,e)=>t.selection.empty?!1:(e&&e(t.tr.deleteSelection().scrollIntoView()),!0);function nS(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("backward",t):n.parentOffset>0)?null:n}const sS=(t,e,n)=>{let r=nS(t,n);if(!r)return!1;let a=W0(r);if(!a){let o=r.blockRange(),c=o&&Wc(o);return c==null?!1:(e&&e(t.tr.lift(o,c).scrollIntoView()),!0)}let i=a.nodeBefore;if(hS(t,a,e,-1))return!0;if(r.parent.content.size==0&&(Rc(i,"end")||tt.isSelectable(i)))for(let o=r.depth;;o--){let c=xp(t.doc,r.before(o),r.after(o),ze.empty);if(c&&c.slice.size1)break}return i.isAtom&&a.depth==r.depth-1?(e&&e(t.tr.delete(a.pos-i.nodeSize,a.pos).scrollIntoView()),!0):!1},yO=(t,e,n)=>{let r=nS(t,n);if(!r)return!1;let a=W0(r);return a?rS(t,a,e):!1},bO=(t,e,n)=>{let r=iS(t,n);if(!r)return!1;let a=K0(r);return a?rS(t,a,e):!1};function rS(t,e,n){let r=e.nodeBefore,a=r,i=e.pos-1;for(;!a.isTextblock;i--){if(a.type.spec.isolating)return!1;let f=a.lastChild;if(!f)return!1;a=f}let o=e.nodeAfter,c=o,u=e.pos+1;for(;!c.isTextblock;u++){if(c.type.spec.isolating)return!1;let f=c.firstChild;if(!f)return!1;c=f}let h=xp(t.doc,i,u,ze.empty);if(!h||h.from!=i||h instanceof rs&&h.slice.size>=u-i)return!1;if(n){let f=t.tr.step(h);f.setSelection(nt.create(f.doc,i)),n(f.scrollIntoView())}return!0}function Rc(t,e,n=!1){for(let r=t;r;r=e=="start"?r.firstChild:r.lastChild){if(r.isTextblock)return!0;if(n&&r.childCount!=1)return!1}return!1}const aS=(t,e,n)=>{let{$head:r,empty:a}=t.selection,i=r;if(!a)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("backward",t):r.parentOffset>0)return!1;i=W0(r)}let o=i&&i.nodeBefore;return!o||!tt.isSelectable(o)?!1:(e&&e(t.tr.setSelection(tt.create(t.doc,i.pos-o.nodeSize)).scrollIntoView()),!0)};function W0(t){if(!t.parent.type.spec.isolating)for(let e=t.depth-1;e>=0;e--){if(t.index(e)>0)return t.doc.resolve(t.before(e+1));if(t.node(e).type.spec.isolating)break}return null}function iS(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("forward",t):n.parentOffset{let r=iS(t,n);if(!r)return!1;let a=K0(r);if(!a)return!1;let i=a.nodeAfter;if(hS(t,a,e,1))return!0;if(r.parent.content.size==0&&(Rc(i,"start")||tt.isSelectable(i))){let o=xp(t.doc,r.before(),r.after(),ze.empty);if(o&&o.slice.size{let{$head:r,empty:a}=t.selection,i=r;if(!a)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("forward",t):r.parentOffset=0;e--){let n=t.node(e);if(t.index(e)+1{let n=t.selection,r=n instanceof tt,a;if(r){if(n.node.isTextblock||!Lo(t.doc,n.from))return!1;a=n.from}else if(a=mp(t.doc,n.from,-1),a==null)return!1;if(e){let i=t.tr.join(a);r&&i.setSelection(tt.create(i.doc,a-t.doc.resolve(a).nodeBefore.nodeSize)),e(i.scrollIntoView())}return!0},NO=(t,e)=>{let n=t.selection,r;if(n instanceof tt){if(n.node.isTextblock||!Lo(t.doc,n.to))return!1;r=n.to}else if(r=mp(t.doc,n.to,1),r==null)return!1;return e&&e(t.tr.join(r).scrollIntoView()),!0},wO=(t,e)=>{let{$from:n,$to:r}=t.selection,a=n.blockRange(r),i=a&&Wc(a);return i==null?!1:(e&&e(t.tr.lift(a,i).scrollIntoView()),!0)},cS=(t,e)=>{let{$head:n,$anchor:r}=t.selection;return!n.parent.type.spec.code||!n.sameParent(r)?!1:(e&&e(t.tr.insertText(` +`).scrollIntoView()),!0)};function q0(t){for(let e=0;e{let{$head:n,$anchor:r}=t.selection;if(!n.parent.type.spec.code||!n.sameParent(r))return!1;let a=n.node(-1),i=n.indexAfter(-1),o=q0(a.contentMatchAt(i));if(!o||!a.canReplaceWith(i,i,o))return!1;if(e){let c=n.after(),u=t.tr.replaceWith(c,c,o.createAndFill());u.setSelection(lt.near(u.doc.resolve(c),1)),e(u.scrollIntoView())}return!0},dS=(t,e)=>{let n=t.selection,{$from:r,$to:a}=n;if(n instanceof xr||r.parent.inlineContent||a.parent.inlineContent)return!1;let i=q0(a.parent.contentMatchAt(a.indexAfter()));if(!i||!i.isTextblock)return!1;if(e){let o=(!r.parentOffset&&a.index(){let{$cursor:n}=t.selection;if(!n||n.parent.content.size)return!1;if(n.depth>1&&n.after()!=n.end(-1)){let i=n.before();if(vi(t.doc,i))return e&&e(t.tr.split(i).scrollIntoView()),!0}let r=n.blockRange(),a=r&&Wc(r);return a==null?!1:(e&&e(t.tr.lift(r,a).scrollIntoView()),!0)};function kO(t){return(e,n)=>{let{$from:r,$to:a}=e.selection;if(e.selection instanceof tt&&e.selection.node.isBlock)return!r.parentOffset||!vi(e.doc,r.pos)?!1:(n&&n(e.tr.split(r.pos).scrollIntoView()),!0);if(!r.depth)return!1;let i=[],o,c,u=!1,h=!1;for(let y=r.depth;;y--)if(r.node(y).isBlock){u=r.end(y)==r.pos+(r.depth-y),h=r.start(y)==r.pos-(r.depth-y),c=q0(r.node(y-1).contentMatchAt(r.indexAfter(y-1))),i.unshift(u&&c?{type:c}:null),o=y;break}else{if(y==1)return!1;i.unshift(null)}let f=e.tr;(e.selection instanceof nt||e.selection instanceof xr)&&f.deleteSelection();let m=f.mapping.map(r.pos),x=vi(f.doc,m,i.length,i);if(x||(i[0]=c?{type:c}:null,x=vi(f.doc,m,i.length,i)),!x)return!1;if(f.split(m,i.length,i),!u&&h&&r.node(o).type!=c){let y=f.mapping.map(r.before(o)),v=f.doc.resolve(y);c&&r.node(o-1).canReplaceWith(v.index(),v.index()+1,c)&&f.setNodeMarkup(f.mapping.map(r.before(o)),c)}return n&&n(f.scrollIntoView()),!0}}const SO=kO(),CO=(t,e)=>{let{$from:n,to:r}=t.selection,a,i=n.sharedDepth(r);return i==0?!1:(a=n.before(i),e&&e(t.tr.setSelection(tt.create(t.doc,a))),!0)};function TO(t,e,n){let r=e.nodeBefore,a=e.nodeAfter,i=e.index();return!r||!a||!r.type.compatibleContent(a.type)?!1:!r.content.size&&e.parent.canReplace(i-1,i)?(n&&n(t.tr.delete(e.pos-r.nodeSize,e.pos).scrollIntoView()),!0):!e.parent.canReplace(i,i+1)||!(a.isTextblock||Lo(t.doc,e.pos))?!1:(n&&n(t.tr.join(e.pos).scrollIntoView()),!0)}function hS(t,e,n,r){let a=e.nodeBefore,i=e.nodeAfter,o,c,u=a.type.spec.isolating||i.type.spec.isolating;if(!u&&TO(t,e,n))return!0;let h=!u&&e.parent.canReplace(e.index(),e.index()+1);if(h&&(o=(c=a.contentMatchAt(a.childCount)).findWrapping(i.type))&&c.matchType(o[0]||i.type).validEnd){if(n){let y=e.pos+i.nodeSize,v=Ne.empty;for(let k=o.length-1;k>=0;k--)v=Ne.from(o[k].create(null,v));v=Ne.from(a.copy(v));let N=t.tr.step(new as(e.pos-1,y,e.pos,y,new ze(v,1,0),o.length,!0)),w=N.doc.resolve(y+2*o.length);w.nodeAfter&&w.nodeAfter.type==a.type&&Lo(N.doc,w.pos)&&N.join(w.pos),n(N.scrollIntoView())}return!0}let f=i.type.spec.isolating||r>0&&u?null:lt.findFrom(e,1),m=f&&f.$from.blockRange(f.$to),x=m&&Wc(m);if(x!=null&&x>=e.depth)return n&&n(t.tr.lift(m,x).scrollIntoView()),!0;if(h&&Rc(i,"start",!0)&&Rc(a,"end")){let y=a,v=[];for(;v.push(y),!y.isTextblock;)y=y.lastChild;let N=i,w=1;for(;!N.isTextblock;N=N.firstChild)w++;if(y.canReplace(y.childCount,y.childCount,N.content)){if(n){let k=Ne.empty;for(let C=v.length-1;C>=0;C--)k=Ne.from(v[C].copy(k));let E=t.tr.step(new as(e.pos-v.length,e.pos+i.nodeSize,e.pos+w,e.pos+i.nodeSize-w,new ze(k,v.length,0),0,!0));n(E.scrollIntoView())}return!0}}return!1}function fS(t){return function(e,n){let r=e.selection,a=t<0?r.$from:r.$to,i=a.depth;for(;a.node(i).isInline;){if(!i)return!1;i--}return a.node(i).isTextblock?(n&&n(e.tr.setSelection(nt.create(e.doc,t<0?a.start(i):a.end(i)))),!0):!1}}const EO=fS(-1),MO=fS(1);function AO(t,e=null){return function(n,r){let{$from:a,$to:i}=n.selection,o=a.blockRange(i),c=o&&B0(o,t,e);return c?(r&&r(n.tr.wrap(o,c).scrollIntoView()),!0):!1}}function dN(t,e=null){return function(n,r){let a=!1;for(let i=0;i{if(a)return!1;if(!(!u.isTextblock||u.hasMarkup(t,e)))if(u.type==t)a=!0;else{let f=n.doc.resolve(h),m=f.index();a=f.parent.canReplaceWith(m,m+1,t)}})}if(!a)return!1;if(r){let i=n.tr;for(let o=0;o=2&&e.$from.node(e.depth-1).type.compatibleContent(n)&&e.startIndex==0){if(e.$from.index(e.depth-1)==0)return!1;let u=o.resolve(e.start-2);i=new ff(u,u,e.depth),e.endIndex=0;f--)i=Ne.from(n[f].type.create(n[f].attrs,i));t.step(new as(e.start-(r?2:0),e.end,e.start,e.end,new ze(i,0,0),n.length,!0));let o=0;for(let f=0;fo.childCount>0&&o.firstChild.type==t);return i?n?r.node(i.depth-1).type==t?LO(e,n,t,i):DO(e,n,i):!0:!1}}function LO(t,e,n,r){let a=t.tr,i=r.end,o=r.$to.end(r.depth);iN;v--)y-=a.child(v).nodeSize,r.delete(y-1,y+1);let i=r.doc.resolve(n.start),o=i.nodeAfter;if(r.mapping.map(n.end)!=n.start+i.nodeAfter.nodeSize)return!1;let c=n.startIndex==0,u=n.endIndex==a.childCount,h=i.node(-1),f=i.index(-1);if(!h.canReplace(f+(c?0:1),f+1,o.content.append(u?Ne.empty:Ne.from(a))))return!1;let m=i.pos,x=m+o.nodeSize;return r.step(new as(m-(c?1:0),x+(u?1:0),m+1,x-1,new ze((c?Ne.empty:Ne.from(a.copy(Ne.empty))).append(u?Ne.empty:Ne.from(a.copy(Ne.empty))),c?0:1,u?0:1),c?0:1)),e(r.scrollIntoView()),!0}function _O(t){return function(e,n){let{$from:r,$to:a}=e.selection,i=r.blockRange(a,h=>h.childCount>0&&h.firstChild.type==t);if(!i)return!1;let o=i.startIndex;if(o==0)return!1;let c=i.parent,u=c.child(o-1);if(u.type!=t)return!1;if(n){let h=u.lastChild&&u.lastChild.type==c.type,f=Ne.from(h?t.create():null),m=new ze(Ne.from(t.create(null,Ne.from(c.type.create(null,f)))),h?3:1,0),x=i.start,y=i.end;n(e.tr.step(new as(x-(h?3:1),y,x,y,m,1,!0)).scrollIntoView())}return!0}}const ms=function(t){for(var e=0;;e++)if(t=t.previousSibling,!t)return e},Oc=function(t){let e=t.assignedSlot||t.parentNode;return e&&e.nodeType==11?e.host:e};let Ig=null;const pi=function(t,e,n){let r=Ig||(Ig=document.createRange());return r.setEnd(t,n??t.nodeValue.length),r.setStart(t,e||0),r},zO=function(){Ig=null},jl=function(t,e,n,r){return n&&(uN(t,e,n,r,-1)||uN(t,e,n,r,1))},$O=/^(img|br|input|textarea|hr)$/i;function uN(t,e,n,r,a){for(var i;;){if(t==n&&e==r)return!0;if(e==(a<0?0:_r(t))){let o=t.parentNode;if(!o||o.nodeType!=1||mu(t)||$O.test(t.nodeName)||t.contentEditable=="false")return!1;e=ms(t)+(a<0?0:1),t=o}else if(t.nodeType==1){let o=t.childNodes[e+(a<0?-1:0)];if(o.nodeType==1&&o.contentEditable=="false")if(!((i=o.pmViewDesc)===null||i===void 0)&&i.ignoreForSelection)e+=a;else return!1;else t=o,e=a<0?_r(t):0}else return!1}}function _r(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function FO(t,e){for(;;){if(t.nodeType==3&&e)return t;if(t.nodeType==1&&e>0){if(t.contentEditable=="false")return null;t=t.childNodes[e-1],e=_r(t)}else if(t.parentNode&&!mu(t))e=ms(t),t=t.parentNode;else return null}}function BO(t,e){for(;;){if(t.nodeType==3&&e2),Dr=Lc||(Pa?/Mac/.test(Pa.platform):!1),xS=Pa?/Win/.test(Pa.platform):!1,yi=/Android \d/.test(Do),xu=!!hN&&"webkitFontSmoothing"in hN.documentElement.style,WO=xu?+(/\bAppleWebKit\/(\d+)/.exec(navigator.userAgent)||[0,0])[1]:0;function KO(t){let e=t.defaultView&&t.defaultView.visualViewport;return e?{left:0,right:e.width,top:0,bottom:e.height}:{left:0,right:t.documentElement.clientWidth,top:0,bottom:t.documentElement.clientHeight}}function ci(t,e){return typeof t=="number"?t:t[e]}function qO(t){let e=t.getBoundingClientRect(),n=e.width/t.offsetWidth||1,r=e.height/t.offsetHeight||1;return{left:e.left,right:e.left+t.clientWidth*n,top:e.top,bottom:e.top+t.clientHeight*r}}function fN(t,e,n){let r=t.someProp("scrollThreshold")||0,a=t.someProp("scrollMargin")||5,i=t.dom.ownerDocument;for(let o=n||t.dom;o;){if(o.nodeType!=1){o=Oc(o);continue}let c=o,u=c==i.body,h=u?KO(i):qO(c),f=0,m=0;if(e.toph.bottom-ci(r,"bottom")&&(m=e.bottom-e.top>h.bottom-h.top?e.top+ci(a,"top")-h.top:e.bottom-h.bottom+ci(a,"bottom")),e.lefth.right-ci(r,"right")&&(f=e.right-h.right+ci(a,"right")),f||m)if(u)i.defaultView.scrollBy(f,m);else{let y=c.scrollLeft,v=c.scrollTop;m&&(c.scrollTop+=m),f&&(c.scrollLeft+=f);let N=c.scrollLeft-y,w=c.scrollTop-v;e={left:e.left-N,top:e.top-w,right:e.right-N,bottom:e.bottom-w}}let x=u?"fixed":getComputedStyle(o).position;if(/^(fixed|sticky)$/.test(x))break;o=x=="absolute"?o.offsetParent:Oc(o)}}function GO(t){let e=t.dom.getBoundingClientRect(),n=Math.max(0,e.top),r,a;for(let i=(e.left+e.right)/2,o=n+1;o=n-20){r=c,a=u.top;break}}return{refDOM:r,refTop:a,stack:gS(t.dom)}}function gS(t){let e=[],n=t.ownerDocument;for(let r=t;r&&(e.push({dom:r,top:r.scrollTop,left:r.scrollLeft}),t!=n);r=Oc(r));return e}function JO({refDOM:t,refTop:e,stack:n}){let r=t?t.getBoundingClientRect().top:0;yS(n,r==0?0:r-e)}function yS(t,e){for(let n=0;n=c){o=Math.max(v.bottom,o),c=Math.min(v.top,c);let N=v.left>e.left?v.left-e.left:v.right=(v.left+v.right)/2?1:0));continue}}else v.top>e.top&&!u&&v.left<=e.left&&v.right>=e.left&&(u=f,h={left:Math.max(v.left,Math.min(v.right,e.left)),top:v.top});!n&&(e.left>=v.right&&e.top>=v.top||e.left>=v.left&&e.top>=v.bottom)&&(i=m+1)}}return!n&&u&&(n=u,a=h,r=0),n&&n.nodeType==3?YO(n,a):!n||r&&n.nodeType==1?{node:t,offset:i}:bS(n,a)}function YO(t,e){let n=t.nodeValue.length,r=document.createRange(),a;for(let i=0;i=(o.left+o.right)/2?1:0)};break}}return r.detach(),a||{node:t,offset:0}}function J0(t,e){return t.left>=e.left-1&&t.left<=e.right+1&&t.top>=e.top-1&&t.top<=e.bottom+1}function XO(t,e){let n=t.parentNode;return n&&/^li$/i.test(n.nodeName)&&e.left(o.left+o.right)/2?1:-1}return t.docView.posFromDOM(r,a,i)}function eL(t,e,n,r){let a=-1;for(let i=e,o=!1;i!=t.dom;){let c=t.docView.nearestDesc(i,!0),u;if(!c)return null;if(c.dom.nodeType==1&&(c.node.isBlock&&c.parent||!c.contentDOM)&&((u=c.dom.getBoundingClientRect()).width||u.height)&&(c.node.isBlock&&c.parent&&!/^T(R|BODY|HEAD|FOOT)$/.test(c.dom.nodeName)&&(!o&&u.left>r.left||u.top>r.top?a=c.posBefore:(!o&&u.right-1?a:t.docView.posFromDOM(e,n,-1)}function vS(t,e,n){let r=t.childNodes.length;if(r&&n.tope.top&&a++}let h;xu&&a&&r.nodeType==1&&(h=r.childNodes[a-1]).nodeType==1&&h.contentEditable=="false"&&h.getBoundingClientRect().top>=e.top&&a--,r==t.dom&&a==r.childNodes.length-1&&r.lastChild.nodeType==1&&e.top>r.lastChild.getBoundingClientRect().bottom?c=t.state.doc.content.size:(a==0||r.nodeType!=1||r.childNodes[a-1].nodeName!="BR")&&(c=eL(t,r,a,e))}c==null&&(c=ZO(t,o,e));let u=t.docView.nearestDesc(o,!0);return{pos:c,inside:u?u.posAtStart-u.border:-1}}function pN(t){return t.top=0&&a==r.nodeValue.length?(u--,f=1):n<0?u--:h++,kd(io(pi(r,u,h),f),f<0)}if(!t.state.doc.resolve(e-(i||0)).parent.inlineContent){if(i==null&&a&&(n<0||a==_r(r))){let u=r.childNodes[a-1];if(u.nodeType==1)return Rx(u.getBoundingClientRect(),!1)}if(i==null&&a<_r(r)){let u=r.childNodes[a];if(u.nodeType==1)return Rx(u.getBoundingClientRect(),!0)}return Rx(r.getBoundingClientRect(),n>=0)}if(i==null&&a&&(n<0||a==_r(r))){let u=r.childNodes[a-1],h=u.nodeType==3?pi(u,_r(u)-(o?0:1)):u.nodeType==1&&(u.nodeName!="BR"||!u.nextSibling)?u:null;if(h)return kd(io(h,1),!1)}if(i==null&&a<_r(r)){let u=r.childNodes[a];for(;u.pmViewDesc&&u.pmViewDesc.ignoreForCoords;)u=u.nextSibling;let h=u?u.nodeType==3?pi(u,0,o?0:1):u.nodeType==1?u:null:null;if(h)return kd(io(h,-1),!0)}return kd(io(r.nodeType==3?pi(r):r,-n),n>=0)}function kd(t,e){if(t.width==0)return t;let n=e?t.left:t.right;return{top:t.top,bottom:t.bottom,left:n,right:n}}function Rx(t,e){if(t.height==0)return t;let n=e?t.top:t.bottom;return{top:n,bottom:n,left:t.left,right:t.right}}function wS(t,e,n){let r=t.state,a=t.root.activeElement;r!=e&&t.updateState(e),a!=t.dom&&t.focus();try{return n()}finally{r!=e&&t.updateState(r),a!=t.dom&&a&&a.focus()}}function sL(t,e,n){let r=e.selection,a=n=="up"?r.$from:r.$to;return wS(t,e,()=>{let{node:i}=t.docView.domFromPos(a.pos,n=="up"?-1:1);for(;;){let c=t.docView.nearestDesc(i,!0);if(!c)break;if(c.node.isBlock){i=c.contentDOM||c.dom;break}i=c.dom.parentNode}let o=NS(t,a.pos,1);for(let c=i.firstChild;c;c=c.nextSibling){let u;if(c.nodeType==1)u=c.getClientRects();else if(c.nodeType==3)u=pi(c,0,c.nodeValue.length).getClientRects();else continue;for(let h=0;hf.top+1&&(n=="up"?o.top-f.top>(f.bottom-o.top)*2:f.bottom-o.bottom>(o.bottom-f.top)*2))return!1}}return!0})}const rL=/[\u0590-\u08ac]/;function aL(t,e,n){let{$head:r}=e.selection;if(!r.parent.isTextblock)return!1;let a=r.parentOffset,i=!a,o=a==r.parent.content.size,c=t.domSelection();return c?!rL.test(r.parent.textContent)||!c.modify?n=="left"||n=="backward"?i:o:wS(t,e,()=>{let{focusNode:u,focusOffset:h,anchorNode:f,anchorOffset:m}=t.domSelectionRange(),x=c.caretBidiLevel;c.modify("move",n,"character");let y=r.depth?t.docView.domAfterPos(r.before()):t.dom,{focusNode:v,focusOffset:N}=t.domSelectionRange(),w=v&&!y.contains(v.nodeType==1?v:v.parentNode)||u==v&&h==N;try{c.collapse(f,m),u&&(u!=f||h!=m)&&c.extend&&c.extend(u,h)}catch{}return x!=null&&(c.caretBidiLevel=x),w}):r.pos==r.start()||r.pos==r.end()}let mN=null,xN=null,gN=!1;function iL(t,e,n){return mN==e&&xN==n?gN:(mN=e,xN=n,gN=n=="up"||n=="down"?sL(t,e,n):aL(t,e,n))}const $r=0,yN=1,ll=2,Ra=3;class gu{constructor(e,n,r,a){this.parent=e,this.children=n,this.dom=r,this.contentDOM=a,this.dirty=$r,r.pmViewDesc=this}matchesWidget(e){return!1}matchesMark(e){return!1}matchesNode(e,n,r){return!1}matchesHack(e){return!1}parseRule(){return null}stopEvent(e){return!1}get size(){let e=0;for(let n=0;nms(this.contentDOM);else if(this.contentDOM&&this.contentDOM!=this.dom&&this.dom.contains(this.contentDOM))a=e.compareDocumentPosition(this.contentDOM)&2;else if(this.dom.firstChild){if(n==0)for(let i=e;;i=i.parentNode){if(i==this.dom){a=!1;break}if(i.previousSibling)break}if(a==null&&n==e.childNodes.length)for(let i=e;;i=i.parentNode){if(i==this.dom){a=!0;break}if(i.nextSibling)break}}return a??r>0?this.posAtEnd:this.posAtStart}nearestDesc(e,n=!1){for(let r=!0,a=e;a;a=a.parentNode){let i=this.getDesc(a),o;if(i&&(!n||i.node))if(r&&(o=i.nodeDOM)&&!(o.nodeType==1?o.contains(e.nodeType==1?e:e.parentNode):o==e))r=!1;else return i}}getDesc(e){let n=e.pmViewDesc;for(let r=n;r;r=r.parent)if(r==this)return n}posFromDOM(e,n,r){for(let a=e;a;a=a.parentNode){let i=this.getDesc(a);if(i)return i.localPosFromDOM(e,n,r)}return-1}descAt(e){for(let n=0,r=0;ne||o instanceof kS){a=e-i;break}i=c}if(a)return this.children[r].domFromPos(a-this.children[r].border,n);for(let i;r&&!(i=this.children[r-1]).size&&i instanceof jS&&i.side>=0;r--);if(n<=0){let i,o=!0;for(;i=r?this.children[r-1]:null,!(!i||i.dom.parentNode==this.contentDOM);r--,o=!1);return i&&n&&o&&!i.border&&!i.domAtom?i.domFromPos(i.size,n):{node:this.contentDOM,offset:i?ms(i.dom)+1:0}}else{let i,o=!0;for(;i=r=f&&n<=h-u.border&&u.node&&u.contentDOM&&this.contentDOM.contains(u.contentDOM))return u.parseRange(e,n,f);e=o;for(let m=c;m>0;m--){let x=this.children[m-1];if(x.size&&x.dom.parentNode==this.contentDOM&&!x.emptyChildAt(1)){a=ms(x.dom)+1;break}e-=x.size}a==-1&&(a=0)}if(a>-1&&(h>n||c==this.children.length-1)){n=h;for(let f=c+1;fv&&on){let v=c;c=u,u=v}let y=document.createRange();y.setEnd(u.node,u.offset),y.setStart(c.node,c.offset),h.removeAllRanges(),h.addRange(y)}}ignoreMutation(e){return!this.contentDOM&&e.type!="selection"}get contentLost(){return this.contentDOM&&this.contentDOM!=this.dom&&!this.dom.contains(this.contentDOM)}markDirty(e,n){for(let r=0,a=0;a=r:er){let c=r+i.border,u=o-i.border;if(e>=c&&n<=u){this.dirty=e==r||n==o?ll:yN,e==c&&n==u&&(i.contentLost||i.dom.parentNode!=this.contentDOM)?i.dirty=Ra:i.markDirty(e-c,n-c);return}else i.dirty=i.dom==i.contentDOM&&i.dom.parentNode==this.contentDOM&&!i.children.length?ll:Ra}r=o}this.dirty=ll}markParentsDirty(){let e=1;for(let n=this.parent;n;n=n.parent,e++){let r=e==1?ll:yN;n.dirty{if(!i)return a;if(i.parent)return i.parent.posBeforeChild(i)})),!n.type.spec.raw){if(o.nodeType!=1){let c=document.createElement("span");c.appendChild(o),o=c}o.contentEditable="false",o.classList.add("ProseMirror-widget")}super(e,[],o,null),this.widget=n,this.widget=n,i=this}matchesWidget(e){return this.dirty==$r&&e.type.eq(this.widget.type)}parseRule(){return{ignore:!0}}stopEvent(e){let n=this.widget.spec.stopEvent;return n?n(e):!1}ignoreMutation(e){return e.type!="selection"||this.widget.spec.ignoreSelection}destroy(){this.widget.type.destroy(this.dom),super.destroy()}get domAtom(){return!0}get ignoreForSelection(){return!!this.widget.type.spec.relaxedSide}get side(){return this.widget.type.side}}class oL extends gu{constructor(e,n,r,a){super(e,[],n,null),this.textDOM=r,this.text=a}get size(){return this.text.length}localPosFromDOM(e,n){return e!=this.textDOM?this.posAtStart+(n?this.size:0):this.posAtStart+n}domFromPos(e){return{node:this.textDOM,offset:e}}ignoreMutation(e){return e.type==="characterData"&&e.target.nodeValue==e.oldValue}}class kl extends gu{constructor(e,n,r,a,i){super(e,[],r,a),this.mark=n,this.spec=i}static create(e,n,r,a){let i=a.nodeViews[n.type.name],o=i&&i(n,a,r);return(!o||!o.dom)&&(o=Il.renderSpec(document,n.type.spec.toDOM(n,r),null,n.attrs)),new kl(e,n,o.dom,o.contentDOM||o.dom,o)}parseRule(){return this.dirty&Ra||this.mark.type.spec.reparseInView?null:{mark:this.mark.type.name,attrs:this.mark.attrs,contentElement:this.contentDOM}}matchesMark(e){return this.dirty!=Ra&&this.mark.eq(e)}markDirty(e,n){if(super.markDirty(e,n),this.dirty!=$r){let r=this.parent;for(;!r.node;)r=r.parent;r.dirty0&&(i=Dg(i,0,e,r));for(let c=0;c{if(!u)return o;if(u.parent)return u.parent.posBeforeChild(u)},r,a),f=h&&h.dom,m=h&&h.contentDOM;if(n.isText){if(!f)f=document.createTextNode(n.text);else if(f.nodeType!=3)throw new RangeError("Text must be rendered as a DOM text node")}else f||({dom:f,contentDOM:m}=Il.renderSpec(document,n.type.spec.toDOM(n),null,n.attrs));!m&&!n.isText&&f.nodeName!="BR"&&(f.hasAttribute("contenteditable")||(f.contentEditable="false"),n.type.spec.draggable&&(f.draggable=!0));let x=f;return f=TS(f,r,n),h?u=new lL(e,n,r,a,f,m||null,x,h,i,o+1):n.isText?new bp(e,n,r,a,f,x,i):new jo(e,n,r,a,f,m||null,x,i,o+1)}parseRule(){if(this.node.type.spec.reparseInView)return null;let e={node:this.node.type.name,attrs:this.node.attrs};if(this.node.type.whitespace=="pre"&&(e.preserveWhitespace="full"),!this.contentDOM)e.getContent=()=>this.node.content;else if(!this.contentLost)e.contentElement=this.contentDOM;else{for(let n=this.children.length-1;n>=0;n--){let r=this.children[n];if(this.dom.contains(r.dom.parentNode)){e.contentElement=r.dom.parentNode;break}}e.contentElement||(e.getContent=()=>Ne.empty)}return e}matchesNode(e,n,r){return this.dirty==$r&&e.eq(this.node)&&mf(n,this.outerDeco)&&r.eq(this.innerDeco)}get size(){return this.node.nodeSize}get border(){return this.node.isLeaf?0:1}updateChildren(e,n){let r=this.node.inlineContent,a=n,i=e.composing?this.localCompositionInfo(e,n):null,o=i&&i.pos>-1?i:null,c=i&&i.pos<0,u=new dL(this,o&&o.node,e);fL(this.node,this.innerDeco,(h,f,m)=>{h.spec.marks?u.syncToMarks(h.spec.marks,r,e,f):h.type.side>=0&&!m&&u.syncToMarks(f==this.node.childCount?an.none:this.node.child(f).marks,r,e,f),u.placeWidget(h,e,a)},(h,f,m,x)=>{u.syncToMarks(h.marks,r,e,x);let y;u.findNodeMatch(h,f,m,x)||c&&e.state.selection.from>a&&e.state.selection.to-1&&u.updateNodeAt(h,f,m,y,e)||u.updateNextNode(h,f,m,e,x,a)||u.addNode(h,f,m,e,a),a+=h.nodeSize}),u.syncToMarks([],r,e,0),this.node.isTextblock&&u.addTextblockHacks(),u.destroyRest(),(u.changed||this.dirty==ll)&&(o&&this.protectLocalComposition(e,o),SS(this.contentDOM,this.children,e),Lc&&pL(this.dom))}localCompositionInfo(e,n){let{from:r,to:a}=e.state.selection;if(!(e.state.selection instanceof nt)||rn+this.node.content.size)return null;let i=e.input.compositionNode;if(!i||!this.dom.contains(i.parentNode))return null;if(this.node.inlineContent){let o=i.nodeValue,c=mL(this.node.content,o,r-n,a-n);return c<0?null:{node:i,pos:c,text:o}}else return{node:i,pos:-1,text:""}}protectLocalComposition(e,{node:n,pos:r,text:a}){if(this.getDesc(n))return;let i=n;for(;i.parentNode!=this.contentDOM;i=i.parentNode){for(;i.previousSibling;)i.parentNode.removeChild(i.previousSibling);for(;i.nextSibling;)i.parentNode.removeChild(i.nextSibling);i.pmViewDesc&&(i.pmViewDesc=void 0)}let o=new oL(this,i,n,a);e.input.compositionNodes.push(o),this.children=Dg(this.children,r,r+a.length,e,o)}update(e,n,r,a){return this.dirty==Ra||!e.sameMarkup(this.node)?!1:(this.updateInner(e,n,r,a),!0)}updateInner(e,n,r,a){this.updateOuterDeco(n),this.node=e,this.innerDeco=r,this.contentDOM&&this.updateChildren(a,this.posAtStart),this.dirty=$r}updateOuterDeco(e){if(mf(e,this.outerDeco))return;let n=this.nodeDOM.nodeType!=1,r=this.dom;this.dom=CS(this.dom,this.nodeDOM,Lg(this.outerDeco,this.node,n),Lg(e,this.node,n)),this.dom!=r&&(r.pmViewDesc=void 0,this.dom.pmViewDesc=this),this.outerDeco=e}selectNode(){this.nodeDOM.nodeType==1&&(this.nodeDOM.classList.add("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&(this.nodeDOM.draggable=!0))}deselectNode(){this.nodeDOM.nodeType==1&&(this.nodeDOM.classList.remove("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&this.nodeDOM.removeAttribute("draggable"))}get domAtom(){return this.node.isAtom}}function bN(t,e,n,r,a){TS(r,e,t);let i=new jo(void 0,t,e,n,r,r,r,a,0);return i.contentDOM&&i.updateChildren(a,0),i}class bp extends jo{constructor(e,n,r,a,i,o,c){super(e,n,r,a,i,null,o,c,0)}parseRule(){let e=this.nodeDOM.parentNode;for(;e&&e!=this.dom&&!e.pmIsDeco;)e=e.parentNode;return{skip:e||!0}}update(e,n,r,a){return this.dirty==Ra||this.dirty!=$r&&!this.inParent()||!e.sameMarkup(this.node)?!1:(this.updateOuterDeco(n),(this.dirty!=$r||e.text!=this.node.text)&&e.text!=this.nodeDOM.nodeValue&&(this.nodeDOM.nodeValue=e.text,a.trackWrites==this.nodeDOM&&(a.trackWrites=null)),this.node=e,this.dirty=$r,!0)}inParent(){let e=this.parent.contentDOM;for(let n=this.nodeDOM;n;n=n.parentNode)if(n==e)return!0;return!1}domFromPos(e){return{node:this.nodeDOM,offset:e}}localPosFromDOM(e,n,r){return e==this.nodeDOM?this.posAtStart+Math.min(n,this.node.text.length):super.localPosFromDOM(e,n,r)}ignoreMutation(e){return e.type!="characterData"&&e.type!="selection"}slice(e,n,r){let a=this.node.cut(e,n),i=document.createTextNode(a.text);return new bp(this.parent,a,this.outerDeco,this.innerDeco,i,i,r)}markDirty(e,n){super.markDirty(e,n),this.dom!=this.nodeDOM&&(e==0||n==this.nodeDOM.nodeValue.length)&&(this.dirty=Ra)}get domAtom(){return!1}isText(e){return this.node.text==e}}class kS extends gu{parseRule(){return{ignore:!0}}matchesHack(e){return this.dirty==$r&&this.dom.nodeName==e}get domAtom(){return!0}get ignoreForCoords(){return this.dom.nodeName=="IMG"}}class lL extends jo{constructor(e,n,r,a,i,o,c,u,h,f){super(e,n,r,a,i,o,c,h,f),this.spec=u}update(e,n,r,a){if(this.dirty==Ra)return!1;if(this.spec.update&&(this.node.type==e.type||this.spec.multiType)){let i=this.spec.update(e,n,r);return i&&this.updateInner(e,n,r,a),i}else return!this.contentDOM&&!e.isLeaf?!1:super.update(e,n,r,a)}selectNode(){this.spec.selectNode?this.spec.selectNode():super.selectNode()}deselectNode(){this.spec.deselectNode?this.spec.deselectNode():super.deselectNode()}setSelection(e,n,r,a){this.spec.setSelection?this.spec.setSelection(e,n,r.root):super.setSelection(e,n,r,a)}destroy(){this.spec.destroy&&this.spec.destroy(),super.destroy()}stopEvent(e){return this.spec.stopEvent?this.spec.stopEvent(e):!1}ignoreMutation(e){return this.spec.ignoreMutation?this.spec.ignoreMutation(e):super.ignoreMutation(e)}}function SS(t,e,n){let r=t.firstChild,a=!1;for(let i=0;i>1,c=Math.min(o,e.length);for(;i-1)u>this.index&&(this.changed=!0,this.destroyBetween(this.index,u)),this.top=this.top.children[this.index];else{let f=kl.create(this.top,e[o],n,r);this.top.children.splice(this.index,0,f),this.top=f,this.changed=!0}this.index=0,o++}}findNodeMatch(e,n,r,a){let i=-1,o;if(a>=this.preMatch.index&&(o=this.preMatch.matches[a-this.preMatch.index]).parent==this.top&&o.matchesNode(e,n,r))i=this.top.children.indexOf(o,this.index);else for(let c=this.index,u=Math.min(this.top.children.length,c+5);c0;){let c;for(;;)if(r){let h=n.children[r-1];if(h instanceof kl)n=h,r=h.children.length;else{c=h,r--;break}}else{if(n==e)break e;r=n.parent.children.indexOf(n),n=n.parent}let u=c.node;if(u){if(u!=t.child(a-1))break;--a,i.set(c,a),o.push(c)}}return{index:a,matched:i,matches:o.reverse()}}function hL(t,e){return t.type.side-e.type.side}function fL(t,e,n,r){let a=e.locals(t),i=0;if(a.length==0){for(let h=0;hi;)c.push(a[o++]);let v=i+x.nodeSize;if(x.isText){let w=v;o!w.inline):c.slice();r(x,N,e.forChild(i,x),y),i=v}}function pL(t){if(t.nodeName=="UL"||t.nodeName=="OL"){let e=t.style.cssText;t.style.cssText=e+"; list-style: square !important",window.getComputedStyle(t).listStyle,t.style.cssText=e}}function mL(t,e,n,r){for(let a=0,i=0;a=n){if(i>=r&&u.slice(r-e.length-c,r-c)==e)return r-e.length;let h=c=0&&h+e.length+c>=n)return c+h;if(n==r&&u.length>=r+e.length-c&&u.slice(r-c,r-c+e.length)==e)return r}}return-1}function Dg(t,e,n,r,a){let i=[];for(let o=0,c=0;o=n||f<=e?i.push(u):(hn&&i.push(u.slice(n-h,u.size,r)))}return i}function Q0(t,e=null){let n=t.domSelectionRange(),r=t.state.doc;if(!n.focusNode)return null;let a=t.docView.nearestDesc(n.focusNode),i=a&&a.size==0,o=t.docView.posFromDOM(n.focusNode,n.focusOffset,1);if(o<0)return null;let c=r.resolve(o),u,h;if(yp(n)){for(u=o;a&&!a.node;)a=a.parent;let m=a.node;if(a&&m.isAtom&&tt.isSelectable(m)&&a.parent&&!(m.isInline&&VO(n.focusNode,n.focusOffset,a.dom))){let x=a.posBefore;h=new tt(o==x?c:r.resolve(x))}}else{if(n instanceof t.dom.ownerDocument.defaultView.Selection&&n.rangeCount>1){let m=o,x=o;for(let y=0;y{(n.anchorNode!=r||n.anchorOffset!=a)&&(e.removeEventListener("selectionchange",t.input.hideSelectionGuard),setTimeout(()=>{(!ES(t)||t.state.selection.visible)&&t.dom.classList.remove("ProseMirror-hideselection")},20))})}function gL(t){let e=t.domSelection();if(!e)return;let n=t.cursorWrapper.dom,r=n.nodeName=="IMG";r?e.collapse(n.parentNode,ms(n)+1):e.collapse(n,0),!r&&!t.state.selection.visible&&ar&&wo<=11&&(n.disabled=!0,n.disabled=!1)}function MS(t,e){if(e instanceof tt){let n=t.docView.descAt(e.from);n!=t.lastSelectedViewDesc&&(kN(t),n&&n.selectNode(),t.lastSelectedViewDesc=n)}else kN(t)}function kN(t){t.lastSelectedViewDesc&&(t.lastSelectedViewDesc.parent&&t.lastSelectedViewDesc.deselectNode(),t.lastSelectedViewDesc=void 0)}function Y0(t,e,n,r){return t.someProp("createSelectionBetween",a=>a(t,e,n))||nt.between(e,n,r)}function SN(t){return t.editable&&!t.hasFocus()?!1:AS(t)}function AS(t){let e=t.domSelectionRange();if(!e.anchorNode)return!1;try{return t.dom.contains(e.anchorNode.nodeType==3?e.anchorNode.parentNode:e.anchorNode)&&(t.editable||t.dom.contains(e.focusNode.nodeType==3?e.focusNode.parentNode:e.focusNode))}catch{return!1}}function yL(t){let e=t.docView.domFromPos(t.state.selection.anchor,0),n=t.domSelectionRange();return jl(e.node,e.offset,n.anchorNode,n.anchorOffset)}function _g(t,e){let{$anchor:n,$head:r}=t.selection,a=e>0?n.max(r):n.min(r),i=a.parent.inlineContent?a.depth?t.doc.resolve(e>0?a.after():a.before()):null:a;return i&<.findFrom(i,e)}function oo(t,e){return t.dispatch(t.state.tr.setSelection(e).scrollIntoView()),!0}function CN(t,e,n){let r=t.state.selection;if(r instanceof nt)if(n.indexOf("s")>-1){let{$head:a}=r,i=a.textOffset?null:e<0?a.nodeBefore:a.nodeAfter;if(!i||i.isText||!i.isLeaf)return!1;let o=t.state.doc.resolve(a.pos+i.nodeSize*(e<0?-1:1));return oo(t,new nt(r.$anchor,o))}else if(r.empty){if(t.endOfTextblock(e>0?"forward":"backward")){let a=_g(t.state,e);return a&&a instanceof tt?oo(t,a):!1}else if(!(Dr&&n.indexOf("m")>-1)){let a=r.$head,i=a.textOffset?null:e<0?a.nodeBefore:a.nodeAfter,o;if(!i||i.isText)return!1;let c=e<0?a.pos-i.nodeSize:a.pos;return i.isAtom||(o=t.docView.descAt(c))&&!o.contentDOM?tt.isSelectable(i)?oo(t,new tt(e<0?t.state.doc.resolve(a.pos-i.nodeSize):a)):xu?oo(t,new nt(t.state.doc.resolve(e<0?c:c+i.nodeSize))):!1:!1}}else return!1;else{if(r instanceof tt&&r.node.isInline)return oo(t,new nt(e>0?r.$to:r.$from));{let a=_g(t.state,e);return a?oo(t,a):!1}}}function xf(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function Fd(t,e){let n=t.pmViewDesc;return n&&n.size==0&&(e<0||t.nextSibling||t.nodeName!="BR")}function uc(t,e){return e<0?bL(t):vL(t)}function bL(t){let e=t.domSelectionRange(),n=e.focusNode,r=e.focusOffset;if(!n)return;let a,i,o=!1;for(zr&&n.nodeType==1&&r0){if(n.nodeType!=1)break;{let c=n.childNodes[r-1];if(Fd(c,-1))a=n,i=--r;else if(c.nodeType==3)n=c,r=n.nodeValue.length;else break}}else{if(IS(n))break;{let c=n.previousSibling;for(;c&&Fd(c,-1);)a=n.parentNode,i=ms(c),c=c.previousSibling;if(c)n=c,r=xf(n);else{if(n=n.parentNode,n==t.dom)break;r=0}}}o?zg(t,n,r):a&&zg(t,a,i)}function vL(t){let e=t.domSelectionRange(),n=e.focusNode,r=e.focusOffset;if(!n)return;let a=xf(n),i,o;for(;;)if(r{t.state==a&&Ni(t)},50)}function TN(t,e){let n=t.state.doc.resolve(e);if(!(vs||xS)&&n.parent.inlineContent){let a=t.coordsAtPos(e);if(e>n.start()){let i=t.coordsAtPos(e-1),o=(i.top+i.bottom)/2;if(o>a.top&&o1)return i.lefta.top&&o1)return i.left>a.left?"ltr":"rtl"}}return getComputedStyle(t.dom).direction=="rtl"?"rtl":"ltr"}function EN(t,e,n){let r=t.state.selection;if(r instanceof nt&&!r.empty||n.indexOf("s")>-1||Dr&&n.indexOf("m")>-1)return!1;let{$from:a,$to:i}=r;if(!a.parent.inlineContent||t.endOfTextblock(e<0?"up":"down")){let o=_g(t.state,e);if(o&&o instanceof tt)return oo(t,o)}if(!a.parent.inlineContent){let o=e<0?a:i,c=r instanceof xr?lt.near(o,e):lt.findFrom(o,e);return c?oo(t,c):!1}return!1}function MN(t,e){if(!(t.state.selection instanceof nt))return!0;let{$head:n,$anchor:r,empty:a}=t.state.selection;if(!n.sameParent(r))return!0;if(!a)return!1;if(t.endOfTextblock(e>0?"forward":"backward"))return!0;let i=!n.textOffset&&(e<0?n.nodeBefore:n.nodeAfter);if(i&&!i.isText){let o=t.state.tr;return e<0?o.delete(n.pos-i.nodeSize,n.pos):o.delete(n.pos,n.pos+i.nodeSize),t.dispatch(o),!0}return!1}function AN(t,e,n){t.domObserver.stop(),e.contentEditable=n,t.domObserver.start()}function jL(t){if(!Ps||t.state.selection.$head.parentOffset>0)return!1;let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(e&&e.nodeType==1&&n==0&&e.firstChild&&e.firstChild.contentEditable=="false"){let r=e.firstChild;AN(t,r,"true"),setTimeout(()=>AN(t,r,"false"),20)}return!1}function kL(t){let e="";return t.ctrlKey&&(e+="c"),t.metaKey&&(e+="m"),t.altKey&&(e+="a"),t.shiftKey&&(e+="s"),e}function SL(t,e){let n=e.keyCode,r=kL(e);if(n==8||Dr&&n==72&&r=="c")return MN(t,-1)||uc(t,-1);if(n==46&&!e.shiftKey||Dr&&n==68&&r=="c")return MN(t,1)||uc(t,1);if(n==13||n==27)return!0;if(n==37||Dr&&n==66&&r=="c"){let a=n==37?TN(t,t.state.selection.from)=="ltr"?-1:1:-1;return CN(t,a,r)||uc(t,a)}else if(n==39||Dr&&n==70&&r=="c"){let a=n==39?TN(t,t.state.selection.from)=="ltr"?1:-1:1;return CN(t,a,r)||uc(t,a)}else{if(n==38||Dr&&n==80&&r=="c")return EN(t,-1,r)||uc(t,-1);if(n==40||Dr&&n==78&&r=="c")return jL(t)||EN(t,1,r)||uc(t,1);if(r==(Dr?"m":"c")&&(n==66||n==73||n==89||n==90))return!0}return!1}function X0(t,e){t.someProp("transformCopied",y=>{e=y(e,t)});let n=[],{content:r,openStart:a,openEnd:i}=e;for(;a>1&&i>1&&r.childCount==1&&r.firstChild.childCount==1;){a--,i--;let y=r.firstChild;n.push(y.type.name,y.attrs!=y.type.defaultAttrs?y.attrs:null),r=y.content}let o=t.someProp("clipboardSerializer")||Il.fromSchema(t.state.schema),c=_S(),u=c.createElement("div");u.appendChild(o.serializeFragment(r,{document:c}));let h=u.firstChild,f,m=0;for(;h&&h.nodeType==1&&(f=DS[h.nodeName.toLowerCase()]);){for(let y=f.length-1;y>=0;y--){let v=c.createElement(f[y]);for(;u.firstChild;)v.appendChild(u.firstChild);u.appendChild(v),m++}h=u.firstChild}h&&h.nodeType==1&&h.setAttribute("data-pm-slice",`${a} ${i}${m?` -${m}`:""} ${JSON.stringify(n)}`);let x=t.someProp("clipboardTextSerializer",y=>y(e,t))||e.content.textBetween(0,e.content.size,` + +`);return{dom:u,text:x,slice:e}}function PS(t,e,n,r,a){let i=a.parent.type.spec.code,o,c;if(!n&&!e)return null;let u=!!e&&(r||i||!n);if(u){if(t.someProp("transformPastedText",x=>{e=x(e,i||r,t)}),i)return c=new ze(Ne.from(t.state.schema.text(e.replace(/\r\n?/g,` +`))),0,0),t.someProp("transformPasted",x=>{c=x(c,t,!0)}),c;let m=t.someProp("clipboardTextParser",x=>x(e,a,r,t));if(m)c=m;else{let x=a.marks(),{schema:y}=t.state,v=Il.fromSchema(y);o=document.createElement("div"),e.split(/(?:\r\n?|\n)+/).forEach(N=>{let w=o.appendChild(document.createElement("p"));N&&w.appendChild(v.serializeNode(y.text(N,x)))})}}else t.someProp("transformPastedHTML",m=>{n=m(n,t)}),o=ML(n),xu&&AL(o);let h=o&&o.querySelector("[data-pm-slice]"),f=h&&/^(\d+) (\d+)(?: -(\d+))? (.*)/.exec(h.getAttribute("data-pm-slice")||"");if(f&&f[3])for(let m=+f[3];m>0;m--){let x=o.firstChild;for(;x&&x.nodeType!=1;)x=x.nextSibling;if(!x)break;o=x}if(c||(c=(t.someProp("clipboardParser")||t.someProp("domParser")||No.fromSchema(t.state.schema)).parseSlice(o,{preserveWhitespace:!!(u||f),context:a,ruleFromNode(x){return x.nodeName=="BR"&&!x.nextSibling&&x.parentNode&&!CL.test(x.parentNode.nodeName)?{ignore:!0}:null}})),f)c=IL(IN(c,+f[1],+f[2]),f[4]);else if(c=ze.maxOpen(TL(c.content,a),!0),c.openStart||c.openEnd){let m=0,x=0;for(let y=c.content.firstChild;m{c=m(c,t,u)}),c}const CL=/^(a|abbr|acronym|b|cite|code|del|em|i|ins|kbd|label|output|q|ruby|s|samp|span|strong|sub|sup|time|u|tt|var)$/i;function TL(t,e){if(t.childCount<2)return t;for(let n=e.depth;n>=0;n--){let a=e.node(n).contentMatchAt(e.index(n)),i,o=[];if(t.forEach(c=>{if(!o)return;let u=a.findWrapping(c.type),h;if(!u)return o=null;if(h=o.length&&i.length&&OS(u,i,c,o[o.length-1],0))o[o.length-1]=h;else{o.length&&(o[o.length-1]=LS(o[o.length-1],i.length));let f=RS(c,u);o.push(f),a=a.matchType(f.type),i=u}}),o)return Ne.from(o)}return t}function RS(t,e,n=0){for(let r=e.length-1;r>=n;r--)t=e[r].create(null,Ne.from(t));return t}function OS(t,e,n,r,a){if(a1&&(i=0),a=n&&(c=e<0?o.contentMatchAt(0).fillBefore(c,i<=a).append(c):c.append(o.contentMatchAt(o.childCount).fillBefore(Ne.empty,!0))),t.replaceChild(e<0?0:t.childCount-1,o.copy(c))}function IN(t,e,n){return en})),Lx.createHTML(t)):t}function ML(t){let e=/^(\s*]*>)*/.exec(t);e&&(t=t.slice(e[0].length));let n=_S().createElement("div"),r=/<([a-z][^>\s]+)/i.exec(t),a;if((a=r&&DS[r[1].toLowerCase()])&&(t=a.map(i=>"<"+i+">").join("")+t+a.map(i=>"").reverse().join("")),n.innerHTML=EL(t),a)for(let i=0;i=0;c-=2){let u=n.nodes[r[c]];if(!u||u.hasRequiredAttrs())break;a=Ne.from(u.create(r[c+1],a)),i++,o++}return new ze(a,i,o)}const Hs={},Us={},PL={touchstart:!0,touchmove:!0};class RL{constructor(){this.shiftKey=!1,this.mouseDown=null,this.lastKeyCode=null,this.lastKeyCodeTime=0,this.lastClick={time:0,x:0,y:0,type:"",button:0},this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastIOSEnter=0,this.lastIOSEnterFallbackTimeout=-1,this.lastFocus=0,this.lastTouch=0,this.lastChromeDelete=0,this.composing=!1,this.compositionNode=null,this.composingTimeout=-1,this.compositionNodes=[],this.compositionEndedAt=-2e8,this.compositionID=1,this.badSafariComposition=!1,this.compositionPendingChanges=0,this.domChangeCount=0,this.eventHandlers=Object.create(null),this.hideSelectionGuard=null}}function OL(t){for(let e in Hs){let n=Hs[e];t.dom.addEventListener(e,t.input.eventHandlers[e]=r=>{DL(t,r)&&!Z0(t,r)&&(t.editable||!(r.type in Us))&&n(t,r)},PL[e]?{passive:!0}:void 0)}Ps&&t.dom.addEventListener("input",()=>null),Fg(t)}function yo(t,e){t.input.lastSelectionOrigin=e,t.input.lastSelectionTime=Date.now()}function LL(t){t.domObserver.stop();for(let e in t.input.eventHandlers)t.dom.removeEventListener(e,t.input.eventHandlers[e]);clearTimeout(t.input.composingTimeout),clearTimeout(t.input.lastIOSEnterFallbackTimeout)}function Fg(t){t.someProp("handleDOMEvents",e=>{for(let n in e)t.input.eventHandlers[n]||t.dom.addEventListener(n,t.input.eventHandlers[n]=r=>Z0(t,r))})}function Z0(t,e){return t.someProp("handleDOMEvents",n=>{let r=n[e.type];return r?r(t,e)||e.defaultPrevented:!1})}function DL(t,e){if(!e.bubbles)return!0;if(e.defaultPrevented)return!1;for(let n=e.target;n!=t.dom;n=n.parentNode)if(!n||n.nodeType==11||n.pmViewDesc&&n.pmViewDesc.stopEvent(e))return!1;return!0}function _L(t,e){!Z0(t,e)&&Hs[e.type]&&(t.editable||!(e.type in Us))&&Hs[e.type](t,e)}Us.keydown=(t,e)=>{let n=e;if(t.input.shiftKey=n.keyCode==16||n.shiftKey,!$S(t,n)&&(t.input.lastKeyCode=n.keyCode,t.input.lastKeyCodeTime=Date.now(),!(yi&&vs&&n.keyCode==13)))if(n.keyCode!=229&&t.domObserver.forceFlush(),Lc&&n.keyCode==13&&!n.ctrlKey&&!n.altKey&&!n.metaKey){let r=Date.now();t.input.lastIOSEnter=r,t.input.lastIOSEnterFallbackTimeout=setTimeout(()=>{t.input.lastIOSEnter==r&&(t.someProp("handleKeyDown",a=>a(t,rl(13,"Enter"))),t.input.lastIOSEnter=0)},200)}else t.someProp("handleKeyDown",r=>r(t,n))||SL(t,n)?n.preventDefault():yo(t,"key")};Us.keyup=(t,e)=>{e.keyCode==16&&(t.input.shiftKey=!1)};Us.keypress=(t,e)=>{let n=e;if($S(t,n)||!n.charCode||n.ctrlKey&&!n.altKey||Dr&&n.metaKey)return;if(t.someProp("handleKeyPress",a=>a(t,n))){n.preventDefault();return}let r=t.state.selection;if(!(r instanceof nt)||!r.$from.sameParent(r.$to)){let a=String.fromCharCode(n.charCode),i=()=>t.state.tr.insertText(a).scrollIntoView();!/[\r\n]/.test(a)&&!t.someProp("handleTextInput",o=>o(t,r.$from.pos,r.$to.pos,a,i))&&t.dispatch(i()),n.preventDefault()}};function vp(t){return{left:t.clientX,top:t.clientY}}function zL(t,e){let n=e.x-t.clientX,r=e.y-t.clientY;return n*n+r*r<100}function ey(t,e,n,r,a){if(r==-1)return!1;let i=t.state.doc.resolve(r);for(let o=i.depth+1;o>0;o--)if(t.someProp(e,c=>o>i.depth?c(t,n,i.nodeAfter,i.before(o),a,!0):c(t,n,i.node(o),i.before(o),a,!1)))return!0;return!1}function Sc(t,e,n){if(t.focused||t.focus(),t.state.selection.eq(e))return;let r=t.state.tr.setSelection(e);r.setMeta("pointer",!0),t.dispatch(r)}function $L(t,e){if(e==-1)return!1;let n=t.state.doc.resolve(e),r=n.nodeAfter;return r&&r.isAtom&&tt.isSelectable(r)?(Sc(t,new tt(n)),!0):!1}function FL(t,e){if(e==-1)return!1;let n=t.state.selection,r,a;n instanceof tt&&(r=n.node);let i=t.state.doc.resolve(e);for(let o=i.depth+1;o>0;o--){let c=o>i.depth?i.nodeAfter:i.node(o);if(tt.isSelectable(c)){r&&n.$from.depth>0&&o>=n.$from.depth&&i.before(n.$from.depth+1)==n.$from.pos?a=i.before(n.$from.depth):a=i.before(o);break}}return a!=null?(Sc(t,tt.create(t.state.doc,a)),!0):!1}function BL(t,e,n,r,a){return ey(t,"handleClickOn",e,n,r)||t.someProp("handleClick",i=>i(t,e,r))||(a?FL(t,n):$L(t,n))}function VL(t,e,n,r){return ey(t,"handleDoubleClickOn",e,n,r)||t.someProp("handleDoubleClick",a=>a(t,e,r))}function HL(t,e,n,r){return ey(t,"handleTripleClickOn",e,n,r)||t.someProp("handleTripleClick",a=>a(t,e,r))||UL(t,n,r)}function UL(t,e,n){if(n.button!=0)return!1;let r=t.state.doc;if(e==-1)return r.inlineContent?(Sc(t,nt.create(r,0,r.content.size)),!0):!1;let a=r.resolve(e);for(let i=a.depth+1;i>0;i--){let o=i>a.depth?a.nodeAfter:a.node(i),c=a.before(i);if(o.inlineContent)Sc(t,nt.create(r,c+1,c+1+o.content.size));else if(tt.isSelectable(o))Sc(t,tt.create(r,c));else continue;return!0}}function ty(t){return gf(t)}const zS=Dr?"metaKey":"ctrlKey";Hs.mousedown=(t,e)=>{let n=e;t.input.shiftKey=n.shiftKey;let r=ty(t),a=Date.now(),i="singleClick";a-t.input.lastClick.time<500&&zL(n,t.input.lastClick)&&!n[zS]&&t.input.lastClick.button==n.button&&(t.input.lastClick.type=="singleClick"?i="doubleClick":t.input.lastClick.type=="doubleClick"&&(i="tripleClick")),t.input.lastClick={time:a,x:n.clientX,y:n.clientY,type:i,button:n.button};let o=t.posAtCoords(vp(n));o&&(i=="singleClick"?(t.input.mouseDown&&t.input.mouseDown.done(),t.input.mouseDown=new WL(t,o,n,!!r)):(i=="doubleClick"?VL:HL)(t,o.pos,o.inside,n)?n.preventDefault():yo(t,"pointer"))};class WL{constructor(e,n,r,a){this.view=e,this.pos=n,this.event=r,this.flushed=a,this.delayedSelectionSync=!1,this.mightDrag=null,this.startDoc=e.state.doc,this.selectNode=!!r[zS],this.allowDefault=r.shiftKey;let i,o;if(n.inside>-1)i=e.state.doc.nodeAt(n.inside),o=n.inside;else{let f=e.state.doc.resolve(n.pos);i=f.parent,o=f.depth?f.before():0}const c=a?null:r.target,u=c?e.docView.nearestDesc(c,!0):null;this.target=u&&u.nodeDOM.nodeType==1?u.nodeDOM:null;let{selection:h}=e.state;(r.button==0&&i.type.spec.draggable&&i.type.spec.selectable!==!1||h instanceof tt&&h.from<=o&&h.to>o)&&(this.mightDrag={node:i,pos:o,addAttr:!!(this.target&&!this.target.draggable),setUneditable:!!(this.target&&zr&&!this.target.hasAttribute("contentEditable"))}),this.target&&this.mightDrag&&(this.mightDrag.addAttr||this.mightDrag.setUneditable)&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&(this.target.draggable=!0),this.mightDrag.setUneditable&&setTimeout(()=>{this.view.input.mouseDown==this&&this.target.setAttribute("contentEditable","false")},20),this.view.domObserver.start()),e.root.addEventListener("mouseup",this.up=this.up.bind(this)),e.root.addEventListener("mousemove",this.move=this.move.bind(this)),yo(e,"pointer")}done(){this.view.root.removeEventListener("mouseup",this.up),this.view.root.removeEventListener("mousemove",this.move),this.mightDrag&&this.target&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&this.target.removeAttribute("draggable"),this.mightDrag.setUneditable&&this.target.removeAttribute("contentEditable"),this.view.domObserver.start()),this.delayedSelectionSync&&setTimeout(()=>Ni(this.view)),this.view.input.mouseDown=null}up(e){if(this.done(),!this.view.dom.contains(e.target))return;let n=this.pos;this.view.state.doc!=this.startDoc&&(n=this.view.posAtCoords(vp(e))),this.updateAllowDefault(e),this.allowDefault||!n?yo(this.view,"pointer"):BL(this.view,n.pos,n.inside,e,this.selectNode)?e.preventDefault():e.button==0&&(this.flushed||Ps&&this.mightDrag&&!this.mightDrag.node.isAtom||vs&&!this.view.state.selection.visible&&Math.min(Math.abs(n.pos-this.view.state.selection.from),Math.abs(n.pos-this.view.state.selection.to))<=2)?(Sc(this.view,lt.near(this.view.state.doc.resolve(n.pos))),e.preventDefault()):yo(this.view,"pointer")}move(e){this.updateAllowDefault(e),yo(this.view,"pointer"),e.buttons==0&&this.done()}updateAllowDefault(e){!this.allowDefault&&(Math.abs(this.event.x-e.clientX)>4||Math.abs(this.event.y-e.clientY)>4)&&(this.allowDefault=!0)}}Hs.touchstart=t=>{t.input.lastTouch=Date.now(),ty(t),yo(t,"pointer")};Hs.touchmove=t=>{t.input.lastTouch=Date.now(),yo(t,"pointer")};Hs.contextmenu=t=>ty(t);function $S(t,e){return t.composing?!0:Ps&&Math.abs(e.timeStamp-t.input.compositionEndedAt)<500?(t.input.compositionEndedAt=-2e8,!0):!1}const KL=yi?5e3:-1;Us.compositionstart=Us.compositionupdate=t=>{if(!t.composing){t.domObserver.flush();let{state:e}=t,n=e.selection.$to;if(e.selection instanceof nt&&(e.storedMarks||!n.textOffset&&n.parentOffset&&n.nodeBefore.marks.some(r=>r.type.spec.inclusive===!1)||vs&&xS&&qL(t)))t.markCursor=t.state.storedMarks||n.marks(),gf(t,!0),t.markCursor=null;else if(gf(t,!e.selection.empty),zr&&e.selection.empty&&n.parentOffset&&!n.textOffset&&n.nodeBefore.marks.length){let r=t.domSelectionRange();for(let a=r.focusNode,i=r.focusOffset;a&&a.nodeType==1&&i!=0;){let o=i<0?a.lastChild:a.childNodes[i-1];if(!o)break;if(o.nodeType==3){let c=t.domSelection();c&&c.collapse(o,o.nodeValue.length);break}else a=o,i=-1}}t.input.composing=!0}FS(t,KL)};function qL(t){let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(!e||e.nodeType!=1||n>=e.childNodes.length)return!1;let r=e.childNodes[n];return r.nodeType==1&&r.contentEditable=="false"}Us.compositionend=(t,e)=>{t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=e.timeStamp,t.input.compositionPendingChanges=t.domObserver.pendingRecords().length?t.input.compositionID:0,t.input.compositionNode=null,t.input.badSafariComposition?t.domObserver.forceFlush():t.input.compositionPendingChanges&&Promise.resolve().then(()=>t.domObserver.flush()),t.input.compositionID++,FS(t,20))};function FS(t,e){clearTimeout(t.input.composingTimeout),e>-1&&(t.input.composingTimeout=setTimeout(()=>gf(t),e))}function BS(t){for(t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=JL());t.input.compositionNodes.length>0;)t.input.compositionNodes.pop().markParentsDirty()}function GL(t){let e=t.domSelectionRange();if(!e.focusNode)return null;let n=FO(e.focusNode,e.focusOffset),r=BO(e.focusNode,e.focusOffset);if(n&&r&&n!=r){let a=r.pmViewDesc,i=t.domObserver.lastChangedTextNode;if(n==i||r==i)return i;if(!a||!a.isText(r.nodeValue))return r;if(t.input.compositionNode==r){let o=n.pmViewDesc;if(!(!o||!o.isText(n.nodeValue)))return r}}return n||r}function JL(){let t=document.createEvent("Event");return t.initEvent("event",!0,!0),t.timeStamp}function gf(t,e=!1){if(!(yi&&t.domObserver.flushingSoon>=0)){if(t.domObserver.forceFlush(),BS(t),e||t.docView&&t.docView.dirty){let n=Q0(t),r=t.state.selection;return n&&!n.eq(r)?t.dispatch(t.state.tr.setSelection(n)):(t.markCursor||e)&&!r.$from.node(r.$from.sharedDepth(r.to)).inlineContent?t.dispatch(t.state.tr.deleteSelection()):t.updateState(t.state),!0}return!1}}function QL(t,e){if(!t.dom.parentNode)return;let n=t.dom.parentNode.appendChild(document.createElement("div"));n.appendChild(e),n.style.cssText="position: fixed; left: -10000px; top: 10px";let r=getSelection(),a=document.createRange();a.selectNodeContents(e),t.dom.blur(),r.removeAllRanges(),r.addRange(a),setTimeout(()=>{n.parentNode&&n.parentNode.removeChild(n),t.focus()},50)}const tu=ar&&wo<15||Lc&&WO<604;Hs.copy=Us.cut=(t,e)=>{let n=e,r=t.state.selection,a=n.type=="cut";if(r.empty)return;let i=tu?null:n.clipboardData,o=r.content(),{dom:c,text:u}=X0(t,o);i?(n.preventDefault(),i.clearData(),i.setData("text/html",c.innerHTML),i.setData("text/plain",u)):QL(t,c),a&&t.dispatch(t.state.tr.deleteSelection().scrollIntoView().setMeta("uiEvent","cut"))};function YL(t){return t.openStart==0&&t.openEnd==0&&t.content.childCount==1?t.content.firstChild:null}function XL(t,e){if(!t.dom.parentNode)return;let n=t.input.shiftKey||t.state.selection.$from.parent.type.spec.code,r=t.dom.parentNode.appendChild(document.createElement(n?"textarea":"div"));n||(r.contentEditable="true"),r.style.cssText="position: fixed; left: -10000px; top: 10px",r.focus();let a=t.input.shiftKey&&t.input.lastKeyCode!=45;setTimeout(()=>{t.focus(),r.parentNode&&r.parentNode.removeChild(r),n?nu(t,r.value,null,a,e):nu(t,r.textContent,r.innerHTML,a,e)},50)}function nu(t,e,n,r,a){let i=PS(t,e,n,r,t.state.selection.$from);if(t.someProp("handlePaste",u=>u(t,a,i||ze.empty)))return!0;if(!i)return!1;let o=YL(i),c=o?t.state.tr.replaceSelectionWith(o,r):t.state.tr.replaceSelection(i);return t.dispatch(c.scrollIntoView().setMeta("paste",!0).setMeta("uiEvent","paste")),!0}function VS(t){let e=t.getData("text/plain")||t.getData("Text");if(e)return e;let n=t.getData("text/uri-list");return n?n.replace(/\r?\n/g," "):""}Us.paste=(t,e)=>{let n=e;if(t.composing&&!yi)return;let r=tu?null:n.clipboardData,a=t.input.shiftKey&&t.input.lastKeyCode!=45;r&&nu(t,VS(r),r.getData("text/html"),a,n)?n.preventDefault():XL(t,n)};class HS{constructor(e,n,r){this.slice=e,this.move=n,this.node=r}}const ZL=Dr?"altKey":"ctrlKey";function US(t,e){let n=t.someProp("dragCopies",r=>!r(e));return n??!e[ZL]}Hs.dragstart=(t,e)=>{let n=e,r=t.input.mouseDown;if(r&&r.done(),!n.dataTransfer)return;let a=t.state.selection,i=a.empty?null:t.posAtCoords(vp(n)),o;if(!(i&&i.pos>=a.from&&i.pos<=(a instanceof tt?a.to-1:a.to))){if(r&&r.mightDrag)o=tt.create(t.state.doc,r.mightDrag.pos);else if(n.target&&n.target.nodeType==1){let m=t.docView.nearestDesc(n.target,!0);m&&m.node.type.spec.draggable&&m!=t.docView&&(o=tt.create(t.state.doc,m.posBefore))}}let c=(o||t.state.selection).content(),{dom:u,text:h,slice:f}=X0(t,c);(!n.dataTransfer.files.length||!vs||mS>120)&&n.dataTransfer.clearData(),n.dataTransfer.setData(tu?"Text":"text/html",u.innerHTML),n.dataTransfer.effectAllowed="copyMove",tu||n.dataTransfer.setData("text/plain",h),t.dragging=new HS(f,US(t,n),o)};Hs.dragend=t=>{let e=t.dragging;window.setTimeout(()=>{t.dragging==e&&(t.dragging=null)},50)};Us.dragover=Us.dragenter=(t,e)=>e.preventDefault();Us.drop=(t,e)=>{try{e6(t,e,t.dragging)}finally{t.dragging=null}};function e6(t,e,n){if(!e.dataTransfer)return;let r=t.posAtCoords(vp(e));if(!r)return;let a=t.state.doc.resolve(r.pos),i=n&&n.slice;i?t.someProp("transformPasted",y=>{i=y(i,t,!1)}):i=PS(t,VS(e.dataTransfer),tu?null:e.dataTransfer.getData("text/html"),!1,a);let o=!!(n&&US(t,e));if(t.someProp("handleDrop",y=>y(t,e,i||ze.empty,o))){e.preventDefault();return}if(!i)return;e.preventDefault();let c=i?G2(t.state.doc,a.pos,i):a.pos;c==null&&(c=a.pos);let u=t.state.tr;if(o){let{node:y}=n;y?y.replace(u):u.deleteSelection()}let h=u.mapping.map(c),f=i.openStart==0&&i.openEnd==0&&i.content.childCount==1,m=u.doc;if(f?u.replaceRangeWith(h,h,i.content.firstChild):u.replaceRange(h,h,i),u.doc.eq(m))return;let x=u.doc.resolve(h);if(f&&tt.isSelectable(i.content.firstChild)&&x.nodeAfter&&x.nodeAfter.sameMarkup(i.content.firstChild))u.setSelection(new tt(x));else{let y=u.mapping.map(c);u.mapping.maps[u.mapping.maps.length-1].forEach((v,N,w,k)=>y=k),u.setSelection(Y0(t,x,u.doc.resolve(y)))}t.focus(),t.dispatch(u.setMeta("uiEvent","drop"))}Hs.focus=t=>{t.input.lastFocus=Date.now(),t.focused||(t.domObserver.stop(),t.dom.classList.add("ProseMirror-focused"),t.domObserver.start(),t.focused=!0,setTimeout(()=>{t.docView&&t.hasFocus()&&!t.domObserver.currentSelection.eq(t.domSelectionRange())&&Ni(t)},20))};Hs.blur=(t,e)=>{let n=e;t.focused&&(t.domObserver.stop(),t.dom.classList.remove("ProseMirror-focused"),t.domObserver.start(),n.relatedTarget&&t.dom.contains(n.relatedTarget)&&t.domObserver.currentSelection.clear(),t.focused=!1)};Hs.beforeinput=(t,e)=>{if(vs&&yi&&e.inputType=="deleteContentBackward"){t.domObserver.flushSoon();let{domChangeCount:r}=t.input;setTimeout(()=>{if(t.input.domChangeCount!=r||(t.dom.blur(),t.focus(),t.someProp("handleKeyDown",i=>i(t,rl(8,"Backspace")))))return;let{$cursor:a}=t.state.selection;a&&a.pos>0&&t.dispatch(t.state.tr.delete(a.pos-1,a.pos).scrollIntoView())},50)}};for(let t in Us)Hs[t]=Us[t];function su(t,e){if(t==e)return!0;for(let n in t)if(t[n]!==e[n])return!1;for(let n in e)if(!(n in t))return!1;return!0}class yf{constructor(e,n){this.toDOM=e,this.spec=n||pl,this.side=this.spec.side||0}map(e,n,r,a){let{pos:i,deleted:o}=e.mapResult(n.from+a,this.side<0?-1:1);return o?null:new Qn(i-r,i-r,this)}valid(){return!0}eq(e){return this==e||e instanceof yf&&(this.spec.key&&this.spec.key==e.spec.key||this.toDOM==e.toDOM&&su(this.spec,e.spec))}destroy(e){this.spec.destroy&&this.spec.destroy(e)}}class ko{constructor(e,n){this.attrs=e,this.spec=n||pl}map(e,n,r,a){let i=e.map(n.from+a,this.spec.inclusiveStart?-1:1)-r,o=e.map(n.to+a,this.spec.inclusiveEnd?1:-1)-r;return i>=o?null:new Qn(i,o,this)}valid(e,n){return n.from=e&&(!i||i(c.spec))&&r.push(c.copy(c.from+a,c.to+a))}for(let o=0;oe){let c=this.children[o]+1;this.children[o+2].findInner(e-c,n-c,r,a+c,i)}}map(e,n,r){return this==As||e.maps.length==0?this:this.mapInner(e,n,0,0,r||pl)}mapInner(e,n,r,a,i){let o;for(let c=0;c{let h=u+r,f;if(f=KS(n,c,h)){for(a||(a=this.children.slice());ic&&m.to=e){this.children[c]==e&&(r=this.children[c+2]);break}let i=e+1,o=i+n.content.size;for(let c=0;ci&&u.type instanceof ko){let h=Math.max(i,u.from)-i,f=Math.min(o,u.to)-i;ha.map(e,n,pl));return uo.from(r)}forChild(e,n){if(n.isLeaf)return rn.empty;let r=[];for(let a=0;an instanceof rn)?e:e.reduce((n,r)=>n.concat(r instanceof rn?r:r.members),[]))}}forEachSet(e){for(let n=0;n{let w=N-v-(y-x);for(let k=0;kE+f-m)continue;let C=c[k]+f-m;y>=C?c[k+1]=x<=C?-2:-1:x>=f&&w&&(c[k]+=w,c[k+1]+=w)}m+=w}),f=n.maps[h].map(f,-1)}let u=!1;for(let h=0;h=r.content.size){u=!0;continue}let x=n.map(t[h+1]+i,-1),y=x-a,{index:v,offset:N}=r.content.findIndex(m),w=r.maybeChild(v);if(w&&N==m&&N+w.nodeSize==y){let k=c[h+2].mapInner(n,w,f+1,t[h]+i+1,o);k!=As?(c[h]=m,c[h+1]=y,c[h+2]=k):(c[h+1]=-2,u=!0)}else u=!0}if(u){let h=n6(c,t,e,n,a,i,o),f=bf(h,r,0,o);e=f.local;for(let m=0;mn&&o.to{let h=KS(t,c,u+n);if(h){i=!0;let f=bf(h,c,n+u+1,r);f!=As&&a.push(u,u+c.nodeSize,f)}});let o=WS(i?qS(t):t,-n).sort(ml);for(let c=0;c0;)e++;t.splice(e,0,n)}function Dx(t){let e=[];return t.someProp("decorations",n=>{let r=n(t.state);r&&r!=As&&e.push(r)}),t.cursorWrapper&&e.push(rn.create(t.state.doc,[t.cursorWrapper.deco])),uo.from(e)}const s6={childList:!0,characterData:!0,characterDataOldValue:!0,attributes:!0,attributeOldValue:!0,subtree:!0},r6=ar&&wo<=11;class a6{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}set(e){this.anchorNode=e.anchorNode,this.anchorOffset=e.anchorOffset,this.focusNode=e.focusNode,this.focusOffset=e.focusOffset}clear(){this.anchorNode=this.focusNode=null}eq(e){return e.anchorNode==this.anchorNode&&e.anchorOffset==this.anchorOffset&&e.focusNode==this.focusNode&&e.focusOffset==this.focusOffset}}class i6{constructor(e,n){this.view=e,this.handleDOMChange=n,this.queue=[],this.flushingSoon=-1,this.observer=null,this.currentSelection=new a6,this.onCharData=null,this.suppressingSelectionUpdates=!1,this.lastChangedTextNode=null,this.observer=window.MutationObserver&&new window.MutationObserver(r=>{for(let a=0;aa.type=="childList"&&a.removedNodes.length||a.type=="characterData"&&a.oldValue.length>a.target.nodeValue.length)?this.flushSoon():Ps&&e.composing&&r.some(a=>a.type=="childList"&&a.target.nodeName=="TR")?(e.input.badSafariComposition=!0,this.flushSoon()):this.flush()}),r6&&(this.onCharData=r=>{this.queue.push({target:r.target,type:"characterData",oldValue:r.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this)}flushSoon(){this.flushingSoon<0&&(this.flushingSoon=window.setTimeout(()=>{this.flushingSoon=-1,this.flush()},20))}forceFlush(){this.flushingSoon>-1&&(window.clearTimeout(this.flushingSoon),this.flushingSoon=-1,this.flush())}start(){this.observer&&(this.observer.takeRecords(),this.observer.observe(this.view.dom,s6)),this.onCharData&&this.view.dom.addEventListener("DOMCharacterDataModified",this.onCharData),this.connectSelection()}stop(){if(this.observer){let e=this.observer.takeRecords();if(e.length){for(let n=0;nthis.flush(),20)}this.observer.disconnect()}this.onCharData&&this.view.dom.removeEventListener("DOMCharacterDataModified",this.onCharData),this.disconnectSelection()}connectSelection(){this.view.dom.ownerDocument.addEventListener("selectionchange",this.onSelectionChange)}disconnectSelection(){this.view.dom.ownerDocument.removeEventListener("selectionchange",this.onSelectionChange)}suppressSelectionUpdates(){this.suppressingSelectionUpdates=!0,setTimeout(()=>this.suppressingSelectionUpdates=!1,50)}onSelectionChange(){if(SN(this.view)){if(this.suppressingSelectionUpdates)return Ni(this.view);if(ar&&wo<=11&&!this.view.state.selection.empty){let e=this.view.domSelectionRange();if(e.focusNode&&jl(e.focusNode,e.focusOffset,e.anchorNode,e.anchorOffset))return this.flushSoon()}this.flush()}}setCurSelection(){this.currentSelection.set(this.view.domSelectionRange())}ignoreSelectionChange(e){if(!e.focusNode)return!0;let n=new Set,r;for(let i=e.focusNode;i;i=Oc(i))n.add(i);for(let i=e.anchorNode;i;i=Oc(i))if(n.has(i)){r=i;break}let a=r&&this.view.docView.nearestDesc(r);if(a&&a.ignoreMutation({type:"selection",target:r.nodeType==3?r.parentNode:r}))return this.setCurSelection(),!0}pendingRecords(){if(this.observer)for(let e of this.observer.takeRecords())this.queue.push(e);return this.queue}flush(){let{view:e}=this;if(!e.docView||this.flushingSoon>-1)return;let n=this.pendingRecords();n.length&&(this.queue=[]);let r=e.domSelectionRange(),a=!this.suppressingSelectionUpdates&&!this.currentSelection.eq(r)&&SN(e)&&!this.ignoreSelectionChange(r),i=-1,o=-1,c=!1,u=[];if(e.editable)for(let f=0;ff.nodeName=="BR")&&(e.input.lastKeyCode==8||e.input.lastKeyCode==46)){for(let f of u)if(f.nodeName=="BR"&&f.parentNode){let m=f.nextSibling;m&&m.nodeType==1&&m.contentEditable=="false"&&f.parentNode.removeChild(f)}}else if(zr&&u.length){let f=u.filter(m=>m.nodeName=="BR");if(f.length==2){let[m,x]=f;m.parentNode&&m.parentNode.parentNode==x.parentNode?x.remove():m.remove()}else{let{focusNode:m}=this.currentSelection;for(let x of f){let y=x.parentNode;y&&y.nodeName=="LI"&&(!m||c6(e,m)!=y)&&x.remove()}}}let h=null;i<0&&a&&e.input.lastFocus>Date.now()-200&&Math.max(e.input.lastTouch,e.input.lastClick.time)-1||a)&&(i>-1&&(e.docView.markDirty(i,o),o6(e)),e.input.badSafariComposition&&(e.input.badSafariComposition=!1,d6(e,u)),this.handleDOMChange(i,o,c,u),e.docView&&e.docView.dirty?e.updateState(e.state):this.currentSelection.eq(r)||Ni(e),this.currentSelection.set(r))}registerMutation(e,n){if(n.indexOf(e.target)>-1)return null;let r=this.view.docView.nearestDesc(e.target);if(e.type=="attributes"&&(r==this.view.docView||e.attributeName=="contenteditable"||e.attributeName=="style"&&!e.oldValue&&!e.target.getAttribute("style"))||!r||r.ignoreMutation(e))return null;if(e.type=="childList"){for(let f=0;fa;w--){let k=r.childNodes[w-1],E=k.pmViewDesc;if(k.nodeName=="BR"&&!E){i=w;break}if(!E||E.size)break}let m=t.state.doc,x=t.someProp("domParser")||No.fromSchema(t.state.schema),y=m.resolve(o),v=null,N=x.parse(r,{topNode:y.parent,topMatch:y.parent.contentMatchAt(y.index()),topOpen:!0,from:a,to:i,preserveWhitespace:y.parent.type.whitespace=="pre"?"full":!0,findPositions:h,ruleFromNode:h6,context:y});if(h&&h[0].pos!=null){let w=h[0].pos,k=h[1]&&h[1].pos;k==null&&(k=w),v={anchor:w+o,head:k+o}}return{doc:N,sel:v,from:o,to:c}}function h6(t){let e=t.pmViewDesc;if(e)return e.parseRule();if(t.nodeName=="BR"&&t.parentNode){if(Ps&&/^(ul|ol)$/i.test(t.parentNode.nodeName)){let n=document.createElement("div");return n.appendChild(document.createElement("li")),{skip:n}}else if(t.parentNode.lastChild==t||Ps&&/^(tr|table)$/i.test(t.parentNode.nodeName))return{ignore:!0}}else if(t.nodeName=="IMG"&&t.getAttribute("mark-placeholder"))return{ignore:!0};return null}const f6=/^(a|abbr|acronym|b|bd[io]|big|br|button|cite|code|data(list)?|del|dfn|em|i|img|ins|kbd|label|map|mark|meter|output|q|ruby|s|samp|small|span|strong|su[bp]|time|u|tt|var)$/i;function p6(t,e,n,r,a){let i=t.input.compositionPendingChanges||(t.composing?t.input.compositionID:0);if(t.input.compositionPendingChanges=0,e<0){let $=t.input.lastSelectionTime>Date.now()-50?t.input.lastSelectionOrigin:null,V=Q0(t,$);if(V&&!t.state.selection.eq(V)){if(vs&&yi&&t.input.lastKeyCode===13&&Date.now()-100te(t,rl(13,"Enter"))))return;let I=t.state.tr.setSelection(V);$=="pointer"?I.setMeta("pointer",!0):$=="key"&&I.scrollIntoView(),i&&I.setMeta("composition",i),t.dispatch(I)}return}let o=t.state.doc.resolve(e),c=o.sharedDepth(n);e=o.before(c+1),n=t.state.doc.resolve(n).after(c+1);let u=t.state.selection,h=u6(t,e,n),f=t.state.doc,m=f.slice(h.from,h.to),x,y;t.input.lastKeyCode===8&&Date.now()-100Date.now()-225||yi)&&a.some($=>$.nodeType==1&&!f6.test($.nodeName))&&(!v||v.endA>=v.endB)&&t.someProp("handleKeyDown",$=>$(t,rl(13,"Enter")))){t.input.lastIOSEnter=0;return}if(!v)if(r&&u instanceof nt&&!u.empty&&u.$head.sameParent(u.$anchor)&&!t.composing&&!(h.sel&&h.sel.anchor!=h.sel.head))v={start:u.from,endA:u.to,endB:u.to};else{if(h.sel){let $=_N(t,t.state.doc,h.sel);if($&&!$.eq(t.state.selection)){let V=t.state.tr.setSelection($);i&&V.setMeta("composition",i),t.dispatch(V)}}return}t.state.selection.fromt.state.selection.from&&v.start<=t.state.selection.from+2&&t.state.selection.from>=h.from?v.start=t.state.selection.from:v.endA=t.state.selection.to-2&&t.state.selection.to<=h.to&&(v.endB+=t.state.selection.to-v.endA,v.endA=t.state.selection.to)),ar&&wo<=11&&v.endB==v.start+1&&v.endA==v.start&&v.start>h.from&&h.doc.textBetween(v.start-h.from-1,v.start-h.from+1)=="  "&&(v.start--,v.endA--,v.endB--);let N=h.doc.resolveNoCache(v.start-h.from),w=h.doc.resolveNoCache(v.endB-h.from),k=f.resolve(v.start),E=N.sameParent(w)&&N.parent.inlineContent&&k.end()>=v.endA;if((Lc&&t.input.lastIOSEnter>Date.now()-225&&(!E||a.some($=>$.nodeName=="DIV"||$.nodeName=="P"))||!E&&N.pos$(t,rl(13,"Enter")))){t.input.lastIOSEnter=0;return}if(t.state.selection.anchor>v.start&&x6(f,v.start,v.endA,N,w)&&t.someProp("handleKeyDown",$=>$(t,rl(8,"Backspace")))){yi&&vs&&t.domObserver.suppressSelectionUpdates();return}vs&&v.endB==v.start&&(t.input.lastChromeDelete=Date.now()),yi&&!E&&N.start()!=w.start()&&w.parentOffset==0&&N.depth==w.depth&&h.sel&&h.sel.anchor==h.sel.head&&h.sel.head==v.endA&&(v.endB-=2,w=h.doc.resolveNoCache(v.endB-h.from),setTimeout(()=>{t.someProp("handleKeyDown",function($){return $(t,rl(13,"Enter"))})},20));let C=v.start,R=v.endA,O=$=>{let V=$||t.state.tr.replace(C,R,h.doc.slice(v.start-h.from,v.endB-h.from));if(h.sel){let I=_N(t,V.doc,h.sel);I&&!(vs&&t.composing&&I.empty&&(v.start!=v.endB||t.input.lastChromeDeleteNi(t),20));let $=O(t.state.tr.delete(C,R)),V=f.resolve(v.start).marksAcross(f.resolve(v.endA));V&&$.ensureMarks(V),t.dispatch($)}else if(v.endA==v.endB&&(q=m6(N.parent.content.cut(N.parentOffset,w.parentOffset),k.parent.content.cut(k.parentOffset,v.endA-k.start())))){let $=O(t.state.tr);q.type=="add"?$.addMark(C,R,q.mark):$.removeMark(C,R,q.mark),t.dispatch($)}else if(N.parent.child(N.index()).isText&&N.index()==w.index()-(w.textOffset?0:1)){let $=N.parent.textBetween(N.parentOffset,w.parentOffset),V=()=>O(t.state.tr.insertText($,C,R));t.someProp("handleTextInput",I=>I(t,C,R,$,V))||t.dispatch(V())}else t.dispatch(O());else t.dispatch(O())}function _N(t,e,n){return Math.max(n.anchor,n.head)>e.content.size?null:Y0(t,e.resolve(n.anchor),e.resolve(n.head))}function m6(t,e){let n=t.firstChild.marks,r=e.firstChild.marks,a=n,i=r,o,c,u;for(let f=0;ff.mark(c.addToSet(f.marks));else if(a.length==0&&i.length==1)c=i[0],o="remove",u=f=>f.mark(c.removeFromSet(f.marks));else return null;let h=[];for(let f=0;fn||_x(o,!0,!1)0&&(e||t.indexAfter(r)==t.node(r).childCount);)r--,a++,e=!1;if(n){let i=t.node(r).maybeChild(t.indexAfter(r));for(;i&&!i.isLeaf;)i=i.firstChild,a++}return a}function g6(t,e,n,r,a){let i=t.findDiffStart(e,n);if(i==null)return null;let{a:o,b:c}=t.findDiffEnd(e,n+t.size,n+e.size);if(a=="end"){let u=Math.max(0,i-Math.min(o,c));r-=o+u-i}if(o=o?i-r:0;i-=u,i&&i=c?i-r:0;i-=u,i&&i=56320&&e<=57343&&n>=55296&&n<=56319}class GS{constructor(e,n){this._root=null,this.focused=!1,this.trackWrites=null,this.mounted=!1,this.markCursor=null,this.cursorWrapper=null,this.lastSelectedViewDesc=void 0,this.input=new RL,this.prevDirectPlugins=[],this.pluginViews=[],this.requiresGeckoHackNode=!1,this.dragging=null,this._props=n,this.state=n.state,this.directPlugins=n.plugins||[],this.directPlugins.forEach(HN),this.dispatch=this.dispatch.bind(this),this.dom=e&&e.mount||document.createElement("div"),e&&(e.appendChild?e.appendChild(this.dom):typeof e=="function"?e(this.dom):e.mount&&(this.mounted=!0)),this.editable=BN(this),FN(this),this.nodeViews=VN(this),this.docView=bN(this.state.doc,$N(this),Dx(this),this.dom,this),this.domObserver=new i6(this,(r,a,i,o)=>p6(this,r,a,i,o)),this.domObserver.start(),OL(this),this.updatePluginViews()}get composing(){return this.input.composing}get props(){if(this._props.state!=this.state){let e=this._props;this._props={};for(let n in e)this._props[n]=e[n];this._props.state=this.state}return this._props}update(e){e.handleDOMEvents!=this._props.handleDOMEvents&&Fg(this);let n=this._props;this._props=e,e.plugins&&(e.plugins.forEach(HN),this.directPlugins=e.plugins),this.updateStateInner(e.state,n)}setProps(e){let n={};for(let r in this._props)n[r]=this._props[r];n.state=this.state;for(let r in e)n[r]=e[r];this.update(n)}updateState(e){this.updateStateInner(e,this._props)}updateStateInner(e,n){var r;let a=this.state,i=!1,o=!1;e.storedMarks&&this.composing&&(BS(this),o=!0),this.state=e;let c=a.plugins!=e.plugins||this._props.plugins!=n.plugins;if(c||this._props.plugins!=n.plugins||this._props.nodeViews!=n.nodeViews){let y=VN(this);b6(y,this.nodeViews)&&(this.nodeViews=y,i=!0)}(c||n.handleDOMEvents!=this._props.handleDOMEvents)&&Fg(this),this.editable=BN(this),FN(this);let u=Dx(this),h=$N(this),f=a.plugins!=e.plugins&&!a.doc.eq(e.doc)?"reset":e.scrollToSelection>a.scrollToSelection?"to selection":"preserve",m=i||!this.docView.matchesNode(e.doc,h,u);(m||!e.selection.eq(a.selection))&&(o=!0);let x=f=="preserve"&&o&&this.dom.style.overflowAnchor==null&&GO(this);if(o){this.domObserver.stop();let y=m&&(ar||vs)&&!this.composing&&!a.selection.empty&&!e.selection.empty&&y6(a.selection,e.selection);if(m){let v=vs?this.trackWrites=this.domSelectionRange().focusNode:null;this.composing&&(this.input.compositionNode=GL(this)),(i||!this.docView.update(e.doc,h,u,this))&&(this.docView.updateOuterDeco(h),this.docView.destroy(),this.docView=bN(e.doc,h,u,this.dom,this)),v&&(!this.trackWrites||!this.dom.contains(this.trackWrites))&&(y=!0)}y||!(this.input.mouseDown&&this.domObserver.currentSelection.eq(this.domSelectionRange())&&yL(this))?Ni(this,y):(MS(this,e.selection),this.domObserver.setCurSelection()),this.domObserver.start()}this.updatePluginViews(a),!((r=this.dragging)===null||r===void 0)&&r.node&&!a.doc.eq(e.doc)&&this.updateDraggedNode(this.dragging,a),f=="reset"?this.dom.scrollTop=0:f=="to selection"?this.scrollToSelection():x&&JO(x)}scrollToSelection(){let e=this.domSelectionRange().focusNode;if(!(!e||!this.dom.contains(e.nodeType==1?e:e.parentNode))){if(!this.someProp("handleScrollToSelection",n=>n(this)))if(this.state.selection instanceof tt){let n=this.docView.domAfterPos(this.state.selection.from);n.nodeType==1&&fN(this,n.getBoundingClientRect(),e)}else fN(this,this.coordsAtPos(this.state.selection.head,1),e)}}destroyPluginViews(){let e;for(;e=this.pluginViews.pop();)e.destroy&&e.destroy()}updatePluginViews(e){if(!e||e.plugins!=this.state.plugins||this.directPlugins!=this.prevDirectPlugins){this.prevDirectPlugins=this.directPlugins,this.destroyPluginViews();for(let n=0;n0&&this.state.doc.nodeAt(i))==r.node&&(a=i)}this.dragging=new HS(e.slice,e.move,a<0?void 0:tt.create(this.state.doc,a))}someProp(e,n){let r=this._props&&this._props[e],a;if(r!=null&&(a=n?n(r):r))return a;for(let o=0;on.ownerDocument.getSelection()),this._root=n}return e||document}updateRoot(){this._root=null}posAtCoords(e){return tL(this,e)}coordsAtPos(e,n=1){return NS(this,e,n)}domAtPos(e,n=0){return this.docView.domFromPos(e,n)}nodeDOM(e){let n=this.docView.descAt(e);return n?n.nodeDOM:null}posAtDOM(e,n,r=-1){let a=this.docView.posFromDOM(e,n,r);if(a==null)throw new RangeError("DOM position not inside the editor");return a}endOfTextblock(e,n){return iL(this,n||this.state,e)}pasteHTML(e,n){return nu(this,"",e,!1,n||new ClipboardEvent("paste"))}pasteText(e,n){return nu(this,e,null,!0,n||new ClipboardEvent("paste"))}serializeForClipboard(e){return X0(this,e)}destroy(){this.docView&&(LL(this),this.destroyPluginViews(),this.mounted?(this.docView.update(this.state.doc,[],Dx(this),this),this.dom.textContent=""):this.dom.parentNode&&this.dom.parentNode.removeChild(this.dom),this.docView.destroy(),this.docView=null,zO())}get isDestroyed(){return this.docView==null}dispatchEvent(e){return _L(this,e)}domSelectionRange(){let e=this.domSelection();return e?Ps&&this.root.nodeType===11&&HO(this.dom.ownerDocument)==this.dom&&l6(this,e)||e:{focusNode:null,focusOffset:0,anchorNode:null,anchorOffset:0}}domSelection(){return this.root.getSelection()}}GS.prototype.dispatch=function(t){let e=this._props.dispatchTransaction;e?e.call(this,t):this.updateState(this.state.apply(t))};function $N(t){let e=Object.create(null);return e.class="ProseMirror",e.contenteditable=String(t.editable),t.someProp("attributes",n=>{if(typeof n=="function"&&(n=n(t.state)),n)for(let r in n)r=="class"?e.class+=" "+n[r]:r=="style"?e.style=(e.style?e.style+";":"")+n[r]:!e[r]&&r!="contenteditable"&&r!="nodeName"&&(e[r]=String(n[r]))}),e.translate||(e.translate="no"),[Qn.node(0,t.state.doc.content.size,e)]}function FN(t){if(t.markCursor){let e=document.createElement("img");e.className="ProseMirror-separator",e.setAttribute("mark-placeholder","true"),e.setAttribute("alt",""),t.cursorWrapper={dom:e,deco:Qn.widget(t.state.selection.from,e,{raw:!0,marks:t.markCursor})}}else t.cursorWrapper=null}function BN(t){return!t.someProp("editable",e=>e(t.state)===!1)}function y6(t,e){let n=Math.min(t.$anchor.sharedDepth(t.head),e.$anchor.sharedDepth(e.head));return t.$anchor.start(n)!=e.$anchor.start(n)}function VN(t){let e=Object.create(null);function n(r){for(let a in r)Object.prototype.hasOwnProperty.call(e,a)||(e[a]=r[a])}return t.someProp("nodeViews",n),t.someProp("markViews",n),e}function b6(t,e){let n=0,r=0;for(let a in t){if(t[a]!=e[a])return!0;n++}for(let a in e)r++;return n!=r}function HN(t){if(t.spec.state||t.spec.filterTransaction||t.spec.appendTransaction)throw new RangeError("Plugins passed directly to the view must not have a state component")}var Eo={8:"Backspace",9:"Tab",10:"Enter",12:"NumLock",13:"Enter",16:"Shift",17:"Control",18:"Alt",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",44:"PrintScreen",45:"Insert",46:"Delete",59:";",61:"=",91:"Meta",92:"Meta",106:"*",107:"+",108:",",109:"-",110:".",111:"/",144:"NumLock",145:"ScrollLock",160:"Shift",161:"Shift",162:"Control",163:"Control",164:"Alt",165:"Alt",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},vf={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},v6=typeof navigator<"u"&&/Mac/.test(navigator.platform),N6=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);for(var xs=0;xs<10;xs++)Eo[48+xs]=Eo[96+xs]=String(xs);for(var xs=1;xs<=24;xs++)Eo[xs+111]="F"+xs;for(var xs=65;xs<=90;xs++)Eo[xs]=String.fromCharCode(xs+32),vf[xs]=String.fromCharCode(xs);for(var zx in Eo)vf.hasOwnProperty(zx)||(vf[zx]=Eo[zx]);function w6(t){var e=v6&&t.metaKey&&t.shiftKey&&!t.ctrlKey&&!t.altKey||N6&&t.shiftKey&&t.key&&t.key.length==1||t.key=="Unidentified",n=!e&&t.key||(t.shiftKey?vf:Eo)[t.keyCode]||t.key||"Unidentified";return n=="Esc"&&(n="Escape"),n=="Del"&&(n="Delete"),n=="Left"&&(n="ArrowLeft"),n=="Up"&&(n="ArrowUp"),n=="Right"&&(n="ArrowRight"),n=="Down"&&(n="ArrowDown"),n}const j6=typeof navigator<"u"&&/Mac|iP(hone|[oa]d)/.test(navigator.platform),k6=typeof navigator<"u"&&/Win/.test(navigator.platform);function S6(t){let e=t.split(/-(?!$)/),n=e[e.length-1];n=="Space"&&(n=" ");let r,a,i,o;for(let c=0;c{for(var n in e)E6(t,n,{get:e[n],enumerable:!0})};function Np(t){const{state:e,transaction:n}=t;let{selection:r}=n,{doc:a}=n,{storedMarks:i}=n;return{...e,apply:e.apply.bind(e),applyTransaction:e.applyTransaction.bind(e),plugins:e.plugins,schema:e.schema,reconfigure:e.reconfigure.bind(e),toJSON:e.toJSON.bind(e),get storedMarks(){return i},get selection(){return r},get doc(){return a},get tr(){return r=n.selection,a=n.doc,i=n.storedMarks,n}}}var wp=class{constructor(t){this.editor=t.editor,this.rawCommands=this.editor.extensionManager.commands,this.customState=t.state}get hasCustomState(){return!!this.customState}get state(){return this.customState||this.editor.state}get commands(){const{rawCommands:t,editor:e,state:n}=this,{view:r}=e,{tr:a}=n,i=this.buildProps(a);return Object.fromEntries(Object.entries(t).map(([o,c])=>[o,(...h)=>{const f=c(...h)(i);return!a.getMeta("preventDispatch")&&!this.hasCustomState&&r.dispatch(a),f}]))}get chain(){return()=>this.createChain()}get can(){return()=>this.createCan()}createChain(t,e=!0){const{rawCommands:n,editor:r,state:a}=this,{view:i}=r,o=[],c=!!t,u=t||a.tr,h=()=>(!c&&e&&!u.getMeta("preventDispatch")&&!this.hasCustomState&&i.dispatch(u),o.every(m=>m===!0)),f={...Object.fromEntries(Object.entries(n).map(([m,x])=>[m,(...v)=>{const N=this.buildProps(u,e),w=x(...v)(N);return o.push(w),f}])),run:h};return f}createCan(t){const{rawCommands:e,state:n}=this,r=!1,a=t||n.tr,i=this.buildProps(a,r);return{...Object.fromEntries(Object.entries(e).map(([c,u])=>[c,(...h)=>u(...h)({...i,dispatch:void 0})])),chain:()=>this.createChain(a,r)}}buildProps(t,e=!0){const{rawCommands:n,editor:r,state:a}=this,{view:i}=r,o={tr:t,editor:r,view:i,state:Np({state:a,transaction:t}),dispatch:e?()=>{}:void 0,chain:()=>this.createChain(t,e),can:()=>this.createCan(t),get commands(){return Object.fromEntries(Object.entries(n).map(([c,u])=>[c,(...h)=>u(...h)(o)]))}};return o}},JS={};ay(JS,{blur:()=>M6,clearContent:()=>A6,clearNodes:()=>I6,command:()=>P6,createParagraphNear:()=>R6,cut:()=>O6,deleteCurrentNode:()=>L6,deleteNode:()=>D6,deleteRange:()=>_6,deleteSelection:()=>z6,enter:()=>$6,exitCode:()=>F6,extendMarkRange:()=>B6,first:()=>V6,focus:()=>U6,forEach:()=>W6,insertContent:()=>K6,insertContentAt:()=>J6,joinBackward:()=>X6,joinDown:()=>Y6,joinForward:()=>Z6,joinItemBackward:()=>eD,joinItemForward:()=>tD,joinTextblockBackward:()=>nD,joinTextblockForward:()=>sD,joinUp:()=>Q6,keyboardShortcut:()=>aD,lift:()=>iD,liftEmptyBlock:()=>oD,liftListItem:()=>lD,newlineInCode:()=>cD,resetAttributes:()=>dD,scrollIntoView:()=>uD,selectAll:()=>hD,selectNodeBackward:()=>fD,selectNodeForward:()=>pD,selectParentNode:()=>mD,selectTextblockEnd:()=>xD,selectTextblockStart:()=>gD,setContent:()=>yD,setMark:()=>zD,setMeta:()=>$D,setNode:()=>FD,setNodeSelection:()=>BD,setTextDirection:()=>VD,setTextSelection:()=>HD,sinkListItem:()=>UD,splitBlock:()=>WD,splitListItem:()=>KD,toggleList:()=>qD,toggleMark:()=>GD,toggleNode:()=>JD,toggleWrap:()=>QD,undoInputRule:()=>YD,unsetAllMarks:()=>XD,unsetMark:()=>ZD,unsetTextDirection:()=>e_,updateAttributes:()=>t_,wrapIn:()=>n_,wrapInList:()=>s_});var M6=()=>({editor:t,view:e})=>(requestAnimationFrame(()=>{var n;t.isDestroyed||(e.dom.blur(),(n=window==null?void 0:window.getSelection())==null||n.removeAllRanges())}),!0),A6=(t=!0)=>({commands:e})=>e.setContent("",{emitUpdate:t}),I6=()=>({state:t,tr:e,dispatch:n})=>{const{selection:r}=e,{ranges:a}=r;return n&&a.forEach(({$from:i,$to:o})=>{t.doc.nodesBetween(i.pos,o.pos,(c,u)=>{if(c.type.isText)return;const{doc:h,mapping:f}=e,m=h.resolve(f.map(u)),x=h.resolve(f.map(u+c.nodeSize)),y=m.blockRange(x);if(!y)return;const v=Wc(y);if(c.type.isTextblock){const{defaultType:N}=m.parent.contentMatchAt(m.index());e.setNodeMarkup(y.start,N)}(v||v===0)&&e.lift(y,v)})}),!0},P6=t=>e=>t(e),R6=()=>({state:t,dispatch:e})=>dS(t,e),O6=(t,e)=>({editor:n,tr:r})=>{const{state:a}=n,i=a.doc.slice(t.from,t.to);r.deleteRange(t.from,t.to);const o=r.mapping.map(e);return r.insert(o,i.content),r.setSelection(new nt(r.doc.resolve(Math.max(o-1,0)))),!0},L6=()=>({tr:t,dispatch:e})=>{const{selection:n}=t,r=n.$anchor.node();if(r.content.size>0)return!1;const a=t.selection.$anchor;for(let i=a.depth;i>0;i-=1)if(a.node(i).type===r.type){if(e){const c=a.before(i),u=a.after(i);t.delete(c,u).scrollIntoView()}return!0}return!1};function Un(t,e){if(typeof t=="string"){if(!e.nodes[t])throw Error(`There is no node type named '${t}'. Maybe you forgot to add the extension?`);return e.nodes[t]}return t}var D6=t=>({tr:e,state:n,dispatch:r})=>{const a=Un(t,n.schema),i=e.selection.$anchor;for(let o=i.depth;o>0;o-=1)if(i.node(o).type===a){if(r){const u=i.before(o),h=i.after(o);e.delete(u,h).scrollIntoView()}return!0}return!1},_6=t=>({tr:e,dispatch:n})=>{const{from:r,to:a}=t;return n&&e.delete(r,a),!0},z6=()=>({state:t,dispatch:e})=>U0(t,e),$6=()=>({commands:t})=>t.keyboardShortcut("Enter"),F6=()=>({state:t,dispatch:e})=>jO(t,e);function iy(t){return Object.prototype.toString.call(t)==="[object RegExp]"}function Nf(t,e,n={strict:!0}){const r=Object.keys(e);return r.length?r.every(a=>n.strict?e[a]===t[a]:iy(e[a])?e[a].test(t[a]):e[a]===t[a]):!0}function QS(t,e,n={}){return t.find(r=>r.type===e&&Nf(Object.fromEntries(Object.keys(n).map(a=>[a,r.attrs[a]])),n))}function UN(t,e,n={}){return!!QS(t,e,n)}function oy(t,e,n){var r;if(!t||!e)return;let a=t.parent.childAfter(t.parentOffset);if((!a.node||!a.node.marks.some(f=>f.type===e))&&(a=t.parent.childBefore(t.parentOffset)),!a.node||!a.node.marks.some(f=>f.type===e)||(n=n||((r=a.node.marks[0])==null?void 0:r.attrs),!QS([...a.node.marks],e,n)))return;let o=a.index,c=t.start()+a.offset,u=o+1,h=c+a.node.nodeSize;for(;o>0&&UN([...t.parent.child(o-1).marks],e,n);)o-=1,c-=t.parent.child(o).nodeSize;for(;u({tr:n,state:r,dispatch:a})=>{const i=Ti(t,r.schema),{doc:o,selection:c}=n,{$from:u,from:h,to:f}=c;if(a){const m=oy(u,i,e);if(m&&m.from<=h&&m.to>=f){const x=nt.create(o,m.from,m.to);n.setSelection(x)}}return!0},V6=t=>e=>{const n=typeof t=="function"?t(e):t;for(let r=0;r({editor:n,view:r,tr:a,dispatch:i})=>{e={scrollIntoView:!0,...e};const o=()=>{(wf()||WN())&&r.dom.focus(),H6()&&!wf()&&!WN()&&r.dom.focus({preventScroll:!0}),requestAnimationFrame(()=>{n.isDestroyed||(r.focus(),e!=null&&e.scrollIntoView&&n.commands.scrollIntoView())})};try{if(r.hasFocus()&&t===null||t===!1)return!0}catch{return!1}if(i&&t===null&&!YS(n.state.selection))return o(),!0;const c=XS(a.doc,t)||n.state.selection,u=n.state.selection.eq(c);return i&&(u||a.setSelection(c),u&&a.storedMarks&&a.setStoredMarks(a.storedMarks),o()),!0},W6=(t,e)=>n=>t.every((r,a)=>e(r,{...n,index:a})),K6=(t,e)=>({tr:n,commands:r})=>r.insertContentAt({from:n.selection.from,to:n.selection.to},t,e),ZS=t=>{const e=t.childNodes;for(let n=e.length-1;n>=0;n-=1){const r=e[n];r.nodeType===3&&r.nodeValue&&/^(\n\s\s|\n)$/.test(r.nodeValue)?t.removeChild(r):r.nodeType===1&&ZS(r)}return t};function Eh(t){if(typeof window>"u")throw new Error("[tiptap error]: there is no window object available, so this function cannot be used");const e=`${t}`,n=new window.DOMParser().parseFromString(e,"text/html").body;return ZS(n)}function ru(t,e,n){if(t instanceof bi||t instanceof Ne)return t;n={slice:!0,parseOptions:{},...n};const r=typeof t=="object"&&t!==null,a=typeof t=="string";if(r)try{if(Array.isArray(t)&&t.length>0)return Ne.fromArray(t.map(c=>e.nodeFromJSON(c)));const o=e.nodeFromJSON(t);return n.errorOnInvalidContent&&o.check(),o}catch(i){if(n.errorOnInvalidContent)throw new Error("[tiptap error]: Invalid JSON content",{cause:i});return console.warn("[tiptap warn]: Invalid content.","Passed value:",t,"Error:",i),ru("",e,n)}if(a){if(n.errorOnInvalidContent){let o=!1,c="";const u=new _2({topNode:e.spec.topNode,marks:e.spec.marks,nodes:e.spec.nodes.append({__tiptap__private__unknown__catch__all__node:{content:"inline*",group:"block",parseDOM:[{tag:"*",getAttrs:h=>(o=!0,c=typeof h=="string"?h:h.outerHTML,null)}]}})});if(n.slice?No.fromSchema(u).parseSlice(Eh(t),n.parseOptions):No.fromSchema(u).parse(Eh(t),n.parseOptions),n.errorOnInvalidContent&&o)throw new Error("[tiptap error]: Invalid HTML content",{cause:new Error(`Invalid element found: ${c}`)})}const i=No.fromSchema(e);return n.slice?i.parseSlice(Eh(t),n.parseOptions).content:i.parse(Eh(t),n.parseOptions)}return ru("",e,n)}function q6(t,e,n){const r=t.steps.length-1;if(r{o===0&&(o=f)}),t.setSelection(lt.near(t.doc.resolve(o),n))}var G6=t=>!("type"in t),J6=(t,e,n)=>({tr:r,dispatch:a,editor:i})=>{var o;if(a){n={parseOptions:i.options.parseOptions,updateSelection:!0,applyInputRules:!1,applyPasteRules:!1,...n};let c;const u=w=>{i.emit("contentError",{editor:i,error:w,disableCollaboration:()=>{"collaboration"in i.storage&&typeof i.storage.collaboration=="object"&&i.storage.collaboration&&(i.storage.collaboration.isDisabled=!0)}})},h={preserveWhitespace:"full",...n.parseOptions};if(!n.errorOnInvalidContent&&!i.options.enableContentCheck&&i.options.emitContentError)try{ru(e,i.schema,{parseOptions:h,errorOnInvalidContent:!0})}catch(w){u(w)}try{c=ru(e,i.schema,{parseOptions:h,errorOnInvalidContent:(o=n.errorOnInvalidContent)!=null?o:i.options.enableContentCheck})}catch(w){return u(w),!1}let{from:f,to:m}=typeof t=="number"?{from:t,to:t}:{from:t.from,to:t.to},x=!0,y=!0;if((G6(c)?c:[c]).forEach(w=>{w.check(),x=x?w.isText&&w.marks.length===0:!1,y=y?w.isBlock:!1}),f===m&&y){const{parent:w}=r.doc.resolve(f);w.isTextblock&&!w.type.spec.code&&!w.childCount&&(f-=1,m+=1)}let N;if(x){if(Array.isArray(e))N=e.map(w=>w.text||"").join("");else if(e instanceof Ne){let w="";e.forEach(k=>{k.text&&(w+=k.text)}),N=w}else typeof e=="object"&&e&&e.text?N=e.text:N=e;r.insertText(N,f,m)}else{N=c;const w=r.doc.resolve(f),k=w.node(),E=w.parentOffset===0,C=k.isText||k.isTextblock,R=k.content.size>0;E&&C&&R&&(f=Math.max(0,f-1)),r.replaceWith(f,m,N)}n.updateSelection&&q6(r,r.steps.length-1,-1),n.applyInputRules&&r.setMeta("applyInputRules",{from:f,text:N}),n.applyPasteRules&&r.setMeta("applyPasteRules",{from:f,text:N})}return!0},Q6=()=>({state:t,dispatch:e})=>vO(t,e),Y6=()=>({state:t,dispatch:e})=>NO(t,e),X6=()=>({state:t,dispatch:e})=>sS(t,e),Z6=()=>({state:t,dispatch:e})=>oS(t,e),eD=()=>({state:t,dispatch:e,tr:n})=>{try{const r=mp(t.doc,t.selection.$from.pos,-1);return r==null?!1:(n.join(r,2),e&&e(n),!0)}catch{return!1}},tD=()=>({state:t,dispatch:e,tr:n})=>{try{const r=mp(t.doc,t.selection.$from.pos,1);return r==null?!1:(n.join(r,2),e&&e(n),!0)}catch{return!1}},nD=()=>({state:t,dispatch:e})=>yO(t,e),sD=()=>({state:t,dispatch:e})=>bO(t,e);function eC(){return typeof navigator<"u"?/Mac/.test(navigator.platform):!1}function rD(t){const e=t.split(/-(?!$)/);let n=e[e.length-1];n==="Space"&&(n=" ");let r,a,i,o;for(let c=0;c({editor:e,view:n,tr:r,dispatch:a})=>{const i=rD(t).split(/-(?!$)/),o=i.find(h=>!["Alt","Ctrl","Meta","Shift"].includes(h)),c=new KeyboardEvent("keydown",{key:o==="Space"?" ":o,altKey:i.includes("Alt"),ctrlKey:i.includes("Ctrl"),metaKey:i.includes("Meta"),shiftKey:i.includes("Shift"),bubbles:!0,cancelable:!0}),u=e.captureTransaction(()=>{n.someProp("handleKeyDown",h=>h(n,c))});return u==null||u.steps.forEach(h=>{const f=h.map(r.mapping);f&&a&&r.maybeStep(f)}),!0};function Mo(t,e,n={}){const{from:r,to:a,empty:i}=t.selection,o=e?Un(e,t.schema):null,c=[];t.doc.nodesBetween(r,a,(m,x)=>{if(m.isText)return;const y=Math.max(r,x),v=Math.min(a,x+m.nodeSize);c.push({node:m,from:y,to:v})});const u=a-r,h=c.filter(m=>o?o.name===m.node.type.name:!0).filter(m=>Nf(m.node.attrs,n,{strict:!1}));return i?!!h.length:h.reduce((m,x)=>m+x.to-x.from,0)>=u}var iD=(t,e={})=>({state:n,dispatch:r})=>{const a=Un(t,n.schema);return Mo(n,a,e)?wO(n,r):!1},oD=()=>({state:t,dispatch:e})=>uS(t,e),lD=t=>({state:e,dispatch:n})=>{const r=Un(t,e.schema);return OO(r)(e,n)},cD=()=>({state:t,dispatch:e})=>cS(t,e);function jp(t,e){return e.nodes[t]?"node":e.marks[t]?"mark":null}function KN(t,e){const n=typeof e=="string"?[e]:e;return Object.keys(t).reduce((r,a)=>(n.includes(a)||(r[a]=t[a]),r),{})}var dD=(t,e)=>({tr:n,state:r,dispatch:a})=>{let i=null,o=null;const c=jp(typeof t=="string"?t:t.name,r.schema);if(!c)return!1;c==="node"&&(i=Un(t,r.schema)),c==="mark"&&(o=Ti(t,r.schema));let u=!1;return n.selection.ranges.forEach(h=>{r.doc.nodesBetween(h.$from.pos,h.$to.pos,(f,m)=>{i&&i===f.type&&(u=!0,a&&n.setNodeMarkup(m,void 0,KN(f.attrs,e))),o&&f.marks.length&&f.marks.forEach(x=>{o===x.type&&(u=!0,a&&n.addMark(m,m+f.nodeSize,o.create(KN(x.attrs,e))))})})}),u},uD=()=>({tr:t,dispatch:e})=>(e&&t.scrollIntoView(),!0),hD=()=>({tr:t,dispatch:e})=>{if(e){const n=new xr(t.doc);t.setSelection(n)}return!0},fD=()=>({state:t,dispatch:e})=>aS(t,e),pD=()=>({state:t,dispatch:e})=>lS(t,e),mD=()=>({state:t,dispatch:e})=>CO(t,e),xD=()=>({state:t,dispatch:e})=>MO(t,e),gD=()=>({state:t,dispatch:e})=>EO(t,e);function Bg(t,e,n={},r={}){return ru(t,e,{slice:!1,parseOptions:n,errorOnInvalidContent:r.errorOnInvalidContent})}var yD=(t,{errorOnInvalidContent:e,emitUpdate:n=!0,parseOptions:r={}}={})=>({editor:a,tr:i,dispatch:o,commands:c})=>{const{doc:u}=i;if(r.preserveWhitespace!=="full"){const h=Bg(t,a.schema,r,{errorOnInvalidContent:e??a.options.enableContentCheck});return o&&i.replaceWith(0,u.content.size,h).setMeta("preventUpdate",!n),!0}return o&&i.setMeta("preventUpdate",!n),c.insertContentAt({from:0,to:u.content.size},t,{parseOptions:r,errorOnInvalidContent:e??a.options.enableContentCheck})};function tC(t,e){const n=Ti(e,t.schema),{from:r,to:a,empty:i}=t.selection,o=[];i?(t.storedMarks&&o.push(...t.storedMarks),o.push(...t.selection.$head.marks())):t.doc.nodesBetween(r,a,u=>{o.push(...u.marks)});const c=o.find(u=>u.type.name===n.name);return c?{...c.attrs}:{}}function nC(t,e){const n=new V0(t);return e.forEach(r=>{r.steps.forEach(a=>{n.step(a)})}),n}function bD(t){for(let e=0;e{n(a)&&r.push({node:a,pos:i})}),r}function sC(t,e){for(let n=t.depth;n>0;n-=1){const r=t.node(n);if(e(r))return{pos:n>0?t.before(n):0,start:t.start(n),depth:n,node:r}}}function kp(t){return e=>sC(e.$from,t)}function Xe(t,e,n){return t.config[e]===void 0&&t.parent?Xe(t.parent,e,n):typeof t.config[e]=="function"?t.config[e].bind({...n,parent:t.parent?Xe(t.parent,e,n):null}):t.config[e]}function ly(t){return t.map(e=>{const n={name:e.name,options:e.options,storage:e.storage},r=Xe(e,"addExtensions",n);return r?[e,...ly(r())]:e}).flat(10)}function cy(t,e){const n=Il.fromSchema(e).serializeFragment(t),a=document.implementation.createHTMLDocument().createElement("div");return a.appendChild(n),a.innerHTML}function rC(t){return typeof t=="function"}function qt(t,e=void 0,...n){return rC(t)?e?t.bind(e)(...n):t(...n):t}function ND(t={}){return Object.keys(t).length===0&&t.constructor===Object}function Dc(t){const e=t.filter(a=>a.type==="extension"),n=t.filter(a=>a.type==="node"),r=t.filter(a=>a.type==="mark");return{baseExtensions:e,nodeExtensions:n,markExtensions:r}}function aC(t){const e=[],{nodeExtensions:n,markExtensions:r}=Dc(t),a=[...n,...r],i={default:null,validate:void 0,rendered:!0,renderHTML:null,parseHTML:null,keepOnSplit:!0,isRequired:!1},o=n.filter(h=>h.name!=="text").map(h=>h.name),c=r.map(h=>h.name),u=[...o,...c];return t.forEach(h=>{const f={name:h.name,options:h.options,storage:h.storage,extensions:a},m=Xe(h,"addGlobalAttributes",f);if(!m)return;m().forEach(y=>{let v;Array.isArray(y.types)?v=y.types:y.types==="*"?v=u:y.types==="nodes"?v=o:y.types==="marks"?v=c:v=[],v.forEach(N=>{Object.entries(y.attributes).forEach(([w,k])=>{e.push({type:N,name:w,attribute:{...i,...k}})})})})}),a.forEach(h=>{const f={name:h.name,options:h.options,storage:h.storage},m=Xe(h,"addAttributes",f);if(!m)return;const x=m();Object.entries(x).forEach(([y,v])=>{const N={...i,...v};typeof(N==null?void 0:N.default)=="function"&&(N.default=N.default()),N!=null&&N.isRequired&&(N==null?void 0:N.default)===void 0&&delete N.default,e.push({type:h.name,name:y,attribute:N})})}),e}function wD(t){const e=[];let n="",r=!1,a=!1,i=0;const o=t.length;for(let c=0;c0){i-=1,n+=u;continue}if(u===";"&&i===0){e.push(n),n="";continue}}n+=u}return n&&e.push(n),e}function qN(t){const e=[],n=wD(t||""),r=n.length;for(let a=0;a!!e).reduce((e,n)=>{const r={...e};return Object.entries(n).forEach(([a,i])=>{if(!r[a]){r[a]=i;return}if(a==="class"){const c=i?String(i).split(" "):[],u=r[a]?r[a].split(" "):[],h=c.filter(f=>!u.includes(f));r[a]=[...u,...h].join(" ")}else if(a==="style"){const c=new Map([...qN(r[a]),...qN(i)]);r[a]=Array.from(c.entries()).map(([u,h])=>`${u}: ${h}`).join("; ")}else r[a]=i}),r},{})}function au(t,e){return e.filter(n=>n.type===t.type.name).filter(n=>n.attribute.rendered).map(n=>n.attribute.renderHTML?n.attribute.renderHTML(t.attrs)||{}:{[n.name]:t.attrs[n.name]}).reduce((n,r)=>Gt(n,r),{})}function jD(t){return typeof t!="string"?t:t.match(/^[+-]?(?:\d*\.)?\d+$/)?Number(t):t==="true"?!0:t==="false"?!1:t}function GN(t,e){return"style"in t?t:{...t,getAttrs:n=>{const r=t.getAttrs?t.getAttrs(n):t.attrs;if(r===!1)return!1;const a=e.reduce((i,o)=>{const c=o.attribute.parseHTML?o.attribute.parseHTML(n):jD(n.getAttribute(o.name));return c==null?i:{...i,[o.name]:c}},{});return{...r,...a}}}}function JN(t){return Object.fromEntries(Object.entries(t).filter(([e,n])=>e==="attrs"&&ND(n)?!1:n!=null))}function QN(t){var e,n;const r={};return!((e=t==null?void 0:t.attribute)!=null&&e.isRequired)&&"default"in((t==null?void 0:t.attribute)||{})&&(r.default=t.attribute.default),((n=t==null?void 0:t.attribute)==null?void 0:n.validate)!==void 0&&(r.validate=t.attribute.validate),[t.name,r]}function kD(t,e){var n;const r=aC(t),{nodeExtensions:a,markExtensions:i}=Dc(t),o=(n=a.find(h=>Xe(h,"topNode")))==null?void 0:n.name,c=Object.fromEntries(a.map(h=>{const f=r.filter(k=>k.type===h.name),m={name:h.name,options:h.options,storage:h.storage,editor:e},x=t.reduce((k,E)=>{const C=Xe(E,"extendNodeSchema",m);return{...k,...C?C(h):{}}},{}),y=JN({...x,content:qt(Xe(h,"content",m)),marks:qt(Xe(h,"marks",m)),group:qt(Xe(h,"group",m)),inline:qt(Xe(h,"inline",m)),atom:qt(Xe(h,"atom",m)),selectable:qt(Xe(h,"selectable",m)),draggable:qt(Xe(h,"draggable",m)),code:qt(Xe(h,"code",m)),whitespace:qt(Xe(h,"whitespace",m)),linebreakReplacement:qt(Xe(h,"linebreakReplacement",m)),defining:qt(Xe(h,"defining",m)),isolating:qt(Xe(h,"isolating",m)),attrs:Object.fromEntries(f.map(QN))}),v=qt(Xe(h,"parseHTML",m));v&&(y.parseDOM=v.map(k=>GN(k,f)));const N=Xe(h,"renderHTML",m);N&&(y.toDOM=k=>N({node:k,HTMLAttributes:au(k,f)}));const w=Xe(h,"renderText",m);return w&&(y.toText=w),[h.name,y]})),u=Object.fromEntries(i.map(h=>{const f=r.filter(w=>w.type===h.name),m={name:h.name,options:h.options,storage:h.storage,editor:e},x=t.reduce((w,k)=>{const E=Xe(k,"extendMarkSchema",m);return{...w,...E?E(h):{}}},{}),y=JN({...x,inclusive:qt(Xe(h,"inclusive",m)),excludes:qt(Xe(h,"excludes",m)),group:qt(Xe(h,"group",m)),spanning:qt(Xe(h,"spanning",m)),code:qt(Xe(h,"code",m)),attrs:Object.fromEntries(f.map(QN))}),v=qt(Xe(h,"parseHTML",m));v&&(y.parseDOM=v.map(w=>GN(w,f)));const N=Xe(h,"renderHTML",m);return N&&(y.toDOM=w=>N({mark:w,HTMLAttributes:au(w,f)})),[h.name,y]}));return new _2({topNode:o,nodes:c,marks:u})}function SD(t){const e=t.filter((n,r)=>t.indexOf(n)!==r);return Array.from(new Set(e))}function Bd(t){return t.sort((n,r)=>{const a=Xe(n,"priority")||100,i=Xe(r,"priority")||100;return a>i?-1:ar.name));return n.length&&console.warn(`[tiptap warn]: Duplicate extension names found: [${n.map(r=>`'${r}'`).join(", ")}]. This can lead to issues.`),e}function oC(t,e,n){const{from:r,to:a}=e,{blockSeparator:i=` + +`,textSerializers:o={}}=n||{};let c="";return t.nodesBetween(r,a,(u,h,f,m)=>{var x;u.isBlock&&h>r&&(c+=i);const y=o==null?void 0:o[u.type.name];if(y)return f&&(c+=y({node:u,pos:h,parent:f,index:m,range:e})),!1;u.isText&&(c+=(x=u==null?void 0:u.text)==null?void 0:x.slice(Math.max(r,h)-h,a-h))}),c}function CD(t,e){const n={from:0,to:t.content.size};return oC(t,n,e)}function lC(t){return Object.fromEntries(Object.entries(t.nodes).filter(([,e])=>e.spec.toText).map(([e,n])=>[e,n.spec.toText]))}function TD(t,e){const n=Un(e,t.schema),{from:r,to:a}=t.selection,i=[];t.doc.nodesBetween(r,a,c=>{i.push(c)});const o=i.reverse().find(c=>c.type.name===n.name);return o?{...o.attrs}:{}}function cC(t,e){const n=jp(typeof e=="string"?e:e.name,t.schema);return n==="node"?TD(t,e):n==="mark"?tC(t,e):{}}function ED(t,e=JSON.stringify){const n={};return t.filter(r=>{const a=e(r);return Object.prototype.hasOwnProperty.call(n,a)?!1:n[a]=!0})}function MD(t){const e=ED(t);return e.length===1?e:e.filter((n,r)=>!e.filter((i,o)=>o!==r).some(i=>n.oldRange.from>=i.oldRange.from&&n.oldRange.to<=i.oldRange.to&&n.newRange.from>=i.newRange.from&&n.newRange.to<=i.newRange.to))}function dC(t){const{mapping:e,steps:n}=t,r=[];return e.maps.forEach((a,i)=>{const o=[];if(a.ranges.length)a.forEach((c,u)=>{o.push({from:c,to:u})});else{const{from:c,to:u}=n[i];if(c===void 0||u===void 0)return;o.push({from:c,to:u})}o.forEach(({from:c,to:u})=>{const h=e.slice(i).map(c,-1),f=e.slice(i).map(u),m=e.invert().map(h,-1),x=e.invert().map(f);r.push({oldRange:{from:m,to:x},newRange:{from:h,to:f}})})}),MD(r)}function dy(t,e,n){const r=[];return t===e?n.resolve(t).marks().forEach(a=>{const i=n.resolve(t),o=oy(i,a.type);o&&r.push({mark:a,...o})}):n.nodesBetween(t,e,(a,i)=>{!a||(a==null?void 0:a.nodeSize)===void 0||r.push(...a.marks.map(o=>({from:i,to:i+a.nodeSize,mark:o})))}),r}var AD=(t,e,n,r=20)=>{const a=t.doc.resolve(n);let i=r,o=null;for(;i>0&&o===null;){const c=a.node(i);(c==null?void 0:c.type.name)===e?o=c:i-=1}return[o,i]};function Sd(t,e){return e.nodes[t]||e.marks[t]||null}function Kh(t,e,n){return Object.fromEntries(Object.entries(n).filter(([r])=>{const a=t.find(i=>i.type===e&&i.name===r);return a?a.attribute.keepOnSplit:!1}))}var ID=(t,e=500)=>{let n="";const r=t.parentOffset;return t.parent.nodesBetween(Math.max(0,r-e),r,(a,i,o,c)=>{var u,h;const f=((h=(u=a.type.spec).toText)==null?void 0:h.call(u,{node:a,pos:i,parent:o,index:c}))||a.textContent||"%leaf%";n+=a.isAtom&&!a.isText?f:f.slice(0,Math.max(0,r-i))}),n};function Vg(t,e,n={}){const{empty:r,ranges:a}=t.selection,i=e?Ti(e,t.schema):null;if(r)return!!(t.storedMarks||t.selection.$from.marks()).filter(m=>i?i.name===m.type.name:!0).find(m=>Nf(m.attrs,n,{strict:!1}));let o=0;const c=[];if(a.forEach(({$from:m,$to:x})=>{const y=m.pos,v=x.pos;t.doc.nodesBetween(y,v,(N,w)=>{if(i&&N.inlineContent&&!N.type.allowsMarkType(i))return!1;if(!N.isText&&!N.marks.length)return;const k=Math.max(y,w),E=Math.min(v,w+N.nodeSize),C=E-k;o+=C,c.push(...N.marks.map(R=>({mark:R,from:k,to:E})))})}),o===0)return!1;const u=c.filter(m=>i?i.name===m.mark.type.name:!0).filter(m=>Nf(m.mark.attrs,n,{strict:!1})).reduce((m,x)=>m+x.to-x.from,0),h=c.filter(m=>i?m.mark.type!==i&&m.mark.type.excludes(i):!0).reduce((m,x)=>m+x.to-x.from,0);return(u>0?u+h:u)>=o}function PD(t,e,n={}){if(!e)return Mo(t,null,n)||Vg(t,null,n);const r=jp(e,t.schema);return r==="node"?Mo(t,e,n):r==="mark"?Vg(t,e,n):!1}var RD=(t,e)=>{const{$from:n,$to:r,$anchor:a}=t.selection;if(e){const i=kp(c=>c.type.name===e)(t.selection);if(!i)return!1;const o=t.doc.resolve(i.pos+1);return a.pos+1===o.end()}return!(r.parentOffset{const{$from:e,$to:n}=t.selection;return!(e.parentOffset>0||e.pos!==n.pos)};function YN(t,e){return Array.isArray(e)?e.some(n=>(typeof n=="string"?n:n.name)===t.name):e}function XN(t,e){const{nodeExtensions:n}=Dc(e),r=n.find(o=>o.name===t);if(!r)return!1;const a={name:r.name,options:r.options,storage:r.storage},i=qt(Xe(r,"group",a));return typeof i!="string"?!1:i.split(" ").includes("list")}function Sp(t,{checkChildren:e=!0,ignoreWhitespace:n=!1}={}){var r;if(n){if(t.type.name==="hardBreak")return!0;if(t.isText)return/^\s*$/m.test((r=t.text)!=null?r:"")}if(t.isText)return!t.text;if(t.isAtom||t.isLeaf)return!1;if(t.content.childCount===0)return!0;if(e){let a=!0;return t.content.forEach(i=>{a!==!1&&(Sp(i,{ignoreWhitespace:n,checkChildren:e})||(a=!1))}),a}return!1}function uC(t){return t instanceof tt}var hC=class fC{constructor(e){this.position=e}static fromJSON(e){return new fC(e.position)}toJSON(){return{position:this.position}}};function LD(t,e){const n=e.mapping.mapResult(t.position);return{position:new hC(n.pos),mapResult:n}}function DD(t){return new hC(t)}function _D(t,e,n){var r;const{selection:a}=e;let i=null;if(YS(a)&&(i=a.$cursor),i){const c=(r=t.storedMarks)!=null?r:i.marks();return i.parent.type.allowsMarkType(n)&&(!!n.isInSet(c)||!c.some(h=>h.type.excludes(n)))}const{ranges:o}=a;return o.some(({$from:c,$to:u})=>{let h=c.depth===0?t.doc.inlineContent&&t.doc.type.allowsMarkType(n):!1;return t.doc.nodesBetween(c.pos,u.pos,(f,m,x)=>{if(h)return!1;if(f.isInline){const y=!x||x.type.allowsMarkType(n),v=!!n.isInSet(f.marks)||!f.marks.some(N=>N.type.excludes(n));h=y&&v}return!h}),h})}var zD=(t,e={})=>({tr:n,state:r,dispatch:a})=>{const{selection:i}=n,{empty:o,ranges:c}=i,u=Ti(t,r.schema);if(a)if(o){const h=tC(r,u);n.addStoredMark(u.create({...h,...e}))}else c.forEach(h=>{const f=h.$from.pos,m=h.$to.pos;r.doc.nodesBetween(f,m,(x,y)=>{const v=Math.max(y,f),N=Math.min(y+x.nodeSize,m);x.marks.find(k=>k.type===u)?x.marks.forEach(k=>{u===k.type&&n.addMark(v,N,u.create({...k.attrs,...e}))}):n.addMark(v,N,u.create(e))})});return _D(r,n,u)},$D=(t,e)=>({tr:n})=>(n.setMeta(t,e),!0),FD=(t,e={})=>({state:n,dispatch:r,chain:a})=>{const i=Un(t,n.schema);let o;return n.selection.$anchor.sameParent(n.selection.$head)&&(o=n.selection.$anchor.parent.attrs),i.isTextblock?a().command(({commands:c})=>dN(i,{...o,...e})(n)?!0:c.clearNodes()).command(({state:c})=>dN(i,{...o,...e})(c,r)).run():(console.warn('[tiptap warn]: Currently "setNode()" only supports text block nodes.'),!1)},BD=t=>({tr:e,dispatch:n})=>{if(n){const{doc:r}=e,a=dl(t,0,r.content.size),i=tt.create(r,a);e.setSelection(i)}return!0},VD=(t,e)=>({tr:n,state:r,dispatch:a})=>{const{selection:i}=r;let o,c;return typeof e=="number"?(o=e,c=e):e&&"from"in e&&"to"in e?(o=e.from,c=e.to):(o=i.from,c=i.to),a&&n.doc.nodesBetween(o,c,(u,h)=>{u.isText||n.setNodeMarkup(h,void 0,{...u.attrs,dir:t})}),!0},HD=t=>({tr:e,dispatch:n})=>{if(n){const{doc:r}=e,{from:a,to:i}=typeof t=="number"?{from:t,to:t}:t,o=nt.atStart(r).from,c=nt.atEnd(r).to,u=dl(a,o,c),h=dl(i,o,c),f=nt.create(r,u,h);e.setSelection(f)}return!0},UD=t=>({state:e,dispatch:n})=>{const r=Un(t,e.schema);return _O(r)(e,n)};function ZN(t,e){const n=t.storedMarks||t.selection.$to.parentOffset&&t.selection.$from.marks();if(n){const r=n.filter(a=>e==null?void 0:e.includes(a.type.name));t.tr.ensureMarks(r)}}var WD=({keepMarks:t=!0}={})=>({tr:e,state:n,dispatch:r,editor:a})=>{const{selection:i,doc:o}=e,{$from:c,$to:u}=i,h=a.extensionManager.attributes,f=Kh(h,c.node().type.name,c.node().attrs);if(i instanceof tt&&i.node.isBlock)return!c.parentOffset||!vi(o,c.pos)?!1:(r&&(t&&ZN(n,a.extensionManager.splittableMarks),e.split(c.pos).scrollIntoView()),!0);if(!c.parent.isBlock)return!1;const m=u.parentOffset===u.parent.content.size,x=c.depth===0?void 0:bD(c.node(-1).contentMatchAt(c.indexAfter(-1)));let y=m&&x?[{type:x,attrs:f}]:void 0,v=vi(e.doc,e.mapping.map(c.pos),1,y);if(!y&&!v&&vi(e.doc,e.mapping.map(c.pos),1,x?[{type:x}]:void 0)&&(v=!0,y=x?[{type:x,attrs:f}]:void 0),r){if(v&&(i instanceof nt&&e.deleteSelection(),e.split(e.mapping.map(c.pos),1,y),x&&!m&&!c.parentOffset&&c.parent.type!==x)){const N=e.mapping.map(c.before()),w=e.doc.resolve(N);c.node(-1).canReplaceWith(w.index(),w.index()+1,x)&&e.setNodeMarkup(e.mapping.map(c.before()),x)}t&&ZN(n,a.extensionManager.splittableMarks),e.scrollIntoView()}return v},KD=(t,e={})=>({tr:n,state:r,dispatch:a,editor:i})=>{var o;const c=Un(t,r.schema),{$from:u,$to:h}=r.selection,f=r.selection.node;if(f&&f.isBlock||u.depth<2||!u.sameParent(h))return!1;const m=u.node(-1);if(m.type!==c)return!1;const x=i.extensionManager.attributes;if(u.parent.content.size===0&&u.node(-1).childCount===u.indexAfter(-1)){if(u.depth===2||u.node(-3).type!==c||u.index(-2)!==u.node(-2).childCount-1)return!1;if(a){let k=Ne.empty;const E=u.index(-1)?1:u.index(-2)?2:3;for(let V=u.depth-E;V>=u.depth-3;V-=1)k=Ne.from(u.node(V).copy(k));const C=u.indexAfter(-1){if($>-1)return!1;V.isTextblock&&V.content.size===0&&($=I+1)}),$>-1&&n.setSelection(nt.near(n.doc.resolve($))),n.scrollIntoView()}return!0}const y=h.pos===u.end()?m.contentMatchAt(0).defaultType:null,v={...Kh(x,m.type.name,m.attrs),...e},N={...Kh(x,u.node().type.name,u.node().attrs),...e};n.delete(u.pos,h.pos);const w=y?[{type:c,attrs:v},{type:y,attrs:N}]:[{type:c,attrs:v}];if(!vi(n.doc,u.pos,2))return!1;if(a){const{selection:k,storedMarks:E}=r,{splittableMarks:C}=i.extensionManager,R=E||k.$to.parentOffset&&k.$from.marks();if(n.split(u.pos,2,w).scrollIntoView(),!R||!a)return!0;const O=R.filter(q=>C.includes(q.type.name));n.ensureMarks(O)}return!0},Fx=(t,e)=>{const n=kp(o=>o.type===e)(t.selection);if(!n)return!0;const r=t.doc.resolve(Math.max(0,n.pos-1)).before(n.depth);if(r===void 0)return!0;const a=t.doc.nodeAt(r);return n.node.type===(a==null?void 0:a.type)&&Lo(t.doc,n.pos)&&t.join(n.pos),!0},Bx=(t,e)=>{const n=kp(o=>o.type===e)(t.selection);if(!n)return!0;const r=t.doc.resolve(n.start).after(n.depth);if(r===void 0)return!0;const a=t.doc.nodeAt(r);return n.node.type===(a==null?void 0:a.type)&&Lo(t.doc,r)&&t.join(r),!0},qD=(t,e,n,r={})=>({editor:a,tr:i,state:o,dispatch:c,chain:u,commands:h,can:f})=>{const{extensions:m,splittableMarks:x}=a.extensionManager,y=Un(t,o.schema),v=Un(e,o.schema),{selection:N,storedMarks:w}=o,{$from:k,$to:E}=N,C=k.blockRange(E),R=w||N.$to.parentOffset&&N.$from.marks();if(!C)return!1;const O=kp(q=>XN(q.type.name,m))(N);if(C.depth>=1&&O&&C.depth-O.depth<=1){if(O.node.type===y)return h.liftListItem(v);if(XN(O.node.type.name,m)&&y.validContent(O.node.content)&&c)return u().command(()=>(i.setNodeMarkup(O.pos,y),!0)).command(()=>Fx(i,y)).command(()=>Bx(i,y)).run()}return!n||!R||!c?u().command(()=>f().wrapInList(y,r)?!0:h.clearNodes()).wrapInList(y,r).command(()=>Fx(i,y)).command(()=>Bx(i,y)).run():u().command(()=>{const q=f().wrapInList(y,r),$=R.filter(V=>x.includes(V.type.name));return i.ensureMarks($),q?!0:h.clearNodes()}).wrapInList(y,r).command(()=>Fx(i,y)).command(()=>Bx(i,y)).run()},GD=(t,e={},n={})=>({state:r,commands:a})=>{const{extendEmptyMarkRange:i=!1}=n,o=Ti(t,r.schema);return Vg(r,o,e)?a.unsetMark(o,{extendEmptyMarkRange:i}):a.setMark(o,e)},JD=(t,e,n={})=>({state:r,commands:a})=>{const i=Un(t,r.schema),o=Un(e,r.schema),c=Mo(r,i,n);let u;return r.selection.$anchor.sameParent(r.selection.$head)&&(u=r.selection.$anchor.parent.attrs),c?a.setNode(o,u):a.setNode(i,{...u,...n})},QD=(t,e={})=>({state:n,commands:r})=>{const a=Un(t,n.schema);return Mo(n,a,e)?r.lift(a):r.wrapIn(a,e)},YD=()=>({state:t,dispatch:e})=>{const n=t.plugins;for(let r=0;r=0;u-=1)o.step(c.steps[u].invert(c.docs[u]));if(i.text){const u=o.doc.resolve(i.from).marks();o.replaceWith(i.from,i.to,t.schema.text(i.text,u))}else o.delete(i.from,i.to)}return!0}}return!1},XD=()=>({tr:t,dispatch:e})=>{const{selection:n}=t,{empty:r,ranges:a}=n;return r||e&&a.forEach(i=>{t.removeMark(i.$from.pos,i.$to.pos)}),!0},ZD=(t,e={})=>({tr:n,state:r,dispatch:a})=>{var i;const{extendEmptyMarkRange:o=!1}=e,{selection:c}=n,u=Ti(t,r.schema),{$from:h,empty:f,ranges:m}=c;if(!a)return!0;if(f&&o){let{from:x,to:y}=c;const v=(i=h.marks().find(w=>w.type===u))==null?void 0:i.attrs,N=oy(h,u,v);N&&(x=N.from,y=N.to),n.removeMark(x,y,u)}else m.forEach(x=>{n.removeMark(x.$from.pos,x.$to.pos,u)});return n.removeStoredMark(u),!0},e_=t=>({tr:e,state:n,dispatch:r})=>{const{selection:a}=n;let i,o;return typeof t=="number"?(i=t,o=t):t&&"from"in t&&"to"in t?(i=t.from,o=t.to):(i=a.from,o=a.to),r&&e.doc.nodesBetween(i,o,(c,u)=>{if(c.isText)return;const h={...c.attrs};delete h.dir,e.setNodeMarkup(u,void 0,h)}),!0},t_=(t,e={})=>({tr:n,state:r,dispatch:a})=>{let i=null,o=null;const c=jp(typeof t=="string"?t:t.name,r.schema);if(!c)return!1;c==="node"&&(i=Un(t,r.schema)),c==="mark"&&(o=Ti(t,r.schema));let u=!1;return n.selection.ranges.forEach(h=>{const f=h.$from.pos,m=h.$to.pos;let x,y,v,N;n.selection.empty?r.doc.nodesBetween(f,m,(w,k)=>{i&&i===w.type&&(u=!0,v=Math.max(k,f),N=Math.min(k+w.nodeSize,m),x=k,y=w)}):r.doc.nodesBetween(f,m,(w,k)=>{k=f&&k<=m&&(i&&i===w.type&&(u=!0,a&&n.setNodeMarkup(k,void 0,{...w.attrs,...e})),o&&w.marks.length&&w.marks.forEach(E=>{if(o===E.type&&(u=!0,a)){const C=Math.max(k,f),R=Math.min(k+w.nodeSize,m);n.addMark(C,R,o.create({...E.attrs,...e}))}}))}),y&&(x!==void 0&&a&&n.setNodeMarkup(x,void 0,{...y.attrs,...e}),o&&y.marks.length&&y.marks.forEach(w=>{o===w.type&&a&&n.addMark(v,N,o.create({...w.attrs,...e}))}))}),u},n_=(t,e={})=>({state:n,dispatch:r})=>{const a=Un(t,n.schema);return AO(a,e)(n,r)},s_=(t,e={})=>({state:n,dispatch:r})=>{const a=Un(t,n.schema);return IO(a,e)(n,r)},r_=class{constructor(){this.callbacks={}}on(t,e){return this.callbacks[t]||(this.callbacks[t]=[]),this.callbacks[t].push(e),this}emit(t,...e){const n=this.callbacks[t];return n&&n.forEach(r=>r.apply(this,e)),this}off(t,e){const n=this.callbacks[t];return n&&(e?this.callbacks[t]=n.filter(r=>r!==e):delete this.callbacks[t]),this}once(t,e){const n=(...r)=>{this.off(t,n),e.apply(this,r)};return this.on(t,n)}removeAllListeners(){this.callbacks={}}},Cp=class{constructor(t){var e;this.find=t.find,this.handler=t.handler,this.undoable=(e=t.undoable)!=null?e:!0}},a_=(t,e)=>{if(iy(e))return e.exec(t);const n=e(t);if(!n)return null;const r=[n.text];return r.index=n.index,r.input=t,r.data=n.data,n.replaceWith&&(n.text.includes(n.replaceWith)||console.warn('[tiptap warn]: "inputRuleMatch.replaceWith" must be part of "inputRuleMatch.text".'),r.push(n.replaceWith)),r};function Mh(t){var e;const{editor:n,from:r,to:a,text:i,rules:o,plugin:c}=t,{view:u}=n;if(u.composing)return!1;const h=u.state.doc.resolve(r);if(h.parent.type.spec.code||(e=h.nodeBefore||h.nodeAfter)!=null&&e.marks.find(x=>x.type.spec.code))return!1;let f=!1;const m=ID(h)+i;return o.forEach(x=>{if(f)return;const y=a_(m,x.find);if(!y)return;const v=u.state.tr,N=Np({state:u.state,transaction:v}),w={from:r-(y[0].length-i.length),to:a},{commands:k,chain:E,can:C}=new wp({editor:n,state:N});x.handler({state:N,range:w,match:y,commands:k,chain:E,can:C})===null||!v.steps.length||(x.undoable&&v.setMeta(c,{transform:v,from:r,to:a,text:i}),u.dispatch(v),f=!0)}),f}function i_(t){const{editor:e,rules:n}=t,r=new dn({state:{init(){return null},apply(a,i,o){const c=a.getMeta(r);if(c)return c;const u=a.getMeta("applyInputRules");return!!u&&setTimeout(()=>{let{text:f}=u;typeof f=="string"?f=f:f=cy(Ne.from(f),o.schema);const{from:m}=u,x=m+f.length;Mh({editor:e,from:m,to:x,text:f,rules:n,plugin:r})}),a.selectionSet||a.docChanged?null:i}},props:{handleTextInput(a,i,o,c){return Mh({editor:e,from:i,to:o,text:c,rules:n,plugin:r})},handleDOMEvents:{compositionend:a=>(setTimeout(()=>{const{$cursor:i}=a.state.selection;i&&Mh({editor:e,from:i.pos,to:i.pos,text:"",rules:n,plugin:r})}),!1)},handleKeyDown(a,i){if(i.key!=="Enter")return!1;const{$cursor:o}=a.state.selection;return o?Mh({editor:e,from:o.pos,to:o.pos,text:` +`,rules:n,plugin:r}):!1}},isInputRules:!0});return r}function o_(t){return Object.prototype.toString.call(t).slice(8,-1)}function Ah(t){return o_(t)!=="Object"?!1:t.constructor===Object&&Object.getPrototypeOf(t)===Object.prototype}function pC(t,e){const n={...t};return Ah(t)&&Ah(e)&&Object.keys(e).forEach(r=>{Ah(e[r])&&Ah(t[r])?n[r]=pC(t[r],e[r]):n[r]=e[r]}),n}var uy=class{constructor(t={}){this.type="extendable",this.parent=null,this.child=null,this.name="",this.config={name:this.name},this.config={...this.config,...t},this.name=this.config.name}get options(){return{...qt(Xe(this,"addOptions",{name:this.name}))||{}}}get storage(){return{...qt(Xe(this,"addStorage",{name:this.name,options:this.options}))||{}}}configure(t={}){const e=this.extend({...this.config,addOptions:()=>pC(this.options,t)});return e.name=this.name,e.parent=this.parent,e}extend(t={}){const e=new this.constructor({...this.config,...t});return e.parent=this,this.child=e,e.name="name"in t?t.name:e.parent.name,e}},Pl=class mC extends uy{constructor(){super(...arguments),this.type="mark"}static create(e={}){const n=typeof e=="function"?e():e;return new mC(n)}static handleExit({editor:e,mark:n}){const{tr:r}=e.state,a=e.state.selection.$from;if(a.pos===a.end()){const o=a.marks();if(!!!o.find(h=>(h==null?void 0:h.type.name)===n.name))return!1;const u=o.find(h=>(h==null?void 0:h.type.name)===n.name);return u&&r.removeStoredMark(u),r.insertText(" ",a.pos),e.view.dispatch(r),!0}return!1}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}};function l_(t){return typeof t=="number"}var c_=class{constructor(t){this.find=t.find,this.handler=t.handler}},d_=(t,e,n)=>{if(iy(e))return[...t.matchAll(e)];const r=e(t,n);return r?r.map(a=>{const i=[a.text];return i.index=a.index,i.input=t,i.data=a.data,a.replaceWith&&(a.text.includes(a.replaceWith)||console.warn('[tiptap warn]: "pasteRuleMatch.replaceWith" must be part of "pasteRuleMatch.text".'),i.push(a.replaceWith)),i}):[]};function u_(t){const{editor:e,state:n,from:r,to:a,rule:i,pasteEvent:o,dropEvent:c}=t,{commands:u,chain:h,can:f}=new wp({editor:e,state:n}),m=[];return n.doc.nodesBetween(r,a,(y,v)=>{var N,w,k,E,C;if((w=(N=y.type)==null?void 0:N.spec)!=null&&w.code||!(y.isText||y.isTextblock||y.isInline))return;const R=(C=(E=(k=y.content)==null?void 0:k.size)!=null?E:y.nodeSize)!=null?C:0,O=Math.max(r,v),q=Math.min(a,v+R);if(O>=q)return;const $=y.isText?y.text||"":y.textBetween(O-v,q-v,void 0,"");d_($,i.find,o).forEach(I=>{if(I.index===void 0)return;const te=O+I.index+1,Q=te+I[0].length,B={from:n.tr.mapping.map(te),to:n.tr.mapping.map(Q)},re=i.handler({state:n,range:B,match:I,commands:u,chain:h,can:f,pasteEvent:o,dropEvent:c});m.push(re)})}),m.every(y=>y!==null)}var Ih=null,h_=t=>{var e;const n=new ClipboardEvent("paste",{clipboardData:new DataTransfer});return(e=n.clipboardData)==null||e.setData("text/html",t),n};function f_(t){const{editor:e,rules:n}=t;let r=null,a=!1,i=!1,o=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,c;try{c=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{c=null}const u=({state:f,from:m,to:x,rule:y,pasteEvt:v})=>{const N=f.tr,w=Np({state:f,transaction:N});if(!(!u_({editor:e,state:w,from:Math.max(m-1,0),to:x.b-1,rule:y,pasteEvent:v,dropEvent:c})||!N.steps.length)){try{c=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{c=null}return o=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,N}};return n.map(f=>new dn({view(m){const x=v=>{var N;r=(N=m.dom.parentElement)!=null&&N.contains(v.target)?m.dom.parentElement:null,r&&(Ih=e)},y=()=>{Ih&&(Ih=null)};return window.addEventListener("dragstart",x),window.addEventListener("dragend",y),{destroy(){window.removeEventListener("dragstart",x),window.removeEventListener("dragend",y)}}},props:{handleDOMEvents:{drop:(m,x)=>{if(i=r===m.dom.parentElement,c=x,!i){const y=Ih;y!=null&&y.isEditable&&setTimeout(()=>{const v=y.state.selection;v&&y.commands.deleteRange({from:v.from,to:v.to})},10)}return!1},paste:(m,x)=>{var y;const v=(y=x.clipboardData)==null?void 0:y.getData("text/html");return o=x,a=!!(v!=null&&v.includes("data-pm-slice")),!1}}},appendTransaction:(m,x,y)=>{const v=m[0],N=v.getMeta("uiEvent")==="paste"&&!a,w=v.getMeta("uiEvent")==="drop"&&!i,k=v.getMeta("applyPasteRules"),E=!!k;if(!N&&!w&&!E)return;if(E){let{text:O}=k;typeof O=="string"?O=O:O=cy(Ne.from(O),y.schema);const{from:q}=k,$=q+O.length,V=h_(O);return u({rule:f,state:y,from:q,to:{b:$},pasteEvt:V})}const C=x.doc.content.findDiffStart(y.doc.content),R=x.doc.content.findDiffEnd(y.doc.content);if(!(!l_(C)||!R||C===R.b))return u({rule:f,state:y,from:C,to:R,pasteEvt:o})}}))}var Tp=class{constructor(t,e){this.splittableMarks=[],this.editor=e,this.baseExtensions=t,this.extensions=iC(t),this.schema=kD(this.extensions,e),this.setupExtensions()}get commands(){return this.extensions.reduce((t,e)=>{const n={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:Sd(e.name,this.schema)},r=Xe(e,"addCommands",n);return r?{...t,...r()}:t},{})}get plugins(){const{editor:t}=this;return Bd([...this.extensions].reverse()).flatMap(r=>{const a={name:r.name,options:r.options,storage:this.editor.extensionStorage[r.name],editor:t,type:Sd(r.name,this.schema)},i=[],o=Xe(r,"addKeyboardShortcuts",a);let c={};if(r.type==="mark"&&Xe(r,"exitable",a)&&(c.ArrowRight=()=>Pl.handleExit({editor:t,mark:r})),o){const x=Object.fromEntries(Object.entries(o()).map(([y,v])=>[y,()=>v({editor:t})]));c={...c,...x}}const u=T6(c);i.push(u);const h=Xe(r,"addInputRules",a);if(YN(r,t.options.enableInputRules)&&h){const x=h();if(x&&x.length){const y=i_({editor:t,rules:x}),v=Array.isArray(y)?y:[y];i.push(...v)}}const f=Xe(r,"addPasteRules",a);if(YN(r,t.options.enablePasteRules)&&f){const x=f();if(x&&x.length){const y=f_({editor:t,rules:x});i.push(...y)}}const m=Xe(r,"addProseMirrorPlugins",a);if(m){const x=m();i.push(...x)}return i})}get attributes(){return aC(this.extensions)}get nodeViews(){const{editor:t}=this,{nodeExtensions:e}=Dc(this.extensions);return Object.fromEntries(e.filter(n=>!!Xe(n,"addNodeView")).map(n=>{const r=this.attributes.filter(u=>u.type===n.name),a={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:Un(n.name,this.schema)},i=Xe(n,"addNodeView",a);if(!i)return[];const o=i();if(!o)return[];const c=(u,h,f,m,x)=>{const y=au(u,r);return o({node:u,view:h,getPos:f,decorations:m,innerDecorations:x,editor:t,extension:n,HTMLAttributes:y})};return[n.name,c]}))}dispatchTransaction(t){const{editor:e}=this;return Bd([...this.extensions].reverse()).reduceRight((r,a)=>{const i={name:a.name,options:a.options,storage:this.editor.extensionStorage[a.name],editor:e,type:Sd(a.name,this.schema)},o=Xe(a,"dispatchTransaction",i);return o?c=>{o.call(i,{transaction:c,next:r})}:r},t)}transformPastedHTML(t){const{editor:e}=this;return Bd([...this.extensions]).reduce((r,a)=>{const i={name:a.name,options:a.options,storage:this.editor.extensionStorage[a.name],editor:e,type:Sd(a.name,this.schema)},o=Xe(a,"transformPastedHTML",i);return o?(c,u)=>{const h=r(c,u);return o.call(i,h)}:r},t||(r=>r))}get markViews(){const{editor:t}=this,{markExtensions:e}=Dc(this.extensions);return Object.fromEntries(e.filter(n=>!!Xe(n,"addMarkView")).map(n=>{const r=this.attributes.filter(c=>c.type===n.name),a={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:Ti(n.name,this.schema)},i=Xe(n,"addMarkView",a);if(!i)return[];const o=(c,u,h)=>{const f=au(c,r);return i()({mark:c,view:u,inline:h,editor:t,extension:n,HTMLAttributes:f,updateAttributes:m=>{E_(c,t,m)}})};return[n.name,o]}))}setupExtensions(){const t=this.extensions;this.editor.extensionStorage=Object.fromEntries(t.map(e=>[e.name,e.storage])),t.forEach(e=>{var n;const r={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:Sd(e.name,this.schema)};e.type==="mark"&&((n=qt(Xe(e,"keepOnSplit",r)))==null||n)&&this.splittableMarks.push(e.name);const a=Xe(e,"onBeforeCreate",r),i=Xe(e,"onCreate",r),o=Xe(e,"onUpdate",r),c=Xe(e,"onSelectionUpdate",r),u=Xe(e,"onTransaction",r),h=Xe(e,"onFocus",r),f=Xe(e,"onBlur",r),m=Xe(e,"onDestroy",r);a&&this.editor.on("beforeCreate",a),i&&this.editor.on("create",i),o&&this.editor.on("update",o),c&&this.editor.on("selectionUpdate",c),u&&this.editor.on("transaction",u),h&&this.editor.on("focus",h),f&&this.editor.on("blur",f),m&&this.editor.on("destroy",m)})}};Tp.resolve=iC;Tp.sort=Bd;Tp.flatten=ly;var p_={};ay(p_,{ClipboardTextSerializer:()=>gC,Commands:()=>yC,Delete:()=>bC,Drop:()=>vC,Editable:()=>NC,FocusEvents:()=>jC,Keymap:()=>kC,Paste:()=>SC,Tabindex:()=>CC,TextDirection:()=>TC,focusEventsPluginKey:()=>wC});var Pn=class xC extends uy{constructor(){super(...arguments),this.type="extension"}static create(e={}){const n=typeof e=="function"?e():e;return new xC(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}},gC=Pn.create({name:"clipboardTextSerializer",addOptions(){return{blockSeparator:void 0}},addProseMirrorPlugins(){return[new dn({key:new gn("clipboardTextSerializer"),props:{clipboardTextSerializer:()=>{const{editor:t}=this,{state:e,schema:n}=t,{doc:r,selection:a}=e,{ranges:i}=a,o=Math.min(...i.map(f=>f.$from.pos)),c=Math.max(...i.map(f=>f.$to.pos)),u=lC(n);return oC(r,{from:o,to:c},{...this.options.blockSeparator!==void 0?{blockSeparator:this.options.blockSeparator}:{},textSerializers:u})}}})]}}),yC=Pn.create({name:"commands",addCommands(){return{...JS}}}),bC=Pn.create({name:"delete",onUpdate({transaction:t,appendedTransactions:e}){var n,r,a;const i=()=>{var o,c,u,h;if((h=(u=(c=(o=this.editor.options.coreExtensionOptions)==null?void 0:o.delete)==null?void 0:c.filterTransaction)==null?void 0:u.call(c,t))!=null?h:t.getMeta("y-sync$"))return;const f=nC(t.before,[t,...e]);dC(f).forEach(y=>{f.mapping.mapResult(y.oldRange.from).deletedAfter&&f.mapping.mapResult(y.oldRange.to).deletedBefore&&f.before.nodesBetween(y.oldRange.from,y.oldRange.to,(v,N)=>{const w=N+v.nodeSize-2,k=y.oldRange.from<=N&&w<=y.oldRange.to;this.editor.emit("delete",{type:"node",node:v,from:N,to:w,newFrom:f.mapping.map(N),newTo:f.mapping.map(w),deletedRange:y.oldRange,newRange:y.newRange,partial:!k,editor:this.editor,transaction:t,combinedTransform:f})})});const x=f.mapping;f.steps.forEach((y,v)=>{var N,w;if(y instanceof na){const k=x.slice(v).map(y.from,-1),E=x.slice(v).map(y.to),C=x.invert().map(k,-1),R=x.invert().map(E),O=(N=f.doc.nodeAt(k-1))==null?void 0:N.marks.some($=>$.eq(y.mark)),q=(w=f.doc.nodeAt(E))==null?void 0:w.marks.some($=>$.eq(y.mark));this.editor.emit("delete",{type:"mark",mark:y.mark,from:y.from,to:y.to,deletedRange:{from:C,to:R},newRange:{from:k,to:E},partial:!!(q||O),editor:this.editor,transaction:t,combinedTransform:f})}})};(a=(r=(n=this.editor.options.coreExtensionOptions)==null?void 0:n.delete)==null?void 0:r.async)==null||a?setTimeout(i,0):i()}}),vC=Pn.create({name:"drop",addProseMirrorPlugins(){return[new dn({key:new gn("tiptapDrop"),props:{handleDrop:(t,e,n,r)=>{this.editor.emit("drop",{editor:this.editor,event:e,slice:n,moved:r})}}})]}}),NC=Pn.create({name:"editable",addProseMirrorPlugins(){return[new dn({key:new gn("editable"),props:{editable:()=>this.editor.options.editable}})]}}),wC=new gn("focusEvents"),jC=Pn.create({name:"focusEvents",addProseMirrorPlugins(){const{editor:t}=this;return[new dn({key:wC,props:{handleDOMEvents:{focus:(e,n)=>{t.isFocused=!0;const r=t.state.tr.setMeta("focus",{event:n}).setMeta("addToHistory",!1);return e.dispatch(r),!1},blur:(e,n)=>{t.isFocused=!1;const r=t.state.tr.setMeta("blur",{event:n}).setMeta("addToHistory",!1);return e.dispatch(r),!1}}}})]}}),kC=Pn.create({name:"keymap",addKeyboardShortcuts(){const t=()=>this.editor.commands.first(({commands:o})=>[()=>o.undoInputRule(),()=>o.command(({tr:c})=>{const{selection:u,doc:h}=c,{empty:f,$anchor:m}=u,{pos:x,parent:y}=m,v=m.parent.isTextblock&&x>0?c.doc.resolve(x-1):m,N=v.parent.type.spec.isolating,w=m.pos-m.parentOffset,k=N&&v.parent.childCount===1?w===m.pos:lt.atStart(h).from===x;return!f||!y.type.isTextblock||y.textContent.length||!k||k&&m.parent.type.name==="paragraph"?!1:o.clearNodes()}),()=>o.deleteSelection(),()=>o.joinBackward(),()=>o.selectNodeBackward()]),e=()=>this.editor.commands.first(({commands:o})=>[()=>o.deleteSelection(),()=>o.deleteCurrentNode(),()=>o.joinForward(),()=>o.selectNodeForward()]),r={Enter:()=>this.editor.commands.first(({commands:o})=>[()=>o.newlineInCode(),()=>o.createParagraphNear(),()=>o.liftEmptyBlock(),()=>o.splitBlock()]),"Mod-Enter":()=>this.editor.commands.exitCode(),Backspace:t,"Mod-Backspace":t,"Shift-Backspace":t,Delete:e,"Mod-Delete":e,"Mod-a":()=>this.editor.commands.selectAll()},a={...r},i={...r,"Ctrl-h":t,"Alt-Backspace":t,"Ctrl-d":e,"Ctrl-Alt-Backspace":e,"Alt-Delete":e,"Alt-d":e,"Ctrl-a":()=>this.editor.commands.selectTextblockStart(),"Ctrl-e":()=>this.editor.commands.selectTextblockEnd()};return wf()||eC()?i:a},addProseMirrorPlugins(){return[new dn({key:new gn("clearDocument"),appendTransaction:(t,e,n)=>{if(t.some(N=>N.getMeta("composition")))return;const r=t.some(N=>N.docChanged)&&!e.doc.eq(n.doc),a=t.some(N=>N.getMeta("preventClearDocument"));if(!r||a)return;const{empty:i,from:o,to:c}=e.selection,u=lt.atStart(e.doc).from,h=lt.atEnd(e.doc).to;if(i||!(o===u&&c===h)||!Sp(n.doc))return;const x=n.tr,y=Np({state:n,transaction:x}),{commands:v}=new wp({editor:this.editor,state:y});if(v.clearNodes(),!!x.steps.length)return x}})]}}),SC=Pn.create({name:"paste",addProseMirrorPlugins(){return[new dn({key:new gn("tiptapPaste"),props:{handlePaste:(t,e,n)=>{this.editor.emit("paste",{editor:this.editor,event:e,slice:n})}}})]}}),CC=Pn.create({name:"tabindex",addProseMirrorPlugins(){return[new dn({key:new gn("tabindex"),props:{attributes:()=>this.editor.isEditable?{tabindex:"0"}:{}}})]}}),TC=Pn.create({name:"textDirection",addOptions(){return{direction:void 0}},addGlobalAttributes(){if(!this.options.direction)return[];const{nodeExtensions:t}=Dc(this.extensions);return[{types:t.filter(e=>e.name!=="text").map(e=>e.name),attributes:{dir:{default:this.options.direction,parseHTML:e=>{const n=e.getAttribute("dir");return n&&(n==="ltr"||n==="rtl"||n==="auto")?n:this.options.direction},renderHTML:e=>e.dir?{dir:e.dir}:{}}}}]},addProseMirrorPlugins(){return[new dn({key:new gn("textDirection"),props:{attributes:()=>{const t=this.options.direction;return t?{dir:t}:{}}}})]}}),m_=class Id{constructor(e,n,r=!1,a=null){this.currentNode=null,this.actualDepth=null,this.isBlock=r,this.resolvedPos=e,this.editor=n,this.currentNode=a}get name(){return this.node.type.name}get node(){return this.currentNode||this.resolvedPos.node()}get element(){return this.editor.view.domAtPos(this.pos).node}get depth(){var e;return(e=this.actualDepth)!=null?e:this.resolvedPos.depth}get pos(){return this.resolvedPos.pos}get content(){return this.node.content}set content(e){let n=this.from,r=this.to;if(this.isBlock){if(this.content.size===0){console.error(`You can’t set content on a block node. Tried to set content on ${this.name} at ${this.pos}`);return}n=this.from+1,r=this.to-1}this.editor.commands.insertContentAt({from:n,to:r},e)}get attributes(){return this.node.attrs}get textContent(){return this.node.textContent}get size(){return this.node.nodeSize}get from(){return this.isBlock?this.pos:this.resolvedPos.start(this.resolvedPos.depth)}get range(){return{from:this.from,to:this.to}}get to(){return this.isBlock?this.pos+this.size:this.resolvedPos.end(this.resolvedPos.depth)+(this.node.isText?0:1)}get parent(){if(this.depth===0)return null;const e=this.resolvedPos.start(this.resolvedPos.depth-1),n=this.resolvedPos.doc.resolve(e);return new Id(n,this.editor)}get before(){let e=this.resolvedPos.doc.resolve(this.from-(this.isBlock?1:2));return e.depth!==this.depth&&(e=this.resolvedPos.doc.resolve(this.from-3)),new Id(e,this.editor)}get after(){let e=this.resolvedPos.doc.resolve(this.to+(this.isBlock?2:1));return e.depth!==this.depth&&(e=this.resolvedPos.doc.resolve(this.to+3)),new Id(e,this.editor)}get children(){const e=[];return this.node.content.forEach((n,r)=>{const a=n.isBlock&&!n.isTextblock,i=n.isAtom&&!n.isText,o=n.isInline,c=this.pos+r+(i?0:1);if(c<0||c>this.resolvedPos.doc.nodeSize-2)return;const u=this.resolvedPos.doc.resolve(c);if(!a&&!o&&u.depth<=this.depth)return;const h=new Id(u,this.editor,a,a||o?n:null);a&&(h.actualDepth=this.depth+1),e.push(h)}),e}get firstChild(){return this.children[0]||null}get lastChild(){const e=this.children;return e[e.length-1]||null}closest(e,n={}){let r=null,a=this.parent;for(;a&&!r;){if(a.node.type.name===e)if(Object.keys(n).length>0){const i=a.node.attrs,o=Object.keys(n);for(let c=0;c{r&&a.length>0||(o.node.type.name===e&&i.every(u=>n[u]===o.node.attrs[u])&&a.push(o),!(r&&a.length>0)&&(a=a.concat(o.querySelectorAll(e,n,r))))}),a}setAttribute(e){const{tr:n}=this.editor.state;n.setNodeMarkup(this.from,void 0,{...this.node.attrs,...e}),this.editor.view.dispatch(n)}},x_=`.ProseMirror { + position: relative; +} + +.ProseMirror { + word-wrap: break-word; + white-space: pre-wrap; + white-space: break-spaces; + -webkit-font-variant-ligatures: none; + font-variant-ligatures: none; + font-feature-settings: "liga" 0; /* the above doesn't seem to work in Edge */ +} + +.ProseMirror [contenteditable="false"] { + white-space: normal; +} + +.ProseMirror [contenteditable="false"] [contenteditable="true"] { + white-space: pre-wrap; +} + +.ProseMirror pre { + white-space: pre-wrap; +} + +img.ProseMirror-separator { + display: inline !important; + border: none !important; + margin: 0 !important; + width: 0 !important; + height: 0 !important; +} + +.ProseMirror-gapcursor { + display: none; + pointer-events: none; + position: absolute; + margin: 0; +} + +.ProseMirror-gapcursor:after { + content: ""; + display: block; + position: absolute; + top: -2px; + width: 20px; + border-top: 1px solid black; + animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite; +} + +@keyframes ProseMirror-cursor-blink { + to { + visibility: hidden; + } +} + +.ProseMirror-hideselection *::selection { + background: transparent; +} + +.ProseMirror-hideselection *::-moz-selection { + background: transparent; +} + +.ProseMirror-hideselection * { + caret-color: transparent; +} + +.ProseMirror-focused .ProseMirror-gapcursor { + display: block; +}`;function g_(t,e,n){const r=document.querySelector("style[data-tiptap-style]");if(r!==null)return r;const a=document.createElement("style");return e&&a.setAttribute("nonce",e),a.setAttribute("data-tiptap-style",""),a.innerHTML=t,document.getElementsByTagName("head")[0].appendChild(a),a}var y_=class extends r_{constructor(t={}){super(),this.css=null,this.className="tiptap",this.editorView=null,this.isFocused=!1,this.isInitialized=!1,this.extensionStorage={},this.instanceId=Math.random().toString(36).slice(2,9),this.options={element:typeof document<"u"?document.createElement("div"):null,content:"",injectCSS:!0,injectNonce:void 0,extensions:[],autofocus:!1,editable:!0,textDirection:void 0,editorProps:{},parseOptions:{},coreExtensionOptions:{},enableInputRules:!0,enablePasteRules:!0,enableCoreExtensions:!0,enableContentCheck:!1,emitContentError:!1,onBeforeCreate:()=>null,onCreate:()=>null,onMount:()=>null,onUnmount:()=>null,onUpdate:()=>null,onSelectionUpdate:()=>null,onTransaction:()=>null,onFocus:()=>null,onBlur:()=>null,onDestroy:()=>null,onContentError:({error:r})=>{throw r},onPaste:()=>null,onDrop:()=>null,onDelete:()=>null,enableExtensionDispatchTransaction:!0},this.isCapturingTransaction=!1,this.capturedTransaction=null,this.utils={getUpdatedPosition:LD,createMappablePosition:DD},this.setOptions(t),this.createExtensionManager(),this.createCommandManager(),this.createSchema(),this.on("beforeCreate",this.options.onBeforeCreate),this.emit("beforeCreate",{editor:this}),this.on("mount",this.options.onMount),this.on("unmount",this.options.onUnmount),this.on("contentError",this.options.onContentError),this.on("create",this.options.onCreate),this.on("update",this.options.onUpdate),this.on("selectionUpdate",this.options.onSelectionUpdate),this.on("transaction",this.options.onTransaction),this.on("focus",this.options.onFocus),this.on("blur",this.options.onBlur),this.on("destroy",this.options.onDestroy),this.on("drop",({event:r,slice:a,moved:i})=>this.options.onDrop(r,a,i)),this.on("paste",({event:r,slice:a})=>this.options.onPaste(r,a)),this.on("delete",this.options.onDelete);const e=this.createDoc(),n=XS(e,this.options.autofocus);this.editorState=Nc.create({doc:e,schema:this.schema,selection:n||void 0}),this.options.element&&this.mount(this.options.element)}mount(t){if(typeof document>"u")throw new Error("[tiptap error]: The editor cannot be mounted because there is no 'document' defined in this environment.");this.createView(t),this.emit("mount",{editor:this}),this.css&&!document.head.contains(this.css)&&document.head.appendChild(this.css),window.setTimeout(()=>{this.isDestroyed||(this.options.autofocus!==!1&&this.options.autofocus!==null&&this.commands.focus(this.options.autofocus),this.emit("create",{editor:this}),this.isInitialized=!0)},0)}unmount(){if(this.editorView){const t=this.editorView.dom;t!=null&&t.editor&&delete t.editor,this.editorView.destroy()}if(this.editorView=null,this.isInitialized=!1,this.css&&!document.querySelectorAll(`.${this.className}`).length)try{typeof this.css.remove=="function"?this.css.remove():this.css.parentNode&&this.css.parentNode.removeChild(this.css)}catch(t){console.warn("Failed to remove CSS element:",t)}this.css=null,this.emit("unmount",{editor:this})}get storage(){return this.extensionStorage}get commands(){return this.commandManager.commands}chain(){return this.commandManager.chain()}can(){return this.commandManager.can()}injectCSS(){this.options.injectCSS&&typeof document<"u"&&(this.css=g_(x_,this.options.injectNonce))}setOptions(t={}){this.options={...this.options,...t},!(!this.editorView||!this.state||this.isDestroyed)&&(this.options.editorProps&&this.view.setProps(this.options.editorProps),this.view.updateState(this.state))}setEditable(t,e=!0){this.setOptions({editable:t}),e&&this.emit("update",{editor:this,transaction:this.state.tr,appendedTransactions:[]})}get isEditable(){return this.options.editable&&this.view&&this.view.editable}get view(){return this.editorView?this.editorView:new Proxy({state:this.editorState,updateState:t=>{this.editorState=t},dispatch:t=>{this.dispatchTransaction(t)},composing:!1,dragging:null,editable:!0,isDestroyed:!1},{get:(t,e)=>{if(this.editorView)return this.editorView[e];if(e==="state")return this.editorState;if(e in t)return Reflect.get(t,e);throw new Error(`[tiptap error]: The editor view is not available. Cannot access view['${e}']. The editor may not be mounted yet.`)}})}get state(){return this.editorView&&(this.editorState=this.view.state),this.editorState}registerPlugin(t,e){const n=rC(e)?e(t,[...this.state.plugins]):[...this.state.plugins,t],r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}unregisterPlugin(t){if(this.isDestroyed)return;const e=this.state.plugins;let n=e;if([].concat(t).forEach(a=>{const i=typeof a=="string"?`${a}$`:a.key;n=n.filter(o=>!o.key.startsWith(i))}),e.length===n.length)return;const r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}createExtensionManager(){var t,e;const r=[...this.options.enableCoreExtensions?[NC,gC.configure({blockSeparator:(e=(t=this.options.coreExtensionOptions)==null?void 0:t.clipboardTextSerializer)==null?void 0:e.blockSeparator}),yC,jC,kC,CC,vC,SC,bC,TC.configure({direction:this.options.textDirection})].filter(a=>typeof this.options.enableCoreExtensions=="object"?this.options.enableCoreExtensions[a.name]!==!1:!0):[],...this.options.extensions].filter(a=>["extension","node","mark"].includes(a==null?void 0:a.type));this.extensionManager=new Tp(r,this)}createCommandManager(){this.commandManager=new wp({editor:this})}createSchema(){this.schema=this.extensionManager.schema}createDoc(){let t;try{t=Bg(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:this.options.enableContentCheck})}catch(e){if(!(e instanceof Error)||!["[tiptap error]: Invalid JSON content","[tiptap error]: Invalid HTML content"].includes(e.message))throw e;this.emit("contentError",{editor:this,error:e,disableCollaboration:()=>{"collaboration"in this.storage&&typeof this.storage.collaboration=="object"&&this.storage.collaboration&&(this.storage.collaboration.isDisabled=!0),this.options.extensions=this.options.extensions.filter(n=>n.name!=="collaboration"),this.createExtensionManager()}}),t=Bg(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:!1})}return t}createView(t){const{editorProps:e,enableExtensionDispatchTransaction:n}=this.options,r=e.dispatchTransaction||this.dispatchTransaction.bind(this),a=n?this.extensionManager.dispatchTransaction(r):r,i=e.transformPastedHTML,o=this.extensionManager.transformPastedHTML(i);this.editorView=new GS(t,{...e,attributes:{role:"textbox",...e==null?void 0:e.attributes},dispatchTransaction:a,transformPastedHTML:o,state:this.editorState,markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews});const c=this.state.reconfigure({plugins:this.extensionManager.plugins});this.view.updateState(c),this.prependClass(),this.injectCSS();const u=this.view.dom;u.editor=this}createNodeViews(){this.view.isDestroyed||this.view.setProps({markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews})}prependClass(){this.view.dom.className=`${this.className} ${this.view.dom.className}`}captureTransaction(t){this.isCapturingTransaction=!0,t(),this.isCapturingTransaction=!1;const e=this.capturedTransaction;return this.capturedTransaction=null,e}dispatchTransaction(t){if(this.view.isDestroyed)return;if(this.isCapturingTransaction){if(!this.capturedTransaction){this.capturedTransaction=t;return}t.steps.forEach(h=>{var f;return(f=this.capturedTransaction)==null?void 0:f.step(h)});return}const{state:e,transactions:n}=this.state.applyTransaction(t),r=!this.state.selection.eq(e.selection),a=n.includes(t),i=this.state;if(this.emit("beforeTransaction",{editor:this,transaction:t,nextState:e}),!a)return;this.view.updateState(e),this.emit("transaction",{editor:this,transaction:t,appendedTransactions:n.slice(1)}),r&&this.emit("selectionUpdate",{editor:this,transaction:t});const o=n.findLast(h=>h.getMeta("focus")||h.getMeta("blur")),c=o==null?void 0:o.getMeta("focus"),u=o==null?void 0:o.getMeta("blur");c&&this.emit("focus",{editor:this,event:c.event,transaction:o}),u&&this.emit("blur",{editor:this,event:u.event,transaction:o}),!(t.getMeta("preventUpdate")||!n.some(h=>h.docChanged)||i.doc.eq(e.doc))&&this.emit("update",{editor:this,transaction:t,appendedTransactions:n.slice(1)})}getAttributes(t){return cC(this.state,t)}isActive(t,e){const n=typeof t=="string"?t:null,r=typeof t=="string"?e:t;return PD(this.state,n,r)}getJSON(){return this.state.doc.toJSON()}getHTML(){return cy(this.state.doc.content,this.schema)}getText(t){const{blockSeparator:e=` + +`,textSerializers:n={}}=t||{};return CD(this.state.doc,{blockSeparator:e,textSerializers:{...lC(this.schema),...n}})}get isEmpty(){return Sp(this.state.doc)}destroy(){this.emit("destroy"),this.unmount(),this.removeAllListeners()}get isDestroyed(){var t,e;return(e=(t=this.editorView)==null?void 0:t.isDestroyed)!=null?e:!0}$node(t,e){var n;return((n=this.$doc)==null?void 0:n.querySelector(t,e))||null}$nodes(t,e){var n;return((n=this.$doc)==null?void 0:n.querySelectorAll(t,e))||null}$pos(t){const e=this.state.doc.resolve(t);return new m_(e,this)}get $doc(){return this.$pos(0)}};function _c(t){return new Cp({find:t.find,handler:({state:e,range:n,match:r})=>{const a=qt(t.getAttributes,void 0,r);if(a===!1||a===null)return null;const{tr:i}=e,o=r[r.length-1],c=r[0];if(o){const u=c.search(/\S/),h=n.from+c.indexOf(o),f=h+o.length;if(dy(n.from,n.to,e.doc).filter(y=>y.mark.type.excluded.find(N=>N===t.type&&N!==y.mark.type)).filter(y=>y.to>h).length)return null;fn.from&&i.delete(n.from+u,h);const x=n.from+u+o.length;i.addMark(n.from+u,x,t.type.create(a||{})),i.removeStoredMark(t.type)}},undoable:t.undoable})}function EC(t){return new Cp({find:t.find,handler:({state:e,range:n,match:r})=>{const a=qt(t.getAttributes,void 0,r)||{},{tr:i}=e,o=n.from;let c=n.to;const u=t.type.create(a);if(r[1]){const h=r[0].lastIndexOf(r[1]);let f=o+h;f>c?f=c:c=f+r[1].length;const m=r[0][r[0].length-1];i.insertText(m,o+r[0].length-1),i.replaceWith(f,c,u)}else if(r[0]){const h=t.type.isInline?o:o-1;i.insert(h,t.type.create(a)).delete(i.mapping.map(o),i.mapping.map(c))}i.scrollIntoView()},undoable:t.undoable})}function Hg(t){return new Cp({find:t.find,handler:({state:e,range:n,match:r})=>{const a=e.doc.resolve(n.from),i=qt(t.getAttributes,void 0,r)||{};if(!a.node(-1).canReplaceWith(a.index(-1),a.indexAfter(-1),t.type))return null;e.tr.delete(n.from,n.to).setBlockType(n.from,n.from,t.type,i)},undoable:t.undoable})}function zc(t){return new Cp({find:t.find,handler:({state:e,range:n,match:r,chain:a})=>{const i=qt(t.getAttributes,void 0,r)||{},o=e.tr.delete(n.from,n.to),u=o.doc.resolve(n.from).blockRange(),h=u&&B0(u,t.type,i);if(!h)return null;if(o.wrap(u,h),t.keepMarks&&t.editor){const{selection:m,storedMarks:x}=e,{splittableMarks:y}=t.editor.extensionManager,v=x||m.$to.parentOffset&&m.$from.marks();if(v){const N=v.filter(w=>y.includes(w.type.name));o.ensureMarks(N)}}if(t.keepAttributes){const m=t.type.name==="bulletList"||t.type.name==="orderedList"?"listItem":"taskList";a().updateAttributes(m,i).run()}const f=o.doc.resolve(n.from-1).nodeBefore;f&&f.type===t.type&&Lo(o.doc,n.from-1)&&(!t.joinPredicate||t.joinPredicate(r,f))&&o.join(n.from-1)},undoable:t.undoable})}var b_=t=>"touches"in t,v_=class{constructor(t){this.directions=["bottom-left","bottom-right","top-left","top-right"],this.minSize={height:8,width:8},this.preserveAspectRatio=!1,this.classNames={container:"",wrapper:"",handle:"",resizing:""},this.initialWidth=0,this.initialHeight=0,this.aspectRatio=1,this.isResizing=!1,this.activeHandle=null,this.startX=0,this.startY=0,this.startWidth=0,this.startHeight=0,this.isShiftKeyPressed=!1,this.lastEditableState=void 0,this.handleMap=new Map,this.handleMouseMove=c=>{if(!this.isResizing||!this.activeHandle)return;const u=c.clientX-this.startX,h=c.clientY-this.startY;this.handleResize(u,h)},this.handleTouchMove=c=>{if(!this.isResizing||!this.activeHandle)return;const u=c.touches[0];if(!u)return;const h=u.clientX-this.startX,f=u.clientY-this.startY;this.handleResize(h,f)},this.handleMouseUp=()=>{if(!this.isResizing)return;const c=this.element.offsetWidth,u=this.element.offsetHeight;this.onCommit(c,u),this.isResizing=!1,this.activeHandle=null,this.container.dataset.resizeState="false",this.classNames.resizing&&this.container.classList.remove(this.classNames.resizing),document.removeEventListener("mousemove",this.handleMouseMove),document.removeEventListener("mouseup",this.handleMouseUp),document.removeEventListener("keydown",this.handleKeyDown),document.removeEventListener("keyup",this.handleKeyUp)},this.handleKeyDown=c=>{c.key==="Shift"&&(this.isShiftKeyPressed=!0)},this.handleKeyUp=c=>{c.key==="Shift"&&(this.isShiftKeyPressed=!1)};var e,n,r,a,i,o;this.node=t.node,this.editor=t.editor,this.element=t.element,this.contentElement=t.contentElement,this.getPos=t.getPos,this.onResize=t.onResize,this.onCommit=t.onCommit,this.onUpdate=t.onUpdate,(e=t.options)!=null&&e.min&&(this.minSize={...this.minSize,...t.options.min}),(n=t.options)!=null&&n.max&&(this.maxSize=t.options.max),(r=t==null?void 0:t.options)!=null&&r.directions&&(this.directions=t.options.directions),(a=t.options)!=null&&a.preserveAspectRatio&&(this.preserveAspectRatio=t.options.preserveAspectRatio),(i=t.options)!=null&&i.className&&(this.classNames={container:t.options.className.container||"",wrapper:t.options.className.wrapper||"",handle:t.options.className.handle||"",resizing:t.options.className.resizing||""}),(o=t.options)!=null&&o.createCustomHandle&&(this.createCustomHandle=t.options.createCustomHandle),this.wrapper=this.createWrapper(),this.container=this.createContainer(),this.applyInitialSize(),this.attachHandles(),this.editor.on("update",this.handleEditorUpdate.bind(this))}get dom(){return this.container}get contentDOM(){var t;return(t=this.contentElement)!=null?t:null}handleEditorUpdate(){const t=this.editor.isEditable;t!==this.lastEditableState&&(this.lastEditableState=t,t?t&&this.handleMap.size===0&&this.attachHandles():this.removeHandles())}update(t,e,n){return t.type!==this.node.type?!1:(this.node=t,this.onUpdate?this.onUpdate(t,e,n):!0)}destroy(){this.isResizing&&(this.container.dataset.resizeState="false",this.classNames.resizing&&this.container.classList.remove(this.classNames.resizing),document.removeEventListener("mousemove",this.handleMouseMove),document.removeEventListener("mouseup",this.handleMouseUp),document.removeEventListener("keydown",this.handleKeyDown),document.removeEventListener("keyup",this.handleKeyUp),this.isResizing=!1,this.activeHandle=null),this.editor.off("update",this.handleEditorUpdate.bind(this)),this.container.remove()}createContainer(){const t=document.createElement("div");return t.dataset.resizeContainer="",t.dataset.node=this.node.type.name,t.style.display="flex",this.classNames.container&&(t.className=this.classNames.container),t.appendChild(this.wrapper),t}createWrapper(){const t=document.createElement("div");return t.style.position="relative",t.style.display="block",t.dataset.resizeWrapper="",this.classNames.wrapper&&(t.className=this.classNames.wrapper),t.appendChild(this.element),t}createHandle(t){const e=document.createElement("div");return e.dataset.resizeHandle=t,e.style.position="absolute",this.classNames.handle&&(e.className=this.classNames.handle),e}positionHandle(t,e){const n=e.includes("top"),r=e.includes("bottom"),a=e.includes("left"),i=e.includes("right");n&&(t.style.top="0"),r&&(t.style.bottom="0"),a&&(t.style.left="0"),i&&(t.style.right="0"),(e==="top"||e==="bottom")&&(t.style.left="0",t.style.right="0"),(e==="left"||e==="right")&&(t.style.top="0",t.style.bottom="0")}attachHandles(){this.directions.forEach(t=>{let e;this.createCustomHandle?e=this.createCustomHandle(t):e=this.createHandle(t),e instanceof HTMLElement||(console.warn(`[ResizableNodeView] createCustomHandle("${t}") did not return an HTMLElement. Falling back to default handle.`),e=this.createHandle(t)),this.createCustomHandle||this.positionHandle(e,t),e.addEventListener("mousedown",n=>this.handleResizeStart(n,t)),e.addEventListener("touchstart",n=>this.handleResizeStart(n,t)),this.handleMap.set(t,e),this.wrapper.appendChild(e)})}removeHandles(){this.handleMap.forEach(t=>t.remove()),this.handleMap.clear()}applyInitialSize(){const t=this.node.attrs.width,e=this.node.attrs.height;t?(this.element.style.width=`${t}px`,this.initialWidth=t):this.initialWidth=this.element.offsetWidth,e?(this.element.style.height=`${e}px`,this.initialHeight=e):this.initialHeight=this.element.offsetHeight,this.initialWidth>0&&this.initialHeight>0&&(this.aspectRatio=this.initialWidth/this.initialHeight)}handleResizeStart(t,e){t.preventDefault(),t.stopPropagation(),this.isResizing=!0,this.activeHandle=e,b_(t)?(this.startX=t.touches[0].clientX,this.startY=t.touches[0].clientY):(this.startX=t.clientX,this.startY=t.clientY),this.startWidth=this.element.offsetWidth,this.startHeight=this.element.offsetHeight,this.startWidth>0&&this.startHeight>0&&(this.aspectRatio=this.startWidth/this.startHeight),this.getPos(),this.container.dataset.resizeState="true",this.classNames.resizing&&this.container.classList.add(this.classNames.resizing),document.addEventListener("mousemove",this.handleMouseMove),document.addEventListener("touchmove",this.handleTouchMove),document.addEventListener("mouseup",this.handleMouseUp),document.addEventListener("keydown",this.handleKeyDown),document.addEventListener("keyup",this.handleKeyUp)}handleResize(t,e){if(!this.activeHandle)return;const n=this.preserveAspectRatio||this.isShiftKeyPressed,{width:r,height:a}=this.calculateNewDimensions(this.activeHandle,t,e),i=this.applyConstraints(r,a,n);this.element.style.width=`${i.width}px`,this.element.style.height=`${i.height}px`,this.onResize&&this.onResize(i.width,i.height)}calculateNewDimensions(t,e,n){let r=this.startWidth,a=this.startHeight;const i=t.includes("right"),o=t.includes("left"),c=t.includes("bottom"),u=t.includes("top");return i?r=this.startWidth+e:o&&(r=this.startWidth-e),c?a=this.startHeight+n:u&&(a=this.startHeight-n),(t==="right"||t==="left")&&(r=this.startWidth+(i?e:-e)),(t==="top"||t==="bottom")&&(a=this.startHeight+(c?n:-n)),this.preserveAspectRatio||this.isShiftKeyPressed?this.applyAspectRatio(r,a,t):{width:r,height:a}}applyConstraints(t,e,n){var r,a,i,o;if(!n){let h=Math.max(this.minSize.width,t),f=Math.max(this.minSize.height,e);return(r=this.maxSize)!=null&&r.width&&(h=Math.min(this.maxSize.width,h)),(a=this.maxSize)!=null&&a.height&&(f=Math.min(this.maxSize.height,f)),{width:h,height:f}}let c=t,u=e;return cthis.maxSize.width&&(c=this.maxSize.width,u=c/this.aspectRatio),(o=this.maxSize)!=null&&o.height&&u>this.maxSize.height&&(u=this.maxSize.height,c=u*this.aspectRatio),{width:c,height:u}}applyAspectRatio(t,e,n){const r=n==="left"||n==="right",a=n==="top"||n==="bottom";return r?{width:t,height:t/this.aspectRatio}:a?{width:e*this.aspectRatio,height:e}:{width:t,height:t/this.aspectRatio}}};function N_(t,e){const{selection:n}=t,{$from:r}=n;if(n instanceof tt){const i=r.index();return r.parent.canReplaceWith(i,i+1,e)}let a=r.depth;for(;a>=0;){const i=r.index(a);if(r.node(a).contentMatchAt(i).matchType(e))return!0;a-=1}return!1}function w_(t){return t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&")}var j_={};ay(j_,{createAtomBlockMarkdownSpec:()=>k_,createBlockMarkdownSpec:()=>S_,createInlineMarkdownSpec:()=>MC,parseAttributes:()=>hy,parseIndentedBlocks:()=>Ug,renderNestedMarkdownContent:()=>py,serializeAttributes:()=>fy});function hy(t){if(!(t!=null&&t.trim()))return{};const e={},n=[],r=t.replace(/["']([^"']*)["']/g,h=>(n.push(h),`__QUOTED_${n.length-1}__`)),a=r.match(/(?:^|\s)\.([a-zA-Z][\w-]*)/g);if(a){const h=a.map(f=>f.trim().slice(1));e.class=h.join(" ")}const i=r.match(/(?:^|\s)#([a-zA-Z][\w-]*)/);i&&(e.id=i[1]);const o=/([a-zA-Z][\w-]*)\s*=\s*(__QUOTED_\d+__)/g;Array.from(r.matchAll(o)).forEach(([,h,f])=>{var m;const x=parseInt(((m=f.match(/__QUOTED_(\d+)__/))==null?void 0:m[1])||"0",10),y=n[x];y&&(e[h]=y.slice(1,-1))});const u=r.replace(/(?:^|\s)\.([a-zA-Z][\w-]*)/g,"").replace(/(?:^|\s)#([a-zA-Z][\w-]*)/g,"").replace(/([a-zA-Z][\w-]*)\s*=\s*__QUOTED_\d+__/g,"").trim();return u&&u.split(/\s+/).filter(Boolean).forEach(f=>{f.match(/^[a-zA-Z][\w-]*$/)&&(e[f]=!0)}),e}function fy(t){if(!t||Object.keys(t).length===0)return"";const e=[];return t.class&&String(t.class).split(/\s+/).filter(Boolean).forEach(r=>e.push(`.${r}`)),t.id&&e.push(`#${t.id}`),Object.entries(t).forEach(([n,r])=>{n==="class"||n==="id"||(r===!0?e.push(n):r!==!1&&r!=null&&e.push(`${n}="${String(r)}"`))}),e.join(" ")}function k_(t){const{nodeName:e,name:n,parseAttributes:r=hy,serializeAttributes:a=fy,defaultAttributes:i={},requiredAttributes:o=[],allowedAttributes:c}=t,u=n||e,h=f=>{if(!c)return f;const m={};return c.forEach(x=>{x in f&&(m[x]=f[x])}),m};return{parseMarkdown:(f,m)=>{const x={...i,...f.attributes};return m.createNode(e,x,[])},markdownTokenizer:{name:e,level:"block",start(f){var m;const x=new RegExp(`^:::${u}(?:\\s|$)`,"m"),y=(m=f.match(x))==null?void 0:m.index;return y!==void 0?y:-1},tokenize(f,m,x){const y=new RegExp(`^:::${u}(?:\\s+\\{([^}]*)\\})?\\s*:::(?:\\n|$)`),v=f.match(y);if(!v)return;const N=v[1]||"",w=r(N);if(!o.find(E=>!(E in w)))return{type:e,raw:v[0],attributes:w}}},renderMarkdown:f=>{const m=h(f.attrs||{}),x=a(m),y=x?` {${x}}`:"";return`:::${u}${y} :::`}}}function S_(t){const{nodeName:e,name:n,getContent:r,parseAttributes:a=hy,serializeAttributes:i=fy,defaultAttributes:o={},content:c="block",allowedAttributes:u}=t,h=n||e,f=m=>{if(!u)return m;const x={};return u.forEach(y=>{y in m&&(x[y]=m[y])}),x};return{parseMarkdown:(m,x)=>{let y;if(r){const N=r(m);y=typeof N=="string"?[{type:"text",text:N}]:N}else c==="block"?y=x.parseChildren(m.tokens||[]):y=x.parseInline(m.tokens||[]);const v={...o,...m.attributes};return x.createNode(e,v,y)},markdownTokenizer:{name:e,level:"block",start(m){var x;const y=new RegExp(`^:::${h}`,"m"),v=(x=m.match(y))==null?void 0:x.index;return v!==void 0?v:-1},tokenize(m,x,y){var v;const N=new RegExp(`^:::${h}(?:\\s+\\{([^}]*)\\})?\\s*\\n`),w=m.match(N);if(!w)return;const[k,E=""]=w,C=a(E);let R=1;const O=k.length;let q="";const $=/^:::([\w-]*)(\s.*)?/gm,V=m.slice(O);for($.lastIndex=0;;){const I=$.exec(V);if(I===null)break;const te=I.index,Q=I[1];if(!((v=I[2])!=null&&v.endsWith(":::"))){if(Q)R+=1;else if(R-=1,R===0){const B=V.slice(0,te);q=B.trim();const re=m.slice(0,O+te+I[0].length);let ae=[];if(q)if(c==="block")for(ae=y.blockTokens(B),ae.forEach(J=>{J.text&&(!J.tokens||J.tokens.length===0)&&(J.tokens=y.inlineTokens(J.text))});ae.length>0;){const J=ae[ae.length-1];if(J.type==="paragraph"&&(!J.text||J.text.trim()===""))ae.pop();else break}else ae=y.inlineTokens(q);return{type:e,raw:re,attributes:C,content:q,tokens:ae}}}}}},renderMarkdown:(m,x)=>{const y=f(m.attrs||{}),v=i(y),N=v?` {${v}}`:"",w=x.renderChildren(m.content||[],` + +`);return`:::${h}${N} + +${w} + +:::`}}}function C_(t){if(!t.trim())return{};const e={},n=/(\w+)=(?:"([^"]*)"|'([^']*)')/g;let r=n.exec(t);for(;r!==null;){const[,a,i,o]=r;e[a]=i||o,r=n.exec(t)}return e}function T_(t){return Object.entries(t).filter(([,e])=>e!=null).map(([e,n])=>`${e}="${n}"`).join(" ")}function MC(t){const{nodeName:e,name:n,getContent:r,parseAttributes:a=C_,serializeAttributes:i=T_,defaultAttributes:o={},selfClosing:c=!1,allowedAttributes:u}=t,h=n||e,f=x=>{if(!u)return x;const y={};return u.forEach(v=>{const N=typeof v=="string"?v:v.name,w=typeof v=="string"?void 0:v.skipIfDefault;if(N in x){const k=x[N];if(w!==void 0&&k===w)return;y[N]=k}}),y},m=h.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return{parseMarkdown:(x,y)=>{const v={...o,...x.attributes};if(c)return y.createNode(e,v);const N=r?r(x):x.content||"";return N?y.createNode(e,v,[y.createTextNode(N)]):y.createNode(e,v,[])},markdownTokenizer:{name:e,level:"inline",start(x){const y=c?new RegExp(`\\[${m}\\s*[^\\]]*\\]`):new RegExp(`\\[${m}\\s*[^\\]]*\\][\\s\\S]*?\\[\\/${m}\\]`),v=x.match(y),N=v==null?void 0:v.index;return N!==void 0?N:-1},tokenize(x,y,v){const N=c?new RegExp(`^\\[${m}\\s*([^\\]]*)\\]`):new RegExp(`^\\[${m}\\s*([^\\]]*)\\]([\\s\\S]*?)\\[\\/${m}\\]`),w=x.match(N);if(!w)return;let k="",E="";if(c){const[,R]=w;E=R}else{const[,R,O]=w;E=R,k=O||""}const C=a(E.trim());return{type:e,raw:w[0],content:k.trim(),attributes:C}}},renderMarkdown:x=>{let y="";r?y=r(x):x.content&&x.content.length>0&&(y=x.content.filter(k=>k.type==="text").map(k=>k.text).join(""));const v=f(x.attrs||{}),N=i(v),w=N?` ${N}`:"";return c?`[${h}${w}]`:`[${h}${w}]${y}[/${h}]`}}}function Ug(t,e,n){var r,a,i,o;const c=t.split(` +`),u=[];let h="",f=0;const m=e.baseIndentSize||2;for(;f0)break;if(x.trim()===""){f+=1,h=`${h}${x} +`;continue}else return}const v=e.extractItemData(y),{indentLevel:N,mainContent:w}=v;h=`${h}${x} +`;const k=[w];for(f+=1;fte.trim()!=="");if($===-1)break;if((((a=(r=c[f+1+$].match(/^(\s*)/))==null?void 0:r[1])==null?void 0:a.length)||0)>N){k.push(O),h=`${h}${O} +`,f+=1;continue}else break}if((((o=(i=O.match(/^(\s*)/))==null?void 0:i[1])==null?void 0:o.length)||0)>N)k.push(O),h=`${h}${O} +`,f+=1;else break}let E;const C=k.slice(1);if(C.length>0){const O=C.map(q=>q.slice(N+m)).join(` +`);O.trim()&&(e.customNestedParser?E=e.customNestedParser(O):E=n.blockTokens(O))}const R=e.createToken(v,E);u.push(R)}if(u.length!==0)return{items:u,raw:h}}function py(t,e,n,r){if(!t||!Array.isArray(t.content))return"";const a=typeof n=="function"?n(r):n,[i,...o]=t.content,c=e.renderChildren([i]),u=[`${a}${c}`];return o&&o.length>0&&o.forEach(h=>{const f=e.renderChildren([h]);if(f){const m=f.split(` +`).map(x=>x?e.indent(x):"").join(` +`);u.push(m)}}),u.join(` +`)}function E_(t,e,n={}){const{state:r}=e,{doc:a,tr:i}=r,o=t;a.descendants((c,u)=>{const h=i.mapping.map(u),f=i.mapping.map(u)+c.nodeSize;let m=null;if(c.marks.forEach(y=>{if(y!==o)return!1;m=y}),!m)return;let x=!1;if(Object.keys(n).forEach(y=>{n[y]!==m.attrs[y]&&(x=!0)}),x){const y=t.type.create({...t.attrs,...n});i.removeMark(h,f,t.type),i.addMark(h,f,y)}}),i.docChanged&&e.view.dispatch(i)}var $n=class AC extends uy{constructor(){super(...arguments),this.type="node"}static create(e={}){const n=typeof e=="function"?e():e;return new AC(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}};function Sl(t){return new c_({find:t.find,handler:({state:e,range:n,match:r,pasteEvent:a})=>{const i=qt(t.getAttributes,void 0,r,a);if(i===!1||i===null)return null;const{tr:o}=e,c=r[r.length-1],u=r[0];let h=n.to;if(c){const f=u.search(/\S/),m=n.from+u.indexOf(c),x=m+c.length;if(dy(n.from,n.to,e.doc).filter(v=>v.mark.type.excluded.find(w=>w===t.type&&w!==v.mark.type)).filter(v=>v.to>m).length)return null;xn.from&&o.delete(n.from+f,m),h=n.from+f+c.length,o.addMark(n.from+f,h,t.type.create(i||{})),o.removeStoredMark(t.type)}}})}const{getOwnPropertyNames:M_,getOwnPropertySymbols:A_}=Object,{hasOwnProperty:I_}=Object.prototype;function Vx(t,e){return function(r,a,i){return t(r,a,i)&&e(r,a,i)}}function Ph(t){return function(n,r,a){if(!n||!r||typeof n!="object"||typeof r!="object")return t(n,r,a);const{cache:i}=a,o=i.get(n),c=i.get(r);if(o&&c)return o===r&&c===n;i.set(n,r),i.set(r,n);const u=t(n,r,a);return i.delete(n),i.delete(r),u}}function P_(t){return t!=null?t[Symbol.toStringTag]:void 0}function ew(t){return M_(t).concat(A_(t))}const R_=Object.hasOwn||((t,e)=>I_.call(t,e));function Rl(t,e){return t===e||!t&&!e&&t!==t&&e!==e}const O_="__v",L_="__o",D_="_owner",{getOwnPropertyDescriptor:tw,keys:nw}=Object;function __(t,e){return t.byteLength===e.byteLength&&jf(new Uint8Array(t),new Uint8Array(e))}function z_(t,e,n){let r=t.length;if(e.length!==r)return!1;for(;r-- >0;)if(!n.equals(t[r],e[r],r,r,t,e,n))return!1;return!0}function $_(t,e){return t.byteLength===e.byteLength&&jf(new Uint8Array(t.buffer,t.byteOffset,t.byteLength),new Uint8Array(e.buffer,e.byteOffset,e.byteLength))}function F_(t,e){return Rl(t.getTime(),e.getTime())}function B_(t,e){return t.name===e.name&&t.message===e.message&&t.cause===e.cause&&t.stack===e.stack}function V_(t,e){return t===e}function sw(t,e,n){const r=t.size;if(r!==e.size)return!1;if(!r)return!0;const a=new Array(r),i=t.entries();let o,c,u=0;for(;(o=i.next())&&!o.done;){const h=e.entries();let f=!1,m=0;for(;(c=h.next())&&!c.done;){if(a[m]){m++;continue}const x=o.value,y=c.value;if(n.equals(x[0],y[0],u,m,t,e,n)&&n.equals(x[1],y[1],x[0],y[0],t,e,n)){f=a[m]=!0;break}m++}if(!f)return!1;u++}return!0}const H_=Rl;function U_(t,e,n){const r=nw(t);let a=r.length;if(nw(e).length!==a)return!1;for(;a-- >0;)if(!IC(t,e,n,r[a]))return!1;return!0}function Cd(t,e,n){const r=ew(t);let a=r.length;if(ew(e).length!==a)return!1;let i,o,c;for(;a-- >0;)if(i=r[a],!IC(t,e,n,i)||(o=tw(t,i),c=tw(e,i),(o||c)&&(!o||!c||o.configurable!==c.configurable||o.enumerable!==c.enumerable||o.writable!==c.writable)))return!1;return!0}function W_(t,e){return Rl(t.valueOf(),e.valueOf())}function K_(t,e){return t.source===e.source&&t.flags===e.flags}function rw(t,e,n){const r=t.size;if(r!==e.size)return!1;if(!r)return!0;const a=new Array(r),i=t.values();let o,c;for(;(o=i.next())&&!o.done;){const u=e.values();let h=!1,f=0;for(;(c=u.next())&&!c.done;){if(!a[f]&&n.equals(o.value,c.value,o.value,c.value,t,e,n)){h=a[f]=!0;break}f++}if(!h)return!1}return!0}function jf(t,e){let n=t.byteLength;if(e.byteLength!==n||t.byteOffset!==e.byteOffset)return!1;for(;n-- >0;)if(t[n]!==e[n])return!1;return!0}function q_(t,e){return t.hostname===e.hostname&&t.pathname===e.pathname&&t.protocol===e.protocol&&t.port===e.port&&t.hash===e.hash&&t.username===e.username&&t.password===e.password}function IC(t,e,n,r){return(r===D_||r===L_||r===O_)&&(t.$$typeof||e.$$typeof)?!0:R_(e,r)&&n.equals(t[r],e[r],r,r,t,e,n)}const G_="[object ArrayBuffer]",J_="[object Arguments]",Q_="[object Boolean]",Y_="[object DataView]",X_="[object Date]",Z_="[object Error]",e7="[object Map]",t7="[object Number]",n7="[object Object]",s7="[object RegExp]",r7="[object Set]",a7="[object String]",i7={"[object Int8Array]":!0,"[object Uint8Array]":!0,"[object Uint8ClampedArray]":!0,"[object Int16Array]":!0,"[object Uint16Array]":!0,"[object Int32Array]":!0,"[object Uint32Array]":!0,"[object Float16Array]":!0,"[object Float32Array]":!0,"[object Float64Array]":!0,"[object BigInt64Array]":!0,"[object BigUint64Array]":!0},o7="[object URL]",l7=Object.prototype.toString;function c7({areArrayBuffersEqual:t,areArraysEqual:e,areDataViewsEqual:n,areDatesEqual:r,areErrorsEqual:a,areFunctionsEqual:i,areMapsEqual:o,areNumbersEqual:c,areObjectsEqual:u,arePrimitiveWrappersEqual:h,areRegExpsEqual:f,areSetsEqual:m,areTypedArraysEqual:x,areUrlsEqual:y,unknownTagComparators:v}){return function(w,k,E){if(w===k)return!0;if(w==null||k==null)return!1;const C=typeof w;if(C!==typeof k)return!1;if(C!=="object")return C==="number"?c(w,k,E):C==="function"?i(w,k,E):!1;const R=w.constructor;if(R!==k.constructor)return!1;if(R===Object)return u(w,k,E);if(Array.isArray(w))return e(w,k,E);if(R===Date)return r(w,k,E);if(R===RegExp)return f(w,k,E);if(R===Map)return o(w,k,E);if(R===Set)return m(w,k,E);const O=l7.call(w);if(O===X_)return r(w,k,E);if(O===s7)return f(w,k,E);if(O===e7)return o(w,k,E);if(O===r7)return m(w,k,E);if(O===n7)return typeof w.then!="function"&&typeof k.then!="function"&&u(w,k,E);if(O===o7)return y(w,k,E);if(O===Z_)return a(w,k,E);if(O===J_)return u(w,k,E);if(i7[O])return x(w,k,E);if(O===G_)return t(w,k,E);if(O===Y_)return n(w,k,E);if(O===Q_||O===t7||O===a7)return h(w,k,E);if(v){let q=v[O];if(!q){const $=P_(w);$&&(q=v[$])}if(q)return q(w,k,E)}return!1}}function d7({circular:t,createCustomConfig:e,strict:n}){let r={areArrayBuffersEqual:__,areArraysEqual:n?Cd:z_,areDataViewsEqual:$_,areDatesEqual:F_,areErrorsEqual:B_,areFunctionsEqual:V_,areMapsEqual:n?Vx(sw,Cd):sw,areNumbersEqual:H_,areObjectsEqual:n?Cd:U_,arePrimitiveWrappersEqual:W_,areRegExpsEqual:K_,areSetsEqual:n?Vx(rw,Cd):rw,areTypedArraysEqual:n?Vx(jf,Cd):jf,areUrlsEqual:q_,unknownTagComparators:void 0};if(e&&(r=Object.assign({},r,e(r))),t){const a=Ph(r.areArraysEqual),i=Ph(r.areMapsEqual),o=Ph(r.areObjectsEqual),c=Ph(r.areSetsEqual);r=Object.assign({},r,{areArraysEqual:a,areMapsEqual:i,areObjectsEqual:o,areSetsEqual:c})}return r}function u7(t){return function(e,n,r,a,i,o,c){return t(e,n,c)}}function h7({circular:t,comparator:e,createState:n,equals:r,strict:a}){if(n)return function(c,u){const{cache:h=t?new WeakMap:void 0,meta:f}=n();return e(c,u,{cache:h,equals:r,meta:f,strict:a})};if(t)return function(c,u){return e(c,u,{cache:new WeakMap,equals:r,meta:void 0,strict:a})};const i={cache:void 0,equals:r,meta:void 0,strict:a};return function(c,u){return e(c,u,i)}}const f7=_o();_o({strict:!0});_o({circular:!0});_o({circular:!0,strict:!0});_o({createInternalComparator:()=>Rl});_o({strict:!0,createInternalComparator:()=>Rl});_o({circular:!0,createInternalComparator:()=>Rl});_o({circular:!0,createInternalComparator:()=>Rl,strict:!0});function _o(t={}){const{circular:e=!1,createInternalComparator:n,createState:r,strict:a=!1}=t,i=d7(t),o=c7(i),c=n?n(o):u7(o);return h7({circular:e,comparator:o,createState:r,equals:c,strict:a})}var Hx={exports:{}},Ux={};/** + * @license React + * use-sync-external-store-shim/with-selector.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var aw;function p7(){if(aw)return Ux;aw=1;var t=du(),e=v2();function n(h,f){return h===f&&(h!==0||1/h===1/f)||h!==h&&f!==f}var r=typeof Object.is=="function"?Object.is:n,a=e.useSyncExternalStore,i=t.useRef,o=t.useEffect,c=t.useMemo,u=t.useDebugValue;return Ux.useSyncExternalStoreWithSelector=function(h,f,m,x,y){var v=i(null);if(v.current===null){var N={hasValue:!1,value:null};v.current=N}else N=v.current;v=c(function(){function k(q){if(!E){if(E=!0,C=q,q=x(q),y!==void 0&&N.hasValue){var $=N.value;if(y($,q))return R=$}return R=q}if($=R,r(C,q))return $;var V=x(q);return y!==void 0&&y($,V)?(C=q,$):(C=q,R=V)}var E=!1,C,R,O=m===void 0?null:m;return[function(){return k(f())},O===null?void 0:function(){return k(O())}]},[f,m,x,y]);var w=a(h,v[0],v[1]);return o(function(){N.hasValue=!0,N.value=w},[w]),u(w),w},Ux}var iw;function m7(){return iw||(iw=1,Hx.exports=p7()),Hx.exports}var x7=m7(),g7=(...t)=>e=>{t.forEach(n=>{typeof n=="function"?n(e):n&&(n.current=e)})},y7=({contentComponent:t})=>{const e=N2.useSyncExternalStore(t.subscribe,t.getSnapshot,t.getServerSnapshot);return s.jsx(s.Fragment,{children:Object.values(e)})};function b7(){const t=new Set;let e={};return{subscribe(n){return t.add(n),()=>{t.delete(n)}},getSnapshot(){return e},getServerSnapshot(){return e},setRenderer(n,r){e={...e,[n]:xj.createPortal(r.reactElement,r.element,n)},t.forEach(a=>a())},removeRenderer(n){const r={...e};delete r[n],e=r,t.forEach(a=>a())}}}var v7=class extends Vs.Component{constructor(t){var e;super(t),this.editorContentRef=Vs.createRef(),this.initialized=!1,this.state={hasContentComponentInitialized:!!((e=t.editor)!=null&&e.contentComponent)}}componentDidMount(){this.init()}componentDidUpdate(){this.init()}init(){var t;const e=this.props.editor;if(e&&!e.isDestroyed&&((t=e.view.dom)!=null&&t.parentNode)){if(e.contentComponent)return;const n=this.editorContentRef.current;n.append(...e.view.dom.parentNode.childNodes),e.setOptions({element:n}),e.contentComponent=b7(),this.state.hasContentComponentInitialized||(this.unsubscribeToContentComponent=e.contentComponent.subscribe(()=>{this.setState(r=>r.hasContentComponentInitialized?r:{hasContentComponentInitialized:!0}),this.unsubscribeToContentComponent&&this.unsubscribeToContentComponent()})),e.createNodeViews(),this.initialized=!0}}componentWillUnmount(){var t;const e=this.props.editor;if(e){this.initialized=!1,e.isDestroyed||e.view.setProps({nodeViews:{}}),this.unsubscribeToContentComponent&&this.unsubscribeToContentComponent(),e.contentComponent=null;try{if(!((t=e.view.dom)!=null&&t.parentNode))return;const n=document.createElement("div");n.append(...e.view.dom.parentNode.childNodes),e.setOptions({element:n})}catch{}}}render(){const{editor:t,innerRef:e,...n}=this.props;return s.jsxs(s.Fragment,{children:[s.jsx("div",{ref:g7(e,this.editorContentRef),...n}),(t==null?void 0:t.contentComponent)&&s.jsx(y7,{contentComponent:t.contentComponent})]})}},N7=b.forwardRef((t,e)=>{const n=Vs.useMemo(()=>Math.floor(Math.random()*4294967295).toString(),[t.editor]);return Vs.createElement(v7,{key:n,innerRef:e,...t})}),PC=Vs.memo(N7),w7=typeof window<"u"?b.useLayoutEffect:b.useEffect,j7=class{constructor(t){this.transactionNumber=0,this.lastTransactionNumber=0,this.subscribers=new Set,this.editor=t,this.lastSnapshot={editor:t,transactionNumber:0},this.getSnapshot=this.getSnapshot.bind(this),this.getServerSnapshot=this.getServerSnapshot.bind(this),this.watch=this.watch.bind(this),this.subscribe=this.subscribe.bind(this)}getSnapshot(){return this.transactionNumber===this.lastTransactionNumber?this.lastSnapshot:(this.lastTransactionNumber=this.transactionNumber,this.lastSnapshot={editor:this.editor,transactionNumber:this.transactionNumber},this.lastSnapshot)}getServerSnapshot(){return{editor:null,transactionNumber:0}}subscribe(t){return this.subscribers.add(t),()=>{this.subscribers.delete(t)}}watch(t){if(this.editor=t,this.editor){const e=()=>{this.transactionNumber+=1,this.subscribers.forEach(r=>r())},n=this.editor;return n.on("transaction",e),()=>{n.off("transaction",e)}}}};function k7(t){var e;const[n]=b.useState(()=>new j7(t.editor)),r=x7.useSyncExternalStoreWithSelector(n.subscribe,n.getSnapshot,n.getServerSnapshot,t.selector,(e=t.equalityFn)!=null?e:f7);return w7(()=>n.watch(t.editor),[t.editor,n]),b.useDebugValue(r),r}var S7=!1,Wg=typeof window>"u",C7=Wg||!!(typeof window<"u"&&window.next),T7=class RC{constructor(e){this.editor=null,this.subscriptions=new Set,this.isComponentMounted=!1,this.previousDeps=null,this.instanceId="",this.options=e,this.subscriptions=new Set,this.setEditor(this.getInitialEditor()),this.scheduleDestroy(),this.getEditor=this.getEditor.bind(this),this.getServerSnapshot=this.getServerSnapshot.bind(this),this.subscribe=this.subscribe.bind(this),this.refreshEditorInstance=this.refreshEditorInstance.bind(this),this.scheduleDestroy=this.scheduleDestroy.bind(this),this.onRender=this.onRender.bind(this),this.createEditor=this.createEditor.bind(this)}setEditor(e){this.editor=e,this.instanceId=Math.random().toString(36).slice(2,9),this.subscriptions.forEach(n=>n())}getInitialEditor(){return this.options.current.immediatelyRender===void 0?Wg||C7?null:this.createEditor():(this.options.current.immediatelyRender,this.options.current.immediatelyRender?this.createEditor():null)}createEditor(){const e={...this.options.current,onBeforeCreate:(...r)=>{var a,i;return(i=(a=this.options.current).onBeforeCreate)==null?void 0:i.call(a,...r)},onBlur:(...r)=>{var a,i;return(i=(a=this.options.current).onBlur)==null?void 0:i.call(a,...r)},onCreate:(...r)=>{var a,i;return(i=(a=this.options.current).onCreate)==null?void 0:i.call(a,...r)},onDestroy:(...r)=>{var a,i;return(i=(a=this.options.current).onDestroy)==null?void 0:i.call(a,...r)},onFocus:(...r)=>{var a,i;return(i=(a=this.options.current).onFocus)==null?void 0:i.call(a,...r)},onSelectionUpdate:(...r)=>{var a,i;return(i=(a=this.options.current).onSelectionUpdate)==null?void 0:i.call(a,...r)},onTransaction:(...r)=>{var a,i;return(i=(a=this.options.current).onTransaction)==null?void 0:i.call(a,...r)},onUpdate:(...r)=>{var a,i;return(i=(a=this.options.current).onUpdate)==null?void 0:i.call(a,...r)},onContentError:(...r)=>{var a,i;return(i=(a=this.options.current).onContentError)==null?void 0:i.call(a,...r)},onDrop:(...r)=>{var a,i;return(i=(a=this.options.current).onDrop)==null?void 0:i.call(a,...r)},onPaste:(...r)=>{var a,i;return(i=(a=this.options.current).onPaste)==null?void 0:i.call(a,...r)},onDelete:(...r)=>{var a,i;return(i=(a=this.options.current).onDelete)==null?void 0:i.call(a,...r)}};return new y_(e)}getEditor(){return this.editor}getServerSnapshot(){return null}subscribe(e){return this.subscriptions.add(e),()=>{this.subscriptions.delete(e)}}static compareOptions(e,n){return Object.keys(e).every(r=>["onCreate","onBeforeCreate","onDestroy","onUpdate","onTransaction","onFocus","onBlur","onSelectionUpdate","onContentError","onDrop","onPaste"].includes(r)?!0:r==="extensions"&&e.extensions&&n.extensions?e.extensions.length!==n.extensions.length?!1:e.extensions.every((a,i)=>{var o;return a===((o=n.extensions)==null?void 0:o[i])}):e[r]===n[r])}onRender(e){return()=>(this.isComponentMounted=!0,clearTimeout(this.scheduledDestructionTimeout),this.editor&&!this.editor.isDestroyed&&e.length===0?RC.compareOptions(this.options.current,this.editor.options)||this.editor.setOptions({...this.options.current,editable:this.editor.isEditable}):this.refreshEditorInstance(e),()=>{this.isComponentMounted=!1,this.scheduleDestroy()})}refreshEditorInstance(e){if(this.editor&&!this.editor.isDestroyed){if(this.previousDeps===null){this.previousDeps=e;return}if(this.previousDeps.length===e.length&&this.previousDeps.every((r,a)=>r===e[a]))return}this.editor&&!this.editor.isDestroyed&&this.editor.destroy(),this.setEditor(this.createEditor()),this.previousDeps=e}scheduleDestroy(){const e=this.instanceId,n=this.editor;this.scheduledDestructionTimeout=setTimeout(()=>{if(this.isComponentMounted&&this.instanceId===e){n&&n.setOptions(this.options.current);return}n&&!n.isDestroyed&&(n.destroy(),this.instanceId===e&&this.setEditor(null))},1)}};function E7(t={},e=[]){const n=b.useRef(t);n.current=t;const[r]=b.useState(()=>new T7(n)),a=N2.useSyncExternalStore(r.subscribe,r.getEditor,r.getServerSnapshot);return b.useDebugValue(a),b.useEffect(r.onRender(e)),k7({editor:a,selector:({transactionNumber:i})=>t.shouldRerenderOnTransaction===!1||t.shouldRerenderOnTransaction===void 0?null:t.immediatelyRender&&i===0?0:i+1}),a}var OC=b.createContext({editor:null});OC.Consumer;var M7=b.createContext({onDragStart:()=>{},nodeViewContentChildren:void 0,nodeViewContentRef:()=>{}}),A7=()=>b.useContext(M7);Vs.forwardRef((t,e)=>{const{onDragStart:n}=A7(),r=t.as||"div";return s.jsx(r,{...t,ref:e,"data-node-view-wrapper":"",onDragStart:n,style:{whiteSpace:"normal",...t.style}})});Vs.createContext({markViewContentRef:()=>{}});var my=b.createContext({get editor(){throw new Error("useTiptap must be used within a provider")}});my.displayName="TiptapContext";var I7=()=>b.useContext(my);function LC({editor:t,instance:e,children:n}){const r=t??e;if(!r)throw new Error("Tiptap: An editor instance is required. Pass a non-null `editor` prop.");const a=b.useMemo(()=>({editor:r}),[r]),i=b.useMemo(()=>({editor:r}),[r]);return s.jsx(OC.Provider,{value:i,children:s.jsx(my.Provider,{value:a,children:n})})}LC.displayName="Tiptap";function DC({...t}){const{editor:e}=I7();return s.jsx(PC,{editor:e,...t})}DC.displayName="Tiptap.Content";Object.assign(LC,{Content:DC});var kf=(t,e)=>{if(t==="slot")return 0;if(t instanceof Function)return t(e);const{children:n,...r}=e??{};if(t==="svg")throw new Error("SVG elements are not supported in the JSX syntax, use the array syntax instead");return[t,r,n]},P7=/^\s*>\s$/,R7=$n.create({name:"blockquote",addOptions(){return{HTMLAttributes:{}}},content:"block+",group:"block",defining:!0,parseHTML(){return[{tag:"blockquote"}]},renderHTML({HTMLAttributes:t}){return kf("blockquote",{...Gt(this.options.HTMLAttributes,t),children:kf("slot",{})})},parseMarkdown:(t,e)=>e.createNode("blockquote",void 0,e.parseChildren(t.tokens||[])),renderMarkdown:(t,e)=>{if(!t.content)return"";const n=">",r=[];return t.content.forEach(a=>{const c=e.renderChildren([a]).split(` +`).map(u=>u.trim()===""?n:`${n} ${u}`);r.push(c.join(` +`))}),r.join(` +${n} +`)},addCommands(){return{setBlockquote:()=>({commands:t})=>t.wrapIn(this.name),toggleBlockquote:()=>({commands:t})=>t.toggleWrap(this.name),unsetBlockquote:()=>({commands:t})=>t.lift(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-b":()=>this.editor.commands.toggleBlockquote()}},addInputRules(){return[zc({find:P7,type:this.type})]}}),O7=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))$/,L7=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))/g,D7=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))$/,_7=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))/g,z7=Pl.create({name:"bold",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"strong"},{tag:"b",getAttrs:t=>t.style.fontWeight!=="normal"&&null},{style:"font-weight=400",clearMark:t=>t.type.name===this.name},{style:"font-weight",getAttrs:t=>/^(bold(er)?|[5-9]\d{2,})$/.test(t)&&null}]},renderHTML({HTMLAttributes:t}){return kf("strong",{...Gt(this.options.HTMLAttributes,t),children:kf("slot",{})})},markdownTokenName:"strong",parseMarkdown:(t,e)=>e.applyMark("bold",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`**${e.renderChildren(t)}**`,addCommands(){return{setBold:()=>({commands:t})=>t.setMark(this.name),toggleBold:()=>({commands:t})=>t.toggleMark(this.name),unsetBold:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-b":()=>this.editor.commands.toggleBold(),"Mod-B":()=>this.editor.commands.toggleBold()}},addInputRules(){return[_c({find:O7,type:this.type}),_c({find:D7,type:this.type})]},addPasteRules(){return[Sl({find:L7,type:this.type}),Sl({find:_7,type:this.type})]}}),$7=/(^|[^`])`([^`]+)`(?!`)$/,F7=/(^|[^`])`([^`]+)`(?!`)/g,B7=Pl.create({name:"code",addOptions(){return{HTMLAttributes:{}}},excludes:"_",code:!0,exitable:!0,parseHTML(){return[{tag:"code"}]},renderHTML({HTMLAttributes:t}){return["code",Gt(this.options.HTMLAttributes,t),0]},markdownTokenName:"codespan",parseMarkdown:(t,e)=>e.applyMark("code",[{type:"text",text:t.text||""}]),renderMarkdown:(t,e)=>t.content?`\`${e.renderChildren(t.content)}\``:"",addCommands(){return{setCode:()=>({commands:t})=>t.setMark(this.name),toggleCode:()=>({commands:t})=>t.toggleMark(this.name),unsetCode:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-e":()=>this.editor.commands.toggleCode()}},addInputRules(){return[_c({find:$7,type:this.type})]},addPasteRules(){return[Sl({find:F7,type:this.type})]}}),Wx=4,V7=/^```([a-z]+)?[\s\n]$/,H7=/^~~~([a-z]+)?[\s\n]$/,U7=$n.create({name:"codeBlock",addOptions(){return{languageClassPrefix:"language-",exitOnTripleEnter:!0,exitOnArrowDown:!0,defaultLanguage:null,enableTabIndentation:!1,tabSize:Wx,HTMLAttributes:{}}},content:"text*",marks:"",group:"block",code:!0,defining:!0,addAttributes(){return{language:{default:this.options.defaultLanguage,parseHTML:t=>{var e;const{languageClassPrefix:n}=this.options;if(!n)return null;const i=[...((e=t.firstElementChild)==null?void 0:e.classList)||[]].filter(o=>o.startsWith(n)).map(o=>o.replace(n,""))[0];return i||null},rendered:!1}}},parseHTML(){return[{tag:"pre",preserveWhitespace:"full"}]},renderHTML({node:t,HTMLAttributes:e}){return["pre",Gt(this.options.HTMLAttributes,e),["code",{class:t.attrs.language?this.options.languageClassPrefix+t.attrs.language:null},0]]},markdownTokenName:"code",parseMarkdown:(t,e)=>{var n,r;return((n=t.raw)==null?void 0:n.startsWith("```"))===!1&&((r=t.raw)==null?void 0:r.startsWith("~~~"))===!1&&t.codeBlockStyle!=="indented"?[]:e.createNode("codeBlock",{language:t.lang||null},t.text?[e.createTextNode(t.text)]:[])},renderMarkdown:(t,e)=>{var n;let r="";const a=((n=t.attrs)==null?void 0:n.language)||"";return t.content?r=[`\`\`\`${a}`,e.renderChildren(t.content),"```"].join(` +`):r=`\`\`\`${a} + +\`\`\``,r},addCommands(){return{setCodeBlock:t=>({commands:e})=>e.setNode(this.name,t),toggleCodeBlock:t=>({commands:e})=>e.toggleNode(this.name,"paragraph",t)}},addKeyboardShortcuts(){return{"Mod-Alt-c":()=>this.editor.commands.toggleCodeBlock(),Backspace:()=>{const{empty:t,$anchor:e}=this.editor.state.selection,n=e.pos===1;return!t||e.parent.type.name!==this.name?!1:n||!e.parent.textContent.length?this.editor.commands.clearNodes():!1},Tab:({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;const n=(e=this.options.tabSize)!=null?e:Wx,{state:r}=t,{selection:a}=r,{$from:i,empty:o}=a;if(i.parent.type!==this.type)return!1;const c=" ".repeat(n);return o?t.commands.insertContent(c):t.commands.command(({tr:u})=>{const{from:h,to:f}=a,y=r.doc.textBetween(h,f,` +`,` +`).split(` +`).map(v=>c+v).join(` +`);return u.replaceWith(h,f,r.schema.text(y)),!0})},"Shift-Tab":({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;const n=(e=this.options.tabSize)!=null?e:Wx,{state:r}=t,{selection:a}=r,{$from:i,empty:o}=a;return i.parent.type!==this.type?!1:o?t.commands.command(({tr:c})=>{var u;const{pos:h}=i,f=i.start(),m=i.end(),y=r.doc.textBetween(f,m,` +`,` +`).split(` +`);let v=0,N=0;const w=h-f;for(let q=0;q=w){v=q;break}N+=y[q].length+1}const E=((u=y[v].match(/^ */))==null?void 0:u[0])||"",C=Math.min(E.length,n);if(C===0)return!0;let R=f;for(let q=0;q{const{from:u,to:h}=a,x=r.doc.textBetween(u,h,` +`,` +`).split(` +`).map(y=>{var v;const N=((v=y.match(/^ */))==null?void 0:v[0])||"",w=Math.min(N.length,n);return y.slice(w)}).join(` +`);return c.replaceWith(u,h,r.schema.text(x)),!0})},Enter:({editor:t})=>{if(!this.options.exitOnTripleEnter)return!1;const{state:e}=t,{selection:n}=e,{$from:r,empty:a}=n;if(!a||r.parent.type!==this.type)return!1;const i=r.parentOffset===r.parent.nodeSize-2,o=r.parent.textContent.endsWith(` + +`);return!i||!o?!1:t.chain().command(({tr:c})=>(c.delete(r.pos-2,r.pos),!0)).exitCode().run()},ArrowDown:({editor:t})=>{if(!this.options.exitOnArrowDown)return!1;const{state:e}=t,{selection:n,doc:r}=e,{$from:a,empty:i}=n;if(!i||a.parent.type!==this.type||!(a.parentOffset===a.parent.nodeSize-2))return!1;const c=a.after();return c===void 0?!1:r.nodeAt(c)?t.commands.command(({tr:h})=>(h.setSelection(lt.near(r.resolve(c))),!0)):t.commands.exitCode()}}},addInputRules(){return[Hg({find:V7,type:this.type,getAttributes:t=>({language:t[1]})}),Hg({find:H7,type:this.type,getAttributes:t=>({language:t[1]})})]},addProseMirrorPlugins(){return[new dn({key:new gn("codeBlockVSCodeHandler"),props:{handlePaste:(t,e)=>{if(!e.clipboardData||this.editor.isActive(this.type.name))return!1;const n=e.clipboardData.getData("text/plain"),r=e.clipboardData.getData("vscode-editor-data"),a=r?JSON.parse(r):void 0,i=a==null?void 0:a.mode;if(!n||!i)return!1;const{tr:o,schema:c}=t.state,u=c.text(n.replace(/\r\n?/g,` +`));return o.replaceSelectionWith(this.type.create({language:i},u)),o.selection.$from.parent.type!==this.type&&o.setSelection(nt.near(o.doc.resolve(Math.max(0,o.selection.from-2)))),o.setMeta("paste",!0),t.dispatch(o),!0}}})]}}),W7=$n.create({name:"doc",topNode:!0,content:"block+",renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` + +`):""}),K7=$n.create({name:"hardBreak",markdownTokenName:"br",addOptions(){return{keepMarks:!0,HTMLAttributes:{}}},inline:!0,group:"inline",selectable:!1,linebreakReplacement:!0,parseHTML(){return[{tag:"br"}]},renderHTML({HTMLAttributes:t}){return["br",Gt(this.options.HTMLAttributes,t)]},renderText(){return` +`},renderMarkdown:()=>` +`,parseMarkdown:()=>({type:"hardBreak"}),addCommands(){return{setHardBreak:()=>({commands:t,chain:e,state:n,editor:r})=>t.first([()=>t.exitCode(),()=>t.command(()=>{const{selection:a,storedMarks:i}=n;if(a.$from.parent.type.spec.isolating)return!1;const{keepMarks:o}=this.options,{splittableMarks:c}=r.extensionManager,u=i||a.$to.parentOffset&&a.$from.marks();return e().insertContent({type:this.name}).command(({tr:h,dispatch:f})=>{if(f&&u&&o){const m=u.filter(x=>c.includes(x.type.name));h.ensureMarks(m)}return!0}).run()})])}},addKeyboardShortcuts(){return{"Mod-Enter":()=>this.editor.commands.setHardBreak(),"Shift-Enter":()=>this.editor.commands.setHardBreak()}}}),q7=$n.create({name:"heading",addOptions(){return{levels:[1,2,3,4,5,6],HTMLAttributes:{}}},content:"inline*",group:"block",defining:!0,addAttributes(){return{level:{default:1,rendered:!1}}},parseHTML(){return this.options.levels.map(t=>({tag:`h${t}`,attrs:{level:t}}))},renderHTML({node:t,HTMLAttributes:e}){return[`h${this.options.levels.includes(t.attrs.level)?t.attrs.level:this.options.levels[0]}`,Gt(this.options.HTMLAttributes,e),0]},parseMarkdown:(t,e)=>e.createNode("heading",{level:t.depth||1},e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>{var n;const r=(n=t.attrs)!=null&&n.level?parseInt(t.attrs.level,10):1,a="#".repeat(r);return t.content?`${a} ${e.renderChildren(t.content)}`:""},addCommands(){return{setHeading:t=>({commands:e})=>this.options.levels.includes(t.level)?e.setNode(this.name,t):!1,toggleHeading:t=>({commands:e})=>this.options.levels.includes(t.level)?e.toggleNode(this.name,"paragraph",t):!1}},addKeyboardShortcuts(){return this.options.levels.reduce((t,e)=>({...t,[`Mod-Alt-${e}`]:()=>this.editor.commands.toggleHeading({level:e})}),{})},addInputRules(){return this.options.levels.map(t=>Hg({find:new RegExp(`^(#{${Math.min(...this.options.levels)},${t}})\\s$`),type:this.type,getAttributes:{level:t}}))}}),G7=$n.create({name:"horizontalRule",addOptions(){return{HTMLAttributes:{},nextNodeType:"paragraph"}},group:"block",parseHTML(){return[{tag:"hr"}]},renderHTML({HTMLAttributes:t}){return["hr",Gt(this.options.HTMLAttributes,t)]},markdownTokenName:"hr",parseMarkdown:(t,e)=>e.createNode("horizontalRule"),renderMarkdown:()=>"---",addCommands(){return{setHorizontalRule:()=>({chain:t,state:e})=>{if(!N_(e,e.schema.nodes[this.name]))return!1;const{selection:n}=e,{$to:r}=n,a=t();return uC(n)?a.insertContentAt(r.pos,{type:this.name}):a.insertContent({type:this.name}),a.command(({state:i,tr:o,dispatch:c})=>{if(c){const{$to:u}=o.selection,h=u.end();if(u.nodeAfter)u.nodeAfter.isTextblock?o.setSelection(nt.create(o.doc,u.pos+1)):u.nodeAfter.isBlock?o.setSelection(tt.create(o.doc,u.pos)):o.setSelection(nt.create(o.doc,u.pos));else{const f=i.schema.nodes[this.options.nextNodeType]||u.parent.type.contentMatch.defaultType,m=f==null?void 0:f.create();m&&(o.insert(h,m),o.setSelection(nt.create(o.doc,h+1)))}o.scrollIntoView()}return!0}).run()}}},addInputRules(){return[EC({find:/^(?:---|—-|___\s|\*\*\*\s)$/,type:this.type})]}}),J7=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))$/,Q7=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))/g,Y7=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))$/,X7=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))/g,Z7=Pl.create({name:"italic",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"em"},{tag:"i",getAttrs:t=>t.style.fontStyle!=="normal"&&null},{style:"font-style=normal",clearMark:t=>t.type.name===this.name},{style:"font-style=italic"}]},renderHTML({HTMLAttributes:t}){return["em",Gt(this.options.HTMLAttributes,t),0]},addCommands(){return{setItalic:()=>({commands:t})=>t.setMark(this.name),toggleItalic:()=>({commands:t})=>t.toggleMark(this.name),unsetItalic:()=>({commands:t})=>t.unsetMark(this.name)}},markdownTokenName:"em",parseMarkdown:(t,e)=>e.applyMark("italic",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`*${e.renderChildren(t)}*`,addKeyboardShortcuts(){return{"Mod-i":()=>this.editor.commands.toggleItalic(),"Mod-I":()=>this.editor.commands.toggleItalic()}},addInputRules(){return[_c({find:J7,type:this.type}),_c({find:Y7,type:this.type})]},addPasteRules(){return[Sl({find:Q7,type:this.type}),Sl({find:X7,type:this.type})]}});const ez="aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3nlop4pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2o0dyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rckmsd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0stone5umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5mögensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2olterskluwer11odside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2",tz="ελ1υ2бг1ел3дети4ею2католик6ом3мкд2он1сква6онлайн5рг3рус2ф2сайт3рб3укр3қаз3հայ3ישראל5קום3ابوظبي5رامكو5لاردن4بحرين5جزائر5سعودية6عليان5مغرب5مارات5یران5بارت2زار4يتك3ھارت5تونس4سودان3رية5شبكة4عراق2ب2مان4فلسطين6قطر3كاثوليك6وم3مصر2ليسيا5وريتانيا7قع4همراه5پاکستان7ڀارت4कॉम3नेट3भारत0म्3ोत5संगठन5বাংলা5ভারত2ৰত4ਭਾਰਤ4ભારત4ଭାରତ4இந்தியா6லங்கை6சிங்கப்பூர்11భారత్5ಭಾರತ4ഭാരതം5ලංකා4คอม3ไทย3ລາວ3გე2みんな3アマゾン4クラウド4グーグル4コム2ストア3セール3ファッション6ポイント4世界2中信1国1國1文网3亚马逊3企业2佛山2信息2健康2八卦2公司1益2台湾1灣2商城1店1标2嘉里0大酒店5在线2大拿2天主教3娱乐2家電2广东2微博2慈善2我爱你3手机2招聘2政务1府2新加坡2闻2时尚2書籍2机构2淡马锡3游戏2澳門2点看2移动2组织机构4网址1店1站1络2联通2谷歌2购物2通販2集团2電訊盈科4飞利浦3食品2餐厅2香格里拉3港2닷넷1컴2삼성2한국2",Kg="numeric",qg="ascii",Gg="alpha",Vd="asciinumeric",Pd="alphanumeric",Jg="domain",_C="emoji",nz="scheme",sz="slashscheme",Kx="whitespace";function rz(t,e){return t in e||(e[t]=[]),e[t]}function ul(t,e,n){e[Kg]&&(e[Vd]=!0,e[Pd]=!0),e[qg]&&(e[Vd]=!0,e[Gg]=!0),e[Vd]&&(e[Pd]=!0),e[Gg]&&(e[Pd]=!0),e[Pd]&&(e[Jg]=!0),e[_C]&&(e[Jg]=!0);for(const r in e){const a=rz(r,n);a.indexOf(t)<0&&a.push(t)}}function az(t,e){const n={};for(const r in e)e[r].indexOf(t)>=0&&(n[r]=!0);return n}function nr(t=null){this.j={},this.jr=[],this.jd=null,this.t=t}nr.groups={};nr.prototype={accepts(){return!!this.t},go(t){const e=this,n=e.j[t];if(n)return n;for(let r=0;rt.ta(e,n,r,a),En=(t,e,n,r,a)=>t.tr(e,n,r,a),ow=(t,e,n,r,a)=>t.ts(e,n,r,a),Re=(t,e,n,r,a)=>t.tt(e,n,r,a),hi="WORD",Qg="UWORD",zC="ASCIINUMERICAL",$C="ALPHANUMERICAL",iu="LOCALHOST",Yg="TLD",Xg="UTLD",qh="SCHEME",mc="SLASH_SCHEME",xy="NUM",Zg="WS",gy="NL",Hd="OPENBRACE",Ud="CLOSEBRACE",Sf="OPENBRACKET",Cf="CLOSEBRACKET",Tf="OPENPAREN",Ef="CLOSEPAREN",Mf="OPENANGLEBRACKET",Af="CLOSEANGLEBRACKET",If="FULLWIDTHLEFTPAREN",Pf="FULLWIDTHRIGHTPAREN",Rf="LEFTCORNERBRACKET",Of="RIGHTCORNERBRACKET",Lf="LEFTWHITECORNERBRACKET",Df="RIGHTWHITECORNERBRACKET",_f="FULLWIDTHLESSTHAN",zf="FULLWIDTHGREATERTHAN",$f="AMPERSAND",Ff="APOSTROPHE",Bf="ASTERISK",lo="AT",Vf="BACKSLASH",Hf="BACKTICK",Uf="CARET",ho="COLON",yy="COMMA",Wf="DOLLAR",Sa="DOT",Kf="EQUALS",by="EXCLAMATION",Lr="HYPHEN",Wd="PERCENT",qf="PIPE",Gf="PLUS",Jf="POUND",Kd="QUERY",vy="QUOTE",FC="FULLWIDTHMIDDLEDOT",Ny="SEMI",Ca="SLASH",qd="TILDE",Qf="UNDERSCORE",BC="EMOJI",Yf="SYM";var VC=Object.freeze({__proto__:null,ALPHANUMERICAL:$C,AMPERSAND:$f,APOSTROPHE:Ff,ASCIINUMERICAL:zC,ASTERISK:Bf,AT:lo,BACKSLASH:Vf,BACKTICK:Hf,CARET:Uf,CLOSEANGLEBRACKET:Af,CLOSEBRACE:Ud,CLOSEBRACKET:Cf,CLOSEPAREN:Ef,COLON:ho,COMMA:yy,DOLLAR:Wf,DOT:Sa,EMOJI:BC,EQUALS:Kf,EXCLAMATION:by,FULLWIDTHGREATERTHAN:zf,FULLWIDTHLEFTPAREN:If,FULLWIDTHLESSTHAN:_f,FULLWIDTHMIDDLEDOT:FC,FULLWIDTHRIGHTPAREN:Pf,HYPHEN:Lr,LEFTCORNERBRACKET:Rf,LEFTWHITECORNERBRACKET:Lf,LOCALHOST:iu,NL:gy,NUM:xy,OPENANGLEBRACKET:Mf,OPENBRACE:Hd,OPENBRACKET:Sf,OPENPAREN:Tf,PERCENT:Wd,PIPE:qf,PLUS:Gf,POUND:Jf,QUERY:Kd,QUOTE:vy,RIGHTCORNERBRACKET:Of,RIGHTWHITECORNERBRACKET:Df,SCHEME:qh,SEMI:Ny,SLASH:Ca,SLASH_SCHEME:mc,SYM:Yf,TILDE:qd,TLD:Yg,UNDERSCORE:Qf,UTLD:Xg,UWORD:Qg,WORD:hi,WS:Zg});const di=/[a-z]/,Td=new RegExp("\\p{L}","u"),qx=new RegExp("\\p{Emoji}","u"),ui=/\d/,Gx=/\s/,lw="\r",Jx=` +`,iz="️",oz="‍",Qx="";let Rh=null,Oh=null;function lz(t=[]){const e={};nr.groups=e;const n=new nr;Rh==null&&(Rh=cw(ez)),Oh==null&&(Oh=cw(tz)),Re(n,"'",Ff),Re(n,"{",Hd),Re(n,"}",Ud),Re(n,"[",Sf),Re(n,"]",Cf),Re(n,"(",Tf),Re(n,")",Ef),Re(n,"<",Mf),Re(n,">",Af),Re(n,"(",If),Re(n,")",Pf),Re(n,"「",Rf),Re(n,"」",Of),Re(n,"『",Lf),Re(n,"』",Df),Re(n,"<",_f),Re(n,">",zf),Re(n,"&",$f),Re(n,"*",Bf),Re(n,"@",lo),Re(n,"`",Hf),Re(n,"^",Uf),Re(n,":",ho),Re(n,",",yy),Re(n,"$",Wf),Re(n,".",Sa),Re(n,"=",Kf),Re(n,"!",by),Re(n,"-",Lr),Re(n,"%",Wd),Re(n,"|",qf),Re(n,"+",Gf),Re(n,"#",Jf),Re(n,"?",Kd),Re(n,'"',vy),Re(n,"/",Ca),Re(n,";",Ny),Re(n,"~",qd),Re(n,"_",Qf),Re(n,"\\",Vf),Re(n,"・",FC);const r=En(n,ui,xy,{[Kg]:!0});En(r,ui,r);const a=En(r,di,zC,{[Vd]:!0}),i=En(r,Td,$C,{[Pd]:!0}),o=En(n,di,hi,{[qg]:!0});En(o,ui,a),En(o,di,o),En(a,ui,a),En(a,di,a);const c=En(n,Td,Qg,{[Gg]:!0});En(c,di),En(c,ui,i),En(c,Td,c),En(i,ui,i),En(i,di),En(i,Td,i);const u=Re(n,Jx,gy,{[Kx]:!0}),h=Re(n,lw,Zg,{[Kx]:!0}),f=En(n,Gx,Zg,{[Kx]:!0});Re(n,Qx,f),Re(h,Jx,u),Re(h,Qx,f),En(h,Gx,f),Re(f,lw),Re(f,Jx),En(f,Gx,f),Re(f,Qx,f);const m=En(n,qx,BC,{[_C]:!0});Re(m,"#"),En(m,qx,m),Re(m,iz,m);const x=Re(m,oz);Re(x,"#"),En(x,qx,m);const y=[[di,o],[ui,a]],v=[[di,null],[Td,c],[ui,i]];for(let N=0;NN[0]>w[0]?1:-1);for(let N=0;N=0?E[Jg]=!0:di.test(w)?ui.test(w)?E[Vd]=!0:E[qg]=!0:E[Kg]=!0,ow(n,w,w,E)}return ow(n,"localhost",iu,{ascii:!0}),n.jd=new nr(Yf),{start:n,tokens:Object.assign({groups:e},VC)}}function HC(t,e){const n=cz(e.replace(/[A-Z]/g,c=>c.toLowerCase())),r=n.length,a=[];let i=0,o=0;for(;o=0&&(m+=n[o].length,x++),h+=n[o].length,i+=n[o].length,o++;i-=m,o-=x,h-=m,a.push({t:f.t,v:e.slice(i-h,i),s:i-h,e:i})}return a}function cz(t){const e=[],n=t.length;let r=0;for(;r56319||r+1===n||(i=t.charCodeAt(r+1))<56320||i>57343?t[r]:t.slice(r,r+2);e.push(o),r+=o.length}return e}function so(t,e,n,r,a){let i;const o=e.length;for(let c=0;c=0;)i++;if(i>0){e.push(n.join(""));for(let o=parseInt(t.substring(r,r+i),10);o>0;o--)n.pop();r+=i}else n.push(t[r]),r++}return e}const ou={defaultProtocol:"http",events:null,format:dw,formatHref:dw,nl2br:!1,tagName:"a",target:null,rel:null,validate:!0,truncate:1/0,className:null,attributes:null,ignoreTags:[],render:null};function wy(t,e=null){let n=Object.assign({},ou);t&&(n=Object.assign(n,t instanceof wy?t.o:t));const r=n.ignoreTags,a=[];for(let i=0;in?r.substring(0,n)+"…":r},toFormattedHref(t){return t.get("formatHref",this.toHref(t.get("defaultProtocol")),this)},startIndex(){return this.tk[0].s},endIndex(){return this.tk[this.tk.length-1].e},toObject(t=ou.defaultProtocol){return{type:this.t,value:this.toString(),isLink:this.isLink,href:this.toHref(t),start:this.startIndex(),end:this.endIndex()}},toFormattedObject(t){return{type:this.t,value:this.toFormattedString(t),isLink:this.isLink,href:this.toFormattedHref(t),start:this.startIndex(),end:this.endIndex()}},validate(t){return t.get("validate",this.toString(),this)},render(t){const e=this,n=this.toHref(t.get("defaultProtocol")),r=t.get("formatHref",n,this),a=t.get("tagName",n,e),i=this.toFormattedString(t),o={},c=t.get("className",n,e),u=t.get("target",n,e),h=t.get("rel",n,e),f=t.getObj("attributes",n,e),m=t.getObj("events",n,e);return o.href=r,c&&(o.class=c),u&&(o.target=u),h&&(o.rel=h),f&&Object.assign(o,f),{tagName:a,attributes:o,content:i,eventListeners:m}}};function Ep(t,e){class n extends UC{constructor(a,i){super(a,i),this.t=t}}for(const r in e)n.prototype[r]=e[r];return n.t=t,n}const uw=Ep("email",{isLink:!0,toHref(){return"mailto:"+this.toString()}}),hw=Ep("text"),dz=Ep("nl"),Lh=Ep("url",{isLink:!0,toHref(t=ou.defaultProtocol){return this.hasProtocol()?this.v:`${t}://${this.v}`},hasProtocol(){const t=this.tk;return t.length>=2&&t[0].t!==iu&&t[1].t===ho}}),Or=t=>new nr(t);function uz({groups:t}){const e=t.domain.concat([$f,Bf,lo,Vf,Hf,Uf,Wf,Kf,Lr,xy,Wd,qf,Gf,Jf,Ca,Yf,qd,Qf]),n=[Ff,ho,yy,Sa,by,Wd,Kd,vy,Ny,Mf,Af,Hd,Ud,Cf,Sf,Tf,Ef,If,Pf,Rf,Of,Lf,Df,_f,zf],r=[$f,Ff,Bf,Vf,Hf,Uf,Wf,Kf,Lr,Hd,Ud,Wd,qf,Gf,Jf,Kd,Ca,Yf,qd,Qf],a=Or(),i=Re(a,qd);bt(i,r,i),bt(i,t.domain,i);const o=Or(),c=Or(),u=Or();bt(a,t.domain,o),bt(a,t.scheme,c),bt(a,t.slashscheme,u),bt(o,r,i),bt(o,t.domain,o);const h=Re(o,lo);Re(i,lo,h),Re(c,lo,h),Re(u,lo,h);const f=Re(i,Sa);bt(f,r,i),bt(f,t.domain,i);const m=Or();bt(h,t.domain,m),bt(m,t.domain,m);const x=Re(m,Sa);bt(x,t.domain,m);const y=Or(uw);bt(x,t.tld,y),bt(x,t.utld,y),Re(h,iu,y);const v=Re(m,Lr);Re(v,Lr,v),bt(v,t.domain,m),bt(y,t.domain,m),Re(y,Sa,x),Re(y,Lr,v);const N=Re(y,ho);bt(N,t.numeric,uw);const w=Re(o,Lr),k=Re(o,Sa);Re(w,Lr,w),bt(w,t.domain,o),bt(k,r,i),bt(k,t.domain,o);const E=Or(Lh);bt(k,t.tld,E),bt(k,t.utld,E),bt(E,t.domain,o),bt(E,r,i),Re(E,Sa,k),Re(E,Lr,w),Re(E,lo,h);const C=Re(E,ho),R=Or(Lh);bt(C,t.numeric,R);const O=Or(Lh),q=Or();bt(O,e,O),bt(O,n,q),bt(q,e,O),bt(q,n,q),Re(E,Ca,O),Re(R,Ca,O);const $=Re(c,ho),V=Re(u,ho),I=Re(V,Ca),te=Re(I,Ca);bt(c,t.domain,o),Re(c,Sa,k),Re(c,Lr,w),bt(u,t.domain,o),Re(u,Sa,k),Re(u,Lr,w),bt($,t.domain,O),Re($,Ca,O),Re($,Kd,O),bt(te,t.domain,O),bt(te,e,O),Re(te,Ca,O);const Q=[[Hd,Ud],[Sf,Cf],[Tf,Ef],[Mf,Af],[If,Pf],[Rf,Of],[Lf,Df],[_f,zf]];for(let B=0;B=0&&x++,a++,f++;if(x<0)a-=f,a0&&(i.push(Yx(hw,e,o)),o=[]),a-=x,f-=x;const y=m.t,v=n.slice(a-f,a);i.push(Yx(y,e,v))}}return o.length>0&&i.push(Yx(hw,e,o)),i}function Yx(t,e,n){const r=n[0].s,a=n[n.length-1].e,i=e.slice(r,a);return new t(i,n)}const fz=typeof console<"u"&&console&&console.warn||(()=>{}),pz="until manual call of linkify.init(). Register all schemes and plugins before invoking linkify the first time.",fn={scanner:null,parser:null,tokenQueue:[],pluginQueue:[],customSchemes:[],initialized:!1};function mz(){return nr.groups={},fn.scanner=null,fn.parser=null,fn.tokenQueue=[],fn.pluginQueue=[],fn.customSchemes=[],fn.initialized=!1,fn}function fw(t,e=!1){if(fn.initialized&&fz(`linkifyjs: already initialized - will not register custom scheme "${t}" ${pz}`),!/^[0-9a-z]+(-[0-9a-z]+)*$/.test(t))throw new Error(`linkifyjs: incorrect scheme format. +1. Must only contain digits, lowercase ASCII letters or "-" +2. Cannot start or end with "-" +3. "-" cannot repeat`);fn.customSchemes.push([t,e])}function xz(){fn.scanner=lz(fn.customSchemes);for(let t=0;t{const a=e.some(h=>h.docChanged)&&!n.doc.eq(r.doc),i=e.some(h=>h.getMeta("preventAutolink"));if(!a||i)return;const{tr:o}=r,c=nC(n.doc,[...e]);if(dC(c).forEach(({newRange:h})=>{const f=vD(r.doc,h,y=>y.isTextblock);let m,x;if(f.length>1)m=f[0],x=r.doc.textBetween(m.pos,m.pos+m.node.nodeSize,void 0," ");else if(f.length){const y=r.doc.textBetween(h.from,h.to," "," ");if(!yz.test(y))return;m=f[0],x=r.doc.textBetween(m.pos,h.to,void 0," ")}if(m&&x){const y=x.split(gz).filter(Boolean);if(y.length<=0)return!1;const v=y[y.length-1],N=m.pos+x.lastIndexOf(v);if(!v)return!1;const w=jy(v).map(k=>k.toObject(t.defaultProtocol));if(!vz(w))return!1;w.filter(k=>k.isLink).map(k=>({...k,from:N+k.start+1,to:N+k.end+1})).filter(k=>r.schema.marks.code?!r.doc.rangeHasMark(k.from,k.to,r.schema.marks.code):!0).filter(k=>t.validate(k.value)).filter(k=>t.shouldAutoLink(k.value)).forEach(k=>{dy(k.from,k.to,r.doc).some(E=>E.mark.type===t.type)||o.addMark(k.from,k.to,t.type.create({href:k.href}))})}}),!!o.steps.length)return o}})}function wz(t){return new dn({key:new gn("handleClickLink"),props:{handleClick:(e,n,r)=>{var a,i;if(r.button!==0||!e.editable)return!1;let o=null;if(r.target instanceof HTMLAnchorElement)o=r.target;else{const u=r.target;if(!u)return!1;const h=t.editor.view.dom;o=u.closest("a"),o&&!h.contains(o)&&(o=null)}if(!o)return!1;let c=!1;if(t.enableClickSelection&&(c=t.editor.commands.extendMarkRange(t.type.name)),t.openOnClick){const u=cC(e.state,t.type.name),h=(a=o.href)!=null?a:u.href,f=(i=o.target)!=null?i:u.target;h&&(window.open(h,f),c=!0)}return c}}})}function jz(t){return new dn({key:new gn("handlePasteLink"),props:{handlePaste:(e,n,r)=>{const{shouldAutoLink:a}=t,{state:i}=e,{selection:o}=i,{empty:c}=o;if(c)return!1;let u="";r.content.forEach(f=>{u+=f.textContent});const h=WC(u,{defaultProtocol:t.defaultProtocol}).find(f=>f.isLink&&f.value===u);return!u||!h||a!==void 0&&!a(h.value)?!1:t.editor.commands.setMark(t.type,{href:h.href})}}})}function sl(t,e){const n=["http","https","ftp","ftps","mailto","tel","callto","sms","cid","xmpp"];return e&&e.forEach(r=>{const a=typeof r=="string"?r:r.scheme;a&&n.push(a)}),!t||t.replace(bz,"").match(new RegExp(`^(?:(?:${n.join("|")}):|[^a-z]|[a-z0-9+.-]+(?:[^a-z+.-:]|$))`,"i"))}var kz=Pl.create({name:"link",priority:1e3,keepOnSplit:!1,exitable:!0,onCreate(){this.options.validate&&!this.options.shouldAutoLink&&(this.options.shouldAutoLink=this.options.validate,console.warn("The `validate` option is deprecated. Rename to the `shouldAutoLink` option instead.")),this.options.protocols.forEach(t=>{if(typeof t=="string"){fw(t);return}fw(t.scheme,t.optionalSlashes)})},onDestroy(){mz()},inclusive(){return this.options.autolink},addOptions(){return{openOnClick:!0,enableClickSelection:!1,linkOnPaste:!0,autolink:!0,protocols:[],defaultProtocol:"http",HTMLAttributes:{target:"_blank",rel:"noopener noreferrer nofollow",class:null},isAllowedUri:(t,e)=>!!sl(t,e.protocols),validate:t=>!!t,shouldAutoLink:t=>{const e=/^[a-z][a-z0-9+.-]*:\/\//i.test(t),n=/^[a-z][a-z0-9+.-]*:/i.test(t);if(e||n&&!t.includes("@"))return!0;const a=(t.includes("@")?t.split("@").pop():t).split(/[/?#:]/)[0];return!(/^\d{1,3}(\.\d{1,3}){3}$/.test(a)||!/\./.test(a))}}},addAttributes(){return{href:{default:null,parseHTML(t){return t.getAttribute("href")}},target:{default:this.options.HTMLAttributes.target},rel:{default:this.options.HTMLAttributes.rel},class:{default:this.options.HTMLAttributes.class},title:{default:null}}},parseHTML(){return[{tag:"a[href]",getAttrs:t=>{const e=t.getAttribute("href");return!e||!this.options.isAllowedUri(e,{defaultValidate:n=>!!sl(n,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:null}}]},renderHTML({HTMLAttributes:t}){return this.options.isAllowedUri(t.href,{defaultValidate:e=>!!sl(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?["a",Gt(this.options.HTMLAttributes,t),0]:["a",Gt(this.options.HTMLAttributes,{...t,href:""}),0]},markdownTokenName:"link",parseMarkdown:(t,e)=>e.applyMark("link",e.parseInline(t.tokens||[]),{href:t.href,title:t.title||null}),renderMarkdown:(t,e)=>{var n,r,a,i;const o=(r=(n=t.attrs)==null?void 0:n.href)!=null?r:"",c=(i=(a=t.attrs)==null?void 0:a.title)!=null?i:"",u=e.renderChildren(t);return c?`[${u}](${o} "${c}")`:`[${u}](${o})`},addCommands(){return{setLink:t=>({chain:e})=>{const{href:n}=t;return this.options.isAllowedUri(n,{defaultValidate:r=>!!sl(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?e().setMark(this.name,t).setMeta("preventAutolink",!0).run():!1},toggleLink:t=>({chain:e})=>{const{href:n}=t||{};return n&&!this.options.isAllowedUri(n,{defaultValidate:r=>!!sl(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:e().toggleMark(this.name,t,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()},unsetLink:()=>({chain:t})=>t().unsetMark(this.name,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()}},addPasteRules(){return[Sl({find:t=>{const e=[];if(t){const{protocols:n,defaultProtocol:r}=this.options,a=WC(t).filter(i=>i.isLink&&this.options.isAllowedUri(i.value,{defaultValidate:o=>!!sl(o,n),protocols:n,defaultProtocol:r}));a.length&&a.forEach(i=>{this.options.shouldAutoLink(i.value)&&e.push({text:i.value,data:{href:i.href},index:i.start})})}return e},type:this.type,getAttributes:t=>{var e;return{href:(e=t.data)==null?void 0:e.href}}})]},addProseMirrorPlugins(){const t=[],{protocols:e,defaultProtocol:n}=this.options;return this.options.autolink&&t.push(Nz({type:this.type,defaultProtocol:this.options.defaultProtocol,validate:r=>this.options.isAllowedUri(r,{defaultValidate:a=>!!sl(a,e),protocols:e,defaultProtocol:n}),shouldAutoLink:this.options.shouldAutoLink})),t.push(wz({type:this.type,editor:this.editor,openOnClick:this.options.openOnClick==="whenNotEditable"?!0:this.options.openOnClick,enableClickSelection:this.options.enableClickSelection})),this.options.linkOnPaste&&t.push(jz({editor:this.editor,defaultProtocol:this.options.defaultProtocol,type:this.type,shouldAutoLink:this.options.shouldAutoLink})),t}}),Sz=Object.defineProperty,Cz=(t,e)=>{for(var n in e)Sz(t,n,{get:e[n],enumerable:!0})},Tz="listItem",pw="textStyle",mw=/^\s*([-+*])\s$/,KC=$n.create({name:"bulletList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:"ul"}]},renderHTML({HTMLAttributes:t}){return["ul",Gt(this.options.HTMLAttributes,t),0]},markdownTokenName:"list",parseMarkdown:(t,e)=>t.type!=="list"||t.ordered?[]:{type:"bulletList",content:t.items?e.parseChildren(t.items):[]},renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` +`):"",markdownOptions:{indentsContent:!0},addCommands(){return{toggleBulletList:()=>({commands:t,chain:e})=>this.options.keepAttributes?e().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(Tz,this.editor.getAttributes(pw)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-8":()=>this.editor.commands.toggleBulletList()}},addInputRules(){let t=zc({find:mw,type:this.type});return(this.options.keepMarks||this.options.keepAttributes)&&(t=zc({find:mw,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:()=>this.editor.getAttributes(pw),editor:this.editor})),[t]}}),qC=$n.create({name:"listItem",addOptions(){return{HTMLAttributes:{},bulletListTypeName:"bulletList",orderedListTypeName:"orderedList"}},content:"paragraph block*",defining:!0,parseHTML(){return[{tag:"li"}]},renderHTML({HTMLAttributes:t}){return["li",Gt(this.options.HTMLAttributes,t),0]},markdownTokenName:"list_item",parseMarkdown:(t,e)=>{if(t.type!=="list_item")return[];let n=[];if(t.tokens&&t.tokens.length>0)if(t.tokens.some(a=>a.type==="paragraph"))n=e.parseChildren(t.tokens);else{const a=t.tokens[0];if(a&&a.type==="text"&&a.tokens&&a.tokens.length>0){if(n=[{type:"paragraph",content:e.parseInline(a.tokens)}],t.tokens.length>1){const o=t.tokens.slice(1),c=e.parseChildren(o);n.push(...c)}}else n=e.parseChildren(t.tokens)}return n.length===0&&(n=[{type:"paragraph",content:[]}]),{type:"listItem",content:n}},renderMarkdown:(t,e,n)=>py(t,e,r=>{var a,i;return r.parentType==="bulletList"?"- ":r.parentType==="orderedList"?`${(((i=(a=r.meta)==null?void 0:a.parentAttrs)==null?void 0:i.start)||1)+r.index}. `:"- "},n),addKeyboardShortcuts(){return{Enter:()=>this.editor.commands.splitListItem(this.name),Tab:()=>this.editor.commands.sinkListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)}}}),Ez={};Cz(Ez,{findListItemPos:()=>yu,getNextListDepth:()=>Sy,handleBackspace:()=>e0,handleDelete:()=>t0,hasListBefore:()=>GC,hasListItemAfter:()=>Mz,hasListItemBefore:()=>JC,listItemHasSubList:()=>QC,nextListIsDeeper:()=>YC,nextListIsHigher:()=>XC});var yu=(t,e)=>{const{$from:n}=e.selection,r=Un(t,e.schema);let a=null,i=n.depth,o=n.pos,c=null;for(;i>0&&c===null;)a=n.node(i),a.type===r?c=i:(i-=1,o-=1);return c===null?null:{$pos:e.doc.resolve(o),depth:c}},Sy=(t,e)=>{const n=yu(t,e);if(!n)return!1;const[,r]=AD(e,t,n.$pos.pos+4);return r},GC=(t,e,n)=>{const{$anchor:r}=t.selection,a=Math.max(0,r.pos-2),i=t.doc.resolve(a).node();return!(!i||!n.includes(i.type.name))},JC=(t,e)=>{var n;const{$anchor:r}=e.selection,a=e.doc.resolve(r.pos-2);return!(a.index()===0||((n=a.nodeBefore)==null?void 0:n.type.name)!==t)},QC=(t,e,n)=>{if(!n)return!1;const r=Un(t,e.schema);let a=!1;return n.descendants(i=>{i.type===r&&(a=!0)}),a},e0=(t,e,n)=>{if(t.commands.undoInputRule())return!0;if(t.state.selection.from!==t.state.selection.to)return!1;if(!Mo(t.state,e)&&GC(t.state,e,n)){const{$anchor:c}=t.state.selection,u=t.state.doc.resolve(c.before()-1),h=[];u.node().descendants((x,y)=>{x.type.name===e&&h.push({node:x,pos:y})});const f=h.at(-1);if(!f)return!1;const m=t.state.doc.resolve(u.start()+f.pos+1);return t.chain().cut({from:c.start()-1,to:c.end()+1},m.end()).joinForward().run()}if(!Mo(t.state,e)||!OD(t.state))return!1;const r=yu(e,t.state);if(!r)return!1;const i=t.state.doc.resolve(r.$pos.pos-2).node(r.depth),o=QC(e,t.state,i);return JC(e,t.state)&&!o?t.commands.joinItemBackward():t.chain().liftListItem(e).run()},YC=(t,e)=>{const n=Sy(t,e),r=yu(t,e);return!r||!n?!1:n>r.depth},XC=(t,e)=>{const n=Sy(t,e),r=yu(t,e);return!r||!n?!1:n{if(!Mo(t.state,e)||!RD(t.state,e))return!1;const{selection:n}=t.state,{$from:r,$to:a}=n;return!n.empty&&r.sameParent(a)?!1:YC(e,t.state)?t.chain().focus(t.state.selection.from+4).lift(e).joinBackward().run():XC(e,t.state)?t.chain().joinForward().joinBackward().run():t.commands.joinItemForward()},Mz=(t,e)=>{var n;const{$anchor:r}=e.selection,a=e.doc.resolve(r.pos-r.parentOffset-2);return!(a.index()===a.parent.childCount-1||((n=a.nodeAfter)==null?void 0:n.type.name)!==t)},ZC=Pn.create({name:"listKeymap",addOptions(){return{listTypes:[{itemName:"listItem",wrapperNames:["bulletList","orderedList"]},{itemName:"taskItem",wrapperNames:["taskList"]}]}},addKeyboardShortcuts(){return{Delete:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n})=>{t.state.schema.nodes[n]!==void 0&&t0(t,n)&&(e=!0)}),e},"Mod-Delete":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n})=>{t.state.schema.nodes[n]!==void 0&&t0(t,n)&&(e=!0)}),e},Backspace:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{t.state.schema.nodes[n]!==void 0&&e0(t,n,r)&&(e=!0)}),e},"Mod-Backspace":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{t.state.schema.nodes[n]!==void 0&&e0(t,n,r)&&(e=!0)}),e}}}}),xw=/^(\s*)(\d+)\.\s+(.*)$/,Az=/^\s/;function Iz(t){const e=[];let n=0,r=0;for(;ne;)x.push(t[m]),m+=1;if(x.length>0){const y=Math.min(...x.map(N=>N.indent)),v=e3(x,y,n);h.push({type:"list",ordered:!0,start:x[0].number,items:v,raw:x.map(N=>N.raw).join(` +`)})}a.push({type:"list_item",raw:o.raw,tokens:h}),i=m}else i+=1}return a}function Pz(t,e){return t.map(n=>{if(n.type!=="list_item")return e.parseChildren([n])[0];const r=[];return n.tokens&&n.tokens.length>0&&n.tokens.forEach(a=>{if(a.type==="paragraph"||a.type==="list"||a.type==="blockquote"||a.type==="code")r.push(...e.parseChildren([a]));else if(a.type==="text"&&a.tokens){const i=e.parseChildren([a]);r.push({type:"paragraph",content:i})}else{const i=e.parseChildren([a]);i.length>0&&r.push(...i)}}),{type:"listItem",content:r}})}var Rz="listItem",gw="textStyle",yw=/^(\d+)\.\s$/,t3=$n.create({name:"orderedList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},addAttributes(){return{start:{default:1,parseHTML:t=>t.hasAttribute("start")?parseInt(t.getAttribute("start")||"",10):1},type:{default:null,parseHTML:t=>t.getAttribute("type")}}},parseHTML(){return[{tag:"ol"}]},renderHTML({HTMLAttributes:t}){const{start:e,...n}=t;return e===1?["ol",Gt(this.options.HTMLAttributes,n),0]:["ol",Gt(this.options.HTMLAttributes,t),0]},markdownTokenName:"list",parseMarkdown:(t,e)=>{if(t.type!=="list"||!t.ordered)return[];const n=t.start||1,r=t.items?Pz(t.items,e):[];return n!==1?{type:"orderedList",attrs:{start:n},content:r}:{type:"orderedList",content:r}},renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` +`):"",markdownTokenizer:{name:"orderedList",level:"block",start:t=>{const e=t.match(/^(\s*)(\d+)\.\s+/),n=e==null?void 0:e.index;return n!==void 0?n:-1},tokenize:(t,e,n)=>{var r;const a=t.split(` +`),[i,o]=Iz(a);if(i.length===0)return;const c=e3(i,0,n);return c.length===0?void 0:{type:"list",ordered:!0,start:((r=i[0])==null?void 0:r.number)||1,items:c,raw:a.slice(0,o).join(` +`)}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleOrderedList:()=>({commands:t,chain:e})=>this.options.keepAttributes?e().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(Rz,this.editor.getAttributes(gw)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-7":()=>this.editor.commands.toggleOrderedList()}},addInputRules(){let t=zc({find:yw,type:this.type,getAttributes:e=>({start:+e[1]}),joinPredicate:(e,n)=>n.childCount+n.attrs.start===+e[1]});return(this.options.keepMarks||this.options.keepAttributes)&&(t=zc({find:yw,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:e=>({start:+e[1],...this.editor.getAttributes(gw)}),joinPredicate:(e,n)=>n.childCount+n.attrs.start===+e[1],editor:this.editor})),[t]}}),Oz=/^\s*(\[([( |x])?\])\s$/,Lz=$n.create({name:"taskItem",addOptions(){return{nested:!1,HTMLAttributes:{},taskListTypeName:"taskList",a11y:void 0}},content(){return this.options.nested?"paragraph block*":"paragraph+"},defining:!0,addAttributes(){return{checked:{default:!1,keepOnSplit:!1,parseHTML:t=>{const e=t.getAttribute("data-checked");return e===""||e==="true"},renderHTML:t=>({"data-checked":t.checked})}}},parseHTML(){return[{tag:`li[data-type="${this.name}"]`,priority:51}]},renderHTML({node:t,HTMLAttributes:e}){return["li",Gt(this.options.HTMLAttributes,e,{"data-type":this.name}),["label",["input",{type:"checkbox",checked:t.attrs.checked?"checked":null}],["span"]],["div",0]]},parseMarkdown:(t,e)=>{const n=[];if(t.tokens&&t.tokens.length>0?n.push(e.createNode("paragraph",{},e.parseInline(t.tokens))):t.text?n.push(e.createNode("paragraph",{},[e.createNode("text",{text:t.text})])):n.push(e.createNode("paragraph",{},[])),t.nestedTokens&&t.nestedTokens.length>0){const r=e.parseChildren(t.nestedTokens);n.push(...r)}return e.createNode("taskItem",{checked:t.checked||!1},n)},renderMarkdown:(t,e)=>{var n;const a=`- [${(n=t.attrs)!=null&&n.checked?"x":" "}] `;return py(t,e,a)},addKeyboardShortcuts(){const t={Enter:()=>this.editor.commands.splitListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)};return this.options.nested?{...t,Tab:()=>this.editor.commands.sinkListItem(this.name)}:t},addNodeView(){return({node:t,HTMLAttributes:e,getPos:n,editor:r})=>{const a=document.createElement("li"),i=document.createElement("label"),o=document.createElement("span"),c=document.createElement("input"),u=document.createElement("div"),h=m=>{var x,y;c.ariaLabel=((y=(x=this.options.a11y)==null?void 0:x.checkboxLabel)==null?void 0:y.call(x,m,c.checked))||`Task item checkbox for ${m.textContent||"empty task item"}`};h(t),i.contentEditable="false",c.type="checkbox",c.addEventListener("mousedown",m=>m.preventDefault()),c.addEventListener("change",m=>{if(!r.isEditable&&!this.options.onReadOnlyChecked){c.checked=!c.checked;return}const{checked:x}=m.target;r.isEditable&&typeof n=="function"&&r.chain().focus(void 0,{scrollIntoView:!1}).command(({tr:y})=>{const v=n();if(typeof v!="number")return!1;const N=y.doc.nodeAt(v);return y.setNodeMarkup(v,void 0,{...N==null?void 0:N.attrs,checked:x}),!0}).run(),!r.isEditable&&this.options.onReadOnlyChecked&&(this.options.onReadOnlyChecked(t,x)||(c.checked=!c.checked))}),Object.entries(this.options.HTMLAttributes).forEach(([m,x])=>{a.setAttribute(m,x)}),a.dataset.checked=t.attrs.checked,c.checked=t.attrs.checked,i.append(c,o),a.append(i,u),Object.entries(e).forEach(([m,x])=>{a.setAttribute(m,x)});let f=new Set(Object.keys(e));return{dom:a,contentDOM:u,update:m=>{if(m.type!==this.type)return!1;a.dataset.checked=m.attrs.checked,c.checked=m.attrs.checked,h(m);const x=r.extensionManager.attributes,y=au(m,x),v=new Set(Object.keys(y)),N=this.options.HTMLAttributes;return f.forEach(w=>{v.has(w)||(w in N?a.setAttribute(w,N[w]):a.removeAttribute(w))}),Object.entries(y).forEach(([w,k])=>{k==null?w in N?a.setAttribute(w,N[w]):a.removeAttribute(w):a.setAttribute(w,k)}),f=v,!0}}}},addInputRules(){return[zc({find:Oz,type:this.type,getAttributes:t=>({checked:t[t.length-1]==="x"})})]}}),Dz=$n.create({name:"taskList",addOptions(){return{itemTypeName:"taskItem",HTMLAttributes:{}}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:`ul[data-type="${this.name}"]`,priority:51}]},renderHTML({HTMLAttributes:t}){return["ul",Gt(this.options.HTMLAttributes,t,{"data-type":this.name}),0]},parseMarkdown:(t,e)=>e.createNode("taskList",{},e.parseChildren(t.items||[])),renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` +`):"",markdownTokenizer:{name:"taskList",level:"block",start(t){var e;const n=(e=t.match(/^\s*[-+*]\s+\[([ xX])\]\s+/))==null?void 0:e.index;return n!==void 0?n:-1},tokenize(t,e,n){const r=i=>{const o=Ug(i,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:c=>({indentLevel:c[1].length,mainContent:c[4],checked:c[3].toLowerCase()==="x"}),createToken:(c,u)=>({type:"taskItem",raw:"",mainContent:c.mainContent,indentLevel:c.indentLevel,checked:c.checked,text:c.mainContent,tokens:n.inlineTokens(c.mainContent),nestedTokens:u}),customNestedParser:r},n);return o?[{type:"taskList",raw:o.raw,items:o.items}]:n.blockTokens(i)},a=Ug(t,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:i=>({indentLevel:i[1].length,mainContent:i[4],checked:i[3].toLowerCase()==="x"}),createToken:(i,o)=>({type:"taskItem",raw:"",mainContent:i.mainContent,indentLevel:i.indentLevel,checked:i.checked,text:i.mainContent,tokens:n.inlineTokens(i.mainContent),nestedTokens:o}),customNestedParser:r},n);if(a)return{type:"taskList",raw:a.raw,items:a.items}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleTaskList:()=>({commands:t})=>t.toggleList(this.name,this.options.itemTypeName)}},addKeyboardShortcuts(){return{"Mod-Shift-9":()=>this.editor.commands.toggleTaskList()}}});Pn.create({name:"listKit",addExtensions(){const t=[];return this.options.bulletList!==!1&&t.push(KC.configure(this.options.bulletList)),this.options.listItem!==!1&&t.push(qC.configure(this.options.listItem)),this.options.listKeymap!==!1&&t.push(ZC.configure(this.options.listKeymap)),this.options.orderedList!==!1&&t.push(t3.configure(this.options.orderedList)),this.options.taskItem!==!1&&t.push(Lz.configure(this.options.taskItem)),this.options.taskList!==!1&&t.push(Dz.configure(this.options.taskList)),t}});var bw=" ",_z=" ",zz=$n.create({name:"paragraph",priority:1e3,addOptions(){return{HTMLAttributes:{}}},group:"block",content:"inline*",parseHTML(){return[{tag:"p"}]},renderHTML({HTMLAttributes:t}){return["p",Gt(this.options.HTMLAttributes,t),0]},parseMarkdown:(t,e)=>{const n=t.tokens||[];if(n.length===1&&n[0].type==="image")return e.parseChildren([n[0]]);const r=e.parseInline(n);return r.length===1&&r[0].type==="text"&&(r[0].text===bw||r[0].text===_z)?e.createNode("paragraph",void 0,[]):e.createNode("paragraph",void 0,r)},renderMarkdown:(t,e)=>{if(!t)return"";const n=Array.isArray(t.content)?t.content:[];return n.length===0?bw:e.renderChildren(n)},addCommands(){return{setParagraph:()=>({commands:t})=>t.setNode(this.name)}},addKeyboardShortcuts(){return{"Mod-Alt-0":()=>this.editor.commands.setParagraph()}}}),$z=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/,Fz=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g,Bz=Pl.create({name:"strike",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"s"},{tag:"del"},{tag:"strike"},{style:"text-decoration",consuming:!1,getAttrs:t=>t.includes("line-through")?{}:!1}]},renderHTML({HTMLAttributes:t}){return["s",Gt(this.options.HTMLAttributes,t),0]},markdownTokenName:"del",parseMarkdown:(t,e)=>e.applyMark("strike",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`~~${e.renderChildren(t)}~~`,addCommands(){return{setStrike:()=>({commands:t})=>t.setMark(this.name),toggleStrike:()=>({commands:t})=>t.toggleMark(this.name),unsetStrike:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-s":()=>this.editor.commands.toggleStrike()}},addInputRules(){return[_c({find:$z,type:this.type})]},addPasteRules(){return[Sl({find:Fz,type:this.type})]}}),Vz=$n.create({name:"text",group:"inline",parseMarkdown:t=>({type:"text",text:t.text||""}),renderMarkdown:t=>t.text||""}),Hz=Pl.create({name:"underline",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"u"},{style:"text-decoration",consuming:!1,getAttrs:t=>t.includes("underline")?{}:!1}]},renderHTML({HTMLAttributes:t}){return["u",Gt(this.options.HTMLAttributes,t),0]},parseMarkdown(t,e){return e.applyMark(this.name||"underline",e.parseInline(t.tokens||[]))},renderMarkdown(t,e){return`++${e.renderChildren(t)}++`},markdownTokenizer:{name:"underline",level:"inline",start(t){return t.indexOf("++")},tokenize(t,e,n){const a=/^(\+\+)([\s\S]+?)(\+\+)/.exec(t);if(!a)return;const i=a[2].trim();return{type:"underline",raw:a[0],text:i,tokens:n.inlineTokens(i)}}},addCommands(){return{setUnderline:()=>({commands:t})=>t.setMark(this.name),toggleUnderline:()=>({commands:t})=>t.toggleMark(this.name),unsetUnderline:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-u":()=>this.editor.commands.toggleUnderline(),"Mod-U":()=>this.editor.commands.toggleUnderline()}}});function Uz(t={}){return new dn({view(e){return new Wz(e,t)}})}class Wz{constructor(e,n){var r;this.editorView=e,this.cursorPos=null,this.element=null,this.timeout=-1,this.width=(r=n.width)!==null&&r!==void 0?r:1,this.color=n.color===!1?void 0:n.color||"black",this.class=n.class,this.handlers=["dragover","dragend","drop","dragleave"].map(a=>{let i=o=>{this[a](o)};return e.dom.addEventListener(a,i),{name:a,handler:i}})}destroy(){this.handlers.forEach(({name:e,handler:n})=>this.editorView.dom.removeEventListener(e,n))}update(e,n){this.cursorPos!=null&&n.doc!=e.state.doc&&(this.cursorPos>e.state.doc.content.size?this.setCursor(null):this.updateOverlay())}setCursor(e){e!=this.cursorPos&&(this.cursorPos=e,e==null?(this.element.parentNode.removeChild(this.element),this.element=null):this.updateOverlay())}updateOverlay(){let e=this.editorView.state.doc.resolve(this.cursorPos),n=!e.parent.inlineContent,r,a=this.editorView.dom,i=a.getBoundingClientRect(),o=i.width/a.offsetWidth,c=i.height/a.offsetHeight;if(n){let m=e.nodeBefore,x=e.nodeAfter;if(m||x){let y=this.editorView.nodeDOM(this.cursorPos-(m?m.nodeSize:0));if(y){let v=y.getBoundingClientRect(),N=m?v.bottom:v.top;m&&x&&(N=(N+this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top)/2);let w=this.width/2*c;r={left:v.left,right:v.right,top:N-w,bottom:N+w}}}}if(!r){let m=this.editorView.coordsAtPos(this.cursorPos),x=this.width/2*o;r={left:m.left-x,right:m.left+x,top:m.top,bottom:m.bottom}}let u=this.editorView.dom.offsetParent;this.element||(this.element=u.appendChild(document.createElement("div")),this.class&&(this.element.className=this.class),this.element.style.cssText="position: absolute; z-index: 50; pointer-events: none;",this.color&&(this.element.style.backgroundColor=this.color)),this.element.classList.toggle("prosemirror-dropcursor-block",n),this.element.classList.toggle("prosemirror-dropcursor-inline",!n);let h,f;if(!u||u==document.body&&getComputedStyle(u).position=="static")h=-pageXOffset,f=-pageYOffset;else{let m=u.getBoundingClientRect(),x=m.width/u.offsetWidth,y=m.height/u.offsetHeight;h=m.left-u.scrollLeft*x,f=m.top-u.scrollTop*y}this.element.style.left=(r.left-h)/o+"px",this.element.style.top=(r.top-f)/c+"px",this.element.style.width=(r.right-r.left)/o+"px",this.element.style.height=(r.bottom-r.top)/c+"px"}scheduleRemoval(e){clearTimeout(this.timeout),this.timeout=setTimeout(()=>this.setCursor(null),e)}dragover(e){if(!this.editorView.editable)return;let n=this.editorView.posAtCoords({left:e.clientX,top:e.clientY}),r=n&&n.inside>=0&&this.editorView.state.doc.nodeAt(n.inside),a=r&&r.type.spec.disableDropCursor,i=typeof a=="function"?a(this.editorView,n,e):a;if(n&&!i){let o=n.pos;if(this.editorView.dragging&&this.editorView.dragging.slice){let c=G2(this.editorView.state.doc,o,this.editorView.dragging.slice);c!=null&&(o=c)}this.setCursor(o),this.scheduleRemoval(5e3)}}dragend(){this.scheduleRemoval(20)}drop(){this.scheduleRemoval(20)}dragleave(e){this.editorView.dom.contains(e.relatedTarget)||this.setCursor(null)}}class An extends lt{constructor(e){super(e,e)}map(e,n){let r=e.resolve(n.map(this.head));return An.valid(r)?new An(r):lt.near(r)}content(){return ze.empty}eq(e){return e instanceof An&&e.head==this.head}toJSON(){return{type:"gapcursor",pos:this.head}}static fromJSON(e,n){if(typeof n.pos!="number")throw new RangeError("Invalid input for GapCursor.fromJSON");return new An(e.resolve(n.pos))}getBookmark(){return new Cy(this.anchor)}static valid(e){let n=e.parent;if(n.isTextblock||!Kz(e)||!qz(e))return!1;let r=n.type.spec.allowGapCursor;if(r!=null)return r;let a=n.contentMatchAt(e.index()).defaultType;return a&&a.isTextblock}static findGapCursorFrom(e,n,r=!1){e:for(;;){if(!r&&An.valid(e))return e;let a=e.pos,i=null;for(let o=e.depth;;o--){let c=e.node(o);if(n>0?e.indexAfter(o)0){i=c.child(n>0?e.indexAfter(o):e.index(o)-1);break}else if(o==0)return null;a+=n;let u=e.doc.resolve(a);if(An.valid(u))return u}for(;;){let o=n>0?i.firstChild:i.lastChild;if(!o){if(i.isAtom&&!i.isText&&!tt.isSelectable(i)){e=e.doc.resolve(a+i.nodeSize*n),r=!1;continue e}break}i=o,a+=n;let c=e.doc.resolve(a);if(An.valid(c))return c}return null}}}An.prototype.visible=!1;An.findFrom=An.findGapCursorFrom;lt.jsonID("gapcursor",An);class Cy{constructor(e){this.pos=e}map(e){return new Cy(e.map(this.pos))}resolve(e){let n=e.resolve(this.pos);return An.valid(n)?new An(n):lt.near(n)}}function n3(t){return t.isAtom||t.spec.isolating||t.spec.createGapCursor}function Kz(t){for(let e=t.depth;e>=0;e--){let n=t.index(e),r=t.node(e);if(n==0){if(r.type.spec.isolating)return!0;continue}for(let a=r.child(n-1);;a=a.lastChild){if(a.childCount==0&&!a.inlineContent||n3(a.type))return!0;if(a.inlineContent)return!1}}return!0}function qz(t){for(let e=t.depth;e>=0;e--){let n=t.indexAfter(e),r=t.node(e);if(n==r.childCount){if(r.type.spec.isolating)return!0;continue}for(let a=r.child(n);;a=a.firstChild){if(a.childCount==0&&!a.inlineContent||n3(a.type))return!0;if(a.inlineContent)return!1}}return!0}function Gz(){return new dn({props:{decorations:Xz,createSelectionBetween(t,e,n){return e.pos==n.pos&&An.valid(n)?new An(n):null},handleClick:Qz,handleKeyDown:Jz,handleDOMEvents:{beforeinput:Yz}}})}const Jz=ry({ArrowLeft:Dh("horiz",-1),ArrowRight:Dh("horiz",1),ArrowUp:Dh("vert",-1),ArrowDown:Dh("vert",1)});function Dh(t,e){const n=t=="vert"?e>0?"down":"up":e>0?"right":"left";return function(r,a,i){let o=r.selection,c=e>0?o.$to:o.$from,u=o.empty;if(o instanceof nt){if(!i.endOfTextblock(n)||c.depth==0)return!1;u=!1,c=r.doc.resolve(e>0?c.after():c.before())}let h=An.findGapCursorFrom(c,e,u);return h?(a&&a(r.tr.setSelection(new An(h))),!0):!1}}function Qz(t,e,n){if(!t||!t.editable)return!1;let r=t.state.doc.resolve(e);if(!An.valid(r))return!1;let a=t.posAtCoords({left:n.clientX,top:n.clientY});return a&&a.inside>-1&&tt.isSelectable(t.state.doc.nodeAt(a.inside))?!1:(t.dispatch(t.state.tr.setSelection(new An(r))),!0)}function Yz(t,e){if(e.inputType!="insertCompositionText"||!(t.state.selection instanceof An))return!1;let{$from:n}=t.state.selection,r=n.parent.contentMatchAt(n.index()).findWrapping(t.state.schema.nodes.text);if(!r)return!1;let a=Ne.empty;for(let o=r.length-1;o>=0;o--)a=Ne.from(r[o].createAndFill(null,a));let i=t.state.tr.replace(n.pos,n.pos,new ze(a,0,0));return i.setSelection(nt.near(i.doc.resolve(n.pos+1))),t.dispatch(i),!1}function Xz(t){if(!(t.selection instanceof An))return null;let e=document.createElement("div");return e.className="ProseMirror-gapcursor",rn.create(t.doc,[Qn.widget(t.selection.head,e,{key:"gapcursor"})])}var Xf=200,is=function(){};is.prototype.append=function(e){return e.length?(e=is.from(e),!this.length&&e||e.length=n?is.empty:this.sliceInner(Math.max(0,e),Math.min(this.length,n))};is.prototype.get=function(e){if(!(e<0||e>=this.length))return this.getInner(e)};is.prototype.forEach=function(e,n,r){n===void 0&&(n=0),r===void 0&&(r=this.length),n<=r?this.forEachInner(e,n,r,0):this.forEachInvertedInner(e,n,r,0)};is.prototype.map=function(e,n,r){n===void 0&&(n=0),r===void 0&&(r=this.length);var a=[];return this.forEach(function(i,o){return a.push(e(i,o))},n,r),a};is.from=function(e){return e instanceof is?e:e&&e.length?new s3(e):is.empty};var s3=(function(t){function e(r){t.call(this),this.values=r}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={length:{configurable:!0},depth:{configurable:!0}};return e.prototype.flatten=function(){return this.values},e.prototype.sliceInner=function(a,i){return a==0&&i==this.length?this:new e(this.values.slice(a,i))},e.prototype.getInner=function(a){return this.values[a]},e.prototype.forEachInner=function(a,i,o,c){for(var u=i;u=o;u--)if(a(this.values[u],c+u)===!1)return!1},e.prototype.leafAppend=function(a){if(this.length+a.length<=Xf)return new e(this.values.concat(a.flatten()))},e.prototype.leafPrepend=function(a){if(this.length+a.length<=Xf)return new e(a.flatten().concat(this.values))},n.length.get=function(){return this.values.length},n.depth.get=function(){return 0},Object.defineProperties(e.prototype,n),e})(is);is.empty=new s3([]);var Zz=(function(t){function e(n,r){t.call(this),this.left=n,this.right=r,this.length=n.length+r.length,this.depth=Math.max(n.depth,r.depth)+1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.flatten=function(){return this.left.flatten().concat(this.right.flatten())},e.prototype.getInner=function(r){return rc&&this.right.forEachInner(r,Math.max(a-c,0),Math.min(this.length,i)-c,o+c)===!1)return!1},e.prototype.forEachInvertedInner=function(r,a,i,o){var c=this.left.length;if(a>c&&this.right.forEachInvertedInner(r,a-c,Math.max(i,c)-c,o+c)===!1||i=i?this.right.slice(r-i,a-i):this.left.slice(r,i).append(this.right.slice(0,a-i))},e.prototype.leafAppend=function(r){var a=this.right.leafAppend(r);if(a)return new e(this.left,a)},e.prototype.leafPrepend=function(r){var a=this.left.leafPrepend(r);if(a)return new e(a,this.right)},e.prototype.appendInner=function(r){return this.left.depth>=Math.max(this.right.depth,r.depth)+1?new e(this.left,new e(this.right,r)):new e(this,r)},e})(is);const e$=500;class ta{constructor(e,n){this.items=e,this.eventCount=n}popEvent(e,n){if(this.eventCount==0)return null;let r=this.items.length;for(;;r--)if(this.items.get(r-1).selection){--r;break}let a,i;n&&(a=this.remapping(r,this.items.length),i=a.maps.length);let o=e.tr,c,u,h=[],f=[];return this.items.forEach((m,x)=>{if(!m.step){a||(a=this.remapping(r,x+1),i=a.maps.length),i--,f.push(m);return}if(a){f.push(new ro(m.map));let y=m.step.map(a.slice(i)),v;y&&o.maybeStep(y).doc&&(v=o.mapping.maps[o.mapping.maps.length-1],h.push(new ro(v,void 0,void 0,h.length+f.length))),i--,v&&a.appendMap(v,i)}else o.maybeStep(m.step);if(m.selection)return c=a?m.selection.map(a.slice(i)):m.selection,u=new ta(this.items.slice(0,r).append(f.reverse().concat(h)),this.eventCount-1),!1},this.items.length,0),{remaining:u,transform:o,selection:c}}addTransform(e,n,r,a){let i=[],o=this.eventCount,c=this.items,u=!a&&c.length?c.get(c.length-1):null;for(let f=0;fn$&&(c=t$(c,h),o-=h),new ta(c.append(i),o)}remapping(e,n){let r=new Zd;return this.items.forEach((a,i)=>{let o=a.mirrorOffset!=null&&i-a.mirrorOffset>=e?r.maps.length-a.mirrorOffset:void 0;r.appendMap(a.map,o)},e,n),r}addMaps(e){return this.eventCount==0?this:new ta(this.items.append(e.map(n=>new ro(n))),this.eventCount)}rebased(e,n){if(!this.eventCount)return this;let r=[],a=Math.max(0,this.items.length-n),i=e.mapping,o=e.steps.length,c=this.eventCount;this.items.forEach(x=>{x.selection&&c--},a);let u=n;this.items.forEach(x=>{let y=i.getMirror(--u);if(y==null)return;o=Math.min(o,y);let v=i.maps[y];if(x.step){let N=e.steps[y].invert(e.docs[y]),w=x.selection&&x.selection.map(i.slice(u+1,y));w&&c++,r.push(new ro(v,N,w))}else r.push(new ro(v))},a);let h=[];for(let x=n;xe$&&(m=m.compress(this.items.length-r.length)),m}emptyItemCount(){let e=0;return this.items.forEach(n=>{n.step||e++}),e}compress(e=this.items.length){let n=this.remapping(0,e),r=n.maps.length,a=[],i=0;return this.items.forEach((o,c)=>{if(c>=e)a.push(o),o.selection&&i++;else if(o.step){let u=o.step.map(n.slice(r)),h=u&&u.getMap();if(r--,h&&n.appendMap(h,r),u){let f=o.selection&&o.selection.map(n.slice(r));f&&i++;let m=new ro(h.invert(),u,f),x,y=a.length-1;(x=a.length&&a[y].merge(m))?a[y]=x:a.push(m)}}else o.map&&r--},this.items.length,0),new ta(is.from(a.reverse()),i)}}ta.empty=new ta(is.empty,0);function t$(t,e){let n;return t.forEach((r,a)=>{if(r.selection&&e--==0)return n=a,!1}),t.slice(n)}let ro=class r3{constructor(e,n,r,a){this.map=e,this.step=n,this.selection=r,this.mirrorOffset=a}merge(e){if(this.step&&e.step&&!e.selection){let n=e.step.merge(this.step);if(n)return new r3(n.getMap().invert(),n,this.selection)}}};class co{constructor(e,n,r,a,i){this.done=e,this.undone=n,this.prevRanges=r,this.prevTime=a,this.prevComposition=i}}const n$=20;function s$(t,e,n,r){let a=n.getMeta(xl),i;if(a)return a.historyState;n.getMeta(i$)&&(t=new co(t.done,t.undone,null,0,-1));let o=n.getMeta("appendedTransaction");if(n.steps.length==0)return t;if(o&&o.getMeta(xl))return o.getMeta(xl).redo?new co(t.done.addTransform(n,void 0,r,Gh(e)),t.undone,vw(n.mapping.maps),t.prevTime,t.prevComposition):new co(t.done,t.undone.addTransform(n,void 0,r,Gh(e)),null,t.prevTime,t.prevComposition);if(n.getMeta("addToHistory")!==!1&&!(o&&o.getMeta("addToHistory")===!1)){let c=n.getMeta("composition"),u=t.prevTime==0||!o&&t.prevComposition!=c&&(t.prevTime<(n.time||0)-r.newGroupDelay||!r$(n,t.prevRanges)),h=o?Xx(t.prevRanges,n.mapping):vw(n.mapping.maps);return new co(t.done.addTransform(n,u?e.selection.getBookmark():void 0,r,Gh(e)),ta.empty,h,n.time,c??t.prevComposition)}else return(i=n.getMeta("rebased"))?new co(t.done.rebased(n,i),t.undone.rebased(n,i),Xx(t.prevRanges,n.mapping),t.prevTime,t.prevComposition):new co(t.done.addMaps(n.mapping.maps),t.undone.addMaps(n.mapping.maps),Xx(t.prevRanges,n.mapping),t.prevTime,t.prevComposition)}function r$(t,e){if(!e)return!1;if(!t.docChanged)return!0;let n=!1;return t.mapping.maps[0].forEach((r,a)=>{for(let i=0;i=e[i]&&(n=!0)}),n}function vw(t){let e=[];for(let n=t.length-1;n>=0&&e.length==0;n--)t[n].forEach((r,a,i,o)=>e.push(i,o));return e}function Xx(t,e){if(!t)return null;let n=[];for(let r=0;r{let a=xl.getState(n);if(!a||(t?a.undone:a.done).eventCount==0)return!1;if(r){let i=a$(a,n,t);i&&r(e?i.scrollIntoView():i)}return!0}}const i3=a3(!1,!0),o3=a3(!0,!0);Pn.create({name:"characterCount",addOptions(){return{limit:null,mode:"textSize",textCounter:t=>t.length,wordCounter:t=>t.split(" ").filter(e=>e!=="").length}},addStorage(){return{characters:()=>0,words:()=>0}},onBeforeCreate(){this.storage.characters=t=>{const e=(t==null?void 0:t.node)||this.editor.state.doc;if(((t==null?void 0:t.mode)||this.options.mode)==="textSize"){const r=e.textBetween(0,e.content.size,void 0," ");return this.options.textCounter(r)}return e.nodeSize},this.storage.words=t=>{const e=(t==null?void 0:t.node)||this.editor.state.doc,n=e.textBetween(0,e.content.size," "," ");return this.options.wordCounter(n)}},addProseMirrorPlugins(){let t=!1;return[new dn({key:new gn("characterCount"),appendTransaction:(e,n,r)=>{if(t)return;const a=this.options.limit;if(a==null||a===0){t=!0;return}const i=this.storage.characters({node:r.doc});if(i>a){const o=i-a,c=0,u=o;console.warn(`[CharacterCount] Initial content exceeded limit of ${a} characters. Content was automatically trimmed.`);const h=r.tr.deleteRange(c,u);return t=!0,h}t=!0},filterTransaction:(e,n)=>{const r=this.options.limit;if(!e.docChanged||r===0||r===null||r===void 0)return!0;const a=this.storage.characters({node:n.doc}),i=this.storage.characters({node:e.doc});if(i<=r||a>r&&i>r&&i<=a)return!0;if(a>r&&i>r&&i>a||!e.getMeta("paste"))return!1;const c=e.selection.$head.pos,u=i-r,h=c-u,f=c;return e.deleteRange(h,f),!(this.storage.characters({node:e.doc})>r)}})]}});var l$=Pn.create({name:"dropCursor",addOptions(){return{color:"currentColor",width:1,class:void 0}},addProseMirrorPlugins(){return[Uz(this.options)]}});Pn.create({name:"focus",addOptions(){return{className:"has-focus",mode:"all"}},addProseMirrorPlugins(){return[new dn({key:new gn("focus"),props:{decorations:({doc:t,selection:e})=>{const{isEditable:n,isFocused:r}=this.editor,{anchor:a}=e,i=[];if(!n||!r)return rn.create(t,[]);let o=0;this.options.mode==="deepest"&&t.descendants((u,h)=>{if(u.isText)return;if(!(a>=h&&a<=h+u.nodeSize-1))return!1;o+=1});let c=0;return t.descendants((u,h)=>{if(u.isText||!(a>=h&&a<=h+u.nodeSize-1))return!1;if(c+=1,this.options.mode==="deepest"&&o-c>0||this.options.mode==="shallowest"&&c>1)return this.options.mode==="deepest";i.push(Qn.node(h,h+u.nodeSize,{class:this.options.className}))}),rn.create(t,i)}}})]}});var c$=Pn.create({name:"gapCursor",addProseMirrorPlugins(){return[Gz()]},extendNodeSchema(t){var e;const n={name:t.name,options:t.options,storage:t.storage};return{allowGapCursor:(e=qt(Xe(t,"allowGapCursor",n)))!=null?e:null}}}),ww="placeholder";function d$(t){return t.replace(/\s+/g,"-").replace(/[^a-zA-Z0-9-]/g,"").replace(/^[0-9-]+/,"").replace(/^-+/,"").toLowerCase()}var u$=Pn.create({name:"placeholder",addOptions(){return{emptyEditorClass:"is-editor-empty",emptyNodeClass:"is-empty",dataAttribute:ww,placeholder:"Write something …",showOnlyWhenEditable:!0,showOnlyCurrent:!0,includeChildren:!1}},addProseMirrorPlugins(){const t=this.options.dataAttribute?`data-${d$(this.options.dataAttribute)}`:`data-${ww}`;return[new dn({key:new gn("placeholder"),props:{decorations:({doc:e,selection:n})=>{const r=this.editor.isEditable||!this.options.showOnlyWhenEditable,{anchor:a}=n,i=[];if(!r)return null;const o=this.editor.isEmpty;return e.descendants((c,u)=>{const h=a>=u&&a<=u+c.nodeSize,f=!c.isLeaf&&Sp(c);if((h||!this.options.showOnlyCurrent)&&f){const m=[this.options.emptyNodeClass];o&&m.push(this.options.emptyEditorClass);const x=Qn.node(u,u+c.nodeSize,{class:m.join(" "),[t]:typeof this.options.placeholder=="function"?this.options.placeholder({editor:this.editor,node:c,pos:u,hasAnchor:h}):this.options.placeholder});i.push(x)}return this.options.includeChildren}),rn.create(e,i)}}})]}});Pn.create({name:"selection",addOptions(){return{className:"selection"}},addProseMirrorPlugins(){const{editor:t,options:e}=this;return[new dn({key:new gn("selection"),props:{decorations(n){return n.selection.empty||t.isFocused||!t.isEditable||uC(n.selection)||t.view.dragging?null:rn.create(n.doc,[Qn.inline(n.selection.from,n.selection.to,{class:e.className})])}}})]}});function jw({types:t,node:e}){return e&&Array.isArray(t)&&t.includes(e.type)||(e==null?void 0:e.type)===t}var h$=Pn.create({name:"trailingNode",addOptions(){return{node:void 0,notAfter:[]}},addProseMirrorPlugins(){var t;const e=new gn(this.name),n=this.options.node||((t=this.editor.schema.topNodeType.contentMatch.defaultType)==null?void 0:t.name)||"paragraph",r=Object.entries(this.editor.schema.nodes).map(([,a])=>a).filter(a=>(this.options.notAfter||[]).concat(n).includes(a.name));return[new dn({key:e,appendTransaction:(a,i,o)=>{const{doc:c,tr:u,schema:h}=o,f=e.getState(o),m=c.content.size,x=h.nodes[n];if(f)return u.insert(m,x.create())},state:{init:(a,i)=>{const o=i.tr.doc.lastChild;return!jw({node:o,types:r})},apply:(a,i)=>{if(!a.docChanged||a.getMeta("__uniqueIDTransaction"))return i;const o=a.doc.lastChild;return!jw({node:o,types:r})}}})]}}),f$=Pn.create({name:"undoRedo",addOptions(){return{depth:100,newGroupDelay:500}},addCommands(){return{undo:()=>({state:t,dispatch:e})=>i3(t,e),redo:()=>({state:t,dispatch:e})=>o3(t,e)}},addProseMirrorPlugins(){return[o$(this.options)]},addKeyboardShortcuts(){return{"Mod-z":()=>this.editor.commands.undo(),"Shift-Mod-z":()=>this.editor.commands.redo(),"Mod-y":()=>this.editor.commands.redo(),"Mod-я":()=>this.editor.commands.undo(),"Shift-Mod-я":()=>this.editor.commands.redo()}}}),p$=Pn.create({name:"starterKit",addExtensions(){var t,e,n,r;const a=[];return this.options.bold!==!1&&a.push(z7.configure(this.options.bold)),this.options.blockquote!==!1&&a.push(R7.configure(this.options.blockquote)),this.options.bulletList!==!1&&a.push(KC.configure(this.options.bulletList)),this.options.code!==!1&&a.push(B7.configure(this.options.code)),this.options.codeBlock!==!1&&a.push(U7.configure(this.options.codeBlock)),this.options.document!==!1&&a.push(W7.configure(this.options.document)),this.options.dropcursor!==!1&&a.push(l$.configure(this.options.dropcursor)),this.options.gapcursor!==!1&&a.push(c$.configure(this.options.gapcursor)),this.options.hardBreak!==!1&&a.push(K7.configure(this.options.hardBreak)),this.options.heading!==!1&&a.push(q7.configure(this.options.heading)),this.options.undoRedo!==!1&&a.push(f$.configure(this.options.undoRedo)),this.options.horizontalRule!==!1&&a.push(G7.configure(this.options.horizontalRule)),this.options.italic!==!1&&a.push(Z7.configure(this.options.italic)),this.options.listItem!==!1&&a.push(qC.configure(this.options.listItem)),this.options.listKeymap!==!1&&a.push(ZC.configure((t=this.options)==null?void 0:t.listKeymap)),this.options.link!==!1&&a.push(kz.configure((e=this.options)==null?void 0:e.link)),this.options.orderedList!==!1&&a.push(t3.configure(this.options.orderedList)),this.options.paragraph!==!1&&a.push(zz.configure(this.options.paragraph)),this.options.strike!==!1&&a.push(Bz.configure(this.options.strike)),this.options.text!==!1&&a.push(Vz.configure(this.options.text)),this.options.underline!==!1&&a.push(Hz.configure((n=this.options)==null?void 0:n.underline)),this.options.trailingNode!==!1&&a.push(h$.configure((r=this.options)==null?void 0:r.trailingNode)),a}}),m$=p$,x$=/(?:^|\s)(!\[(.+|:?)]\((\S+)(?:(?:\s+)["'](\S+)["'])?\))$/,g$=$n.create({name:"image",addOptions(){return{inline:!1,allowBase64:!1,HTMLAttributes:{},resize:!1}},inline(){return this.options.inline},group(){return this.options.inline?"inline":"block"},draggable:!0,addAttributes(){return{src:{default:null},alt:{default:null},title:{default:null},width:{default:null},height:{default:null}}},parseHTML(){return[{tag:this.options.allowBase64?"img[src]":'img[src]:not([src^="data:"])'}]},renderHTML({HTMLAttributes:t}){return["img",Gt(this.options.HTMLAttributes,t)]},parseMarkdown:(t,e)=>e.createNode("image",{src:t.href,title:t.title,alt:t.text}),renderMarkdown:t=>{var e,n,r,a,i,o;const c=(n=(e=t.attrs)==null?void 0:e.src)!=null?n:"",u=(a=(r=t.attrs)==null?void 0:r.alt)!=null?a:"",h=(o=(i=t.attrs)==null?void 0:i.title)!=null?o:"";return h?`![${u}](${c} "${h}")`:`![${u}](${c})`},addNodeView(){if(!this.options.resize||!this.options.resize.enabled||typeof document>"u")return null;const{directions:t,minWidth:e,minHeight:n,alwaysPreserveAspectRatio:r}=this.options.resize;return({node:a,getPos:i,HTMLAttributes:o,editor:c})=>{const u=document.createElement("img");Object.entries(o).forEach(([m,x])=>{if(x!=null)switch(m){case"width":case"height":break;default:u.setAttribute(m,x);break}}),u.src=o.src;const h=new v_({element:u,editor:c,node:a,getPos:i,onResize:(m,x)=>{u.style.width=`${m}px`,u.style.height=`${x}px`},onCommit:(m,x)=>{const y=i();y!==void 0&&this.editor.chain().setNodeSelection(y).updateAttributes(this.name,{width:m,height:x}).run()},onUpdate:(m,x,y)=>m.type===a.type,options:{directions:t,min:{width:e,height:n},preserveAspectRatio:r===!0}}),f=h.dom;return f.style.visibility="hidden",f.style.pointerEvents="none",u.onload=()=>{f.style.visibility="",f.style.pointerEvents=""},h}},addCommands(){return{setImage:t=>({commands:e})=>e.insertContent({type:this.name,attrs:t})}},addInputRules(){return[EC({find:x$,type:this.type,getAttributes:t=>{const[,,e,n,r]=t;return{src:n,alt:e,title:r}}})]}}),y$=g$;function b$(t){var e;const{char:n,allowSpaces:r,allowToIncludeChar:a,allowedPrefixes:i,startOfLine:o,$position:c}=t,u=r&&!a,h=w_(n),f=new RegExp(`\\s${h}$`),m=o?"^":"",x=a?"":h,y=u?new RegExp(`${m}${h}.*?(?=\\s${x}|$)`,"gm"):new RegExp(`${m}(?:^)?${h}[^\\s${x}]*`,"gm"),v=((e=c.nodeBefore)==null?void 0:e.isText)&&c.nodeBefore.text;if(!v)return null;const N=c.pos-v.length,w=Array.from(v.matchAll(y)).pop();if(!w||w.input===void 0||w.index===void 0)return null;const k=w.input.slice(Math.max(0,w.index-1),w.index),E=new RegExp(`^[${i==null?void 0:i.join("")}\0]?$`).test(k);if(i!==null&&!E)return null;const C=N+w.index;let R=C+w[0].length;return u&&f.test(v.slice(R-1,R+1))&&(w[0]+=" ",R+=1),C=c.pos?{range:{from:C,to:R},query:w[0].slice(n.length),text:w[0]}:null}var v$=new gn("suggestion");function N$({pluginKey:t=v$,editor:e,char:n="@",allowSpaces:r=!1,allowToIncludeChar:a=!1,allowedPrefixes:i=[" "],startOfLine:o=!1,decorationTag:c="span",decorationClass:u="suggestion",decorationContent:h="",decorationEmptyClass:f="is-empty",command:m=()=>null,items:x=()=>[],render:y=()=>({}),allow:v=()=>!0,findSuggestionMatch:N=b$,shouldShow:w}){let k;const E=y==null?void 0:y(),C=()=>{const $=e.state.selection.$anchor.pos,V=e.view.coordsAtPos($),{top:I,right:te,bottom:Q,left:B}=V;try{return new DOMRect(B,I,te-B,Q-I)}catch{return null}},R=($,V)=>V?()=>{const I=t.getState(e.state),te=I==null?void 0:I.decorationId,Q=$.dom.querySelector(`[data-decoration-id="${te}"]`);return(Q==null?void 0:Q.getBoundingClientRect())||null}:C;function O($,V){var I;try{const Q=t.getState($.state),B=Q!=null&&Q.decorationId?$.dom.querySelector(`[data-decoration-id="${Q.decorationId}"]`):null,re={editor:e,range:(Q==null?void 0:Q.range)||{from:0,to:0},query:(Q==null?void 0:Q.query)||null,text:(Q==null?void 0:Q.text)||null,items:[],command:ae=>m({editor:e,range:(Q==null?void 0:Q.range)||{from:0,to:0},props:ae}),decorationNode:B,clientRect:R($,B)};(I=E==null?void 0:E.onExit)==null||I.call(E,re)}catch{}const te=$.state.tr.setMeta(V,{exit:!0});$.dispatch(te)}const q=new dn({key:t,view(){return{update:async($,V)=>{var I,te,Q,B,re,ae,J;const F=(I=this.key)==null?void 0:I.getState(V),D=(te=this.key)==null?void 0:te.getState($.state),P=F.active&&D.active&&F.range.from!==D.range.from,oe=!F.active&&D.active,G=F.active&&!D.active,_=!oe&&!G&&F.query!==D.query,U=oe||P&&_,H=_||P,K=G||P&&_;if(!U&&!H&&!K)return;const me=K&&!U?F:D,X=$.dom.querySelector(`[data-decoration-id="${me.decorationId}"]`);k={editor:e,range:me.range,query:me.query,text:me.text,items:[],command:le=>m({editor:e,range:me.range,props:le}),decorationNode:X,clientRect:R($,X)},U&&((Q=E==null?void 0:E.onBeforeStart)==null||Q.call(E,k)),H&&((B=E==null?void 0:E.onBeforeUpdate)==null||B.call(E,k)),(H||U)&&(k.items=await x({editor:e,query:me.query})),K&&((re=E==null?void 0:E.onExit)==null||re.call(E,k)),H&&((ae=E==null?void 0:E.onUpdate)==null||ae.call(E,k)),U&&((J=E==null?void 0:E.onStart)==null||J.call(E,k))},destroy:()=>{var $;k&&(($=E==null?void 0:E.onExit)==null||$.call(E,k))}}},state:{init(){return{active:!1,range:{from:0,to:0},query:null,text:null,composing:!1}},apply($,V,I,te){const{isEditable:Q}=e,{composing:B}=e.view,{selection:re}=$,{empty:ae,from:J}=re,F={...V},D=$.getMeta(t);if(D&&D.exit)return F.active=!1,F.decorationId=null,F.range={from:0,to:0},F.query=null,F.text=null,F;if(F.composing=B,Q&&(ae||e.view.composing)){(JV.range.to)&&!B&&!V.composing&&(F.active=!1);const P=N({char:n,allowSpaces:r,allowToIncludeChar:a,allowedPrefixes:i,startOfLine:o,$position:re.$from}),oe=`id_${Math.floor(Math.random()*4294967295)}`;P&&v({editor:e,state:te,range:P.range,isActive:V.active})&&(!w||w({editor:e,range:P.range,query:P.query,text:P.text,transaction:$}))?(F.active=!0,F.decorationId=V.decorationId?V.decorationId:oe,F.range=P.range,F.query=P.query,F.text=P.text):F.active=!1}else F.active=!1;return F.active||(F.decorationId=null,F.range={from:0,to:0},F.query=null,F.text=null),F}},props:{handleKeyDown($,V){var I,te,Q,B;const{active:re,range:ae}=q.getState($.state);if(!re)return!1;if(V.key==="Escape"||V.key==="Esc"){const F=q.getState($.state),D=(I=k==null?void 0:k.decorationNode)!=null?I:null,P=D??(F!=null&&F.decorationId?$.dom.querySelector(`[data-decoration-id="${F.decorationId}"]`):null);if(((te=E==null?void 0:E.onKeyDown)==null?void 0:te.call(E,{view:$,event:V,range:F.range}))||!1)return!0;const G={editor:e,range:F.range,query:F.query,text:F.text,items:[],command:_=>m({editor:e,range:F.range,props:_}),decorationNode:P,clientRect:P?()=>P.getBoundingClientRect()||null:null};return(Q=E==null?void 0:E.onExit)==null||Q.call(E,G),O($,t),!0}return((B=E==null?void 0:E.onKeyDown)==null?void 0:B.call(E,{view:$,event:V,range:ae}))||!1},decorations($){const{active:V,range:I,decorationId:te,query:Q}=q.getState($);if(!V)return null;const B=!(Q!=null&&Q.length),re=[u];return B&&re.push(f),rn.create($.doc,[Qn.inline(I.from,I.to,{nodeName:c,class:re.join(" "),"data-decoration-id":te,"data-decoration-content":h})])}}});return q}function w$({editor:t,overrideSuggestionOptions:e,extensionName:n,char:r="@"}){const a=new gn;return{editor:t,char:r,pluginKey:a,command:({editor:i,range:o,props:c})=>{var u,h,f;const m=i.view.state.selection.$to.nodeAfter;((u=m==null?void 0:m.text)==null?void 0:u.startsWith(" "))&&(o.to+=1),i.chain().focus().insertContentAt(o,[{type:n,attrs:{...c,mentionSuggestionChar:r}},{type:"text",text:" "}]).run(),(f=(h=i.view.dom.ownerDocument.defaultView)==null?void 0:h.getSelection())==null||f.collapseToEnd()},allow:({state:i,range:o})=>{const c=i.doc.resolve(o.from),u=i.schema.nodes[n];return!!c.parent.type.contentMatch.matchType(u)},...e}}function l3(t){return(t.options.suggestions.length?t.options.suggestions:[t.options.suggestion]).map(e=>w$({editor:t.editor,overrideSuggestionOptions:e,extensionName:t.name,char:e.char}))}function kw(t,e){const n=l3(t),r=n.find(a=>a.char===e);return r||(n.length?n[0]:null)}var j$=$n.create({name:"mention",priority:101,addOptions(){return{HTMLAttributes:{},renderText({node:t,suggestion:e}){var n,r;return`${(n=e==null?void 0:e.char)!=null?n:"@"}${(r=t.attrs.label)!=null?r:t.attrs.id}`},deleteTriggerWithBackspace:!1,renderHTML({options:t,node:e,suggestion:n}){var r,a;return["span",Gt(this.HTMLAttributes,t.HTMLAttributes),`${(r=n==null?void 0:n.char)!=null?r:"@"}${(a=e.attrs.label)!=null?a:e.attrs.id}`]},suggestions:[],suggestion:{}}},group:"inline",inline:!0,selectable:!1,atom:!0,addAttributes(){return{id:{default:null,parseHTML:t=>t.getAttribute("data-id"),renderHTML:t=>t.id?{"data-id":t.id}:{}},label:{default:null,parseHTML:t=>t.getAttribute("data-label"),renderHTML:t=>t.label?{"data-label":t.label}:{}},mentionSuggestionChar:{default:"@",parseHTML:t=>t.getAttribute("data-mention-suggestion-char"),renderHTML:t=>({"data-mention-suggestion-char":t.mentionSuggestionChar})}}},parseHTML(){return[{tag:`span[data-type="${this.name}"]`}]},renderHTML({node:t,HTMLAttributes:e}){const n=kw(this,t.attrs.mentionSuggestionChar);if(this.options.renderLabel!==void 0)return console.warn("renderLabel is deprecated use renderText and renderHTML instead"),["span",Gt({"data-type":this.name},this.options.HTMLAttributes,e),this.options.renderLabel({options:this.options,node:t,suggestion:n})];const r={...this.options};r.HTMLAttributes=Gt({"data-type":this.name},this.options.HTMLAttributes,e);const a=this.options.renderHTML({options:r,node:t,suggestion:n});return typeof a=="string"?["span",Gt({"data-type":this.name},this.options.HTMLAttributes,e),a]:a},...MC({nodeName:"mention",name:"@",selfClosing:!0,allowedAttributes:["id","label",{name:"mentionSuggestionChar",skipIfDefault:"@"}],parseAttributes:t=>{const e={},n=/(\w+)=(?:"([^"]*)"|'([^']*)')/g;let r=n.exec(t);for(;r!==null;){const[,a,i,o]=r,c=i??o;e[a==="char"?"mentionSuggestionChar":a]=c,r=n.exec(t)}return e},serializeAttributes:t=>Object.entries(t).filter(([,e])=>e!=null).map(([e,n])=>`${e==="mentionSuggestionChar"?"char":e}="${n}"`).join(" ")}),renderText({node:t}){const e={options:this.options,node:t,suggestion:kw(this,t.attrs.mentionSuggestionChar)};return this.options.renderLabel!==void 0?(console.warn("renderLabel is deprecated use renderText and renderHTML instead"),this.options.renderLabel(e)):this.options.renderText(e)},addKeyboardShortcuts(){return{Backspace:()=>this.editor.commands.command(({tr:t,state:e})=>{let n=!1;const{selection:r}=e,{empty:a,anchor:i}=r;if(!a)return!1;let o=new bi,c=0;return e.doc.nodesBetween(i-1,i,(u,h)=>{if(u.type.name===this.name)return n=!0,o=u,c=h,!1}),n&&t.insertText(this.options.deleteTriggerWithBackspace?"":o.attrs.mentionSuggestionChar,c,c+o.nodeSize),n})}},addProseMirrorPlugins(){return l3(this).map(N$)}}),k$=j$,S$=u$;let n0,s0;if(typeof WeakMap<"u"){let t=new WeakMap;n0=e=>t.get(e),s0=(e,n)=>(t.set(e,n),n)}else{const t=[];let n=0;n0=r=>{for(let a=0;a(n==10&&(n=0),t[n++]=r,t[n++]=a)}var In=class{constructor(t,e,n,r){this.width=t,this.height=e,this.map=n,this.problems=r}findCell(t){for(let e=0;e=n){(i||(i=[])).push({type:"overlong_rowspan",pos:f,n:k-C});break}const R=a+C*e;for(let O=0;Or&&(i+=h.attrs.colspan)}}for(let o=0;o1&&(n=!0)}e==-1?e=i:e!=i&&(e=Math.max(e,i))}return e}function E$(t,e,n){t.problems||(t.problems=[]);const r={};for(let a=0;a0;e--)if(t.node(e).type.spec.tableRole=="row")return t.node(0).resolve(t.before(e+1));return null}function A$(t){for(let e=t.depth;e>0;e--){const n=t.node(e).type.spec.tableRole;if(n==="cell"||n==="header_cell")return t.node(e)}return null}function ia(t){const e=t.selection.$head;for(let n=e.depth;n>0;n--)if(e.node(n).type.spec.tableRole=="row")return!0;return!1}function Mp(t){const e=t.selection;if("$anchorCell"in e&&e.$anchorCell)return e.$anchorCell.pos>e.$headCell.pos?e.$anchorCell:e.$headCell;if("node"in e&&e.node&&e.node.type.spec.tableRole=="cell")return e.$anchor;const n=Cl(e.$head)||I$(e.$head);if(n)return n;throw new RangeError(`No cell found around position ${e.head}`)}function I$(t){for(let e=t.nodeAfter,n=t.pos;e;e=e.firstChild,n++){const r=e.type.spec.tableRole;if(r=="cell"||r=="header_cell")return t.doc.resolve(n)}for(let e=t.nodeBefore,n=t.pos;e;e=e.lastChild,n--){const r=e.type.spec.tableRole;if(r=="cell"||r=="header_cell")return t.doc.resolve(n-e.nodeSize)}}function r0(t){return t.parent.type.spec.tableRole=="row"&&!!t.nodeAfter}function P$(t){return t.node(0).resolve(t.pos+t.nodeAfter.nodeSize)}function Ty(t,e){return t.depth==e.depth&&t.pos>=e.start(-1)&&t.pos<=e.end(-1)}function c3(t,e,n){const r=t.node(-1),a=In.get(r),i=t.start(-1),o=a.nextCell(t.pos-i,e,n);return o==null?null:t.node(0).resolve(i+o)}function Tl(t,e,n=1){const r={...t,colspan:t.colspan-n};return r.colwidth&&(r.colwidth=r.colwidth.slice(),r.colwidth.splice(e,n),r.colwidth.some(a=>a>0)||(r.colwidth=null)),r}function d3(t,e,n=1){const r={...t,colspan:t.colspan+n};if(r.colwidth){r.colwidth=r.colwidth.slice();for(let a=0;af!=n.pos-i);u.unshift(n.pos-i);const h=u.map(f=>{const m=r.nodeAt(f);if(!m)throw new RangeError(`No cell with offset ${f} found`);const x=i+f+1;return new Z2(c.resolve(x),c.resolve(x+m.content.size))});super(h[0].$from,h[0].$to,h),this.$anchorCell=e,this.$headCell=n}map(e,n){const r=e.resolve(n.map(this.$anchorCell.pos)),a=e.resolve(n.map(this.$headCell.pos));if(r0(r)&&r0(a)&&Ty(r,a)){const i=this.$anchorCell.node(-1)!=r.node(-1);return i&&this.isRowSelection()?fi.rowSelection(r,a):i&&this.isColSelection()?fi.colSelection(r,a):new fi(r,a)}return nt.between(r,a)}content(){const e=this.$anchorCell.node(-1),n=In.get(e),r=this.$anchorCell.start(-1),a=n.rectBetween(this.$anchorCell.pos-r,this.$headCell.pos-r),i={},o=[];for(let u=a.top;u0||w>0){let k=v.attrs;if(N>0&&(k=Tl(k,0,N)),w>0&&(k=Tl(k,k.colspan-w,w)),y.lefta.bottom){const k={...v.attrs,rowspan:Math.min(y.bottom,a.bottom)-Math.max(y.top,a.top)};y.top0)return!1;const r=e+this.$anchorCell.nodeAfter.attrs.rowspan,a=n+this.$headCell.nodeAfter.attrs.rowspan;return Math.max(r,a)==this.$headCell.node(-1).childCount}static colSelection(e,n=e){const r=e.node(-1),a=In.get(r),i=e.start(-1),o=a.findCell(e.pos-i),c=a.findCell(n.pos-i),u=e.node(0);return o.top<=c.top?(o.top>0&&(e=u.resolve(i+a.map[o.left])),c.bottom0&&(n=u.resolve(i+a.map[c.left])),o.bottom0)return!1;const o=a+this.$anchorCell.nodeAfter.attrs.colspan,c=i+this.$headCell.nodeAfter.attrs.colspan;return Math.max(o,c)==n.width}eq(e){return e instanceof fi&&e.$anchorCell.pos==this.$anchorCell.pos&&e.$headCell.pos==this.$headCell.pos}static rowSelection(e,n=e){const r=e.node(-1),a=In.get(r),i=e.start(-1),o=a.findCell(e.pos-i),c=a.findCell(n.pos-i),u=e.node(0);return o.left<=c.left?(o.left>0&&(e=u.resolve(i+a.map[o.top*a.width])),c.right0&&(n=u.resolve(i+a.map[c.top*a.width])),o.right{e.push(Qn.node(r,r+n.nodeSize,{class:"selectedCell"}))}),rn.create(t.doc,e)}function D$({$from:t,$to:e}){if(t.pos==e.pos||t.pos=0&&!(t.after(a+1)=0&&!(e.before(i+1)>e.start(i));i--,r--);return n==r&&/row|table/.test(t.node(a).type.spec.tableRole)}function _$({$from:t,$to:e}){let n,r;for(let a=t.depth;a>0;a--){const i=t.node(a);if(i.type.spec.tableRole==="cell"||i.type.spec.tableRole==="header_cell"){n=i;break}}for(let a=e.depth;a>0;a--){const i=e.node(a);if(i.type.spec.tableRole==="cell"||i.type.spec.tableRole==="header_cell"){r=i;break}}return n!==r&&e.parentOffset===0}function z$(t,e,n){const r=(e||t).selection,a=(e||t).doc;let i,o;if(r instanceof tt&&(o=r.node.type.spec.tableRole)){if(o=="cell"||o=="header_cell")i=cn.create(a,r.from);else if(o=="row"){const c=a.resolve(r.from+1);i=cn.rowSelection(c,c)}else if(!n){const c=In.get(r.node),u=r.from+1,h=u+c.map[c.width*c.height-1];i=cn.create(a,u+1,h)}}else r instanceof nt&&D$(r)?i=nt.create(a,r.from):r instanceof nt&&_$(r)&&(i=nt.create(a,r.$from.start(),r.$from.end()));return i&&(e||(e=t.tr)).setSelection(i),e}const $$=new gn("fix-tables");function h3(t,e,n,r){const a=t.childCount,i=e.childCount;e:for(let o=0,c=0;o{a.type.spec.tableRole=="table"&&(n=F$(t,a,i,n))};return e?e.doc!=t.doc&&h3(e.doc,t.doc,0,r):t.doc.descendants(r),n}function F$(t,e,n,r){const a=In.get(e);if(!a.problems)return r;r||(r=t.tr);const i=[];for(let u=0;u0){let y="cell";f.firstChild&&(y=f.firstChild.type.spec.tableRole);const v=[];for(let w=0;w0?-1:0;R$(e,r,a+i)&&(i=a==0||a==e.width?null:0);for(let o=0;o0&&a0&&e.map[c-1]==u||a0?-1:0;W$(e,r,a+c)&&(c=a==0||a==e.height?null:0);for(let h=0,f=e.width*a;h0&&a0&&m==e.map[f-e.width]){const x=n.nodeAt(m).attrs;t.setNodeMarkup(t.mapping.slice(c).map(m+r),null,{...x,rowspan:x.rowspan-1}),h+=x.colspan-1}else if(a0&&n[i]==n[i-1]||r.right0&&n[a]==n[a-t]||r.bottom0){const f=u+1+h.content.size,m=Sw(h)?u+1:f;i.replaceWith(m+r.tableStart,f+r.tableStart,c)}i.setSelection(new cn(i.doc.resolve(u+r.tableStart))),e(i)}return!0}function Tw(t,e){const n=Rs(t.schema);return Y$(({node:r})=>n[r.type.spec.tableRole])(t,e)}function Y$(t){return(e,n)=>{const r=e.selection;let a,i;if(r instanceof cn){if(r.$anchorCell.pos!=r.$headCell.pos)return!1;a=r.$anchorCell.nodeAfter,i=r.$anchorCell.pos}else{var o;if(a=A$(r.$from),!a)return!1;i=(o=Cl(r.$from))===null||o===void 0?void 0:o.pos}if(a==null||i==null||a.attrs.colspan==1&&a.attrs.rowspan==1)return!1;if(n){let c=a.attrs;const u=[],h=c.colwidth;c.rowspan>1&&(c={...c,rowspan:1}),c.colspan>1&&(c={...c,colspan:1});const f=Da(e),m=e.tr;for(let y=0;y{o.attrs[t]!==e&&i.setNodeMarkup(c,null,{...o.attrs,[t]:e})}):i.setNodeMarkup(a.pos,null,{...a.nodeAfter.attrs,[t]:e}),r(i)}return!0}}function Z$(t){return function(e,n){if(!ia(e))return!1;if(n){const r=Rs(e.schema),a=Da(e),i=e.tr,o=a.map.cellsInRect(t=="column"?{left:a.left,top:0,right:a.right,bottom:a.map.height}:t=="row"?{left:0,top:a.top,right:a.map.width,bottom:a.bottom}:a),c=o.map(u=>a.table.nodeAt(u));for(let u=0;u{const y=x+i.tableStart,v=o.doc.nodeAt(y);v&&o.setNodeMarkup(y,m,v.attrs)}),r(o)}return!0}}lu("row",{useDeprecatedLogic:!0});lu("column",{useDeprecatedLogic:!0});const eF=lu("cell",{useDeprecatedLogic:!0});function tF(t,e){if(e<0){const n=t.nodeBefore;if(n)return t.pos-n.nodeSize;for(let r=t.index(-1)-1,a=t.before();r>=0;r--){const i=t.node(-1).child(r),o=i.lastChild;if(o)return a-1-o.nodeSize;a-=i.nodeSize}}else{if(t.index()0;r--)if(n.node(r).type.spec.tableRole=="table")return e&&e(t.tr.delete(n.before(r),n.after(r)).scrollIntoView()),!0;return!1}function _h(t,e){const n=t.selection;if(!(n instanceof cn))return!1;if(e){const r=t.tr,a=Rs(t.schema).cell.createAndFill().content;n.forEachCell((i,o)=>{i.content.eq(a)||r.replace(r.mapping.map(o+1),r.mapping.map(o+i.nodeSize-1),new ze(a,0,0))}),r.docChanged&&e(r)}return!0}function sF(t){if(t.size===0)return null;let{content:e,openStart:n,openEnd:r}=t;for(;e.childCount==1&&(n>0&&r>0||e.child(0).type.spec.tableRole=="table");)n--,r--,e=e.child(0).content;const a=e.child(0),i=a.type.spec.tableRole,o=a.type.schema,c=[];if(i=="row")for(let u=0;u=0;o--){const{rowspan:c,colspan:u}=i.child(o).attrs;for(let h=a;h=e.length&&e.push(Ne.empty),n[a]r&&(x=x.type.createChecked(Tl(x.attrs,x.attrs.colspan,f+x.attrs.colspan-r),x.content)),h.push(x),f+=x.attrs.colspan;for(let y=1;ya&&(m=m.type.create({...m.attrs,rowspan:Math.max(1,a-m.attrs.rowspan)},m.content)),u.push(m)}i.push(Ne.from(u))}n=i,e=a}return{width:t,height:e,rows:n}}function iF(t,e,n,r,a,i,o){const c=t.doc.type.schema,u=Rs(c);let h,f;if(a>e.width)for(let m=0,x=0;me.height){const m=[];for(let v=0,N=(e.height-1)*e.width;v=e.width?!1:n.nodeAt(e.map[N+v]).type==u.header_cell;m.push(w?f||(f=u.header_cell.createAndFill()):h||(h=u.cell.createAndFill()))}const x=u.row.create(null,Ne.from(m)),y=[];for(let v=e.height;v{if(!a)return!1;const i=n.selection;if(i instanceof cn)return Jh(n,r,lt.near(i.$headCell,e));if(t!="horiz"&&!i.empty)return!1;const o=x3(a,t,e);if(o==null)return!1;if(t=="horiz")return Jh(n,r,lt.near(n.doc.resolve(i.head+e),e));{const c=n.doc.resolve(o),u=c3(c,t,e);let h;return u?h=lt.near(u,1):e<0?h=lt.near(n.doc.resolve(c.before(-1)),-1):h=lt.near(n.doc.resolve(c.after(-1)),1),Jh(n,r,h)}}}function $h(t,e){return(n,r,a)=>{if(!a)return!1;const i=n.selection;let o;if(i instanceof cn)o=i;else{const u=x3(a,t,e);if(u==null)return!1;o=new cn(n.doc.resolve(u))}const c=c3(o.$headCell,t,e);return c?Jh(n,r,new cn(o.$anchorCell,c)):!1}}function lF(t,e){const n=t.state.doc,r=Cl(n.resolve(e));return r?(t.dispatch(t.state.tr.setSelection(new cn(r))),!0):!1}function cF(t,e,n){if(!ia(t.state))return!1;let r=sF(n);const a=t.state.selection;if(a instanceof cn){r||(r={width:1,height:1,rows:[Ne.from(a0(Rs(t.state.schema).cell,n))]});const i=a.$anchorCell.node(-1),o=a.$anchorCell.start(-1),c=In.get(i).rectBetween(a.$anchorCell.pos-o,a.$headCell.pos-o);return r=aF(r,c.right-c.left,c.bottom-c.top),Pw(t.state,t.dispatch,o,c,r),!0}else if(r){const i=Mp(t.state),o=i.start(-1);return Pw(t.state,t.dispatch,o,In.get(i.node(-1)).findCell(i.pos-o),r),!0}else return!1}function dF(t,e){var n;if(e.button!=0||e.ctrlKey||e.metaKey)return;const r=Rw(t,e.target);let a;if(e.shiftKey&&t.state.selection instanceof cn)i(t.state.selection.$anchorCell,e),e.preventDefault();else if(e.shiftKey&&r&&(a=Cl(t.state.selection.$anchor))!=null&&((n=eg(t,e))===null||n===void 0?void 0:n.pos)!=a.pos)i(a,e),e.preventDefault();else if(!r)return;function i(u,h){let f=eg(t,h);const m=fo.getState(t.state)==null;if(!f||!Ty(u,f))if(m)f=u;else return;const x=new cn(u,f);if(m||!t.state.selection.eq(x)){const y=t.state.tr.setSelection(x);m&&y.setMeta(fo,u.pos),t.dispatch(y)}}function o(){t.root.removeEventListener("mouseup",o),t.root.removeEventListener("dragstart",o),t.root.removeEventListener("mousemove",c),fo.getState(t.state)!=null&&t.dispatch(t.state.tr.setMeta(fo,-1))}function c(u){const h=u,f=fo.getState(t.state);let m;if(f!=null)m=t.state.doc.resolve(f);else if(Rw(t,h.target)!=r&&(m=eg(t,e),!m))return o();m&&i(m,h)}t.root.addEventListener("mouseup",o),t.root.addEventListener("dragstart",o),t.root.addEventListener("mousemove",c)}function x3(t,e,n){if(!(t.state.selection instanceof nt))return null;const{$head:r}=t.state.selection;for(let a=r.depth-1;a>=0;a--){const i=r.node(a);if((n<0?r.index(a):r.indexAfter(a))!=(n<0?0:i.childCount))return null;if(i.type.spec.tableRole=="cell"||i.type.spec.tableRole=="header_cell"){const o=r.before(a),c=e=="vert"?n>0?"down":"up":n>0?"right":"left";return t.endOfTextblock(c)?o:null}}return null}function Rw(t,e){for(;e&&e!=t.dom;e=e.parentNode)if(e.nodeName=="TD"||e.nodeName=="TH")return e;return null}function eg(t,e){const n=t.posAtCoords({left:e.clientX,top:e.clientY});if(!n)return null;let{inside:r,pos:a}=n;return r>=0&&Cl(t.state.doc.resolve(r))||Cl(t.state.doc.resolve(a))}var uF=class{constructor(e,n){this.node=e,this.defaultCellMinWidth=n,this.dom=document.createElement("div"),this.dom.className="tableWrapper",this.table=this.dom.appendChild(document.createElement("table")),this.table.style.setProperty("--default-cell-min-width",`${n}px`),this.colgroup=this.table.appendChild(document.createElement("colgroup")),i0(e,this.colgroup,this.table,n),this.contentDOM=this.table.appendChild(document.createElement("tbody"))}update(e){return e.type!=this.node.type?!1:(this.node=e,i0(e,this.colgroup,this.table,this.defaultCellMinWidth),!0)}ignoreMutation(e){return e.type=="attributes"&&(e.target==this.table||this.colgroup.contains(e.target))}};function i0(t,e,n,r,a,i){let o=0,c=!0,u=e.firstChild;const h=t.firstChild;if(h){for(let m=0,x=0;mnew r(m,n,x)),new fF(-1,!1)},apply(o,c){return c.apply(o)}},props:{attributes:o=>{const c=mr.getState(o);return c&&c.activeHandle>-1?{class:"resize-cursor"}:{}},handleDOMEvents:{mousemove:(o,c)=>{pF(o,c,t,a)},mouseleave:o=>{mF(o)},mousedown:(o,c)=>{xF(o,c,e,n)}},decorations:o=>{const c=mr.getState(o);if(c&&c.activeHandle>-1)return NF(o,c.activeHandle)},nodeViews:{}}});return i}var fF=class Qh{constructor(e,n){this.activeHandle=e,this.dragging=n}apply(e){const n=this,r=e.getMeta(mr);if(r&&r.setHandle!=null)return new Qh(r.setHandle,!1);if(r&&r.setDragging!==void 0)return new Qh(n.activeHandle,r.setDragging);if(n.activeHandle>-1&&e.docChanged){let a=e.mapping.map(n.activeHandle,-1);return r0(e.doc.resolve(a))||(a=-1),new Qh(a,n.dragging)}return n}};function pF(t,e,n,r){if(!t.editable)return;const a=mr.getState(t.state);if(a&&!a.dragging){const i=yF(e.target);let o=-1;if(i){const{left:c,right:u}=i.getBoundingClientRect();e.clientX-c<=n?o=Ow(t,e,"left",n):u-e.clientX<=n&&(o=Ow(t,e,"right",n))}if(o!=a.activeHandle){if(!r&&o!==-1){const c=t.state.doc.resolve(o),u=c.node(-1),h=In.get(u),f=c.start(-1);if(h.colCount(c.pos-f)+c.nodeAfter.attrs.colspan-1==h.width-1)return}g3(t,o)}}}function mF(t){if(!t.editable)return;const e=mr.getState(t.state);e&&e.activeHandle>-1&&!e.dragging&&g3(t,-1)}function xF(t,e,n,r){var a;if(!t.editable)return!1;const i=(a=t.dom.ownerDocument.defaultView)!==null&&a!==void 0?a:window,o=mr.getState(t.state);if(!o||o.activeHandle==-1||o.dragging)return!1;const c=t.state.doc.nodeAt(o.activeHandle),u=gF(t,o.activeHandle,c.attrs);t.dispatch(t.state.tr.setMeta(mr,{setDragging:{startX:e.clientX,startWidth:u}}));function h(m){i.removeEventListener("mouseup",h),i.removeEventListener("mousemove",f);const x=mr.getState(t.state);x!=null&&x.dragging&&(bF(t,x.activeHandle,Lw(x.dragging,m,n)),t.dispatch(t.state.tr.setMeta(mr,{setDragging:null})))}function f(m){if(!m.which)return h(m);const x=mr.getState(t.state);if(x&&x.dragging){const y=Lw(x.dragging,m,n);Dw(t,x.activeHandle,y,r)}}return Dw(t,o.activeHandle,u,r),i.addEventListener("mouseup",h),i.addEventListener("mousemove",f),e.preventDefault(),!0}function gF(t,e,{colspan:n,colwidth:r}){const a=r&&r[r.length-1];if(a)return a;const i=t.domAtPos(e);let o=i.node.childNodes[i.offset].offsetWidth,c=n;if(r)for(let u=0;u{var e,n;const r=t.getAttribute("colwidth"),a=r?r.split(",").map(i=>parseInt(i,10)):null;if(!a){const i=(e=t.closest("table"))==null?void 0:e.querySelectorAll("colgroup > col"),o=Array.from(((n=t.parentElement)==null?void 0:n.children)||[]).indexOf(t);if(o&&o>-1&&i&&i[o]){const c=i[o].getAttribute("width");return c?[parseInt(c,10)]:null}}return a}}}},tableRole:"cell",isolating:!0,parseHTML(){return[{tag:"td"}]},renderHTML({HTMLAttributes:t}){return["td",Gt(this.options.HTMLAttributes,t),0]}}),b3=$n.create({name:"tableHeader",addOptions(){return{HTMLAttributes:{}}},content:"block+",addAttributes(){return{colspan:{default:1},rowspan:{default:1},colwidth:{default:null,parseHTML:t=>{const e=t.getAttribute("colwidth");return e?e.split(",").map(r=>parseInt(r,10)):null}}}},tableRole:"header_cell",isolating:!0,parseHTML(){return[{tag:"th"}]},renderHTML({HTMLAttributes:t}){return["th",Gt(this.options.HTMLAttributes,t),0]}}),v3=$n.create({name:"tableRow",addOptions(){return{HTMLAttributes:{}}},content:"(tableCell | tableHeader)*",tableRole:"row",parseHTML(){return[{tag:"tr"}]},renderHTML({HTMLAttributes:t}){return["tr",Gt(this.options.HTMLAttributes,t),0]}});function o0(t,e){return e?["width",`${Math.max(e,t)}px`]:["min-width",`${t}px`]}function _w(t,e,n,r,a,i){var o;let c=0,u=!0,h=e.firstChild;const f=t.firstChild;if(f!==null)for(let x=0,y=0;x{const r=t.nodes[n];r.spec.tableRole&&(e[r.spec.tableRole]=r)}),t.cached.tableNodeTypes=e,e}function CF(t,e,n,r,a){const i=SF(t),o=[],c=[];for(let h=0;h{const{selection:e}=t.state;if(!TF(e))return!1;let n=0;const r=sC(e.ranges[0].$from,i=>i.type.name==="table");return r==null||r.node.descendants(i=>{if(i.type.name==="table")return!1;["tableCell","tableHeader"].includes(i.type.name)&&(n+=1)}),n===e.ranges.length?(t.commands.deleteTable(),!0):!1},EF="";function MF(t){return(t||"").replace(/\s+/g," ").trim()}function AF(t,e,n={}){var r;const a=(r=n.cellLineSeparator)!=null?r:EF;if(!t||!t.content||t.content.length===0)return"";const i=[];t.content.forEach(v=>{const N=[];v.content&&v.content.forEach(w=>{let k="";w.content&&Array.isArray(w.content)&&w.content.length>1?k=w.content.map(O=>e.renderChildren(O)).join(a):k=w.content?e.renderChildren(w.content):"";const E=MF(k),C=w.type==="tableHeader";N.push({text:E,isHeader:C})}),i.push(N)});const o=i.reduce((v,N)=>Math.max(v,N.length),0);if(o===0)return"";const c=new Array(o).fill(0);i.forEach(v=>{var N;for(let w=0;wc[w]&&(c[w]=E),c[w]<3&&(c[w]=3)}});const u=(v,N)=>v+" ".repeat(Math.max(0,N-v.length)),h=i[0],f=h.some(v=>v.isHeader);let m=` +`;const x=new Array(o).fill(0).map((v,N)=>f&&h[N]&&h[N].text||"");return m+=`| ${x.map((v,N)=>u(v,c[N])).join(" | ")} | +`,m+=`| ${c.map(v=>"-".repeat(Math.max(3,v))).join(" | ")} | +`,(f?i.slice(1):i).forEach(v=>{m+=`| ${new Array(o).fill(0).map((N,w)=>u(v[w]&&v[w].text||"",c[w])).join(" | ")} | +`}),m}var IF=AF,N3=$n.create({name:"table",addOptions(){return{HTMLAttributes:{},resizable:!1,renderWrapper:!1,handleWidth:5,cellMinWidth:25,View:jF,lastColumnResizable:!0,allowTableNodeSelection:!1}},content:"tableRow+",tableRole:"table",isolating:!0,group:"block",parseHTML(){return[{tag:"table"}]},renderHTML({node:t,HTMLAttributes:e}){const{colgroup:n,tableWidth:r,tableMinWidth:a}=kF(t,this.options.cellMinWidth),i=e.style;function o(){return i||(r?`width: ${r}`:`min-width: ${a}`)}const c=["table",Gt(this.options.HTMLAttributes,e,{style:o()}),n,["tbody",0]];return this.options.renderWrapper?["div",{class:"tableWrapper"},c]:c},parseMarkdown:(t,e)=>{const n=[];if(t.header){const r=[];t.header.forEach(a=>{r.push(e.createNode("tableHeader",{},[{type:"paragraph",content:e.parseInline(a.tokens)}]))}),n.push(e.createNode("tableRow",{},r))}return t.rows&&t.rows.forEach(r=>{const a=[];r.forEach(i=>{a.push(e.createNode("tableCell",{},[{type:"paragraph",content:e.parseInline(i.tokens)}]))}),n.push(e.createNode("tableRow",{},a))}),e.createNode("table",void 0,n)},renderMarkdown:(t,e)=>IF(t,e),addCommands(){return{insertTable:({rows:t=3,cols:e=3,withHeaderRow:n=!0}={})=>({tr:r,dispatch:a,editor:i})=>{const o=CF(i.schema,t,e,n);if(a){const c=r.selection.from+1;r.replaceSelectionWith(o).scrollIntoView().setSelection(nt.near(r.doc.resolve(c)))}return!0},addColumnBefore:()=>({state:t,dispatch:e})=>B$(t,e),addColumnAfter:()=>({state:t,dispatch:e})=>V$(t,e),deleteColumn:()=>({state:t,dispatch:e})=>U$(t,e),addRowBefore:()=>({state:t,dispatch:e})=>K$(t,e),addRowAfter:()=>({state:t,dispatch:e})=>q$(t,e),deleteRow:()=>({state:t,dispatch:e})=>J$(t,e),deleteTable:()=>({state:t,dispatch:e})=>nF(t,e),mergeCells:()=>({state:t,dispatch:e})=>Cw(t,e),splitCell:()=>({state:t,dispatch:e})=>Tw(t,e),toggleHeaderColumn:()=>({state:t,dispatch:e})=>lu("column")(t,e),toggleHeaderRow:()=>({state:t,dispatch:e})=>lu("row")(t,e),toggleHeaderCell:()=>({state:t,dispatch:e})=>eF(t,e),mergeOrSplit:()=>({state:t,dispatch:e})=>Cw(t,e)?!0:Tw(t,e),setCellAttribute:(t,e)=>({state:n,dispatch:r})=>X$(t,e)(n,r),goToNextCell:()=>({state:t,dispatch:e})=>Mw(1)(t,e),goToPreviousCell:()=>({state:t,dispatch:e})=>Mw(-1)(t,e),fixTables:()=>({state:t,dispatch:e})=>(e&&f3(t),!0),setCellSelection:t=>({tr:e,dispatch:n})=>{if(n){const r=cn.create(e.doc,t.anchorCell,t.headCell);e.setSelection(r)}return!0}}},addKeyboardShortcuts(){return{Tab:()=>this.editor.commands.goToNextCell()?!0:this.editor.can().addRowAfter()?this.editor.chain().addRowAfter().goToNextCell().run():!1,"Shift-Tab":()=>this.editor.commands.goToPreviousCell(),Backspace:Fh,"Mod-Backspace":Fh,Delete:Fh,"Mod-Delete":Fh}},addProseMirrorPlugins(){return[...this.options.resizable&&this.editor.isEditable?[hF({handleWidth:this.options.handleWidth,cellMinWidth:this.options.cellMinWidth,defaultCellMinWidth:this.options.cellMinWidth,View:this.options.View,lastColumnResizable:this.options.lastColumnResizable})]:[],wF({allowTableNodeSelection:this.options.allowTableNodeSelection})]},extendNodeSchema(t){const e={name:t.name,options:t.options,storage:t.storage};return{tableRole:qt(Xe(t,"tableRole",e))}}});Pn.create({name:"tableKit",addExtensions(){const t=[];return this.options.table!==!1&&t.push(N3.configure(this.options.table)),this.options.tableCell!==!1&&t.push(y3.configure(this.options.tableCell)),this.options.tableHeader!==!1&&t.push(b3.configure(this.options.tableHeader)),this.options.tableRow!==!1&&t.push(v3.configure(this.options.tableRow)),t}});function PF(t){return t.replace(/&/g,"&").replace(//g,">").replace(/"/g,""")}function RF(t){return t.replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'")}function OF(t){if(!t)return"";let e=t;return e=e.replace(/]*>(.*?)<\/h1>/gi,`# $1 + +`),e=e.replace(/]*>(.*?)<\/h2>/gi,`## $1 + +`),e=e.replace(/]*>(.*?)<\/h3>/gi,`### $1 + +`),e=e.replace(/]*>(.*?)<\/strong>/gi,"**$1**"),e=e.replace(/]*>(.*?)<\/b>/gi,"**$1**"),e=e.replace(/]*>(.*?)<\/em>/gi,"*$1*"),e=e.replace(/]*>(.*?)<\/i>/gi,"*$1*"),e=e.replace(/]*>(.*?)<\/s>/gi,"~~$1~~"),e=e.replace(/]*>(.*?)<\/del>/gi,"~~$1~~"),e=e.replace(/]*>(.*?)<\/code>/gi,"`$1`"),e=e.replace(/]*>(.*?)<\/blockquote>/gi,`> $1 + +`),e=e.replace(/]*src="([^"]*)"[^>]*alt="([^"]*)"[^>]*>/gi,"![$2]($1)"),e=e.replace(/]*src="([^"]*)"[^>]*>/gi,"![]($1)"),e=e.replace(/]*href="([^"]*)"[^>]*>(.*?)<\/a>/gi,"[$2]($1)"),e=e.replace(/]*>(.*?)<\/li>/gi,`- $1 +`),e=e.replace(/<\/?[uo]l[^>]*>/gi,` +`),e=e.replace(//gi,` +`),e=e.replace(/]*>(.*?)<\/p>/gi,`$1 + +`),e=e.replace(//gi,`--- + +`),e=e.replace(/]*data-type="mention"[^>]*data-id="([^"]*)"[^>]*>@([^<]*)<\/span>/gi,"@$2"),e=e.replace(/]*data-type="linkTag"[^>]*data-url="([^"]*)"[^>]*>#([^<]*)<\/span>/gi,"#[$2]($1)"),e=e.replace(/<[^>]+>/g,""),e=e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,'"').replace(/'/g,"'"),e=e.replace(/\n{3,}/g,` + +`),e.trim()}function $w(t){if(!t)return"";if(t.startsWith("<")&&t.includes("$1"),e=e.replace(/^## (.+)$/gm,"

$1

"),e=e.replace(/^# (.+)$/gm,"

$1

"),e=e.replace(/\*\*(.+?)\*\*/g,"$1"),e=e.replace(/\*(.+?)\*/g,"$1"),e=e.replace(/~~(.+?)~~/g,"$1"),e=e.replace(/`([^`]+)`/g,"$1"),e=e.replace(/!\[([^\]]*)\]\(([^)]+)\)/g,'$1'),e=e.replace(/\[([^\]]+)\]\(([^)]+)\)/g,'$1'),e=e.replace(/^> (.+)$/gm,"

$1

"),e=e.replace(/^---$/gm,"
"),e=e.replace(/^- (.+)$/gm,"
  • $1
  • ");const n=e.split(` +`),r=[];for(const a of n){const i=a.trim();i&&(/^<(?:h[1-6]|blockquote|hr|li|ul|ol|table|img)/.test(i)?r.push(i):r.push(`

    ${i}

    `))}return r.join("")}const LF=$n.create({name:"videoEmbed",group:"block",atom:!0,draggable:!0,addAttributes(){return{src:{default:null}}},parseHTML(){return[{tag:"div.rich-video-wrap",getAttrs:t=>{const e=t.querySelector("video"),n=e==null?void 0:e.getAttribute("src");return n?{src:n}:!1}},{tag:"video[src]",getAttrs:t=>({src:t.getAttribute("src")})}]},renderHTML({node:t}){const e=t.attrs.src||"";return["div",{class:"rich-video-wrap"},["video",{src:e,controls:!0,preload:"metadata"}],["div",{class:"rich-video-caption"},"视频(预览已缩小,保存后 C 端全宽播放)"]]}}),DF=$n.create({name:"linkTag",group:"inline",inline:!0,selectable:!0,atom:!0,addAttributes(){return{label:{default:""},url:{default:""},tagType:{default:"url",parseHTML:t=>t.getAttribute("data-tag-type")||"url"},tagId:{default:"",parseHTML:t=>t.getAttribute("data-tag-id")||""},pagePath:{default:"",parseHTML:t=>t.getAttribute("data-page-path")||""},appId:{default:"",parseHTML:t=>t.getAttribute("data-app-id")||""},mpKey:{default:"",parseHTML:t=>t.getAttribute("data-mp-key")||""}}},parseHTML(){return[{tag:'span[data-type="linkTag"]',getAttrs:t=>{var e;return{label:((e=t.textContent)==null?void 0:e.replace(/^#/,"").trim())||"",url:t.getAttribute("data-url")||"",tagType:t.getAttribute("data-tag-type")||"url",tagId:t.getAttribute("data-tag-id")||"",pagePath:t.getAttribute("data-page-path")||"",appId:t.getAttribute("data-app-id")||"",mpKey:t.getAttribute("data-mp-key")||""}}}]},renderHTML({node:t,HTMLAttributes:e}){return["span",Gt(e,{"data-type":"linkTag","data-url":t.attrs.url,"data-tag-type":t.attrs.tagType,"data-tag-id":t.attrs.tagId,"data-page-path":t.attrs.pagePath,"data-app-id":t.attrs.appId||"","data-mp-key":t.attrs.mpKey||t.attrs.appId||"",class:"link-tag-node"}),`#${t.attrs.label}`]}});function Fw(t){const e=document.createElement("div");return e.textContent=t,e.innerHTML}const _F=t=>({items:({query:e})=>{const n=e.trim().toLowerCase();return(n?t.filter(a=>a.name.toLowerCase().includes(n)||a.id.toLowerCase().includes(n)||a.label&&a.label.toLowerCase().includes(n)||a.userId&&a.userId.toLowerCase().includes(n)):t).slice(0,16)},render:()=>{let e=null,n=0,r=[],a=null;const i=()=>{e&&(e.innerHTML=r.map((o,c)=>`
    + @${Fw(o.name)} + ${Fw(o.label||o.id)} +
    `).join(""),e.querySelectorAll(".mention-item").forEach(o=>{o.addEventListener("click",()=>{const c=parseInt(o.getAttribute("data-index")||"0");a&&r[c]&&a({id:r[c].id,label:r[c].name})})}))};return{onStart:o=>{if(e=document.createElement("div"),e.className="mention-popup",document.body.appendChild(e),r=o.items,a=o.command,n=0,i(),o.clientRect){const c=o.clientRect();c&&(e.style.top=`${c.bottom+4}px`,e.style.left=`${c.left}px`)}},onUpdate:o=>{if(r=o.items,a=o.command,n=0,i(),o.clientRect&&e){const c=o.clientRect();c&&(e.style.top=`${c.bottom+4}px`,e.style.left=`${c.left}px`)}},onKeyDown:o=>o.event.key==="ArrowUp"?(n=Math.max(0,n-1),i(),!0):o.event.key==="ArrowDown"?(n=Math.min(r.length-1,n+1),i(),!0):o.event.key==="Enter"?(a&&r[n]&&a({id:r[n].id,label:r[n].name}),!0):o.event.key==="Escape"?(e==null||e.remove(),e=null,!0):!1,onExit:()=>{e==null||e.remove(),e=null}}}});function zF(t){var r;const e=[],n=(r=t.clipboardData)==null?void 0:r.items;if(!n)return e;for(let a=0;a{const h=b.useRef(null),f=b.useRef(null),m=b.useRef(null),x=b.useRef(null),[y,v]=b.useState(""),[N,w]=b.useState(!1),k=b.useRef($w(t)),E=b.useCallback((Q,B)=>{var F;const re=x.current;if(!re||!n)return!1;const ae=zF(B);if(ae.length>0)return B.preventDefault(),(async()=>{for(const D of ae)try{const P=await n(D);P&&re.chain().focus().setImage({src:P}).run()}catch(P){console.error("粘贴图片上传失败",P)}})(),!0;const J=(F=B.clipboardData)==null?void 0:F.getData("text/html");if(J&&/data:image\/[^;"']+;base64,/i.test(J)){B.preventDefault();const{from:D,to:P}=re.state.selection;return(async()=>{try{const oe=await BF(J,n);re.chain().focus().insertContentAt({from:D,to:P},oe).run()}catch(oe){console.error("粘贴 HTML 内 base64 转换失败",oe)}})(),!0}return!1},[n]),C=E7({extensions:[m$.configure({link:{openOnClick:!1,HTMLAttributes:{class:"rich-link"}}}),y$.configure({inline:!0,allowBase64:!0,HTMLAttributes:{class:"rich-editor-img-thumb"}}),LF,k$.configure({HTMLAttributes:{class:"mention-tag"},suggestion:_F(a)}),DF,S$.configure({placeholder:o}),N3.configure({resizable:!0}),v3,y3,b3],content:k.current,onUpdate:({editor:Q})=>{e(Q.getHTML())},editorProps:{attributes:{class:"rich-editor-content"},handlePaste:E}});b.useEffect(()=>{x.current=C??null},[C]),b.useImperativeHandle(u,()=>({getHTML:()=>(C==null?void 0:C.getHTML())||"",getMarkdown:()=>OF((C==null?void 0:C.getHTML())||"")})),b.useEffect(()=>{if(C&&t!==C.getHTML()){const Q=$w(t);Q!==C.getHTML()&&C.commands.setContent(Q)}},[t]);const R=b.useCallback(async Q=>{if(r)return r(Q);if(n)return n(Q);throw new Error("未配置上传")},[n,r]),O=b.useCallback(async Q=>{var re;const B=(re=Q.target.files)==null?void 0:re[0];if(!(!B||!C)){if(n){const ae=await n(B);ae&&C.chain().focus().setImage({src:ae}).run()}else{const ae=new FileReader;ae.onload=()=>{typeof ae.result=="string"&&C.chain().focus().setImage({src:ae.result}).run()},ae.readAsDataURL(B)}Q.target.value=""}},[C,n]),q=b.useCallback(async Q=>{var re;const B=(re=Q.target.files)==null?void 0:re[0];if(!(!B||!C)){try{const ae=await R(B);ae&&C.chain().focus().insertContent({type:"videoEmbed",attrs:{src:ae}}).run()}catch(ae){console.error(ae)}Q.target.value=""}},[C,R]),$=b.useCallback(async Q=>{var re;const B=(re=Q.target.files)==null?void 0:re[0];if(!(!B||!C)){try{const ae=await R(B);if(!ae)return;const J=B.name||"附件";C.chain().focus().insertContent(`

    附件 ${PF(J)}

    `).run()}catch(ae){console.error(ae)}Q.target.value=""}},[C,R]),V=b.useCallback(()=>{C&&C.chain().focus().insertContent("@").run()},[C]),I=b.useCallback(Q=>{C&&C.chain().focus().insertContent([{type:"linkTag",attrs:{label:Q.label,url:Q.url||"",tagType:Q.type||"url",tagId:Q.id||"",pagePath:Q.pagePath||"",appId:Q.appId||"",mpKey:Q.type==="miniprogram"&&Q.appId||""}},{type:"text",text:" "}]).run()},[C]),te=b.useCallback(()=>{!C||!y||(C.chain().focus().setLink({href:y}).run(),v(""),w(!1))},[C,y]);return C?s.jsxs("div",{className:`rich-editor-wrapper ${c||""}`,children:[s.jsxs("div",{className:"rich-editor-toolbar",children:[s.jsxs("div",{className:"toolbar-group",children:[s.jsx("button",{onClick:()=>C.chain().focus().toggleBold().run(),className:C.isActive("bold")?"is-active":"",type:"button",children:s.jsx(r5,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>C.chain().focus().toggleItalic().run(),className:C.isActive("italic")?"is-active":"",type:"button",children:s.jsx(sM,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>C.chain().focus().toggleStrike().run(),className:C.isActive("strike")?"is-active":"",type:"button",children:s.jsx(lA,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>C.chain().focus().toggleCode().run(),className:C.isActive("code")?"is-active":"",type:"button",children:s.jsx(j5,{className:"w-4 h-4"})})]}),s.jsx("div",{className:"toolbar-divider"}),s.jsxs("div",{className:"toolbar-group",children:[s.jsx("button",{onClick:()=>C.chain().focus().toggleHeading({level:1}).run(),className:C.isActive("heading",{level:1})?"is-active":"",type:"button",children:s.jsx(q5,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>C.chain().focus().toggleHeading({level:2}).run(),className:C.isActive("heading",{level:2})?"is-active":"",type:"button",children:s.jsx(J5,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>C.chain().focus().toggleHeading({level:3}).run(),className:C.isActive("heading",{level:3})?"is-active":"",type:"button",children:s.jsx(Y5,{className:"w-4 h-4"})})]}),s.jsx("div",{className:"toolbar-divider"}),s.jsxs("div",{className:"toolbar-group",children:[s.jsx("button",{onClick:()=>C.chain().focus().toggleBulletList().run(),className:C.isActive("bulletList")?"is-active":"",type:"button",children:s.jsx(pM,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>C.chain().focus().toggleOrderedList().run(),className:C.isActive("orderedList")?"is-active":"",type:"button",children:s.jsx(hM,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>C.chain().focus().toggleBlockquote().run(),className:C.isActive("blockquote")?"is-active":"",type:"button",children:s.jsx(BM,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>C.chain().focus().setHorizontalRule().run(),type:"button",children:s.jsx(SM,{className:"w-4 h-4"})})]}),s.jsx("div",{className:"toolbar-divider"}),s.jsxs("div",{className:"toolbar-group",children:[s.jsx("input",{ref:h,type:"file",accept:"image/*",onChange:O,className:"hidden"}),s.jsx("input",{ref:f,type:"file",accept:"video/*",onChange:q,className:"hidden"}),s.jsx("input",{ref:m,type:"file",onChange:$,className:"hidden"}),s.jsx("button",{onClick:()=>{var Q;return(Q=h.current)==null?void 0:Q.click()},type:"button",title:"上传图片",children:s.jsx(Oj,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>{var Q;return(Q=f.current)==null?void 0:Q.click()},type:"button",title:"上传视频",disabled:!r&&!n,children:s.jsx(jA,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>{var Q;return(Q=m.current)==null?void 0:Q.click()},type:"button",title:"上传附件(生成下载链接)",disabled:!r&&!n,children:s.jsx(AM,{className:"w-4 h-4"})}),s.jsx("button",{onClick:V,type:"button",title:"插入 @ 并选择人物",className:a.length?"mention-trigger-btn":"",disabled:a.length===0,children:s.jsx(t5,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>w(!N),className:C.isActive("link")?"is-active":"",type:"button",title:"链接",children:s.jsx(xg,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>C.chain().focus().insertTable({rows:3,cols:3,withHeaderRow:!0}).run(),type:"button",title:"表格",children:s.jsx(dA,{className:"w-4 h-4"})})]}),s.jsx("div",{className:"toolbar-divider"}),s.jsxs("div",{className:"toolbar-group",children:[s.jsx("button",{onClick:()=>C.chain().focus().undo().run(),disabled:!C.can().undo(),type:"button",children:s.jsx(gA,{className:"w-4 h-4"})}),s.jsx("button",{onClick:()=>C.chain().focus().redo().run(),disabled:!C.can().redo(),type:"button",children:s.jsx(HM,{className:"w-4 h-4"})})]}),i.length>0&&s.jsxs(s.Fragment,{children:[s.jsx("div",{className:"toolbar-divider"}),s.jsx("div",{className:"toolbar-group",children:s.jsxs("select",{className:"link-tag-select",onChange:Q=>{const B=i.find(re=>re.id===Q.target.value);B&&I(B),Q.target.value=""},defaultValue:"",children:[s.jsx("option",{value:"",disabled:!0,children:"# 插入链接标签"}),i.map(Q=>s.jsx("option",{value:Q.id,children:Q.label},Q.id))]})})]})]}),N&&s.jsxs("div",{className:"link-input-bar",children:[s.jsx("input",{type:"url",placeholder:"输入链接地址...",value:y,onChange:Q=>v(Q.target.value),onKeyDown:Q=>Q.key==="Enter"&&te(),className:"link-input"}),s.jsx("button",{onClick:te,className:"link-confirm",type:"button",children:"确定"}),s.jsx("button",{onClick:()=>{C.chain().focus().unsetLink().run(),w(!1)},className:"link-remove",type:"button",children:"移除"})]}),s.jsx(PC,{editor:C})]}):null});l0.displayName="RichEditor";const VF=["top","right","bottom","left"],Ao=Math.min,fr=Math.max,Zf=Math.round,Bh=Math.floor,Ia=t=>({x:t,y:t}),HF={left:"right",right:"left",bottom:"top",top:"bottom"},UF={start:"end",end:"start"};function c0(t,e,n){return fr(t,Ao(e,n))}function ki(t,e){return typeof t=="function"?t(e):t}function Si(t){return t.split("-")[0]}function Kc(t){return t.split("-")[1]}function Ey(t){return t==="x"?"y":"x"}function My(t){return t==="y"?"height":"width"}const WF=new Set(["top","bottom"]);function Ma(t){return WF.has(Si(t))?"y":"x"}function Ay(t){return Ey(Ma(t))}function KF(t,e,n){n===void 0&&(n=!1);const r=Kc(t),a=Ay(t),i=My(a);let o=a==="x"?r===(n?"end":"start")?"right":"left":r==="start"?"bottom":"top";return e.reference[i]>e.floating[i]&&(o=ep(o)),[o,ep(o)]}function qF(t){const e=ep(t);return[d0(t),e,d0(e)]}function d0(t){return t.replace(/start|end/g,e=>UF[e])}const Bw=["left","right"],Vw=["right","left"],GF=["top","bottom"],JF=["bottom","top"];function QF(t,e,n){switch(t){case"top":case"bottom":return n?e?Vw:Bw:e?Bw:Vw;case"left":case"right":return e?GF:JF;default:return[]}}function YF(t,e,n,r){const a=Kc(t);let i=QF(Si(t),n==="start",r);return a&&(i=i.map(o=>o+"-"+a),e&&(i=i.concat(i.map(d0)))),i}function ep(t){return t.replace(/left|right|bottom|top/g,e=>HF[e])}function XF(t){return{top:0,right:0,bottom:0,left:0,...t}}function w3(t){return typeof t!="number"?XF(t):{top:t,right:t,bottom:t,left:t}}function tp(t){const{x:e,y:n,width:r,height:a}=t;return{width:r,height:a,top:n,left:e,right:e+r,bottom:n+a,x:e,y:n}}function Hw(t,e,n){let{reference:r,floating:a}=t;const i=Ma(e),o=Ay(e),c=My(o),u=Si(e),h=i==="y",f=r.x+r.width/2-a.width/2,m=r.y+r.height/2-a.height/2,x=r[c]/2-a[c]/2;let y;switch(u){case"top":y={x:f,y:r.y-a.height};break;case"bottom":y={x:f,y:r.y+r.height};break;case"right":y={x:r.x+r.width,y:m};break;case"left":y={x:r.x-a.width,y:m};break;default:y={x:r.x,y:r.y}}switch(Kc(e)){case"start":y[o]-=x*(n&&h?-1:1);break;case"end":y[o]+=x*(n&&h?-1:1);break}return y}async function ZF(t,e){var n;e===void 0&&(e={});const{x:r,y:a,platform:i,rects:o,elements:c,strategy:u}=t,{boundary:h="clippingAncestors",rootBoundary:f="viewport",elementContext:m="floating",altBoundary:x=!1,padding:y=0}=ki(e,t),v=w3(y),w=c[x?m==="floating"?"reference":"floating":m],k=tp(await i.getClippingRect({element:(n=await(i.isElement==null?void 0:i.isElement(w)))==null||n?w:w.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(c.floating)),boundary:h,rootBoundary:f,strategy:u})),E=m==="floating"?{x:r,y:a,width:o.floating.width,height:o.floating.height}:o.reference,C=await(i.getOffsetParent==null?void 0:i.getOffsetParent(c.floating)),R=await(i.isElement==null?void 0:i.isElement(C))?await(i.getScale==null?void 0:i.getScale(C))||{x:1,y:1}:{x:1,y:1},O=tp(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:c,rect:E,offsetParent:C,strategy:u}):E);return{top:(k.top-O.top+v.top)/R.y,bottom:(O.bottom-k.bottom+v.bottom)/R.y,left:(k.left-O.left+v.left)/R.x,right:(O.right-k.right+v.right)/R.x}}const eB=async(t,e,n)=>{const{placement:r="bottom",strategy:a="absolute",middleware:i=[],platform:o}=n,c=i.filter(Boolean),u=await(o.isRTL==null?void 0:o.isRTL(e));let h=await o.getElementRects({reference:t,floating:e,strategy:a}),{x:f,y:m}=Hw(h,r,u),x=r,y={},v=0;for(let w=0;w({name:"arrow",options:t,async fn(e){const{x:n,y:r,placement:a,rects:i,platform:o,elements:c,middlewareData:u}=e,{element:h,padding:f=0}=ki(t,e)||{};if(h==null)return{};const m=w3(f),x={x:n,y:r},y=Ay(a),v=My(y),N=await o.getDimensions(h),w=y==="y",k=w?"top":"left",E=w?"bottom":"right",C=w?"clientHeight":"clientWidth",R=i.reference[v]+i.reference[y]-x[y]-i.floating[v],O=x[y]-i.reference[y],q=await(o.getOffsetParent==null?void 0:o.getOffsetParent(h));let $=q?q[C]:0;(!$||!await(o.isElement==null?void 0:o.isElement(q)))&&($=c.floating[C]||i.floating[v]);const V=R/2-O/2,I=$/2-N[v]/2-1,te=Ao(m[k],I),Q=Ao(m[E],I),B=te,re=$-N[v]-Q,ae=$/2-N[v]/2+V,J=c0(B,ae,re),F=!u.arrow&&Kc(a)!=null&&ae!==J&&i.reference[v]/2-(aeae<=0)){var Q,B;const ae=(((Q=i.flip)==null?void 0:Q.index)||0)+1,J=$[ae];if(J&&(!(m==="alignment"?E!==Ma(J):!1)||te.every(P=>Ma(P.placement)===E?P.overflows[0]>0:!0)))return{data:{index:ae,overflows:te},reset:{placement:J}};let F=(B=te.filter(D=>D.overflows[0]<=0).sort((D,P)=>D.overflows[1]-P.overflows[1])[0])==null?void 0:B.placement;if(!F)switch(y){case"bestFit":{var re;const D=(re=te.filter(P=>{if(q){const oe=Ma(P.placement);return oe===E||oe==="y"}return!0}).map(P=>[P.placement,P.overflows.filter(oe=>oe>0).reduce((oe,G)=>oe+G,0)]).sort((P,oe)=>P[1]-oe[1])[0])==null?void 0:re[0];D&&(F=D);break}case"initialPlacement":F=c;break}if(a!==F)return{reset:{placement:F}}}return{}}}};function Uw(t,e){return{top:t.top-e.height,right:t.right-e.width,bottom:t.bottom-e.height,left:t.left-e.width}}function Ww(t){return VF.some(e=>t[e]>=0)}const sB=function(t){return t===void 0&&(t={}),{name:"hide",options:t,async fn(e){const{rects:n,platform:r}=e,{strategy:a="referenceHidden",...i}=ki(t,e);switch(a){case"referenceHidden":{const o=await r.detectOverflow(e,{...i,elementContext:"reference"}),c=Uw(o,n.reference);return{data:{referenceHiddenOffsets:c,referenceHidden:Ww(c)}}}case"escaped":{const o=await r.detectOverflow(e,{...i,altBoundary:!0}),c=Uw(o,n.floating);return{data:{escapedOffsets:c,escaped:Ww(c)}}}default:return{}}}}},j3=new Set(["left","top"]);async function rB(t,e){const{placement:n,platform:r,elements:a}=t,i=await(r.isRTL==null?void 0:r.isRTL(a.floating)),o=Si(n),c=Kc(n),u=Ma(n)==="y",h=j3.has(o)?-1:1,f=i&&u?-1:1,m=ki(e,t);let{mainAxis:x,crossAxis:y,alignmentAxis:v}=typeof m=="number"?{mainAxis:m,crossAxis:0,alignmentAxis:null}:{mainAxis:m.mainAxis||0,crossAxis:m.crossAxis||0,alignmentAxis:m.alignmentAxis};return c&&typeof v=="number"&&(y=c==="end"?v*-1:v),u?{x:y*f,y:x*h}:{x:x*h,y:y*f}}const aB=function(t){return t===void 0&&(t=0),{name:"offset",options:t,async fn(e){var n,r;const{x:a,y:i,placement:o,middlewareData:c}=e,u=await rB(e,t);return o===((n=c.offset)==null?void 0:n.placement)&&(r=c.arrow)!=null&&r.alignmentOffset?{}:{x:a+u.x,y:i+u.y,data:{...u,placement:o}}}}},iB=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(e){const{x:n,y:r,placement:a,platform:i}=e,{mainAxis:o=!0,crossAxis:c=!1,limiter:u={fn:k=>{let{x:E,y:C}=k;return{x:E,y:C}}},...h}=ki(t,e),f={x:n,y:r},m=await i.detectOverflow(e,h),x=Ma(Si(a)),y=Ey(x);let v=f[y],N=f[x];if(o){const k=y==="y"?"top":"left",E=y==="y"?"bottom":"right",C=v+m[k],R=v-m[E];v=c0(C,v,R)}if(c){const k=x==="y"?"top":"left",E=x==="y"?"bottom":"right",C=N+m[k],R=N-m[E];N=c0(C,N,R)}const w=u.fn({...e,[y]:v,[x]:N});return{...w,data:{x:w.x-n,y:w.y-r,enabled:{[y]:o,[x]:c}}}}}},oB=function(t){return t===void 0&&(t={}),{options:t,fn(e){const{x:n,y:r,placement:a,rects:i,middlewareData:o}=e,{offset:c=0,mainAxis:u=!0,crossAxis:h=!0}=ki(t,e),f={x:n,y:r},m=Ma(a),x=Ey(m);let y=f[x],v=f[m];const N=ki(c,e),w=typeof N=="number"?{mainAxis:N,crossAxis:0}:{mainAxis:0,crossAxis:0,...N};if(u){const C=x==="y"?"height":"width",R=i.reference[x]-i.floating[C]+w.mainAxis,O=i.reference[x]+i.reference[C]-w.mainAxis;yO&&(y=O)}if(h){var k,E;const C=x==="y"?"width":"height",R=j3.has(Si(a)),O=i.reference[m]-i.floating[C]+(R&&((k=o.offset)==null?void 0:k[m])||0)+(R?0:w.crossAxis),q=i.reference[m]+i.reference[C]+(R?0:((E=o.offset)==null?void 0:E[m])||0)-(R?w.crossAxis:0);vq&&(v=q)}return{[x]:y,[m]:v}}}},lB=function(t){return t===void 0&&(t={}),{name:"size",options:t,async fn(e){var n,r;const{placement:a,rects:i,platform:o,elements:c}=e,{apply:u=()=>{},...h}=ki(t,e),f=await o.detectOverflow(e,h),m=Si(a),x=Kc(a),y=Ma(a)==="y",{width:v,height:N}=i.floating;let w,k;m==="top"||m==="bottom"?(w=m,k=x===(await(o.isRTL==null?void 0:o.isRTL(c.floating))?"start":"end")?"left":"right"):(k=m,w=x==="end"?"top":"bottom");const E=N-f.top-f.bottom,C=v-f.left-f.right,R=Ao(N-f[w],E),O=Ao(v-f[k],C),q=!e.middlewareData.shift;let $=R,V=O;if((n=e.middlewareData.shift)!=null&&n.enabled.x&&(V=C),(r=e.middlewareData.shift)!=null&&r.enabled.y&&($=E),q&&!x){const te=fr(f.left,0),Q=fr(f.right,0),B=fr(f.top,0),re=fr(f.bottom,0);y?V=v-2*(te!==0||Q!==0?te+Q:fr(f.left,f.right)):$=N-2*(B!==0||re!==0?B+re:fr(f.top,f.bottom))}await u({...e,availableWidth:V,availableHeight:$});const I=await o.getDimensions(c.floating);return v!==I.width||N!==I.height?{reset:{rects:!0}}:{}}}};function Ap(){return typeof window<"u"}function qc(t){return k3(t)?(t.nodeName||"").toLowerCase():"#document"}function gr(t){var e;return(t==null||(e=t.ownerDocument)==null?void 0:e.defaultView)||window}function _a(t){var e;return(e=(k3(t)?t.ownerDocument:t.document)||window.document)==null?void 0:e.documentElement}function k3(t){return Ap()?t instanceof Node||t instanceof gr(t).Node:!1}function sa(t){return Ap()?t instanceof Element||t instanceof gr(t).Element:!1}function Oa(t){return Ap()?t instanceof HTMLElement||t instanceof gr(t).HTMLElement:!1}function Kw(t){return!Ap()||typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof gr(t).ShadowRoot}const cB=new Set(["inline","contents"]);function bu(t){const{overflow:e,overflowX:n,overflowY:r,display:a}=ra(t);return/auto|scroll|overlay|hidden|clip/.test(e+r+n)&&!cB.has(a)}const dB=new Set(["table","td","th"]);function uB(t){return dB.has(qc(t))}const hB=[":popover-open",":modal"];function Ip(t){return hB.some(e=>{try{return t.matches(e)}catch{return!1}})}const fB=["transform","translate","scale","rotate","perspective"],pB=["transform","translate","scale","rotate","perspective","filter"],mB=["paint","layout","strict","content"];function Iy(t){const e=Py(),n=sa(t)?ra(t):t;return fB.some(r=>n[r]?n[r]!=="none":!1)||(n.containerType?n.containerType!=="normal":!1)||!e&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!e&&(n.filter?n.filter!=="none":!1)||pB.some(r=>(n.willChange||"").includes(r))||mB.some(r=>(n.contain||"").includes(r))}function xB(t){let e=Io(t);for(;Oa(e)&&!$c(e);){if(Iy(e))return e;if(Ip(e))return null;e=Io(e)}return null}function Py(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const gB=new Set(["html","body","#document"]);function $c(t){return gB.has(qc(t))}function ra(t){return gr(t).getComputedStyle(t)}function Pp(t){return sa(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.scrollX,scrollTop:t.scrollY}}function Io(t){if(qc(t)==="html")return t;const e=t.assignedSlot||t.parentNode||Kw(t)&&t.host||_a(t);return Kw(e)?e.host:e}function S3(t){const e=Io(t);return $c(e)?t.ownerDocument?t.ownerDocument.body:t.body:Oa(e)&&bu(e)?e:S3(e)}function cu(t,e,n){var r;e===void 0&&(e=[]),n===void 0&&(n=!0);const a=S3(t),i=a===((r=t.ownerDocument)==null?void 0:r.body),o=gr(a);if(i){const c=u0(o);return e.concat(o,o.visualViewport||[],bu(a)?a:[],c&&n?cu(c):[])}return e.concat(a,cu(a,[],n))}function u0(t){return t.parent&&Object.getPrototypeOf(t.parent)?t.frameElement:null}function C3(t){const e=ra(t);let n=parseFloat(e.width)||0,r=parseFloat(e.height)||0;const a=Oa(t),i=a?t.offsetWidth:n,o=a?t.offsetHeight:r,c=Zf(n)!==i||Zf(r)!==o;return c&&(n=i,r=o),{width:n,height:r,$:c}}function Ry(t){return sa(t)?t:t.contextElement}function Cc(t){const e=Ry(t);if(!Oa(e))return Ia(1);const n=e.getBoundingClientRect(),{width:r,height:a,$:i}=C3(e);let o=(i?Zf(n.width):n.width)/r,c=(i?Zf(n.height):n.height)/a;return(!o||!Number.isFinite(o))&&(o=1),(!c||!Number.isFinite(c))&&(c=1),{x:o,y:c}}const yB=Ia(0);function T3(t){const e=gr(t);return!Py()||!e.visualViewport?yB:{x:e.visualViewport.offsetLeft,y:e.visualViewport.offsetTop}}function bB(t,e,n){return e===void 0&&(e=!1),!n||e&&n!==gr(t)?!1:e}function El(t,e,n,r){e===void 0&&(e=!1),n===void 0&&(n=!1);const a=t.getBoundingClientRect(),i=Ry(t);let o=Ia(1);e&&(r?sa(r)&&(o=Cc(r)):o=Cc(t));const c=bB(i,n,r)?T3(i):Ia(0);let u=(a.left+c.x)/o.x,h=(a.top+c.y)/o.y,f=a.width/o.x,m=a.height/o.y;if(i){const x=gr(i),y=r&&sa(r)?gr(r):r;let v=x,N=u0(v);for(;N&&r&&y!==v;){const w=Cc(N),k=N.getBoundingClientRect(),E=ra(N),C=k.left+(N.clientLeft+parseFloat(E.paddingLeft))*w.x,R=k.top+(N.clientTop+parseFloat(E.paddingTop))*w.y;u*=w.x,h*=w.y,f*=w.x,m*=w.y,u+=C,h+=R,v=gr(N),N=u0(v)}}return tp({width:f,height:m,x:u,y:h})}function Rp(t,e){const n=Pp(t).scrollLeft;return e?e.left+n:El(_a(t)).left+n}function E3(t,e){const n=t.getBoundingClientRect(),r=n.left+e.scrollLeft-Rp(t,n),a=n.top+e.scrollTop;return{x:r,y:a}}function vB(t){let{elements:e,rect:n,offsetParent:r,strategy:a}=t;const i=a==="fixed",o=_a(r),c=e?Ip(e.floating):!1;if(r===o||c&&i)return n;let u={scrollLeft:0,scrollTop:0},h=Ia(1);const f=Ia(0),m=Oa(r);if((m||!m&&!i)&&((qc(r)!=="body"||bu(o))&&(u=Pp(r)),Oa(r))){const y=El(r);h=Cc(r),f.x=y.x+r.clientLeft,f.y=y.y+r.clientTop}const x=o&&!m&&!i?E3(o,u):Ia(0);return{width:n.width*h.x,height:n.height*h.y,x:n.x*h.x-u.scrollLeft*h.x+f.x+x.x,y:n.y*h.y-u.scrollTop*h.y+f.y+x.y}}function NB(t){return Array.from(t.getClientRects())}function wB(t){const e=_a(t),n=Pp(t),r=t.ownerDocument.body,a=fr(e.scrollWidth,e.clientWidth,r.scrollWidth,r.clientWidth),i=fr(e.scrollHeight,e.clientHeight,r.scrollHeight,r.clientHeight);let o=-n.scrollLeft+Rp(t);const c=-n.scrollTop;return ra(r).direction==="rtl"&&(o+=fr(e.clientWidth,r.clientWidth)-a),{width:a,height:i,x:o,y:c}}const qw=25;function jB(t,e){const n=gr(t),r=_a(t),a=n.visualViewport;let i=r.clientWidth,o=r.clientHeight,c=0,u=0;if(a){i=a.width,o=a.height;const f=Py();(!f||f&&e==="fixed")&&(c=a.offsetLeft,u=a.offsetTop)}const h=Rp(r);if(h<=0){const f=r.ownerDocument,m=f.body,x=getComputedStyle(m),y=f.compatMode==="CSS1Compat"&&parseFloat(x.marginLeft)+parseFloat(x.marginRight)||0,v=Math.abs(r.clientWidth-m.clientWidth-y);v<=qw&&(i-=v)}else h<=qw&&(i+=h);return{width:i,height:o,x:c,y:u}}const kB=new Set(["absolute","fixed"]);function SB(t,e){const n=El(t,!0,e==="fixed"),r=n.top+t.clientTop,a=n.left+t.clientLeft,i=Oa(t)?Cc(t):Ia(1),o=t.clientWidth*i.x,c=t.clientHeight*i.y,u=a*i.x,h=r*i.y;return{width:o,height:c,x:u,y:h}}function Gw(t,e,n){let r;if(e==="viewport")r=jB(t,n);else if(e==="document")r=wB(_a(t));else if(sa(e))r=SB(e,n);else{const a=T3(t);r={x:e.x-a.x,y:e.y-a.y,width:e.width,height:e.height}}return tp(r)}function M3(t,e){const n=Io(t);return n===e||!sa(n)||$c(n)?!1:ra(n).position==="fixed"||M3(n,e)}function CB(t,e){const n=e.get(t);if(n)return n;let r=cu(t,[],!1).filter(c=>sa(c)&&qc(c)!=="body"),a=null;const i=ra(t).position==="fixed";let o=i?Io(t):t;for(;sa(o)&&!$c(o);){const c=ra(o),u=Iy(o);!u&&c.position==="fixed"&&(a=null),(i?!u&&!a:!u&&c.position==="static"&&!!a&&kB.has(a.position)||bu(o)&&!u&&M3(t,o))?r=r.filter(f=>f!==o):a=c,o=Io(o)}return e.set(t,r),r}function TB(t){let{element:e,boundary:n,rootBoundary:r,strategy:a}=t;const o=[...n==="clippingAncestors"?Ip(e)?[]:CB(e,this._c):[].concat(n),r],c=o[0],u=o.reduce((h,f)=>{const m=Gw(e,f,a);return h.top=fr(m.top,h.top),h.right=Ao(m.right,h.right),h.bottom=Ao(m.bottom,h.bottom),h.left=fr(m.left,h.left),h},Gw(e,c,a));return{width:u.right-u.left,height:u.bottom-u.top,x:u.left,y:u.top}}function EB(t){const{width:e,height:n}=C3(t);return{width:e,height:n}}function MB(t,e,n){const r=Oa(e),a=_a(e),i=n==="fixed",o=El(t,!0,i,e);let c={scrollLeft:0,scrollTop:0};const u=Ia(0);function h(){u.x=Rp(a)}if(r||!r&&!i)if((qc(e)!=="body"||bu(a))&&(c=Pp(e)),r){const y=El(e,!0,i,e);u.x=y.x+e.clientLeft,u.y=y.y+e.clientTop}else a&&h();i&&!r&&a&&h();const f=a&&!r&&!i?E3(a,c):Ia(0),m=o.left+c.scrollLeft-u.x-f.x,x=o.top+c.scrollTop-u.y-f.y;return{x:m,y:x,width:o.width,height:o.height}}function tg(t){return ra(t).position==="static"}function Jw(t,e){if(!Oa(t)||ra(t).position==="fixed")return null;if(e)return e(t);let n=t.offsetParent;return _a(t)===n&&(n=n.ownerDocument.body),n}function A3(t,e){const n=gr(t);if(Ip(t))return n;if(!Oa(t)){let a=Io(t);for(;a&&!$c(a);){if(sa(a)&&!tg(a))return a;a=Io(a)}return n}let r=Jw(t,e);for(;r&&uB(r)&&tg(r);)r=Jw(r,e);return r&&$c(r)&&tg(r)&&!Iy(r)?n:r||xB(t)||n}const AB=async function(t){const e=this.getOffsetParent||A3,n=this.getDimensions,r=await n(t.floating);return{reference:MB(t.reference,await e(t.floating),t.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}};function IB(t){return ra(t).direction==="rtl"}const PB={convertOffsetParentRelativeRectToViewportRelativeRect:vB,getDocumentElement:_a,getClippingRect:TB,getOffsetParent:A3,getElementRects:AB,getClientRects:NB,getDimensions:EB,getScale:Cc,isElement:sa,isRTL:IB};function I3(t,e){return t.x===e.x&&t.y===e.y&&t.width===e.width&&t.height===e.height}function RB(t,e){let n=null,r;const a=_a(t);function i(){var c;clearTimeout(r),(c=n)==null||c.disconnect(),n=null}function o(c,u){c===void 0&&(c=!1),u===void 0&&(u=1),i();const h=t.getBoundingClientRect(),{left:f,top:m,width:x,height:y}=h;if(c||e(),!x||!y)return;const v=Bh(m),N=Bh(a.clientWidth-(f+x)),w=Bh(a.clientHeight-(m+y)),k=Bh(f),C={rootMargin:-v+"px "+-N+"px "+-w+"px "+-k+"px",threshold:fr(0,Ao(1,u))||1};let R=!0;function O(q){const $=q[0].intersectionRatio;if($!==u){if(!R)return o();$?o(!1,$):r=setTimeout(()=>{o(!1,1e-7)},1e3)}$===1&&!I3(h,t.getBoundingClientRect())&&o(),R=!1}try{n=new IntersectionObserver(O,{...C,root:a.ownerDocument})}catch{n=new IntersectionObserver(O,C)}n.observe(t)}return o(!0),i}function OB(t,e,n,r){r===void 0&&(r={});const{ancestorScroll:a=!0,ancestorResize:i=!0,elementResize:o=typeof ResizeObserver=="function",layoutShift:c=typeof IntersectionObserver=="function",animationFrame:u=!1}=r,h=Ry(t),f=a||i?[...h?cu(h):[],...cu(e)]:[];f.forEach(k=>{a&&k.addEventListener("scroll",n,{passive:!0}),i&&k.addEventListener("resize",n)});const m=h&&c?RB(h,n):null;let x=-1,y=null;o&&(y=new ResizeObserver(k=>{let[E]=k;E&&E.target===h&&y&&(y.unobserve(e),cancelAnimationFrame(x),x=requestAnimationFrame(()=>{var C;(C=y)==null||C.observe(e)})),n()}),h&&!u&&y.observe(h),y.observe(e));let v,N=u?El(t):null;u&&w();function w(){const k=El(t);N&&!I3(N,k)&&n(),N=k,v=requestAnimationFrame(w)}return n(),()=>{var k;f.forEach(E=>{a&&E.removeEventListener("scroll",n),i&&E.removeEventListener("resize",n)}),m==null||m(),(k=y)==null||k.disconnect(),y=null,u&&cancelAnimationFrame(v)}}const LB=aB,DB=iB,_B=nB,zB=lB,$B=sB,Qw=tB,FB=oB,BB=(t,e,n)=>{const r=new Map,a={platform:PB,...n},i={...a.platform,_c:r};return eB(t,e,{...a,platform:i})};var VB=typeof document<"u",HB=function(){},Yh=VB?b.useLayoutEffect:HB;function np(t,e){if(t===e)return!0;if(typeof t!=typeof e)return!1;if(typeof t=="function"&&t.toString()===e.toString())return!0;let n,r,a;if(t&&e&&typeof t=="object"){if(Array.isArray(t)){if(n=t.length,n!==e.length)return!1;for(r=n;r--!==0;)if(!np(t[r],e[r]))return!1;return!0}if(a=Object.keys(t),n=a.length,n!==Object.keys(e).length)return!1;for(r=n;r--!==0;)if(!{}.hasOwnProperty.call(e,a[r]))return!1;for(r=n;r--!==0;){const i=a[r];if(!(i==="_owner"&&t.$$typeof)&&!np(t[i],e[i]))return!1}return!0}return t!==t&&e!==e}function P3(t){return typeof window>"u"?1:(t.ownerDocument.defaultView||window).devicePixelRatio||1}function Yw(t,e){const n=P3(t);return Math.round(e*n)/n}function ng(t){const e=b.useRef(t);return Yh(()=>{e.current=t}),e}function UB(t){t===void 0&&(t={});const{placement:e="bottom",strategy:n="absolute",middleware:r=[],platform:a,elements:{reference:i,floating:o}={},transform:c=!0,whileElementsMounted:u,open:h}=t,[f,m]=b.useState({x:0,y:0,strategy:n,placement:e,middlewareData:{},isPositioned:!1}),[x,y]=b.useState(r);np(x,r)||y(r);const[v,N]=b.useState(null),[w,k]=b.useState(null),E=b.useCallback(P=>{P!==q.current&&(q.current=P,N(P))},[]),C=b.useCallback(P=>{P!==$.current&&($.current=P,k(P))},[]),R=i||v,O=o||w,q=b.useRef(null),$=b.useRef(null),V=b.useRef(f),I=u!=null,te=ng(u),Q=ng(a),B=ng(h),re=b.useCallback(()=>{if(!q.current||!$.current)return;const P={placement:e,strategy:n,middleware:x};Q.current&&(P.platform=Q.current),BB(q.current,$.current,P).then(oe=>{const G={...oe,isPositioned:B.current!==!1};ae.current&&!np(V.current,G)&&(V.current=G,uu.flushSync(()=>{m(G)}))})},[x,e,n,Q,B]);Yh(()=>{h===!1&&V.current.isPositioned&&(V.current.isPositioned=!1,m(P=>({...P,isPositioned:!1})))},[h]);const ae=b.useRef(!1);Yh(()=>(ae.current=!0,()=>{ae.current=!1}),[]),Yh(()=>{if(R&&(q.current=R),O&&($.current=O),R&&O){if(te.current)return te.current(R,O,re);re()}},[R,O,re,te,I]);const J=b.useMemo(()=>({reference:q,floating:$,setReference:E,setFloating:C}),[E,C]),F=b.useMemo(()=>({reference:R,floating:O}),[R,O]),D=b.useMemo(()=>{const P={position:n,left:0,top:0};if(!F.floating)return P;const oe=Yw(F.floating,f.x),G=Yw(F.floating,f.y);return c?{...P,transform:"translate("+oe+"px, "+G+"px)",...P3(F.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:oe,top:G}},[n,c,F.floating,f.x,f.y]);return b.useMemo(()=>({...f,update:re,refs:J,elements:F,floatingStyles:D}),[f,re,J,F,D])}const WB=t=>{function e(n){return{}.hasOwnProperty.call(n,"current")}return{name:"arrow",options:t,fn(n){const{element:r,padding:a}=typeof t=="function"?t(n):t;return r&&e(r)?r.current!=null?Qw({element:r.current,padding:a}).fn(n):{}:r?Qw({element:r,padding:a}).fn(n):{}}}},KB=(t,e)=>({...LB(t),options:[t,e]}),qB=(t,e)=>({...DB(t),options:[t,e]}),GB=(t,e)=>({...FB(t),options:[t,e]}),JB=(t,e)=>({..._B(t),options:[t,e]}),QB=(t,e)=>({...zB(t),options:[t,e]}),YB=(t,e)=>({...$B(t),options:[t,e]}),XB=(t,e)=>({...WB(t),options:[t,e]});var ZB="Arrow",R3=b.forwardRef((t,e)=>{const{children:n,width:r=10,height:a=5,...i}=t;return s.jsx(wt.svg,{...i,ref:e,width:r,height:a,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:t.asChild?n:s.jsx("polygon",{points:"0,0 30,0 15,10"})})});R3.displayName=ZB;var e9=R3,Oy="Popper",[O3,L3]=Oo(Oy),[t9,D3]=O3(Oy),_3=t=>{const{__scopePopper:e,children:n}=t,[r,a]=b.useState(null);return s.jsx(t9,{scope:e,anchor:r,onAnchorChange:a,children:n})};_3.displayName=Oy;var z3="PopperAnchor",$3=b.forwardRef((t,e)=>{const{__scopePopper:n,virtualRef:r,...a}=t,i=D3(z3,n),o=b.useRef(null),c=Jt(e,o),u=b.useRef(null);return b.useEffect(()=>{const h=u.current;u.current=(r==null?void 0:r.current)||o.current,h!==u.current&&i.onAnchorChange(u.current)}),r?null:s.jsx(wt.div,{...a,ref:c})});$3.displayName=z3;var Ly="PopperContent",[n9,s9]=O3(Ly),F3=b.forwardRef((t,e)=>{var le,de,ve,ye,Se,Fe;const{__scopePopper:n,side:r="bottom",sideOffset:a=0,align:i="center",alignOffset:o=0,arrowPadding:c=0,avoidCollisions:u=!0,collisionBoundary:h=[],collisionPadding:f=0,sticky:m="partial",hideWhenDetached:x=!1,updatePositionStrategy:y="optimized",onPlaced:v,...N}=t,w=D3(Ly,n),[k,E]=b.useState(null),C=Jt(e,mt=>E(mt)),[R,O]=b.useState(null),q=D0(R),$=(q==null?void 0:q.width)??0,V=(q==null?void 0:q.height)??0,I=r+(i!=="center"?"-"+i:""),te=typeof f=="number"?f:{top:0,right:0,bottom:0,left:0,...f},Q=Array.isArray(h)?h:[h],B=Q.length>0,re={padding:te,boundary:Q.filter(a9),altBoundary:B},{refs:ae,floatingStyles:J,placement:F,isPositioned:D,middlewareData:P}=UB({strategy:"fixed",placement:I,whileElementsMounted:(...mt)=>OB(...mt,{animationFrame:y==="always"}),elements:{reference:w.anchor},middleware:[KB({mainAxis:a+V,alignmentAxis:o}),u&&qB({mainAxis:!0,crossAxis:!1,limiter:m==="partial"?GB():void 0,...re}),u&&JB({...re}),QB({...re,apply:({elements:mt,rects:kt,availableWidth:ft,availableHeight:Dt})=>{const{width:Pt,height:Rn}=kt.reference,yn=mt.floating.style;yn.setProperty("--radix-popper-available-width",`${ft}px`),yn.setProperty("--radix-popper-available-height",`${Dt}px`),yn.setProperty("--radix-popper-anchor-width",`${Pt}px`),yn.setProperty("--radix-popper-anchor-height",`${Rn}px`)}}),R&&XB({element:R,padding:c}),i9({arrowWidth:$,arrowHeight:V}),x&&YB({strategy:"referenceHidden",...re})]}),[oe,G]=H3(F),_=Co(v);Is(()=>{D&&(_==null||_())},[D,_]);const U=(le=P.arrow)==null?void 0:le.x,H=(de=P.arrow)==null?void 0:de.y,K=((ve=P.arrow)==null?void 0:ve.centerOffset)!==0,[me,X]=b.useState();return Is(()=>{k&&X(window.getComputedStyle(k).zIndex)},[k]),s.jsx("div",{ref:ae.setFloating,"data-radix-popper-content-wrapper":"",style:{...J,transform:D?J.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:me,"--radix-popper-transform-origin":[(ye=P.transformOrigin)==null?void 0:ye.x,(Se=P.transformOrigin)==null?void 0:Se.y].join(" "),...((Fe=P.hide)==null?void 0:Fe.referenceHidden)&&{visibility:"hidden",pointerEvents:"none"}},dir:t.dir,children:s.jsx(n9,{scope:n,placedSide:oe,onArrowChange:O,arrowX:U,arrowY:H,shouldHideArrow:K,children:s.jsx(wt.div,{"data-side":oe,"data-align":G,...N,ref:C,style:{...N.style,animation:D?void 0:"none"}})})})});F3.displayName=Ly;var B3="PopperArrow",r9={top:"bottom",right:"left",bottom:"top",left:"right"},V3=b.forwardRef(function(e,n){const{__scopePopper:r,...a}=e,i=s9(B3,r),o=r9[i.placedSide];return s.jsx("span",{ref:i.onArrowChange,style:{position:"absolute",left:i.arrowX,top:i.arrowY,[o]:0,transformOrigin:{top:"",right:"0 0",bottom:"center 0",left:"100% 0"}[i.placedSide],transform:{top:"translateY(100%)",right:"translateY(50%) rotate(90deg) translateX(-50%)",bottom:"rotate(180deg)",left:"translateY(50%) rotate(-90deg) translateX(50%)"}[i.placedSide],visibility:i.shouldHideArrow?"hidden":void 0},children:s.jsx(e9,{...a,ref:n,style:{...a.style,display:"block"}})})});V3.displayName=B3;function a9(t){return t!==null}var i9=t=>({name:"transformOrigin",options:t,fn(e){var w,k,E;const{placement:n,rects:r,middlewareData:a}=e,o=((w=a.arrow)==null?void 0:w.centerOffset)!==0,c=o?0:t.arrowWidth,u=o?0:t.arrowHeight,[h,f]=H3(n),m={start:"0%",center:"50%",end:"100%"}[f],x=(((k=a.arrow)==null?void 0:k.x)??0)+c/2,y=(((E=a.arrow)==null?void 0:E.y)??0)+u/2;let v="",N="";return h==="bottom"?(v=o?m:`${x}px`,N=`${-u}px`):h==="top"?(v=o?m:`${x}px`,N=`${r.floating.height+u}px`):h==="right"?(v=`${-u}px`,N=o?m:`${y}px`):h==="left"&&(v=`${r.floating.width+u}px`,N=o?m:`${y}px`),{data:{x:v,y:N}}}});function H3(t){const[e,n="center"]=t.split("-");return[e,n]}var o9=_3,l9=$3,c9=F3,d9=V3,U3=Object.freeze({position:"absolute",border:0,width:1,height:1,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",wordWrap:"normal"}),u9="VisuallyHidden",h9=b.forwardRef((t,e)=>s.jsx(wt.span,{...t,ref:e,style:{...U3,...t.style}}));h9.displayName=u9;var f9=[" ","Enter","ArrowUp","ArrowDown"],p9=[" ","Enter"],Ml="Select",[Op,Lp,m9]=R0(Ml),[Gc]=Oo(Ml,[m9,L3]),Dp=L3(),[x9,zo]=Gc(Ml),[g9,y9]=Gc(Ml),W3=t=>{const{__scopeSelect:e,children:n,open:r,defaultOpen:a,onOpenChange:i,value:o,defaultValue:c,onValueChange:u,dir:h,name:f,autoComplete:m,disabled:x,required:y,form:v}=t,N=Dp(e),[w,k]=b.useState(null),[E,C]=b.useState(null),[R,O]=b.useState(!1),q=dp(h),[$,V]=yl({prop:r,defaultProp:a??!1,onChange:i,caller:Ml}),[I,te]=yl({prop:o,defaultProp:c,onChange:u,caller:Ml}),Q=b.useRef(null),B=w?v||!!w.closest("form"):!0,[re,ae]=b.useState(new Set),J=Array.from(re).map(F=>F.props.value).join(";");return s.jsx(o9,{...N,children:s.jsxs(x9,{required:y,scope:e,trigger:w,onTriggerChange:k,valueNode:E,onValueNodeChange:C,valueNodeHasChildren:R,onValueNodeHasChildrenChange:O,contentId:vo(),value:I,onValueChange:te,open:$,onOpenChange:V,dir:q,triggerPointerDownPosRef:Q,disabled:x,children:[s.jsx(Op.Provider,{scope:e,children:s.jsx(g9,{scope:t.__scopeSelect,onNativeOptionAdd:b.useCallback(F=>{ae(D=>new Set(D).add(F))},[]),onNativeOptionRemove:b.useCallback(F=>{ae(D=>{const P=new Set(D);return P.delete(F),P})},[]),children:n})}),B?s.jsxs(f4,{"aria-hidden":!0,required:y,tabIndex:-1,name:f,autoComplete:m,value:I,onChange:F=>te(F.target.value),disabled:x,form:v,children:[I===void 0?s.jsx("option",{value:""}):null,Array.from(re)]},J):null]})})};W3.displayName=Ml;var K3="SelectTrigger",q3=b.forwardRef((t,e)=>{const{__scopeSelect:n,disabled:r=!1,...a}=t,i=Dp(n),o=zo(K3,n),c=o.disabled||r,u=Jt(e,o.onTriggerChange),h=Lp(n),f=b.useRef("touch"),[m,x,y]=m4(N=>{const w=h().filter(C=>!C.disabled),k=w.find(C=>C.value===o.value),E=x4(w,N,k);E!==void 0&&o.onValueChange(E.value)}),v=N=>{c||(o.onOpenChange(!0),y()),N&&(o.triggerPointerDownPosRef.current={x:Math.round(N.pageX),y:Math.round(N.pageY)})};return s.jsx(l9,{asChild:!0,...i,children:s.jsx(wt.button,{type:"button",role:"combobox","aria-controls":o.contentId,"aria-expanded":o.open,"aria-required":o.required,"aria-autocomplete":"none",dir:o.dir,"data-state":o.open?"open":"closed",disabled:c,"data-disabled":c?"":void 0,"data-placeholder":p4(o.value)?"":void 0,...a,ref:u,onClick:yt(a.onClick,N=>{N.currentTarget.focus(),f.current!=="mouse"&&v(N)}),onPointerDown:yt(a.onPointerDown,N=>{f.current=N.pointerType;const w=N.target;w.hasPointerCapture(N.pointerId)&&w.releasePointerCapture(N.pointerId),N.button===0&&N.ctrlKey===!1&&N.pointerType==="mouse"&&(v(N),N.preventDefault())}),onKeyDown:yt(a.onKeyDown,N=>{const w=m.current!=="";!(N.ctrlKey||N.altKey||N.metaKey)&&N.key.length===1&&x(N.key),!(w&&N.key===" ")&&f9.includes(N.key)&&(v(),N.preventDefault())})})})});q3.displayName=K3;var G3="SelectValue",J3=b.forwardRef((t,e)=>{const{__scopeSelect:n,className:r,style:a,children:i,placeholder:o="",...c}=t,u=zo(G3,n),{onValueNodeHasChildrenChange:h}=u,f=i!==void 0,m=Jt(e,u.onValueNodeChange);return Is(()=>{h(f)},[h,f]),s.jsx(wt.span,{...c,ref:m,style:{pointerEvents:"none"},children:p4(u.value)?s.jsx(s.Fragment,{children:o}):i})});J3.displayName=G3;var b9="SelectIcon",Q3=b.forwardRef((t,e)=>{const{__scopeSelect:n,children:r,...a}=t;return s.jsx(wt.span,{"aria-hidden":!0,...a,ref:e,children:r||"▼"})});Q3.displayName=b9;var v9="SelectPortal",Y3=t=>s.jsx(E0,{asChild:!0,...t});Y3.displayName=v9;var Al="SelectContent",X3=b.forwardRef((t,e)=>{const n=zo(Al,t.__scopeSelect),[r,a]=b.useState();if(Is(()=>{a(new DocumentFragment)},[]),!n.open){const i=r;return i?uu.createPortal(s.jsx(Z3,{scope:t.__scopeSelect,children:s.jsx(Op.Slot,{scope:t.__scopeSelect,children:s.jsx("div",{children:t.children})})}),i):null}return s.jsx(e4,{...t,ref:e})});X3.displayName=Al;var Zr=10,[Z3,$o]=Gc(Al),N9="SelectContentImpl",w9=Qd("SelectContent.RemoveScroll"),e4=b.forwardRef((t,e)=>{const{__scopeSelect:n,position:r="item-aligned",onCloseAutoFocus:a,onEscapeKeyDown:i,onPointerDownOutside:o,side:c,sideOffset:u,align:h,alignOffset:f,arrowPadding:m,collisionBoundary:x,collisionPadding:y,sticky:v,hideWhenDetached:N,avoidCollisions:w,...k}=t,E=zo(Al,n),[C,R]=b.useState(null),[O,q]=b.useState(null),$=Jt(e,le=>R(le)),[V,I]=b.useState(null),[te,Q]=b.useState(null),B=Lp(n),[re,ae]=b.useState(!1),J=b.useRef(!1);b.useEffect(()=>{if(C)return fk(C)},[C]),rk();const F=b.useCallback(le=>{const[de,...ve]=B().map(Fe=>Fe.ref.current),[ye]=ve.slice(-1),Se=document.activeElement;for(const Fe of le)if(Fe===Se||(Fe==null||Fe.scrollIntoView({block:"nearest"}),Fe===de&&O&&(O.scrollTop=0),Fe===ye&&O&&(O.scrollTop=O.scrollHeight),Fe==null||Fe.focus(),document.activeElement!==Se))return},[B,O]),D=b.useCallback(()=>F([V,C]),[F,V,C]);b.useEffect(()=>{re&&D()},[re,D]);const{onOpenChange:P,triggerPointerDownPosRef:oe}=E;b.useEffect(()=>{if(C){let le={x:0,y:0};const de=ye=>{var Se,Fe;le={x:Math.abs(Math.round(ye.pageX)-(((Se=oe.current)==null?void 0:Se.x)??0)),y:Math.abs(Math.round(ye.pageY)-(((Fe=oe.current)==null?void 0:Fe.y)??0))}},ve=ye=>{le.x<=10&&le.y<=10?ye.preventDefault():C.contains(ye.target)||P(!1),document.removeEventListener("pointermove",de),oe.current=null};return oe.current!==null&&(document.addEventListener("pointermove",de),document.addEventListener("pointerup",ve,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",de),document.removeEventListener("pointerup",ve,{capture:!0})}}},[C,P,oe]),b.useEffect(()=>{const le=()=>P(!1);return window.addEventListener("blur",le),window.addEventListener("resize",le),()=>{window.removeEventListener("blur",le),window.removeEventListener("resize",le)}},[P]);const[G,_]=m4(le=>{const de=B().filter(Se=>!Se.disabled),ve=de.find(Se=>Se.ref.current===document.activeElement),ye=x4(de,le,ve);ye&&setTimeout(()=>ye.ref.current.focus())}),U=b.useCallback((le,de,ve)=>{const ye=!J.current&&!ve;(E.value!==void 0&&E.value===de||ye)&&(I(le),ye&&(J.current=!0))},[E.value]),H=b.useCallback(()=>C==null?void 0:C.focus(),[C]),K=b.useCallback((le,de,ve)=>{const ye=!J.current&&!ve;(E.value!==void 0&&E.value===de||ye)&&Q(le)},[E.value]),me=r==="popper"?h0:t4,X=me===h0?{side:c,sideOffset:u,align:h,alignOffset:f,arrowPadding:m,collisionBoundary:x,collisionPadding:y,sticky:v,hideWhenDetached:N,avoidCollisions:w}:{};return s.jsx(Z3,{scope:n,content:C,viewport:O,onViewportChange:q,itemRefCallback:U,selectedItem:V,onItemLeave:H,itemTextRefCallback:K,focusSelectedItem:D,selectedItemText:te,position:r,isPositioned:re,searchRef:G,children:s.jsx(M0,{as:w9,allowPinchZoom:!0,children:s.jsx(T0,{asChild:!0,trapped:E.open,onMountAutoFocus:le=>{le.preventDefault()},onUnmountAutoFocus:yt(a,le=>{var de;(de=E.trigger)==null||de.focus({preventScroll:!0}),le.preventDefault()}),children:s.jsx(C0,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:i,onPointerDownOutside:o,onFocusOutside:le=>le.preventDefault(),onDismiss:()=>E.onOpenChange(!1),children:s.jsx(me,{role:"listbox",id:E.contentId,"data-state":E.open?"open":"closed",dir:E.dir,onContextMenu:le=>le.preventDefault(),...k,...X,onPlaced:()=>ae(!0),ref:$,style:{display:"flex",flexDirection:"column",outline:"none",...k.style},onKeyDown:yt(k.onKeyDown,le=>{const de=le.ctrlKey||le.altKey||le.metaKey;if(le.key==="Tab"&&le.preventDefault(),!de&&le.key.length===1&&_(le.key),["ArrowUp","ArrowDown","Home","End"].includes(le.key)){let ye=B().filter(Se=>!Se.disabled).map(Se=>Se.ref.current);if(["ArrowUp","End"].includes(le.key)&&(ye=ye.slice().reverse()),["ArrowUp","ArrowDown"].includes(le.key)){const Se=le.target,Fe=ye.indexOf(Se);ye=ye.slice(Fe+1)}setTimeout(()=>F(ye)),le.preventDefault()}})})})})})})});e4.displayName=N9;var j9="SelectItemAlignedPosition",t4=b.forwardRef((t,e)=>{const{__scopeSelect:n,onPlaced:r,...a}=t,i=zo(Al,n),o=$o(Al,n),[c,u]=b.useState(null),[h,f]=b.useState(null),m=Jt(e,$=>f($)),x=Lp(n),y=b.useRef(!1),v=b.useRef(!0),{viewport:N,selectedItem:w,selectedItemText:k,focusSelectedItem:E}=o,C=b.useCallback(()=>{if(i.trigger&&i.valueNode&&c&&h&&N&&w&&k){const $=i.trigger.getBoundingClientRect(),V=h.getBoundingClientRect(),I=i.valueNode.getBoundingClientRect(),te=k.getBoundingClientRect();if(i.dir!=="rtl"){const Se=te.left-V.left,Fe=I.left-Se,mt=$.left-Fe,kt=$.width+mt,ft=Math.max(kt,V.width),Dt=window.innerWidth-Zr,Pt=cf(Fe,[Zr,Math.max(Zr,Dt-ft)]);c.style.minWidth=kt+"px",c.style.left=Pt+"px"}else{const Se=V.right-te.right,Fe=window.innerWidth-I.right-Se,mt=window.innerWidth-$.right-Fe,kt=$.width+mt,ft=Math.max(kt,V.width),Dt=window.innerWidth-Zr,Pt=cf(Fe,[Zr,Math.max(Zr,Dt-ft)]);c.style.minWidth=kt+"px",c.style.right=Pt+"px"}const Q=x(),B=window.innerHeight-Zr*2,re=N.scrollHeight,ae=window.getComputedStyle(h),J=parseInt(ae.borderTopWidth,10),F=parseInt(ae.paddingTop,10),D=parseInt(ae.borderBottomWidth,10),P=parseInt(ae.paddingBottom,10),oe=J+F+re+P+D,G=Math.min(w.offsetHeight*5,oe),_=window.getComputedStyle(N),U=parseInt(_.paddingTop,10),H=parseInt(_.paddingBottom,10),K=$.top+$.height/2-Zr,me=B-K,X=w.offsetHeight/2,le=w.offsetTop+X,de=J+F+le,ve=oe-de;if(de<=K){const Se=Q.length>0&&w===Q[Q.length-1].ref.current;c.style.bottom="0px";const Fe=h.clientHeight-N.offsetTop-N.offsetHeight,mt=Math.max(me,X+(Se?H:0)+Fe+D),kt=de+mt;c.style.height=kt+"px"}else{const Se=Q.length>0&&w===Q[0].ref.current;c.style.top="0px";const mt=Math.max(K,J+N.offsetTop+(Se?U:0)+X)+ve;c.style.height=mt+"px",N.scrollTop=de-K+N.offsetTop}c.style.margin=`${Zr}px 0`,c.style.minHeight=G+"px",c.style.maxHeight=B+"px",r==null||r(),requestAnimationFrame(()=>y.current=!0)}},[x,i.trigger,i.valueNode,c,h,N,w,k,i.dir,r]);Is(()=>C(),[C]);const[R,O]=b.useState();Is(()=>{h&&O(window.getComputedStyle(h).zIndex)},[h]);const q=b.useCallback($=>{$&&v.current===!0&&(C(),E==null||E(),v.current=!1)},[C,E]);return s.jsx(S9,{scope:n,contentWrapper:c,shouldExpandOnScrollRef:y,onScrollButtonChange:q,children:s.jsx("div",{ref:u,style:{display:"flex",flexDirection:"column",position:"fixed",zIndex:R},children:s.jsx(wt.div,{...a,ref:m,style:{boxSizing:"border-box",maxHeight:"100%",...a.style}})})})});t4.displayName=j9;var k9="SelectPopperPosition",h0=b.forwardRef((t,e)=>{const{__scopeSelect:n,align:r="start",collisionPadding:a=Zr,...i}=t,o=Dp(n);return s.jsx(c9,{...o,...i,ref:e,align:r,collisionPadding:a,style:{boxSizing:"border-box",...i.style,"--radix-select-content-transform-origin":"var(--radix-popper-transform-origin)","--radix-select-content-available-width":"var(--radix-popper-available-width)","--radix-select-content-available-height":"var(--radix-popper-available-height)","--radix-select-trigger-width":"var(--radix-popper-anchor-width)","--radix-select-trigger-height":"var(--radix-popper-anchor-height)"}})});h0.displayName=k9;var[S9,Dy]=Gc(Al,{}),f0="SelectViewport",n4=b.forwardRef((t,e)=>{const{__scopeSelect:n,nonce:r,...a}=t,i=$o(f0,n),o=Dy(f0,n),c=Jt(e,i.onViewportChange),u=b.useRef(0);return s.jsxs(s.Fragment,{children:[s.jsx("style",{dangerouslySetInnerHTML:{__html:"[data-radix-select-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-select-viewport]::-webkit-scrollbar{display:none}"},nonce:r}),s.jsx(Op.Slot,{scope:n,children:s.jsx(wt.div,{"data-radix-select-viewport":"",role:"presentation",...a,ref:c,style:{position:"relative",flex:1,overflow:"hidden auto",...a.style},onScroll:yt(a.onScroll,h=>{const f=h.currentTarget,{contentWrapper:m,shouldExpandOnScrollRef:x}=o;if(x!=null&&x.current&&m){const y=Math.abs(u.current-f.scrollTop);if(y>0){const v=window.innerHeight-Zr*2,N=parseFloat(m.style.minHeight),w=parseFloat(m.style.height),k=Math.max(N,w);if(k0?R:0,m.style.justifyContent="flex-end")}}}u.current=f.scrollTop})})})]})});n4.displayName=f0;var s4="SelectGroup",[C9,T9]=Gc(s4),E9=b.forwardRef((t,e)=>{const{__scopeSelect:n,...r}=t,a=vo();return s.jsx(C9,{scope:n,id:a,children:s.jsx(wt.div,{role:"group","aria-labelledby":a,...r,ref:e})})});E9.displayName=s4;var r4="SelectLabel",M9=b.forwardRef((t,e)=>{const{__scopeSelect:n,...r}=t,a=T9(r4,n);return s.jsx(wt.div,{id:a.id,...r,ref:e})});M9.displayName=r4;var sp="SelectItem",[A9,a4]=Gc(sp),i4=b.forwardRef((t,e)=>{const{__scopeSelect:n,value:r,disabled:a=!1,textValue:i,...o}=t,c=zo(sp,n),u=$o(sp,n),h=c.value===r,[f,m]=b.useState(i??""),[x,y]=b.useState(!1),v=Jt(e,E=>{var C;return(C=u.itemRefCallback)==null?void 0:C.call(u,E,r,a)}),N=vo(),w=b.useRef("touch"),k=()=>{a||(c.onValueChange(r),c.onOpenChange(!1))};if(r==="")throw new Error("A must have a value prop that is not an empty string. This is because the Select value can be set to an empty string to clear the selection and show the placeholder.");return s.jsx(A9,{scope:n,value:r,disabled:a,textId:N,isSelected:h,onItemTextChange:b.useCallback(E=>{m(C=>C||((E==null?void 0:E.textContent)??"").trim())},[]),children:s.jsx(Op.ItemSlot,{scope:n,value:r,disabled:a,textValue:f,children:s.jsx(wt.div,{role:"option","aria-labelledby":N,"data-highlighted":x?"":void 0,"aria-selected":h&&x,"data-state":h?"checked":"unchecked","aria-disabled":a||void 0,"data-disabled":a?"":void 0,tabIndex:a?void 0:-1,...o,ref:v,onFocus:yt(o.onFocus,()=>y(!0)),onBlur:yt(o.onBlur,()=>y(!1)),onClick:yt(o.onClick,()=>{w.current!=="mouse"&&k()}),onPointerUp:yt(o.onPointerUp,()=>{w.current==="mouse"&&k()}),onPointerDown:yt(o.onPointerDown,E=>{w.current=E.pointerType}),onPointerMove:yt(o.onPointerMove,E=>{var C;w.current=E.pointerType,a?(C=u.onItemLeave)==null||C.call(u):w.current==="mouse"&&E.currentTarget.focus({preventScroll:!0})}),onPointerLeave:yt(o.onPointerLeave,E=>{var C;E.currentTarget===document.activeElement&&((C=u.onItemLeave)==null||C.call(u))}),onKeyDown:yt(o.onKeyDown,E=>{var R;((R=u.searchRef)==null?void 0:R.current)!==""&&E.key===" "||(p9.includes(E.key)&&k(),E.key===" "&&E.preventDefault())})})})})});i4.displayName=sp;var Rd="SelectItemText",o4=b.forwardRef((t,e)=>{const{__scopeSelect:n,className:r,style:a,...i}=t,o=zo(Rd,n),c=$o(Rd,n),u=a4(Rd,n),h=y9(Rd,n),[f,m]=b.useState(null),x=Jt(e,k=>m(k),u.onItemTextChange,k=>{var E;return(E=c.itemTextRefCallback)==null?void 0:E.call(c,k,u.value,u.disabled)}),y=f==null?void 0:f.textContent,v=b.useMemo(()=>s.jsx("option",{value:u.value,disabled:u.disabled,children:y},u.value),[u.disabled,u.value,y]),{onNativeOptionAdd:N,onNativeOptionRemove:w}=h;return Is(()=>(N(v),()=>w(v)),[N,w,v]),s.jsxs(s.Fragment,{children:[s.jsx(wt.span,{id:u.textId,...i,ref:x}),u.isSelected&&o.valueNode&&!o.valueNodeHasChildren?uu.createPortal(i.children,o.valueNode):null]})});o4.displayName=Rd;var l4="SelectItemIndicator",c4=b.forwardRef((t,e)=>{const{__scopeSelect:n,...r}=t;return a4(l4,n).isSelected?s.jsx(wt.span,{"aria-hidden":!0,...r,ref:e}):null});c4.displayName=l4;var p0="SelectScrollUpButton",d4=b.forwardRef((t,e)=>{const n=$o(p0,t.__scopeSelect),r=Dy(p0,t.__scopeSelect),[a,i]=b.useState(!1),o=Jt(e,r.onScrollButtonChange);return Is(()=>{if(n.viewport&&n.isPositioned){let c=function(){const h=u.scrollTop>0;i(h)};const u=n.viewport;return c(),u.addEventListener("scroll",c),()=>u.removeEventListener("scroll",c)}},[n.viewport,n.isPositioned]),a?s.jsx(h4,{...t,ref:o,onAutoScroll:()=>{const{viewport:c,selectedItem:u}=n;c&&u&&(c.scrollTop=c.scrollTop-u.offsetHeight)}}):null});d4.displayName=p0;var m0="SelectScrollDownButton",u4=b.forwardRef((t,e)=>{const n=$o(m0,t.__scopeSelect),r=Dy(m0,t.__scopeSelect),[a,i]=b.useState(!1),o=Jt(e,r.onScrollButtonChange);return Is(()=>{if(n.viewport&&n.isPositioned){let c=function(){const h=u.scrollHeight-u.clientHeight,f=Math.ceil(u.scrollTop)u.removeEventListener("scroll",c)}},[n.viewport,n.isPositioned]),a?s.jsx(h4,{...t,ref:o,onAutoScroll:()=>{const{viewport:c,selectedItem:u}=n;c&&u&&(c.scrollTop=c.scrollTop+u.offsetHeight)}}):null});u4.displayName=m0;var h4=b.forwardRef((t,e)=>{const{__scopeSelect:n,onAutoScroll:r,...a}=t,i=$o("SelectScrollButton",n),o=b.useRef(null),c=Lp(n),u=b.useCallback(()=>{o.current!==null&&(window.clearInterval(o.current),o.current=null)},[]);return b.useEffect(()=>()=>u(),[u]),Is(()=>{var f;const h=c().find(m=>m.ref.current===document.activeElement);(f=h==null?void 0:h.ref.current)==null||f.scrollIntoView({block:"nearest"})},[c]),s.jsx(wt.div,{"aria-hidden":!0,...a,ref:e,style:{flexShrink:0,...a.style},onPointerDown:yt(a.onPointerDown,()=>{o.current===null&&(o.current=window.setInterval(r,50))}),onPointerMove:yt(a.onPointerMove,()=>{var h;(h=i.onItemLeave)==null||h.call(i),o.current===null&&(o.current=window.setInterval(r,50))}),onPointerLeave:yt(a.onPointerLeave,()=>{u()})})}),I9="SelectSeparator",P9=b.forwardRef((t,e)=>{const{__scopeSelect:n,...r}=t;return s.jsx(wt.div,{"aria-hidden":!0,...r,ref:e})});P9.displayName=I9;var x0="SelectArrow",R9=b.forwardRef((t,e)=>{const{__scopeSelect:n,...r}=t,a=Dp(n),i=zo(x0,n),o=$o(x0,n);return i.open&&o.position==="popper"?s.jsx(d9,{...a,...r,ref:e}):null});R9.displayName=x0;var O9="SelectBubbleInput",f4=b.forwardRef(({__scopeSelect:t,value:e,...n},r)=>{const a=b.useRef(null),i=Jt(r,a),o=L0(e);return b.useEffect(()=>{const c=a.current;if(!c)return;const u=window.HTMLSelectElement.prototype,f=Object.getOwnPropertyDescriptor(u,"value").set;if(o!==e&&f){const m=new Event("change",{bubbles:!0});f.call(c,e),c.dispatchEvent(m)}},[o,e]),s.jsx(wt.select,{...n,style:{...U3,...n.style},ref:i,defaultValue:e})});f4.displayName=O9;function p4(t){return t===""||t===void 0}function m4(t){const e=Co(t),n=b.useRef(""),r=b.useRef(0),a=b.useCallback(o=>{const c=n.current+o;e(c),(function u(h){n.current=h,window.clearTimeout(r.current),h!==""&&(r.current=window.setTimeout(()=>u(""),1e3))})(c)},[e]),i=b.useCallback(()=>{n.current="",window.clearTimeout(r.current)},[]);return b.useEffect(()=>()=>window.clearTimeout(r.current),[]),[n,a,i]}function x4(t,e,n){const a=e.length>1&&Array.from(e).every(h=>h===e[0])?e[0]:e,i=n?t.indexOf(n):-1;let o=L9(t,Math.max(i,0));a.length===1&&(o=o.filter(h=>h!==n));const u=o.find(h=>h.textValue.toLowerCase().startsWith(a.toLowerCase()));return u!==n?u:void 0}function L9(t,e){return t.map((n,r)=>t[(e+r)%t.length])}var D9=W3,g4=q3,_9=J3,z9=Q3,$9=Y3,y4=X3,F9=n4,b4=i4,B9=o4,V9=c4,H9=d4,U9=u4;const xc=D9,gc=_9,al=b.forwardRef(({className:t,children:e,...n},r)=>s.jsxs(g4,{ref:r,className:Qt("flex h-10 w-full items-center justify-between rounded-md border border-input bg-background px-3 py-2 text-sm placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",t),...n,children:[e,s.jsx(z9,{asChild:!0,children:s.jsx(Ec,{className:"h-4 w-4 opacity-50"})})]}));al.displayName=g4.displayName;const il=b.forwardRef(({className:t,children:e,position:n="popper",...r},a)=>s.jsx($9,{children:s.jsxs(y4,{ref:a,className:Qt("relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-md border bg-[#0b1828] border-gray-700 text-white shadow-lg",n==="popper"&&"data-[side=bottom]:translate-y-1",t),position:n,...r,children:[s.jsx(H9,{className:"flex cursor-default items-center justify-center py-1",children:s.jsx(ug,{className:"h-4 w-4"})}),s.jsx(F9,{className:"p-1",children:e}),s.jsx(U9,{className:"flex cursor-default items-center justify-center py-1",children:s.jsx(Ec,{className:"h-4 w-4"})})]})}));il.displayName=y4.displayName;const tr=b.forwardRef(({className:t,children:e,...n},r)=>s.jsxs(b4,{ref:r,className:Qt("relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",t),...n,children:[s.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:s.jsx(V9,{children:s.jsx(ip,{className:"h-4 w-4"})})}),s.jsx(B9,{children:e})]}));tr.displayName=b4.displayName;const Xw=["📖","📕","📗","📘","📙","📓","📔","📒","📚","📖"];function W9(t){return t.title==="序言"||t.title.includes("序言")}function Zw(t){const e=[];for(const n of t.chapters)for(const r of n.sections)e.push(r.id);return e.length===0?"暂无章节":e.length===1?e[0]:`${e[0]}~${e[e.length-1]}`}function sg(t){return t.startsWith("part:")?{type:"part",id:t.slice(5)}:t.startsWith("chapter:")?{type:"chapter",id:t.slice(8)}:t.startsWith("section:")?{type:"section",id:t.slice(8)}:null}function K9({parts:t,expandedParts:e,onTogglePart:n,onReorder:r,onReadSection:a,onDeleteSection:i,onAddSectionInPart:o,onAddChapterInPart:c,onDeleteChapter:u,onEditPart:h,onDeletePart:f,onEditChapter:m,selectedSectionIds:x=[],onToggleSectionSelect:y,onShowSectionOrders:v,pinnedSectionIds:N=[]}){const[w,k]=b.useState(null),[E,C]=b.useState(null),R=(B,re)=>(w==null?void 0:w.type)===B&&(w==null?void 0:w.id)===re,O=(B,re)=>(E==null?void 0:E.type)===B&&(E==null?void 0:E.id)===re,q=b.useCallback(()=>{const B=[];for(const re of t)for(const ae of re.chapters)for(const J of ae.sections)B.push({id:J.id,partId:re.id,partTitle:re.title,chapterId:ae.id,chapterTitle:ae.title});return B},[t]),$=b.useCallback(async(B,re,ae,J)=>{var G;B.preventDefault(),B.stopPropagation();const F=B.dataTransfer.getData("text/plain"),D=sg(F);if(!D||D.type===re&&D.id===ae)return;const P=q(),oe=new Map(P.map(_=>[_.id,_]));if(D.type==="part"&&re==="part"){const _=t.map(X=>X.id),U=_.indexOf(D.id),H=_.indexOf(ae);if(U===-1||H===-1)return;const K=[..._];K.splice(U,1),K.splice(Ude.id===X);if(le)for(const de of le.chapters)for(const ve of de.sections){const ye=oe.get(ve.id);ye&&me.push(ye)}}await r(me);return}if(D.type==="chapter"&&(re==="chapter"||re==="section"||re==="part")){const _=t.find(ye=>ye.chapters.some(Se=>Se.id===D.id)),U=_==null?void 0:_.chapters.find(ye=>ye.id===D.id);if(!_||!U)return;let H,K,me=null;if(re==="section"){const ye=oe.get(ae);if(!ye)return;H=ye.partId,K=ye.partTitle,me=ae}else if(re==="chapter"){const ye=t.find(mt=>mt.chapters.some(kt=>kt.id===ae)),Se=ye==null?void 0:ye.chapters.find(mt=>mt.id===ae);if(!ye||!Se)return;H=ye.id,K=ye.title;const Fe=P.filter(mt=>mt.chapterId===ae).pop();me=(Fe==null?void 0:Fe.id)??null}else{const ye=t.find(Se=>Se.id===ae);if(!ye)return;if(H=ye.id,K=ye.title,ye.chapters[0]){const Se=P.filter(Fe=>Fe.partId===ye.id&&Fe.chapterId===ye.chapters[0].id);me=((G=Se[Se.length-1])==null?void 0:G.id)??null}}const X=U.sections.map(ye=>ye.id),le=P.filter(ye=>!X.includes(ye.id));let de=le.length;if(me){const ye=le.findIndex(Se=>Se.id===me);ye>=0&&(de=ye+1)}const ve=X.map(ye=>({...oe.get(ye),partId:H,partTitle:K,chapterId:U.id,chapterTitle:U.title}));await r([...le.slice(0,de),...ve,...le.slice(de)]);return}if(D.type==="section"&&(re==="section"||re==="chapter"||re==="part")){if(!J)return;const{partId:_,partTitle:U,chapterId:H,chapterTitle:K}=J;let me;if(re==="section")me=P.findIndex(Se=>Se.id===ae);else if(re==="chapter"){const Se=P.filter(Fe=>Fe.chapterId===ae).pop();me=Se?P.findIndex(Fe=>Fe.id===Se.id)+1:P.length}else{const Se=t.find(Fe=>Fe.id===ae);if(Se!=null&&Se.chapters[0]){const Fe=P.filter(kt=>kt.partId===Se.id&&kt.chapterId===Se.chapters[0].id),mt=Fe[Fe.length-1];me=mt?P.findIndex(kt=>kt.id===mt.id)+1:P.length}else me=P.length}const X=P.findIndex(Se=>Se.id===D.id);if(X===-1)return;const le=P.filter(Se=>Se.id!==D.id),de=X({onDragEnter:J=>{J.preventDefault(),J.stopPropagation(),J.dataTransfer.dropEffect="move",C({type:B,id:re})},onDragOver:J=>{J.preventDefault(),J.stopPropagation(),J.dataTransfer.dropEffect="move",C({type:B,id:re})},onDragLeave:()=>C(null),onDrop:J=>{C(null);const F=sg(J.dataTransfer.getData("text/plain"));F&&(B==="section"&&F.type==="section"&&F.id===re||(B==="part"?F.type==="part"?$(J,"part",re):ae&&$(J,"part",re,ae):B==="chapter"&&ae?(F.type==="section"||F.type==="chapter")&&$(J,"chapter",re,ae):B==="section"&&ae&&$(J,"section",re,ae)))}}),I=B=>Xw[B%Xw.length],te=B=>t.slice(0,B).filter(re=>!W9(re)).length,Q=B=>s.jsxs(s.Fragment,{children:[s.jsx("span",{className:"text-gray-500 font-mono text-xs tabular-nums shrink-0 mr-1.5 max-w-[72px] truncate",title:`章节ID: ${B.id}`,children:B.id}),s.jsx("span",{className:"truncate",children:B.title})]});return s.jsx("div",{className:"space-y-3",children:t.map((B,re)=>{var U,H,K,me;const ae=B.title==="序言"||B.title.includes("序言"),J=B.title==="尾声"||B.title.includes("尾声"),F=B.title==="附录"||B.title.includes("附录"),D=O("part",B.id),P=e.includes(B.id),oe=B.chapters.length,G=B.chapters.reduce((X,le)=>X+le.sections.length,0);if(ae&&B.chapters.length===1&&B.chapters[0].sections.length===1){const X=B.chapters[0].sections[0],le=O("section",X.id),de={partId:B.id,partTitle:B.title,chapterId:B.chapters[0].id,chapterTitle:B.chapters[0].title};return s.jsxs("div",{draggable:!0,onDragStart:ve=>{ve.stopPropagation(),ve.dataTransfer.setData("text/plain","section:"+X.id),ve.dataTransfer.effectAllowed="move",k({type:"section",id:X.id})},onDragEnd:()=>{k(null),C(null)},className:`rounded-xl border border-gray-700/50 bg-[#1C1C1E] p-4 flex items-center justify-between hover:border-[#38bdac]/30 transition-colors cursor-grab active:cursor-grabbing select-none min-h-[40px] ${le?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":""} ${R("section",X.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...V("section",X.id,de),children:[s.jsxs("div",{className:"flex items-center gap-3 flex-1 min-w-0 select-none",children:[s.jsx(oi,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),y&&s.jsx("label",{className:"shrink-0 flex items-center",onClick:ve=>ve.stopPropagation(),children:s.jsx("input",{type:"checkbox",checked:x.includes(X.id),onChange:()=>y(X.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),s.jsx("div",{className:"w-8 h-8 rounded-lg bg-gray-600/50 flex items-center justify-center shrink-0",children:s.jsx(rr,{className:"w-4 h-4 text-gray-400"})}),s.jsxs("span",{className:"font-medium text-gray-200 truncate",children:[B.chapters[0].title," | ",X.title]}),N.includes(X.id)&&s.jsx("span",{title:"已置顶",children:s.jsx(bc,{className:"w-3.5 h-3.5 text-amber-400 fill-amber-400 shrink-0"})})]}),s.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:ve=>ve.stopPropagation(),onClick:ve=>ve.stopPropagation(),children:[X.price===0||X.isFree?s.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"免费"}):s.jsxs("span",{className:"text-xs text-gray-500",children:["¥",X.price]}),s.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",X.clickCount??0," · 付款 ",X.payCount??0]}),s.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(X.hotScore??0).toFixed(1)," · 第",X.hotRank&&X.hotRank>0?X.hotRank:"-","名"]}),v&&s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>v(X),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),s.jsxs("div",{className:"flex gap-1",children:[s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(X),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(X),className:"text-gray-500 hover:text-red-400 h-7 px-2",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})})]})]})]},B.id)}if(B.title==="2026每日派对干货"||B.title.includes("2026每日派对干货")){const X=O("part",B.id);return s.jsxs("div",{className:`rounded-xl border overflow-hidden transition-all duration-200 ${X?"border-[#38bdac] ring-2 ring-[#38bdac]/40 bg-[#38bdac]/5":"border-gray-700/50 bg-[#1C1C1E]"}`,...V("part",B.id,{partId:B.id,partTitle:B.title,chapterId:((U=B.chapters[0])==null?void 0:U.id)??"",chapterTitle:((H=B.chapters[0])==null?void 0:H.title)??""}),children:[s.jsxs("div",{draggable:!0,onDragStart:le=>{le.stopPropagation(),le.dataTransfer.setData("text/plain","part:"+B.id),le.dataTransfer.effectAllowed="move",k({type:"part",id:B.id})},onDragEnd:()=>{k(null),C(null)},className:`flex items-center justify-between p-4 cursor-grab active:cursor-grabbing select-none transition-all duration-200 ${R("part",B.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":"hover:bg-[#162840]/50"}`,children:[s.jsxs("div",{className:"flex items-center gap-3 min-w-0",children:[s.jsx(oi,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),s.jsx("div",{className:"w-10 h-10 rounded-xl bg-[#38bdac]/80 flex items-center justify-center text-white font-bold shrink-0",children:"派"}),s.jsxs("div",{children:[s.jsx("h3",{className:"font-bold text-white text-base",children:B.title}),s.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:Zw(B)})]})]}),s.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:le=>le.stopPropagation(),onClick:le=>le.stopPropagation(),children:[o&&s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>o(B),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"在本篇下新增章节",children:s.jsx(Dn,{className:"w-3.5 h-3.5"})}),h&&s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>h(B),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑篇名",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),f&&s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>f(B),className:"text-gray-500 hover:text-red-400 h-7 px-2",title:"删除本篇",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})}),s.jsxs("span",{className:"text-xs text-gray-500",title:"本篇章数与节数",children:[oe," 章 · ",G," 节"]}),s.jsx("button",{type:"button",draggable:!1,className:"p-1 rounded-md hover:bg-white/10 text-gray-500",title:P?"收起":"展开",onMouseDown:le=>le.stopPropagation(),onClick:le=>{le.stopPropagation(),n(B.id)},children:P?s.jsx(Ec,{className:"w-5 h-5"}):s.jsx(ol,{className:"w-5 h-5"})})]})]}),P&&B.chapters.length>0&&s.jsx("div",{className:"border-t border-gray-700/50 pl-4 pr-4 pb-4 pt-3 space-y-4",children:B.chapters.map(le=>s.jsxs("div",{className:"space-y-2",children:[s.jsxs("div",{className:"flex items-center gap-2 w-full",children:[s.jsx("p",{className:"text-xs text-gray-500 pb-1 flex-1",children:le.title}),s.jsxs("div",{className:"flex gap-0.5 shrink-0",onClick:de=>de.stopPropagation(),children:[m&&s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>m(B,le),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑章节名称",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),c&&s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>c(B),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"新增第X章",children:s.jsx(Dn,{className:"w-3.5 h-3.5"})}),u&&s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>u(B,le),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",title:"删除本章",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})})]})]}),s.jsx("div",{className:"space-y-1 pl-2",children:le.sections.map(de=>{const ve=O("section",de.id);return s.jsxs("div",{draggable:!0,onDragStart:ye=>{ye.stopPropagation(),ye.dataTransfer.setData("text/plain","section:"+de.id),ye.dataTransfer.effectAllowed="move",k({type:"section",id:de.id})},onDragEnd:()=>{k(null),C(null)},onClick:()=>a(de),className:`flex items-center justify-between py-2 px-3 rounded-lg min-h-[40px] cursor-pointer select-none transition-all duration-200 ${ve?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":"hover:bg-[#162840]/50"} ${R("section",de.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...V("section",de.id,{partId:B.id,partTitle:B.title,chapterId:le.id,chapterTitle:le.title}),children:[s.jsxs("div",{className:"flex items-center gap-2 min-w-0 flex-1",children:[s.jsx(oi,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),y&&s.jsx("label",{className:"shrink-0 flex items-center",onClick:ye=>ye.stopPropagation(),children:s.jsx("input",{type:"checkbox",checked:x.includes(de.id),onChange:()=>y(de.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),s.jsx("span",{className:"text-sm text-gray-200 truncate flex items-center min-w-0",children:Q(de)}),N.includes(de.id)&&s.jsx("span",{title:"已置顶",children:s.jsx(bc,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})})]}),s.jsxs("div",{className:"flex items-center gap-2 shrink-0",onClick:ye=>ye.stopPropagation(),children:[s.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",de.clickCount??0," · 付款 ",de.payCount??0]}),s.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(de.hotScore??0).toFixed(1)," · 第",de.hotRank&&de.hotRank>0?de.hotRank:"-","名"]}),v&&s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>v(de),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(de),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(de),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})})]})]},de.id)})})]},le.id))})]},B.id)}if(F)return s.jsxs("div",{className:"rounded-xl border border-gray-700/50 bg-[#1C1C1E] p-5",children:[s.jsx("h3",{className:"text-sm font-medium text-gray-400 mb-4",children:"附录"}),s.jsx("div",{className:"space-y-3",children:B.chapters.map((X,le)=>X.sections.length>0?X.sections.map(de=>{const ve=O("section",de.id);return s.jsxs("div",{draggable:!0,onDragStart:ye=>{ye.stopPropagation(),ye.dataTransfer.setData("text/plain","section:"+de.id),ye.dataTransfer.effectAllowed="move",k({type:"section",id:de.id})},onDragEnd:()=>{k(null),C(null)},className:`flex justify-between items-center py-2 select-none rounded px-2 -mx-2 group cursor-grab active:cursor-grabbing min-h-[40px] transition-all duration-200 ${ve?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":"hover:bg-[#162840]/50"} ${R("section",de.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...V("section",de.id,{partId:B.id,partTitle:B.title,chapterId:X.id,chapterTitle:X.title}),children:[s.jsxs("div",{className:"flex items-center gap-2 min-w-0 flex-1",children:[s.jsx(oi,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),y&&s.jsx("label",{className:"shrink-0 flex items-center",onClick:ye=>ye.stopPropagation(),children:s.jsx("input",{type:"checkbox",checked:x.includes(de.id),onChange:()=>y(de.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),s.jsxs("span",{className:"text-sm text-gray-300 truncate",children:["附录",le+1," | ",X.title," | ",de.title]}),N.includes(de.id)&&s.jsx("span",{title:"已置顶",children:s.jsx(bc,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})})]}),s.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[s.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",de.clickCount??0," · 付款 ",de.payCount??0]}),s.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(de.hotScore??0).toFixed(1)," · 第",de.hotRank&&de.hotRank>0?de.hotRank:"-","名"]}),v&&s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>v(de),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),s.jsxs("div",{className:"flex gap-1 opacity-0 group-hover:opacity-100 transition-opacity",children:[s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>a(de),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>i(de),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})})]})]}),s.jsx(ol,{className:"w-4 h-4 text-gray-500 shrink-0"})]},de.id)}):s.jsxs("div",{className:"flex justify-between items-center py-2 select-none hover:bg-[#162840]/50 rounded px-2 -mx-2",children:[s.jsxs("span",{className:"text-sm text-gray-500",children:["附录",le+1," | ",X.title,"(空)"]}),s.jsx(ol,{className:"w-4 h-4 text-gray-500 shrink-0"})]},X.id))})]},B.id);if(J&&B.chapters.length===1&&B.chapters[0].sections.length===1){const X=B.chapters[0].sections[0],le=O("section",X.id),de={partId:B.id,partTitle:B.title,chapterId:B.chapters[0].id,chapterTitle:B.chapters[0].title};return s.jsxs("div",{draggable:!0,onDragStart:ve=>{ve.stopPropagation(),ve.dataTransfer.setData("text/plain","section:"+X.id),ve.dataTransfer.effectAllowed="move",k({type:"section",id:X.id})},onDragEnd:()=>{k(null),C(null)},className:`rounded-xl border border-gray-700/50 bg-[#1C1C1E] p-4 flex items-center justify-between hover:border-[#38bdac]/30 transition-colors cursor-grab active:cursor-grabbing select-none min-h-[40px] ${le?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":""} ${R("section",X.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...V("section",X.id,de),children:[s.jsxs("div",{className:"flex items-center gap-3 flex-1 min-w-0 select-none",children:[s.jsx(oi,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),y&&s.jsx("label",{className:"shrink-0 flex items-center",onClick:ve=>ve.stopPropagation(),children:s.jsx("input",{type:"checkbox",checked:x.includes(X.id),onChange:()=>y(X.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),s.jsx("div",{className:"w-8 h-8 rounded-lg bg-gray-600/50 flex items-center justify-center shrink-0",children:s.jsx(rr,{className:"w-4 h-4 text-gray-400"})}),s.jsxs("span",{className:"font-medium text-gray-200 truncate",children:[B.chapters[0].title," | ",X.title]})]}),s.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:ve=>ve.stopPropagation(),onClick:ve=>ve.stopPropagation(),children:[X.price===0||X.isFree?s.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"免费"}):s.jsxs("span",{className:"text-xs text-gray-500",children:["¥",X.price]}),s.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",X.clickCount??0," · 付款 ",X.payCount??0]}),s.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(X.hotScore??0).toFixed(1)," · 第",X.hotRank&&X.hotRank>0?X.hotRank:"-","名"]}),v&&s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>v(X),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),s.jsxs("div",{className:"flex gap-1",children:[s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(X),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(X),className:"text-gray-500 hover:text-red-400 h-7 px-2",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})})]})]})]},B.id)}return J?s.jsxs("div",{className:"rounded-xl border border-gray-700/50 bg-[#1C1C1E] p-5",children:[s.jsx("h3",{className:"text-sm font-medium text-gray-400 mb-4",children:"尾声"}),s.jsx("div",{className:"space-y-3",children:B.chapters.map(X=>X.sections.map(le=>{const de=O("section",le.id);return s.jsxs("div",{draggable:!0,onDragStart:ve=>{ve.stopPropagation(),ve.dataTransfer.setData("text/plain","section:"+le.id),ve.dataTransfer.effectAllowed="move",k({type:"section",id:le.id})},onDragEnd:()=>{k(null),C(null)},className:`flex justify-between items-center py-2 select-none rounded px-2 -mx-2 cursor-grab active:cursor-grabbing min-h-[40px] transition-all duration-200 ${de?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":"hover:bg-[#162840]/50"} ${R("section",le.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...V("section",le.id,{partId:B.id,partTitle:B.title,chapterId:X.id,chapterTitle:X.title}),children:[s.jsxs("div",{className:"flex items-center gap-2 min-w-0 flex-1",children:[s.jsx(oi,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),y&&s.jsx("label",{className:"shrink-0 flex items-center",onClick:ve=>ve.stopPropagation(),children:s.jsx("input",{type:"checkbox",checked:x.includes(le.id),onChange:()=>y(le.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),s.jsxs("span",{className:"text-sm text-gray-300",children:[X.title," | ",le.title]})]}),s.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[s.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",le.clickCount??0," · 付款 ",le.payCount??0]}),s.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(le.hotScore??0).toFixed(1)," · 第",le.hotRank&&le.hotRank>0?le.hotRank:"-","名"]}),v&&s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>v(le),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),s.jsxs("div",{className:"flex gap-1",children:[s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(le),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(le),className:"text-gray-500 hover:text-red-400 h-7 px-2",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})})]})]})]},le.id)}))})]},B.id):s.jsxs("div",{className:`rounded-xl border bg-[#1C1C1E] overflow-hidden transition-all duration-200 ${D?"border-[#38bdac] ring-2 ring-[#38bdac]/40 bg-[#38bdac]/5":"border-gray-700/50"}`,...V("part",B.id,{partId:B.id,partTitle:B.title,chapterId:((K=B.chapters[0])==null?void 0:K.id)??"",chapterTitle:((me=B.chapters[0])==null?void 0:me.title)??""}),children:[s.jsxs("div",{draggable:!0,onDragStart:X=>{X.stopPropagation(),X.dataTransfer.setData("text/plain","part:"+B.id),X.dataTransfer.effectAllowed="move",k({type:"part",id:B.id})},onDragEnd:()=>{k(null),C(null)},className:`flex items-center justify-between p-4 cursor-grab active:cursor-grabbing select-none transition-all duration-200 ${R("part",B.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac] rounded-xl shadow-xl shadow-[#38bdac]/20":"hover:bg-[#162840]/50"}`,children:[s.jsxs("div",{className:"flex items-center gap-3 min-w-0",children:[s.jsx(oi,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),s.jsx("div",{className:"w-10 h-10 rounded-xl bg-[#38bdac] flex items-center justify-center text-lg shadow-lg shadow-[#38bdac]/30 shrink-0",children:I(te(re))}),s.jsxs("div",{children:[s.jsx("h3",{className:"font-bold text-white text-base",children:B.title}),s.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:Zw(B)})]})]}),s.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:X=>X.stopPropagation(),onClick:X=>X.stopPropagation(),children:[o&&s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>o(B),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"在本篇下新增章节",children:s.jsx(Dn,{className:"w-3.5 h-3.5"})}),h&&s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>h(B),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑篇名",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),f&&s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>f(B),className:"text-gray-500 hover:text-red-400 h-7 px-2",title:"删除本篇",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})}),s.jsxs("span",{className:"text-xs text-gray-500",title:"本篇章数与节数",children:[oe," 章 · ",G," 节"]}),s.jsx("button",{type:"button",draggable:!1,className:"p-1 rounded-md hover:bg-white/10 text-gray-500",title:P?"收起":"展开",onMouseDown:X=>X.stopPropagation(),onClick:X=>{X.stopPropagation(),n(B.id)},children:P?s.jsx(Ec,{className:"w-5 h-5"}):s.jsx(ol,{className:"w-5 h-5"})})]})]}),P&&s.jsx("div",{className:"border-t border-gray-700/50 pl-4 pr-4 pb-4 pt-3 space-y-4",children:B.chapters.map(X=>{const le=O("chapter",X.id);return s.jsxs("div",{className:"space-y-2",children:[s.jsxs("div",{className:"flex items-center gap-2 w-full",children:[s.jsxs("div",{draggable:!0,onDragStart:de=>{de.stopPropagation(),de.dataTransfer.setData("text/plain","chapter:"+X.id),de.dataTransfer.effectAllowed="move",k({type:"chapter",id:X.id})},onDragEnd:()=>{k(null),C(null)},onDragEnter:de=>{de.preventDefault(),de.stopPropagation(),de.dataTransfer.dropEffect="move",C({type:"chapter",id:X.id})},onDragOver:de=>{de.preventDefault(),de.stopPropagation(),de.dataTransfer.dropEffect="move",C({type:"chapter",id:X.id})},onDragLeave:()=>C(null),onDrop:de=>{C(null);const ve=sg(de.dataTransfer.getData("text/plain"));if(!ve)return;const ye={partId:B.id,partTitle:B.title,chapterId:X.id,chapterTitle:X.title};(ve.type==="section"||ve.type==="chapter")&&$(de,"chapter",X.id,ye)},className:`flex-1 min-w-0 py-2 px-2 rounded cursor-grab active:cursor-grabbing select-none -mx-2 transition-all duration-200 flex items-center gap-2 ${le?"bg-[#38bdac]/15 ring-1 ring-[#38bdac]/50":""} ${R("chapter",X.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":"hover:bg-[#162840]/30"}`,children:[s.jsx(oi,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),s.jsx("p",{className:"text-xs text-gray-500 pb-1 flex-1",children:X.title})]}),s.jsxs("div",{className:"flex gap-0.5 shrink-0",onClick:de=>de.stopPropagation(),children:[m&&s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>m(B,X),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑章节名称",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),c&&s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>c(B),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"新增第X章",children:s.jsx(Dn,{className:"w-3.5 h-3.5"})}),u&&s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>u(B,X),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",title:"删除本章",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})})]})]}),s.jsx("div",{className:"space-y-1 pl-2",children:X.sections.map(de=>{const ve=O("section",de.id);return s.jsxs("div",{draggable:!0,onDragStart:ye=>{ye.stopPropagation(),ye.dataTransfer.setData("text/plain","section:"+de.id),ye.dataTransfer.effectAllowed="move",k({type:"section",id:de.id})},onDragEnd:()=>{k(null),C(null)},className:`flex items-center justify-between py-2 px-3 rounded-lg group cursor-grab active:cursor-grabbing select-none min-h-[40px] transition-all duration-200 ${ve?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":""} ${R("section",de.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac] shadow-lg":"hover:bg-[#162840]/50"}`,...V("section",de.id,{partId:B.id,partTitle:B.title,chapterId:X.id,chapterTitle:X.title}),children:[s.jsxs("div",{className:"flex items-center gap-3 min-w-0 flex-1",children:[y&&s.jsx("label",{className:"shrink-0 flex items-center",onClick:ye=>ye.stopPropagation(),children:s.jsx("input",{type:"checkbox",checked:x.includes(de.id),onChange:()=>y(de.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),s.jsx(oi,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),s.jsx("div",{className:`w-2 h-2 rounded-full shrink-0 ${de.price===0||de.isFree?"border-2 border-[#38bdac] bg-transparent":"bg-gray-500"}`}),s.jsx("span",{className:"text-sm text-gray-200 truncate flex items-center min-w-0",children:Q(de)}),N.includes(de.id)&&s.jsx("span",{title:"已置顶",children:s.jsx(bc,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})})]}),s.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:ye=>ye.stopPropagation(),onClick:ye=>ye.stopPropagation(),children:[de.isNew&&s.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"NEW"}),de.price===0||de.isFree?s.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"免费"}):s.jsxs("span",{className:"text-xs text-gray-500",children:["¥",de.price]}),s.jsxs("span",{className:"text-[10px] text-gray-500",title:"点击次数 · 付款笔数",children:["点击 ",de.clickCount??0," · 付款 ",de.payCount??0]}),s.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(de.hotScore??0).toFixed(1)," · 第",de.hotRank&&de.hotRank>0?de.hotRank:"-","名"]}),v&&s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>v(de),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5 shrink-0",children:"付款记录"}),s.jsxs("div",{className:"flex gap-0.5 opacity-0 group-hover:opacity-100 transition-opacity",children:[s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(de),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑",children:s.jsx(tn,{className:"w-3.5 h-3.5"})}),s.jsx(Y,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(de),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",children:s.jsx(Ms,{className:"w-3.5 h-3.5"})})]})]})]},de.id)})})]},X.id)})})]},B.id)})})}function q9(t){var a;const e=new URLSearchParams;e.set("page",String(t.page)),e.set("limit",String(t.limit)),(a=t==null?void 0:t.keyword)!=null&&a.trim()&&e.set("keyword",t.keyword.trim());const n=e.toString(),r=n?`/api/admin/ckb/devices?${n}`:"/api/admin/ckb/devices";return Le(r)}function G9(t){return Le(`/api/db/person?personId=${encodeURIComponent(t)}`)}function J9(t){var r;const e=new URLSearchParams;e.set("page",String(t.page)),e.set("limit",String(t.limit)),(r=t==null?void 0:t.keyword)!=null&&r.trim()&&e.set("keyword",t.keyword.trim());const n=e.toString();return Le(n?`/api/admin/ckb/plans?${n}`:"/api/admin/ckb/plans")}const v4=11,ej={personId:"",name:"",boundUserId:"",aliases:"",label:"",sceneId:v4,ckbApiKey:"",greeting:"你好,请通过",tips:"请注意消息,稍后加你微信",remarkType:"phone",remarkFormat:"",addFriendInterval:1,startTime:"06:00",endTime:"22:00",deviceGroups:""};function Q9({open:t,onOpenChange:e,editingPerson:n,onSubmit:r}){var F;const a=!!n,[i,o]=b.useState(ej),[c,u]=b.useState(!1),[h,f]=b.useState(!1),[m,x]=b.useState([]),[y,v]=b.useState(!1),[N,w]=b.useState(""),[k,E]=b.useState([]),[C,R]=b.useState(!1),[O,q]=b.useState(""),[$,V]=b.useState(!1),[I,te]=b.useState({});b.useEffect(()=>{t&&(w(""),o(n?{personId:n.personId??n.name??"",name:n.name??"",boundUserId:n.userId??"",aliases:n.aliases??"",label:n.label??"",sceneId:v4,ckbApiKey:n.ckbApiKey??"",greeting:"你好,请通过",tips:"请注意消息,稍后加你微信",remarkType:n.remarkType??"phone",remarkFormat:n.remarkFormat??"",addFriendInterval:n.addFriendInterval??1,startTime:n.startTime??"06:00",endTime:n.endTime??"22:00",deviceGroups:n.deviceGroups??""}:{...ej}),te({}),m.length===0&&Q(""),k.length===0&&B(""))},[t,n]);const Q=async D=>{v(!0);try{const P=await q9({page:1,limit:50,keyword:D});P!=null&&P.success&&Array.isArray(P.devices)?x(P.devices):P!=null&&P.error&&ne.error(P.error)}catch(P){ne.error(P instanceof Error?P.message:"加载设备列表失败")}finally{v(!1)}},B=async D=>{R(!0);try{const P=await J9({page:1,limit:100,keyword:D});P!=null&&P.success&&Array.isArray(P.plans)?E(P.plans):P!=null&&P.error&&ne.error(P.error)}catch{ne.error("加载计划列表失败")}finally{R(!1)}},re=D=>{const P=Array.isArray(D.deviceGroups)?D.deviceGroups.map(String).join(","):"";o(oe=>({...oe,ckbApiKey:D.apiKey||"",greeting:D.greeting||oe.greeting,tips:D.tips||oe.tips,remarkType:D.remarkType||oe.remarkType,remarkFormat:D.remarkFormat||oe.remarkFormat,addFriendInterval:D.addInterval||oe.addFriendInterval,startTime:D.startTime||oe.startTime,endTime:D.endTime||oe.endTime,deviceGroups:P||oe.deviceGroups})),V(!1),ne.success(`已选择计划「${D.name}」,参数已覆盖`)},ae=O.trim()?k.filter(D=>(D.name||"").includes(O.trim())||String(D.id).includes(O.trim())):k,J=async()=>{var G;const D={};(!i.name||!String(i.name).trim())&&(D.name="请填写名称");const P=i.addFriendInterval;if((typeof P!="number"||P<1)&&(D.addFriendInterval="添加间隔至少为 1 分钟"),(((G=i.deviceGroups)==null?void 0:G.split(",").map(_=>_.trim()).filter(Boolean))??[]).length===0&&(D.deviceGroups="请至少选择 1 台设备"),te(D),Object.keys(D).length>0){ne.error(D.name||D.addFriendInterval||D.deviceGroups||"请完善必填项");return}u(!0);try{await r(i),e(!1)}catch(_){ne.error(_ instanceof Error?_.message:"保存失败")}finally{u(!1)}};return s.jsx(Bt,{open:t,onOpenChange:e,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-4xl max-h-[90vh] overflow-y-auto",children:[s.jsxs(Vt,{children:[s.jsx(Ht,{className:"text-[#38bdac]",children:a?"编辑人物":"添加人物 — 存客宝 API 获客"}),s.jsx(of,{className:"text-gray-400 text-sm",children:a?"修改后同步到存客宝计划":"添加时自动生成 token,并同步创建存客宝场景获客计划"})]}),s.jsxs("div",{className:"space-y-6 py-2",children:[s.jsxs("div",{children:[s.jsx("p",{className:"text-xs font-medium text-gray-400 uppercase tracking-wider mb-3",children:"基础信息"}),s.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[s.jsxs("div",{className:"space-y-1.5",children:[s.jsxs(ee,{className:"text-gray-400 text-xs",children:["名称 ",s.jsx("span",{className:"text-red-400",children:"*"})]}),s.jsx(ce,{className:`bg-[#0a1628] text-white ${I.name?"border-red-500 focus-visible:ring-red-500":"border-gray-700"}`,placeholder:"如 卡若",value:i.name,onChange:D=>{o(P=>({...P,name:D.target.value})),I.name&&te(P=>({...P,name:void 0}))}}),I.name&&s.jsx("p",{className:"text-xs text-red-400",children:I.name})]}),s.jsxs("div",{className:"space-y-1.5",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"人物ID(可选)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"自动生成",value:i.personId,onChange:D=>o(P=>({...P,personId:D.target.value})),disabled:a})]}),s.jsxs("div",{className:"space-y-1.5",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"标签(身份/角色)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 超级个体",value:i.label,onChange:D=>o(P=>({...P,label:D.target.value}))})]}),s.jsxs("div",{className:"space-y-1.5 col-span-3",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"绑定会员用户 ID(可选,与「用户管理」中用户 id 一致)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-xs",placeholder:"留空则不绑定;填写后获客统计可与超级个体对齐",value:i.boundUserId,onChange:D=>o(P=>({...P,boundUserId:D.target.value.trim()}))}),s.jsx("p",{className:"text-[11px] text-gray-500",children:"保存前请在用户管理中核对 id;同一会员只能绑定一个 @人物。"})]}),s.jsxs("div",{className:"space-y-1.5",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"别名(逗号分隔,@ 可匹配)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 卡卡, 若若",value:i.aliases,onChange:D=>o(P=>({...P,aliases:D.target.value}))})]})]})]}),s.jsxs("div",{className:"border-t border-gray-700/50 pt-5",children:[s.jsx("p",{className:"text-xs font-medium text-gray-400 uppercase tracking-wider mb-4",children:"存客宝 API 获客配置"}),s.jsxs("div",{className:"grid grid-cols-2 gap-x-8 gap-y-4",children:[s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"space-y-1.5 relative",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"选择存客宝获客计划"}),s.jsxs("div",{className:"flex gap-2",children:[s.jsx("div",{className:"flex-1 flex items-center bg-[#0a1628] border border-gray-700 rounded-md px-3 py-2 cursor-pointer hover:border-[#38bdac]/60 text-sm",onClick:()=>V(!$),children:i.ckbApiKey?s.jsx("span",{className:"text-white truncate",children:((F=k.find(D=>D.apiKey===i.ckbApiKey))==null?void 0:F.name)||`获客计划 (${i.ckbApiKey.slice(0,8)}…)`}):s.jsx("span",{className:"text-gray-500",children:"点击选择已有计划 / 新建时自动创建"})}),s.jsx(Y,{type:"button",variant:"outline",size:"sm",className:"border-gray-600 text-gray-200 shrink-0",onClick:()=>{B(O),V(!0)},disabled:C,children:C?"加载...":"刷新"})]}),$&&s.jsxs("div",{className:"absolute z-50 top-full left-0 right-0 mt-1 bg-[#0b1828] border border-gray-700 rounded-lg shadow-xl max-h-64 flex flex-col",children:[s.jsx("div",{className:"p-2 border-b border-gray-700/60",children:s.jsx(ce,{className:"bg-[#050c18] border-gray-700 text-white h-8 text-xs",placeholder:"搜索计划名称...",value:O,onChange:D=>q(D.target.value),onKeyDown:D=>{D.key==="Enter"&&B(O)},autoFocus:!0})}),s.jsx("div",{className:"flex-1 overflow-y-auto",children:ae.length===0?s.jsx("div",{className:"text-center py-4 text-gray-500 text-xs",children:C?"加载中...":"暂无计划"}):ae.map(D=>s.jsxs("div",{className:`px-3 py-2 cursor-pointer hover:bg-[#38bdac]/10 text-sm flex items-center justify-between ${i.ckbApiKey===D.apiKey?"bg-[#38bdac]/20 text-[#38bdac]":"text-white"}`,onClick:()=>re(D),children:[s.jsxs("div",{className:"truncate",children:[s.jsx("span",{className:"font-medium",children:D.name}),s.jsxs("span",{className:"text-xs text-gray-500 ml-2",children:["ID:",String(D.id)]})]}),D.enabled?s.jsx("span",{className:"text-[10px] text-green-400 bg-green-400/10 px-1.5 rounded shrink-0 ml-2",children:"启用"}):s.jsx("span",{className:"text-[10px] text-gray-500 bg-gray-500/10 px-1.5 rounded shrink-0 ml-2",children:"停用"})]},String(D.id)))}),s.jsx("div",{className:"p-2 border-t border-gray-700/60 flex justify-end",children:s.jsx(Y,{type:"button",size:"sm",variant:"ghost",className:"text-gray-400 h-7 text-xs",onClick:()=>V(!1),children:"关闭"})})]}),s.jsx("p",{className:"text-xs text-gray-500",children:"选择计划后自动覆盖下方参数。新建人物时若不选择则自动创建新计划。"})]}),s.jsxs("div",{className:"space-y-1.5",children:[s.jsxs(ee,{className:"text-gray-400 text-xs",children:["选择设备 ",s.jsx("span",{className:"text-red-400",children:"*"})]}),s.jsxs("div",{className:`flex gap-2 rounded-md border ${I.deviceGroups?"border-red-500":"border-gray-700"}`,children:[s.jsx(ce,{className:"bg-[#0a1628] border-0 text-white focus-visible:ring-0 focus-visible:ring-offset-0",placeholder:"未选择设备",readOnly:!0,value:i.deviceGroups?`已选择 ${i.deviceGroups.split(",").filter(Boolean).length} 个设备`:"",onClick:()=>f(!0)}),s.jsx(Y,{type:"button",variant:"outline",className:"border-0 border-l border-inherit rounded-r-md text-gray-200",onClick:()=>f(!0),children:"选择"})]}),I.deviceGroups?s.jsx("p",{className:"text-xs text-red-400",children:I.deviceGroups}):s.jsx("p",{className:"text-xs text-gray-500",children:"从存客宝设备列表中选择,至少选择 1 台设备参与获客计划。"})]}),s.jsxs("div",{className:"space-y-1.5",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"好友备注"}),s.jsxs(xc,{value:i.remarkType,onValueChange:D=>o(P=>({...P,remarkType:D})),children:[s.jsx(al,{className:"bg-[#0a1628] border-gray-700 text-white",children:s.jsx(gc,{placeholder:"选择备注类型"})}),s.jsxs(il,{children:[s.jsx(tr,{value:"phone",children:"手机号"}),s.jsx(tr,{value:"nickname",children:"昵称"}),s.jsx(tr,{value:"source",children:"来源"})]})]})]}),s.jsxs("div",{className:"space-y-1.5",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"备注格式(手机号+标签,标签不超过6字)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 {手机号}-{来源标签},总长不超过10字",value:i.remarkFormat,onChange:D=>o(P=>({...P,remarkFormat:D.target.value}))}),s.jsx("p",{className:"text-xs text-gray-500",children:"格式:手机号+来源标签(标签≤6字,总长≤10字)"})]})]}),s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"space-y-1.5",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"打招呼语"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"你好,请通过",value:i.greeting,onChange:D=>o(P=>({...P,greeting:D.target.value}))})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsxs("div",{className:"space-y-1.5",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"添加间隔(分钟)"}),s.jsx(ce,{type:"number",min:1,className:`bg-[#0a1628] text-white ${I.addFriendInterval?"border-red-500 focus-visible:ring-red-500":"border-gray-700"}`,value:i.addFriendInterval,onChange:D=>{o(P=>({...P,addFriendInterval:Number(D.target.value)||1})),I.addFriendInterval&&te(P=>({...P,addFriendInterval:void 0}))}}),I.addFriendInterval&&s.jsx("p",{className:"text-xs text-red-400",children:I.addFriendInterval})]}),s.jsxs("div",{className:"space-y-1.5",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"允许加人时间段"}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(ce,{type:"time",className:"bg-[#0a1628] border-gray-700 text-white w-24",value:i.startTime,onChange:D=>o(P=>({...P,startTime:D.target.value}))}),s.jsx("span",{className:"text-gray-500 text-sm shrink-0",children:"至"}),s.jsx(ce,{type:"time",className:"bg-[#0a1628] border-gray-700 text-white w-24",value:i.endTime,onChange:D=>o(P=>({...P,endTime:D.target.value}))})]})]})]}),s.jsxs("div",{className:"space-y-1.5",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"获客成功提示"}),s.jsx(To,{className:"bg-[#0a1628] border-gray-700 text-white min-h-[72px] resize-none",placeholder:"请注意消息,稍后加你微信",value:i.tips,onChange:D=>o(P=>({...P,tips:D.target.value}))})]})]})]})]})]}),s.jsxs(xn,{className:"gap-3 pt-2",children:[s.jsx(Y,{variant:"outline",onClick:()=>e(!1),className:"border-gray-600 text-gray-300",children:"取消"}),s.jsx(Y,{onClick:J,disabled:c,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:c?"保存中...":a?"保存":"添加"})]}),h&&s.jsx("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-black/60",children:s.jsxs("div",{className:"w-full max-w-3xl max-h-[80vh] bg-[#0b1828] border border-gray-700 rounded-xl shadow-xl flex flex-col",children:[s.jsxs("div",{className:"flex items-center justify-between px-5 py-3 border-b border-gray-700/60",children:[s.jsxs("div",{children:[s.jsx("h3",{className:"text-sm font-medium text-white",children:"选择设备"}),s.jsx("p",{className:"text-xs text-gray-400 mt-0.5",children:"勾选需要参与本计划的设备,可多选"})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(Y,{type:"button",size:"sm",variant:"outline",className:"border-gray-600 text-gray-200 h-8",onClick:()=>{const D=m.map(G=>String(G.id??"")),P=i.deviceGroups?i.deviceGroups.split(",").map(G=>G.trim()).filter(Boolean):[],oe=D.length>0&&D.every(G=>P.includes(G));o(G=>({...G,deviceGroups:oe?"":D.join(",")})),!oe&&D.length>0&&te(G=>({...G,deviceGroups:void 0}))},children:(()=>{const D=m.map(oe=>String(oe.id??"")),P=i.deviceGroups?i.deviceGroups.split(",").map(oe=>oe.trim()).filter(Boolean):[];return D.length>0&&D.every(oe=>P.includes(oe))?"取消全选":"全选"})()}),s.jsx(ce,{className:"bg-[#050c18] border-gray-700 text-white h-8 w-52",placeholder:"搜索备注/微信号/IMEI",value:N,onChange:D=>w(D.target.value),onKeyDown:D=>{D.key==="Enter"&&Q(N)}}),s.jsx(Y,{type:"button",size:"sm",variant:"outline",className:"border-gray-600 text-gray-200 h-8",onClick:()=>Q(N),disabled:y,children:"刷新"}),s.jsx(Y,{type:"button",size:"icon",variant:"outline",className:"border-gray-600 text-gray-300 h-8 w-8",onClick:()=>f(!1),children:"✕"})]})]}),s.jsx("div",{className:"flex-1 overflow-y-auto",children:y?s.jsx("div",{className:"flex h-full items-center justify-center text-gray-400 text-sm",children:"正在加载设备列表…"}):m.length===0?s.jsx("div",{className:"flex h-full items-center justify-center text-gray-500 text-sm",children:"暂无设备数据,请检查存客宝账号与开放 API 配置"}):s.jsx("div",{className:"p-4 space-y-2",children:m.map(D=>{const P=String(D.id??""),oe=i.deviceGroups?i.deviceGroups.split(",").map(U=>U.trim()).filter(Boolean):[],G=oe.includes(P),_=()=>{let U;G?U=oe.filter(H=>H!==P):U=[...oe,P],o(H=>({...H,deviceGroups:U.join(",")})),U.length>0&&te(H=>({...H,deviceGroups:void 0}))};return s.jsxs("label",{className:"flex items-center gap-3 rounded-lg border border-gray-700/60 bg-[#050c18] px-3 py-2 cursor-pointer hover:border-[#38bdac]/70",children:[s.jsx("input",{type:"checkbox",className:"h-4 w-4 accent-[#38bdac]",checked:G,onChange:_}),s.jsxs("div",{className:"flex flex-col min-w-0",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("span",{className:"text-sm text-white truncate max-w-xs",children:D.memo||D.wechatId||`设备 ${P}`}),D.status==="online"&&s.jsx("span",{className:"rounded-full bg-emerald-500/20 text-emerald-400 text-[11px] px-2 py-0.5",children:"在线"}),D.status==="offline"&&s.jsx("span",{className:"rounded-full bg-gray-600/20 text-gray-400 text-[11px] px-2 py-0.5",children:"离线"})]}),s.jsxs("div",{className:"text-[11px] text-gray-400 mt-0.5",children:[s.jsxs("span",{className:"mr-3",children:["ID: ",P]}),D.wechatId&&s.jsxs("span",{className:"mr-3",children:["微信号: ",D.wechatId]}),typeof D.totalFriend=="number"&&s.jsxs("span",{children:["好友数: ",D.totalFriend]})]})]})]},P)})})}),s.jsxs("div",{className:"flex justify-between items-center px-5 py-3 border-t border-gray-700/60",children:[s.jsxs("span",{className:"text-xs text-gray-400",children:["已选择"," ",i.deviceGroups?i.deviceGroups.split(",").filter(Boolean).length:0," ","台设备"]}),s.jsxs("div",{className:"flex gap-2",children:[s.jsx(Y,{type:"button",variant:"outline",className:"border-gray-600 text-gray-200 h-8 px-4",onClick:()=>f(!1),children:"取消"}),s.jsx(Y,{type:"button",className:"bg-[#38bdac] hover:bg-[#2da396] text-white h-8 px-4",onClick:()=>f(!1),children:"确定"})]})]})]})})]})})}const rg=JSON.stringify({singlePageUnlockTitle:"解锁完整内容",singlePagePayButtonText:"支付 ¥{price} 解锁全文",singlePageExpandedHint:"预览页不能直接付款,务必先点底栏「前往小程序」。",payTapModalTitle:"解锁说明",payTapModalContent:"全文 ¥{price}。预览里无法完成支付:请先点屏幕底部「前往小程序」进入完整版,登录后再付款解锁。",fullUnlockTitle:"解锁完整内容",fullUnlockDesc:"可先上滑阅读预览;需要全文时,点下方「支付¥{price}」查看说明",fullLockedProgressText:"已阅读约 {percent}% ,购买后继续阅读",fullPaywallTip:"转发给需要的人,一起学习还能赚佣金",notLoginUnlockDesc:"已预览约 {percent}% 内容,登录并支付 ¥{price} 后阅读全文",notLoginPaywallTip:"分享给好友一起学习,还能赚取佣金",shareTipLine:"好友经你分享购买,你可获得约 90% 收益",momentsModalTitle:"分享到朋友圈",momentsModalContent:`已复制发圈文案(非分享给好友)。 + +请点击右上角「···」→「分享到朋友圈」粘贴发布。`,momentsClipboardFooter:` + +—— 以上为正文预览约 {percent}% ,搜「卡若创业派对」小程序阅读全文 ——`,timelineTitleSuffix:"(预览{percent}%)"},null,2);function Y9(t,e){const n=new Map;for(const i of t){const o=i.partId||"part-1",c=i.partTitle||"未分类",u=i.chapterId||"chapter-1",h=i.chapterTitle||"未分类";n.has(o)||n.set(o,{id:o,title:c,chapters:new Map});const f=n.get(o);f.chapters.has(u)||f.chapters.set(u,{id:u,title:h,sections:[]}),f.chapters.get(u).sections.push({id:i.id,mid:i.mid,title:i.title,price:i.price??1,filePath:i.filePath,isFree:i.isFree,isNew:i.isNew,clickCount:i.clickCount??0,payCount:i.payCount??0,hotScore:i.hotScore??0,hotRank:e.get(i.id)??0})}const r=Array.from(n.values()).map(i=>({...i,chapters:Array.from(i.chapters.values())})),a=new Map;for(let i=0;i{const c=a.get(i.id),u=a.get(o.id);return c!==void 0&&u!==void 0&&c!==u?c-u:c!==void 0&&u===void 0?-1:c===void 0&&u!==void 0?1:i.id.localeCompare(o.id)})}function X9(){var gt,Nn,ct;const t=La(),[e,n]=b.useState([]),[r,a]=b.useState(!0),[i,o]=b.useState([]),[c,u]=b.useState(null),[h,f]=b.useState(!1),[m,x]=b.useState(!1),[y,v]=b.useState(!1),[N,w]=b.useState(""),[k,E]=b.useState([]),[C,R]=b.useState(!1),[O,q]=b.useState({id:"",title:"",price:1,partId:"part-1",chapterId:"chapter-1",content:"",editionStandard:!0,editionPremium:!1,isFree:!1,isNew:!1,isPinned:!1,hotScore:0}),[$,V]=b.useState(null),[I,te]=b.useState(!1),[Q,B]=b.useState(!1),[re,ae]=b.useState(null),[J,F]=b.useState(!1),[D,P]=b.useState([]),[oe,G]=b.useState(!1),[_,U]=b.useState(""),[H,K]=b.useState(""),[me,X]=b.useState(!1),[le,de]=b.useState(""),[ve,ye]=b.useState(!1),[Se,Fe]=b.useState(null),[mt,kt]=b.useState(!1),[ft,Dt]=b.useState(!1),[Pt,Rn]=b.useState({readWeight:.5,recencyWeight:.3,payWeight:.2}),[yn,Wt]=b.useState(!1),[Xt,Sn]=b.useState(!1),[Fn,Wn]=b.useState(1),[Mt,pn]=b.useState([]),[bn,ge]=b.useState(!1),[Ce,Be]=b.useState([]),[Ze,St]=b.useState(!1),[vt,L]=b.useState(20),[Ie,xt]=b.useState(!1),[Rt,pt]=b.useState(!1),[at,At]=b.useState(rg),[Kt,en]=b.useState(!1),[ls,Ws]=b.useState(!1),[Fr,za]=b.useState([]),[$a,Fa]=b.useState([]),[oa,Br]=b.useState([]),[yr,ir]=b.useState(!1),[Vr,Ls]=b.useState(1),[Ds,or]=b.useState(20),[br,la]=b.useState(0),[ie,xe]=b.useState(1),[It,$t]=b.useState(""),[Yn,Xn]=b.useState(!1),[Ks,Ba]=b.useState(null),[Ct,vn]=b.useState({tagId:"",label:"",aliases:"",url:"",type:"url",appId:"",appSecret:"",pagePath:""}),[Va,Ol]=b.useState(!1),[Ft,Fo]=b.useState(!1),[vr,ca]=b.useState(null),[cs,Ei]=b.useState(null),[Ha,da]=b.useState({}),[Ns,Hr]=b.useState(!1),[ws,Ll]=b.useState(""),[Mi,Jc]=b.useState(""),[Ua,Ai]=b.useState([]),[Nr,Wa]=b.useState(0),[_s,Qc]=b.useState(1),[Bo,Vo]=b.useState(!1),[zs,ua]=b.useState(""),Ii=b.useRef(null),qs=b.useCallback(async(T,z)=>{var dt;const ue=new FormData;ue.append("file",T),ue.append("folder",z);const Qe=await(await fetch(Ac("/api/upload"),{method:"POST",body:ue,headers:{Authorization:`Bearer ${localStorage.getItem("admin_token")||""}`}})).json();return((dt=Qe==null?void 0:Qe.data)==null?void 0:dt.url)||(Qe==null?void 0:Qe.url)||""},[]),Tt=b.useCallback(T=>qs(T,"book-images"),[qs]),ha=b.useCallback(T=>{const z=T.type.startsWith("video/")?"book-videos":"book-attachments";return qs(T,z)},[qs]),Pi=b.useMemo(()=>{const T=new Map;return Mt.forEach((z,ue)=>{T.set(z.id,ue+1)}),T},[Mt]),Bn=Y9(e,Pi),Ri=e.length,Ka=10,Ur=Math.max(1,Math.ceil(Mt.length/Ka)),wr=Mt.slice((Fn-1)*Ka,Fn*Ka),Cn=async()=>{a(!0);try{const T=await Le("/api/db/book?action=list",{cache:"no-store"});n(Array.isArray(T==null?void 0:T.sections)?T.sections:[])}catch(T){console.error(T),n([])}finally{a(!1)}},ds=async()=>{ge(!0);try{const T=await Le("/api/db/book?action=ranking",{cache:"no-store"}),z=Array.isArray(T==null?void 0:T.sections)?T.sections:[];pn(z);const ue=z.filter(we=>we.isPinned).map(we=>we.id);Be(ue)}catch(T){console.error(T),pn([])}finally{ge(!1)}};b.useEffect(()=>{Cn(),ds()},[]);const lr=T=>{o(z=>z.includes(T)?z.filter(ue=>ue!==T):[...z,T])},cr=b.useCallback(T=>{const z=e,ue=T.flatMap(we=>{const Qe=z.find(dt=>dt.id===we.id);return Qe?[{...Qe,partId:we.partId,partTitle:we.partTitle,chapterId:we.chapterId,chapterTitle:we.chapterTitle}]:[]});return n(ue),Zt("/api/db/book",{action:"reorder",items:T}).then(we=>{we&&we.success===!1&&(n(z),ne.error("排序失败: "+(we&&typeof we=="object"&&"error"in we?we.error:"未知错误")))}).catch(we=>{n(z),console.error("排序失败:",we),ne.error("排序失败: "+(we instanceof Error?we.message:"网络或服务异常"))}),Promise.resolve()},[e]),fa=async T=>{if(confirm(`确定要删除章节「${T.title}」吗?此操作不可恢复。`))try{const z=await gi(`/api/db/book?id=${encodeURIComponent(T.id)}`);z&&z.success!==!1?(ne.success("已删除"),Cn(),ds()):ne.error("删除失败: "+(z&&typeof z=="object"&&"error"in z?z.error:"未知错误"))}catch(z){console.error(z),ne.error("删除失败")}},pa=b.useCallback(async()=>{Wt(!0);try{const T=await Le("/api/db/config/full?key=article_ranking_weights",{cache:"no-store"}),z=T&&T.data;z&&typeof z.readWeight=="number"&&typeof z.recencyWeight=="number"&&typeof z.payWeight=="number"&&Rn({readWeight:Math.max(0,Math.min(1,z.readWeight)),recencyWeight:Math.max(0,Math.min(1,z.recencyWeight)),payWeight:Math.max(0,Math.min(1,z.payWeight))})}catch{}finally{Wt(!1)}},[]);b.useEffect(()=>{ft&&pa()},[ft,pa]);const jr=async()=>{const{readWeight:T,recencyWeight:z,payWeight:ue}=Pt,we=T+z+ue;if(Math.abs(we-1)>.001){ne.error("三个权重之和必须等于 1");return}Sn(!0);try{const Qe=await Et("/api/db/config",{key:"article_ranking_weights",value:{readWeight:T,recencyWeight:z,payWeight:ue},description:"文章排名算法权重"});Qe&&Qe.success!==!1?(ne.success("排名权重已保存"),Dt(!1),Cn(),ds()):ne.error("保存失败: "+(Qe&&typeof Qe=="object"&&"error"in Qe?Qe.error:""))}catch(Qe){console.error(Qe),ne.error("保存失败")}finally{Sn(!1)}},Dl=b.useCallback(async()=>{St(!0);try{const T=await Le("/api/db/config/full?key=pinned_section_ids",{cache:"no-store"}),z=T&&T.data;Array.isArray(z)&&Be(z)}catch{}finally{St(!1)}},[]),kr=b.useCallback(async()=>{try{const T=await Le("/api/db/persons");T!=null&&T.success&&T.persons&&za(T.persons.map(z=>{const ue=z.deviceGroups,we=Array.isArray(ue)?ue.join(","):ue??"";return{id:z.token??z.personId??"",personId:z.personId,name:z.name,personSource:z.personSource??"",userId:z.userId,aliases:z.aliases??"",label:z.label??"",ckbApiKey:z.ckbApiKey??"",ckbPlanId:z.ckbPlanId,remarkType:z.remarkType,remarkFormat:z.remarkFormat,addFriendInterval:z.addFriendInterval,startTime:z.startTime,endTime:z.endTime,deviceGroups:we}}))}catch{}},[]),$s=b.useCallback(async()=>{try{const T=await Le("/api/db/link-tags");T!=null&&T.success&&T.linkTags&&Fa(T.linkTags.map(z=>({id:z.tagId,label:z.label,url:z.url,type:z.type||"url",appId:z.appId||"",pagePath:z.pagePath||"",hasAppSecret:!!z.hasAppSecret})))}catch{}},[]),_l=b.useCallback(async()=>{try{const T=await Le("/api/db/config/full?key=ckb_lead_webhook_url",{cache:"no-store"});T!=null&&T.success&&typeof T.data=="string"&&ua(T.data)}catch{}},[]),ma=b.useCallback(async()=>{try{const T=await Le("/api/db/ckb-person-leads");if(T!=null&&T.success&&T.byPerson){const z={};for(const ue of T.byPerson)z[ue.token]=ue.total;da(z)}}catch{}},[]),js=b.useCallback(async(T,z,ue=1)=>{Ll(T),Jc(z),Hr(!0),Qc(ue),Vo(!0);try{const we=await Le(`/api/db/ckb-person-leads?token=${encodeURIComponent(T)}&page=${ue}&pageSize=20`);we!=null&&we.success?(Ai(we.records||[]),Wa(we.total||0)):ne.error((we==null?void 0:we.error)||"加载获客详情失败")}catch(we){ne.error(we instanceof Error?we.message:"加载获客详情失败")}finally{Vo(!1)}},[]),Sr=b.useCallback(async()=>{ir(!0);try{const T=new URLSearchParams({page:String(Vr),pageSize:String(Ds)}),z=It.trim();z&&T.set("search",z);const ue=await Le(`/api/db/link-tags?${T.toString()}`);if(ue!=null&&ue.success){const we=Array.isArray(ue.linkTags)?ue.linkTags:[];Br(we.map(Qe=>({id:Qe.tagId,label:Qe.label,aliases:Qe.aliases||"",url:Qe.url,type:Qe.type||"url",appId:Qe.appId||"",pagePath:Qe.pagePath||"",hasAppSecret:!!Qe.hasAppSecret}))),la(typeof ue.total=="number"?ue.total:0),xe(typeof ue.totalPages=="number"&&ue.totalPages>0?ue.totalPages:1)}}catch(T){console.error(T),ne.error("加载链接标签失败")}finally{ir(!1)}},[Vr,Ds,It]),[qa,xa]=b.useState([]),[Gs,ks]=b.useState(""),[Ga,Wr]=b.useState(!1),Yc=b.useRef(null),Oi=b.useCallback(async()=>{try{const T=await Le("/api/admin/linked-miniprograms");T!=null&&T.success&&Array.isArray(T.data)&&xa(T.data.map(z=>({...z,key:z.key})))}catch{}},[]),Ja=qa.filter(T=>!Gs.trim()||T.name.toLowerCase().includes(Gs.toLowerCase())||T.key&&T.key.toLowerCase().includes(Gs.toLowerCase())||T.appId.toLowerCase().includes(Gs.toLowerCase())),Li=async T=>{const z=Ce.includes(T)?Ce.filter(ue=>ue!==T):[...Ce,T];Be(z);try{await Et("/api/db/config",{key:"pinned_section_ids",value:z,description:"强制置顶章节ID列表(精选推荐/首页最新更新)"}),ds()}catch{Be(Ce)}},Di=b.useCallback(async()=>{xt(!0);try{const T=await Le("/api/db/config/full?key=unpaid_preview_percent",{cache:"no-store"}),z=T&&T.data;typeof z=="number"&&z>0&&z<=100&&L(z)}catch{}finally{xt(!1)}},[]),Cr=async()=>{if(vt<1||vt>100){ne.error("预览比例需在 1~100 之间");return}pt(!0);try{const T=await Et("/api/db/config",{key:"unpaid_preview_percent",value:vt,description:"小程序未付费内容默认预览比例(%)"});T&&T.success!==!1?ne.success("预览比例已保存"):ne.error("保存失败: "+(T.error||""))}catch{ne.error("保存失败")}finally{pt(!1)}},Qa=b.useCallback(async()=>{en(!0);try{const T=await Le("/api/db/config/full?key=read_preview_ui",{cache:"no-store"}),z=T&&T.data;z!=null&&typeof z=="object"&&!Array.isArray(z)&&Object.keys(z).length>0?At(JSON.stringify(z,null,2)):At(rg)}catch{At(rg)}finally{en(!1)}},[]),Ya=async()=>{let T;try{T=JSON.parse(at)}catch{ne.error("JSON 格式错误,请检查括号与引号");return}Ws(!0);try{const z=await Et("/api/db/config",{key:"read_preview_ui",value:T,description:"阅读页/朋友圈付费墙与分享文案(占位符 {percent} {price})"});z&&z.success!==!1?ne.success("阅读页文案已保存"):ne.error("保存失败: "+(z.error||""))}catch{ne.error("保存失败")}finally{Ws(!1)}};b.useEffect(()=>{Dl(),Di(),Qa(),kr(),$s(),ma(),Oi(),_l()},[Dl,Di,Qa,kr,$s,ma,Oi,_l]),b.useEffect(()=>{Sr()},[Sr]);const _i=async T=>{Fe({section:T,orders:[]}),kt(!0);try{const z=await Le(`/api/db/book?action=section-orders&id=${encodeURIComponent(T.id)}`),ue=z!=null&&z.success&&Array.isArray(z.orders)?z.orders:[];Fe(we=>we?{...we,orders:ue}:null)}catch(z){console.error(z),Fe(ue=>ue?{...ue,orders:[]}:null)}finally{kt(!1)}},ga=async T=>{x(!0);try{const z=T.mid!=null&&T.mid>0?`/api/db/book?action=read&mid=${T.mid}`:`/api/db/book?action=read&id=${encodeURIComponent(T.id)}`,ue=await Le(z);if(ue!=null&&ue.success&&ue.section){const we=ue.section,Qe=we.editionPremium===!0;u({id:T.id,originalId:T.id,title:ue.section.title??T.title,price:ue.section.price??T.price,content:ue.section.content??"",filePath:T.filePath,isFree:T.isFree||T.price===0,isNew:we.isNew??T.isNew,isPinned:Ce.includes(T.id),hotScore:T.hotScore??0,editionStandard:Qe?!1:we.editionStandard??!0,editionPremium:Qe})}else u({id:T.id,originalId:T.id,title:T.title,price:T.price,content:"",filePath:T.filePath,isFree:T.isFree,isNew:T.isNew,isPinned:Ce.includes(T.id),hotScore:T.hotScore??0,editionStandard:!0,editionPremium:!1}),ue&&!ue.success&&ne.error("无法读取文件内容: "+(ue.error||"未知错误"))}catch(z){console.error(z),u({id:T.id,title:T.title,price:T.price,content:"",filePath:T.filePath,isFree:T.isFree})}finally{x(!1)}},zi=async()=>{var T;if(c){v(!0);try{let z=c.content||"";const ue=[new RegExp(`^#+\\s*${c.id.replace(".","\\.")}\\s+.*$`,"gm"),new RegExp(`^#+\\s*${c.id.replace(".","\\.")}[::].*$`,"gm"),new RegExp(`^#\\s+.*${(T=c.title)==null?void 0:T.slice(0,10).replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}.*$`,"gm")];for(const Zn of ue)z=z.replace(Zn,"");z=z.replace(/^\s*\n+/,"").trim();const we=c.originalId||c.id,Qe=c.id!==we,dt=await Zt("/api/db/book",{id:we,...Qe?{newId:c.id}:{},title:c.title,price:c.isFree?0:c.price,content:z,isFree:c.isFree||c.price===0,isNew:c.isNew,hotScore:c.hotScore,previewPercent:c.previewPercent??null,editionStandard:c.editionPremium?!1:c.editionStandard??!0,editionPremium:c.editionPremium??!1,saveToFile:!0},{timeout:g1}),Ot=Qe?c.id:we;c.isPinned!==Ce.includes(Ot)&&await Li(Ot),dt&&dt.success!==!1?(ne.success(`已保存:${c.title}`),u(null),Cn(),kr(),$s()):ne.error("保存失败: "+(dt&&typeof dt=="object"&&"error"in dt?dt.error:"未知错误"))}catch(z){console.error(z);const ue=z instanceof Error&&z.name==="AbortError"?"保存超时,请检查网络或稍后重试":"保存失败";ne.error(ue)}finally{v(!1)}}},Ho=async()=>{if(!O.id||!O.title){ne.error("请填写章节ID和标题");return}v(!0);try{const T=Bn.find(we=>we.id===O.partId),z=T==null?void 0:T.chapters.find(we=>we.id===O.chapterId),ue=await Zt("/api/db/book",{id:O.id,title:O.title,price:O.isFree?0:O.price,content:O.content||"",partId:O.partId,partTitle:(T==null?void 0:T.title)??"",chapterId:O.chapterId,chapterTitle:(z==null?void 0:z.title)??"",isFree:O.isFree,isNew:O.isNew,editionStandard:O.editionPremium?!1:O.editionStandard??!0,editionPremium:O.editionPremium??!1,hotScore:O.hotScore??0,saveToFile:!1},{timeout:g1});if(ue&&ue.success!==!1){if(O.isPinned){const we=[...Ce,O.id];Be(we);try{await Et("/api/db/config",{key:"pinned_section_ids",value:we,description:"强制置顶章节ID列表(精选推荐/首页最新更新)"})}catch{}}ne.success(`章节创建成功:${O.title}`),f(!1),q({id:"",title:"",price:1,partId:"part-1",chapterId:"chapter-1",content:"",editionStandard:!0,editionPremium:!1,isFree:!1,isNew:!1,isPinned:!1,hotScore:0}),Cn(),kr(),$s()}else ne.error("创建失败: "+(ue&&typeof ue=="object"&&"error"in ue?ue.error:"未知错误"))}catch(T){console.error(T),ne.error("创建失败")}finally{v(!1)}},us=T=>{q(z=>{var ue;return{...z,partId:T.id,chapterId:((ue=T.chapters[0])==null?void 0:ue.id)??"chapter-1"}}),f(!0)},Kr=T=>{V({id:T.id,title:T.title})},$i=async()=>{var T;if((T=$==null?void 0:$.title)!=null&&T.trim()){te(!0);try{const z=e.map(we=>({id:we.id,partId:we.partId||"part-1",partTitle:we.partId===$.id?$.title.trim():we.partTitle||"",chapterId:we.chapterId||"chapter-1",chapterTitle:we.chapterTitle||""})),ue=await Zt("/api/db/book",{action:"reorder",items:z});if(ue&&ue.success!==!1){const we=$.title.trim();n(Qe=>Qe.map(dt=>dt.partId===$.id?{...dt,partTitle:we}:dt)),V(null),Cn()}else ne.error("更新篇名失败: "+(ue&&typeof ue=="object"&&"error"in ue?ue.error:"未知错误"))}catch(z){console.error(z),ne.error("更新篇名失败")}finally{te(!1)}}},ya=T=>{const z=T.chapters.length+1,ue=`chapter-${T.id}-${z}-${Date.now()}`;q({id:`${z}.1`,title:"新章节",price:1,partId:T.id,chapterId:ue,content:"",editionStandard:!0,editionPremium:!1,isFree:!1,isNew:!1,isPinned:!1,hotScore:0}),f(!0)},zl=(T,z)=>{const ue=z.sections;let we=1,Qe=!1,dt=!1;if(ue.length>0){const Ot=typeof ue[0].price=="number"?ue[0].price:Number(ue[0].price)||1,Zn=!!(ue[0].isFree||Ot===0);dt=ue.some(va=>{const On=typeof va.price=="number"?va.price:Number(va.price)||1,Tr=!!(va.isFree||On===0);return On!==Ot||Tr!==Zn}),we=Zn?0:Ot,Qe=Zn}ae({part:T,chapter:z,title:z.title,price:we,isFree:Qe,priceMixed:dt,initialTitle:z.title,initialPrice:we,initialIsFree:Qe})},Fi=async()=>{var Qe;if(!((Qe=re==null?void 0:re.title)!=null&&Qe.trim()))return;const T=re,z=T.title.trim(),ue=z!==T.initialTitle,we=T.isFree!==T.initialIsFree||!T.isFree&&Number(T.price)!==Number(T.initialPrice);if(!ue&&!we){ne.info("未修改任何内容"),ae(null);return}if(T.priceMixed&&we){const dt=T.chapter.sections.length,Ot=T.isFree?"全部设为免费":`全部设为 ¥${T.price}`;if(!confirm(`本章 ${dt} 节当前定价不一致,保存后将${Ot},确定?`))return}F(!0);try{if(ue){const dt=e.map(On=>({id:On.id,partId:On.partId||T.part.id,partTitle:On.partId===T.part.id?T.part.title:On.partTitle||"",chapterId:On.chapterId||T.chapter.id,chapterTitle:On.partId===T.part.id&&On.chapterId===T.chapter.id?z:On.chapterTitle||""})),Ot=await Zt("/api/db/book",{action:"reorder",items:dt});if(Ot&&Ot.success===!1){ne.error("保存章节名失败: "+(Ot&&typeof Ot=="object"&&"error"in Ot?Ot.error:"未知错误"));return}const Zn=T.part.id,va=T.chapter.id;n(On=>On.map(Tr=>Tr.partId===Zn&&Tr.chapterId===va?{...Tr,chapterTitle:z}:Tr))}if(we){const dt=await Zt("/api/db/book",{action:"update-chapter-pricing",partId:T.part.id,chapterId:T.chapter.id,price:T.isFree?0:Number(T.price)||0,isFree:T.isFree});if(dt&&dt.success===!1){ne.error("保存定价失败: "+(dt&&typeof dt=="object"&&"error"in dt?dt.error:"未知错误")),ue&&Cn();return}}ae(null),Cn(),ne.success("已保存")}catch(dt){console.error(dt),ne.error("保存失败")}finally{F(!1)}},Bi=async(T,z)=>{const ue=z.sections.map(we=>we.id);if(ue.length===0){ne.info("该章下无小节,无需删除");return}if(confirm(`确定要删除「第${T.chapters.indexOf(z)+1}章 | ${z.title}」吗?将删除共 ${ue.length} 节,此操作不可恢复。`))try{for(const we of ue)await gi(`/api/db/book?id=${encodeURIComponent(we)}`);Cn()}catch(we){console.error(we),ne.error("删除失败")}},ba=async()=>{if(!le.trim()){ne.error("请输入篇名");return}ye(!0);try{const T=`part-new-${Date.now()}`,z="chapter-1",ue=`part-placeholder-${Date.now()}`,we=await Zt("/api/db/book",{id:ue,title:"占位节(可编辑)",price:0,content:"",partId:T,partTitle:le.trim(),chapterId:z,chapterTitle:"第1章 | 待编辑",saveToFile:!1});we&&we.success!==!1?(ne.success(`篇「${le}」创建成功`),B(!1),de(""),Cn()):ne.error("创建失败: "+(we&&typeof we=="object"&&"error"in we?we.error:"未知错误"))}catch(T){console.error(T),ne.error("创建失败")}finally{ye(!1)}},Xa=async()=>{if(D.length===0){ne.error("请先勾选要移动的章节");return}const T=Bn.find(ue=>ue.id===_),z=T==null?void 0:T.chapters.find(ue=>ue.id===H);if(!T||!z||!_||!H){ne.error("请选择目标篇和章");return}X(!0);try{const ue=()=>{const Ot=new Set(D),Zn=e.map(Kn=>({id:Kn.id,partId:Kn.partId||"",partTitle:Kn.partTitle||"",chapterId:Kn.chapterId||"",chapterTitle:Kn.chapterTitle||""})),va=Zn.filter(Kn=>Ot.has(Kn.id)).map(Kn=>({...Kn,partId:_,partTitle:T.title||_,chapterId:H,chapterTitle:z.title||H})),On=Zn.filter(Kn=>!Ot.has(Kn.id));let Tr=On.length;for(let Kn=On.length-1;Kn>=0;Kn-=1){const vu=On[Kn];if(vu.partId===_&&vu.chapterId===H){Tr=Kn+1;break}}return[...On.slice(0,Tr),...va,...On.slice(Tr)]},we=async()=>{const Ot=ue(),Zn=await Zt("/api/db/book",{action:"reorder",items:Ot});return Zn&&Zn.success!==!1?(ne.success(`已移动 ${D.length} 节到「${T.title}」-「${z.title}」`),G(!1),P([]),await Cn(),!0):!1},Qe={action:"move-sections",sectionIds:D,targetPartId:_,targetChapterId:H,targetPartTitle:T.title||_,targetChapterTitle:z.title||H},dt=await Zt("/api/db/book",Qe);if(dt&&dt.success!==!1)ne.success(`已移动 ${dt.count??D.length} 节到「${T.title}」-「${z.title}」`),G(!1),P([]),await Cn();else{const Ot=dt&&typeof dt=="object"&&"error"in dt?dt.error||"":"未知错误";if((Ot.includes("缺少 id")||Ot.includes("无效的 action"))&&await we())return;ne.error("移动失败: "+Ot)}}catch(ue){console.error(ue),ne.error("移动失败: "+(ue instanceof Error?ue.message:"网络或服务异常"))}finally{X(!1)}},A=T=>{P(z=>z.includes(T)?z.filter(ue=>ue!==T):[...z,T])},je=async T=>{const z=e.filter(ue=>ue.partId===T.id).map(ue=>ue.id);if(z.length===0){ne.info("该篇下暂无小节可删除");return}if(confirm(`确定要删除「${T.title}」整篇吗?将删除共 ${z.length} 节内容,此操作不可恢复。`))try{for(const ue of z)await gi(`/api/db/book?id=${encodeURIComponent(ue)}`);Cn()}catch(ue){console.error(ue),ne.error("删除失败")}},Ae=async()=>{var T;if(N.trim()){R(!0);try{const z=await Le(`/api/search?q=${encodeURIComponent(N)}`);z!=null&&z.success&&((T=z.data)!=null&&T.results)?E(z.data.results):(E([]),z&&!z.success&&ne.error("搜索失败: "+z.error))}catch(z){console.error(z),E([]),ne.error("搜索失败")}finally{R(!1)}}},$e=Bn.find(T=>T.id===O.partId),et=($e==null?void 0:$e.chapters)??[];return s.jsxs("div",{className:"p-8 w-full",children:[s.jsxs("div",{className:"flex justify-between items-center mb-8",children:[s.jsxs("div",{children:[s.jsx("h2",{className:"text-2xl font-bold text-white",children:"内容管理"}),s.jsxs("p",{className:"text-gray-400 mt-1",children:["共 ",Bn.length," 篇 · ",Ri," 节内容"]})]}),s.jsx("div",{className:"flex gap-2",children:s.jsxs(Y,{onClick:()=>Dt(!0),variant:"outline",className:"border-amber-500/50 text-amber-400 hover:bg-amber-500/10 bg-transparent",children:[s.jsx(gh,{className:"w-4 h-4 mr-2"}),"排名算法"]})})]}),s.jsx(Bt,{open:h,onOpenChange:f,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white inset-0 translate-x-0 translate-y-0 w-screen h-screen max-w-none max-h-none rounded-none flex flex-col p-0 gap-0",showCloseButton:!0,children:[s.jsx(Vt,{className:"shrink-0 px-6 pt-6 pb-2",children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(Dn,{className:"w-5 h-5 text-[#38bdac]"}),"新建章节"]})}),s.jsxs("div",{className:"flex-1 overflow-y-auto min-h-0 px-6 space-y-4 py-4",children:[s.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"章节ID *"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 9.15",value:O.id,onChange:T=>q({...O,id:T.target.value})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"价格 (元)"}),s.jsx(ce,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:O.isFree?0:O.price,onChange:T=>q({...O,price:Number(T.target.value),isFree:Number(T.target.value)===0}),disabled:O.isFree})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"免费"}),s.jsx("div",{className:"flex items-center h-10",children:s.jsxs("label",{className:"flex items-center cursor-pointer",children:[s.jsx("input",{type:"checkbox",checked:O.isFree,onChange:T=>q({...O,isFree:T.target.checked,price:T.target.checked?0:1}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),s.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"设为免费"})]})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"最新新增"}),s.jsx("div",{className:"flex items-center h-10",children:s.jsxs("label",{className:"flex items-center cursor-pointer",children:[s.jsx("input",{type:"checkbox",checked:O.isNew,onChange:T=>q({...O,isNew:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),s.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"标记 NEW"})]})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"小程序直推"}),s.jsx("div",{className:"flex items-center h-10",children:s.jsxs("label",{className:"flex items-center cursor-pointer",children:[s.jsx("input",{type:"checkbox",checked:O.isPinned,onChange:T=>q({...O,isPinned:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-amber-400 focus:ring-amber-400"}),s.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"强制置顶到小程序首页"})]})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"文章类型"}),s.jsxs("div",{className:"flex items-center gap-4 h-10",children:[s.jsxs("label",{className:"flex items-center cursor-pointer",children:[s.jsx("input",{type:"radio",name:"new-edition-type",checked:O.editionPremium!==!0,onChange:()=>q({...O,editionStandard:!0,editionPremium:!1}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),s.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"普通版"})]}),s.jsxs("label",{className:"flex items-center cursor-pointer",children:[s.jsx("input",{type:"radio",name:"new-edition-type",checked:O.editionPremium===!0,onChange:()=>q({...O,editionStandard:!1,editionPremium:!0}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),s.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"增值版"})]})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"热度分"}),s.jsx(ce,{type:"number",step:"0.1",min:"0",className:"bg-[#0a1628] border-gray-700 text-white",value:O.hotScore??0,onChange:T=>q({...O,hotScore:Math.max(0,parseFloat(T.target.value)||0)})})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"章节标题 *"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"输入章节标题",value:O.title,onChange:T=>q({...O,title:T.target.value})})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"所属篇"}),s.jsxs(xc,{value:O.partId,onValueChange:T=>{var ue;const z=Bn.find(we=>we.id===T);q({...O,partId:T,chapterId:((ue=z==null?void 0:z.chapters[0])==null?void 0:ue.id)??"chapter-1"})},children:[s.jsx(al,{className:"bg-[#0a1628] border-gray-700 text-white",children:s.jsx(gc,{})}),s.jsxs(il,{className:"bg-[#0f2137] border-gray-700",children:[Bn.map(T=>s.jsx(tr,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id)),Bn.length===0&&s.jsx(tr,{value:"part-1",className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:"默认篇"})]})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"所属章"}),s.jsxs(xc,{value:O.chapterId,onValueChange:T=>q({...O,chapterId:T}),children:[s.jsx(al,{className:"bg-[#0a1628] border-gray-700 text-white",children:s.jsx(gc,{})}),s.jsxs(il,{className:"bg-[#0f2137] border-gray-700",children:[et.map(T=>s.jsx(tr,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id)),et.length===0&&s.jsx(tr,{value:"chapter-1",className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:"默认章"})]})]})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"内容(富文本编辑器,支持 @链接AI人物 和 #链接标签)"}),s.jsx(l0,{content:O.content||"",onChange:T=>q({...O,content:T}),onImageUpload:Tt,onMediaUpload:ha,persons:Fr,linkTags:$a,placeholder:"开始编辑内容... 输入 @ 可链接AI人物,工具栏可插入 #链接标签"})]})]}),s.jsxs(xn,{className:"shrink-0 px-6 py-4 border-t border-gray-700/50",children:[s.jsx(Y,{variant:"outline",onClick:()=>f(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),s.jsx(Y,{onClick:Ho,disabled:y||!O.id||!O.title,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:y?s.jsxs(s.Fragment,{children:[s.jsx(Ve,{className:"w-4 h-4 mr-2 animate-spin"}),"创建中..."]}):s.jsxs(s.Fragment,{children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"}),"创建章节"]})})]})]})}),s.jsx(Bt,{open:!!$,onOpenChange:T=>!T&&V(null),children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(tn,{className:"w-5 h-5 text-[#38bdac]"}),"编辑篇名"]})}),$&&s.jsx("div",{className:"space-y-4 py-4",children:s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"篇名"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:$.title,onChange:T=>V({...$,title:T.target.value}),placeholder:"输入篇名"})]})}),s.jsxs(xn,{children:[s.jsx(Y,{variant:"outline",onClick:()=>V(null),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),s.jsx(Y,{onClick:$i,disabled:I||!((gt=$==null?void 0:$.title)!=null&>.trim()),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:I?s.jsxs(s.Fragment,{children:[s.jsx(Ve,{className:"w-4 h-4 mr-2 animate-spin"}),"保存中..."]}):s.jsxs(s.Fragment,{children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),"保存"]})})]})]})}),s.jsx(Bt,{open:!!re,onOpenChange:T=>!T&&ae(null),children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[s.jsxs(Vt,{children:[s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(tn,{className:"w-5 h-5 text-[#38bdac]"}),"章节设置"]}),s.jsx("p",{className:"text-gray-400 text-sm font-normal pt-1",children:"修改本章显示名称,或为本章下全部节设置统一金额(仍可在单节编辑里单独改某一节)。"})]}),re&&s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"章节名称(如:第8章|底层结构)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:re.title,onChange:T=>ae({...re,title:T.target.value}),placeholder:"输入章节名称"})]}),s.jsxs("div",{className:"space-y-2 border-t border-gray-700/60 pt-4",children:[s.jsxs(ee,{className:"text-gray-300",children:["本章统一定价(应用于本章全部 ",re.chapter.sections.length," 节)"]}),re.priceMixed&&s.jsx("p",{className:"text-amber-400/90 text-xs",children:"当前各节定价不一致,保存后将按下方设置全部统一。"}),s.jsxs("div",{className:"flex flex-wrap items-end gap-4",children:[s.jsxs("div",{className:"space-y-1 flex-1 min-w-[120px]",children:[s.jsx("span",{className:"text-gray-500 text-xs",children:"价格 (元)"}),s.jsx(ce,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:re.isFree?0:re.price,onChange:T=>ae({...re,price:Number(T.target.value),isFree:Number(T.target.value)===0}),disabled:re.isFree,min:0,step:.01})]}),s.jsxs("label",{className:"flex items-center gap-2 cursor-pointer pb-2",children:[s.jsx("input",{type:"checkbox",checked:re.isFree||re.price===0,onChange:T=>ae({...re,isFree:T.target.checked,price:T.target.checked?0:re.initialPrice>0?re.initialPrice:1}),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac]"}),s.jsx("span",{className:"text-gray-400 text-sm",children:"本章全部免费"})]})]})]})]}),s.jsxs(xn,{children:[s.jsx(Y,{variant:"outline",onClick:()=>ae(null),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),s.jsx(Y,{onClick:Fi,disabled:J||!((Nn=re==null?void 0:re.title)!=null&&Nn.trim()),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:J?s.jsxs(s.Fragment,{children:[s.jsx(Ve,{className:"w-4 h-4 mr-2 animate-spin"}),"保存中..."]}):s.jsxs(s.Fragment,{children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),"保存"]})})]})]})}),s.jsx(Bt,{open:oe,onOpenChange:T=>{var z;if(G(T),T&&Bn.length>0){const ue=Bn[0];U(ue.id),K(((z=ue.chapters[0])==null?void 0:z.id)??"")}},children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[s.jsx(Vt,{children:s.jsx(Ht,{className:"text-white",children:"批量移动至指定目录"})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsxs("p",{className:"text-gray-400 text-sm",children:["已选 ",s.jsx("span",{className:"text-[#38bdac] font-medium",children:D.length})," 节,请选择目标篇与章。"]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"目标篇"}),s.jsxs(xc,{value:_,onValueChange:T=>{var ue;U(T);const z=Bn.find(we=>we.id===T);K(((ue=z==null?void 0:z.chapters[0])==null?void 0:ue.id)??"")},children:[s.jsx(al,{className:"bg-[#0a1628] border-gray-700 text-white",children:s.jsx(gc,{placeholder:"选择篇"})}),s.jsx(il,{className:"bg-[#0f2137] border-gray-700",children:Bn.map(T=>s.jsx(tr,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id))})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"目标章"}),s.jsxs(xc,{value:H,onValueChange:K,children:[s.jsx(al,{className:"bg-[#0a1628] border-gray-700 text-white",children:s.jsx(gc,{placeholder:"选择章"})}),s.jsx(il,{className:"bg-[#0f2137] border-gray-700",children:(((ct=Bn.find(T=>T.id===_))==null?void 0:ct.chapters)??[]).map(T=>s.jsx(tr,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id))})]})]})]}),s.jsxs(xn,{children:[s.jsx(Y,{variant:"outline",onClick:()=>G(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),s.jsx(Y,{onClick:Xa,disabled:me||D.length===0,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:me?s.jsxs(s.Fragment,{children:[s.jsx(Ve,{className:"w-4 h-4 mr-2 animate-spin"}),"移动中..."]}):"确认移动"})]})]})}),s.jsx(Bt,{open:!!Se,onOpenChange:T=>!T&&Fe(null),children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-3xl max-h-[85vh] overflow-hidden flex flex-col",showCloseButton:!0,children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white",children:["付款记录 — ",(Se==null?void 0:Se.section.title)??""]})}),s.jsx("div",{className:"flex-1 overflow-y-auto py-2",children:mt?s.jsxs("div",{className:"flex items-center justify-center py-8",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):Se&&Se.orders.length===0?s.jsx("p",{className:"text-gray-500 text-center py-6",children:"暂无付款记录"}):Se?s.jsxs("table",{className:"w-full text-sm border-collapse",children:[s.jsx("thead",{children:s.jsxs("tr",{className:"border-b border-gray-700 text-left text-gray-400",children:[s.jsx("th",{className:"py-2 pr-2",children:"订单号"}),s.jsx("th",{className:"py-2 pr-2",children:"用户ID"}),s.jsx("th",{className:"py-2 pr-2",children:"金额"}),s.jsx("th",{className:"py-2 pr-2",children:"状态"}),s.jsx("th",{className:"py-2 pr-2",children:"支付时间"})]})}),s.jsx("tbody",{children:Se.orders.map(T=>s.jsxs("tr",{className:"border-b border-gray-700/50",children:[s.jsx("td",{className:"py-2 pr-2",children:s.jsx("button",{className:"text-blue-400 hover:text-blue-300 hover:underline text-left truncate max-w-[180px] block",title:`查看订单 ${T.orderSn}`,onClick:()=>window.open(`/orders?search=${T.orderSn??T.id??""}`,"_blank"),children:T.orderSn?T.orderSn.length>16?T.orderSn.slice(0,8)+"..."+T.orderSn.slice(-6):T.orderSn:"-"})}),s.jsx("td",{className:"py-2 pr-2",children:s.jsx("button",{className:"text-[#38bdac] hover:text-[#2da396] hover:underline text-left truncate max-w-[140px] block",title:`查看用户 ${T.userId??T.openId??""}`,onClick:()=>window.open(`/users?search=${T.userId??T.openId??""}`,"_blank"),children:(()=>{const z=T.userId??T.openId??"-";return z.length>12?z.slice(0,6)+"..."+z.slice(-4):z})()})}),s.jsxs("td",{className:"py-2 pr-2 text-gray-300",children:["¥",T.amount??0]}),s.jsx("td",{className:"py-2 pr-2 text-gray-300",children:T.status??"-"}),s.jsx("td",{className:"py-2 pr-2 text-gray-500",children:T.payTime??T.createdAt??"-"})]},T.id??T.orderSn??""))})]}):null})]})}),s.jsx(Bt,{open:ft,onOpenChange:Dt,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(gh,{className:"w-5 h-5 text-amber-400"}),"文章排名算法"]})}),s.jsxs("div",{className:"space-y-4 py-2",children:[s.jsx("p",{className:"text-sm text-gray-400",children:"热度积分 = 阅读权重×阅读排名分 + 新度权重×新度排名分 + 付款权重×付款排名分(三权重之和须为 1)"}),yn?s.jsx("p",{className:"text-gray-500",children:"加载中..."}):s.jsxs(s.Fragment,{children:[s.jsxs("div",{className:"grid grid-cols-3 gap-3",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"阅读权重"}),s.jsx(ce,{type:"number",step:"0.1",min:"0",max:"1",className:"bg-[#0a1628] border-gray-700 text-white",value:Pt.readWeight,onChange:T=>Rn(z=>({...z,readWeight:Math.max(0,Math.min(1,parseFloat(T.target.value)||0))}))})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"新度权重"}),s.jsx(ce,{type:"number",step:"0.1",min:"0",max:"1",className:"bg-[#0a1628] border-gray-700 text-white",value:Pt.recencyWeight,onChange:T=>Rn(z=>({...z,recencyWeight:Math.max(0,Math.min(1,parseFloat(T.target.value)||0))}))})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"付款权重"}),s.jsx(ce,{type:"number",step:"0.1",min:"0",max:"1",className:"bg-[#0a1628] border-gray-700 text-white",value:Pt.payWeight,onChange:T=>Rn(z=>({...z,payWeight:Math.max(0,Math.min(1,parseFloat(T.target.value)||0))}))})]})]}),s.jsxs("p",{className:"text-xs text-gray-500",children:["当前之和: ",(Pt.readWeight+Pt.recencyWeight+Pt.payWeight).toFixed(1)]}),s.jsxs("ul",{className:"list-disc list-inside space-y-1 text-xs text-gray-400",children:[s.jsx("li",{children:"阅读量前 20 名:第1名=20分、第2名=19分...第20名=1分"}),s.jsx("li",{children:"最近更新前 30 篇:第1名=30分、第2名=29分...第30名=1分"}),s.jsx("li",{children:"付款数前 20 名:第1名=20分、第2名=19分...第20名=1分"}),s.jsx("li",{children:"热度分可在编辑章节中手动覆盖"})]}),s.jsx(Y,{onClick:jr,disabled:Xt||Math.abs(Pt.readWeight+Pt.recencyWeight+Pt.payWeight-1)>.001,className:"w-full bg-amber-500 hover:bg-amber-600 text-white",children:Xt?"保存中...":"保存权重"})]})]})]})}),s.jsx(Bt,{open:Q,onOpenChange:B,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(Dn,{className:"w-5 h-5 text-amber-400"}),"新建篇"]})}),s.jsx("div",{className:"space-y-4 py-4",children:s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"篇名(如:第六篇|真实的社会)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:le,onChange:T=>de(T.target.value),placeholder:"输入篇名"})]})}),s.jsxs(xn,{children:[s.jsx(Y,{variant:"outline",onClick:()=>{B(!1),de("")},className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),s.jsx(Y,{onClick:ba,disabled:ve||!le.trim(),className:"bg-amber-500 hover:bg-amber-600 text-white",children:ve?s.jsxs(s.Fragment,{children:[s.jsx(Ve,{className:"w-4 h-4 mr-2 animate-spin"}),"创建中..."]}):s.jsxs(s.Fragment,{children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"}),"创建篇"]})})]})]})}),s.jsx(Bt,{open:!!c,onOpenChange:()=>u(null),children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white inset-0 translate-x-0 translate-y-0 w-screen h-screen max-w-none max-h-none rounded-none flex flex-col p-0 gap-0",showCloseButton:!0,children:[s.jsx(Vt,{className:"shrink-0 px-6 pt-6 pb-2",children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(tn,{className:"w-5 h-5 text-[#38bdac]"}),"编辑章节"]})}),c&&s.jsxs("div",{className:"flex-1 overflow-y-auto min-h-0 px-6 space-y-4 py-4",children:[s.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"章节ID"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:c.id,onChange:T=>u({...c,id:T.target.value}),placeholder:"如: 9.15"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"价格 (元)"}),s.jsx(ce,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:c.isFree?0:c.price,onChange:T=>u({...c,price:Number(T.target.value),isFree:Number(T.target.value)===0}),disabled:c.isFree})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"免费"}),s.jsx("div",{className:"flex items-center h-10",children:s.jsxs("label",{className:"flex items-center cursor-pointer",children:[s.jsx("input",{type:"checkbox",checked:c.isFree||c.price===0,onChange:T=>u({...c,isFree:T.target.checked,price:T.target.checked?0:1}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),s.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"设为免费"})]})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"预览%"}),s.jsx(ce,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",placeholder:`全局 ${vt}%`,value:c.previewPercent??"",onChange:T=>{const z=T.target.value===""?void 0:Math.min(100,Math.max(0,Number(T.target.value)));u({...c,previewPercent:z})}})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"最新新增"}),s.jsx("div",{className:"flex items-center h-10",children:s.jsxs("label",{className:"flex items-center cursor-pointer",children:[s.jsx("input",{type:"checkbox",checked:c.isNew??!1,onChange:T=>u({...c,isNew:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),s.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"标记 NEW"})]})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"小程序直推"}),s.jsx("div",{className:"flex items-center h-10",children:s.jsxs("label",{className:"flex items-center cursor-pointer",children:[s.jsx("input",{type:"checkbox",checked:c.isPinned??!1,onChange:T=>u({...c,isPinned:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-amber-400 focus:ring-amber-400"}),s.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"强制置顶到小程序首页"})]})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"文章类型"}),s.jsxs("div",{className:"flex items-center gap-4 h-10",children:[s.jsxs("label",{className:"flex items-center cursor-pointer",children:[s.jsx("input",{type:"radio",name:"edition-type",checked:c.editionPremium!==!0,onChange:()=>u({...c,editionStandard:!0,editionPremium:!1}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),s.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"普通版"})]}),s.jsxs("label",{className:"flex items-center cursor-pointer",children:[s.jsx("input",{type:"radio",name:"edition-type",checked:c.editionPremium===!0,onChange:()=>u({...c,editionStandard:!1,editionPremium:!0}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),s.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"增值版"})]})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"热度分"}),s.jsx(ce,{type:"number",step:"0.1",min:"0",className:"bg-[#0a1628] border-gray-700 text-white",value:c.hotScore??0,onChange:T=>u({...c,hotScore:Math.max(0,parseFloat(T.target.value)||0)})})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"章节标题"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:c.title,onChange:T=>u({...c,title:T.target.value})})]}),c.filePath&&s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"文件路径"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-gray-400 text-sm",value:c.filePath,disabled:!0})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"内容(富文本编辑器,支持 @链接AI人物 和 #链接标签)"}),m?s.jsxs("div",{className:"bg-[#0a1628] border border-gray-700 rounded-md min-h-[400px] flex items-center justify-center",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):s.jsx(l0,{ref:Ii,content:c.content||"",onChange:T=>u({...c,content:T}),onImageUpload:Tt,onMediaUpload:ha,persons:Fr,linkTags:$a,placeholder:"开始编辑内容... 输入 @ 可链接AI人物,工具栏可插入 #链接标签"})]})]}),s.jsxs(xn,{className:"shrink-0 px-6 py-4 border-t border-gray-700/50",children:[c&&s.jsxs(Y,{variant:"outline",onClick:()=>_i({id:c.id,title:c.title,price:c.price}),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent mr-auto",children:[s.jsx(rr,{className:"w-4 h-4 mr-2"}),"付款记录"]}),s.jsxs(Y,{variant:"outline",onClick:()=>u(null),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(ss,{className:"w-4 h-4 mr-2"}),"取消"]}),s.jsx(Y,{onClick:zi,disabled:y,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:y?s.jsxs(s.Fragment,{children:[s.jsx(Ve,{className:"w-4 h-4 mr-2 animate-spin"}),"保存中..."]}):s.jsxs(s.Fragment,{children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),"保存修改"]})})]})]})}),s.jsxs(Ic,{defaultValue:"chapters",className:"space-y-6",children:[s.jsxs(vl,{className:"bg-[#0f2137] border border-gray-700/50 p-1",children:[s.jsxs(nn,{value:"chapters",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400",children:[s.jsx(rr,{className:"w-4 h-4 mr-2"}),"章节管理"]}),s.jsxs(nn,{value:"ranking",className:"data-[state=active]:bg-amber-500/20 data-[state=active]:text-amber-400 text-gray-400",children:[s.jsx(gg,{className:"w-4 h-4 mr-2"}),"内容排行榜"]}),s.jsxs(nn,{value:"search",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400",children:[s.jsx(Aa,{className:"w-4 h-4 mr-2"}),"内容搜索"]}),s.jsxs(nn,{value:"link-person",className:"data-[state=active]:bg-purple-500/20 data-[state=active]:text-purple-400 text-gray-400",children:[s.jsx(Ea,{className:"w-4 h-4 mr-2"}),"链接人与事"]}),s.jsxs(nn,{value:"link-tag",className:"data-[state=active]:bg-amber-500/20 data-[state=active]:text-amber-400 text-gray-400",children:[s.jsx(f1,{className:"w-4 h-4 mr-2"}),"链接标签"]})]}),s.jsxs(sn,{value:"chapters",className:"space-y-4",children:[s.jsxs("div",{className:"rounded-2xl border border-gray-700/50 bg-[#1C1C1E] p-4 flex items-center justify-between shadow-sm",children:[s.jsxs("div",{className:"flex items-center gap-4",children:[s.jsx("div",{className:"w-12 h-12 rounded-xl bg-[#38bdac] flex items-center justify-center text-white shadow-lg shadow-[#38bdac]/20 shrink-0",children:s.jsx(rr,{className:"w-6 h-6"})}),s.jsxs("div",{children:[s.jsx("h2",{className:"font-bold text-base text-white leading-tight mb-1",children:"一场SOUL的创业实验场"}),s.jsx("p",{className:"text-xs text-gray-500",children:"来自Soul派对房的真实商业故事"})]})]}),s.jsxs("div",{className:"text-center shrink-0",children:[s.jsx("span",{className:"block text-2xl font-bold text-[#38bdac]",children:Ri}),s.jsx("span",{className:"text-xs text-gray-500",children:"章节"})]})]}),s.jsxs("div",{className:"flex flex-wrap gap-2",children:[s.jsxs(Y,{onClick:()=>f(!0),className:"flex-1 min-w-[120px] bg-[#38bdac]/10 hover:bg-[#38bdac]/20 text-[#38bdac] border border-[#38bdac]/30",children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"}),"新建章节"]}),s.jsxs(Y,{onClick:()=>B(!0),className:"flex-1 min-w-[120px] bg-amber-500/10 hover:bg-amber-500/20 text-amber-400 border border-amber-500/30",children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"}),"新建篇"]}),s.jsxs(Y,{variant:"outline",onClick:()=>G(!0),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:["批量移动(已选 ",D.length," 节)"]})]}),r?s.jsxs("div",{className:"flex items-center justify-center py-12",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):s.jsx(K9,{parts:Bn,expandedParts:i,onTogglePart:lr,onReorder:cr,onReadSection:ga,onDeleteSection:fa,onAddSectionInPart:us,onAddChapterInPart:ya,onDeleteChapter:Bi,onEditPart:Kr,onDeletePart:je,onEditChapter:zl,selectedSectionIds:D,onToggleSectionSelect:A,onShowSectionOrders:_i,pinnedSectionIds:Ce})]}),s.jsx(sn,{value:"search",className:"space-y-4",children:s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsx(it,{children:s.jsx(ot,{className:"text-white",children:"内容搜索"})}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"flex gap-2",children:[s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500 flex-1",placeholder:"搜索标题或内容...",value:N,onChange:T=>w(T.target.value),onKeyDown:T=>T.key==="Enter"&&Ae()}),s.jsx(Y,{onClick:Ae,disabled:C||!N.trim(),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:C?s.jsx(Ve,{className:"w-4 h-4 animate-spin"}):s.jsx(Aa,{className:"w-4 h-4"})})]}),k.length>0&&s.jsxs("div",{className:"space-y-2 mt-4",children:[s.jsxs("p",{className:"text-gray-400 text-sm",children:["找到 ",k.length," 个结果"]}),k.map(T=>s.jsxs("div",{className:"p-3 rounded-lg bg-[#162840] hover:bg-[#1a3050] cursor-pointer transition-colors",onClick:()=>ga({id:T.id,mid:T.mid,title:T.title,price:T.price??1,filePath:""}),children:[s.jsxs("div",{className:"flex items-center justify-between",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("span",{className:"text-[#38bdac] font-mono text-xs",children:T.id}),s.jsx("span",{className:"text-white",children:T.title}),Ce.includes(T.id)&&s.jsx(bc,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})]}),s.jsx(Ue,{variant:"outline",className:"text-gray-400 border-gray-600 text-xs",children:T.matchType==="title"?"标题匹配":"内容匹配"})]}),T.snippet&&s.jsx("p",{className:"text-gray-500 text-xs mt-2 line-clamp-2",children:T.snippet}),(T.partTitle||T.chapterTitle)&&s.jsxs("p",{className:"text-gray-600 text-xs mt-1",children:[T.partTitle," · ",T.chapterTitle]})]},T.id))]})]})]})}),s.jsxs(sn,{value:"ranking",className:"space-y-4",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsx(it,{className:"pb-3",children:s.jsxs(ot,{className:"text-white text-base flex items-center gap-2",children:[s.jsx(gh,{className:"w-4 h-4 text-[#38bdac]"}),"内容显示规则"]})}),s.jsxs(_e,{children:[s.jsxs("div",{className:"flex items-center gap-4 flex-wrap",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(ee,{className:"text-gray-400 text-sm whitespace-nowrap",children:"未付费预览比例"}),s.jsx(ce,{type:"number",min:"1",max:"100",className:"bg-[#0a1628] border-gray-700 text-white w-20",value:vt,onChange:T=>L(Math.max(1,Math.min(100,Number(T.target.value)||20))),disabled:Ie}),s.jsx("span",{className:"text-gray-500 text-sm",children:"%"})]}),s.jsx(Y,{size:"sm",onClick:Cr,disabled:Rt,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:Rt?"保存中...":"保存"}),s.jsxs("span",{className:"text-xs text-gray-500",children:["小程序未付费用户默认显示文章前 ",vt,"% 内容;章节「预览%」可单独覆盖"]})]}),s.jsxs("div",{className:"mt-6 space-y-2",children:[s.jsx(ee,{className:"text-gray-400 text-sm",children:"阅读页 / 朋友圈文案(JSON)"}),s.jsxs("p",{className:"text-xs text-gray-500",children:["占位符:",s.jsx("code",{className:"text-gray-400",children:"{percent}"})," 为预览比例、",s.jsx("code",{className:"text-gray-400",children:"{price}"})," 为章节价;与小程序付费墙、复制发圈、单页模式弹窗一致。"]}),s.jsx(To,{className:"bg-[#0a1628] border-gray-700 text-gray-200 font-mono text-xs min-h-[280px]",value:at,onChange:T=>At(T.target.value),disabled:Kt,spellCheck:!1}),s.jsxs("div",{className:"flex items-center gap-2 flex-wrap",children:[s.jsx(Y,{type:"button",variant:"outline",size:"sm",className:"border-gray-600 text-gray-300",onClick:()=>Qa(),disabled:Kt,children:"重新加载"}),s.jsx(Y,{type:"button",size:"sm",onClick:Ya,disabled:ls||Kt,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:ls?"保存中...":"保存文案配置"})]})]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsx(it,{className:"pb-3",children:s.jsxs("div",{className:"flex items-center justify-between",children:[s.jsxs(ot,{className:"text-white text-base flex items-center gap-2",children:[s.jsx(gg,{className:"w-4 h-4 text-amber-400"}),"内容排行榜",s.jsxs("span",{className:"text-xs text-gray-500 font-normal ml-2",children:["按热度排行 · 共 ",Mt.length," 节"]})]}),s.jsxs("div",{className:"flex items-center gap-1 text-sm",children:[s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>ds(),disabled:bn,className:"text-gray-400 hover:text-white h-7 w-7 p-0",title:"刷新排行榜",children:s.jsx(Ve,{className:`w-4 h-4 ${bn?"animate-spin":""}`})}),s.jsx(Y,{variant:"ghost",size:"sm",disabled:Fn<=1||bn,onClick:()=>Wn(T=>Math.max(1,T-1)),className:"text-gray-400 hover:text-white h-7 w-7 p-0",children:s.jsx(u5,{className:"w-4 h-4"})}),s.jsxs("span",{className:"text-gray-400 min-w-[60px] text-center",children:[Fn," / ",Ur]}),s.jsx(Y,{variant:"ghost",size:"sm",disabled:Fn>=Ur||bn,onClick:()=>Wn(T=>Math.min(Ur,T+1)),className:"text-gray-400 hover:text-white h-7 w-7 p-0",children:s.jsx(ol,{className:"w-4 h-4"})})]})]})}),s.jsx(_e,{children:s.jsxs("div",{className:"space-y-0",children:[s.jsxs("div",{className:"grid grid-cols-[40px_40px_1fr_80px_80px_80px_60px] gap-2 px-3 py-2 text-xs text-gray-500 border-b border-gray-700/50",children:[s.jsx("span",{children:"排名"}),s.jsx("span",{children:"置顶"}),s.jsx("span",{children:"标题"}),s.jsx("span",{className:"text-right",children:"点击量"}),s.jsx("span",{className:"text-right",children:"付款数"}),s.jsx("span",{className:"text-right",children:"热度"}),s.jsx("span",{className:"text-right",children:"编辑"})]}),wr.map((T,z)=>{const ue=(Fn-1)*Ka+z+1,we=T.isPinned??Ce.includes(T.id);return s.jsxs("div",{className:`grid grid-cols-[40px_40px_1fr_80px_80px_80px_60px] gap-2 px-3 py-2.5 items-center border-b border-gray-700/30 hover:bg-[#162840] transition-colors ${we?"bg-amber-500/5":""}`,children:[s.jsx("span",{className:`text-sm font-bold ${ue<=3?"text-amber-400":"text-gray-500"}`,children:ue<=3?["🥇","🥈","🥉"][ue-1]:`#${ue}`}),s.jsx(Y,{variant:"ghost",size:"sm",className:`h-6 w-6 p-0 ${we?"text-amber-400":"text-gray-600 hover:text-amber-400"}`,onClick:()=>Li(T.id),disabled:Ze,title:we?"取消置顶":"强制置顶(精选推荐/首页最新更新)",children:we?s.jsx(bc,{className:"w-3.5 h-3.5 fill-current"}):s.jsx(_M,{className:"w-3.5 h-3.5"})}),s.jsxs("div",{className:"min-w-0",children:[s.jsx("span",{className:"text-white text-sm truncate block",children:T.title}),s.jsxs("span",{className:"text-gray-600 text-xs",children:[T.partTitle," · ",T.chapterTitle]})]}),s.jsx("span",{className:"text-right text-sm text-blue-400 font-mono",children:T.clickCount??0}),s.jsx("span",{className:"text-right text-sm text-green-400 font-mono",children:T.payCount??0}),s.jsx("span",{className:"text-right text-sm text-amber-400 font-mono",children:(T.hotScore??0).toFixed(1)}),s.jsx("div",{className:"text-right",children:s.jsx(Y,{variant:"ghost",size:"sm",className:"text-gray-500 hover:text-[#38bdac] h-6 px-1",onClick:()=>ga({id:T.id,mid:T.mid,title:T.title,price:T.price,filePath:""}),title:"编辑文章",children:s.jsx(tn,{className:"w-3 h-3"})})})]},T.id)}),wr.length===0&&s.jsx("div",{className:"py-8 text-center text-gray-500",children:"暂无数据"})]})})]})]}),s.jsxs(sn,{value:"link-person",className:"space-y-4",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"pb-3",children:[s.jsxs(ot,{className:"text-white text-base flex items-center gap-2",children:[s.jsx("span",{className:"text-[#38bdac] text-lg font-bold",children:"@"}),"AI列表 — 链接人与事(编辑器内输入 @ 可链接)"]}),s.jsxs("div",{className:"text-xs text-gray-500 mt-1 space-y-1",children:[s.jsxs("p",{children:["文章 @ 存 ",s.jsx("span",{className:"text-gray-400",children:"token"}),";小程序点 @ 用 token 换存客宝密钥后加好友/拉群。"]}),s.jsxs("p",{children:[s.jsx("span",{className:"text-purple-300",children:"超级个体"}),":开通且昵称合法会自动进本列表可 @;共用「超级个体拉群」统一获客计划(话术由技术侧在系统里配置,本页不填 plan/apiKey,避免误操作)。"]}),s.jsx("p",{children:"点「添加」新建的人物:每人单独一条存客宝计划(SOUL链接人与事-名称)。"})]})]}),s.jsxs(_e,{className:"space-y-3",children:[s.jsxs("div",{className:"flex justify-between items-center",children:[s.jsx("p",{className:"text-xs text-gray-500",children:"本页只管理可 @ 的人物列表"}),s.jsxs("div",{className:"flex gap-2",children:[s.jsx(Y,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 hover:bg-gray-700/50",onClick:()=>{kr()},title:"刷新",children:s.jsx(Ve,{className:"w-4 h-4"})}),s.jsxs(Y,{size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",onClick:()=>{ca(null),Fo(!0)},children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"}),"添加"]})]})]}),s.jsx("div",{className:"max-h-[400px] overflow-y-auto",children:Fr.length>0?s.jsxs("table",{className:"w-full text-sm border-collapse",children:[s.jsx("thead",{children:s.jsxs("tr",{className:"text-xs text-gray-500 border-b border-gray-700/50",children:[s.jsx("th",{className:"text-left py-1.5 px-3 w-[280px] font-normal",children:"token"}),s.jsx("th",{className:"text-left py-1.5 px-3 w-24 font-normal",children:"@的人"}),s.jsx("th",{className:"text-left py-1.5 px-3 w-[72px] font-normal text-xs",children:"来源"}),s.jsx("th",{className:"text-left py-1.5 px-3 w-[100px] font-normal text-xs",children:"会员"}),s.jsx("th",{className:"py-1.5 px-3 w-16 font-normal text-center",children:"获客数"}),s.jsx("th",{className:"text-left py-1.5 px-3 font-normal",children:"获客计划"}),s.jsx("th",{className:"text-left py-1.5 px-3 w-16 font-normal",children:"状态"}),s.jsx("th",{className:"text-left py-1.5 px-2 w-24 font-normal",children:"操作"})]})}),s.jsx("tbody",{children:Fr.map(T=>s.jsxs("tr",{className:"border-b border-gray-700/30 hover:bg-[#0a1628]/80",children:[s.jsx("td",{className:"py-2 px-3 text-gray-400 text-xs font-mono",title:"32位token",children:T.id}),s.jsx("td",{className:"py-2 px-3 truncate max-w-[96px]",children:s.jsx("button",{type:"button",className:"text-amber-400 hover:text-amber-300 hover:underline text-left",onClick:()=>{Ha[T.id]&&js(T.id,T.name)},title:Ha[T.id]?"点击查看获客详情":T.name,children:T.name})}),s.jsx("td",{className:"py-2 px-3",children:T.personSource==="vip_sync"?s.jsx("span",{className:"text-[10px] text-purple-300 bg-purple-500/15 px-1.5 py-0.5 rounded whitespace-nowrap",children:"超级个体"}):s.jsx("span",{className:"text-[10px] text-gray-500 bg-gray-500/10 px-1.5 py-0.5 rounded whitespace-nowrap",children:"手工"})}),s.jsx("td",{className:"py-2 px-3 text-xs",children:T.userId?s.jsxs("div",{className:"flex flex-col gap-0.5 items-start max-w-[100px]",children:[T.personSource==="vip_sync"&&s.jsx("span",{className:"text-[10px] text-purple-300/90 leading-tight",children:"已绑定超级个体"}),s.jsx("button",{type:"button",className:"text-[#38bdac] hover:underline truncate max-w-[96px] block text-left",title:`用户ID: ${T.userId}`,onClick:()=>t(`/users?search=${encodeURIComponent(T.userId||"")}`),children:T.name})]}):s.jsx("span",{className:"text-gray-600",children:"—"})}),(()=>{const z=Ha[T.id]||0;return s.jsx("td",{className:`py-2 px-3 shrink-0 w-16 text-center text-xs font-bold cursor-pointer ${z>0?"text-green-400 hover:text-green-300 hover:underline":"text-gray-600"}`,title:z>0?"点击查看获客详情":"暂无获客",onClick:()=>{z>0&&js(T.id,T.name)},children:z})})(),s.jsx("td",{className:"py-2 px-3 text-white truncate max-w-[220px]",title:`planId: ${T.ckbPlanId??"-"}`,children:s.jsx("div",{className:"flex items-center gap-1.5",children:s.jsx("span",{className:"truncate",children:T.ckbPlanId?T.personSource==="vip_sync"?"超级个体拉群(统一计划)":`SOUL链接人与事-${T.name}`:"—"})})}),s.jsx("td",{className:"py-2 px-3 text-center",children:T.ckbPlanId?s.jsx("span",{className:"text-[10px] text-green-400 bg-green-400/10 px-1.5 py-0.5 rounded",children:"启用"}):s.jsx("span",{className:"text-[10px] text-gray-500 bg-gray-500/10 px-1.5 py-0.5 rounded",children:"未配置"})}),s.jsx("td",{className:"py-2 px-2",children:s.jsxs("div",{className:"flex items-center gap-0",children:[s.jsx(Y,{variant:"ghost",size:"sm",className:"text-gray-400 hover:text-[#38bdac] h-6 px-2",title:"编辑",onClick:async()=>{try{const z=await G9(T.personId||"");if(z!=null&&z.success&&z.person){const ue=z.person;ca({id:ue.token??ue.personId,personId:ue.personId,name:ue.name,personSource:ue.personSource??"",userId:ue.userId??"",label:ue.label??"",ckbApiKey:ue.ckbApiKey??"",remarkType:ue.remarkType,remarkFormat:ue.remarkFormat,addFriendInterval:ue.addFriendInterval,startTime:ue.startTime,endTime:ue.endTime,deviceGroups:ue.deviceGroups})}else ca(T),z!=null&&z.error&&ne.error(z.error)}catch(z){console.error(z),ca(T),ne.error(z instanceof Error?z.message:"加载人物详情失败")}Fo(!0)},children:s.jsx(p1,{className:"w-3 h-3"})}),s.jsx(Y,{variant:"ghost",size:"sm",className:"text-gray-400 hover:text-green-400 h-6 px-2",title:"查看新客户",onClick:()=>js(T.id,T.name),children:s.jsx(_n,{className:"w-3 h-3"})}),s.jsx(Y,{variant:"ghost",size:"sm",className:"text-red-400 hover:text-red-300 h-6 px-2",title:T.personSource==="vip_sync"?"删除本地 @人物(不删统一获客计划)":"删除(同时删除存客宝对应获客计划)",onClick:()=>Ei(T),children:s.jsx(ss,{className:"w-3 h-3"})})]})})]},T.id))})]}):s.jsx("div",{className:"text-gray-500 text-sm py-4 text-center",children:"暂无AI人物,添加后可在编辑器中 @链接"})})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"pb-3",children:[s.jsxs(ot,{className:"text-white text-base flex items-center gap-2",children:[s.jsx(XM,{className:"w-4 h-4 text-[#38bdac]"}),"存客宝绑定"]}),s.jsx("p",{className:"text-xs text-gray-500 mt-1",children:"配置存客宝 API 后,文章中 @人物 或 #标签 点击可自动进入存客宝流量池"})]}),s.jsxs(_e,{className:"space-y-3",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"存客宝 API 地址"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8",placeholder:"https://ckbapi.quwanzhi.com",defaultValue:"https://ckbapi.quwanzhi.com",readOnly:!0})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"绑定计划"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8",placeholder:"创业实验-内容引流",defaultValue:"创业实验-内容引流",readOnly:!0})]})]}),s.jsxs("p",{className:"text-xs text-gray-500",children:["具体存客宝场景配置与接口测试请前往"," ",s.jsx("button",{className:"text-[#38bdac] hover:underline",onClick:()=>window.open("/match","_blank"),children:"找伙伴 → 存客宝工作台"})]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"pb-3",children:[s.jsxs(ot,{className:"text-white text-base flex items-center gap-2",children:[s.jsx(gh,{className:"w-4 h-4 text-blue-400"}),"获客 Webhook 通知"]}),s.jsx("p",{className:"text-xs text-gray-500 mt-1",children:"配置后新获客线索将自动推送到群聊(支持企业微信/飞书 Webhook)"})]}),s.jsxs(_e,{className:"space-y-3",children:[s.jsxs("div",{className:"flex gap-3 items-end",children:[s.jsxs("div",{className:"flex-1 space-y-1",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"Webhook URL"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm font-mono",placeholder:"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=...",value:zs,onChange:T=>ua(T.target.value)})]}),s.jsxs(Y,{size:"sm",className:"bg-blue-500 hover:bg-blue-600 text-white h-8",onClick:async()=>{const T=zs.trim();try{const z=await Et("/api/db/config",{key:"ckb_lead_webhook_url",value:T,description:"获客线索 Webhook 通知 URL(企微/飞书)"});z!=null&&z.success?ne.success(T?"Webhook 已保存":"Webhook 已清除"):ne.error((z==null?void 0:z.error)??"保存失败")}catch{ne.error("保存失败")}},children:[s.jsx(kn,{className:"w-3.5 h-3.5 mr-1"}),"保存"]})]}),s.jsx("p",{className:"text-xs text-gray-500",children:"配置企业微信或飞书群机器人 Webhook URL,获客成功后自动推送通知"})]})]})]}),s.jsxs(sn,{value:"link-tag",className:"space-y-4",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"pb-3",children:[s.jsxs(ot,{className:"text-white text-base flex items-center gap-2",children:[s.jsx(f1,{className:"w-4 h-4 text-amber-400"}),"链接标签 — 链接事与物(编辑器内 #标签 可跳转链接/小程序/存客宝)"]}),s.jsx("p",{className:"text-xs text-gray-500 mt-1",children:"小程序端点击 #标签 可直接跳转对应链接,进入流量池"})]}),s.jsxs(_e,{className:"space-y-3",children:[s.jsxs("div",{className:"flex items-end justify-between gap-3 flex-wrap",children:[s.jsxs("div",{className:"flex items-end gap-2 flex-wrap",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-400 text-xs",children:"搜索"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 w-48",placeholder:"按标签ID/显示文字搜索",value:It,onChange:T=>{$t(T.target.value),Ls(1)}})]}),s.jsx(Y,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 hover:bg-gray-700/50 h-8",onClick:()=>{$s(),Sr()},title:"刷新",children:s.jsx(Ve,{className:"w-4 h-4"})})]}),s.jsxs(Y,{size:"sm",className:"bg-amber-500 hover:bg-amber-600 text-white h-8",onClick:()=>{Ba(null),vn({tagId:"",label:"",aliases:"",url:"",type:"url",appId:"",appSecret:"",pagePath:""}),ks(""),Wr(!1),Xn(!0)},children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"}),"添加标签"]})]}),s.jsxs("div",{className:"rounded-md border border-gray-700/50 overflow-hidden",children:[s.jsx("div",{className:"max-h-[420px] overflow-y-auto",children:s.jsxs("table",{className:"w-full text-sm",children:[s.jsx("thead",{className:"bg-[#0a1628] border-b border-gray-700/50",children:s.jsxs("tr",{children:[s.jsx("th",{className:"text-left px-3 py-2 text-gray-400 w-32",children:"标签"}),s.jsx("th",{className:"text-left px-3 py-2 text-gray-400 w-28",children:"别名"}),s.jsx("th",{className:"text-left px-3 py-2 text-gray-400 w-20",children:"类型"}),s.jsx("th",{className:"text-left px-3 py-2 text-gray-400",children:"目标 / AppID"}),s.jsx("th",{className:"text-right px-3 py-2 text-gray-400 w-28",children:"操作"})]})}),s.jsx("tbody",{children:yr?s.jsx("tr",{children:s.jsx("td",{colSpan:5,className:"text-center py-10 text-gray-500",children:"加载中..."})}):oa.length===0?s.jsx("tr",{children:s.jsx("td",{colSpan:5,className:"text-center py-10 text-gray-500",children:"暂无链接标签,添加后可在编辑器中使用 #标签 跳转"})}):oa.map(T=>s.jsxs("tr",{className:"border-b border-gray-700/30 hover:bg-white/5",children:[s.jsx("td",{className:"px-3 py-2",children:s.jsxs("button",{type:"button",className:"text-amber-400 font-semibold hover:text-amber-300 hover:underline text-left",onClick:()=>{Ba(T),vn({tagId:T.id,label:T.label,aliases:T.aliases??"",url:T.url,type:T.type,appId:T.appId??"",appSecret:"",pagePath:T.pagePath??""}),ks(T.appId??""),Wr(!1),Xn(!0)},title:"点击编辑标签",children:["#",T.label]})}),s.jsx("td",{className:"px-3 py-2 text-gray-500 text-xs truncate max-w-[120px]",title:T.aliases||"",children:T.aliases||"—"}),s.jsx("td",{className:"px-3 py-2",children:s.jsx(Ue,{variant:"secondary",className:`text-[10px] ${T.type==="ckb"?"bg-green-500/20 text-green-300 border-green-500/30":T.type==="miniprogram"||T.type==="wxlink"?"bg-[#38bdac]/20 text-[#38bdac] border-[#38bdac]/30":"bg-gray-700 text-gray-300"}`,children:T.type==="url"?"网页":T.type==="ckb"?"存客宝":T.type==="wxlink"?"小程序链接":"小程序"})}),s.jsx("td",{className:"px-3 py-2 text-gray-300",children:T.type==="miniprogram"?s.jsxs("div",{className:"space-y-0.5",children:[(()=>{const z=qa.find(ue=>ue.key===T.appId);return s.jsxs(s.Fragment,{children:[z&&s.jsx("div",{className:"text-xs text-white",children:z.name}),s.jsxs("div",{className:"text-xs font-mono text-[#38bdac]",children:["AppID: ",(z==null?void 0:z.appId)||T.appId||"—"]})]})})(),T.pagePath&&s.jsx("div",{className:"text-xs text-gray-500 font-mono",children:T.pagePath}),s.jsxs("div",{className:`text-xs ${T.hasAppSecret?"text-emerald-400/90":"text-amber-500/80"}`,children:["AppSecret:",T.hasAppSecret?"已保存(仅服务端)":"未配置"]})]}):T.type==="wxlink"?s.jsxs("div",{className:"space-y-0.5",children:[s.jsx("div",{className:"text-xs text-[#38bdac] truncate max-w-[420px] font-mono",title:T.url,children:T.url||"—"}),s.jsx("div",{className:"text-[11px] text-gray-500",children:"小程序内点击 → web-view 打开 → 自动唤起目标小程序"})]}):T.url?s.jsxs("a",{href:T.url,target:"_blank",rel:"noreferrer",className:"text-blue-400 text-xs truncate max-w-[420px] hover:underline inline-flex items-center gap-1",children:[T.url," ",s.jsx(wi,{className:"w-3 h-3 shrink-0"})]}):s.jsx("span",{className:"text-gray-500 text-xs",children:"—"})}),s.jsx("td",{className:"px-3 py-2",children:s.jsxs("div",{className:"flex items-center justify-end gap-1",children:[s.jsx(Y,{variant:"ghost",size:"sm",className:"text-gray-300 hover:text-white h-7 px-2",onClick:()=>{Ba(T),vn({tagId:T.id,label:T.label,aliases:T.aliases??"",url:T.url,type:T.type,appId:T.appId??"",appSecret:"",pagePath:T.pagePath??""}),ks(T.appId??""),Wr(!1),Xn(!0)},title:"编辑",children:s.jsx(p1,{className:"w-3 h-3"})}),s.jsx(Y,{variant:"ghost",size:"sm",className:"text-red-400 hover:text-red-300 h-7 px-2",onClick:async()=>{if(confirm(`确定要删除「#${T.label}」吗?`))try{const z=await gi(`/api/db/link-tags?tagId=${encodeURIComponent(T.id)}`);z!=null&&z.success?(ne.success("已删除"),$s(),Sr()):ne.error((z==null?void 0:z.error)??"删除失败")}catch(z){console.error(z),ne.error("删除失败")}},title:"删除",children:s.jsx(ss,{className:"w-3 h-3"})})]})})]},T.id))})]})}),s.jsx(sr,{page:Vr,pageSize:Ds,total:br,totalPages:ie,onPageChange:T=>Ls(T),onPageSizeChange:T=>{or(T),Ls(1)}})]})]})]}),s.jsx(Bt,{open:Yn,onOpenChange:Xn,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg p-4 gap-3",children:[s.jsxs(Vt,{className:"gap-1",children:[s.jsx(Ht,{className:"text-base",children:Ks?"编辑链接标签":"添加链接标签"}),s.jsx(of,{className:"text-gray-400 text-xs",children:"配置后可在富文本编辑器中通过 #标签 插入,并在小程序端点击跳转。小程序类型需填 mpKey 或微信 AppID;AppSecret 仅存服务端(不下发小程序),供后续开放接口与台账使用。"})]}),s.jsxs("div",{className:"space-y-3 py-2",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"标签ID"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm font-mono",placeholder:"留空自动生成;或自定义短 ID(如 kr),最长 50 字符",value:Ct.tagId,disabled:!!Ks,onChange:T=>vn(z=>({...z,tagId:T.target.value}))})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"显示文字"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"如 神仙团队",value:Ct.label,onChange:T=>vn(z=>({...z,label:T.target.value}))})]})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"别名(多个用逗号分隔,同指向一个目标)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"如 团队招募, 团队合伙人",value:Ct.aliases,onChange:T=>vn(z=>({...z,aliases:T.target.value}))})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-3 items-end",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"类型"}),s.jsxs(xc,{value:Ct.type,onValueChange:T=>vn(z=>({...z,type:T})),children:[s.jsx(al,{className:"bg-[#0a1628] border-gray-700 text-white h-8",children:s.jsx(gc,{})}),s.jsxs(il,{className:"bg-[#0f2137] border-gray-700 text-white",children:[s.jsx(tr,{value:"url",children:"网页链接"}),s.jsx(tr,{value:"miniprogram",children:"小程序(API跳转)"}),s.jsx(tr,{value:"wxlink",children:"小程序链接(右上角复制)"}),s.jsx(tr,{value:"ckb",children:"存客宝"})]})]})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:Ct.type==="url"?"URL地址":Ct.type==="ckb"?"存客宝计划URL":Ct.type==="wxlink"?"小程序链接":"小程序 mpKey / 微信 AppID"}),Ct.type==="wxlink"?s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"粘贴小程序右上角 ... → 复制链接 得到的 URL",value:Ct.url,onChange:T=>vn(z=>({...z,url:T.target.value}))}):Ct.type==="miniprogram"&&qa.length>0?s.jsxs("div",{ref:Yc,className:"relative",children:[s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"搜索名称或密钥",value:Ga?Gs:Ct.appId,onChange:T=>{const z=T.target.value;ks(z),Wr(!0),qa.some(ue=>ue.key===z)||vn(ue=>({...ue,appId:z}))},onFocus:()=>{ks(Ct.appId),Wr(!0)},onBlur:()=>setTimeout(()=>Wr(!1),150)}),Ga&&s.jsx("div",{className:"absolute top-full left-0 right-0 mt-1 max-h-48 overflow-y-auto rounded-md border border-gray-700 bg-[#0a1628] shadow-lg z-50",children:Ja.length===0?s.jsx("div",{className:"px-3 py-2 text-gray-500 text-xs",children:"无匹配,可手动输入密钥"}):Ja.map(T=>s.jsxs("button",{type:"button",className:"w-full px-3 py-2 text-left text-sm text-white hover:bg-[#38bdac]/20 flex flex-col gap-0.5",onMouseDown:z=>{z.preventDefault(),vn(ue=>({...ue,appId:T.key,pagePath:T.path||""})),ks(""),Wr(!1)},children:[s.jsx("span",{children:T.name}),s.jsx("span",{className:"text-xs text-gray-400 font-mono",children:T.key})]},T.key))})]}):s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:Ct.type==="url"?"https://...":Ct.type==="ckb"?"https://ckbapi.quwanzhi.com/...":"关联配置的 key,或直接填 wx 开头的 AppID",value:Ct.type==="url"||Ct.type==="ckb"?Ct.url:Ct.appId,onChange:T=>{Ct.type==="url"||Ct.type==="ckb"?vn(z=>({...z,url:T.target.value})):vn(z=>({...z,appId:T.target.value}))}})]})]}),Ct.type==="wxlink"&&s.jsx("p",{className:"text-[11px] text-amber-400/80 leading-snug px-0.5",children:"操作:打开目标小程序 → 右上角「...」→「复制链接」→ 粘贴到上面。小程序内点击此标签会在 web-view 中打开,微信自动唤起目标小程序,无需修改小程序版本。"}),Ct.type==="miniprogram"&&s.jsxs(s.Fragment,{children:[s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"页面路径(可选)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm font-mono",placeholder:"pages/index/index",value:Ct.pagePath,onChange:T=>vn(z=>({...z,pagePath:T.target.value}))})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-300 text-sm",children:"AppSecret(微信公众平台 · 仅服务端存储)"}),s.jsx(ce,{type:"password",autoComplete:"new-password",className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm font-mono",placeholder:Ks!=null&&Ks.hasAppSecret?"已保存密钥,留空不改;填写则覆盖":"粘贴目标小程序 AppSecret",value:Ct.appSecret,onChange:T=>vn(z=>({...z,appSecret:T.target.value}))}),s.jsx("p",{className:"text-[11px] text-gray-500 leading-snug",children:"与 AppID 成对落库;接口响应与小程序配置中均不会返回此字段。"})]})]})]}),s.jsxs(xn,{className:"gap-2 pt-1",children:[s.jsx(Y,{variant:"outline",onClick:()=>Xn(!1),className:"border-gray-600",children:"取消"}),s.jsx(Y,{onClick:async()=>{const T={tagId:Ct.tagId.trim(),label:Ct.label.trim(),aliases:Ct.aliases.trim(),url:Ct.url.trim(),type:Ct.type,appId:Ct.appId.trim(),appSecret:Ct.appSecret.trim(),pagePath:Ct.pagePath.trim()};if(T.tagId){const z=T.tagId;if([...z].length>50){ne.error("标签ID 最长 50 个字符");return}if(/[#,\n\r\t]/.test(z)){ne.error("标签ID 不能含 #、逗号或换行");return}}if(!T.label){ne.error("显示文字必填");return}T.type==="miniprogram"&&(T.url=""),T.type==="wxlink"&&(T.appId="",T.pagePath=""),Ol(!0);try{const z=await Et("/api/db/link-tags",T);z!=null&&z.success?(ne.success(Ks?"已更新":"已添加"),Xn(!1),$s(),Sr()):ne.error((z==null?void 0:z.error)??"保存失败")}catch(z){console.error(z),ne.error("保存失败")}finally{Ol(!1)}},disabled:Va,className:"bg-amber-500 hover:bg-amber-600 text-white",children:Va?"保存中...":"保存"})]})]})})]})]}),s.jsx(Q9,{open:Ft,onOpenChange:Fo,editingPerson:vr,onSubmit:async T=>{var we;const z={personId:T.personId||T.name.toLowerCase().replace(/\s+/g,"_")+"_"+Date.now().toString(36),name:T.name,userId:T.boundUserId,aliases:T.aliases||void 0,label:T.label,ckbApiKey:T.ckbApiKey||void 0,greeting:T.greeting||void 0,tips:T.tips||void 0,remarkType:T.remarkType||void 0,remarkFormat:T.remarkFormat||void 0,addFriendInterval:T.addFriendInterval,startTime:T.startTime||void 0,endTime:T.endTime||void 0,deviceGroups:(we=T.deviceGroups)!=null&&we.trim()?T.deviceGroups.split(",").map(Qe=>parseInt(Qe.trim(),10)).filter(Qe=>!Number.isNaN(Qe)):void 0},ue=await Et("/api/db/persons",z);if(ue&&ue.success===!1){const Qe=ue;Qe.ckbResponse&&console.log("存客宝返回",Qe.ckbResponse);const dt=Qe.error||"操作失败";throw new Error(dt)}if(kr(),ne.success(vr?"已保存":"已添加"),ue!=null&&ue.ckbCreateResult&&Object.keys(ue.ckbCreateResult).length>0){const Qe=ue.ckbCreateResult;console.log("存客宝创建结果",Qe);const dt=Qe.planId??Qe.id,Ot=dt!=null?[`planId: ${dt}`]:[];Qe.apiKey!=null&&Ot.push("apiKey: ***"),ne.info(Ot.length?`存客宝创建结果:${Ot.join(",")}`:"存客宝创建结果见控制台")}}}),s.jsx(Bt,{open:!!cs,onOpenChange:T=>{T||Ei(null)},children:s.jsxs(zt,{showCloseButton:!0,className:"bg-[#0f2137] border-gray-700 text-white max-w-md p-4 gap-3",children:[s.jsxs(Vt,{className:"gap-1",children:[s.jsx(Ht,{className:"text-white text-base",children:"确认删除"}),s.jsx(of,{className:"text-gray-400 text-sm leading-relaxed wrap-break-word",children:cs&&s.jsxs(s.Fragment,{children:[cs.personSource==="vip_sync"?s.jsxs(s.Fragment,{children:[s.jsxs("p",{children:["确定删除超级个体「",cs.name,"」对应的 @人物?"]}),s.jsxs("p",{className:"mt-1.5 text-amber-200/90",children:["仅删除本系统的 Person 与独立 token,",s.jsx("strong",{children:"不会"}),"删除存客宝里的「超级个体统一获客计划」(其他超级个体仍在使用该计划)。"]})]}):s.jsx(s.Fragment,{children:s.jsxs("p",{children:["确定删除「SOUL链接人与事-",cs.name,"」?将同时删除存客宝对应获客计划。"]})}),s.jsxs("p",{className:"mt-1.5",children:["二次确认:删除后无法恢复,文章中的 @",cs.name," 将无法正常跳转。"]})]})})]}),s.jsxs(xn,{className:"gap-2 sm:gap-2 pt-1",children:[s.jsx(Y,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-300",onClick:()=>Ei(null),children:"取消"}),s.jsx(Y,{variant:"destructive",size:"sm",className:"bg-red-600 hover:bg-red-700",onClick:async()=>{cs&&(await gi(`/api/db/persons?personId=${cs.personId}`),Ei(null),kr(),ne.success("已删除"))},children:"确定删除"})]})]})}),s.jsx(Bt,{open:Ns,onOpenChange:Hr,children:s.jsxs(zt,{className:"max-w-2xl bg-[#0f2137] border-gray-700",children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[s.jsx(_n,{className:"w-5 h-5 text-green-400"}),Mi," — 获客详情(共 ",Nr," 条)"]})}),s.jsx("div",{className:"max-h-[450px] overflow-y-auto space-y-2",children:Bo?s.jsxs("div",{className:"flex items-center justify-center py-8",children:[s.jsx(Ve,{className:"w-5 h-5 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):Ua.length===0?s.jsx("div",{className:"text-gray-500 text-sm py-8 text-center",children:"暂无获客记录"}):s.jsxs(s.Fragment,{children:[s.jsxs("div",{className:"grid grid-cols-[40px_1fr_90px_90px_70px_60px_110px] gap-2 px-3 py-1.5 text-xs text-gray-500 border-b border-gray-700/50",children:[s.jsx("span",{children:"#"}),s.jsx("span",{children:"昵称/姓名"}),s.jsx("span",{children:"手机"}),s.jsx("span",{children:"微信"}),s.jsx("span",{children:"来源"}),s.jsx("span",{children:"状态"}),s.jsx("span",{children:"时间"})]}),Ua.map((T,z)=>s.jsxs("div",{className:"grid grid-cols-[40px_1fr_90px_90px_70px_60px_110px] gap-2 px-3 py-2 bg-[#0a1628] rounded text-sm",children:[s.jsx("span",{className:"text-gray-500 text-xs",children:(_s-1)*20+z+1}),s.jsx("span",{className:"text-white truncate",children:T.nickname||T.name||T.userId||"-"}),s.jsx("span",{className:"text-gray-300 text-xs",children:T.phone||"-"}),s.jsx("span",{className:"text-gray-300 text-xs truncate",children:T.wechatId||"-"}),s.jsx("span",{className:"text-xs",children:T.source==="article_mention"?s.jsx("span",{className:"text-purple-400",children:"文章@"}):T.source==="index_lead"?s.jsx("span",{className:"text-blue-400",children:"首页"}):s.jsx("span",{className:"text-gray-500",children:T.source||"-"})}),s.jsx("span",{className:"text-[10px]",children:s.jsx("span",{className:"text-green-400 bg-green-400/10 px-1 py-0.5 rounded",children:"已添加"})}),s.jsx("span",{className:"text-gray-500 text-xs",children:T.createdAt?new Date(T.createdAt).toLocaleString("zh-CN",{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"}):"-"})]},T.id))]})}),Nr>20&&s.jsxs("div",{className:"flex items-center justify-center gap-2 pt-2",children:[s.jsx(Y,{size:"sm",variant:"outline",disabled:_s<=1,onClick:()=>js(ws,Mi,_s-1),className:"border-gray-600 text-gray-300 bg-transparent h-7 px-3",children:"上一页"}),s.jsxs("span",{className:"text-gray-400 text-xs",children:[_s," / ",Math.ceil(Nr/20)]}),s.jsx(Y,{size:"sm",variant:"outline",disabled:_s>=Math.ceil(Nr/20),onClick:()=>js(ws,Mi,_s+1),className:"border-gray-600 text-gray-300 bg-transparent h-7 px-3",children:"下一页"})]})]})})]})}const mi={name:"卡若",avatar:"K",avatarImg:"",title:"Soul派对房主理人 · 私域运营专家",bio:'每天早上6点到9点,在Soul派对房分享真实的创业故事。专注私域运营与项目变现,用"云阿米巴"模式帮助创业者构建可持续的商业体系。',stats:[{label:"商业案例",value:"62"},{label:"连续直播",value:"365天"},{label:"派对分享",value:"1000+"}],highlights:["5年私域运营经验","帮助100+品牌从0到1增长","连续创业者,擅长商业模式设计"]};function tj(t){return Array.isArray(t)?t.map(e=>e&&typeof e=="object"&&"label"in e&&"value"in e?{label:String(e.label),value:String(e.value)}:{label:"",value:""}).filter(e=>e.label||e.value):mi.stats}function nj(t){return Array.isArray(t)?t.map(e=>typeof e=="string"?e:String(e??"")).filter(Boolean):mi.highlights}function Z9(){const[t,e]=b.useState(mi),[n,r]=b.useState(!0),[a,i]=b.useState(!1),[o,c]=b.useState(!1),u=b.useRef(null);b.useEffect(()=>{Le("/api/admin/author-settings").then(k=>{const E=k==null?void 0:k.data;E&&typeof E=="object"&&e({name:String(E.name??mi.name),avatar:String(E.avatar??mi.avatar),avatarImg:String(E.avatarImg??""),title:String(E.title??mi.title),bio:String(E.bio??mi.bio),stats:tj(E.stats).length?tj(E.stats):mi.stats,highlights:nj(E.highlights).length?nj(E.highlights):mi.highlights})}).catch(console.error).finally(()=>r(!1))},[]);const h=async()=>{i(!0);try{const k={name:t.name,avatar:t.avatar||"K",avatarImg:t.avatarImg,title:t.title,bio:t.bio,stats:t.stats.filter(R=>R.label||R.value),highlights:t.highlights.filter(Boolean)},E=await Et("/api/admin/author-settings",k);if(!E||E.success===!1){ne.error("保存失败: "+(E&&typeof E=="object"&&"error"in E?E.error:""));return}i(!1);const C=document.createElement("div");C.className="fixed top-4 right-4 z-50 px-4 py-2 rounded-lg bg-[#38bdac] text-white text-sm shadow-lg",C.textContent="作者设置已保存",document.body.appendChild(C),setTimeout(()=>C.remove(),2e3)}catch(k){console.error(k),ne.error("保存失败: "+(k instanceof Error?k.message:String(k)))}finally{i(!1)}},f=async k=>{var C;const E=(C=k.target.files)==null?void 0:C[0];if(E){c(!0);try{const R=new FormData;R.append("file",E),R.append("folder","avatars");const O=hu(),q={};O&&(q.Authorization=`Bearer ${O}`);const V=await(await fetch(Ac("/api/upload"),{method:"POST",body:R,credentials:"include",headers:q})).json();V!=null&&V.success&&(V!=null&&V.url)?e(I=>({...I,avatarImg:V.url})):ne.error("上传失败: "+((V==null?void 0:V.error)||"未知错误"))}catch(R){console.error(R),ne.error("上传失败")}finally{c(!1),u.current&&(u.current.value="")}}},m=()=>e(k=>({...k,stats:[...k.stats,{label:"",value:""}]})),x=k=>e(E=>({...E,stats:E.stats.filter((C,R)=>R!==k)})),y=(k,E,C)=>e(R=>({...R,stats:R.stats.map((O,q)=>q===k?{...O,[E]:C}:O)})),v=()=>e(k=>({...k,highlights:[...k.highlights,""]})),N=k=>e(E=>({...E,highlights:E.highlights.filter((C,R)=>R!==k)})),w=(k,E)=>e(C=>({...C,highlights:C.highlights.map((R,O)=>O===k?E:R)}));return n?s.jsx("div",{className:"p-8 text-gray-500",children:"加载中..."}):s.jsxs("div",{className:"p-8 w-full",children:[s.jsxs("div",{className:"flex justify-between items-center mb-8",children:[s.jsxs("div",{children:[s.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[s.jsx(xi,{className:"w-5 h-5 text-[#38bdac]"}),"作者详情"]}),s.jsx("p",{className:"text-gray-400 mt-1",children:"配置小程序「关于作者」页展示的作者信息,包括头像、简介、统计数据与亮点标签。"})]}),s.jsxs(Y,{onClick:h,disabled:a||n,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),a?"保存中...":"保存"]})]}),s.jsxs("div",{className:"space-y-6",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"flex items-center gap-2 text-white",children:[s.jsx(xi,{className:"w-4 h-4 text-[#38bdac]"}),"基本信息"]}),s.jsx(Yt,{className:"text-gray-400",children:"作者姓名、头像、头衔与个人简介,将展示在「关于作者」页顶部。"})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"姓名"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:t.name,onChange:k=>e(E=>({...E,name:k.target.value})),placeholder:"卡若"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"首字母占位(无头像时显示)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white w-20",value:t.avatar,onChange:k=>e(E=>({...E,avatar:k.target.value.slice(0,1)||"K"})),placeholder:"K"})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[s.jsx(Oj,{className:"w-3 h-3 text-[#38bdac]"}),"头像图片"]}),s.jsxs("div",{className:"flex gap-3 items-center",children:[s.jsx(ce,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:t.avatarImg,onChange:k=>e(E=>({...E,avatarImg:k.target.value})),placeholder:"上传或粘贴 URL,如 /uploads/avatars/xxx.png"}),s.jsx("input",{ref:u,type:"file",accept:"image/*",className:"hidden",onChange:f}),s.jsxs(Y,{type:"button",variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 shrink-0",disabled:o,onClick:()=>{var k;return(k=u.current)==null?void 0:k.click()},children:[s.jsx(nf,{className:"w-4 h-4 mr-2"}),o?"上传中...":"上传"]})]}),t.avatarImg&&s.jsx("div",{className:"mt-2",children:s.jsx("img",{src:So(t.avatarImg.startsWith("http")?t.avatarImg:Ac(t.avatarImg)),alt:"头像预览",className:"w-20 h-20 rounded-full object-cover border border-gray-600"})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"头衔"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:t.title,onChange:k=>e(E=>({...E,title:k.target.value})),placeholder:"Soul派对房主理人 · 私域运营专家"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"个人简介"}),s.jsx(To,{className:"bg-[#0a1628] border-gray-700 text-white min-h-[120px]",value:t.bio,onChange:k=>e(E=>({...E,bio:k.target.value})),placeholder:"每天早上6点到9点..."})]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsx(ot,{className:"text-white",children:"统计数据"}),s.jsx(Yt,{className:"text-gray-400",children:"展示在作者卡片中的数字指标,如「商业案例 62」「连续直播 365天」。第一个「商业案例」的值可由书籍统计自动更新。"})]}),s.jsxs(_e,{className:"space-y-3",children:[t.stats.map((k,E)=>s.jsxs("div",{className:"flex gap-3 items-center",children:[s.jsx(ce,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:k.label,onChange:C=>y(E,"label",C.target.value),placeholder:"标签"}),s.jsx(ce,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:k.value,onChange:C=>y(E,"value",C.target.value),placeholder:"数值"}),s.jsx(Y,{variant:"ghost",size:"icon",className:"text-gray-400 hover:text-red-400",onClick:()=>x(E),children:s.jsx(ss,{className:"w-4 h-4"})})]},E)),s.jsxs(Y,{variant:"outline",size:"sm",onClick:m,className:"border-gray-600 text-gray-400",children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"}),"添加统计项"]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsx(ot,{className:"text-white",children:"亮点标签"}),s.jsx(Yt,{className:"text-gray-400",children:"作者优势或成就的简短描述,以标签形式展示。"})]}),s.jsxs(_e,{className:"space-y-3",children:[t.highlights.map((k,E)=>s.jsxs("div",{className:"flex gap-3 items-center",children:[s.jsx(ce,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:k,onChange:C=>w(E,C.target.value),placeholder:"5年私域运营经验"}),s.jsx(Y,{variant:"ghost",size:"icon",className:"text-gray-400 hover:text-red-400",onClick:()=>N(E),children:s.jsx(ss,{className:"w-4 h-4"})})]},E)),s.jsxs(Y,{variant:"outline",size:"sm",onClick:v,className:"border-gray-600 text-gray-400",children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"}),"添加亮点"]})]})]})]})]})}function eV(t){return confirm(`确定删除该${t}?此操作不可恢复。`)?window.prompt(`请输入「删除」以确认删除${t}`)==="删除":!1}function tV(){const[t,e]=b.useState([]),[n,r]=b.useState(0),[a,i]=b.useState(1),[o]=b.useState(10),[c,u]=b.useState(0),[h,f]=b.useState(""),m=lf(h,300),[x,y]=b.useState(!0),[v,N]=b.useState(null),[w,k]=b.useState(!1),[E,C]=b.useState(null),[R,O]=b.useState(""),[q,$]=b.useState(""),[V,I]=b.useState(""),[te,Q]=b.useState("admin"),[B,re]=b.useState("active"),[ae,J]=b.useState(!1);async function F(){var U;y(!0),N(null);try{const H=new URLSearchParams({page:String(a),pageSize:String(o)});m.trim()&&H.set("search",m.trim());const K=await Le(`/api/admin/users?${H}`);K!=null&&K.success?(e(K.records||[]),r(K.total??0),u(K.totalPages??0)):N(K.error||"加载失败")}catch(H){const K=H;N(K.status===403?"无权限访问":((U=K==null?void 0:K.data)==null?void 0:U.error)||"加载失败"),e([])}finally{y(!1)}}b.useEffect(()=>{F()},[a,o,m]);const D=()=>{C(null),O(""),$(""),I(""),Q("admin"),re("active"),k(!0)},P=U=>{C(U),O(U.username),$(""),I(U.name||""),Q(U.role==="super_admin"?"super_admin":"admin"),re(U.status==="disabled"?"disabled":"active"),k(!0)},oe=async()=>{var U;if(!R.trim()){N("用户名不能为空");return}if(!E&&!q){N("新建时密码必填,至少 6 位");return}if(q&&q.length<6){N("密码至少 6 位");return}N(null),J(!0);try{if(E){const H=await Zt("/api/admin/users",{id:E.id,password:q||void 0,name:V.trim(),role:te,status:B});H!=null&&H.success?(k(!1),F()):N((H==null?void 0:H.error)||"保存失败")}else{const H=await Et("/api/admin/users",{username:R.trim(),password:q,name:V.trim(),role:te});H!=null&&H.success?(k(!1),F()):N((H==null?void 0:H.error)||"保存失败")}}catch(H){const K=H;N(((U=K==null?void 0:K.data)==null?void 0:U.error)||"保存失败")}finally{J(!1)}},G=async U=>{var H;if(!eV("管理员")){N("已取消删除");return}try{const K=await gi(`/api/admin/users?id=${U}`);K!=null&&K.success?F():N((K==null?void 0:K.error)||"删除失败")}catch(K){const me=K;N(((H=me==null?void 0:me.data)==null?void 0:H.error)||"删除失败")}},_=U=>{if(!U)return"-";try{const H=new Date(U);return isNaN(H.getTime())?U:H.toLocaleString("zh-CN")}catch{return U}};return s.jsxs("div",{className:"p-8 w-full",children:[s.jsxs("div",{className:"flex justify-between items-center mb-6",children:[s.jsxs("div",{children:[s.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[s.jsx(yc,{className:"w-5 h-5 text-[#38bdac]"}),"管理员用户"]}),s.jsx("p",{className:"text-gray-400 mt-1",children:"后台登录账号管理,仅超级管理员可操作"})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(ce,{placeholder:"搜索用户名/昵称",value:h,onChange:U=>f(U.target.value),className:"w-48 bg-[#0f2137] border-gray-700 text-white placeholder:text-gray-500"}),s.jsx(Y,{variant:"outline",size:"sm",onClick:F,disabled:x,className:"border-gray-600 text-gray-300",children:s.jsx(Ve,{className:`w-4 h-4 ${x?"animate-spin":""}`})}),s.jsxs(Y,{onClick:D,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"}),"新增管理员"]})]})]}),v&&s.jsxs("div",{className:"mb-4 p-3 rounded-lg bg-red-500/10 border border-red-500/20 text-red-400 text-sm flex justify-between items-center",children:[s.jsx("span",{children:v}),s.jsx("button",{type:"button",onClick:()=>N(null),className:"text-red-400 hover:text-red-300",children:"×"})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsx(_e,{className:"p-0",children:x?s.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):s.jsxs(s.Fragment,{children:[s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"ID"}),s.jsx(ke,{className:"text-gray-400",children:"用户名"}),s.jsx(ke,{className:"text-gray-400",children:"昵称"}),s.jsx(ke,{className:"text-gray-400",children:"角色"}),s.jsx(ke,{className:"text-gray-400",children:"状态"}),s.jsx(ke,{className:"text-gray-400",children:"创建时间"}),s.jsx(ke,{className:"text-right text-gray-400",children:"操作"})]})}),s.jsxs(bs,{children:[t.map(U=>s.jsxs(ht,{className:"border-gray-700/50",children:[s.jsx(be,{className:"text-gray-300",children:U.id}),s.jsx(be,{className:"text-white font-medium",children:U.username}),s.jsx(be,{className:"text-gray-400",children:U.name||"-"}),s.jsx(be,{children:s.jsx(Ue,{variant:"outline",className:U.role==="super_admin"?"border-amber-500/50 text-amber-400":"border-gray-600 text-gray-400",children:U.role==="super_admin"?"超级管理员":"管理员"})}),s.jsx(be,{children:s.jsx(Ue,{variant:"outline",className:U.status==="active"?"border-[#38bdac]/50 text-[#38bdac]":"border-gray-500 text-gray-500",children:U.status==="active"?"正常":"已禁用"})}),s.jsx(be,{className:"text-gray-500 text-sm",children:_(U.createdAt)}),s.jsxs(be,{className:"text-right",children:[s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>P(U),className:"text-gray-400 hover:text-[#38bdac]",children:s.jsx(tn,{className:"w-4 h-4"})}),s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>G(U.id),className:"text-gray-400 hover:text-red-400",children:s.jsx(Ms,{className:"w-4 h-4"})})]})]},U.id)),t.length===0&&!x&&s.jsx(ht,{children:s.jsx(be,{colSpan:7,className:"text-center py-12 text-gray-500",children:v==="无权限访问"?"仅超级管理员可查看":"暂无管理员"})})]})]}),c>1&&s.jsx("div",{className:"p-4 border-t border-gray-700/50",children:s.jsx(sr,{page:a,pageSize:o,total:n,totalPages:c,onPageChange:i})})]})})}),s.jsx(Bt,{open:w,onOpenChange:k,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-sm",children:[s.jsx(Vt,{children:s.jsx(Ht,{className:"text-white",children:E?"编辑管理员":"新增管理员"})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"用户名"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"登录用户名",value:R,onChange:U=>O(U.target.value),disabled:!!E}),E&&s.jsx("p",{className:"text-xs text-gray-500",children:"用户名不可修改"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:E?"新密码(留空不改)":"密码"}),s.jsx(ce,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:E?"留空表示不修改":"至少 6 位",value:q,onChange:U=>$(U.target.value)})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"昵称"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"显示名称",value:V,onChange:U=>I(U.target.value)})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"角色"}),s.jsxs("select",{value:te,onChange:U=>Q(U.target.value),className:"w-full h-10 px-3 rounded-md bg-[#0a1628] border border-gray-700 text-white",children:[s.jsx("option",{value:"admin",children:"管理员"}),s.jsx("option",{value:"super_admin",children:"超级管理员"})]})]}),E&&s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"状态"}),s.jsxs("select",{value:B,onChange:U=>re(U.target.value),className:"w-full h-10 px-3 rounded-md bg-[#0a1628] border border-gray-700 text-white",children:[s.jsx("option",{value:"active",children:"正常"}),s.jsx("option",{value:"disabled",children:"禁用"})]})]})]}),s.jsxs(xn,{children:[s.jsxs(Y,{variant:"outline",onClick:()=>k(!1),className:"border-gray-600 text-gray-300",children:[s.jsx(ss,{className:"w-4 h-4 mr-2"}),"取消"]}),s.jsxs(Y,{onClick:oe,disabled:ae,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),ae?"保存中...":"保存"]})]})]})})]})}function Mn({method:t,url:e,desc:n,headers:r,bodyTitle:a,body:i,response:o}){const c=t==="GET"?"text-emerald-400":t==="POST"?"text-amber-400":t==="PUT"?"text-blue-400":t==="DELETE"?"text-rose-400":"text-gray-400";return s.jsxs("div",{className:"rounded-lg bg-[#0a1628]/60 border border-gray-700/50 p-4 space-y-3",children:[s.jsxs("div",{className:"flex items-center gap-2 flex-wrap",children:[s.jsx("span",{className:`font-mono font-semibold ${c}`,children:t}),s.jsx("code",{className:"text-sm text-[#38bdac] break-all",children:e})]}),n&&s.jsx("p",{className:"text-gray-400 text-sm",children:n}),r&&r.length>0&&s.jsxs("div",{children:[s.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"Headers"}),s.jsx("pre",{className:"text-xs text-gray-300 font-mono overflow-x-auto p-2 rounded bg-black/30",children:r.join(` +`)})]}),i&&s.jsxs("div",{children:[s.jsx("p",{className:"text-gray-500 text-xs mb-1",children:a??"Request Body (JSON)"}),s.jsx("pre",{className:"text-xs text-green-400/90 font-mono overflow-x-auto p-2 rounded bg-black/30 whitespace-pre-wrap",children:i})]}),o&&s.jsxs("div",{children:[s.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"Response Example"}),s.jsx("pre",{className:"text-xs text-amber-200/80 font-mono overflow-x-auto p-2 rounded bg-black/30 whitespace-pre-wrap",children:o})]})]})}function N4(){const t=["Authorization: Bearer {token}","Content-Type: application/json"];return s.jsxs("div",{className:"p-8 w-full bg-[#0a1628] text-white",children:[s.jsxs("div",{className:"mb-8",children:[s.jsx("h1",{className:"text-2xl font-bold text-white",children:"API 接口文档"}),s.jsx("p",{className:"text-gray-400 mt-1",children:"内容管理相关接口 · RESTful · 基础路径 /api · 管理端需 Bearer Token"})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[s.jsx(it,{className:"pb-3",children:s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(mg,{className:"w-5 h-5 text-[#38bdac]"}),"1. Authentication"]})}),s.jsx(_e,{className:"space-y-4",children:s.jsx(Mn,{method:"POST",url:"/api/admin",desc:"登录,返回 JWT token",headers:["Content-Type: application/json"],body:`{ + "username": "admin", + "password": "your_password" +}`,response:`{ + "success": true, + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", + "expires_at": "2026-03-16T12:00:00Z" +}`})})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[s.jsx(it,{className:"pb-3",children:s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(rr,{className:"w-5 h-5 text-[#38bdac]"}),"2. 章节管理 (Chapters)"]})}),s.jsxs(_e,{className:"space-y-4",children:[s.jsx(Mn,{method:"GET",url:"/api/db/book?action=chapters",desc:"获取章节树",headers:t,response:`{ + "success": true, + "data": [ + { "id": "part-1", "title": "第一篇", "children": [...] }, + { "id": "section-1", "title": "第1节", "price": 1.0, "isFree": false } + ] +}`}),s.jsx(Mn,{method:"GET",url:"/api/db/book?action=section&id={id}",desc:"获取单篇内容",headers:t,response:`{ + "success": true, + "data": { + "id": "section-1", + "title": "标题", + "content": "正文...", + "price": 1.0, + "isFree": false, + "partId": "part-1", + "chapterId": "ch-1" + } +}`}),s.jsx(Mn,{method:"POST",url:"/api/db/book",desc:"新建章节 (action=create-section)",headers:t,body:`{ + "action": "create-section", + "title": "新章节标题", + "content": "正文内容", + "price": 0, + "isFree": true, + "partId": "part-1", + "chapterId": "ch-1", + "partTitle": "第一篇", + "chapterTitle": "第1章" +}`,response:`{ + "success": true, + "data": { "id": "section-new-id", "title": "新章节标题", ... } +}`}),s.jsx(Mn,{method:"POST",url:"/api/db/book",desc:"更新章节内容 (action=update-section)",headers:t,body:`{ + "action": "update-section", + "id": "section-1", + "title": "更新后的标题", + "content": "更新后的正文", + "price": 1.0, + "isFree": false +}`,response:`{ + "success": true, + "data": { "id": "section-1", "title": "更新后的标题", ... } +}`}),s.jsx(Mn,{method:"POST",url:"/api/db/book",desc:"删除章节 (action=delete-section)",headers:t,body:`{ + "action": "delete-section", + "id": "section-1" +}`,response:`{ + "success": true, + "message": "已删除" +}`}),s.jsxs("div",{className:"rounded-lg border border-[#38bdac]/30 bg-[#0a1628]/40 p-4 space-y-2",children:[s.jsx("p",{className:"text-[#38bdac] text-sm font-medium",children:"富文本流程说明(编辑器 ⇄ 接口)"}),s.jsxs("ol",{className:"text-gray-400 text-xs space-y-2 list-decimal list-inside leading-relaxed",children:[s.jsxs("li",{children:["先 ",s.jsx("code",{className:"text-[#38bdac]",children:"POST /api/upload"})," 上传素材,得到"," ",s.jsx("code",{className:"text-amber-200/90",children:"url"}),"(可为相对路径 ",s.jsx("code",{className:"text-amber-200/90",children:"/uploads/..."})," 或 OSS 完整 URL)。"]}),s.jsxs("li",{children:["将返回的 ",s.jsx("code",{className:"text-amber-200/90",children:"url"})," 填入正文 HTML:图片用"," ",s.jsx("code",{className:"text-green-400/90",children:''}),";视频用"," ",s.jsx("code",{className:"text-green-400/90",children:'
    '}),";附件用带链接的段落或"," ",s.jsx("code",{className:"text-green-400/90",children:'文件名'}),"。"]}),s.jsxs("li",{children:["最后把完整 HTML 字符串写入"," ",s.jsx("code",{className:"text-[#38bdac]",children:"create-section"})," /"," ",s.jsx("code",{className:"text-[#38bdac]",children:"update-section"})," 的 ",s.jsx("code",{className:"text-amber-200/90",children:"content"})," 字段。"]})]}),s.jsxs("p",{className:"text-gray-500 text-xs",children:["管理后台编辑器内图片/视频仅作小预览(CSS 类 ",s.jsx("code",{className:"text-gray-400",children:".rich-editor-content"}),"),不影响已保存 HTML;C 端按小程序/Web 自己的样式渲染全尺寸。"]})]}),s.jsx(Mn,{method:"POST",url:"/api/upload",desc:"上传章节富文本素材:图片 / 视频 / 附件(multipart,与后台「内容管理」编辑器一致)。按 form 字段 folder 区分类型与大小上限。",headers:["Authorization: Bearer {token}(建议携带,与后台一致)","Content-Type: multipart/form-data(由浏览器自动带 boundary,不要手写为 application/json)"],bodyTitle:"Request (multipart/form-data)",body:`字段: + file — 二进制文件(必填) + folder — 存储子目录(必填约定): + • book-images 图片,≤5MB,image/* + • book-videos 视频,≤100MB,video/*(如 mp4、mov、webm) + • book-attachments 附件,≤30MB,pdf/zip/Office/txt 等 + +成功时 data.url 与根字段 url 均为可访问地址。`,response:`{ + "success": true, + "url": "/uploads/book-images/1730000000000_abc123.jpg", + "data": { + "url": "/uploads/book-images/1730000000000_abc123.jpg", + "fileName": "1730000000000_abc123.jpg", + "size": 102400, + "type": "image/jpeg" + } +}`}),s.jsx(Mn,{method:"DELETE",url:"/api/upload?path={encodeURIComponent(文件URL)}",desc:"按 URL 删除已上传文件(本地或 OSS,需与上传返回的 url 一致)",headers:["Authorization: Bearer {token}(建议携带)"],response:`{ + "success": true, + "message": "删除成功" +}`})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[s.jsx(it,{className:"pb-3",children:s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(xi,{className:"w-5 h-5 text-[#38bdac]"}),"3. 人物管理 (@Mentions)"]})}),s.jsxs(_e,{className:"space-y-4",children:[s.jsx(Mn,{method:"GET",url:"/api/db/persons",desc:"人物列表",headers:t,response:`{ + "success": true, + "data": [ + { "personId": "p1", "label": "张三", "aliases": ["老张"], ... } + ] +}`}),s.jsx(Mn,{method:"GET",url:"/api/db/person?personId={id}",desc:"人物详情",headers:t,response:`{ + "success": true, + "data": { + "personId": "p1", + "label": "张三", + "aliases": ["老张"], + "description": "..." + } +}`}),s.jsx(Mn,{method:"POST",url:"/api/db/persons",desc:"新增/更新人物(含 aliases 字段)",headers:t,body:`{ + "personId": "p1", + "label": "张三", + "aliases": ["老张", "张三丰"], + "description": "可选描述" +}`,response:`{ + "success": true, + "data": { "personId": "p1", "label": "张三", ... } +}`}),s.jsx(Mn,{method:"DELETE",url:"/api/db/persons?personId={id}",desc:"删除人物",headers:t,response:`{ + "success": true, + "message": "已删除" +}`})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[s.jsx(it,{className:"pb-3",children:s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(Dd,{className:"w-5 h-5 text-[#38bdac]"}),"4. 链接标签 (#LinkTags)"]})}),s.jsxs(_e,{className:"space-y-4",children:[s.jsx(Mn,{method:"GET",url:"/api/db/link-tags",desc:"标签列表",headers:t,response:`{ + "success": true, + "data": [ + { "tagId": "t1", "label": "官网", "aliases": [], "type": "url", "url": "https://..." } + ] +}`}),s.jsx(Mn,{method:"POST",url:"/api/db/link-tags",desc:"新增/更新标签(含 aliases, type: url/miniprogram/ckb)",headers:t,body:`{ + "tagId": "t1", + "label": "官网", + "aliases": ["官方网站"], + "type": "url", + "url": "https://example.com" +} + +// type 可选: url | miniprogram | ckb`,response:`{ + "success": true, + "data": { "tagId": "t1", "label": "官网", "type": "url", ... } +}`}),s.jsx(Mn,{method:"DELETE",url:"/api/db/link-tags?tagId={id}",desc:"删除标签",headers:t,response:`{ + "success": true, + "message": "已删除" +}`})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[s.jsx(it,{className:"pb-3",children:s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(Aa,{className:"w-5 h-5 text-[#38bdac]"}),"5. 内容搜索"]})}),s.jsx(_e,{className:"space-y-4",children:s.jsx(Mn,{method:"GET",url:"/api/search?q={keyword}",desc:"搜索(标题优先 3 条 + 内容匹配)",headers:t,response:`{ + "success": true, + "data": { + "titleMatches": [{ "id": "s1", "title": "...", "snippet": "..." }], + "contentMatches": [{ "id": "s2", "title": "...", "snippet": "..." }] + } +}`})})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[s.jsx(it,{className:"pb-3",children:s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(gg,{className:"w-5 h-5 text-[#38bdac]"}),"6. 内容排行"]})}),s.jsx(_e,{className:"space-y-4",children:s.jsx(Mn,{method:"GET",url:"/api/db/book?action=ranking",desc:"排行榜数据",headers:t,response:`{ + "success": true, + "data": [ + { "id": "s1", "title": "...", "clickCount": 100, "payCount": 50, "hotScore": 120, "hotRank": 1 } + ] +}`})})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[s.jsx(it,{className:"pb-3",children:s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(gl,{className:"w-5 h-5 text-[#38bdac]"}),"7. 小程序接口"]})}),s.jsxs(_e,{className:"space-y-4",children:[s.jsx(Mn,{method:"GET",url:"/api/miniprogram/config/read-extras",desc:"阅读页懒加载:linkTags、linkedMiniprograms、mentionPersons(@ 自动解析:name/label/aliases + token,与 persons 表一致;inPool 表示已绑定会员即超级个体侧流量池人物)",headers:["Content-Type: application/json"],response:`{ + "linkTags": [], + "linkedMiniprograms": [], + "mentionPersons": [ + { "personId": "xxx", "token": "32位...", "name": "陈周", "aliases": "", "label": "", "inPool": true } + ] +}`}),s.jsx(Mn,{method:"GET",url:"/api/miniprogram/book/all-chapters",desc:"全部章节(小程序用)",headers:["Content-Type: application/json"],response:`{ + "success": true, + "data": [ { "id": "s1", "title": "...", "price": 1.0, "isFree": false }, ... ] +}`}),s.jsx(Mn,{method:"GET",url:"/api/miniprogram/balance?userId={id}",desc:"查余额",headers:["Content-Type: application/json"],response:`{ + "success": true, + "data": { "balance": 100.50, "userId": "xxx" } +}`}),s.jsx(Mn,{method:"POST",url:"/api/miniprogram/balance/gift",desc:"代付",headers:["Content-Type: application/json"],body:`{ + "userId": "xxx", + "amount": 10.00, + "remark": "可选备注" +}`,response:`{ + "success": true, + "data": { "balance": 110.50 } +}`}),s.jsx(Mn,{method:"POST",url:"/api/miniprogram/balance/gift/redeem",desc:"领取代付",headers:["Content-Type: application/json"],body:`{ + "code": "GIFT_XXXX" +}`,response:`{ + "success": true, + "data": { "amount": 10.00, "balance": 120.50 } +}`})]})]}),s.jsx("p",{className:"text-gray-500 text-xs mt-6",children:"管理端主要使用 /api/admin/*、/api/db/*;富文本素材上传另用公共接口 /api/upload(与后台编辑器一致)。小程序使用 /api/miniprogram/*。完整实现见 soul-api 源码。"})]})}const nV={appId:"wxb8bbb2b10dec74aa",withdrawSubscribeTmplId:"u3MbZGPRkrZIk-I7QdpwzFxnO_CeQPaCWF2FkiIablE",mchId:"1318592501",minWithdraw:10},sV={name:"卡若",startDate:"2025年10月15日",bio:"连续创业者,私域运营专家,每天早上6-9点在Soul派对房分享真实商业故事",liveTime:"06:00-09:00",platform:"Soul派对房",description:"连续创业者,私域运营专家"},rV={sectionPrice:1,baseBookPrice:9.9,distributorShare:90,authorInfo:{...sV},ckbLeadApiKey:""},aV={matchEnabled:!0,referralEnabled:!0,searchEnabled:!0,aboutEnabled:!0},iV={tabBar:{home:"首页",chapters:"目录",match:"找伙伴",my:"我的"},chaptersPage:{bookTitle:"一场SOUL的创业实验场",bookSubtitle:"来自Soul派对房的真实商业故事"},homePage:{logoTitle:"卡若创业派对",logoSubtitle:"来自派对房的真实故事",linkKaruoText:"点击链接卡若",linkKaruoAvatar:"",searchPlaceholder:"搜索章节标题或内容...",bannerTag:"推荐",bannerReadMoreText:"点击阅读",superSectionTitle:"超级个体",superSectionLinkText:"获客入口",superSectionLinkPath:"/pages/match/match",pickSectionTitle:"精选推荐",latestSectionTitle:"最新新增"},myPage:{cardLabel:"名片",vipLabelVip:"会员中心",vipLabelGuest:"成为会员",cardPath:"",vipPath:"/pages/vip/vip",readStatLabel:"已读章节",recentReadTitle:"最近阅读",readStatPath:"/pages/reading-records/reading-records?focus=all",recentReadPath:"/pages/reading-records/reading-records?focus=recent"}},oV=["system","author","admin","api-docs"],sj=["basic","mp","oss","features"];function lV(){const[t,e]=w0(),n=t.get("tab")??"system",r=oV.includes(n)?n:"system",a=t.get("section")??"basic",i=sj.includes(a)?a:"basic",[o,c]=b.useState(rV),[u,h]=b.useState(aV),[f,m]=b.useState(nV),[x,y]=b.useState("{}"),[v,N]=b.useState({}),[w,k]=b.useState(!1),[E,C]=b.useState(!0),[R,O]=b.useState(!1),[q,$]=b.useState(""),[V,I]=b.useState(""),[te,Q]=b.useState(!1),[B,re]=b.useState(!1),ae=(H,K,me=!1)=>{$(H),I(K),Q(me),O(!0)};b.useEffect(()=>{(async()=>{try{const K=await Le("/api/admin/settings");if(!K||K.success===!1)return;if(K.featureConfig&&Object.keys(K.featureConfig).length&&h(me=>({...me,...K.featureConfig})),K.mpConfig&&typeof K.mpConfig=="object"){const me={...K.mpConfig};m(le=>({...le,...me}));const X=me.mpUi;y(JSON.stringify(X!=null&&typeof X=="object"&&!Array.isArray(X)?X:{},null,2))}if(K.ossConfig&&typeof K.ossConfig=="object"&&N(me=>({...me,...K.ossConfig})),K.siteSettings&&typeof K.siteSettings=="object"){const me=K.siteSettings;c(X=>({...X,...typeof me.sectionPrice=="number"&&{sectionPrice:me.sectionPrice},...typeof me.baseBookPrice=="number"&&{baseBookPrice:me.baseBookPrice},...typeof me.distributorShare=="number"&&{distributorShare:me.distributorShare},...me.authorInfo&&typeof me.authorInfo=="object"&&{authorInfo:{...X.authorInfo,...me.authorInfo}},...typeof me.ckbLeadApiKey=="string"&&{ckbLeadApiKey:me.ckbLeadApiKey}}))}}catch(K){console.error("Load settings error:",K)}finally{C(!1)}})()},[]);const J=async(H,K)=>{re(!0);try{const me=await Et("/api/admin/settings",{featureConfig:H});if(!me||me.success===!1){K(),ae("保存失败",(me==null?void 0:me.error)??"未知错误",!0);return}ae("已保存","功能开关已更新,相关入口将随之显示或隐藏。")}catch(me){console.error("Save feature config error:",me),K(),ae("保存失败",me instanceof Error?me.message:String(me),!0)}finally{re(!1)}},F=(H,K)=>{const me=u,X={...me,[H]:K};h(X),J(X,()=>h(me))},[D,P]=b.useState(!1),oe=async H=>{const K=f,me={...K,auditMode:H};m(me),P(!0);try{const X=await Et("/api/admin/settings",{mpConfig:me});if(!X||X.success===!1){m(K),ae("保存失败",(X==null?void 0:X.error)??"未知错误",!0);return}ae("已保存",H?"审核模式已开启,小程序将隐藏所有支付入口。":"审核模式已关闭,支付功能已恢复。")}catch(X){m(K),ae("保存失败",X instanceof Error?X.message:String(X),!0)}finally{P(!1)}},G=async()=>{k(!0);try{let H={};try{const me=x.trim();if(me){const X=JSON.parse(me);if(X&&typeof X=="object"&&!Array.isArray(X))H=X;else{ae("保存失败","小程序文案 mpUi 须为 JSON 对象(非数组)",!0),k(!1);return}}}catch{ae("保存失败","小程序文案 mpUi 不是合法 JSON",!0),k(!1);return}const K=await Et("/api/admin/settings",{featureConfig:u,siteSettings:{sectionPrice:o.sectionPrice,baseBookPrice:o.baseBookPrice,distributorShare:o.distributorShare,authorInfo:o.authorInfo,ckbLeadApiKey:o.ckbLeadApiKey||void 0},mpConfig:{...f,appId:f.appId||"",withdrawSubscribeTmplId:f.withdrawSubscribeTmplId||"",mchId:f.mchId||"",minWithdraw:typeof f.minWithdraw=="number"?f.minWithdraw:10,auditMode:f.auditMode??!1,mpUi:H},ossConfig:Object.keys(v).length?{endpoint:v.endpoint??"",bucket:v.bucket??"",region:v.region??"",accessKeyId:v.accessKeyId??"",accessKeySecret:v.accessKeySecret??""}:void 0});if(!K||K.success===!1){ae("保存失败",(K==null?void 0:K.error)??"未知错误",!0);return}ae("已保存","设置已保存成功。")}catch(H){console.error("Save settings error:",H),ae("保存失败",H instanceof Error?H.message:String(H),!0)}finally{k(!1)}},_=H=>{if(H==="system"){const K=new URLSearchParams(t);K.delete("tab"),sj.includes(K.get("section")||"basic")||K.set("section","basic"),e(K);return}e({tab:H})},U=H=>{const K=new URLSearchParams(t);K.delete("tab"),K.set("section",H),e(K)};return E?s.jsx("div",{className:"p-8 text-gray-500",children:"加载中..."}):s.jsxs("div",{className:"p-8 w-full",children:[s.jsxs("div",{className:"flex justify-between items-center mb-6",children:[s.jsxs("div",{children:[s.jsx("h2",{className:"text-2xl font-bold text-white",children:"系统设置"}),s.jsx("p",{className:"text-gray-400 mt-1",children:"配置全站基础参数与开关"})]}),r==="system"&&s.jsxs(Y,{onClick:G,disabled:w,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),w?"保存中...":"保存设置"]})]}),s.jsxs(Ic,{value:r,onValueChange:_,className:"w-full",children:[s.jsxs(vl,{className:"mb-6 bg-[#0f2137] border border-gray-700/50 p-1",children:[s.jsxs(nn,{value:"system",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[s.jsx(mo,{className:"w-4 h-4 mr-2"}),"系统设置"]}),s.jsxs(nn,{value:"author",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[s.jsx(mh,{className:"w-4 h-4 mr-2"}),"作者详情"]}),s.jsxs(nn,{value:"admin",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[s.jsx(yc,{className:"w-4 h-4 mr-2"}),"管理员"]}),s.jsxs(nn,{value:"api-docs",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",onClick:H=>{H.preventDefault(),window.open("/api-docs","_blank")},children:[s.jsx(Pj,{className:"w-4 h-4 mr-2"}),"API 文档 ↗"]})]}),s.jsxs(sn,{value:"system",className:"mt-0",children:[s.jsxs("p",{className:"text-xs text-gray-500 mb-3",children:["MBTI 默认头像已迁至"," ",s.jsx(Tc,{to:"/users",className:"text-[#38bdac] underline",children:"用户管理(用户列表点头像打开)"})]}),s.jsxs(Ic,{value:i,onValueChange:U,className:"w-full",children:[s.jsxs(vl,{className:"mb-4 bg-[#0a1628] border border-gray-700/50 p-1 flex-wrap h-auto gap-1",children:[s.jsxs(nn,{value:"basic",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 text-xs",children:[s.jsx(lM,{className:"w-3.5 h-3.5 mr-1"}),"基础与价格"]}),s.jsxs(nn,{value:"mp",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 text-xs",children:[s.jsx(gl,{className:"w-3.5 h-3.5 mr-1"}),"小程序与审核"]}),s.jsxs(nn,{value:"oss",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 text-xs",children:[s.jsx(u1,{className:"w-3.5 h-3.5 mr-1"}),"OSS"]}),s.jsxs(nn,{value:"features",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 text-xs",children:[s.jsx(mo,{className:"w-3.5 h-3.5 mr-1"}),"功能开关"]})]}),s.jsxs(sn,{value:"basic",className:"space-y-6 mt-0",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(mh,{className:"w-5 h-5 text-[#38bdac]"}),"关于作者"]}),s.jsx(Yt,{className:"text-gray-400",children:'配置作者信息,将在"关于作者"页面显示'})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{htmlFor:"author-name",className:"text-gray-300 flex items-center gap-1",children:[s.jsx(mh,{className:"w-3 h-3"}),"主理人名称"]}),s.jsx(ce,{id:"author-name",className:"bg-[#0a1628] border-gray-700 text-white",value:o.authorInfo.name??"",onChange:H=>c(K=>({...K,authorInfo:{...K.authorInfo,name:H.target.value}}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{htmlFor:"start-date",className:"text-gray-300 flex items-center gap-1",children:[s.jsx(dg,{className:"w-3 h-3"}),"开播日期"]}),s.jsx(ce,{id:"start-date",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例如: 2025年10月15日",value:o.authorInfo.startDate??"",onChange:H=>c(K=>({...K,authorInfo:{...K.authorInfo,startDate:H.target.value}}))})]})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{htmlFor:"live-time",className:"text-gray-300 flex items-center gap-1",children:[s.jsx(dg,{className:"w-3 h-3"}),"直播时间"]}),s.jsx(ce,{id:"live-time",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例如: 06:00-09:00",value:o.authorInfo.liveTime??"",onChange:H=>c(K=>({...K,authorInfo:{...K.authorInfo,liveTime:H.target.value}}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{htmlFor:"platform",className:"text-gray-300 flex items-center gap-1",children:[s.jsx(Lj,{className:"w-3 h-3"}),"直播平台"]}),s.jsx(ce,{id:"platform",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例如: Soul派对房",value:o.authorInfo.platform??"",onChange:H=>c(K=>({...K,authorInfo:{...K.authorInfo,platform:H.target.value}}))})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{htmlFor:"description",className:"text-gray-300 flex items-center gap-1",children:[s.jsx(rr,{className:"w-3 h-3"}),"简介描述"]}),s.jsx(ce,{id:"description",className:"bg-[#0a1628] border-gray-700 text-white",value:o.authorInfo.description??"",onChange:H=>c(K=>({...K,authorInfo:{...K.authorInfo,description:H.target.value}}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{htmlFor:"bio",className:"text-gray-300",children:"详细介绍"}),s.jsx(To,{id:"bio",className:"bg-[#0a1628] border-gray-700 text-white min-h-[100px]",placeholder:"输入作者详细介绍...",value:o.authorInfo.bio??"",onChange:H=>c(K=>({...K,authorInfo:{...K.authorInfo,bio:H.target.value}}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{htmlFor:"ckb-lead-api-key",className:"text-gray-300 flex items-center gap-1",children:[s.jsx(Ea,{className:"w-3 h-3"}),"链接卡若存客宝密钥"]}),s.jsx(ce,{id:"ckb-lead-api-key",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 xxxxx-xxxxx-xxxxx-xxxxx(留空则用 .env 默认)",value:o.ckbLeadApiKey??"",onChange:H=>c(K=>({...K,ckbLeadApiKey:H.target.value}))}),s.jsx("p",{className:"text-xs text-gray-500",children:"小程序首页「链接卡若」留资接口使用的存客宝 API Key,优先于 .env 配置"})]}),s.jsxs("div",{className:"mt-4 p-4 rounded-xl bg-[#0a1628] border border-[#38bdac]/30",children:[s.jsx("p",{className:"text-xs text-gray-500 mb-2",children:"预览效果"}),s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx("div",{className:"w-12 h-12 rounded-full bg-gradient-to-br from-[#00CED1] to-[#20B2AA] flex items-center justify-center text-xl font-bold text-white",children:(o.authorInfo.name??"K").charAt(0)}),s.jsxs("div",{children:[s.jsx("p",{className:"text-white font-semibold",children:o.authorInfo.name}),s.jsx("p",{className:"text-gray-400 text-xs",children:o.authorInfo.description}),s.jsxs("p",{className:"text-[#38bdac] text-xs mt-1",children:["每日 ",o.authorInfo.liveTime," · ",o.authorInfo.platform]})]})]})]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(Zh,{className:"w-5 h-5 text-[#38bdac]"}),"价格设置"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置书籍和章节的定价"})]}),s.jsx(_e,{className:"space-y-4",children:s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"单节价格 (元)"}),s.jsx(ce,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:o.sectionPrice,onChange:H=>c(K=>({...K,sectionPrice:Number.parseFloat(H.target.value)||1}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"整本价格 (元)"}),s.jsx(ce,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:o.baseBookPrice,onChange:H=>c(K=>({...K,baseBookPrice:Number.parseFloat(H.target.value)||9.9}))})]})]})})]})]}),s.jsxs(sn,{value:"mp",className:"space-y-6 mt-0",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(gl,{className:"w-5 h-5 text-[#38bdac]"}),"小程序配置"]}),s.jsx(Yt,{className:"text-gray-400",children:"订阅消息模板、支付商户号等,小程序从 /api/miniprogram/config 读取(API 地址由 app.js baseUrl 控制)"})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"小程序 AppID"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"wxb8bbb2b10dec74aa",value:f.appId??"",onChange:H=>m(K=>({...K,appId:H.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"提现订阅模板 ID"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"用户申请提现时需授权",value:f.withdrawSubscribeTmplId??"",onChange:H=>m(K=>({...K,withdrawSubscribeTmplId:H.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"微信支付商户号"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"1318592501",value:f.mchId??"",onChange:H=>m(K=>({...K,mchId:H.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"最低提现金额 (元)"}),s.jsx(ce,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:f.minWithdraw??10,onChange:H=>m(K=>({...K,minWithdraw:Number.parseFloat(H.target.value)||10}))})]})]}),s.jsxs("div",{className:"space-y-2 pt-2 border-t border-gray-700/50",children:[s.jsxs("div",{className:"flex flex-wrap items-center justify-between gap-2",children:[s.jsx(ee,{className:"text-gray-300",children:"小程序界面文案 mpUi(JSON)"}),s.jsx(Y,{type:"button",variant:"outline",size:"sm",className:"border-gray-600 text-gray-200",onClick:()=>y(JSON.stringify(iV,null,2)),children:"填入默认模板"})]}),s.jsx("p",{className:"text-xs text-gray-500",children:"覆盖 Tab 文案、首页/目录标题、我的页名片与阅读记录路径等;仅填需要改的字段也可(与后端默认值深合并)。保存后小程序约 5 分钟内通过 config 缓存刷新。"}),s.jsx(To,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm min-h-[280px]",spellCheck:!1,value:x,onChange:H=>y(H.target.value)})]})]})]}),s.jsxs(De,{className:`bg-[#0f2137] shadow-xl ${f.auditMode?"border-amber-500/50 border-2":"border-gray-700/50"}`,children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(yc,{className:"w-5 h-5 text-amber-400"}),"小程序审核模式"]}),s.jsx(Yt,{className:"text-gray-400",children:"提交微信审核前开启,审核通过后关闭即可恢复支付功能"})]}),s.jsx(_e,{children:s.jsxs("div",{className:`flex items-center justify-between p-4 rounded-lg border ${f.auditMode?"bg-amber-500/10 border-amber-500/30":"bg-[#0a1628] border-gray-700/50"}`,children:[s.jsxs("div",{className:"space-y-1",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(yc,{className:`w-4 h-4 ${f.auditMode?"text-amber-400":"text-gray-400"}`}),s.jsx(ee,{htmlFor:"audit-mode",className:"text-white font-medium cursor-pointer",children:f.auditMode?"审核模式(已开启)":"审核模式(已关闭)"})]}),s.jsx("p",{className:"text-xs text-gray-400 ml-6",children:f.auditMode?"当前已隐藏所有支付、VIP、充值、收益等入口,审核员看不到任何付费内容":"关闭状态,小程序正常显示所有功能(含支付、VIP 等)"})]}),s.jsx(Ut,{id:"audit-mode",checked:f.auditMode??!1,disabled:D,onCheckedChange:oe})]})})]})]}),s.jsx(sn,{value:"oss",className:"space-y-6 mt-0",children:s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(u1,{className:"w-5 h-5 text-[#38bdac]"}),"OSS 配置(阿里云对象存储)"]}),s.jsx(Yt,{className:"text-gray-400",children:"endpoint、bucket、accessKey 等,用于图片/文件上传"})]}),s.jsx(_e,{className:"space-y-4",children:s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"Endpoint"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"oss-cn-hangzhou.aliyuncs.com",value:v.endpoint??"",onChange:H=>N(K=>({...K,endpoint:H.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"Bucket"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"bucket 名称",value:v.bucket??"",onChange:H=>N(K=>({...K,bucket:H.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"Region"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"oss-cn-hangzhou",value:v.region??"",onChange:H=>N(K=>({...K,region:H.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"AccessKey ID"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"AccessKey ID",value:v.accessKeyId??"",onChange:H=>N(K=>({...K,accessKeyId:H.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"AccessKey Secret"}),s.jsx(ce,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"AccessKey Secret",value:v.accessKeySecret??"",onChange:H=>N(K=>({...K,accessKeySecret:H.target.value}))})]})]})})]})}),s.jsxs(sn,{value:"features",className:"space-y-6 mt-0",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(mo,{className:"w-5 h-5 text-[#38bdac]"}),"功能开关"]}),s.jsx(Yt,{className:"text-gray-400",children:"控制各个功能模块的显示/隐藏"})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(_n,{className:"w-4 h-4 text-[#38bdac]"}),s.jsx(ee,{htmlFor:"match-enabled",className:"text-white font-medium cursor-pointer",children:"找伙伴功能"})]}),s.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制小程序和Web端的找伙伴功能显示"})]}),s.jsx(Ut,{id:"match-enabled",checked:u.matchEnabled,disabled:B,onCheckedChange:H=>F("matchEnabled",H)})]}),s.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(fg,{className:"w-4 h-4 text-[#38bdac]"}),s.jsx(ee,{htmlFor:"referral-enabled",className:"text-white font-medium cursor-pointer",children:"推广功能"})]}),s.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制推广中心的显示(我的页面入口)"}),s.jsxs("p",{className:"text-xs text-amber-400/80 ml-6 mt-1",children:["佣金比例、绑定期、提现规则等与",s.jsx(Tc,{to:"/distribution?tab=settings",className:"underline mx-1 text-[#38bdac]",children:"推广中心 → 推广设置"}),"为同一套接口,在此仅控制是否展示入口。"]})]}),s.jsx(Ut,{id:"referral-enabled",checked:u.referralEnabled,disabled:B,onCheckedChange:H=>F("referralEnabled",H)})]}),s.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(rr,{className:"w-4 h-4 text-[#38bdac]"}),s.jsx(ee,{htmlFor:"search-enabled",className:"text-white font-medium cursor-pointer",children:"搜索功能"})]}),s.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制首页、目录页搜索栏的显示"})]}),s.jsx(Ut,{id:"search-enabled",checked:u.searchEnabled,disabled:B,onCheckedChange:H=>F("searchEnabled",H)})]}),s.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx(mo,{className:"w-4 h-4 text-[#38bdac]"}),s.jsx(ee,{htmlFor:"about-enabled",className:"text-white font-medium cursor-pointer",children:"关于页面"})]}),s.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制关于页面的访问"})]}),s.jsx(Ut,{id:"about-enabled",checked:u.aboutEnabled,disabled:B,onCheckedChange:H=>F("aboutEnabled",H)})]})]}),s.jsx("div",{className:"p-3 rounded-lg bg-blue-500/10 border border-blue-500/30",children:s.jsx("p",{className:"text-xs text-blue-300",children:"💡 关闭功能后,相关入口会自动隐藏。建议在功能开发完成后再开启。"})})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(ef,{className:"w-5 h-5 text-[#38bdac]"}),"小程序模块显隐说明"]}),s.jsx(Yt,{className:"text-gray-400",children:"以下模块受上方开关和审核模式共同控制"})]}),s.jsx(_e,{children:s.jsx("div",{className:"grid grid-cols-2 gap-2 text-xs",children:[{mod:"找伙伴",ctrl:"找伙伴功能开关",icon:s.jsx(_n,{className:"w-3 h-3"})},{mod:"推广中心 / 推荐好友",ctrl:"推广功能开关",icon:s.jsx(fg,{className:"w-3 h-3"})},{mod:"搜索",ctrl:"搜索功能开关",icon:s.jsx(rr,{className:"w-3 h-3"})},{mod:"关于页面",ctrl:"关于页面开关",icon:s.jsx(mh,{className:"w-3 h-3"})},{mod:"支付 / VIP / 充值 / 收益",ctrl:"审核模式",icon:s.jsx(yc,{className:"w-3 h-3"})},{mod:"超级个体名片",ctrl:"审核模式",icon:s.jsx(aA,{className:"w-3 h-3"})},{mod:"首页获客入口",ctrl:"已移除",icon:s.jsx(P5,{className:"w-3 h-3"})}].map(H=>s.jsxs("div",{className:"flex items-center gap-2 p-2 rounded bg-[#0a1628] border border-gray-700/30",children:[H.icon,s.jsxs("div",{children:[s.jsx("span",{className:"text-white",children:H.mod}),s.jsxs("span",{className:"text-gray-500 ml-1",children:["← ",H.ctrl]})]})]},H.mod))})})]})]})]})]}),s.jsx(sn,{value:"author",className:"mt-0",children:s.jsx(Z9,{})}),s.jsx(sn,{value:"admin",className:"mt-0",children:s.jsx(tV,{})}),s.jsx(sn,{value:"api-docs",className:"mt-0",children:s.jsx(N4,{})})]}),s.jsx(Bt,{open:R,onOpenChange:O,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white",showCloseButton:!0,children:[s.jsxs(Vt,{children:[s.jsx(Ht,{className:te?"text-red-400":"text-[#38bdac]",children:q}),s.jsx(of,{className:"text-gray-400 whitespace-pre-wrap pt-2",children:V})]}),s.jsx(xn,{className:"mt-4",children:s.jsx(Y,{onClick:()=>O(!1),className:te?"bg-gray-600 hover:bg-gray-500":"bg-[#38bdac] hover:bg-[#2da396]",children:"确定"})})]})})]})}const rj={wechat:{enabled:!0,qrCode:"/images/wechat-pay.png",account:"卡若",websiteAppId:"",merchantId:"",groupQrCode:"/images/party-group-qr.png"},alipay:{enabled:!0,qrCode:"/images/alipay.png",account:"卡若",partnerId:"",securityKey:""},usdt:{enabled:!1,network:"TRC20",address:"",exchangeRate:7.2},paypal:{enabled:!1,email:"",exchangeRate:7.2}};function cV(){const[t,e]=b.useState(!1),[n,r]=b.useState(rj),[a,i]=b.useState(""),o=async()=>{e(!0);try{const k=await Le("/api/config");k!=null&&k.paymentMethods&&r({...rj,...k.paymentMethods})}catch(k){console.error(k)}finally{e(!1)}};b.useEffect(()=>{o()},[]);const c=async()=>{e(!0);try{await Et("/api/db/config",{key:"payment_methods",value:n,description:"支付方式配置"}),ne.success("配置已保存!")}catch(k){console.error("保存失败:",k),ne.error("保存失败: "+(k instanceof Error?k.message:String(k)))}finally{e(!1)}},u=(k,E)=>{navigator.clipboard.writeText(k),i(E),setTimeout(()=>i(""),2e3)},h=(k,E)=>{r(C=>({...C,wechat:{...C.wechat,[k]:E}}))},f=(k,E)=>{r(C=>({...C,alipay:{...C.alipay,[k]:E}}))},m=(k,E)=>{r(C=>({...C,usdt:{...C.usdt,[k]:E}}))},x=(k,E)=>{r(C=>({...C,paypal:{...C.paypal,[k]:E}}))},y=n.wechat,v=n.alipay,N=n.usdt,w=n.paypal;return s.jsxs("div",{className:"p-8 w-full",children:[s.jsxs("div",{className:"flex justify-between items-center mb-8",children:[s.jsxs("div",{children:[s.jsx("h1",{className:"text-2xl font-bold mb-2 text-white",children:"支付配置"}),s.jsx("p",{className:"text-gray-400",children:"配置微信、支付宝、USDT、PayPal等支付参数"})]}),s.jsxs("div",{className:"flex gap-3",children:[s.jsxs(Y,{variant:"outline",onClick:o,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${t?"animate-spin":""}`}),"同步配置"]}),s.jsxs(Y,{onClick:c,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),"保存配置"]})]})]}),s.jsx("div",{className:"mb-6 bg-[#07C160]/10 border border-[#07C160]/30 rounded-xl p-4",children:s.jsxs("div",{className:"flex items-start gap-3",children:[s.jsx(Mj,{className:"w-5 h-5 text-[#07C160] flex-shrink-0 mt-0.5"}),s.jsxs("div",{className:"text-sm",children:[s.jsx("p",{className:"font-medium mb-2 text-[#07C160]",children:"如何获取微信群跳转链接?"}),s.jsxs("ol",{className:"text-[#07C160]/80 space-y-1 list-decimal list-inside",children:[s.jsx("li",{children:"打开微信,进入目标微信群"}),s.jsx("li",{children:'点击右上角"..." → "群二维码"'}),s.jsx("li",{children:'点击右上角"..." → "发送到电脑"'}),s.jsx("li",{children:"在电脑上保存二维码图片,上传到图床获取URL"}),s.jsx("li",{children:"或使用草料二维码等工具解析二维码获取链接"})]}),s.jsx("p",{className:"text-[#07C160]/60 mt-2",children:"提示:微信群二维码7天后失效,建议使用活码工具"})]})]})}),s.jsxs(Ic,{defaultValue:"wechat",className:"space-y-6",children:[s.jsxs(vl,{className:"bg-[#0f2137] border border-gray-700/50 p-1 grid grid-cols-4 w-full",children:[s.jsxs(nn,{value:"wechat",className:"data-[state=active]:bg-[#07C160]/20 data-[state=active]:text-[#07C160] text-gray-400",children:[s.jsx(gl,{className:"w-4 h-4 mr-2"}),"微信"]}),s.jsxs(nn,{value:"alipay",className:"data-[state=active]:bg-[#1677FF]/20 data-[state=active]:text-[#1677FF] text-gray-400",children:[s.jsx(h1,{className:"w-4 h-4 mr-2"}),"支付宝"]}),s.jsxs(nn,{value:"usdt",className:"data-[state=active]:bg-[#26A17B]/20 data-[state=active]:text-[#26A17B] text-gray-400",children:[s.jsx(d1,{className:"w-4 h-4 mr-2"}),"USDT"]}),s.jsxs(nn,{value:"paypal",className:"data-[state=active]:bg-[#003087]/20 data-[state=active]:text-[#169BD7] text-gray-400",children:[s.jsx(pg,{className:"w-4 h-4 mr-2"}),"PayPal"]})]}),s.jsx(sn,{value:"wechat",className:"space-y-4",children:s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"flex flex-row items-center justify-between pb-2",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsxs(ot,{className:"text-[#07C160] flex items-center gap-2",children:[s.jsx(gl,{className:"w-5 h-5"}),"微信支付配置"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置微信支付参数和跳转链接"})]}),s.jsx(Ut,{checked:!!y.enabled,onCheckedChange:k=>h("enabled",k)})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"网站AppID"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(y.websiteAppId??""),onChange:k=>h("websiteAppId",k.target.value)})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"商户号"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(y.merchantId??""),onChange:k=>h("merchantId",k.target.value)})]})]}),s.jsxs("div",{className:"border-t border-gray-700/50 pt-4 space-y-4",children:[s.jsxs("h4",{className:"text-white font-medium flex items-center gap-2",children:[s.jsx(wi,{className:"w-4 h-4 text-[#38bdac]"}),"跳转链接配置(核心功能)"]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"微信收款码/支付链接"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"https://收款码图片URL 或 weixin://支付链接",value:String(y.qrCode??""),onChange:k=>h("qrCode",k.target.value)}),s.jsx("p",{className:"text-xs text-gray-500",children:"用户点击微信支付后显示的二维码图片URL"})]}),s.jsxs("div",{className:"space-y-2 bg-[#07C160]/5 p-4 rounded-xl border border-[#07C160]/20",children:[s.jsx(ee,{className:"text-[#07C160] font-medium",children:"微信群跳转链接(支付成功后跳转)"}),s.jsx(ce,{className:"bg-[#0a1628] border-[#07C160]/30 text-white placeholder:text-gray-500",placeholder:"https://weixin.qq.com/g/... 或微信群二维码图片URL",value:String(y.groupQrCode??""),onChange:k=>h("groupQrCode",k.target.value)}),s.jsx("p",{className:"text-xs text-[#07C160]/70",children:"用户支付成功后将自动跳转到此链接,进入指定微信群"})]})]})]})]})}),s.jsx(sn,{value:"alipay",className:"space-y-4",children:s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"flex flex-row items-center justify-between pb-2",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsxs(ot,{className:"text-[#1677FF] flex items-center gap-2",children:[s.jsx(h1,{className:"w-5 h-5"}),"支付宝配置"]}),s.jsx(Yt,{className:"text-gray-400",children:"已加载真实支付宝参数"})]}),s.jsx(Ut,{checked:!!v.enabled,onCheckedChange:k=>f("enabled",k)})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"合作者身份 (PID)"}),s.jsxs("div",{className:"flex gap-2",children:[s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(v.partnerId??""),onChange:k=>f("partnerId",k.target.value)}),s.jsx(Y,{size:"icon",variant:"outline",className:"border-gray-700 bg-transparent",onClick:()=>u(String(v.partnerId??""),"pid"),children:a==="pid"?s.jsx(ip,{className:"w-4 h-4 text-green-500"}):s.jsx(Ij,{className:"w-4 h-4 text-gray-400"})})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"安全校验码 (Key)"}),s.jsx(ce,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(v.securityKey??""),onChange:k=>f("securityKey",k.target.value)})]})]}),s.jsxs("div",{className:"border-t border-gray-700/50 pt-4 space-y-4",children:[s.jsxs("h4",{className:"text-white font-medium flex items-center gap-2",children:[s.jsx(wi,{className:"w-4 h-4 text-[#38bdac]"}),"跳转链接配置"]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"支付宝收款码/跳转链接"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"https://qr.alipay.com/... 或收款码图片URL",value:String(v.qrCode??""),onChange:k=>f("qrCode",k.target.value)}),s.jsx("p",{className:"text-xs text-gray-500",children:"用户点击支付宝支付后显示的二维码"})]})]})]})]})}),s.jsx(sn,{value:"usdt",className:"space-y-4",children:s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"flex flex-row items-center justify-between pb-2",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsxs(ot,{className:"text-[#26A17B] flex items-center gap-2",children:[s.jsx(d1,{className:"w-5 h-5"}),"USDT配置"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置加密货币收款地址"})]}),s.jsx(Ut,{checked:!!N.enabled,onCheckedChange:k=>m("enabled",k)})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"网络类型"}),s.jsxs("select",{className:"w-full bg-[#0a1628] border border-gray-700 text-white rounded-md p-2",value:String(N.network??"TRC20"),onChange:k=>m("network",k.target.value),children:[s.jsx("option",{value:"TRC20",children:"TRC20 (波场)"}),s.jsx("option",{value:"ERC20",children:"ERC20 (以太坊)"}),s.jsx("option",{value:"BEP20",children:"BEP20 (币安链)"})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"收款地址"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",placeholder:"T... (TRC20地址)",value:String(N.address??""),onChange:k=>m("address",k.target.value)})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"汇率 (1 USD = ? CNY)"}),s.jsx(ce,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:Number(N.exchangeRate)??7.2,onChange:k=>m("exchangeRate",Number.parseFloat(k.target.value)||7.2)})]})]})]})}),s.jsx(sn,{value:"paypal",className:"space-y-4",children:s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{className:"flex flex-row items-center justify-between pb-2",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsxs(ot,{className:"text-[#169BD7] flex items-center gap-2",children:[s.jsx(pg,{className:"w-5 h-5"}),"PayPal配置"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置PayPal收款账户"})]}),s.jsx(Ut,{checked:!!w.enabled,onCheckedChange:k=>x("enabled",k)})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"PayPal邮箱"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"your@email.com",value:String(w.email??""),onChange:k=>x("email",k.target.value)})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"汇率 (1 USD = ? CNY)"}),s.jsx(ce,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:Number(w.exchangeRate)??7.2,onChange:k=>x("exchangeRate",Number(k.target.value)||7.2)})]})]})]})})]})]})}const dV={siteName:"卡若日记",siteTitle:"一场SOUL的创业实验场",siteDescription:"来自Soul派对房的真实商业故事",logo:"/logo.png",favicon:"/favicon.ico",primaryColor:"#00CED1"},uV={home:{enabled:!0,label:"首页"},chapters:{enabled:!0,label:"目录"},match:{enabled:!0,label:"匹配"},my:{enabled:!0,label:"我的"}},hV={homeTitle:"一场SOUL的创业实验场",homeSubtitle:"来自Soul派对房的真实商业故事",chaptersTitle:"我要看",matchTitle:"语音匹配",myTitle:"我的",aboutTitle:"关于作者"};function fV(){const[t,e]=b.useState({siteConfig:{...dV},menuConfig:{...uV},pageConfig:{...hV}}),[n,r]=b.useState(!1),[a,i]=b.useState(!1);b.useEffect(()=>{Le("/api/config").then(f=>{f!=null&&f.siteConfig&&e(m=>({...m,siteConfig:{...m.siteConfig,...f.siteConfig}})),f!=null&&f.menuConfig&&e(m=>({...m,menuConfig:{...m.menuConfig,...f.menuConfig}})),f!=null&&f.pageConfig&&e(m=>({...m,pageConfig:{...m.pageConfig,...f.pageConfig}}))}).catch(console.error)},[]);const o=async()=>{i(!0);try{await Et("/api/db/config",{key:"site_config",value:t.siteConfig,description:"网站基础配置"}),await Et("/api/db/config",{key:"menu_config",value:t.menuConfig,description:"底部菜单配置"}),await Et("/api/db/config",{key:"page_config",value:t.pageConfig,description:"页面标题配置"}),r(!0),setTimeout(()=>r(!1),2e3),ne.success("配置已保存")}catch(f){console.error(f),ne.error("保存失败: "+(f instanceof Error?f.message:String(f)))}finally{i(!1)}},c=t.siteConfig,u=t.menuConfig,h=t.pageConfig;return s.jsxs("div",{className:"p-8 w-full",children:[s.jsxs("div",{className:"flex justify-between items-center mb-8",children:[s.jsxs("div",{children:[s.jsx("h2",{className:"text-2xl font-bold text-white",children:"网站配置"}),s.jsx("p",{className:"text-gray-400 mt-1",children:"配置网站名称、图标、菜单和页面标题"})]}),s.jsxs(Y,{onClick:o,disabled:a,className:`${n?"bg-green-500":"bg-[#00CED1]"} hover:bg-[#20B2AA] text-white transition-colors`,children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),a?"保存中...":n?"已保存":"保存设置"]})]}),s.jsxs("div",{className:"space-y-6",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(pg,{className:"w-5 h-5 text-[#00CED1]"}),"网站基础信息"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置网站名称、标题和描述"})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{htmlFor:"site-name",className:"text-gray-300",children:"网站名称"}),s.jsx(ce,{id:"site-name",className:"bg-[#0a1628] border-gray-700 text-white",value:c.siteName??"",onChange:f=>e(m=>({...m,siteConfig:{...m.siteConfig,siteName:f.target.value}}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{htmlFor:"site-title",className:"text-gray-300",children:"网站标题"}),s.jsx(ce,{id:"site-title",className:"bg-[#0a1628] border-gray-700 text-white",value:c.siteTitle??"",onChange:f=>e(m=>({...m,siteConfig:{...m.siteConfig,siteTitle:f.target.value}}))})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{htmlFor:"site-desc",className:"text-gray-300",children:"网站描述"}),s.jsx(ce,{id:"site-desc",className:"bg-[#0a1628] border-gray-700 text-white",value:c.siteDescription??"",onChange:f=>e(m=>({...m,siteConfig:{...m.siteConfig,siteDescription:f.target.value}}))})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{htmlFor:"logo",className:"text-gray-300",children:"Logo地址"}),s.jsx(ce,{id:"logo",className:"bg-[#0a1628] border-gray-700 text-white",value:c.logo??"",onChange:f=>e(m=>({...m,siteConfig:{...m.siteConfig,logo:f.target.value}}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{htmlFor:"favicon",className:"text-gray-300",children:"Favicon地址"}),s.jsx(ce,{id:"favicon",className:"bg-[#0a1628] border-gray-700 text-white",value:c.favicon??"",onChange:f=>e(m=>({...m,siteConfig:{...m.siteConfig,favicon:f.target.value}}))})]})]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(EM,{className:"w-5 h-5 text-[#00CED1]"}),"主题颜色"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置网站主题色"})]}),s.jsx(_e,{children:s.jsxs("div",{className:"flex items-center gap-4",children:[s.jsxs("div",{className:"space-y-2 flex-1",children:[s.jsx(ee,{htmlFor:"primary-color",className:"text-gray-300",children:"主色调"}),s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(ce,{id:"primary-color",type:"color",className:"w-16 h-10 bg-[#0a1628] border-gray-700 cursor-pointer p-1",value:c.primaryColor??"#00CED1",onChange:f=>e(m=>({...m,siteConfig:{...m.siteConfig,primaryColor:f.target.value}}))}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white flex-1",value:c.primaryColor??"#00CED1",onChange:f=>e(m=>({...m,siteConfig:{...m.siteConfig,primaryColor:f.target.value}}))})]})]}),s.jsx("div",{className:"w-24 h-24 rounded-xl flex items-center justify-center text-white font-bold",style:{backgroundColor:c.primaryColor??"#00CED1"},children:"预览"})]})})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(NM,{className:"w-5 h-5 text-[#00CED1]"}),"底部菜单配置"]}),s.jsx(Yt,{className:"text-gray-400",children:"控制底部导航栏菜单的显示和名称"})]}),s.jsx(_e,{className:"space-y-4",children:Object.entries(u).map(([f,m])=>s.jsxs("div",{className:"flex items-center justify-between p-4 bg-[#0a1628] rounded-lg",children:[s.jsxs("div",{className:"flex items-center gap-4 flex-1",children:[s.jsx(Ut,{checked:(m==null?void 0:m.enabled)??!0,onCheckedChange:x=>e(y=>({...y,menuConfig:{...y.menuConfig,[f]:{...m,enabled:x}}}))}),s.jsx("span",{className:"text-gray-300 w-16 capitalize",children:f}),s.jsx(ce,{className:"bg-[#0f2137] border-gray-700 text-white max-w-[200px]",value:(m==null?void 0:m.label)??"",onChange:x=>e(y=>({...y,menuConfig:{...y.menuConfig,[f]:{...m,label:x.target.value}}}))})]}),s.jsx("span",{className:`text-sm ${m!=null&&m.enabled?"text-green-400":"text-gray-500"}`,children:m!=null&&m.enabled?"显示":"隐藏"})]},f))})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(Pj,{className:"w-5 h-5 text-[#00CED1]"}),"页面标题配置"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置各个页面的标题和副标题"})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"首页标题"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.homeTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,homeTitle:f.target.value}}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"首页副标题"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.homeSubtitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,homeSubtitle:f.target.value}}))})]})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"目录页标题"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.chaptersTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,chaptersTitle:f.target.value}}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"匹配页标题"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.matchTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,matchTitle:f.target.value}}))})]})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"我的页标题"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.myTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,myTitle:f.target.value}}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"关于作者标题"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.aboutTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,aboutTitle:f.target.value}}))})]})]})]})]})]})]})}function pV(){const[t,e]=b.useState(""),[n,r]=b.useState(""),[a,i]=b.useState(""),[o,c]=b.useState({}),u=async()=>{var y,v,N,w;try{const k=await Le("/api/config"),E=(v=(y=k==null?void 0:k.liveQRCodes)==null?void 0:y[0])==null?void 0:v.urls;Array.isArray(E)&&e(E.join(` +`));const C=(w=(N=k==null?void 0:k.paymentMethods)==null?void 0:N.wechat)==null?void 0:w.groupQrCode;C&&r(C),c({paymentMethods:k==null?void 0:k.paymentMethods,liveQRCodes:k==null?void 0:k.liveQRCodes})}catch(k){console.error(k)}};b.useEffect(()=>{u()},[]);const h=(y,v)=>{navigator.clipboard.writeText(y),i(v),setTimeout(()=>i(""),2e3)},f=async()=>{try{const y=t.split(` +`).map(N=>N.trim()).filter(Boolean),v=[...o.liveQRCodes||[]];v[0]?v[0].urls=y:v.push({id:"live-1",name:"微信群活码",urls:y,clickCount:0}),await Et("/api/db/config",{key:"live_qr_codes",value:v,description:"群活码配置"}),ne.success("群活码配置已保存!"),await u()}catch(y){console.error(y),ne.error("保存失败: "+(y instanceof Error?y.message:String(y)))}},m=async()=>{var y;try{await Et("/api/db/config",{key:"payment_methods",value:{...o.paymentMethods||{},wechat:{...((y=o.paymentMethods)==null?void 0:y.wechat)||{},groupQrCode:n}},description:"支付方式配置"}),ne.success("微信群链接已保存!用户支付成功后将自动跳转"),await u()}catch(v){console.error(v),ne.error("保存失败: "+(v instanceof Error?v.message:String(v)))}},x=()=>{n?window.open(n,"_blank"):ne.error("请先配置微信群链接")};return s.jsxs("div",{className:"p-8 w-full",children:[s.jsxs("div",{className:"mb-8",children:[s.jsx("h2",{className:"text-2xl font-bold text-white",children:"微信群活码管理"}),s.jsx("p",{className:"text-gray-400 mt-1",children:"配置微信群跳转链接,用户支付后自动跳转加群"})]}),s.jsx("div",{className:"mb-6 bg-[#07C160]/10 border border-[#07C160]/30 rounded-xl p-4",children:s.jsxs("div",{className:"flex items-start gap-3",children:[s.jsx(Mj,{className:"w-5 h-5 text-[#07C160] flex-shrink-0 mt-0.5"}),s.jsxs("div",{className:"text-sm",children:[s.jsx("p",{className:"font-medium mb-2 text-[#07C160]",children:"微信群活码配置指南"}),s.jsxs("div",{className:"text-[#07C160]/80 space-y-2",children:[s.jsx("p",{className:"font-medium",children:"方法一:使用草料活码(推荐)"}),s.jsxs("ol",{className:"list-decimal list-inside space-y-1 pl-2",children:[s.jsx("li",{children:"访问草料二维码创建活码"}),s.jsx("li",{children:"上传微信群二维码图片,生成永久链接"}),s.jsx("li",{children:"复制生成的短链接填入下方配置"}),s.jsx("li",{children:"群满后可直接在草料后台更换新群码,链接不变"})]}),s.jsx("p",{className:"font-medium mt-3",children:"方法二:直接使用微信群链接"}),s.jsxs("ol",{className:"list-decimal list-inside space-y-1 pl-2",children:[s.jsx("li",{children:'微信打开目标群 → 右上角"..." → 群二维码'}),s.jsx("li",{children:"长按二维码 → 识别二维码 → 复制链接"})]}),s.jsx("p",{className:"text-[#07C160]/60 mt-2",children:"注意:微信原生群二维码7天后失效,建议使用草料活码"})]})]})]})}),s.jsxs("div",{className:"grid gap-6 md:grid-cols-2",children:[s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl md:col-span-2",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-[#07C160] flex items-center gap-2",children:[s.jsx(x1,{className:"w-5 h-5"}),"支付成功跳转链接(核心配置)"]}),s.jsx(Yt,{className:"text-gray-400",children:"用户支付完成后自动跳转到此链接,进入指定微信群"})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[s.jsx(xg,{className:"w-4 h-4"}),"微信群链接 / 活码链接"]}),s.jsxs("div",{className:"flex gap-2",children:[s.jsx(ce,{placeholder:"https://cli.im/xxxxx 或 https://weixin.qq.com/g/...",className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500 flex-1",value:n,onChange:y=>r(y.target.value)}),s.jsx(Y,{variant:"outline",size:"icon",className:"border-gray-700 bg-transparent hover:bg-gray-700/50",onClick:()=>h(n,"group"),children:a==="group"?s.jsx(ip,{className:"w-4 h-4 text-green-500"}):s.jsx(Ij,{className:"w-4 h-4 text-gray-400"})})]}),s.jsxs("p",{className:"text-xs text-gray-500 flex items-center gap-1",children:[s.jsx(wi,{className:"w-3 h-3"}),"支持格式:草料短链、微信群链接(https://weixin.qq.com/g/...)、企业微信链接等"]})]}),s.jsxs("div",{className:"flex gap-3",children:[s.jsxs(Y,{onClick:m,className:"flex-1 bg-[#07C160] hover:bg-[#06AD51] text-white",children:[s.jsx(nf,{className:"w-4 h-4 mr-2"}),"保存配置"]}),s.jsxs(Y,{onClick:x,variant:"outline",className:"border-[#07C160] text-[#07C160] hover:bg-[#07C160]/10 bg-transparent",children:[s.jsx(wi,{className:"w-4 h-4 mr-2"}),"测试跳转"]})]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl md:col-span-2",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(x1,{className:"w-5 h-5 text-[#38bdac]"}),"多群轮换(高级配置)"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置多个群链接,系统自动轮换分配,避免单群满员"})]}),s.jsxs(_e,{className:"space-y-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[s.jsx(xg,{className:"w-4 h-4"}),"多个群链接(每行一个)"]}),s.jsx(To,{placeholder:"https://cli.im/group1\\nhttps://cli.im/group2",className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500 min-h-[120px] font-mono text-sm",value:t,onChange:y=>e(y.target.value)}),s.jsx("p",{className:"text-xs text-gray-500",children:"每行填写一个群链接,系统将按顺序或随机分配"})]}),s.jsxs("div",{className:"flex items-center justify-between p-3 bg-[#0a1628] rounded-lg border border-gray-700/50",children:[s.jsx("span",{className:"text-sm text-gray-400",children:"已配置群数量"}),s.jsxs("span",{className:"font-bold text-[#38bdac]",children:[t.split(` +`).filter(Boolean).length," 个"]})]}),s.jsxs(Y,{onClick:f,className:"w-full bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(nf,{className:"w-4 h-4 mr-2"}),"保存多群配置"]})]})]})]}),s.jsxs("div",{className:"mt-6 bg-[#0f2137] rounded-xl p-4 border border-gray-700/50",children:[s.jsx("h4",{className:"text-white font-medium mb-3",children:"常见问题"}),s.jsxs("div",{className:"space-y-3 text-sm",children:[s.jsxs("div",{children:[s.jsx("p",{className:"text-[#38bdac]",children:"Q: 为什么推荐使用草料活码?"}),s.jsx("p",{className:"text-gray-400",children:"A: 草料活码是永久链接,群满后可直接在后台更换新群码,无需修改网站配置。微信原生群码7天失效。"})]}),s.jsxs("div",{children:[s.jsx("p",{className:"text-[#38bdac]",children:"Q: 支付后没有跳转怎么办?"}),s.jsx("p",{className:"text-gray-400",children:"A: 1) 检查链接是否正确填写 2) 部分浏览器可能拦截弹窗,用户需手动允许 3) 建议使用https开头的链接"})]})]})]})]})}const aj={matchTypes:[{id:"partner",label:"创业合伙",matchLabel:"创业伙伴",icon:"⭐",matchFromDB:!0,showJoinAfterMatch:!1,price:1,enabled:!0},{id:"investor",label:"资源对接",matchLabel:"资源对接",icon:"👥",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0},{id:"mentor",label:"导师顾问",matchLabel:"导师顾问",icon:"❤️",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0},{id:"team",label:"团队招募",matchLabel:"加入项目",icon:"🎮",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}],freeMatchLimit:3,matchPrice:1,settings:{enableFreeMatches:!0,enablePaidMatches:!0,maxMatchesPerDay:10}},mV=["⭐","👥","❤️","🎮","💼","🚀","💡","🎯","🔥","✨"];function xV(){const[t,e]=b.useState(aj),[n,r]=b.useState(!0),[a,i]=b.useState(!1),[o,c]=b.useState(!1),[u,h]=b.useState(null),[f,m]=b.useState({id:"",label:"",matchLabel:"",icon:"⭐",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}),x=async()=>{r(!0);try{const C=await Le("/api/db/config/full?key=match_config"),R=(C==null?void 0:C.data)??(C==null?void 0:C.config);R&&e({...aj,...R})}catch(C){console.error("加载匹配配置失败:",C)}finally{r(!1)}};b.useEffect(()=>{x()},[]);const y=async()=>{i(!0);try{const C=await Et("/api/db/config",{key:"match_config",value:t,description:"匹配功能配置"});C&&C.success!==!1?ne.success("配置保存成功!"):ne.error("保存失败: "+(C&&typeof C=="object"&&"error"in C?C.error:"未知错误"))}catch(C){console.error("保存配置失败:",C),ne.error("保存失败")}finally{i(!1)}},v=C=>{h(C),m({id:C.id,label:C.label,matchLabel:C.matchLabel,icon:C.icon,matchFromDB:C.matchFromDB,showJoinAfterMatch:C.showJoinAfterMatch,price:C.price,enabled:C.enabled}),c(!0)},N=()=>{h(null),m({id:"",label:"",matchLabel:"",icon:"⭐",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}),c(!0)},w=()=>{if(!f.id||!f.label){ne.error("请填写类型ID和名称");return}const C=[...t.matchTypes];if(u){const R=C.findIndex(O=>O.id===u.id);R!==-1&&(C[R]={...f})}else{if(C.some(R=>R.id===f.id)){ne.error("类型ID已存在");return}C.push({...f})}e({...t,matchTypes:C}),c(!1)},k=C=>{confirm("确定要删除这个匹配类型吗?")&&e({...t,matchTypes:t.matchTypes.filter(R=>R.id!==C)})},E=C=>{e({...t,matchTypes:t.matchTypes.map(R=>R.id===C?{...R,enabled:!R.enabled}:R)})};return s.jsxs("div",{className:"p-8 w-full space-y-6",children:[s.jsxs("div",{className:"flex justify-between items-center",children:[s.jsxs("div",{children:[s.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[s.jsx(mo,{className:"w-6 h-6 text-[#38bdac]"}),"匹配功能配置"]}),s.jsx("p",{className:"text-gray-400 mt-1",children:"管理找伙伴功能的匹配类型和价格"})]}),s.jsxs("div",{className:"flex gap-3",children:[s.jsxs(Y,{variant:"outline",onClick:x,disabled:n,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${n?"animate-spin":""}`}),"刷新"]}),s.jsxs(Y,{onClick:y,disabled:a,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),a?"保存中...":"保存配置"]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(ji,{className:"w-5 h-5 text-yellow-400"}),"基础设置"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置免费匹配次数和付费规则"})]}),s.jsxs(_e,{className:"space-y-6",children:[s.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-6",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"每日免费匹配次数"}),s.jsx(ce,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:t.freeMatchLimit,onChange:C=>e({...t,freeMatchLimit:parseInt(C.target.value,10)||0})}),s.jsx("p",{className:"text-xs text-gray-500",children:"用户每天可免费匹配的次数"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"付费匹配价格(元)"}),s.jsx(ce,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:t.matchPrice,onChange:C=>e({...t,matchPrice:parseFloat(C.target.value)||1})}),s.jsx("p",{className:"text-xs text-gray-500",children:"免费次数用完后的单次匹配价格"})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"每日最大匹配次数"}),s.jsx(ce,{type:"number",min:1,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:t.settings.maxMatchesPerDay,onChange:C=>e({...t,settings:{...t.settings,maxMatchesPerDay:parseInt(C.target.value,10)||10}})}),s.jsx("p",{className:"text-xs text-gray-500",children:"包含免费和付费的总次数"})]})]}),s.jsxs("div",{className:"flex gap-8 pt-4 border-t border-gray-700/50",children:[s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Ut,{checked:t.settings.enableFreeMatches,onCheckedChange:C=>e({...t,settings:{...t.settings,enableFreeMatches:C}})}),s.jsx(ee,{className:"text-gray-300",children:"启用免费匹配"})]}),s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Ut,{checked:t.settings.enablePaidMatches,onCheckedChange:C=>e({...t,settings:{...t.settings,enablePaidMatches:C}})}),s.jsx(ee,{className:"text-gray-300",children:"启用付费匹配"})]})]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50",children:[s.jsxs(it,{className:"flex flex-row items-center justify-between",children:[s.jsxs("div",{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"}),"匹配类型管理"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置不同的匹配类型及其价格"})]}),s.jsxs(Y,{onClick:N,size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(Dn,{className:"w-4 h-4 mr-1"}),"添加类型"]})]}),s.jsx(_e,{children:s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"图标"}),s.jsx(ke,{className:"text-gray-400",children:"类型ID"}),s.jsx(ke,{className:"text-gray-400",children:"显示名称"}),s.jsx(ke,{className:"text-gray-400",children:"匹配标签"}),s.jsx(ke,{className:"text-gray-400",children:"价格"}),s.jsx(ke,{className:"text-gray-400",children:"数据库匹配"}),s.jsx(ke,{className:"text-gray-400",children:"状态"}),s.jsx(ke,{className:"text-right text-gray-400",children:"操作"})]})}),s.jsx(bs,{children:t.matchTypes.map(C=>s.jsxs(ht,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[s.jsx(be,{children:s.jsx("span",{className:"text-2xl",children:C.icon})}),s.jsx(be,{className:"font-mono text-gray-300",children:C.id}),s.jsx(be,{className:"text-white font-medium",children:C.label}),s.jsx(be,{className:"text-gray-300",children:C.matchLabel}),s.jsx(be,{children:s.jsxs(Ue,{className:"bg-yellow-500/20 text-yellow-400 hover:bg-yellow-500/20 border-0",children:["¥",C.price]})}),s.jsx(be,{children:C.matchFromDB?s.jsx(Ue,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"是"}):s.jsx(Ue,{variant:"outline",className:"text-gray-500 border-gray-600",children:"否"})}),s.jsx(be,{children:s.jsx(Ut,{checked:C.enabled,onCheckedChange:()=>E(C.id)})}),s.jsx(be,{className:"text-right",children:s.jsxs("div",{className:"flex items-center justify-end gap-1",children:[s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>v(C),className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",children:s.jsx(tn,{className:"w-4 h-4"})}),s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>k(C.id),className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",children:s.jsx(Ms,{className:"w-4 h-4"})})]})})]},C.id))})]})})]}),s.jsx(Bt,{open:o,onOpenChange:c,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",showCloseButton:!0,children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[u?s.jsx(tn,{className:"w-5 h-5 text-[#38bdac]"}):s.jsx(Dn,{className:"w-5 h-5 text-[#38bdac]"}),u?"编辑匹配类型":"添加匹配类型"]})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"类型ID(英文)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: partner",value:f.id,onChange:C=>m({...f,id:C.target.value}),disabled:!!u})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"图标"}),s.jsx("div",{className:"flex gap-1 flex-wrap",children:mV.map(C=>s.jsx("button",{type:"button",className:`w-8 h-8 text-lg rounded ${f.icon===C?"bg-[#38bdac]/30 ring-1 ring-[#38bdac]":"bg-[#0a1628]"}`,onClick:()=>m({...f,icon:C}),children:C},C))})]})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"显示名称"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 创业合伙",value:f.label,onChange:C=>m({...f,label:C.target.value})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"匹配标签"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 创业伙伴",value:f.matchLabel,onChange:C=>m({...f,matchLabel:C.target.value})})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"单次匹配价格(元)"}),s.jsx(ce,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:f.price,onChange:C=>m({...f,price:parseFloat(C.target.value)||1})})]}),s.jsxs("div",{className:"flex gap-6 pt-2",children:[s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Ut,{checked:f.matchFromDB,onCheckedChange:C=>m({...f,matchFromDB:C})}),s.jsx(ee,{className:"text-gray-300 text-sm",children:"从数据库匹配"})]}),s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Ut,{checked:f.showJoinAfterMatch,onCheckedChange:C=>m({...f,showJoinAfterMatch:C})}),s.jsx(ee,{className:"text-gray-300 text-sm",children:"匹配后显示加入"})]}),s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Ut,{checked:f.enabled,onCheckedChange:C=>m({...f,enabled:C})}),s.jsx(ee,{className:"text-gray-300 text-sm",children:"启用"})]})]})]}),s.jsxs(xn,{children:[s.jsx(Y,{variant:"outline",onClick:()=>c(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),s.jsxs(Y,{onClick:w,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),"保存"]})]})]})})]})}const ij={partner:"找伙伴",investor:"资源对接",mentor:"导师顾问",team:"团队招募"};function gV(){const[t,e]=b.useState([]),[n,r]=b.useState(0),[a,i]=b.useState(1),[o,c]=b.useState(10),[u,h]=b.useState(""),[f,m]=b.useState(!0),[x,y]=b.useState(null);async function v(){m(!0),y(null);try{const w=new URLSearchParams({page:String(a),pageSize:String(o)});u&&w.set("matchType",u);const k=await Le(`/api/db/match-records?${w}`);k!=null&&k.success?(e(k.records||[]),r(k.total??0)):y("加载匹配记录失败")}catch(w){console.error("加载匹配记录失败",w),y("加载失败,请检查网络后重试")}finally{m(!1)}}b.useEffect(()=>{v()},[a,u]);const N=Math.ceil(n/o)||1;return s.jsxs("div",{className:"p-8 w-full",children:[x&&s.jsxs("div",{className:"mb-4 px-4 py-3 rounded-lg bg-red-500/20 border border-red-500/50 text-red-400 text-sm flex items-center justify-between",children:[s.jsx("span",{children:x}),s.jsx("button",{type:"button",onClick:()=>y(null),className:"hover:text-red-300",children:"×"})]}),s.jsxs("div",{className:"flex justify-between items-center mb-8",children:[s.jsxs("div",{children:[s.jsx("h2",{className:"text-2xl font-bold text-white",children:"匹配记录"}),s.jsxs("p",{className:"text-gray-400 mt-1",children:["找伙伴匹配统计,共 ",n," 条记录"]})]}),s.jsxs("div",{className:"flex items-center gap-4",children:[s.jsxs("select",{value:u,onChange:w=>{h(w.target.value),i(1)},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:[s.jsx("option",{value:"",children:"全部类型"}),Object.entries(ij).map(([w,k])=>s.jsx("option",{value:w,children:k},w))]}),s.jsxs("button",{type:"button",onClick:v,disabled:f,className:"flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-600 text-gray-300 hover:bg-gray-700/50 transition-colors disabled:opacity-50",children:[s.jsx(Ve,{className:`w-4 h-4 ${f?"animate-spin":""}`}),"刷新"]})]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:s.jsx(_e,{className:"p-0",children:f?s.jsxs("div",{className:"flex justify-center py-12",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):s.jsxs(s.Fragment,{children:[s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"发起人"}),s.jsx(ke,{className:"text-gray-400",children:"匹配到"}),s.jsx(ke,{className:"text-gray-400",children:"类型"}),s.jsx(ke,{className:"text-gray-400",children:"联系方式"}),s.jsx(ke,{className:"text-gray-400",children:"匹配时间"})]})}),s.jsxs(bs,{children:[t.map(w=>s.jsxs(ht,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[s.jsx(be,{children:s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsxs("div",{className:"w-9 h-9 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm font-medium text-[#38bdac] flex-shrink-0 overflow-hidden",children:[w.userAvatar?s.jsx("img",{src:So(w.userAvatar),alt:"",className:"w-full h-full object-cover",onError:k=>{k.currentTarget.style.display="none";const E=k.currentTarget.nextElementSibling;E&&E.classList.remove("hidden")}}):null,s.jsx("span",{className:w.userAvatar?"hidden":"",children:(w.userNickname||w.userId||"?").charAt(0)})]}),s.jsxs("div",{children:[s.jsx("div",{className:"text-white",children:w.userNickname||w.userId}),s.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:[w.userId.slice(0,16),"..."]})]})]})}),s.jsx(be,{children:s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsxs("div",{className:"w-9 h-9 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm font-medium text-[#38bdac] flex-shrink-0 overflow-hidden",children:[w.matchedUserAvatar?s.jsx("img",{src:So(w.matchedUserAvatar),alt:"",className:"w-full h-full object-cover",onError:k=>{k.currentTarget.style.display="none";const E=k.currentTarget.nextElementSibling;E&&E.classList.remove("hidden")}}):null,s.jsx("span",{className:w.matchedUserAvatar?"hidden":"",children:(w.matchedNickname||w.matchedUserId||"?").charAt(0)})]}),s.jsxs("div",{children:[s.jsx("div",{className:"text-white",children:w.matchedNickname||w.matchedUserId}),s.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:[w.matchedUserId.slice(0,16),"..."]})]})]})}),s.jsx(be,{children:s.jsx(Ue,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0",children:ij[w.matchType]||w.matchType})}),s.jsxs(be,{className:"text-gray-400 text-sm",children:[w.phone&&s.jsxs("div",{children:["📱 ",w.phone]}),w.wechatId&&s.jsxs("div",{children:["💬 ",w.wechatId]}),!w.phone&&!w.wechatId&&"-"]}),s.jsx(be,{className:"text-gray-400",children:w.createdAt?new Date(w.createdAt).toLocaleString():"-"})]},w.id)),t.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:5,className:"text-center py-12 text-gray-500",children:"暂无匹配记录"})})]})]}),s.jsx(sr,{page:a,totalPages:N,total:n,pageSize:o,onPageChange:i,onPageSizeChange:w=>{c(w),i(1)}})]})})})]})}function yV(){const[t,e]=b.useState([]),[n,r]=b.useState(!0);async function a(){r(!0);try{const i=await Le("/api/db/vip-members?limit=100");if(i!=null&&i.success&&i.data){const o=[...i.data].map((c,u)=>({...c,vipSort:typeof c.vipSort=="number"?c.vipSort:u+1}));o.sort((c,u)=>(c.vipSort??999999)-(u.vipSort??999999)),e(o)}}catch(i){console.error("Load VIP members error:",i),ne.error("加载 VIP 成员失败")}finally{r(!1)}}return b.useEffect(()=>{a()},[]),s.jsxs("div",{className:"p-8 w-full",children:[s.jsx("div",{className:"flex justify-between items-center mb-8",children:s.jsxs("div",{children:[s.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[s.jsx(wc,{className:"w-5 h-5 text-amber-400"}),"用户管理 / 超级个体列表"]}),s.jsx("p",{className:"text-gray-400 mt-1",children:"这里展示所有有效超级个体用户,仅用于查看其基本信息与排序值。"})]})}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsx(_e,{className:"p-0",children:n?s.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400 w-20",children:"序号"}),s.jsx(ke,{className:"text-gray-400",children:"成员"}),s.jsx(ke,{className:"text-gray-400 w-40",children:"超级个体"}),s.jsx(ke,{className:"text-gray-400 w-28",children:"排序值"})]})}),s.jsxs(bs,{children:[t.map((i,o)=>{var c;return s.jsxs(ht,{className:"border-gray-700/50",children:[s.jsx(be,{className:"text-gray-300",children:o+1}),s.jsx(be,{children:s.jsxs("div",{className:"flex items-center gap-3",children:[i.avatar?s.jsx("img",{src:So(i.avatar),className:"w-8 h-8 rounded-full object-cover border border-amber-400/60"}):s.jsx("div",{className:"w-8 h-8 rounded-full bg-amber-500/20 border border-amber-400/60 flex items-center justify-center text-amber-300 text-sm",children:((c=i.name)==null?void 0:c[0])||"创"}),s.jsx("div",{className:"min-w-0",children:s.jsx("div",{className:"text-white text-sm truncate",children:i.name})})]})}),s.jsx(be,{className:"text-gray-300",children:i.vipRole||s.jsx("span",{className:"text-gray-500",children:"(未设置超级个体)"})}),s.jsx(be,{className:"text-gray-300",children:i.vipSort??o+1})]},i.id)}),t.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:5,className:"text-center py-12 text-gray-500",children:"当前没有有效的超级个体用户。"})})]})]})})})]})}function w4(t){const e=La(),[n,r]=b.useState([]),[a,i]=b.useState(!0),[o,c]=b.useState(!1),[u,h]=b.useState(null),[f,m]=b.useState({name:"",avatar:"",intro:"",tags:"",priceSingle:"",priceHalfYear:"",priceYear:"",quote:"",whyFind:"",offering:"",judgmentStyle:"",sort:0,enabled:!0}),[x,y]=b.useState(!1),[v,N]=b.useState(!1),w=b.useRef(null),k=async I=>{var Q;const te=(Q=I.target.files)==null?void 0:Q[0];if(te){N(!0);try{const B=new FormData;B.append("file",te),B.append("folder","mentors");const re=hu(),ae={};re&&(ae.Authorization=`Bearer ${re}`);const F=await(await fetch(Ac("/api/upload"),{method:"POST",body:B,credentials:"include",headers:ae})).json();F!=null&&F.success&&(F!=null&&F.url)?m(D=>({...D,avatar:F.url})):ne.error("上传失败: "+((F==null?void 0:F.error)||"未知错误"))}catch(B){console.error(B),ne.error("上传失败")}finally{N(!1),w.current&&(w.current.value="")}}};async function E(){i(!0);try{const I=await Le("/api/db/mentors");I!=null&&I.success&&I.data&&r(I.data)}catch(I){console.error("Load mentors error:",I)}finally{i(!1)}}b.useEffect(()=>{E()},[]);const C=()=>{m({name:"",avatar:"",intro:"",tags:"",priceSingle:"",priceHalfYear:"",priceYear:"",quote:"",whyFind:"",offering:"",judgmentStyle:"",sort:n.length>0?Math.max(...n.map(I=>I.sort))+1:0,enabled:!0})},R=()=>{h(null),C(),c(!0)},O=I=>{h(I),m({name:I.name,avatar:I.avatar||"",intro:I.intro||"",tags:I.tags||"",priceSingle:I.priceSingle!=null?String(I.priceSingle):"",priceHalfYear:I.priceHalfYear!=null?String(I.priceHalfYear):"",priceYear:I.priceYear!=null?String(I.priceYear):"",quote:I.quote||"",whyFind:I.whyFind||"",offering:I.offering||"",judgmentStyle:I.judgmentStyle||"",sort:I.sort,enabled:I.enabled??!0}),c(!0)},q=async()=>{if(!f.name.trim()){ne.error("导师姓名不能为空");return}y(!0);try{const I=Q=>Q===""?void 0:parseFloat(Q),te={name:f.name.trim(),avatar:f.avatar.trim()||void 0,intro:f.intro.trim()||void 0,tags:f.tags.trim()||void 0,priceSingle:I(f.priceSingle),priceHalfYear:I(f.priceHalfYear),priceYear:I(f.priceYear),quote:f.quote.trim()||void 0,whyFind:f.whyFind.trim()||void 0,offering:f.offering.trim()||void 0,judgmentStyle:f.judgmentStyle.trim()||void 0,sort:f.sort,enabled:f.enabled};if(u){const Q=await Zt("/api/db/mentors",{id:u.id,...te});Q!=null&&Q.success?(c(!1),E()):ne.error("更新失败: "+(Q==null?void 0:Q.error))}else{const Q=await Et("/api/db/mentors",te);Q!=null&&Q.success?(c(!1),E()):ne.error("新增失败: "+(Q==null?void 0:Q.error))}}catch(I){console.error("Save error:",I),ne.error("保存失败")}finally{y(!1)}},$=async I=>{if(confirm("确定删除该导师?"))try{const te=await gi(`/api/db/mentors?id=${I}`);te!=null&&te.success?E():ne.error("删除失败: "+(te==null?void 0:te.error))}catch(te){console.error("Delete error:",te),ne.error("删除失败")}},V=I=>I!=null?`¥${I}`:"-";return s.jsxs("div",{className:"p-8 w-full",children:[s.jsxs("div",{className:"flex justify-between items-center mb-8",children:[s.jsxs("div",{children:[s.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[s.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"}),"导师管理"]}),s.jsx("p",{className:"text-gray-400 mt-1",children:"stitch_soul 导师列表,支持每个导师独立配置单次/半年/年度价格"})]}),s.jsxs(Y,{onClick:R,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(Dn,{className:"w-4 h-4 mr-2"}),"新增导师"]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsx(_e,{className:"p-0",children:a?s.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"ID"}),s.jsx(ke,{className:"text-gray-400",children:"姓名"}),s.jsx(ke,{className:"text-gray-400",children:"简介"}),s.jsx(ke,{className:"text-gray-400",children:"单次"}),s.jsx(ke,{className:"text-gray-400",children:"半年"}),s.jsx(ke,{className:"text-gray-400",children:"年度"}),s.jsx(ke,{className:"text-gray-400",children:"排序"}),s.jsx(ke,{className:"text-right text-gray-400",children:"操作"})]})}),s.jsxs(bs,{children:[n.map(I=>s.jsxs(ht,{className:"border-gray-700/50",children:[s.jsx(be,{className:"text-gray-300",children:I.id}),s.jsx(be,{children:s.jsxs("button",{type:"button",onClick:()=>e(`/users?search=${encodeURIComponent(I.name)}`),className:"text-[#38bdac] hover:text-[#2da396] hover:underline flex items-center gap-1",title:"在用户管理中查看",children:[I.name,s.jsx(wi,{className:"w-3 h-3"})]})}),s.jsx(be,{className:"text-gray-400 max-w-[200px] truncate",children:I.intro||"-"}),s.jsx(be,{className:"text-gray-400",children:V(I.priceSingle)}),s.jsx(be,{className:"text-gray-400",children:V(I.priceHalfYear)}),s.jsx(be,{className:"text-gray-400",children:V(I.priceYear)}),s.jsx(be,{className:"text-gray-400",children:I.sort}),s.jsxs(be,{className:"text-right",children:[s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>O(I),className:"text-gray-400 hover:text-[#38bdac]",children:s.jsx(tn,{className:"w-4 h-4"})}),s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>$(I.id),className:"text-gray-400 hover:text-red-400",children:s.jsx(Ms,{className:"w-4 h-4"})})]})]},I.id)),n.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:8,className:"text-center py-12 text-gray-500",children:"暂无导师,点击「新增导师」添加"})})]})]})})}),s.jsx(Bt,{open:o,onOpenChange:c,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg max-h-[90vh] overflow-y-auto",children:[s.jsx(Vt,{children:s.jsx(Ht,{className:"text-white",children:u?"编辑导师":"新增导师"})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"姓名 *"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:卡若",value:f.name,onChange:I=>m(te=>({...te,name:I.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"排序"}),s.jsx(ce,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:f.sort,onChange:I=>m(te=>({...te,sort:parseInt(I.target.value,10)||0}))})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"头像"}),s.jsxs("div",{className:"flex gap-3 items-center",children:[s.jsx(ce,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:f.avatar,onChange:I=>m(te=>({...te,avatar:I.target.value})),placeholder:"点击上传或粘贴图片地址"}),s.jsx("input",{ref:w,type:"file",accept:"image/*",className:"hidden",onChange:k}),s.jsxs(Y,{type:"button",variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 shrink-0",disabled:v,onClick:()=>{var I;return(I=w.current)==null?void 0:I.click()},children:[s.jsx(nf,{className:"w-4 h-4 mr-2"}),v?"上传中...":"上传"]})]}),f.avatar&&s.jsx("div",{className:"mt-2",children:s.jsx("img",{src:So(f.avatar.startsWith("http")?f.avatar:Ac(f.avatar)),alt:"头像预览",className:"w-20 h-20 rounded-full object-cover border border-gray-600"})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"简介"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:结构判断型咨询 · Decision > Execution",value:f.intro,onChange:I=>m(te=>({...te,intro:I.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"技能标签(逗号分隔)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:项目结构判断、风险止损、人×项目匹配",value:f.tags,onChange:I=>m(te=>({...te,tags:I.target.value}))})]}),s.jsxs("div",{className:"border-t border-gray-700 pt-4",children:[s.jsx(ee,{className:"text-gray-300 block mb-2",children:"价格配置(每个导师独立)"}),s.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"单次咨询 ¥"}),s.jsx(ce,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"980",value:f.priceSingle,onChange:I=>m(te=>({...te,priceSingle:I.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"半年咨询 ¥"}),s.jsx(ce,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"19800",value:f.priceHalfYear,onChange:I=>m(te=>({...te,priceHalfYear:I.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"年度咨询 ¥"}),s.jsx(ce,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"29800",value:f.priceYear,onChange:I=>m(te=>({...te,priceYear:I.target.value}))})]})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"引言"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:大多数人失败,不是因为不努力...",value:f.quote,onChange:I=>m(te=>({...te,quote:I.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"为什么找(文本)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"",value:f.whyFind,onChange:I=>m(te=>({...te,whyFind:I.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"提供什么(文本)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"",value:f.offering,onChange:I=>m(te=>({...te,offering:I.target.value}))})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"判断风格(逗号分隔)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:冷静、克制、偏风险视角",value:f.judgmentStyle,onChange:I=>m(te=>({...te,judgmentStyle:I.target.value}))})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("input",{type:"checkbox",id:"enabled",checked:f.enabled,onChange:I=>m(te=>({...te,enabled:I.target.checked})),className:"rounded border-gray-600 bg-[#0a1628]"}),s.jsx(ee,{htmlFor:"enabled",className:"text-gray-300 cursor-pointer",children:"上架(小程序可见)"})]})]}),s.jsxs(xn,{children:[s.jsxs(Y,{variant:"outline",onClick:()=>c(!1),className:"border-gray-600 text-gray-300",children:[s.jsx(ss,{className:"w-4 h-4 mr-2"}),"取消"]}),s.jsxs(Y,{onClick:q,disabled:x,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"}),x?"保存中...":"保存"]})]})]})})]})}function bV(){const[t,e]=b.useState([]),[n,r]=b.useState(!0),[a,i]=b.useState("");async function o(){r(!0);try{const h=a?`/api/db/mentor-consultations?status=${a}`:"/api/db/mentor-consultations",f=await Le(h);f!=null&&f.success&&f.data&&e(f.data)}catch(h){console.error("Load consultations error:",h)}finally{r(!1)}}b.useEffect(()=>{o()},[a]);const c={created:"已创建",pending_pay:"待支付",paid:"已支付",completed:"已完成",cancelled:"已取消"},u={single:"单次",half_year:"半年",year:"年度"};return s.jsxs("div",{className:"p-8 w-full",children:[s.jsxs("div",{className:"flex justify-between items-center mb-8",children:[s.jsxs("div",{children:[s.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[s.jsx(dg,{className:"w-5 h-5 text-[#38bdac]"}),"导师预约列表"]}),s.jsx("p",{className:"text-gray-400 mt-1",children:"stitch_soul 导师咨询预约记录"})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsxs("select",{value:a,onChange:h=>i(h.target.value),className:"bg-[#0f2137] border border-gray-700 rounded-lg px-3 py-2 text-gray-300 text-sm",children:[s.jsx("option",{value:"",children:"全部状态"}),Object.entries(c).map(([h,f])=>s.jsx("option",{value:h,children:f},h))]}),s.jsxs(Y,{onClick:o,disabled:n,variant:"outline",className:"border-gray-600 text-gray-300",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${n?"animate-spin":""}`}),"刷新"]})]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsx(_e,{className:"p-0",children:n?s.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"ID"}),s.jsx(ke,{className:"text-gray-400",children:"用户ID"}),s.jsx(ke,{className:"text-gray-400",children:"导师ID"}),s.jsx(ke,{className:"text-gray-400",children:"类型"}),s.jsx(ke,{className:"text-gray-400",children:"金额"}),s.jsx(ke,{className:"text-gray-400",children:"状态"}),s.jsx(ke,{className:"text-gray-400",children:"创建时间"})]})}),s.jsxs(bs,{children:[t.map(h=>s.jsxs(ht,{className:"border-gray-700/50",children:[s.jsx(be,{className:"text-gray-300",children:h.id}),s.jsx(be,{className:"text-gray-400",children:h.userId}),s.jsx(be,{className:"text-gray-400",children:h.mentorId}),s.jsx(be,{className:"text-gray-400",children:u[h.consultationType]||h.consultationType}),s.jsxs(be,{className:"text-white",children:["¥",h.amount]}),s.jsx(be,{className:"text-gray-400",children:c[h.status]||h.status}),s.jsx(be,{className:"text-gray-500 text-sm",children:h.createdAt})]},h.id)),t.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:7,className:"text-center py-12 text-gray-500",children:"暂无预约记录"})})]})]})})})]})}const Od={poolSource:["vip"],requirePhone:!0,requireNickname:!0,requireAvatar:!1,requireBusiness:!1},oj={matchTypes:[{id:"partner",label:"找伙伴",matchLabel:"找伙伴",icon:"⭐",matchFromDB:!0,showJoinAfterMatch:!1,price:1,enabled:!0},{id:"investor",label:"资源对接",matchLabel:"资源对接",icon:"👥",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0},{id:"mentor",label:"导师顾问",matchLabel:"导师顾问",icon:"❤️",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0},{id:"team",label:"团队招募",matchLabel:"加入项目",icon:"🎮",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}],freeMatchLimit:3,matchPrice:1,settings:{enableFreeMatches:!0,enablePaidMatches:!0,maxMatchesPerDay:10},poolSettings:Od},vV=["⭐","👥","❤️","🎮","💼","🚀","💡","🎯","🔥","✨"];function NV(){const t=La(),[e,n]=b.useState(oj),[r,a]=b.useState(!0),[i,o]=b.useState(!1),[c,u]=b.useState(!1),[h,f]=b.useState(null),[m,x]=b.useState({id:"",label:"",matchLabel:"",icon:"⭐",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}),[y,v]=b.useState(null),[N,w]=b.useState(!1),k=async()=>{w(!0);try{const I=await Le("/api/db/match-pool-counts");I!=null&&I.success&&I.data&&v(I.data)}catch(I){console.error("加载池子人数失败:",I)}finally{w(!1)}},E=async()=>{a(!0);try{const I=await Le("/api/db/config/full?key=match_config"),te=(I==null?void 0:I.data)??(I==null?void 0:I.config);if(te){let Q=te.poolSettings??Od;Q.poolSource&&!Array.isArray(Q.poolSource)&&(Q={...Q,poolSource:[Q.poolSource]}),n({...oj,...te,poolSettings:Q})}}catch(I){console.error("加载匹配配置失败:",I)}finally{a(!1)}};b.useEffect(()=>{E(),k()},[]);const C=async()=>{o(!0);try{const I=await Et("/api/db/config",{key:"match_config",value:e,description:"匹配功能配置"});ne.error((I==null?void 0:I.success)!==!1?"配置保存成功!":"保存失败: "+((I==null?void 0:I.error)||"未知错误"))}catch(I){console.error(I),ne.error("保存失败")}finally{o(!1)}},R=I=>{f(I),x({...I}),u(!0)},O=()=>{f(null),x({id:"",label:"",matchLabel:"",icon:"⭐",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}),u(!0)},q=()=>{if(!m.id||!m.label){ne.error("请填写类型ID和名称");return}const I=[...e.matchTypes];if(h){const te=I.findIndex(Q=>Q.id===h.id);te!==-1&&(I[te]={...m})}else{if(I.some(te=>te.id===m.id)){ne.error("类型ID已存在");return}I.push({...m})}n({...e,matchTypes:I}),u(!1)},$=I=>{confirm("确定要删除这个匹配类型吗?")&&n({...e,matchTypes:e.matchTypes.filter(te=>te.id!==I)})},V=I=>{n({...e,matchTypes:e.matchTypes.map(te=>te.id===I?{...te,enabled:!te.enabled}:te)})};return s.jsxs("div",{className:"space-y-6",children:[s.jsxs("div",{className:"flex justify-end gap-3",children:[s.jsxs(Y,{variant:"outline",onClick:E,disabled:r,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${r?"animate-spin":""}`})," 刷新"]}),s.jsxs(Y,{onClick:C,disabled:i,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"})," ",i?"保存中...":"保存配置"]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(Rj,{className:"w-5 h-5 text-blue-400"})," 匹配池选择"]}),s.jsx(Yt,{className:"text-gray-400",children:"选择匹配的用户池和完善程度要求,只有满足条件的用户才可被匹配到"})]}),s.jsxs(_e,{className:"space-y-6",children:[s.jsxs("div",{className:"space-y-3",children:[s.jsx(ee,{className:"text-gray-300",children:"匹配来源池"}),s.jsx("p",{className:"text-gray-500 text-xs",children:"可同时勾选多个池子(取并集匹配)"}),s.jsx("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-3",children:[{value:"vip",label:"超级个体(VIP会员)",desc:"付费 ¥1980 的VIP会员",icon:"👑",countKey:"vip"},{value:"complete",label:"完善资料用户",desc:"符合下方完善度要求的用户",icon:"✅",countKey:"complete"},{value:"all",label:"全部用户",desc:"所有已注册用户",icon:"👥",countKey:"all"}].map(I=>{const te=e.poolSettings??Od,B=(Array.isArray(te.poolSource)?te.poolSource:[te.poolSource]).includes(I.value),re=y==null?void 0:y[I.countKey],ae=()=>{const J=Array.isArray(te.poolSource)?[...te.poolSource]:[te.poolSource],F=B?J.filter(D=>D!==I.value):[...J,I.value];F.length===0&&F.push(I.value),n({...e,poolSettings:{...te,poolSource:F}})};return s.jsxs("button",{type:"button",onClick:ae,className:`p-4 rounded-lg border text-left transition-all ${B?"border-[#38bdac] bg-[#38bdac]/10":"border-gray-700 bg-[#0a1628] hover:border-gray-600"}`,children:[s.jsxs("div",{className:"flex items-center justify-between",children:[s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("div",{className:`w-5 h-5 rounded border-2 flex items-center justify-center text-xs ${B?"border-[#38bdac] bg-[#38bdac] text-white":"border-gray-600"}`,children:B&&"✓"}),s.jsx("span",{className:"text-xl",children:I.icon}),s.jsx("span",{className:`text-sm font-medium ${B?"text-[#38bdac]":"text-gray-300"}`,children:I.label})]}),s.jsxs("span",{className:"text-lg font-bold text-white",children:[N?"...":re??"-",s.jsx("span",{className:"text-xs text-gray-500 font-normal ml-1",children:"人"})]})]}),s.jsx("p",{className:"text-gray-500 text-xs mt-2",children:I.desc}),s.jsx("span",{role:"link",tabIndex:0,onClick:J=>{J.stopPropagation(),t(`/users?pool=${I.value}`)},onKeyDown:J=>{J.key==="Enter"&&(J.stopPropagation(),t(`/users?pool=${I.value}`))},className:"text-[#38bdac] text-xs mt-2 inline-block hover:underline cursor-pointer",children:"查看用户列表 →"})]},I.value)})})]}),s.jsxs("div",{className:"space-y-3 pt-4 border-t border-gray-700/50",children:[s.jsx(ee,{className:"text-gray-300",children:"用户资料完善要求(被匹配用户必须满足以下条件)"}),s.jsx("div",{className:"grid grid-cols-2 md:grid-cols-4 gap-4",children:[{key:"requirePhone",label:"有手机号",icon:"📱"},{key:"requireNickname",label:"有昵称",icon:"👤"},{key:"requireAvatar",label:"有头像",icon:"🖼️"},{key:"requireBusiness",label:"有业务需求",icon:"💼"}].map(I=>{const Q=(e.poolSettings??Od)[I.key];return s.jsxs("div",{className:"flex items-center gap-3 bg-[#0a1628] rounded-lg p-3",children:[s.jsx(Ut,{checked:Q,onCheckedChange:B=>n({...e,poolSettings:{...e.poolSettings??Od,[I.key]:B}})}),s.jsxs("div",{className:"flex items-center gap-1.5",children:[s.jsx("span",{children:I.icon}),s.jsx(ee,{className:"text-gray-300 text-sm",children:I.label})]})]},I.key)})})]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50",children:[s.jsxs(it,{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(ji,{className:"w-5 h-5 text-yellow-400"})," 基础设置"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置免费匹配次数和付费规则"})]}),s.jsxs(_e,{className:"space-y-6",children:[s.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-6",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"每日免费匹配次数"}),s.jsx(ce,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.freeMatchLimit,onChange:I=>n({...e,freeMatchLimit:parseInt(I.target.value,10)||0})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"付费匹配价格(元)"}),s.jsx(ce,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:e.matchPrice,onChange:I=>n({...e,matchPrice:parseFloat(I.target.value)||1})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"每日最大匹配次数"}),s.jsx(ce,{type:"number",min:1,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.settings.maxMatchesPerDay,onChange:I=>n({...e,settings:{...e.settings,maxMatchesPerDay:parseInt(I.target.value,10)||10}})})]})]}),s.jsxs("div",{className:"flex gap-8 pt-4 border-t border-gray-700/50",children:[s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Ut,{checked:e.settings.enableFreeMatches,onCheckedChange:I=>n({...e,settings:{...e.settings,enableFreeMatches:I}})}),s.jsx(ee,{className:"text-gray-300",children:"启用免费匹配"})]}),s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Ut,{checked:e.settings.enablePaidMatches,onCheckedChange:I=>n({...e,settings:{...e.settings,enablePaidMatches:I}})}),s.jsx(ee,{className:"text-gray-300",children:"启用付费匹配"})]})]})]})]}),s.jsxs(De,{className:"bg-[#0f2137] border-gray-700/50",children:[s.jsxs(it,{className:"flex flex-row items-center justify-between",children:[s.jsxs("div",{children:[s.jsxs(ot,{className:"text-white flex items-center gap-2",children:[s.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"})," 匹配类型管理"]}),s.jsx(Yt,{className:"text-gray-400",children:"配置不同的匹配类型及其价格"})]}),s.jsxs(Y,{onClick:O,size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(Dn,{className:"w-4 h-4 mr-1"})," 添加类型"]})]}),s.jsx(_e,{children:s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"图标"}),s.jsx(ke,{className:"text-gray-400",children:"类型ID"}),s.jsx(ke,{className:"text-gray-400",children:"显示名称"}),s.jsx(ke,{className:"text-gray-400",children:"匹配标签"}),s.jsx(ke,{className:"text-gray-400",children:"价格"}),s.jsx(ke,{className:"text-gray-400",children:"数据库匹配"}),s.jsx(ke,{className:"text-gray-400",children:"状态"}),s.jsx(ke,{className:"text-right text-gray-400",children:"操作"})]})}),s.jsx(bs,{children:e.matchTypes.map(I=>s.jsxs(ht,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[s.jsx(be,{children:s.jsx("span",{className:"text-2xl",children:I.icon})}),s.jsx(be,{className:"font-mono text-gray-300",children:I.id}),s.jsx(be,{className:"text-white font-medium",children:I.label}),s.jsx(be,{className:"text-gray-300",children:I.matchLabel}),s.jsx(be,{children:s.jsxs(Ue,{className:"bg-yellow-500/20 text-yellow-400 hover:bg-yellow-500/20 border-0",children:["¥",I.price]})}),s.jsx(be,{children:I.matchFromDB?s.jsx(Ue,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"是"}):s.jsx(Ue,{variant:"outline",className:"text-gray-500 border-gray-600",children:"否"})}),s.jsx(be,{children:s.jsx(Ut,{checked:I.enabled,onCheckedChange:()=>V(I.id)})}),s.jsx(be,{className:"text-right",children:s.jsxs("div",{className:"flex items-center justify-end gap-1",children:[s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>R(I),className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",children:s.jsx(tn,{className:"w-4 h-4"})}),s.jsx(Y,{variant:"ghost",size:"sm",onClick:()=>$(I.id),className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",children:s.jsx(Ms,{className:"w-4 h-4"})})]})})]},I.id))})]})})]}),s.jsx(Bt,{open:c,onOpenChange:u,children:s.jsxs(zt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",showCloseButton:!0,children:[s.jsx(Vt,{children:s.jsxs(Ht,{className:"text-white flex items-center gap-2",children:[h?s.jsx(tn,{className:"w-5 h-5 text-[#38bdac]"}):s.jsx(Dn,{className:"w-5 h-5 text-[#38bdac]"}),h?"编辑匹配类型":"添加匹配类型"]})}),s.jsxs("div",{className:"space-y-4 py-4",children:[s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"类型ID(英文)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: partner",value:m.id,onChange:I=>x({...m,id:I.target.value}),disabled:!!h})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"图标"}),s.jsx("div",{className:"flex gap-1 flex-wrap",children:vV.map(I=>s.jsx("button",{type:"button",className:`w-8 h-8 text-lg rounded ${m.icon===I?"bg-[#38bdac]/30 ring-1 ring-[#38bdac]":"bg-[#0a1628]"}`,onClick:()=>x({...m,icon:I}),children:I},I))})]})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"显示名称"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 超级个体",value:m.label,onChange:I=>x({...m,label:I.target.value})})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"匹配标签"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 超级个体",value:m.matchLabel,onChange:I=>x({...m,matchLabel:I.target.value})})]})]}),s.jsxs("div",{className:"space-y-2",children:[s.jsx(ee,{className:"text-gray-300",children:"单次匹配价格(元)"}),s.jsx(ce,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:m.price,onChange:I=>x({...m,price:parseFloat(I.target.value)||1})})]}),s.jsxs("div",{className:"flex gap-6 pt-2",children:[s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Ut,{checked:m.matchFromDB,onCheckedChange:I=>x({...m,matchFromDB:I})}),s.jsx(ee,{className:"text-gray-300 text-sm",children:"从数据库匹配"})]}),s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Ut,{checked:m.showJoinAfterMatch,onCheckedChange:I=>x({...m,showJoinAfterMatch:I})}),s.jsx(ee,{className:"text-gray-300 text-sm",children:"匹配后显示加入"})]}),s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx(Ut,{checked:m.enabled,onCheckedChange:I=>x({...m,enabled:I})}),s.jsx(ee,{className:"text-gray-300 text-sm",children:"启用"})]})]})]}),s.jsxs(xn,{children:[s.jsx(Y,{variant:"outline",onClick:()=>u(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),s.jsxs(Y,{onClick:q,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-4 h-4 mr-2"})," 保存"]})]})]})})]})}const lj={partner:"找伙伴",investor:"资源对接",mentor:"导师顾问",team:"团队招募"};function wV(){const[t,e]=b.useState([]),[n,r]=b.useState(0),[a,i]=b.useState(1),[o,c]=b.useState(10),[u,h]=b.useState(""),[f,m]=b.useState(!0),[x,y]=b.useState(null),[v,N]=b.useState(null);async function w(){m(!0),y(null);try{const C=new URLSearchParams({page:String(a),pageSize:String(o)});u&&C.set("matchType",u);const R=await Le(`/api/db/match-records?${C}`);R!=null&&R.success?(e(R.records||[]),r(R.total??0)):y("加载匹配记录失败")}catch{y("加载失败,请检查网络后重试")}finally{m(!1)}}b.useEffect(()=>{w()},[a,u]);const k=Math.ceil(n/o)||1,E=({userId:C,nickname:R,avatar:O})=>s.jsxs("div",{className:"flex items-center gap-3 cursor-pointer group",onClick:()=>N(C),children:[s.jsxs("div",{className:"w-9 h-9 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm font-medium text-[#38bdac] flex-shrink-0 overflow-hidden",children:[O?s.jsx("img",{src:So(O),alt:"",className:"w-full h-full object-cover",onError:q=>{q.currentTarget.style.display="none"}}):null,s.jsx("span",{className:O?"hidden":"",children:(R||C||"?").charAt(0)})]}),s.jsxs("div",{children:[s.jsx("div",{className:"text-white group-hover:text-[#38bdac] transition-colors",children:R||C}),s.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:[C==null?void 0:C.slice(0,16),(C==null?void 0:C.length)>16?"...":""]})]})]});return s.jsxs("div",{children:[x&&s.jsxs("div",{className:"mb-4 px-4 py-3 rounded-lg bg-red-500/20 border border-red-500/50 text-red-400 text-sm flex items-center justify-between",children:[s.jsx("span",{children:x}),s.jsx("button",{type:"button",onClick:()=>y(null),className:"hover:text-red-300",children:"×"})]}),s.jsxs("div",{className:"flex justify-between items-center mb-4",children:[s.jsxs("p",{className:"text-gray-400",children:["共 ",n," 条匹配记录 · 点击用户名查看详情"]}),s.jsxs("div",{className:"flex items-center gap-4",children:[s.jsxs("select",{value:u,onChange:C=>{h(C.target.value),i(1)},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:[s.jsx("option",{value:"",children:"全部类型"}),Object.entries(lj).map(([C,R])=>s.jsx("option",{value:C,children:R},C))]}),s.jsxs("button",{type:"button",onClick:w,disabled:f,className:"flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-600 text-gray-300 hover:bg-gray-700/50 transition-colors disabled:opacity-50",children:[s.jsx(Ve,{className:`w-4 h-4 ${f?"animate-spin":""}`})," 刷新"]})]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:s.jsx(_e,{className:"p-0",children:f?s.jsxs("div",{className:"flex justify-center py-12",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):s.jsxs(s.Fragment,{children:[s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"发起人"}),s.jsx(ke,{className:"text-gray-400",children:"匹配到"}),s.jsx(ke,{className:"text-gray-400",children:"类型"}),s.jsx(ke,{className:"text-gray-400",children:"联系方式"}),s.jsx(ke,{className:"text-gray-400",children:"匹配时间"})]})}),s.jsxs(bs,{children:[t.map(C=>s.jsxs(ht,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[s.jsx(be,{children:s.jsx(E,{userId:C.userId,nickname:C.userNickname,avatar:C.userAvatar})}),s.jsx(be,{children:C.matchedUserId?s.jsx(E,{userId:C.matchedUserId,nickname:C.matchedNickname,avatar:C.matchedUserAvatar}):s.jsx("span",{className:"text-gray-500",children:"—"})}),s.jsx(be,{children:s.jsx(Ue,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0",children:lj[C.matchType]||C.matchType})}),s.jsxs(be,{className:"text-sm",children:[C.phone&&s.jsxs("div",{className:"text-green-400",children:["📱 ",C.phone]}),C.wechatId&&s.jsxs("div",{className:"text-blue-400",children:["💬 ",C.wechatId]}),!C.phone&&!C.wechatId&&s.jsx("span",{className:"text-gray-600",children:"-"})]}),s.jsx(be,{className:"text-gray-400",children:C.createdAt?new Date(C.createdAt).toLocaleString():"-"})]},C.id)),t.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:5,className:"text-center py-12 text-gray-500",children:"暂无匹配记录"})})]})]}),s.jsx(sr,{page:a,totalPages:k,total:n,pageSize:o,onPageChange:i,onPageSizeChange:C=>{c(C),i(1)}})]})})}),s.jsx(_0,{open:!!v,onClose:()=>N(null),userId:v,onUserUpdated:w})]})}function jV(){const[t,e]=b.useState("records");return s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"flex gap-2",children:[s.jsx("button",{type:"button",onClick:()=>e("records"),className:`px-4 py-2 rounded-lg text-sm font-medium transition-all ${t==="records"?"bg-[#38bdac]/20 text-[#38bdac] border border-[#38bdac]/50":"bg-[#0a1628] text-gray-400 border border-gray-700 hover:text-white"}`,children:"匹配记录"}),s.jsx("button",{type:"button",onClick:()=>e("pool"),className:`px-4 py-2 rounded-lg text-sm font-medium transition-all ${t==="pool"?"bg-[#38bdac]/20 text-[#38bdac] border border-[#38bdac]/50":"bg-[#0a1628] text-gray-400 border border-gray-700 hover:text-white"}`,children:"匹配池设置"})]}),t==="records"&&s.jsx(wV,{}),t==="pool"&&s.jsx(NV,{})]})}const cj={investor:"资源对接",mentor:"导师顾问",team:"团队招募"};function kV(){const[t,e]=b.useState([]),[n,r]=b.useState(0),[a,i]=b.useState(1),[o,c]=b.useState(10),[u,h]=b.useState(!0),[f,m]=b.useState("investor"),[x,y]=b.useState(null);async function v(){h(!0);try{const E=new URLSearchParams({page:String(a),pageSize:String(o),matchType:f}),C=await Le(`/api/db/match-records?${E}`);C!=null&&C.success&&(e(C.records||[]),r(C.total??0))}catch(E){console.error(E)}finally{h(!1)}}b.useEffect(()=>{v()},[a,f]);const N=async E=>{if(!E.phone&&!E.wechatId){ne.info("该记录无联系方式,无法推送到存客宝");return}y(E.id);try{const C=await Et("/api/ckb/join",{type:E.matchType||"investor",phone:E.phone||"",wechat:E.wechatId||"",userId:E.userId,name:E.userNickname||""});ne.error((C==null?void 0:C.message)||(C!=null&&C.success?"推送成功":"推送失败"))}catch(C){ne.error("推送失败: "+(C instanceof Error?C.message:"网络错误"))}finally{y(null)}},w=Math.ceil(n/o)||1,k=E=>!!(E.phone||E.wechatId);return s.jsxs("div",{children:[s.jsxs("div",{className:"flex justify-between items-center mb-4",children:[s.jsxs("div",{children:[s.jsx("p",{className:"text-gray-400",children:"点击获客:有人填写手机号/微信号的直接显示,可一键推送到存客宝"}),s.jsxs("p",{className:"text-gray-500 text-xs mt-1",children:["共 ",n," 条记录 — 有联系方式的可触发存客宝添加好友"]})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsx("select",{value:f,onChange:E=>{m(E.target.value),i(1)},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:Object.entries(cj).map(([E,C])=>s.jsx("option",{value:E,children:C},E))}),s.jsxs(Y,{onClick:v,disabled:u,variant:"outline",className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${u?"animate-spin":""}`})," 刷新"]})]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:s.jsx(_e,{className:"p-0",children:u?s.jsxs("div",{className:"flex justify-center py-12",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):s.jsxs(s.Fragment,{children:[s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"发起人"}),s.jsx(ke,{className:"text-gray-400",children:"匹配到"}),s.jsx(ke,{className:"text-gray-400",children:"类型"}),s.jsx(ke,{className:"text-gray-400",children:"联系方式"}),s.jsx(ke,{className:"text-gray-400",children:"时间"}),s.jsx(ke,{className:"text-gray-400 text-right",children:"操作"})]})}),s.jsxs(bs,{children:[t.map(E=>{var C,R;return s.jsxs(ht,{className:`border-gray-700/50 ${k(E)?"hover:bg-[#0a1628]":"opacity-60"}`,children:[s.jsx(be,{className:"text-white",children:E.userNickname||((C=E.userId)==null?void 0:C.slice(0,12))}),s.jsx(be,{className:"text-white",children:E.matchedNickname||((R=E.matchedUserId)==null?void 0:R.slice(0,12))}),s.jsx(be,{children:s.jsx(Ue,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0",children:cj[E.matchType]||E.matchType})}),s.jsxs(be,{className:"text-sm",children:[E.phone&&s.jsxs("div",{className:"text-green-400",children:["📱 ",E.phone]}),E.wechatId&&s.jsxs("div",{className:"text-blue-400",children:["💬 ",E.wechatId]}),!E.phone&&!E.wechatId&&s.jsx("span",{className:"text-gray-600",children:"无联系方式"})]}),s.jsx(be,{className:"text-gray-400 text-sm",children:E.createdAt?new Date(E.createdAt).toLocaleString():"-"}),s.jsx(be,{className:"text-right",children:k(E)?s.jsxs(Y,{size:"sm",onClick:()=>N(E),disabled:x===E.id,className:"bg-[#38bdac] hover:bg-[#2da396] text-white text-xs h-7 px-3",children:[s.jsx(GM,{className:"w-3 h-3 mr-1"}),x===E.id?"推送中...":"推送CKB"]}):s.jsx("span",{className:"text-gray-600 text-xs",children:"—"})})]},E.id)}),t.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:6,className:"text-center py-12 text-gray-500",children:"暂无记录"})})]})]}),s.jsx(sr,{page:a,totalPages:w,total:n,pageSize:o,onPageChange:i,onPageSizeChange:E=>{c(E),i(1)}})]})})})]})}const dj={created:"已创建",pending_pay:"待支付",paid:"已支付",completed:"已完成",cancelled:"已取消"},SV={single:"单次",half_year:"半年",year:"年度"};function CV(){const[t,e]=b.useState([]),[n,r]=b.useState(!0),[a,i]=b.useState("");async function o(){r(!0);try{const c=a?`/api/db/mentor-consultations?status=${a}`:"/api/db/mentor-consultations",u=await Le(c);u!=null&&u.success&&u.data&&e(u.data)}catch(c){console.error(c)}finally{r(!1)}}return b.useEffect(()=>{o()},[a]),s.jsxs("div",{children:[s.jsxs("div",{className:"flex justify-between items-center mb-4",children:[s.jsx("p",{className:"text-gray-400",children:"导师咨询预约记录"}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsxs("select",{value:a,onChange:c=>i(c.target.value),className:"bg-[#0f2137] border border-gray-700 rounded-lg px-3 py-2 text-gray-300 text-sm",children:[s.jsx("option",{value:"",children:"全部状态"}),Object.entries(dj).map(([c,u])=>s.jsx("option",{value:c,children:u},c))]}),s.jsxs(Y,{onClick:o,disabled:n,variant:"outline",className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-4 h-4 mr-2 ${n?"animate-spin":""}`})," 刷新"]})]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50",children:s.jsx(_e,{className:"p-0",children:n?s.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"ID"}),s.jsx(ke,{className:"text-gray-400",children:"用户ID"}),s.jsx(ke,{className:"text-gray-400",children:"导师ID"}),s.jsx(ke,{className:"text-gray-400",children:"类型"}),s.jsx(ke,{className:"text-gray-400",children:"金额"}),s.jsx(ke,{className:"text-gray-400",children:"状态"}),s.jsx(ke,{className:"text-gray-400",children:"创建时间"})]})}),s.jsxs(bs,{children:[t.map(c=>s.jsxs(ht,{className:"border-gray-700/50",children:[s.jsx(be,{className:"text-gray-300",children:c.id}),s.jsx(be,{className:"text-gray-400",children:c.userId}),s.jsx(be,{className:"text-gray-400",children:c.mentorId}),s.jsx(be,{className:"text-gray-400",children:SV[c.consultationType]||c.consultationType}),s.jsxs(be,{className:"text-white",children:["¥",c.amount]}),s.jsx(be,{className:"text-gray-400",children:dj[c.status]||c.status}),s.jsx(be,{className:"text-gray-500 text-sm",children:c.createdAt?new Date(c.createdAt).toLocaleString():"-"})]},c.id)),t.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:7,className:"text-center py-12 text-gray-500",children:"暂无预约记录"})})]})]})})})]})}function TV(){const[t,e]=b.useState("booking");return s.jsxs("div",{className:"space-y-4",children:[s.jsxs("div",{className:"flex gap-2",children:[s.jsx("button",{type:"button",onClick:()=>e("booking"),className:`px-4 py-2 rounded-lg text-sm font-medium transition-all ${t==="booking"?"bg-[#38bdac]/20 text-[#38bdac] border border-[#38bdac]/50":"bg-[#0a1628] text-gray-400 border border-gray-700 hover:text-white"}`,children:"预约记录"}),s.jsx("button",{type:"button",onClick:()=>e("manage"),className:`px-4 py-2 rounded-lg text-sm font-medium transition-all ${t==="manage"?"bg-[#38bdac]/20 text-[#38bdac] border border-[#38bdac]/50":"bg-[#0a1628] text-gray-400 border border-gray-700 hover:text-white"}`,children:"导师管理"})]}),t==="booking"&&s.jsx(CV,{}),t==="manage"&&s.jsx("div",{className:"-mx-8",children:s.jsx(w4,{embedded:!0})})]})}function EV(){const[t,e]=b.useState([]),[n,r]=b.useState(0),[a,i]=b.useState(1),[o,c]=b.useState(10),[u,h]=b.useState(!0);async function f(){h(!0);try{const x=new URLSearchParams({page:String(a),pageSize:String(o),matchType:"team"}),y=await Le(`/api/db/match-records?${x}`);y!=null&&y.success&&(e(y.records||[]),r(y.total??0))}catch(x){console.error(x)}finally{h(!1)}}b.useEffect(()=>{f()},[a]);const m=Math.ceil(n/o)||1;return s.jsxs("div",{children:[s.jsxs("div",{className:"flex justify-between items-center mb-4",children:[s.jsxs("div",{children:[s.jsxs("p",{className:"text-gray-400",children:["团队招募匹配记录,共 ",n," 条"]}),s.jsx("p",{className:"text-gray-500 text-xs mt-1",children:"用户通过「团队招募」提交联系方式到存客宝"})]}),s.jsxs("button",{type:"button",onClick:f,disabled:u,className:"flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-600 text-gray-300 hover:bg-gray-700/50 transition-colors disabled:opacity-50",children:[s.jsx(Ve,{className:`w-4 h-4 ${u?"animate-spin":""}`})," 刷新"]})]}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:s.jsx(_e,{className:"p-0",children:u?s.jsxs("div",{className:"flex justify-center py-12",children:[s.jsx(Ve,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),s.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):s.jsxs(s.Fragment,{children:[s.jsxs(gs,{children:[s.jsx(ys,{children:s.jsxs(ht,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[s.jsx(ke,{className:"text-gray-400",children:"发起人"}),s.jsx(ke,{className:"text-gray-400",children:"匹配到"}),s.jsx(ke,{className:"text-gray-400",children:"联系方式"}),s.jsx(ke,{className:"text-gray-400",children:"时间"})]})}),s.jsxs(bs,{children:[t.map(x=>s.jsxs(ht,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[s.jsx(be,{className:"text-white",children:x.userNickname||x.userId}),s.jsx(be,{className:"text-white",children:x.matchedNickname||x.matchedUserId}),s.jsxs(be,{className:"text-gray-400 text-sm",children:[x.phone&&s.jsxs("div",{children:["📱 ",x.phone]}),x.wechatId&&s.jsxs("div",{children:["💬 ",x.wechatId]}),!x.phone&&!x.wechatId&&"-"]}),s.jsx(be,{className:"text-gray-400",children:x.createdAt?new Date(x.createdAt).toLocaleString():"-"})]},x.id)),t.length===0&&s.jsx(ht,{children:s.jsx(be,{colSpan:4,className:"text-center py-12 text-gray-500",children:"暂无团队招募记录"})})]})]}),s.jsx(sr,{page:a,totalPages:m,total:n,pageSize:o,onPageChange:i,onPageSizeChange:x=>{c(x),i(1)}})]})})})]})}const uj={partner:"找伙伴",investor:"资源对接",mentor:"导师顾问",team:"团队招募",join:"加入",match:"匹配"},hj={partner:"⭐",investor:"👥",mentor:"❤️",team:"🎮",join:"📋",match:"🔗"};function MV({onSwitchTab:t,onOpenCKB:e}={}){const n=La(),[r,a]=b.useState(null),[i,o]=b.useState(null),[c,u]=b.useState(!0),h=b.useCallback(async()=>{var x,y;u(!0);try{const[v,N]=await Promise.allSettled([Le("/api/db/match-records?stats=true"),Le("/api/db/ckb-plan-stats")]);if(v.status==="fulfilled"&&((x=v.value)!=null&&x.success)&&v.value.data){let w=v.value.data;if(w.totalMatches>0&&(!w.uniqueUsers||w.uniqueUsers===0))try{const k=await Le("/api/db/match-records?page=1&pageSize=200");if(k!=null&&k.success&&k.records){const E=new Set(k.records.map(C=>C.userId).filter(Boolean));w={...w,uniqueUsers:E.size}}}catch{}a(w)}N.status==="fulfilled"&&((y=N.value)!=null&&y.success)&&N.value.data&&o(N.value.data)}catch(v){console.error("加载统计失败:",v)}finally{u(!1)}},[]);b.useEffect(()=>{h()},[h]);const f=x=>c?"—":String(x??0),m=r!=null&&r.uniqueUsers?(r.totalMatches/r.uniqueUsers).toFixed(1):"0";return s.jsxs("div",{className:"space-y-6",children:[s.jsxs("div",{className:"grid grid-cols-5 gap-3",children:[s.jsx(De,{className:"bg-[#0f2137] border-gray-700/40 cursor-pointer hover:border-[#38bdac]/60 transition-all",onClick:()=>t==null?void 0:t("partner"),children:s.jsxs(_e,{className:"p-4",children:[s.jsx("p",{className:"text-gray-400 text-xs",children:"总匹配"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:f(r==null?void 0:r.totalMatches)}),s.jsxs("p",{className:"text-[#38bdac] text-[10px] mt-1 flex items-center gap-0.5",children:[s.jsx(wi,{className:"w-2.5 h-2.5"})," 查看记录"]})]})}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/40",children:s.jsxs(_e,{className:"p-4",children:[s.jsx("p",{className:"text-gray-400 text-xs",children:"今日"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:f(r==null?void 0:r.todayMatches)}),s.jsxs("p",{className:"text-yellow-400/60 text-[10px] mt-1 flex items-center gap-0.5",children:[s.jsx(ji,{className:"w-2.5 h-2.5"})," 实时"]})]})}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/40 cursor-pointer hover:border-blue-500/60 transition-all",onClick:()=>n("/users"),children:s.jsxs(_e,{className:"p-4",children:[s.jsx("p",{className:"text-gray-400 text-xs",children:"用户数"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:f(r==null?void 0:r.uniqueUsers)}),s.jsxs("p",{className:"text-blue-400/60 text-[10px] mt-1 flex items-center gap-0.5",children:[s.jsx(_n,{className:"w-2.5 h-2.5"})," 查看用户"]})]})}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/40",children:s.jsxs(_e,{className:"p-4",children:[s.jsx("p",{className:"text-gray-400 text-xs",children:"人均匹配"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:c?"—":m})]})}),s.jsx(De,{className:"bg-[#0f2137] border-gray-700/40",children:s.jsxs(_e,{className:"p-4",children:[s.jsx("p",{className:"text-gray-400 text-xs",children:"付费匹配"}),s.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:f(r==null?void 0:r.paidMatchCount)})]})})]}),s.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[s.jsx(De,{className:"bg-[#0f2137] border-gray-700/40",children:s.jsxs(_e,{className:"p-4",children:[s.jsx("h4",{className:"text-sm font-medium text-white mb-3",children:"匹配类型分布"}),r!=null&&r.byType&&r.byType.length>0?s.jsx("div",{className:"space-y-2",children:r.byType.map(x=>{const y=r.totalMatches>0?x.count/r.totalMatches*100:0;return s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx("span",{className:"text-lg shrink-0",children:hj[x.matchType]||"📊"}),s.jsxs("div",{className:"flex-1 min-w-0",children:[s.jsxs("div",{className:"flex justify-between text-xs mb-0.5",children:[s.jsx("span",{className:"text-gray-300",children:uj[x.matchType]||x.matchType}),s.jsxs("span",{className:"text-gray-500",children:[x.count," (",y.toFixed(0),"%)"]})]}),s.jsx("div",{className:"w-full h-1.5 bg-gray-700/50 rounded-full overflow-hidden",children:s.jsx("div",{className:"h-full bg-[#38bdac] rounded-full",style:{width:`${Math.min(y,100)}%`}})})]})]},x.matchType)})}):s.jsx("p",{className:"text-gray-500 text-xs",children:"暂无数据"})]})}),s.jsx(De,{className:"bg-[#0f2137] border-orange-500/20",children:s.jsxs(_e,{className:"p-4",children:[s.jsxs("h4",{className:"text-sm font-medium text-white mb-3 flex items-center gap-1.5",children:[s.jsx(Ea,{className:"w-4 h-4 text-orange-400"})," AI 获客"]}),s.jsxs("div",{className:"grid grid-cols-2 gap-3 mb-3",children:[s.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 cursor-pointer hover:border-orange-500/50 border border-transparent transition-colors",onClick:()=>e==null?void 0:e("submitted"),children:[s.jsx("p",{className:"text-gray-400 text-xs",children:"已提交线索"}),s.jsx("p",{className:"text-xl font-bold text-white",children:c?"—":(i==null?void 0:i.ckbTotal)??0})]}),s.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 cursor-pointer hover:border-orange-500/50 border border-transparent transition-colors",onClick:()=>e==null?void 0:e("contact"),children:[s.jsx("p",{className:"text-gray-400 text-xs",children:"有联系方式"}),s.jsx("p",{className:"text-xl font-bold text-white",children:c?"—":(i==null?void 0:i.withContact)??0})]})]}),(i==null?void 0:i.byType)&&i.byType.length>0&&s.jsx("div",{className:"space-y-1.5",children:i.byType.map(x=>s.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[s.jsx("span",{children:hj[x.matchType]||"📋"}),s.jsx("span",{className:"text-gray-400",children:uj[x.matchType]||x.matchType}),s.jsx("span",{className:"ml-auto text-white font-medium",children:x.total})]},x.matchType))}),s.jsx("button",{type:"button",onClick:()=>e==null?void 0:e("test"),className:"mt-3 w-full text-xs text-orange-400 hover:text-orange-300 text-center py-1.5 bg-orange-500/10 rounded",children:"查看 AI 添加进度 →"})]})})]})]})}const AV=["partner","investor","mentor","team"],ag=[{key:"join_partner",label:"找伙伴场景"},{key:"join_investor",label:"资源对接场景"},{key:"join_mentor",label:"导师顾问场景"},{key:"join_team",label:"团队招募场景"},{key:"match",label:"匹配上报"},{key:"lead",label:"链接卡若"}],fj=`# 场景获客接口摘要 +- 地址:POST /v1/api/scenarios +- 必填:apiKey、sign、timestamp +- 主标识:phone 或 wechatId 至少一项 +- 可选:name、source、remark、tags、siteTags、portrait +- 签名:排除 sign/apiKey/portrait,键名升序拼接值后双重 MD5 +- 成功:code=200,message=新增成功 或 已存在`;function IV({initialTab:t="overview"}){const[e,n]=b.useState(t),[r,a]=b.useState("13800000000"),[i,o]=b.useState(""),[c,u]=b.useState(""),[h,f]=b.useState(fj),[m,x]=b.useState(!1),[y,v]=b.useState(!1),[N,w]=b.useState([]),[k,E]=b.useState([]),[C,R]=b.useState({}),[O,q]=b.useState([{endpoint:"/api/ckb/join",label:"找伙伴",method:"POST",status:"idle"},{endpoint:"/api/ckb/join",label:"资源对接",method:"POST",status:"idle"},{endpoint:"/api/ckb/join",label:"导师顾问",method:"POST",status:"idle"},{endpoint:"/api/ckb/join",label:"团队招募",method:"POST",status:"idle"},{endpoint:"/api/ckb/match",label:"匹配上报",method:"POST",status:"idle"},{endpoint:"/api/miniprogram/ckb/lead",label:"链接卡若",method:"POST",status:"idle"},{endpoint:"/api/match/config",label:"匹配配置",method:"GET",status:"idle"}]),$=b.useMemo(()=>{const F={};return ag.forEach(D=>{F[D.key]=C[D.key]||{apiUrl:"https://ckbapi.quwanzhi.com/v1/api/scenarios",apiKey:"fyngh-ecy9h-qkdae-epwd5-rz6kd",source:"",tags:"",siteTags:"创业实验APP",notes:""}}),F},[C]),V=F=>{const D=r.trim(),P=i.trim();return F<=3?{type:AV[F],phone:D||void 0,wechat:P||void 0,userId:"admin_test",name:"后台测试"}:F===4?{matchType:"partner",phone:D||void 0,wechat:P||void 0,userId:"admin_test",nickname:"后台测试",matchedUser:{id:"test",nickname:"测试",matchScore:88}}:F===5?{phone:D||void 0,wechatId:P||void 0,userId:"admin_test",name:"后台测试"}:{}};async function I(){v(!0);try{const[F,D,P]=await Promise.all([Le("/api/db/config/full?key=ckb_config"),Le("/api/db/ckb-leads?mode=submitted&page=1&pageSize=50"),Le("/api/db/ckb-leads?mode=contact&page=1&pageSize=50")]),oe=F==null?void 0:F.data;oe!=null&&oe.routes&&R(oe.routes),oe!=null&&oe.docNotes&&u(oe.docNotes),oe!=null&&oe.docContent&&f(oe.docContent),D!=null&&D.success&&w(D.records||[]),P!=null&&P.success&&E(P.records||[])}finally{v(!1)}}b.useEffect(()=>{n(t)},[t]),b.useEffect(()=>{I()},[]);const te=b.useMemo(()=>{const F=_=>(_||"").replace(/\D/g,"")||"",D=_=>{const U=F(_.phone);if(U)return`phone:${U}`;const H=(_.userId||"").trim();if(H)return`user:${H}`;const K=(_.wechatId||"").trim();return K?`wechat:${K}`:`row:${_.id}`},P=[...k].sort((_,U)=>{const H=_.createdAt?new Date(_.createdAt).getTime():0;return(U.createdAt?new Date(U.createdAt).getTime():0)-H}),oe=new Set,G=[];for(const _ of P){const U=D(_);oe.has(U)||(oe.add(U),G.push(_))}return G},[k]);async function Q(){x(!0);try{const F=await Et("/api/db/config",{key:"ckb_config",value:{routes:$,docNotes:c,docContent:h},description:"存客宝接口配置"});ne.error((F==null?void 0:F.success)!==!1?"存客宝配置已保存":`保存失败: ${(F==null?void 0:F.error)||"未知错误"}`)}catch(F){ne.error(`保存失败: ${F instanceof Error?F.message:"网络错误"}`)}finally{x(!1)}}const B=(F,D)=>{R(P=>({...P,[F]:{...$[F],...D}}))},re=async F=>{const D=O[F];if(D.method==="POST"&&!r.trim()&&!i.trim()){ne.error("请填写测试手机号");return}const P=[...O];P[F]={...D,status:"testing",message:void 0,responseTime:void 0},q(P);const oe=performance.now();try{const G=D.method==="GET"?await Le(D.endpoint):await Et(D.endpoint,V(F)),_=Math.round(performance.now()-oe),U=(G==null?void 0:G.message)||"",H=(G==null?void 0:G.success)===!0||U.includes("已存在")||U.includes("已加入")||U.includes("已提交"),K=[...O];K[F]={...D,status:H?"success":"error",message:U||(H?"正常":"异常"),responseTime:_},q(K),await I()}catch(G){const _=Math.round(performance.now()-oe),U=[...O];U[F]={...D,status:"error",message:G instanceof Error?G.message:"失败",responseTime:_},q(U)}},ae=async()=>{if(!r.trim()&&!i.trim()){ne.error("请填写测试手机号");return}for(let F=0;Fs.jsx("div",{className:"overflow-auto rounded-lg border border-gray-700/30",children:s.jsxs("table",{className:"w-full text-sm",children:[s.jsx("thead",{className:"bg-[#0a1628] text-gray-400",children:s.jsxs("tr",{children:[s.jsx("th",{className:"text-left px-4 py-3",children:"发起人"}),s.jsx("th",{className:"text-left px-4 py-3",children:"类型"}),s.jsx("th",{className:"text-left px-4 py-3",children:"手机号"}),s.jsx("th",{className:"text-left px-4 py-3",children:"微信号"}),s.jsx("th",{className:"text-left px-4 py-3",children:"时间"})]})}),s.jsx("tbody",{children:F.length===0?s.jsx("tr",{children:s.jsx("td",{colSpan:5,className:"p-0 align-top",children:s.jsxs("div",{className:"py-14 px-6 text-center bg-[#0a1628]/40 border-t border-gray-700/30",children:[s.jsx(gl,{className:"w-12 h-12 text-orange-400/25 mx-auto mb-3","aria-hidden":!0}),s.jsx("p",{className:"text-gray-300 font-medium",children:D}),P?s.jsx("p",{className:"text-gray-500 text-sm mt-2 max-w-md mx-auto leading-relaxed",children:P}):null]})})}):F.map(oe=>s.jsxs("tr",{className:"border-t border-gray-700/30",children:[s.jsx("td",{className:"px-4 py-3 text-white",children:oe.userNickname||oe.userId}),s.jsx("td",{className:"px-4 py-3 text-gray-300",children:oe.matchType}),s.jsx("td",{className:"px-4 py-3 text-green-400",children:oe.phone||"—"}),s.jsx("td",{className:"px-4 py-3 text-blue-400",children:oe.wechatId||"—"}),s.jsx("td",{className:"px-4 py-3 text-gray-400",children:oe.createdAt?new Date(oe.createdAt).toLocaleString():"—"})]},String(oe.id)))})]})});return s.jsx(De,{className:"bg-[#0f2137] border-orange-500/30 mb-6",children:s.jsxs(_e,{className:"p-5",children:[s.jsxs("div",{className:"flex items-center justify-between mb-4",children:[s.jsxs("div",{className:"flex items-center gap-3",children:[s.jsx("h3",{className:"text-white font-semibold",children:"存客宝工作台"}),s.jsx(Ue,{className:"bg-orange-500/20 text-orange-400 border-0 text-xs",children:"CKB"}),s.jsxs("button",{type:"button",onClick:()=>n("doc"),className:"text-orange-400/60 text-xs hover:text-orange-400 flex items-center gap-1",children:[s.jsx(wi,{className:"w-3 h-3"})," API 文档"]})]}),s.jsxs("div",{className:"flex items-center gap-2",children:[s.jsxs(Y,{onClick:()=>I(),variant:"outline",size:"sm",className:"border-gray-700 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[s.jsx(Ve,{className:`w-3.5 h-3.5 mr-1 ${y?"animate-spin":""}`})," 刷新"]}),s.jsxs(Y,{onClick:Q,disabled:m,size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[s.jsx(kn,{className:"w-3.5 h-3.5 mr-1"})," ",m?"保存中...":"保存配置"]})]})]}),s.jsx("div",{className:"flex flex-wrap gap-2 mb-5",children:[["overview","概览"],["submitted","已提交线索"],["contact","有联系方式"],["config","场景配置"],["test","接口测试"],["doc","API 文档"]].map(([F,D])=>s.jsx("button",{type:"button",onClick:()=>n(F),className:`px-4 py-2 rounded-lg text-sm transition-colors ${e===F?"bg-orange-500 text-white":"bg-[#0a1628] text-gray-400 hover:text-white"}`,children:D},F))}),e==="overview"&&s.jsxs("div",{className:"grid grid-cols-2 lg:grid-cols-4 gap-4",children:[s.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[s.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"已提交线索"}),s.jsx("p",{className:"text-3xl font-bold text-white",children:N.length})]}),s.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[s.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"有联系方式(已去重)"}),s.jsx("p",{className:"text-3xl font-bold text-white",children:te.length}),k.length!==te.length&&s.jsxs("p",{className:"text-[10px] text-gray-500 mt-1",children:["原始 ",k.length," 条"]})]}),s.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[s.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"场景配置数"}),s.jsx("p",{className:"text-3xl font-bold text-white",children:ag.length})]}),s.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[s.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"文档备注"}),s.jsx("p",{className:"text-sm text-gray-300 line-clamp-3",children:c||"未填写"})]})]}),e==="submitted"&&J(N,"暂无已提交线索","用户通过场景提交后会出现于此。"),e==="contact"&&s.jsxs("div",{className:"space-y-2",children:[k.length>te.length&&s.jsxs("p",{className:"text-xs text-gray-500",children:["已合并 ",k.length-te.length," 条重复(同手机号或同用户 ID 仅保留最近一条)"]}),J(te,"暂无有联系方式线索","存客宝留资同步后显示;完整列表与筛选请前往「用户管理 → 获客列表」。")]}),e==="config"&&s.jsx("div",{className:"space-y-4",children:ag.map(F=>s.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-4",children:[s.jsxs("div",{className:"flex items-center justify-between mb-3",children:[s.jsx("h4",{className:"text-white font-medium",children:F.label}),s.jsx(Ue,{className:"bg-orange-500/20 text-orange-300 border-0 text-xs",children:F.key})]}),s.jsxs("div",{className:"grid grid-cols-1 xl:grid-cols-2 gap-4",children:[s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"API 地址"}),s.jsx(ce,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:$[F.key].apiUrl,onChange:D=>B(F.key,{apiUrl:D.target.value})})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"API Key"}),s.jsx(ce,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:$[F.key].apiKey,onChange:D=>B(F.key,{apiKey:D.target.value})})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"Source"}),s.jsx(ce,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:$[F.key].source,onChange:D=>B(F.key,{source:D.target.value})})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"Tags"}),s.jsx(ce,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:$[F.key].tags,onChange:D=>B(F.key,{tags:D.target.value})})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"SiteTags"}),s.jsx(ce,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:$[F.key].siteTags,onChange:D=>B(F.key,{siteTags:D.target.value})})]}),s.jsxs("div",{className:"space-y-1",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"说明备注"}),s.jsx(ce,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:$[F.key].notes,onChange:D=>B(F.key,{notes:D.target.value})})]})]})]},F.key))}),e==="test"&&s.jsxs(s.Fragment,{children:[s.jsxs("div",{className:"flex gap-3 mb-4",children:[s.jsxs("div",{className:"flex items-center gap-2 flex-1",children:[s.jsx(gl,{className:"w-4 h-4 text-gray-500 shrink-0"}),s.jsxs("div",{className:"flex-1",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"测试手机号"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm mt-0.5",value:r,onChange:F=>a(F.target.value)})]})]}),s.jsxs("div",{className:"flex items-center gap-2 flex-1",children:[s.jsx("span",{className:"text-gray-500 text-sm shrink-0",children:"💬"}),s.jsxs("div",{className:"flex-1",children:[s.jsx(ee,{className:"text-gray-500 text-xs",children:"微信号(可选)"}),s.jsx(ce,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm mt-0.5",value:i,onChange:F=>o(F.target.value)})]})]}),s.jsx("div",{className:"flex items-end",children:s.jsxs(Y,{onClick:ae,className:"bg-orange-500 hover:bg-orange-600 text-white",children:[s.jsx(ji,{className:"w-3.5 h-3.5 mr-1"})," 全部测试"]})})]}),s.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-2",children:O.map((F,D)=>s.jsxs("div",{className:"flex items-center justify-between bg-[#0a1628] rounded-lg px-3 py-2 border border-gray-700/30",children:[s.jsxs("div",{className:"flex items-center gap-2 min-w-0",children:[F.status==="idle"&&s.jsx("div",{className:"w-2 h-2 rounded-full bg-gray-600 shrink-0"}),F.status==="testing"&&s.jsx(Ve,{className:"w-3 h-3 text-yellow-400 animate-spin shrink-0"}),F.status==="success"&&s.jsx(Ej,{className:"w-3 h-3 text-green-400 shrink-0"}),F.status==="error"&&s.jsx(Aj,{className:"w-3 h-3 text-red-400 shrink-0"}),s.jsx("span",{className:"text-white text-xs truncate",children:F.label})]}),s.jsxs("div",{className:"flex items-center gap-1.5 shrink-0",children:[F.responseTime!==void 0&&s.jsxs("span",{className:"text-gray-600 text-[10px]",children:[F.responseTime,"ms"]}),s.jsx("button",{type:"button",onClick:()=>re(D),disabled:F.status==="testing",className:"text-orange-400/60 hover:text-orange-400 text-[10px] disabled:opacity-50",children:"测试"})]})]},`${F.endpoint}-${D}`))})]}),e==="doc"&&s.jsxs("div",{className:"grid grid-cols-1 xl:grid-cols-2 gap-4",children:[s.jsxs("div",{className:"bg-[#0a1628] rounded-lg border border-gray-700/30 p-4",children:[s.jsxs("div",{className:"flex items-center justify-between mb-3",children:[s.jsx("h4",{className:"text-white text-sm font-medium",children:"场景获客 API 摘要"}),s.jsxs("a",{href:"https://ckbapi.quwanzhi.com/v1/api/scenarios",target:"_blank",rel:"noreferrer",className:"text-orange-400/70 hover:text-orange-400 text-xs flex items-center gap-1",children:[s.jsx(wi,{className:"w-3 h-3"})," 打开外链"]})]}),s.jsx("pre",{className:"whitespace-pre-wrap text-xs text-gray-400 leading-6",children:h||fj})]}),s.jsxs("div",{className:"bg-[#0a1628] rounded-lg border border-gray-700/30 p-4",children:[s.jsx("h4",{className:"text-white text-sm font-medium mb-3",children:"说明备注(可编辑)"}),s.jsx("textarea",{className:"w-full min-h-[260px] bg-[#0f2137] border border-gray-700 rounded-md text-sm text-gray-300 p-3 outline-none focus:border-orange-500/50 resize-y",value:c,onChange:F=>u(F.target.value),placeholder:"记录 Token、入口差异、回复率统计规则、对接约定等。"})]})]})]})})}const PV=[{id:"stats",label:"数据统计",icon:hc,desc:"匹配与获客概览"},{id:"partner",label:"找伙伴",icon:_n,desc:"匹配池与记录"},{id:"resource",label:"资源对接",icon:U5,desc:"人脉资源"},{id:"mentor",label:"导师预约",icon:B5,desc:"预约与管理"},{id:"team",label:"团队招募",icon:vc,desc:"团队协作"}];function RV(){const[t,e]=b.useState("stats"),[n,r]=b.useState(!1),[a,i]=b.useState("overview");return s.jsxs("div",{className:"p-8 w-full max-w-7xl mx-auto",children:[s.jsxs("div",{className:"mb-8 flex items-center justify-between",children:[s.jsxs("div",{children:[s.jsxs("h2",{className:"text-xl font-semibold text-white flex items-center gap-2",children:[s.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"}),"找伙伴"]}),s.jsx("p",{className:"text-gray-500 text-sm mt-0.5",children:"匹配、获客、导师与团队管理"})]}),s.jsxs(Y,{type:"button",variant:"outline",size:"sm",onClick:()=>r(o=>!o),className:`border-orange-500/30 text-orange-300 hover:bg-orange-500/10 bg-transparent text-xs ${n?"bg-orange-500/10":""}`,children:[s.jsx(Ea,{className:"w-3.5 h-3.5 mr-1.5"}),"存客宝",s.jsx(ol,{className:`w-3 h-3 ml-1 transition-transform ${n?"rotate-90":""}`})]})]}),n&&s.jsx(IV,{initialTab:a}),s.jsx("div",{className:"flex gap-1 mb-6 bg-[#0a1628] rounded-lg p-1 border border-gray-700/40",children:PV.map(o=>{const c=t===o.id;return s.jsxs("button",{type:"button",onClick:()=>e(o.id),className:`flex-1 flex items-center justify-center gap-1.5 px-3 py-2 rounded-md text-sm transition-all ${c?"bg-[#38bdac] text-white shadow-md":"text-gray-400 hover:text-white hover:bg-gray-700/40"}`,children:[s.jsx(o.icon,{className:"w-3.5 h-3.5"}),o.label]},o.id)})}),t==="stats"&&s.jsx(MV,{onSwitchTab:o=>e(o),onOpenCKB:o=>{i(o||"overview"),r(!0)}}),t==="partner"&&s.jsx(jV,{}),t==="resource"&&s.jsx(kV,{}),t==="mentor"&&s.jsx(TV,{}),t==="team"&&s.jsx(EV,{})]})}function OV(){const t=Ro();return s.jsx("div",{className:"min-h-screen bg-[#0a1628] flex items-center justify-center p-8",children:s.jsxs("div",{className:"text-center max-w-md",children:[s.jsx("div",{className:"inline-flex items-center justify-center w-20 h-20 rounded-full bg-red-500/20 text-red-400 mb-6",children:s.jsx(Tj,{className:"w-10 h-10"})}),s.jsx("h1",{className:"text-4xl font-bold text-white mb-2",children:"404"}),s.jsx("p",{className:"text-gray-400 mb-1",children:"页面不存在"}),s.jsx("p",{className:"text-sm text-gray-500 font-mono mb-8 break-all",children:t.pathname}),s.jsx(Y,{asChild:!0,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:s.jsxs(Tc,{to:"/",children:[s.jsx(Z5,{className:"w-4 h-4 mr-2"}),"返回首页"]})})]})})}function LV(){return s.jsxs(DE,{children:[s.jsx(ln,{path:"/login",element:s.jsx(PI,{})}),s.jsxs(ln,{path:"/",element:s.jsx(LA,{}),children:[s.jsx(ln,{index:!0,element:s.jsx(ph,{to:"/dashboard",replace:!0})}),s.jsx(ln,{path:"dashboard",element:s.jsx(WR,{})}),s.jsx(ln,{path:"orders",element:s.jsx(KR,{})}),s.jsx(ln,{path:"users",element:s.jsx(ZR,{})}),s.jsx(ln,{path:"distribution",element:s.jsx(N8,{})}),s.jsx(ln,{path:"withdrawals",element:s.jsx(w8,{})}),s.jsx(ln,{path:"content",element:s.jsx(X9,{})}),s.jsx(ln,{path:"referral-settings",element:s.jsx(b2,{})}),s.jsx(ln,{path:"author-settings",element:s.jsx(ph,{to:"/settings?tab=author",replace:!0})}),s.jsx(ln,{path:"vip-roles",element:s.jsx(yV,{})}),s.jsx(ln,{path:"mentors",element:s.jsx(w4,{})}),s.jsx(ln,{path:"mentor-consultations",element:s.jsx(bV,{})}),s.jsx(ln,{path:"admin-users",element:s.jsx(ph,{to:"/settings?tab=admin",replace:!0})}),s.jsx(ln,{path:"settings",element:s.jsx(lV,{})}),s.jsx(ln,{path:"payment",element:s.jsx(cV,{})}),s.jsx(ln,{path:"site",element:s.jsx(fV,{})}),s.jsx(ln,{path:"qrcodes",element:s.jsx(pV,{})}),s.jsx(ln,{path:"find-partner",element:s.jsx(RV,{})}),s.jsx(ln,{path:"match",element:s.jsx(xV,{})}),s.jsx(ln,{path:"match-records",element:s.jsx(gV,{})}),s.jsx(ln,{path:"api-doc",element:s.jsx(ph,{to:"/api-docs",replace:!0})}),s.jsx(ln,{path:"api-docs",element:s.jsx(N4,{})})]}),s.jsx(ln,{path:"*",element:s.jsx(OV,{})})]})}BT.createRoot(document.getElementById("root")).render(s.jsx(b.StrictMode,{children:s.jsx(UE,{future:{v7_startTransition:!0,v7_relativeSplatPath:!0},children:s.jsx(LV,{})})})); diff --git a/soul-admin/dist/index.html b/soul-admin/dist/index.html index 0e2c2f15..5cbe9697 100644 --- a/soul-admin/dist/index.html +++ b/soul-admin/dist/index.html @@ -4,10 +4,10 @@ 管理后台 - Soul创业派对 - - + + -
    +
    diff --git a/soul-admin/src/pages/content/ContentPage.tsx b/soul-admin/src/pages/content/ContentPage.tsx index fc6b8b7f..6a4acf40 100644 --- a/soul-admin/src/pages/content/ContentPage.tsx +++ b/soul-admin/src/pages/content/ContentPage.tsx @@ -9,6 +9,7 @@ import { } from '@/components/ui/card' import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' +import { Textarea } from '@/components/ui/textarea' import { Label } from '@/components/ui/label' import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs' import RichEditor, { type PersonItem, type LinkTagItem, type RichEditorRef } from '@/components/RichEditor' @@ -57,6 +58,33 @@ import { PersonAddEditModal, type PersonFormData } from './PersonAddEditModal' import { getPersonDetail } from '@/api/ckb' import { apiUrl } from '@/api/client' +/** 与 soul-api mergeReadPreviewUI 默认键一致;小程序用 {percent} {price} 占位符替换 */ +const READ_PREVIEW_UI_TEMPLATE = JSON.stringify( + { + singlePageUnlockTitle: '解锁完整内容', + singlePagePayButtonText: '支付 ¥{price} 解锁全文', + singlePageExpandedHint: '预览页不能直接付款,务必先点底栏「前往小程序」。', + payTapModalTitle: '解锁说明', + payTapModalContent: + '全文 ¥{price}。预览里无法完成支付:请先点屏幕底部「前往小程序」进入完整版,登录后再付款解锁。', + fullUnlockTitle: '解锁完整内容', + fullUnlockDesc: '可先上滑阅读预览;需要全文时,点下方「支付¥{price}」查看说明', + fullLockedProgressText: '已阅读约 {percent}% ,购买后继续阅读', + fullPaywallTip: '转发给需要的人,一起学习还能赚佣金', + notLoginUnlockDesc: '已预览约 {percent}% 内容,登录并支付 ¥{price} 后阅读全文', + notLoginPaywallTip: '分享给好友一起学习,还能赚取佣金', + shareTipLine: '好友经你分享购买,你可获得约 90% 收益', + momentsModalTitle: '分享到朋友圈', + momentsModalContent: + '已复制发圈文案(非分享给好友)。\n\n请点击右上角「···」→「分享到朋友圈」粘贴发布。', + momentsClipboardFooter: + '\n\n—— 以上为正文预览约 {percent}% ,搜「卡若创业派对」小程序阅读全文 ——', + timelineTitleSuffix: '(预览{percent}%)', + }, + null, + 2, +) + interface SectionListItem { id: string mid?: number @@ -261,6 +289,9 @@ export function ContentPage() { const [previewPercent, setPreviewPercent] = useState(20) const [previewPercentLoading, setPreviewPercentLoading] = useState(false) const [previewPercentSaving, setPreviewPercentSaving] = useState(false) + const [readPreviewUiJson, setReadPreviewUiJson] = useState(READ_PREVIEW_UI_TEMPLATE) + const [readPreviewUiLoading, setReadPreviewUiLoading] = useState(false) + const [readPreviewUiSaving, setReadPreviewUiSaving] = useState(false) const [persons, setPersons] = useState([]) const [linkTags, setLinkTags] = useState([]) const [linkTagList, setLinkTagList] = useState([]) @@ -801,15 +832,60 @@ export function ContentPage() { } catch { toast.error('保存失败') } finally { setPreviewPercentSaving(false) } } + const loadReadPreviewUi = useCallback(async () => { + setReadPreviewUiLoading(true) + try { + const data = await get<{ success?: boolean; data?: unknown }>( + '/api/db/config/full?key=read_preview_ui', + { cache: 'no-store' as RequestCache }, + ) + const d = data && (data as { data?: unknown }).data + if (d != null && typeof d === 'object' && !Array.isArray(d) && Object.keys(d as object).length > 0) { + setReadPreviewUiJson(JSON.stringify(d, null, 2)) + } else { + setReadPreviewUiJson(READ_PREVIEW_UI_TEMPLATE) + } + } catch { + setReadPreviewUiJson(READ_PREVIEW_UI_TEMPLATE) + } finally { + setReadPreviewUiLoading(false) + } + }, []) + + const handleSaveReadPreviewUi = async () => { + let parsed: Record + try { + parsed = JSON.parse(readPreviewUiJson) as Record + } catch { + toast.error('JSON 格式错误,请检查括号与引号') + return + } + setReadPreviewUiSaving(true) + try { + const res = await post<{ success?: boolean; error?: string }>('/api/db/config', { + key: 'read_preview_ui', + value: parsed, + description: '阅读页/朋友圈付费墙与分享文案(占位符 {percent} {price})', + }) + if (res && (res as { success?: boolean }).success !== false) toast.success('阅读页文案已保存') + else toast.error('保存失败: ' + ((res as { error?: string }).error || '')) + } catch { + toast.error('保存失败') + } finally { + setReadPreviewUiSaving(false) + } + } + useEffect(() => { loadPinnedSections() loadPreviewPercent() + loadReadPreviewUi() loadPersons() loadLinkTags() loadCkbLeadCounts() loadLinkedMps() loadCkbWebhookUrl() - }, [loadPinnedSections, loadPreviewPercent, loadPersons, loadLinkTags, loadCkbLeadCounts, loadLinkedMps, loadCkbWebhookUrl]) + }, [loadPinnedSections, loadPreviewPercent, loadReadPreviewUi, loadPersons, loadLinkTags, loadCkbLeadCounts, loadLinkedMps, loadCkbWebhookUrl]) useEffect(() => { loadLinkTagList() @@ -2519,7 +2595,42 @@ export function ContentPage() { > {previewPercentSaving ? '保存中...' : '保存'} - 小程序未付费用户默认显示文章前 {previewPercent}% 内容 + 小程序未付费用户默认显示文章前 {previewPercent}% 内容;章节「预览%」可单独覆盖 + +
    + +

    + 占位符:{'{percent}'} 为预览比例、 + {'{price}'} 为章节价;与小程序付费墙、复制发圈、单页模式弹窗一致。 +

    +