diff --git a/.cursor/agent/安全工程师/evolution/.gitkeep b/.cursor/agent/安全工程师/evolution/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/.cursor/agent/安全工程师/evolution/2026-03-20-挖矿与服务器Skills.md b/.cursor/agent/安全工程师/evolution/2026-03-20-挖矿与服务器Skills.md new file mode 100644 index 00000000..8fd33519 --- /dev/null +++ b/.cursor/agent/安全工程师/evolution/2026-03-20-挖矿与服务器Skills.md @@ -0,0 +1,32 @@ +# 挖矿病毒排查与服务器操作 Skills 创建 + +**日期**:2026-03-20 + +## 背景 + +基于 agent 记录(3b9e0fa0、bc781e1b、1c1a81c3 等)中挖矿病毒排查经验,以及本地部署脚本(devloy.py、master.py、soul-admin/deploy.py、Cunkebao/miner_guard_install.py 等),将经验吸收转化为 Skills。 + +## 新增 Skills + +### 1. security-miner-guard + +- **路径**:`.cursor/skills/security-miner-guard/SKILL.md` +- **触发词**:挖矿病毒、xmrig、服务器被入侵、miner_guard、安全排查、杀挖矿 +- **内容**:挖矿病毒特征、入侵链路、排查脚本、加固建议、miner_guard 安装与检查 + +### 2. security-server-ops + +- **路径**:`.cursor/skills/security-server-ops/SKILL.md` +- **触发词**:部署、服务器操作、SSH、宝塔、devloy、master、Cunkebao 部署 +- **内容**:服务器索引、部署脚本索引、环境变量一览、常用操作(不含明文密码) + +## 配置更新 + +- `paths.py`:新增 `AGENT_SECURITY`、`ROLE_TO_AGENT["安全工程师"]` +- `老板分身-索引.mdc`:经验自动收集推断增加「挖矿/安全/服务器操作→安全工程师」 +- `soul-project-boundary.mdc`:按语义触发词增加安全工程师及对应 Skills + +## 安全提醒 + +- Skills 中**不写入明文密码**,仅说明配置来源(环境变量、脚本 get_cfg()) +- 建议将 master.py、devloy.py 等中的默认密码迁移到环境变量 diff --git a/.cursor/agent/安全工程师/evolution/2026-03-20-管理端部署触发词.md b/.cursor/agent/安全工程师/evolution/2026-03-20-管理端部署触发词.md new file mode 100644 index 00000000..b8464d04 --- /dev/null +++ b/.cursor/agent/安全工程师/evolution/2026-03-20-管理端部署触发词.md @@ -0,0 +1,26 @@ +# 管理端部署触发词约定 + +**日期**:2026-03-20 + +## 场景 + +用户说「管理端帮我部署到xx环境」时,安全工程师应语义化解析 xx,直接执行对应部署脚本。 + +## 解决方案 + +- **触发词**:管理端帮我部署到xx环境(语义化,理解意图即可) +- **脚本映射**: + - 含「正式」「线上」「生产」→ `cd soul-admin && python master.py`(正式环境,/www/wwwroot/self/soul-admin) + - 含「测试」「dev」→ `cd soul-admin && python deploy.py`(测试环境,/www/wwwroot/self/soul-admin-dev) + +## soul-admin 部署脚本 + +| 脚本 | 环境 | 目标目录 | 构建命令 | +|------|------|----------|----------| +| master.py | 正式 | soul-admin | pnpm build | +| deploy.py | 测试 | soul-admin-dev | pnpm run build:dev | + +## 已升级 Skills + +1. **security-server-ops**:何时使用表、2.2 soul-admin 脚本索引、4.4/4.5 常用操作 +2. **soul-project-boundary**:按场景触发词表新增 diff --git a/.cursor/agent/安全工程师/evolution/2026-03-20-部署API触发词.md b/.cursor/agent/安全工程师/evolution/2026-03-20-部署API触发词.md new file mode 100644 index 00000000..63fb2dc4 --- /dev/null +++ b/.cursor/agent/安全工程师/evolution/2026-03-20-部署API触发词.md @@ -0,0 +1,18 @@ +# 部署 API 触发词约定 + +**日期**:2026-03-20 + +## 场景 + +用户说「帮我部署api到线上」时,安全工程师应直接执行部署脚本,无需再询问或选择。 + +## 解决方案 + +- **触发词**:帮我部署api到线上 +- **动作**:直接执行 `cd soul-api && python master.py` +- **脚本**:`soul-api/master.py`(soul-api 正式环境部署) + +## 已升级 Skills + +1. **security-server-ops**:何时使用表新增该触发词,明确直接执行命令 +2. **soul-project-boundary**:按场景触发词表新增,加载 security-server-ops 后执行 diff --git a/.cursor/agent/安全工程师/evolution/索引.md b/.cursor/agent/安全工程师/evolution/索引.md new file mode 100644 index 00000000..905caa6a --- /dev/null +++ b/.cursor/agent/安全工程师/evolution/索引.md @@ -0,0 +1,9 @@ +# 安全工程师 经验索引 + +> 挖矿病毒排查、服务器加固、部署与运维相关经验。 + +| 日期 | 摘要 | 文件 | +|------|------|------| +| 2026-03-20 | 挖矿病毒排查经验转化为 Skills;服务器操作 Skill 创建 | 2026-03-20-挖矿与服务器Skills.md | +| 2026-03-20 | 「帮我部署api到线上」→ 执行 soul-api/master.py | 2026-03-20-部署API触发词.md | +| 2026-03-20 | 「管理端帮我部署到xx环境」→ 语义化解析,正式→master.py,测试→deploy.py | 2026-03-20-管理端部署触发词.md | diff --git a/.cursor/agent/小程序开发工程师/evolution/2026-03-19-原生按钮覆盖定位.md b/.cursor/agent/小程序开发工程师/evolution/2026-03-19-原生按钮覆盖定位.md new file mode 100644 index 00000000..edd9a656 --- /dev/null +++ b/.cursor/agent/小程序开发工程师/evolution/2026-03-19-原生按钮覆盖定位.md @@ -0,0 +1,41 @@ +# 原生按钮覆盖定位,避免样式干扰 + +**日期**:2026-03-19 +**场景**:小程序中需在头像、图片等区域触发 `open-type="chooseAvatar"` 等原生能力,用 ` + +``` + +```css +.avatar-wrap { position: relative; } +.avatar-overlay-btn { + position: absolute; top: 0; left: 0; + width: 130rpx; height: 130rpx; /* 与头像一致 */ + padding: 0; margin: 0; + background: transparent; border: none; +} +.avatar-overlay-btn::after { border: none; } +``` + +## 要点 + +- **同级关系**:button 与展示元素是 sibling,不是 parent-child +- **绝对定位**:`position: absolute` 覆盖在目标区域上,不参与文档流 +- **透明无内容**:button 仅负责点击事件,样式完全透明 +- **适用**:chooseAvatar、open-type 等需 button 触发的原生能力 + +## 升级 Skill + +已写入 `miniprogram-dev` SKILL §12。 diff --git a/.cursor/agent/小程序开发工程师/evolution/2026-03-20-手机号登录与公用组件.md b/.cursor/agent/小程序开发工程师/evolution/2026-03-20-手机号登录与公用组件.md new file mode 100644 index 00000000..1df4e174 --- /dev/null +++ b/.cursor/agent/小程序开发工程师/evolution/2026-03-20-手机号登录与公用组件.md @@ -0,0 +1,39 @@ +# 手机号一键登录与登录弹窗公用组件 + +> 日期:2026-03-20 | 角色:小程序开发工程师 + +## 问题与场景 + +1. **getPhoneNumber 不弹窗**:点击手机号登录按钮时,无法弹出手机号选择界面,也无法获取手机号 +2. **登录弹窗重复**:read、my、gift-pay/detail 三处各自维护一套登录弹窗,逻辑重复、维护成本高 +3. **登录后手机号未同步**:手机号登录后若响应中 user.phone 为空,本地 userInfo 未更新 + +## 解决方案 + +### 1. getPhoneNumber 必须与隐私协议耦合 + +- **open-type**:`open-type="getPhoneNumber|agreePrivacyAuthorization"`(基础库 2.32.3+) +- **onNeedPrivacyAuthorization**:app.js 中需将使用 getPhoneNumber 的页面加入支持列表,否则会 `resolve({ event: 'disagree' })` 导致获取失败 +- **支持页面**:avatar-nickname、profile-edit、read、my、gift-pay/detail、index、settings +- **隐私弹窗**:当 onNeedPrivacyAuthorization 触发时,页面需有 `showPrivacyModal` + ` + + ``` +- **样式**:`.avatar-wrap { position: relative; }`;`.avatar-overlay-btn { position: absolute; top: 0; left: 0; width/height 与目标一致; background: transparent; border: none; }`;`::after { border: none; }`。 +- **口诀**:同级覆盖,绝对定位,透明按钮。 + +--- + +## 12. 何时使用本 Skill - 在 **miniprogram/** 下新增或修改页面、组件、utils 时。 - 在小程序内新增或修改任何网络请求路径时(必须保持 `/api/miniprogram/...`)。 @@ -114,5 +133,6 @@ description: Soul 创业派对小程序开发规范。在 miniprogram/ 下编辑 - 做个人中心、设置页布局时(遵循 §7,卡片区边距 16rpx)。 - 做阅读、文章等需长按复制的文本时(遵循 §9,text 加 user-select)。 - 做编辑资料页分享名片时(遵循 §10)。 +- 做头像上传、chooseAvatar 等需 button 触发的原生能力时(遵循 §11,用绝对定位覆盖,禁止 button 包裹)。 遵循本 Skill 可保证小程序只与 soul-api 的 miniprogram 路由组对接,避免与管理端或 next-project 接口混用。 diff --git a/.cursor/skills/new-version-analyze/SKILL.md b/.cursor/skills/new-version-analyze/SKILL.md index 85863261..d706bdff 100644 --- a/.cursor/skills/new-version-analyze/SKILL.md +++ b/.cursor/skills/new-version-analyze/SKILL.md @@ -192,10 +192,10 @@ description: 新版快速分析 Skill。甲方/第三方 AI 写的新版本, 2. 排除:技术债、规则不清、与稳定版冲突的部分 3. 按**最小功能**拆分,保证每个任务迁移后能完整运行 4. 排期顺序:**界面修改优先** → 大逻辑排后;P0(逻辑不通)→ P1(功能缺失)→ P2(优化) -5. 写入需求汇总,形成迁移任务清单 +5. 写入需求清单(当日需求文件),形成迁移任务清单 **产出**: -- `开发文档/1、需求/需求汇总.md` 追加需求 +- `开发文档/1、需求/YYYY-MM-DD-需求.md` 追加需求(当日文件,以日期最新为主;同步后更新 `1、需求/索引.md`) - `开发文档/新版迁移-开发方案与清单.md` 或等价迁移清单 --- @@ -259,7 +259,7 @@ description: 新版快速分析 Skill。甲方/第三方 AI 写的新版本, 4. **逻辑分层**:每个功能过三层(界面/接口/数据) 5. **体验评估**:补充空态、错误态、边界处理 6. **接口规范与冲突**:产出接口规范与冲突清单 -7. **抽取需求**:写入需求汇总,形成迁移任务清单 +7. **抽取需求**:写入需求清单(当日需求文件),形成迁移任务清单 8. **需求评审(迁移前必做)**:列出功能点 + 样式变更,逐一确认,产出评审清单 9. **回复用户**:给出分析摘要 + 文档路径 + 建议执行顺序;**迁移须在需求评审通过后开始** @@ -273,7 +273,7 @@ description: 新版快速分析 Skill。甲方/第三方 AI 写的新版本, | 接口规范与冲突 | `开发文档/新版迁移-接口规范与冲突清单.md` | | 迁移方案/清单 | `开发文档/新版迁移-开发方案与清单.md` 或 `新版功能迁移到稳定版方案.md` | | **需求评审清单** | `开发文档/新版迁移-需求评审清单.md`(功能点 + 样式变更,含确认状态) | -| 需求汇总 | `开发文档/1、需求/需求汇总.md` | +| 需求清单 | `开发文档/1、需求/YYYY-MM-DD-需求.md`(以日期最新为主) | 若已有同名文档,在其基础上**追加或更新**,不重复创建。 diff --git a/.cursor/skills/product-manager/SKILL.md b/.cursor/skills/product-manager/SKILL.md index f4fb3137..f62a1d55 100644 --- a/.cursor/skills/product-manager/SKILL.md +++ b/.cursor/skills/product-manager/SKILL.md @@ -42,7 +42,7 @@ description: Soul 创业派对产品经理需求与验收。需求分析、需 ### 0.3 功能规划与协调变更 -1. **输出需求分析**:写入 `临时需求池/YYYY-MM-DD-需求简述.md` 或追加到 `需求汇总.md` 需求清单 +1. **输出需求分析**:写入 `临时需求池/YYYY-MM-DD-需求简述.md` 或追加到 `开发文档/1、需求/YYYY-MM-DD-需求.md` 需求清单(以日期最新为主,同步后更新 `1、需求/索引.md`) 2. **三端任务拆分**:按上表列出「小程序任务」「管理端任务」「后端任务」 3. **协调变更**:若需更新《以界面定需求》,同步更新界面清单与业务逻辑 4. **指派**:明确各任务对应角色(小程序开发工程师、管理端开发工程师、后端工程师),并给出执行顺序建议(通常:后端 → 小程序;管理端视依赖可并行或后置) @@ -73,7 +73,7 @@ description: Soul 创业派对产品经理需求与验收。需求分析、需 | 职责 | 说明 | 产出 | |------|------|------| | 需求分析 | 业务需求拆解、优先级、技术可行性 | 需求分析文档、临时需求池 | -| 需求文档 | 需求清单、业务规则、验收标准 | 需求汇总.md、运营与变更.md | +| 需求文档 | 需求清单、业务规则、验收标准 | 1、需求/YYYY-MM-DD-需求.md(以最新为主)、运营与变更.md | | 验收 | 功能验收、回归检查 | 验收清单、项目推进表 | | 协调 | 与开发沟通、排期、变更 | 运营与变更、项目落地推进表 | @@ -83,7 +83,7 @@ description: Soul 创业派对产品经理需求与验收。需求分析、需 | 文档 | 说明 | |------|------| -| `开发文档/1、需求/需求汇总.md` | 需求清单、业务需求 | +| `开发文档/1、需求/` | 需求清单(按日期命名,以最新为主)、业务需求;见 `1、需求/索引.md` | | `临时需求池/` | 需求分析、技术分析 | | `开发文档/10、项目管理/项目落地推进表.md` | 里程碑、永平落地 | | `开发文档/10、项目管理/运营与变更.md` | 近期讨论、变更记录 | diff --git a/.cursor/skills/security-miner-guard/SKILL.md b/.cursor/skills/security-miner-guard/SKILL.md new file mode 100644 index 00000000..e65e569b --- /dev/null +++ b/.cursor/skills/security-miner-guard/SKILL.md @@ -0,0 +1,112 @@ +--- +description: Soul 挖矿病毒排查与防护。xmrig、kdevtmpfsi、kinsing、minerd、miner_guard。Use when 挖矿病毒、xmrig、服务器被入侵、miner_guard、安全排查、杀挖矿. +--- +# SKILL - 挖矿病毒排查与防护(安全工程师) + +> 基于 Soul 项目历史排查经验沉淀,用于快速识别、清理挖矿病毒并加固服务器。 + +## 何时使用 + +| 触发词 | 动作 | +|--------|------| +| 挖矿病毒、xmrig、服务器被入侵 | 执行排查与清理流程 | +| miner_guard、安装挖矿守护 | 安装/检查 miner_guard | +| 安全排查、杀挖矿 | 按本 Skill 执行 | + +--- + +## 一、挖矿病毒特征(Soul 项目实测) + +### 1.1 进程/路径关键词 + +| 关键词 | 说明 | +|--------|------| +| xmrig | 门罗币挖矿程序,最常见 | +| xmr-stak, minerd, cpuminer | 其他 CPU 挖矿 | +| kdevtmpfsi, kinsing | Linux 常见挖矿木马 | +| stratum | 矿池协议 | +| libprocesshider, watchbog, ddgs, trace | 隐藏/持久化相关 | + +### 1.2 常见路径 + +- `/tmp/xmrig`、`/tmp/config.json`、`/tmp/.x` +- `/tmp/kdevtmpfsi`、`/tmp/kinsing` +- `/www/wwwroot/**/xmrig*`(宝塔站点目录下残留) +- `/www/wwwroot/self/wanzhi/tongzhi/xmrig-*`(历史发现) + +### 1.3 入侵链路(Soul 项目根因分析) + +``` +公网访问宝塔 9988 → 弱口令/漏洞 → 进入面板 → www 用户执行命令 +→ 下载 xmrig 到 /tmp → 运行挖矿 +``` + +**最可能入口**:宝塔面板 9988 对公网开放 + 弱口令/历史漏洞。 + +--- + +## 二、排查与清理脚本(soul-api 目录) + +| 脚本 | 用途 | +|------|------| +| `miner_guard_check.py` | 检查 miner_guard 安装状态,手动执行一次脚本,查看日志 | +| `miner_guard_install.py` | 安装挖矿守护到服务器(上传 miner_guard.sh + 配置 cron/systemd) | +| `miner_guard.sh` | 守护脚本本体(杀进程、删文件、扫 /tmp、/www/wwwroot) | +| `remove_xmrig_self.py` | 删除固定路径 `/www/wwwroot/self/wanzhi/tongzhi/xmrig-6.24.0` | + +### 2.1 快速检查(本地执行) + +```powershell +cd e:\Gongsi\Mycontent\soul-api +python miner_guard_check.py +``` + +依赖:`pip install paramiko`。配置来源:`master.py` 的 `get_cfg()` 或环境变量 `DEPLOY_HOST`、`DEPLOY_PASSWORD` 等。 + +### 2.2 安装挖矿守护 + +```powershell +cd e:\Gongsi\Mycontent\soul-api +python miner_guard_install.py --yes +``` + +- 上传 `miner_guard.sh` 到 `/root/miner_guard.sh` +- 优先写入 `/etc/cron.d/miner_guard`(每 30 分钟),失败则尝试 crontab 或 systemd timer +- 日志:`/var/log/miner_guard.log` + +### 2.3 Cunkebao 服务器 + +```powershell +cd e:\Gongsi\Mycontent\Cunkebao +python miner_guard_install.py --yes +``` + +使用 Cunkebao 内嵌配置(非 root 用户,日志在 `~/miner_guard.log`)。 + +--- + +## 三、加固建议(防止再次入侵) + +| 优先级 | 措施 | +|--------|------| +| 1 | 宝塔面板:9988 仅允许指定 IP 访问;改非常规端口(如 29988);强密码 | +| 2 | 修改所有密码:root、宝塔、宝塔 API、MySQL、Redis | +| 3 | Redis:`bind 127.0.0.1`,设置 `requirepass` | +| 4 | 敏感信息:密码/API Key 用环境变量,不提交到 Git | + +--- + +## 四、miner_guard.sh 行为摘要 + +1. **杀进程**:`pgrep -f xmrig|kdevtmpfsi|kinsing|...` → `kill -9` +2. **删已知路径**:`/tmp/xmrig`、`/tmp/config.json` 等 +3. **扫 /tmp、/var/tmp、/dev/shm**:含挖矿关键词的可执行文件 → `rm -f` +4. **扫 /www/wwwroot**:含 xmrig 的目录/文件 → `rm -rf` / `rm -f` +5. **检查 www 用户 crontab**:可疑项仅提示,不自动删 + +--- + +## 五、注意事项 + +- 脚本会按关键词删除,可能与业务目录重叠,部署前确认扫描范围 +- `master.py`、`devloy.py` 等含默认密码,应改为环境变量并确保 `.env` 不入库 diff --git a/.cursor/skills/security-server-ops/SKILL.md b/.cursor/skills/security-server-ops/SKILL.md new file mode 100644 index 00000000..07fe2fc2 --- /dev/null +++ b/.cursor/skills/security-server-ops/SKILL.md @@ -0,0 +1,147 @@ +--- +description: Soul 服务器操作与部署。部署脚本、SSH、宝塔、环境变量。Use when 部署、服务器操作、SSH、宝塔、devloy、master、Cunkebao 部署. +--- +# SKILL - 服务器操作与部署(安全工程师) + +> Soul 项目部署脚本索引与服务器操作规范。**密码等敏感信息仅通过环境变量或脚本内 get_cfg() 读取,不在此文档明文列出。** + +## 何时使用 + +| 触发词 | 动作 | +|--------|------| +| **帮我部署api到线上** | **直接执行 `cd soul-api && python master.py`** | +| **管理端帮我部署到xx环境** | **语义化解析 xx,直接执行**:含「正式」「线上」「生产」→ `cd soul-admin && python master.py`;含「测试」「dev」→ `cd soul-admin && python deploy.py` | +| 部署、服务器操作、SSH | 按本 Skill 选择对应脚本 | +| 宝塔、devloy、master | 查阅部署配置与命令 | +| Cunkebao 部署 | 使用 Cunkebao 专用脚本 | + +--- + +## 一、服务器与配置来源 + +### 1.1 配置读取优先级 + +各部署脚本统一约定: + +1. **环境变量**(推荐):`DEPLOY_HOST`、`DEPLOY_USER`、`DEPLOY_PASSWORD`、`DEPLOY_SSH_PORT`、`BT_API_KEY` 等 +2. **脚本内 get_cfg()**:无环境变量时使用脚本默认值 +3. **master.py**:soul-api 的 miner_guard_check、remove_xmrig_self 等从 `soul-api/master.py` 的 `get_cfg()` 读取 + +### 1.2 服务器索引(配置来源,不含明文密码) + +| 项目 | 主机 | 端口 | 用户 | 配置来源 | +|------|------|------|------|----------| +| soul-api 正式 | 43.139.27.93 | 22022 | root | master.py / 环境变量 | +| soul-api 测试 | 43.139.27.93 | 22022 | root | devloy.py / 环境变量 | +| soul-admin 正式 | 43.139.27.93 | 22022 | root | soul-admin/master.py / 环境变量 | +| soul-admin 测试 | 43.139.27.93 | 22022 | root | soul-admin/deploy.py / 环境变量 | +| Cunkebao | 42.194.245.239 | 6523 | yongpxu | Cunkebao/miner_guard_install.py 内嵌 | + +**密码**:从 `DEPLOY_PASSWORD` 或各脚本 `get_cfg()` 默认值读取,**不在此文档记录**。 + +--- + +## 二、部署脚本索引 + +### 2.1 soul-api + +| 脚本 | 用途 | 命令示例 | +|------|------|----------| +| `soul-api/devloy.py` | 测试环境部署(binary/docker/runner) | `python devloy.py --mode runner` | +| `soul-api/master.py` | 正式环境部署 | `python master.py` | +| `soul-api/deploy/runner-init.sh` | Runner 容器首次初始化 | `bash deploy/runner-init.sh` | +| `soul-api/deploy/docker-deploy-remote.sh` | 服务器上执行蓝绿切换 | 由 devloy 自动调用 | +| `soul-api/deploy/deploy-runner-remote.sh` | Runner 模式部署包拷贝 | 由 devloy 自动调用 | + +**devloy 模式**: + +- `--mode runner`:容器内红蓝切换,宝塔固定 9001 +- `--mode docker`:宿主机蓝绿,需 Nginx 切换 +- `--mode binary`:Go 二进制 + 宝塔 soulDev + +### 2.2 soul-admin + +| 脚本 | 用途 | 命令示例 | +|------|------|----------| +| `soul-admin/master.py` | 正式环境部署(soul-admin,pnpm build) | `python master.py` | +| `soul-admin/deploy.py` | 测试环境部署(soul-admin-dev,pnpm build:dev) | `python deploy.py` | + +### 2.3 挖矿防护 + +| 脚本 | 用途 | 命令示例 | +|------|------|----------| +| `soul-api/miner_guard_install.py` | 安装挖矿守护(soul 服务器) | `python miner_guard_install.py --yes` | +| `Cunkebao/miner_guard_install.py` | 安装挖矿守护(Cunkebao) | `cd Cunkebao && python miner_guard_install.py --yes` | + +--- + +## 三、环境变量一览 + +| 变量 | 说明 | 默认来源 | +|------|------|----------| +| DEPLOY_HOST | SSH 主机 | 各脚本 get_cfg() | +| DEPLOY_USER | SSH 用户 | root | +| DEPLOY_PASSWORD | SSH 密码 | 脚本默认 / 需设置 | +| DEPLOY_SSH_KEY | SSH 私钥路径 | 空 | +| DEPLOY_SSH_PORT | SSH 端口 | 22022 | +| BT_PANEL_URL | 宝塔面板 URL | https://{host}:9988 | +| BT_API_KEY | 宝塔 API 密钥 | 脚本内默认 | +| BT_GO_PROJECT_NAME | 宝塔 Go 项目名 | soulDev / soulApi | +| DEPLOY_DOCKER_PATH | 部署目录 | /www/wwwroot/self/soul-dev | +| DEPLOY_NGINX_CONF | Nginx 配置路径 | 空(可自动探测) | + +--- + +## 四、常用操作 + +### 4.1 SSH 连接(示例,密码从环境变量读取) + +```powershell +# 设置环境变量后 +$env:DEPLOY_HOST="43.139.27.93" +$env:DEPLOY_PASSWORD="<从安全存储读取>" +ssh -p 22022 root@43.139.27.93 +``` + +### 4.2 部署 soul-api 测试环境(Runner 模式) + +```powershell +cd e:\Gongsi\Mycontent\soul-api +python devloy.py --mode runner +``` + +### 4.3 部署 soul-api 正式环境 + +```powershell +cd e:\Gongsi\Mycontent\soul-api +python master.py +``` + +### 4.4 部署 soul-admin 正式环境 + +```powershell +cd e:\Gongsi\Mycontent\soul-admin +python master.py +``` + +### 4.5 部署 soul-admin 测试环境 + +```powershell +cd e:\Gongsi\Mycontent\soul-admin +python deploy.py +``` + +### 4.6 检查挖矿守护 + +```powershell +cd e:\Gongsi\Mycontent\soul-api +python miner_guard_check.py +``` + +--- + +## 五、安全提醒 + +- **不要将密码提交到 Git**:master.py、devloy.py 等中的默认密码应迁移到环境变量 +- **宝塔 API 密钥**:BT_API_KEY 若泄露需在宝塔面板重新生成 +- **敏感文件**:`.env`、`master.py` 等应加入 `.gitignore` 或使用 `.env.example` 模板 diff --git a/Cunkebao/__pycache__/devlop.cpython-311.pyc b/Cunkebao/__pycache__/devlop.cpython-311.pyc new file mode 100644 index 00000000..d7dd55c8 Binary files /dev/null and b/Cunkebao/__pycache__/devlop.cpython-311.pyc differ diff --git a/Cunkebao/miner_guard_install.py b/Cunkebao/miner_guard_install.py new file mode 100644 index 00000000..b629f2e6 --- /dev/null +++ b/Cunkebao/miner_guard_install.py @@ -0,0 +1,111 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +挖矿病毒守护 - Cunkebao 服务器安装脚本 +使用 devlop.py 中的服务器配置,上传 miner_guard.sh 并配置每 30 分钟执行。 +运行: cd Cunkebao && python miner_guard_install.py --yes +""" +import os +import sys +import io + +try: + import paramiko +except ImportError: + print("错误: pip install paramiko") + sys.exit(1) + +# Cunkebao 服务器配置(与 devlop.py 一致) +script_dir = os.path.dirname(os.path.abspath(__file__)) +cfg = { + "host": "42.194.245.239", + "port": 6523, + "user": "yongpxu", + "password": "Aa123456789.", +} + +def main(): + import argparse + p = argparse.ArgumentParser(description="Cunkebao 挖矿守护安装") + p.add_argument("--yes", "-y", action="store_true", help="跳过确认") + args = p.parse_args() + + # miner_guard.sh 来自 soul-api + local_sh = os.path.join(os.path.dirname(script_dir), "soul-api", "miner_guard.sh") + if not os.path.isfile(local_sh): + local_sh = os.path.join(script_dir, "miner_guard.sh") + if not os.path.isfile(local_sh): + print("[错误] 未找到 miner_guard.sh,请确保 soul-api/miner_guard.sh 存在") + sys.exit(1) + + print("=" * 60) + print(" 挖矿病毒守护 - Cunkebao 安装") + print("=" * 60) + print(" 服务器: %s:%s" % (cfg["host"], cfg["port"])) + print(" 用户: %s" % cfg["user"]) + print(" 脚本: ~/miner_guard.sh") + print(" 日志: ~/miner_guard.log") + print(" Cron: 每 30 分钟执行") + print("=" * 60) + if not args.yes: + print("\n确认安装? 输入 yes 继续: ", end="") + if input().strip().lower() != "yes": + print("已取消") + return + + client = paramiko.SSHClient() + client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + try: + client.connect(cfg["host"], port=cfg["port"], username=cfg["user"], + password=cfg["password"], timeout=15) + except Exception as e: + print("[连接失败]", str(e)) + sys.exit(1) + + # 获取用户 home 并确定实际路径 + sin, sout, serr = client.exec_command("echo $HOME", timeout=5) + home = sout.read().decode("utf-8", errors="replace").strip() or "/home/%s" % cfg["user"] + remote_path = "%s/miner_guard.sh" % home + log_path = "%s/miner_guard.log" % home + cron_line = "*/30 * * * * /bin/bash %s >> %s 2>&1" % (remote_path, log_path) + + # 非 root 时用 $HOME 做日志,避免 /var/log 无权限 + with open(local_sh, "r", encoding="utf-8", errors="replace") as f: + content = f.read() + if cfg["user"] != "root": + head = '[ "$(id -u)" != "0" ] && LOG="$HOME/miner_guard.log" && LOCK="/tmp/miner_guard_$(whoami).lock"\n' + if "LOG=" in content and "id -u" not in content[:200]: + content = head + content + sftp = client.open_sftp() + with sftp.file(remote_path, "w") as f: + f.write(content) + sftp.chmod(remote_path, 0o755) + sftp.close() + + # 用户 crontab + crontab_line = cron_line + "\n" + tmp_cron = "/tmp/miner_guard_cron_%s" % os.getpid() + sftp = client.open_sftp() + with sftp.file(tmp_cron, "w") as f: + f.write(crontab_line) + sftp.close() + + sin, sout, serr = client.exec_command( + "(crontab -l 2>/dev/null | grep -v miner_guard || true; cat %s) | crontab - 2>&1; rm -f %s; crontab -l 2>/dev/null" % (tmp_cron, tmp_cron), + timeout=10 + ) + out = sout.read().decode("utf-8", errors="replace") + err = serr.read().decode("utf-8", errors="replace") + if "miner_guard" in out: + print("\n[成功] 已安装,每 30 分钟执行") + else: + print("\n[警告] crontab 可能未添加,错误: %s" % (err or out)) + print(" 请 SSH 登录后执行: (crontab -l 2>/dev/null; echo '%s') | crontab -" % cron_line.strip()) + + client.close() + print("\n日志: %s" % log_path) + print("=" * 60) + + +if __name__ == "__main__": + main() diff --git a/miniprogram/app.js b/miniprogram/app.js index 3d8c47ba..d3d370a2 100644 --- a/miniprogram/app.js +++ b/miniprogram/app.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 小程序入口 + * 卡若创业派对 - 小程序入口 * 开发: 卡若 */ @@ -13,8 +13,8 @@ const DEFAULT_WITHDRAW_TMPL_ID = 'u3MbZGPRkrZIk-I7QdpwzFxnO_CeQPaCWF2FkiIablE' App({ globalData: { // API 基础地址:开发时修改下面一行切换环境 - baseUrl: "https://soulapi.quwanzhi.com", - // baseUrl: 'http://localhost:8080', // 开发 + // baseUrl: "https://soulapi.quwanzhi.com", + baseUrl: 'http://localhost:8080', // 开发 // baseUrl: 'https://souldev.quwanzhi.com', // 测试 // 小程序配置 - 真实AppID appId: DEFAULT_APP_ID, @@ -80,10 +80,31 @@ App({ supportWechat: '', // config 统一缓存(5min),减少重复请求 configCache: null, - configCacheExpires: 0 + configCacheExpires: 0, + // VIP 联系方式检测:上次检测时间戳,onShow 节流 5 分钟 + lastVipContactCheck: 0, + // 头像昵称检测:上次检测时间戳,onShow 节流 5 分钟 + lastAvatarNicknameCheck: 0, }, + onLaunch(options) { + // 昵称等隐私组件需先授权:input type="nickname" 不会主动触发,需配合 wx.requirePrivacyAuthorize 使用 + if (typeof wx.onNeedPrivacyAuthorization === 'function') { + wx.onNeedPrivacyAuthorization((resolve) => { + this._privacyResolve = resolve + const pages = getCurrentPages() + const cur = pages[pages.length - 1] + const route = (cur && cur.route) || '' + const needPrivacyPages = ['avatar-nickname', 'profile-edit', 'read', 'my', 'gift-pay/detail', 'index', 'settings'] + const needShow = needPrivacyPages.some(p => route.includes(p)) + if (cur && typeof cur.setData === 'function' && needShow) { + cur.setData({ showPrivacyModal: true }) + } else { + resolve({ event: 'disagree' }) + } + }) + } this.globalData.readSectionIds = wx.getStorageSync('readSectionIds') || [] // 加载 iconfont(字体图标)。注意:小程序不支持在 wxss 里用本地 @font-face 引用字体文件, // 需使用 loadFontFace 动态加载(字体文件建议走 https CDN)。 @@ -103,6 +124,11 @@ App({ // 检查登录状态 this.checkLoginStatus() + // 每次进入:先获取 VIP 状态,VIP 走 profile-edit,非 VIP 走头像/昵称引导(由 checkVipContactRequiredAndGuide 内部链式调用) + if (this.globalData.isLoggedIn && this.globalData.userInfo?.id) { + setTimeout(() => this.checkVipContactRequiredAndGuide(), 1500) + setTimeout(() => this.connectWsHeartbeat(), 2000) + } // 加载书籍数据 this.loadBookData() @@ -143,6 +169,23 @@ App({ this.globalData.lastMpConfigCheck = now this.getAuditMode() } + // 从后台切回:先 VIP 强制跳转,再头像/昵称,节流 5 分钟 + const throttle = 5 * 60 * 1000 + if (this.globalData.isLoggedIn && this.globalData.userInfo?.id) { + if (!this.globalData.lastVipContactCheck || now - this.globalData.lastVipContactCheck > throttle) { + this.globalData.lastVipContactCheck = now + this.globalData.lastAvatarNicknameCheck = now + setTimeout(() => this.checkVipContactRequiredAndGuide(), 500) + } + // 从后台切回:若 WSS 已断开则重连(微信后台可能回收连接) + try { + const need = !this._wsSocketTask || (this._wsSocketTask.readyState !== 0 && this._wsSocketTask.readyState !== 1) + if (need) { + this.clearWsReconnect() + setTimeout(() => this.connectWsHeartbeat(), 1000) + } + } catch (_) {} + } }, // 处理推荐码绑定:官方以 options.scene 接收扫码参数(可同时带 mid/id + ref),与 utils/scene 解析闭环 @@ -322,6 +365,44 @@ App({ return false }, + /** 判断头像/昵称是否未完善(默认状态) */ + _needsAvatarNickname(user) { + const u = user || this.globalData.userInfo || {} + const avatar = (u.avatar || u.avatarUrl || '').trim() + const nickname = (u.nickname || u.nickName || '').trim() + return !avatar || avatar.includes('default') || !nickname || nickname === '微信用户' || nickname.startsWith('微信用户') + }, + + /** + * 头像/昵称未改则引导:老用户弹窗后跳 avatar-nickname;新用户由登录处强制 redirectTo + * VIP 用户不在此处理,统一走 checkVipContactRequiredAndGuide 只跳 profile-edit,避免乱跳 + */ + checkAvatarNicknameAndGuide() { + if (!this.globalData.isLoggedIn || !this.globalData.userInfo?.id) return + if (this.globalData.isVip) return // VIP 统一走 profile-edit,此处不触发 + if (!this._needsAvatarNickname()) return + try { + const pages = getCurrentPages() + const last = pages[pages.length - 1] + const route = (last && last.route) || '' + if (route.indexOf('profile-edit') !== -1 || route.indexOf('avatar-nickname') !== -1) return + } catch (_) {} + // 老用户:弹窗提示后跳转 + const today = new Date().toISOString().slice(0, 10) + const lastDate = wx.getStorageSync('lastAvatarGuideDate') || '' + if (lastDate === today) return + wx.setStorageSync('lastAvatarGuideDate', today) + wx.showModal({ + title: '完善个人资料', + content: '请设置头像和昵称,让其他创业者更好地认识你', + confirmText: '去完善', + cancelText: '稍后', + success: (res) => { + if (res.confirm) wx.navigateTo({ url: '/pages/avatar-nickname/avatar-nickname' }) + } + }) + }, + // 检查登录状态 checkLoginStatus() { try { @@ -335,12 +416,219 @@ App({ this.globalData.hasFullBook = userInfo.hasFullBook || false this.globalData.isVip = userInfo.isVip || false this.globalData.vipExpireDate = userInfo.vipExpireDate || '' + // 若手机号为空,后台静默刷新用户资料以同步最新手机号(可能在其他设备/页面已绑定) + if (!(userInfo.phone || '').trim()) { + this._refreshUserInfoIfPhoneEmpty() + } } } catch (e) { console.error('检查登录状态失败:', e) } }, + /** + * 手机号登录后:若响应中 user.phone 为空,从 profile 拉取最新资料并更新本地(后端已写入 DB) + */ + async _syncPhoneFromProfileAfterLogin(userId) { + try { + if (!userId) return + const res = await this.request({ url: `/api/miniprogram/user/profile?userId=${userId}`, silent: true }) + const profile = res?.data + if (!profile) return + const phone = (profile.phone || '').trim() + if (!phone) return + const updated = { ...this.globalData.userInfo, phone } + if (profile.wechatId != null) updated.wechatId = profile.wechatId + this.globalData.userInfo = updated + wx.setStorageSync('userInfo', updated) + wx.setStorageSync('user_phone', phone) + } catch (_) {} + }, + + /** + * 当本地 userInfo.phone 为空时,静默拉取 profile 并更新(用户可能在设置页或其他入口已绑定手机号) + */ + async _refreshUserInfoIfPhoneEmpty() { + try { + const userId = this.globalData.userInfo?.id + if (!userId) return + const res = await this.request({ url: `/api/miniprogram/user/profile?userId=${userId}`, silent: true }) + const profile = res?.data + if (!profile) return + const phone = (profile.phone || '').trim() + if (!phone) return + const updated = { ...this.globalData.userInfo, phone } + if (profile.wechatId != null) updated.wechatId = profile.wechatId + this.globalData.userInfo = updated + wx.setStorageSync('userInfo', updated) + if (phone) wx.setStorageSync('user_phone', phone) + } catch (_) { + // 静默失败,不影响主流程 + } + }, + + /** + * WSS 在线心跳(占位):登录后连接 ws,发送 auth + 心跳,供管理端统计在线人数 + * 容错:任意异常均不向外抛出,不影响登录、API 请求等核心功能 + */ + clearWsReconnect() { + try { + if (this._wsReconnectTimerId) { + clearTimeout(this._wsReconnectTimerId) + this._wsReconnectTimerId = null + } + this._wsReconnectDelay = 3000 + } catch (_) {} + }, + + scheduleWsReconnect() { + try { + if (!this.globalData.isLoggedIn || !this.globalData.userInfo?.id) return + if (this._wsReconnectTimerId) return + const delay = this._wsReconnectDelay || 3000 + this._wsReconnectTimerId = setTimeout(() => { + this._wsReconnectTimerId = null + this._wsReconnectDelay = Math.min(60000, (this._wsReconnectDelay || 3000) * 2) + this.connectWsHeartbeat() + }, delay) + } catch (_) {} + }, + + connectWsHeartbeat() { + try { + this.clearWsReconnect() + if (!this.globalData.isLoggedIn || !this.globalData.userInfo?.id) return + const userId = this.globalData.userInfo.id + const base = (this.globalData.baseUrl || '').replace(/\/$/, '') + if (!base) return + const wsUrl = base.replace(/^http/, 'ws') + '/ws/miniprogram' + if (this._wsHeartbeatTimer) { + clearInterval(this._wsHeartbeatTimer) + this._wsHeartbeatTimer = null + } + if (this._wsSocketTask) { + try { this._wsSocketTask.close() } catch (_) {} + this._wsSocketTask = null + } + let task + try { + task = wx.connectSocket({ + url: wsUrl, + fail: () => { try { this.scheduleWsReconnect() } catch (_) {} } + }) + } catch (e) { + if (typeof console !== 'undefined' && console.warn) console.warn('[WS] 连接失败(静默):', e?.message || e) + try { this.scheduleWsReconnect() } catch (_) {} + return + } + task.onOpen(() => { + try { + this.clearWsReconnect() + task.send({ data: JSON.stringify({ type: 'auth', userId }) }) + this._wsHeartbeatTimer = setInterval(() => { + try { + if (task && task.readyState === 1) task.send({ data: JSON.stringify({ type: 'heartbeat' }) }) + } catch (_) {} + }, 30000) + } catch (_) {} + }) + task.onClose(() => { + try { + if (this._wsHeartbeatTimer) { clearInterval(this._wsHeartbeatTimer); this._wsHeartbeatTimer = null } + this._wsSocketTask = null + this.scheduleWsReconnect() + } catch (_) {} + }) + task.onError(() => { + try { + if (this._wsHeartbeatTimer) { clearInterval(this._wsHeartbeatTimer); this._wsHeartbeatTimer = null } + this._wsSocketTask = null + this.scheduleWsReconnect() + } catch (_) {} + }) + this._wsSocketTask = task + } catch (e) { + if (typeof console !== 'undefined' && console.warn) console.warn('[WS] 心跳异常(静默,不影响业务):', e?.message || e) + } + }, + + /** + * VIP 用户登录后检测:手机号/头像昵称等需完善时,统一只跳 profile-edit,避免与 avatar-nickname 乱跳。 + * 旧数据(VIP 但头像昵称未改):弹窗「为了更好服务,请完善资料」→ redirectTo profile-edit + */ + async checkVipContactRequiredAndGuide() { + if (!this.globalData.isLoggedIn || !this.globalData.userInfo?.id) return + const now = Date.now() + if (this._lastVipGuideRun && now - this._lastVipGuideRun < 3000) return // 3 秒内不重复执行,避免 onLaunch+onShow 双重触发 + this._lastVipGuideRun = now + const userId = this.globalData.userInfo.id + try { + const pages = getCurrentPages() + const last = pages[pages.length - 1] + const route = (last && last.route) || '' + if (route.indexOf('profile-edit') !== -1 || route.indexOf('avatar-nickname') !== -1) return + } catch (_) {} + + try { + const [vipRes, profileRes] = await Promise.all([ + this.request({ url: `/api/miniprogram/vip/status?userId=${userId}`, silent: true }).catch(() => null), + this.request({ url: `/api/miniprogram/user/profile?userId=${userId}`, silent: true }).catch(() => null) + ]) + const isVip = vipRes?.data?.isVip || this.globalData.isVip || false + this.globalData.isVip = isVip + if (!isVip) { + this.checkAvatarNicknameAndGuide() + return + } + + const profileData = profileRes?.data || this.globalData.userInfo || {} + const phone = (profileData.phone || this.globalData.userInfo?.phone || wx.getStorageSync('user_phone') || '').trim().replace(/\s/g, '') + const wechatId = (profileData.wechatId || profileData.wechat_id || this.globalData.userInfo?.wechatId || this.globalData.userInfo?.wechat_id || wx.getStorageSync('user_wechat') || '').trim() + const needsAvatarNickname = this._needsAvatarNickname(profileData) + + // VIP 头像/昵称未改(含旧数据):统一只跳 profile-edit,弹窗「为了更好服务,请完善资料」 + if (needsAvatarNickname) { + wx.showModal({ + title: '完善资料', + content: '为了更好为您服务,请完善资料', + confirmText: '去完善', + showCancel: false, + success: () => { + wx.redirectTo({ url: '/pages/profile-edit/profile-edit' }) + } + }) + return + } + if (phone && wechatId) return + + // VIP 无手机号:弹窗说明后跳转 + if (!phone) { + wx.showModal({ + title: '完善资料', + content: 'VIP会员需完善手机号,以便使用找伙伴、提现等功能', + confirmText: '去完善', + showCancel: false, + success: () => { + wx.redirectTo({ url: '/pages/profile-edit/profile-edit' }) + } + }) + return + } + // 有手机号但缺微信号:弹窗引导(非强制) + wx.showModal({ + title: '完善联系方式', + content: '请到资料页完善微信号,便于他人联系您', + confirmText: '去完善', + cancelText: '稍后', + success: (res) => { + if (res.confirm) wx.navigateTo({ url: '/pages/profile-edit/profile-edit' }) + } + }) + } catch (e) { + console.log('[App] checkVipContactRequiredAndGuide 失败:', e?.message) + } + }, + // 加载书籍元数据(totalSections),不再预加载 all-chapters async loadBookData() { try { @@ -659,8 +947,17 @@ App({ this.bindReferralCode(pendingRef) } - // 登录后引导完善资料(规则引擎接管,完善头像吸收到规则引擎) - checkAndExecute('after_login', null) + // 同步 isVip(与 checkLoginStatus 一致) + this.globalData.isVip = user.isVip || false + this.globalData.vipExpireDate = user.vipExpireDate || '' + // 首次登录注册:强制跳转 avatar-nickname 修改头像昵称(不弹窗) + if (res.isNewUser === true && this._needsAvatarNickname(user)) { + setTimeout(() => wx.redirectTo({ url: '/pages/avatar-nickname/avatar-nickname' }), 1000) + } else { + checkAndExecute('after_login', null) + setTimeout(() => this.checkVipContactRequiredAndGuide(), 1200) + setTimeout(() => this.connectWsHeartbeat(), 2000) + } } return res.data @@ -721,8 +1018,16 @@ App({ this.bindReferralCode(pendingRef) } - // 登录后引导完善资料(规则引擎接管) - checkAndExecute('after_login', null) + // 同步 isVip + this.globalData.isVip = user.isVip || false + this.globalData.vipExpireDate = user.vipExpireDate || '' + // 首次登录注册:强制跳转 avatar-nickname + if (res.isNewUser === true && this._needsAvatarNickname(user)) { + setTimeout(() => wx.redirectTo({ url: '/pages/avatar-nickname/avatar-nickname' }), 1000) + } else { + checkAndExecute('after_login', null) + setTimeout(() => this.checkVipContactRequiredAndGuide(), 1200) + } } return res.data.openId } @@ -764,9 +1069,18 @@ App({ this.globalData.isLoggedIn = true this.globalData.purchasedSections = user.purchasedSections || [] this.globalData.hasFullBook = user.hasFullBook || false + this.globalData.isVip = user.isVip || false + this.globalData.vipExpireDate = user.vipExpireDate || '' wx.setStorageSync('userInfo', user) wx.setStorageSync('token', res.data.token) + // 手机号登录后:若用户资料中手机号为空,从 profile 刷新并更新(后端已写入 DB,可能响应中未带回) + const phone = (user.phone || '').trim() + if (!phone) { + this._syncPhoneFromProfileAfterLogin(user.id) + } else { + wx.setStorageSync('user_phone', phone) + } // 登录成功后绑定推荐码 const pendingRef = wx.getStorageSync('pendingReferralCode') || this.globalData.pendingReferralCode @@ -775,9 +1089,14 @@ App({ this.bindReferralCode(pendingRef) } - // 登录后引导完善资料(规则引擎接管) - checkAndExecute('after_login', null) - + // 首次登录注册:强制跳转 avatar-nickname + if (res.isNewUser === true && this._needsAvatarNickname(user)) { + setTimeout(() => wx.redirectTo({ url: '/pages/avatar-nickname/avatar-nickname' }), 1000) + } else { + checkAndExecute('after_login', null) + setTimeout(() => this.checkVipContactRequiredAndGuide(), 1200) + } + return res.data } } catch (e) { diff --git a/miniprogram/app.json b/miniprogram/app.json index 320b1cc2..19b8fee9 100644 --- a/miniprogram/app.json +++ b/miniprogram/app.json @@ -1,6 +1,7 @@ { "usingComponents": { - "icon": "/components/icon/icon" + "icon": "/components/icon/icon", + "login-modal": "/components/login-modal/login-modal" }, "pages": [ "pages/chapters/chapters", @@ -28,12 +29,13 @@ "pages/avatar-nickname/avatar-nickname", "pages/gift-pay/detail", "pages/gift-pay/list", - "pages/gift-pay/redemption-detail" + "pages/gift-pay/redemption-detail", + "pages/dev-login/dev-login" ], "window": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#000000", - "navigationBarTitleText": "Soul创业派对", + "navigationBarTitleText": "卡若创业派对", "navigationBarTextStyle": "white", "backgroundColor": "#000000", "navigationStyle": "custom" diff --git a/miniprogram/components/icon/icon.js b/miniprogram/components/icon/icon.js index bfbcfd03..095a9068 100644 --- a/miniprogram/components/icon/icon.js +++ b/miniprogram/components/icon/icon.js @@ -42,38 +42,127 @@ Component({ }, methods: { - // iconfont 映射:将业务 name(lucide 风格)映射到 iconfont 的 unicode(形如 "\ue6aa") + // iconfont 映射:与 static/iconfont.wxss 一一对应(icon-xxx -> xxx) // 小程序不支持通过 :before { content } 渲染,因此必须直接输出 unicode 字符 getFontGlyph(name) { const map = { - // 基础高频(来自 static/iconfont.css 的 content 值) - 'wallet': '\ue6c8', + // === 来自 iconfont.wxss 完整映射 === + 'qianbao': '\ue6c8', 'gift': '\ue6c9', + 'zap1': '\ue75c', 'user': '\ue6b9', + 'upload': '\ue6ba', + 'work': '\ue6bb', + 'training': '\ue6bc', + 'warning': '\ue6bd', + 'zoom-in': '\ue6be', + 'zoom-out': '\ue6bf', + 'arrow-left-bold': '\ue6c1', + 'arrow-up-bold': '\ue6c2', + 'close-bold': '\ue6c3', + 'arrow-down-bold': '\ue6c4', + 'minus-bold': '\ue6c5', + 'arrow-right-bold': '\ue6c6', + 'select-bold': '\ue6c7', + 'money-wallet': '\ue833', + 'book-open': '\ue993', + 'biaoshilei_yonghuzu': '\ue61b', + 'add': '\ue664', + 'add-circle': '\ue665', + 'adjust': '\ue666', + 'arrow-up-circle': '\ue667', + 'arrow-right-circle': '\ue668', + 'arrow-down': '\ue669', + 'ashbin': '\ue66a', + 'arrow-right': '\ue66b', + 'browse': '\ue66c', + 'bottom': '\ue66d', + 'back': '\ue66e', + 'bad': '\ue66f', + 'arrow-left-circle': '\ue670', + 'camera': '\ue671', + 'chart-bar': '\ue672', + 'attachment': '\ue673', + 'code': '\ue674', + 'close': '\ue675', + 'check-item': '\ue676', + 'calendar': '\ue677', + 'comment': '\ue678', + 'complete': '\ue679', + 'direction-down': '\ue67a', + 'direction-down-circle': '\ue67b', + 'direction-right': '\ue67c', + 'direction-up': '\ue67d', + 'discount': '\ue67e', + 'electronics': '\ue681', + 'elipsis': '\ue682', + 'export': '\ue683', + 'explain': '\ue684', + 'edit': '\ue685', + 'eye-close': '\ue686', + 'email': '\ue687', + 'error': '\ue688', + 'favorite': '\ue689', + 'file-common': '\ue68a', + 'file-delete': '\ue68b', + 'file-add': '\ue68c', + 'film': '\ue68d', + 'fabulous': '\ue68e', + 'file': '\ue68f', + 'folder-close': '\ue690', + 'filter': '\ue691', + 'good': '\ue692', + 'hide': '\ue693', + 'home': '\ue694', + 'file-open': '\ue695', + 'forward': '\ue696', + 'import': '\ue697', + 'layers': '\ue698', + 'lock': '\ue699', + 'map': '\ue69a', + 'menu': '\ue69b', + 'help': '\ue69c', + 'minus-circle': '\ue69d', + 'notification': '\ue69e', + 'more': '\ue69f', + 'mobile-phone': '\ue6a0', + 'minus': '\ue6a1', + 'navigation': '\ue6a2', + 'prompt': '\ue6a3', + 'refresh': '\ue6a4', + 'run-up': '\ue6a5', + 'picture': '\ue6a6', + 'run-in': '\ue6a7', + 'pin': '\ue6a8', + 'save': '\ue6a9', 'search': '\ue6aa', 'share': '\ue6ab', - 'home': '\ue694', - 'lock': '\ue699', - 'camera': '\ue671', - 'warning': '\ue6bd', + 'scanning': '\ue6ac', + 'security': '\ue6ad', + 'sign-out': '\ue6ae', + 'select': '\ue6af', + 'stop': '\ue6b0', + 'success': '\ue6b1', + 'switch': '\ue6b2', + 'setting': '\ue6b3', + 'survey': '\ue6b4', + 'time': '\ue6b5', + 'telephone': '\ue6b6', + 'top': '\ue6b7', + 'unlock': '\ue6b8', - // 箭头/展开 + // === 业务别名(兼容 lucide 等命名)=== + 'wallet': '\ue6c8', 'chevron-left': '\ue6c1', 'chevron-right': '\ue6c6', 'chevron-down': '\ue6c4', 'chevron-up': '\ue6c2', - 'arrow-up-right': '\ue6c2', - - // 交互/状态 'x': '\ue6c3', 'check': '\ue6c7', - 'plus': '\ue664', 'trash-2': '\ue66a', 'pencil': '\ue685', 'zap': '\ue75c', 'info': '\ue69c', - - // 语义近似映射(iconfont 不一定有同名) 'map-pin': '\ue6a8', 'message-circle': '\ue678', 'smartphone': '\ue6a0', @@ -81,9 +170,6 @@ Component({ 'shield': '\ue6ad', 'star': '\ue689', 'heart': '\ue68e', - - // 其他:若 iconfont 里不存在,则继续走 SVG 兜底 - 'book-open': '\ue993', 'bar-chart': '\ue672', 'clock': '\ue6b5', } diff --git a/miniprogram/components/login-modal/login-modal.js b/miniprogram/components/login-modal/login-modal.js new file mode 100644 index 00000000..64219c42 --- /dev/null +++ b/miniprogram/components/login-modal/login-modal.js @@ -0,0 +1,79 @@ +/** + * Soul 创业派对 - 公用登录弹窗 + * 手机号一键登录 + 隐私协议 + */ +Component({ + properties: { + show: { type: Boolean, value: false }, + desc: { type: String, value: '登录后可购买章节、解锁更多内容' }, + showPrivacyModal: { type: Boolean, value: false }, + showCancel: { type: Boolean, value: false } + }, + data: { + agreeProtocol: false, + isLoggingIn: false + }, + observers: { + show(v) { + if (!v) this.setData({ agreeProtocol: false, isLoggingIn: false }) + } + }, + methods: { + stopPropagation() {}, + onClose() { + this.triggerEvent('close') + }, + onToggleAgree() { + this.setData({ agreeProtocol: !this.data.agreeProtocol }) + }, + onOpenUserProtocol() { + wx.navigateTo({ url: '/pages/agreement/agreement' }) + }, + onOpenPrivacy() { + wx.navigateTo({ url: '/pages/privacy/privacy' }) + }, + onAgreePrivacy() { + const app = getApp() + if (app._privacyResolve) { + app._privacyResolve({ buttonId: 'agree-privacy-btn', event: 'agree' }) + app._privacyResolve = null + } + this.triggerEvent('privacyagree') + }, + async onPhoneLogin(e) { + if (!e.detail.code) { + return this._fallbackWechatLogin() + } + const app = getApp() + this.setData({ isLoggingIn: true }) + try { + const result = await app.loginWithPhone(e.detail.code) + this.setData({ isLoggingIn: false }) + if (result) { + this.triggerEvent('success') + } else { + wx.showToast({ title: '登录失败,请重试', icon: 'none' }) + } + } catch (err) { + this.setData({ isLoggingIn: false }) + wx.showToast({ title: '登录失败,请重试', icon: 'none' }) + } + }, + async _fallbackWechatLogin() { + const app = getApp() + this.setData({ isLoggingIn: true }) + try { + const result = await app.login() + this.setData({ isLoggingIn: false }) + if (result) { + this.triggerEvent('success') + } else { + wx.showToast({ title: '登录失败,请重试', icon: 'none' }) + } + } catch (err) { + this.setData({ isLoggingIn: false }) + wx.showToast({ title: '登录失败,请重试', icon: 'none' }) + } + } + } +}) diff --git a/miniprogram/components/login-modal/login-modal.json b/miniprogram/components/login-modal/login-modal.json new file mode 100644 index 00000000..14157c74 --- /dev/null +++ b/miniprogram/components/login-modal/login-modal.json @@ -0,0 +1,6 @@ +{ + "component": true, + "usingComponents": { + "icon": "/components/icon/icon" + } +} diff --git a/miniprogram/components/login-modal/login-modal.wxml b/miniprogram/components/login-modal/login-modal.wxml new file mode 100644 index 00000000..b07bc3c7 --- /dev/null +++ b/miniprogram/components/login-modal/login-modal.wxml @@ -0,0 +1,27 @@ + + + + + + + + + + + + 为获取手机号,请先同意《用户隐私保护指引》 + + + + + + diff --git a/miniprogram/components/login-modal/login-modal.wxss b/miniprogram/components/login-modal/login-modal.wxss new file mode 100644 index 00000000..116bef83 --- /dev/null +++ b/miniprogram/components/login-modal/login-modal.wxss @@ -0,0 +1,136 @@ +/* Soul 创业派对 - 公用登录弹窗 */ +.modal-overlay { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(0, 0, 0, 0.7); + z-index: 1000; + display: flex; + align-items: center; + justify-content: center; + padding: 48rpx; +} +.modal-content { + width: 100%; + max-width: 600rpx; + background: #1c1c1e; + border-radius: 32rpx; + overflow: hidden; +} +.modal-close { + position: absolute; + top: 24rpx; + right: 24rpx; + z-index: 1; + padding: 16rpx; +} +.login-modal { + padding: 48rpx 32rpx; + text-align: center; +} +.login-icon { + font-size: 80rpx; + display: block; + margin-bottom: 24rpx; +} +.login-title { + font-size: 36rpx; + font-weight: 700; + color: #ffffff; + display: block; + margin-bottom: 16rpx; +} +.login-desc { + font-size: 26rpx; + color: rgba(255, 255, 255, 0.5); + display: block; + margin-bottom: 48rpx; +} +.btn-wechat { + display: flex; + align-items: center; + justify-content: center; + gap: 16rpx; + padding: 28rpx; + background: #07C160; + color: #ffffff; + font-size: 30rpx; + font-weight: 600; + border-radius: 24rpx; + margin-bottom: 20rpx; + border: none; +} +.btn-wechat::after { border: none; } +.btn-wechat-icon { + width: 40rpx; + height: 40rpx; + background: rgba(255, 255, 255, 0.2); + border-radius: 8rpx; + font-size: 24rpx; + display: flex; + align-items: center; + justify-content: center; +} +.btn-wechat-disabled { opacity: 0.6; } +.login-modal-cancel { + margin-top: 24rpx; + padding: 24rpx; + font-size: 28rpx; + color: rgba(255, 255, 255, 0.5); + text-align: center; +} +.privacy-wechat-row { + margin: 24rpx 0; + padding: 24rpx; + background: rgba(0, 206, 209, 0.1); + border-radius: 16rpx; +} +.privacy-wechat-desc { + display: block; + font-size: 26rpx; + color: rgba(255, 255, 255, 0.8); + margin-bottom: 16rpx; +} +.privacy-agree-btn { + width: 100%; + padding: 20rpx; + background: #07C160; + color: #fff; + font-size: 28rpx; + border-radius: 16rpx; + border: none; +} +.privacy-agree-btn::after { border: none; } +.login-agree-row { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: center; + margin-top: 32rpx; + font-size: 22rpx; + color: rgba(255, 255, 255, 0.5); +} +.agree-checkbox { + width: 32rpx; + height: 32rpx; + border: 2rpx solid rgba(255, 255, 255, 0.5); + border-radius: 6rpx; + margin-right: 12rpx; + display: flex; + align-items: center; + justify-content: center; + font-size: 22rpx; + flex-shrink: 0; +} +.agree-checked { + background: #00CED1; + border-color: #00CED1; +} +.agree-text { color: rgba(255, 255, 255, 0.6); } +.agree-link { + color: #00CED1; + text-decoration: underline; + padding: 0 4rpx; +} diff --git a/miniprogram/docs/资料完善引导流程图.md b/miniprogram/docs/资料完善引导流程图.md new file mode 100644 index 00000000..5e8d0736 --- /dev/null +++ b/miniprogram/docs/资料完善引导流程图.md @@ -0,0 +1,119 @@ +# Soul 小程序 - 资料完善引导流程 + +> **入口统一**:仅 `checkVipContactRequiredAndGuide` 被 onLaunch/onShow/登录 调度;非 VIP 时内部链式调用 `checkAvatarNicknameAndGuide`。 + +--- + +## 一、整体流程(冷启动 / onShow) + +```mermaid +flowchart TD + Start([入口:onLaunch 1.5s / onShow 0.5s]) --> CheckLogin{已登录?} + CheckLogin -->|否| End1([结束]) + CheckLogin -->|是| VIPCheck[checkVipContactRequiredAndGuide] + VIPCheck --> CoolDown{3秒内已执行过?} + CoolDown -->|是| End0([结束,防重复]) + CoolDown -->|否| RouteSkip{当前在 profile-edit
或 avatar-nickname?} + RouteSkip -->|是| End0 + RouteSkip -->|否| FetchAPI + VIPCheck --> FetchAPI[请求 API:VIP 状态 + 用户资料] + FetchAPI --> UpdateIsVip[更新 globalData.isVip] + UpdateIsVip --> IsVip{VIP?} + + IsVip -->|否| AvatarCheck[checkAvatarNicknameAndGuide] + AvatarCheck --> End2([结束]) + + IsVip -->|是| SkipProfile{当前在 profile-edit?} + SkipProfile -->|是| End3([结束]) + SkipProfile -->|否| NeedAvatar{头像/昵称未改?} + + NeedAvatar -->|是| Modal1[弹窗:为了更好为您服务,请完善资料] + Modal1 --> Redirect1[redirectTo profile-edit] + Redirect1 --> End4([结束]) + + NeedAvatar -->|否| HasPhone{有手机号?} + HasPhone -->|否| Modal2[弹窗:VIP会员需完善手机号...] + Modal2 --> Redirect2[redirectTo profile-edit] + Redirect2 --> End5([结束]) + + HasPhone -->|是| HasWechat{有微信号?} + HasWechat -->|是| End6([结束]) + HasWechat -->|否| Modal3[弹窗:请到资料页完善微信号] + Modal3 --> Nav1[navigateTo profile-edit] + Nav1 --> End7([结束]) +``` + +--- + +## 二、头像/昵称引导(非 VIP 用户) + +```mermaid +flowchart TD + A([checkAvatarNicknameAndGuide]) --> B{globalData.isVip?} + B -->|是| X([跳过,由 VIP 检测处理]) + B -->|否| C{头像/昵称已完善?} + C -->|是| Y([结束]) + C -->|否| D{当前在 profile-edit
或 avatar-nickname?} + D -->|是| Z([结束]) + D -->|否| E{今日已提示过?} + E -->|是| W([结束]) + E -->|否| F[弹窗:请设置头像和昵称] + F --> G{点击去完善?} + G -->|是| H[navigateTo avatar-nickname] + G -->|否 稍后| I([结束]) + H --> I +``` + +--- + +## 三、首次登录(新注册用户) + +```mermaid +flowchart TD + Login([登录成功]) --> NewUser{isNewUser?} + NewUser -->|否| VIPFlow[checkVipContactRequiredAndGuide] + VIPFlow --> Flow1([见流程图一]) + + NewUser -->|是| NeedAvatar{头像/昵称未改?} + NeedAvatar -->|否| VIPFlow + NeedAvatar -->|是| ForceRedirect[redirectTo avatar-nickname
无弹窗,强制跳转] + ForceRedirect --> End([结束]) +``` + +--- + +## 四、VIP 购买成功(超级个体) + +```mermaid +flowchart TD + Pay([VIP 支付成功]) --> Sync[同步权益 / 拉取 VIP 状态] + Sync --> Modal[弹窗:为了更好为您服务,请填写好资料] + Modal --> Redirect[redirectTo profile-edit?from=vip] + Redirect --> End([结束]) +``` + +--- + +## 五、页面职责 + +| 页面 | 用途 | +|------|------| +| **avatar-nickname** | 仅头像 + 昵称,专注引导新用户/非 VIP | +| **profile-edit** | 完整资料(手机号、微信号、MBTI、行业等),VIP 用户统一跳转 | + +--- + +## 六、触发时机汇总 + +| 时机 | 执行的函数 | 延迟 | +|------|------------|------| +| onLaunch | checkVipContactRequiredAndGuide | 1500ms | +| onShow | checkVipContactRequiredAndGuide | 500ms(节流 5min)| +| login 成功 | checkVipContactRequiredAndGuide | 1200ms | +| getOpenId 返回 user | checkVipContactRequiredAndGuide | 1200ms | +| loginWithPhone 成功 | checkVipContactRequiredAndGuide | 1200ms | +| VIP 支付成功 | _onVipPaymentSuccess | 即时 | + +--- + +*文档生成于资料完善引导逻辑调整后* diff --git a/miniprogram/pages/about/about.js b/miniprogram/pages/about/about.js index af04d83d..d37f9b96 100644 --- a/miniprogram/pages/about/about.js +++ b/miniprogram/pages/about/about.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 关于作者页 + * 卡若创业派对 - 关于作者页 * 开发: 卡若 */ const app = getApp() @@ -121,13 +121,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 关于', + title: '卡若创业派对 - 关于', path: ref ? `/pages/about/about?ref=${ref}` : '/pages/about/about' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 关于', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 关于', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/addresses/addresses.js b/miniprogram/pages/addresses/addresses.js index 0dbd7f7e..45e9f16a 100644 --- a/miniprogram/pages/addresses/addresses.js +++ b/miniprogram/pages/addresses/addresses.js @@ -125,13 +125,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 地址管理', + title: '卡若创业派对 - 地址管理', path: ref ? `/pages/addresses/addresses?ref=${ref}` : '/pages/addresses/addresses' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 地址管理', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 地址管理', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/addresses/edit.js b/miniprogram/pages/addresses/edit.js index a7d6925e..7bd2fe6e 100644 --- a/miniprogram/pages/addresses/edit.js +++ b/miniprogram/pages/addresses/edit.js @@ -203,13 +203,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 编辑地址', + title: '卡若创业派对 - 编辑地址', path: ref ? `/pages/addresses/edit?ref=${ref}` : '/pages/addresses/edit' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 编辑地址', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 编辑地址', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/agreement/agreement.js b/miniprogram/pages/agreement/agreement.js index d7ad88c1..9d325054 100644 --- a/miniprogram/pages/agreement/agreement.js +++ b/miniprogram/pages/agreement/agreement.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 用户协议 + * 卡若创业派对 - 用户协议 * 审核要求:登录前可点击《用户协议》查看完整内容 */ const app = getApp() @@ -23,13 +23,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 用户协议', + title: '卡若创业派对 - 用户协议', path: ref ? `/pages/agreement/agreement?ref=${ref}` : '/pages/agreement/agreement' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 用户协议', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 用户协议', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/avatar-nickname/avatar-nickname.js b/miniprogram/pages/avatar-nickname/avatar-nickname.js index a344a603..1de09a3b 100644 --- a/miniprogram/pages/avatar-nickname/avatar-nickname.js +++ b/miniprogram/pages/avatar-nickname/avatar-nickname.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 头像昵称引导页 + * 卡若创业派对 - 头像昵称引导页 * 登录后资料未完善时引导用户修改默认头像和昵称,仅包含头像+昵称两项 */ const app = getApp() @@ -10,7 +10,8 @@ Page({ avatar: '', nickname: '', saving: false, - showAvatarModal: false, + showPrivacyModal: false, + nicknameInputFocus: false, }, onLoad() { @@ -40,39 +41,38 @@ Page({ onNicknameChange(e) { this.setData({ nickname: e.detail.value }) }, - - onAvatarTap() { - wx.showActionSheet({ - itemList: ['使用微信头像', '从相册选择'], - success: (res) => { - if (res.tapIndex === 0) { - this.setData({ showAvatarModal: true }) - } else if (res.tapIndex === 1) { - this.chooseAvatarFromAlbum() - } + onNicknameBlur() { + this.setData({ nicknameInputFocus: false }) + }, + onNicknameAreaTouch() { + if (typeof wx.requirePrivacyAuthorize !== 'function') return + wx.requirePrivacyAuthorize({ + success: () => { + this.setData({ nicknameInputFocus: true }) }, + fail: () => {}, }) }, - - closeAvatarModal() { - this.setData({ showAvatarModal: false }) + preventMove() {}, + handleAgreePrivacy() { + const app = getApp() + if (app._privacyResolve) { + app._privacyResolve({ buttonId: 'agree-btn', event: 'agree' }) + app._privacyResolve = null + } + this.setData({ showPrivacyModal: false, nicknameInputFocus: true }) }, - - chooseAvatarFromAlbum() { - wx.chooseMedia({ - count: 1, - mediaType: ['image'], - sourceType: ['album', 'camera'], - success: async (res) => { - const tempPath = res.tempFiles[0].tempFilePath - await this.uploadAndSaveAvatar(tempPath) - }, - }) + handleDisagreePrivacy() { + const app = getApp() + if (app._privacyResolve) { + app._privacyResolve({ event: 'disagree' }) + app._privacyResolve = null + } + this.setData({ showPrivacyModal: false }) }, async onChooseAvatar(e) { const tempAvatarUrl = e.detail?.avatarUrl - this.setData({ showAvatarModal: false }) if (!tempAvatarUrl) return await this.uploadAndSaveAvatar(tempAvatarUrl) }, @@ -98,7 +98,10 @@ Page({ fail: reject, }) }) - const avatarUrl = app.globalData.baseUrl + uploadRes.data.url + let avatarUrl = uploadRes.data?.url || uploadRes.url + if (avatarUrl && !avatarUrl.startsWith('http')) { + avatarUrl = app.globalData.baseUrl + avatarUrl + } this.setData({ avatar: avatarUrl }) await app.request({ url: '/api/miniprogram/user/profile', diff --git a/miniprogram/pages/avatar-nickname/avatar-nickname.wxml b/miniprogram/pages/avatar-nickname/avatar-nickname.wxml index 05982d52..e844082b 100644 --- a/miniprogram/pages/avatar-nickname/avatar-nickname.wxml +++ b/miniprogram/pages/avatar-nickname/avatar-nickname.wxml @@ -1,4 +1,4 @@ - + @@ -15,35 +15,48 @@ 让他人更好地认识你,展示更专业的形象 - + - - - - {{nickname ? nickname[0] : '?'}} + - + 昵称 - + 微信用户可点击输入框自动填充昵称,或手动输入 + + + + 温馨提示 + 为获取微信昵称,请先同意《用户隐私保护指引》 + + 拒绝 + + + {{saving ? '保存中...' : '完成'}} @@ -54,14 +67,4 @@ - - - - - 使用微信头像 - 点击下方按钮,一键同步当前微信头像 - - 取消 - - diff --git a/miniprogram/pages/avatar-nickname/avatar-nickname.wxss b/miniprogram/pages/avatar-nickname/avatar-nickname.wxss index 83b02442..075774c2 100644 --- a/miniprogram/pages/avatar-nickname/avatar-nickname.wxss +++ b/miniprogram/pages/avatar-nickname/avatar-nickname.wxss @@ -1,4 +1,4 @@ -/* Soul创业派对 - 头像昵称引导页 */ +/* 卡若创业派对 - 头像昵称引导页 */ .page { background: #050B14; min-height: 100vh; @@ -72,10 +72,20 @@ .avatar-section { display: flex; - flex-direction: column; + flex-direction: row; align-items: center; + justify-content: center; + gap: 32rpx; margin-bottom: 48rpx; } +/* 头像按钮:透明无边框,点击直接弹出微信原生选择器 */ +.avatar-wrap-btn { + display: flex; align-items: center; justify-content: center; + padding: 0; margin: 0; background: transparent; border: none; + width: 192rpx; height: 192rpx; border-radius: 50%; overflow: visible; + flex-shrink: 0; +} +.avatar-wrap-btn::after { border: none; } .avatar-wrap { position: relative; width: 192rpx; @@ -126,7 +136,6 @@ font-size: 28rpx; color: #5EEAD4; font-weight: 500; - margin-top: 16rpx; } .form-section { @@ -263,9 +272,79 @@ .btn-choose-avatar::after { border: none; } +.btn-choose-album { + width: 100%; + height: 88rpx; + margin-top: 24rpx; + display: flex; + align-items: center; + justify-content: center; + background: rgba(94, 234, 212, 0.15); + color: #5EEAD4; + font-size: 30rpx; + font-weight: 600; + border-radius: 44rpx; + border: 2rpx solid #5EEAD4; +} .avatar-modal-cancel { margin-top: 24rpx; text-align: center; font-size: 28rpx; color: #9CA3AF; } + +/* 隐私授权弹窗(昵称选择器需先授权) */ +.privacy-mask { + position: fixed; + inset: 0; + background: rgba(0, 0, 0, 0.6); + z-index: 2000; + display: flex; + align-items: center; + justify-content: center; + padding: 48rpx; + box-sizing: border-box; +} +.privacy-modal { + width: 100%; + max-width: 560rpx; + background: #17212F; + border-radius: 24rpx; + padding: 48rpx; + display: flex; + flex-direction: column; + align-items: center; + box-sizing: border-box; +} +.privacy-title { + font-size: 36rpx; + font-weight: 700; + color: #fff; + margin-bottom: 24rpx; +} +.privacy-desc { + font-size: 28rpx; + color: #94A3B8; + text-align: center; + line-height: 1.5; + margin-bottom: 40rpx; +} +.privacy-btn { + width: 100%; + height: 88rpx; + line-height: 88rpx; + text-align: center; + background: #5EEAD4; + color: #050B14; + font-size: 32rpx; + font-weight: 600; + border-radius: 44rpx; + border: none; + margin: 0; +} +.privacy-btn::after { border: none; } +.privacy-cancel { + margin-top: 24rpx; + font-size: 28rpx; + color: #94A3B8; +} diff --git a/miniprogram/pages/chapters/chapters.js b/miniprogram/pages/chapters/chapters.js index d1c09800..2ff3381e 100644 --- a/miniprogram/pages/chapters/chapters.js +++ b/miniprogram/pages/chapters/chapters.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 目录页 + * 卡若创业派对 - 目录页 * 开发: 卡若 * 技术支持: 存客宝 * 数据: 完整真实文章标题 @@ -258,13 +258,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 目录', + title: '卡若创业派对 - 目录', path: ref ? `/pages/chapters/chapters?ref=${ref}` : '/pages/chapters/chapters' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 真实商业故事', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 真实商业故事', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/dev-login/dev-login.js b/miniprogram/pages/dev-login/dev-login.js new file mode 100644 index 00000000..a4e31757 --- /dev/null +++ b/miniprogram/pages/dev-login/dev-login.js @@ -0,0 +1,80 @@ +/** + * 卡若创业派对 - 开发登录页 + * 临时:账户=手机号,密码可空,用于切换为对方账号调试 + */ +const app = getApp() +const { checkAndExecute } = require('../../utils/ruleEngine.js') + +Page({ + data: { + statusBarHeight: 44, + account: '', + password: '', + loading: false + }, + + onLoad() { + this.setData({ + statusBarHeight: app.globalData.statusBarHeight || 44 + }) + }, + + onAccountInput(e) { + this.setData({ account: (e.detail.value || '').trim() }) + }, + + onPasswordInput(e) { + this.setData({ password: e.detail.value || '' }) + }, + + goBack() { + app.goBackOrToHome() + }, + + async handleLogin() { + const { account, password, loading } = this.data + if (!account || loading) return + + const phone = account.replace(/\s/g, '') + if (phone.length < 11) { + wx.showToast({ title: '请输入11位手机号', icon: 'none' }) + return + } + + this.setData({ loading: true }) + try { + const res = await app.request('/api/miniprogram/dev/login-by-phone', { + method: 'POST', + data: { phone, password: password || '' } + }) + + if (res.success && res.data) { + const user = res.data.user + app.globalData.userInfo = user + app.globalData.isLoggedIn = true + app.globalData.purchasedSections = user.purchasedSections || [] + app.globalData.hasFullBook = user.hasFullBook || false + app.globalData.isVip = user.isVip || false + app.globalData.vipExpireDate = user.vipExpireDate || '' + + wx.setStorageSync('userInfo', user) + wx.setStorageSync('token', res.data.token) + + const pendingRef = wx.getStorageSync('pendingReferralCode') || app.globalData.pendingReferralCode + if (pendingRef) { + app.bindReferralCode(pendingRef) + } + + checkAndExecute('after_login', null) + setTimeout(() => app.checkVipContactRequiredAndGuide(), 1200) + + wx.showToast({ title: '登录成功', icon: 'success' }) + setTimeout(() => wx.switchTab({ url: '/pages/index/index' }), 800) + } + } catch (e) { + wx.showToast({ title: e.message || '登录失败', icon: 'none' }) + } finally { + this.setData({ loading: false }) + } + } +}) diff --git a/miniprogram/pages/dev-login/dev-login.json b/miniprogram/pages/dev-login/dev-login.json new file mode 100644 index 00000000..7a8f2176 --- /dev/null +++ b/miniprogram/pages/dev-login/dev-login.json @@ -0,0 +1,7 @@ +{ + "usingComponents": { + "icon": "/components/icon/icon" + }, + "navigationStyle": "custom", + "navigationBarTitleText": "账户密码登录" +} diff --git a/miniprogram/pages/dev-login/dev-login.wxml b/miniprogram/pages/dev-login/dev-login.wxml new file mode 100644 index 00000000..38be4457 --- /dev/null +++ b/miniprogram/pages/dev-login/dev-login.wxml @@ -0,0 +1,51 @@ + + + + + + + 账户密码登录 + + + + + + + 开发专用:输入对方手机号登录,密码可留空。仅开发环境可用。 + + + + + 账户(手机号) + + + + + + 密码(可留空) + + + + + + {{loading ? '登录中...' : '登录'}} + + + + diff --git a/miniprogram/pages/dev-login/dev-login.wxss b/miniprogram/pages/dev-login/dev-login.wxss new file mode 100644 index 00000000..c21b507d --- /dev/null +++ b/miniprogram/pages/dev-login/dev-login.wxss @@ -0,0 +1,23 @@ +/* 开发登录页 */ +.page { min-height: 100vh; background: #000; padding-bottom: 64rpx; } + +.nav-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(0,0,0,0.9); backdrop-filter: blur(40rpx); display: flex; align-items: center; justify-content: space-between; padding: 0 32rpx; height: 88rpx; } +.nav-back { width: 64rpx; height: 64rpx; background: #1c1c1e; border-radius: 50%; display: flex; align-items: center; justify-content: center; } +.back-icon { font-size: 40rpx; color: rgba(255,255,255,0.6); font-weight: 300; } +.nav-title { font-size: 34rpx; font-weight: 600; color: #fff; } +.nav-placeholder { width: 64rpx; } + +.content { padding: 24rpx 16rpx; } + +.tip-banner { background: rgba(255,165,0,0.1); border: 2rpx solid rgba(255,165,0,0.3); border-radius: 20rpx; padding: 20rpx 24rpx; margin-bottom: 24rpx; } +.tip-text { font-size: 24rpx; color: #FFA500; line-height: 1.5; } + +.form-card { background: #1c1c1e; border-radius: 32rpx; padding: 32rpx; border: 2rpx solid rgba(0,206,209,0.2); } +.form-item { margin-bottom: 32rpx; } +.form-item:last-of-type { margin-bottom: 48rpx; } +.form-label { font-size: 28rpx; color: rgba(255,255,255,0.8); display: block; margin-bottom: 16rpx; } +.form-input-wrap { padding: 16rpx 24rpx; background: #1F2937; border: 2rpx solid rgba(255,255,255,0.1); border-radius: 24rpx; } +.form-input-inner { width: 100%; font-size: 28rpx; background: transparent; color: #fff; } +.input-placeholder { color: rgba(255,255,255,0.25); } +.btn-primary { padding: 32rpx; background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%); color: #000; font-size: 32rpx; font-weight: 600; text-align: center; border-radius: 28rpx; } +.btn-disabled { opacity: 0.5; } diff --git a/miniprogram/pages/gift-pay/detail.js b/miniprogram/pages/gift-pay/detail.js index d0afa283..fde113c3 100644 --- a/miniprogram/pages/gift-pay/detail.js +++ b/miniprogram/pages/gift-pay/detail.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 代付详情页 + * 卡若创业派对 - 代付详情页 * 改造后:发起人支付,好友领取。支持单页模式引导、登录检测。 */ const app = getApp() @@ -18,7 +18,7 @@ Page({ amountDisplay: '0.00', isSinglePageMode: false, showLoginModal: false, - agreeProtocol: false, + showPrivacyModal: false, // 创建态 isCreateMode: false, giftQuantity: 1, @@ -28,6 +28,9 @@ Page({ onLoad(options) { wx.showShareMenu({ menus: ['shareAppMessage', 'shareTimeline'] }) this.setData({ statusBarHeight: app.globalData.statusBarHeight || 44 }) + if (options?.ref || options?.referralCode) { + app.handleReferralCode({ query: { ref: options.ref || options.referralCode } }) + } const requestSn = (options.requestSn || '').trim() const sectionId = (options.sectionId || '').trim() const isSinglePage = (wx.getSystemInfoSync?.()?.mode === 'singlePage') || app.globalData.isSinglePageMode @@ -223,7 +226,7 @@ Page({ } const userId = app.globalData.userInfo?.id if (!userId) { - this.setData({ showLoginModal: true, agreeProtocol: false }) + this.setData({ showLoginModal: true }) return } await this._doRedeem() @@ -261,44 +264,15 @@ Page({ } }, - closeLoginModal() { + onLoginModalClose() { + this.setData({ showLoginModal: false, showPrivacyModal: false }) + }, + onLoginModalPrivacyAgree() { + this.setData({ showPrivacyModal: false }) + }, + async onLoginModalSuccess() { this.setData({ showLoginModal: false }) - }, - toggleAgree() { - this.setData({ agreeProtocol: !this.data.agreeProtocol }) - }, - async handleWechatLogin() { - if (!this.data.agreeProtocol) { - wx.showToast({ title: '请先阅读并同意用户协议和隐私政策', icon: 'none' }) - return - } - try { - const result = await app.login() - if (!result) return - this.setData({ showLoginModal: false, agreeProtocol: false }) - await this._doRedeem() - } catch (e) { - wx.showToast({ title: '登录失败', icon: 'none' }) - } - }, - async handlePhoneLogin(e) { - if (!e.detail.code) return this.handleWechatLogin() - try { - const result = await app.loginWithPhone(e.detail.code) - if (!result) return - this.setData({ showLoginModal: false }) - await this._doRedeem() - } catch (e) { - wx.showToast({ title: '登录失败', icon: 'none' }) - } - }, - - stopPropagation() {}, - openUserProtocol() { - wx.navigateTo({ url: '/pages/agreement/agreement' }) - }, - openPrivacy() { - wx.navigateTo({ url: '/pages/privacy/privacy' }) + await this._doRedeem() }, goBack() { @@ -323,12 +297,12 @@ Page({ const { requestSn } = this.data const ref = app.getMyReferralCode?.() || app.globalData.userInfo?.referralCode || '' let path = '/pages/gift-pay/detail' - if (requestSn) { - path = `/pages/gift-pay/detail?requestSn=${requestSn}` - if (ref) path += `&ref=${encodeURIComponent(ref)}` - } + const params = [] + if (requestSn) params.push(`requestSn=${encodeURIComponent(requestSn)}`) + if (ref) params.push(`ref=${encodeURIComponent(ref)}`) + if (params.length) path += '?' + params.join('&') return { - title: '好友送你一篇好文 - Soul创业派对', + title: '好友送你一篇好文 - 卡若创业派对', path } }, @@ -336,14 +310,12 @@ Page({ onShareTimeline() { const { requestSn } = this.data const ref = app.getMyReferralCode?.() || app.globalData.userInfo?.referralCode || '' - let query = '' - if (requestSn) { - query = `requestSn=${requestSn}` - if (ref) query += `&ref=${encodeURIComponent(ref)}` - } + const params = [] + if (requestSn) params.push(`requestSn=${encodeURIComponent(requestSn)}`) + if (ref) params.push(`ref=${encodeURIComponent(ref)}`) return { - title: '好友送你一篇好文 - Soul创业派对', - query: query || '' + title: '好友送你一篇好文 - 卡若创业派对', + query: params.length ? params.join('&') : '' } } }) diff --git a/miniprogram/pages/gift-pay/detail.wxml b/miniprogram/pages/gift-pay/detail.wxml index 0f04bcb0..2fde1afb 100644 --- a/miniprogram/pages/gift-pay/detail.wxml +++ b/miniprogram/pages/gift-pay/detail.wxml @@ -1,4 +1,4 @@ - + @@ -145,26 +145,15 @@ - - - - + + diff --git a/miniprogram/pages/gift-pay/detail.wxss b/miniprogram/pages/gift-pay/detail.wxss index 9ce4aa5c..52838802 100644 --- a/miniprogram/pages/gift-pay/detail.wxss +++ b/miniprogram/pages/gift-pay/detail.wxss @@ -1,4 +1,4 @@ -/* Soul创业派对 - 代付详情页(参考 yulan 深色主题、青绿主色) */ +/* 卡若创业派对 - 代付详情页(参考 yulan 深色主题、青绿主色) */ .page { min-height: 100vh; background: #050505; @@ -637,6 +637,10 @@ } .btn-wechat-disabled { opacity: 0.5; } .btn-wechat-icon { font-weight: 700; margin-right: 8rpx; } +.privacy-wechat-row { margin: 24rpx 0; padding: 24rpx; background: rgba(0,206,209,0.1); border-radius: 16rpx; } +.privacy-wechat-desc { display: block; font-size: 26rpx; color: rgba(255,255,255,0.8); margin-bottom: 16rpx; } +.privacy-agree-btn { width: 100%; padding: 20rpx; background: #07C160; color: #fff; font-size: 28rpx; border-radius: 16rpx; border: none; } +.privacy-agree-btn::after { border: none; } .login-agree-row { display: flex; flex-wrap: wrap; diff --git a/miniprogram/pages/gift-pay/list.js b/miniprogram/pages/gift-pay/list.js index 2fc992a4..0f6d3fe8 100644 --- a/miniprogram/pages/gift-pay/list.js +++ b/miniprogram/pages/gift-pay/list.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 我发起的代付(改造后:仅我发起的,含领取记录) + * 卡若创业派对 - 我发起的代付(改造后:仅我发起的,含领取记录) */ const app = getApp() @@ -10,8 +10,11 @@ Page({ loading: false }, - onLoad() { + onLoad(options) { this.setData({ statusBarHeight: app.globalData.statusBarHeight || 44 }) + if (options && (options.ref || options.referralCode)) { + app.handleReferralCode({ query: { ref: options.ref || options.referralCode } }) + } this.loadData() }, @@ -82,6 +85,8 @@ Page({ }, onShareAppMessage() { - return { title: '我的代付 - Soul创业派对', path: '/pages/gift-pay/list' } + const ref = app.getMyReferralCode?.() || app.globalData.userInfo?.referralCode || '' + const path = ref ? `/pages/gift-pay/list?ref=${encodeURIComponent(ref)}` : '/pages/gift-pay/list' + return { title: '我的代付 - 卡若创业派对', path } } }) diff --git a/miniprogram/pages/gift-pay/list.wxml b/miniprogram/pages/gift-pay/list.wxml index 4b0f7880..733b052b 100644 --- a/miniprogram/pages/gift-pay/list.wxml +++ b/miniprogram/pages/gift-pay/list.wxml @@ -1,4 +1,4 @@ - + diff --git a/miniprogram/pages/gift-pay/list.wxss b/miniprogram/pages/gift-pay/list.wxss index 57765dda..4a87c892 100644 --- a/miniprogram/pages/gift-pay/list.wxss +++ b/miniprogram/pages/gift-pay/list.wxss @@ -1,4 +1,4 @@ -/* Soul创业派对 - 我的代付 */ +/* 卡若创业派对 - 我的代付 */ .page { min-height: 100vh; background: #000; diff --git a/miniprogram/pages/gift-pay/redemption-detail.js b/miniprogram/pages/gift-pay/redemption-detail.js index 59fde550..d362139b 100644 --- a/miniprogram/pages/gift-pay/redemption-detail.js +++ b/miniprogram/pages/gift-pay/redemption-detail.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 代付领取详情(发起人查看:文章信息、领取人明细、剩余份数) + * 卡若创业派对 - 代付领取详情(发起人查看:文章信息、领取人明细、剩余份数) */ const app = getApp() diff --git a/miniprogram/pages/gift-pay/redemption-detail.wxml b/miniprogram/pages/gift-pay/redemption-detail.wxml index 7a38baf1..6795fd20 100644 --- a/miniprogram/pages/gift-pay/redemption-detail.wxml +++ b/miniprogram/pages/gift-pay/redemption-detail.wxml @@ -1,4 +1,4 @@ - + diff --git a/miniprogram/pages/gift-pay/redemption-detail.wxss b/miniprogram/pages/gift-pay/redemption-detail.wxss index 5e0f2dc9..a87057aa 100644 --- a/miniprogram/pages/gift-pay/redemption-detail.wxss +++ b/miniprogram/pages/gift-pay/redemption-detail.wxss @@ -1,4 +1,4 @@ -/* Soul创业派对 - 代付领取详情 */ +/* 卡若创业派对 - 代付领取详情 */ .page { min-height: 100vh; background: #050505; diff --git a/miniprogram/pages/index/index.js b/miniprogram/pages/index/index.js index 2ea75040..c9d457f2 100644 --- a/miniprogram/pages/index/index.js +++ b/miniprogram/pages/index/index.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 首页 + * 卡若创业派对 - 首页 * 开发: 卡若 * 技术支持: 存客宝 */ @@ -61,6 +61,7 @@ Page({ // 链接卡若 - 留资弹窗 showLeadModal: false, leadPhone: '', + showPrivacyModal: false, // 展开状态(首页精选/最新) featuredExpanded: false, @@ -380,7 +381,7 @@ Page({ }, closeLeadModal() { - this.setData({ showLeadModal: false, leadPhone: '' }) + this.setData({ showLeadModal: false, leadPhone: '', showPrivacyModal: false }) }, // 阻止弹窗内部点击事件冒泡到遮罩层 @@ -390,6 +391,15 @@ Page({ this.setData({ leadPhone: (e.detail.value || '').trim() }) }, + // 微信隐私协议同意(getPhoneNumber 需先同意) + onAgreePrivacyForLead() { + if (app._privacyResolve) { + app._privacyResolve({ buttonId: 'agree-privacy-btn', event: 'agree' }) + app._privacyResolve = null + } + this.setData({ showPrivacyModal: false }) + }, + // 一键获取手机号(微信能力),成功后直接提交链接卡若 async onGetPhoneNumberForLead(e) { if (e.detail.errMsg !== 'getPhoneNumber:ok') { @@ -562,13 +572,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 真实商业故事', + title: '卡若创业派对 - 真实商业故事', path: ref ? `/pages/index/index?ref=${ref}` : '/pages/index/index' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 真实商业故事', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 真实商业故事', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/index/index.wxml b/miniprogram/pages/index/index.wxml index b6040be0..8739bf3a 100644 --- a/miniprogram/pages/index/index.wxml +++ b/miniprogram/pages/index/index.wxml @@ -1,5 +1,5 @@ - + @@ -12,7 +12,7 @@ S - Soul创业派对 + 卡若创业派对 来自派对房的真实故事 @@ -38,18 +38,19 @@ @@ -78,7 +79,7 @@ > - {{item.name[0] || '会'}} + {{(item.name && item.name[0]) || '会'}} {{item.name}} @@ -87,7 +88,7 @@ 成为会员,展示你的项目 - 加入创业派对 + 加入创业派对 → @@ -112,7 +113,7 @@ {{item.id}} - {{item.tag || '精选'}} + {{item.tag}} {{item.title}} @@ -142,13 +143,7 @@ - - NEW - {{item.title}} - - - ¥{{item.price}} - + {{item.title}} @@ -166,7 +161,11 @@ 留下联系方式 方便卡若与您联系 - + + + 为获取手机号,请先同意《用户隐私保护指引》 + + 或手动输入 diff --git a/miniprogram/pages/index/index.wxss b/miniprogram/pages/index/index.wxss index 625d679a..913ab27c 100644 --- a/miniprogram/pages/index/index.wxss +++ b/miniprogram/pages/index/index.wxss @@ -953,6 +953,10 @@ line-height: normal; } .lead-get-phone-btn::after { border: none; } +.privacy-wechat-row { margin: 24rpx 0; padding: 24rpx; background: rgba(0,206,209,0.1); border-radius: 16rpx; } +.privacy-wechat-desc { display: block; font-size: 26rpx; color: rgba(255,255,255,0.8); margin-bottom: 16rpx; } +.privacy-agree-btn { width: 100%; padding: 20rpx; background: #07C160; color: #fff; font-size: 28rpx; border-radius: 16rpx; border: none; } +.privacy-agree-btn::after { border: none; } .lead-divider { display: block; font-size: 24rpx; diff --git a/miniprogram/pages/match/match.js b/miniprogram/pages/match/match.js index 61b07554..94976962 100644 --- a/miniprogram/pages/match/match.js +++ b/miniprogram/pages/match/match.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 找伙伴页 + * 卡若创业派对 - 找伙伴页 * 按H5网页端完全重构 * 开发: 卡若 */ @@ -226,9 +226,9 @@ Page({ if (!userId) { callback(); return } try { const res = await app.request({ url: `/api/miniprogram/user/profile?userId=${userId}`, silent: true }) - const phone = (res?.data?.phone || '').trim() - const wechat = (res?.data?.wechatId || '').trim() - if (phone || wechat) { + const phone = (res?.data?.phone || wx.getStorageSync('user_phone') || '').trim().replace(/\s/g, '') + const wechat = (res?.data?.wechatId || res?.data?.wechat_id || wx.getStorageSync('user_wechat') || '').trim() + if (phone && /^1[3-9]\d{9}$/.test(phone)) { callback() return } @@ -252,10 +252,10 @@ Page({ onContactWechatInput(e) { this.setData({ contactWechat: e.detail.value }) }, async saveContactInfo() { - const phone = (this.data.contactPhone || '').trim() + const phone = (this.data.contactPhone || '').trim().replace(/\s/g, '') const wechat = (this.data.contactWechat || '').trim() - if (!phone && !wechat) { - wx.showToast({ title: '请至少填写手机号或微信号', icon: 'none' }) + if (!phone || !/^1[3-9]\d{9}$/.test(phone)) { + wx.showToast({ title: '请输入正确的11位手机号(必填)', icon: 'none' }) return } this.setData({ contactSaving: true }) @@ -390,7 +390,7 @@ Page({ showPurchaseTip() { wx.showModal({ title: '需要购买书籍', - content: '购买《Soul创业派对》后即可使用匹配功能,仅需9.9元', + content: '购买《卡若创业派对》后即可使用匹配功能,仅需9.9元', confirmText: '去购买', success: (res) => { if (res.confirm) { @@ -761,13 +761,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 找伙伴', + title: '卡若创业派对 - 找伙伴', path: ref ? `/pages/match/match?ref=${ref}` : '/pages/match/match' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 找伙伴', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 找伙伴', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/match/match.wxml b/miniprogram/pages/match/match.wxml index b1ea6ae8..f8a0ca89 100644 --- a/miniprogram/pages/match/match.wxml +++ b/miniprogram/pages/match/match.wxml @@ -1,5 +1,5 @@ - + @@ -274,7 +274,7 @@ 请完善联系方式 - 需完善手机号或微信号才能使用找伙伴功能 + 手机号必填,微信号建议填写,以便使用找伙伴功能 手机号 diff --git a/miniprogram/pages/member-detail/member-detail.js b/miniprogram/pages/member-detail/member-detail.js index 7c0255d1..3e1ceb96 100644 --- a/miniprogram/pages/member-detail/member-detail.js +++ b/miniprogram/pages/member-detail/member-detail.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 超级个体/会员详情页 + * 卡若创业派对 - 超级个体/会员详情页 * 接口:优先 /api/miniprogram/vip/members?id=xx(VIP),回退 /api/miniprogram/users?id=xx(任意用户) * 头像/昵称:统一用用户资料(nickname/avatar)优先,随「我的」修改实时生效 * mbti, region, industry, position, businessScale, skills, @@ -186,7 +186,7 @@ Page({ const ref = app.getMyReferralCode() const id = this.data.member?.id return { - title: 'Soul创业派对 - 创业者详情', + title: '卡若创业派对 - 创业者详情', path: id && ref ? `/pages/member-detail/member-detail?id=${id}&ref=${ref}` : id ? `/pages/member-detail/member-detail?id=${id}` : ref ? `/pages/member-detail/member-detail?ref=${ref}` : '/pages/member-detail/member-detail' } }, @@ -195,6 +195,6 @@ Page({ const ref = app.getMyReferralCode() const id = this.data.member?.id const q = id ? (ref ? `id=${id}&ref=${ref}` : `id=${id}`) : (ref ? `ref=${ref}` : '') - return { title: 'Soul创业派对 - 创业者详情', query: q } + return { title: '卡若创业派对 - 创业者详情', query: q } } }) diff --git a/miniprogram/pages/member-detail/member-detail.wxml b/miniprogram/pages/member-detail/member-detail.wxml index 88dc8b73..79ad9c7a 100644 --- a/miniprogram/pages/member-detail/member-detail.wxml +++ b/miniprogram/pages/member-detail/member-detail.wxml @@ -1,4 +1,4 @@ - + @@ -18,7 +18,7 @@ - {{member.name[0] || '创'}} + {{(member.name && member.name[0]) || '创'}} VIP @@ -132,7 +132,7 @@ 成为超级个体 - + diff --git a/miniprogram/pages/member-detail/member-detail.wxss b/miniprogram/pages/member-detail/member-detail.wxss index c6f547b2..7b7af4c7 100644 --- a/miniprogram/pages/member-detail/member-detail.wxss +++ b/miniprogram/pages/member-detail/member-detail.wxss @@ -1,4 +1,4 @@ -/* Soul创业派对 - 个人资料页(enhanced_professional_profile 1:1 还原) */ +/* 卡若创业派对 - 个人资料页(enhanced_professional_profile 1:1 还原) */ .page { background: #050B14; min-height: 100vh; color: #fff; } /* 导航栏 */ diff --git a/miniprogram/pages/mentor-detail/mentor-detail.js b/miniprogram/pages/mentor-detail/mentor-detail.js index 39ad0ac3..9cb992cf 100644 --- a/miniprogram/pages/mentor-detail/mentor-detail.js +++ b/miniprogram/pages/mentor-detail/mentor-detail.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 导师详情(stitch_soul) + * 卡若创业派对 - 导师详情(stitch_soul) * 联系导师按钮 → 弹出 v2 弹窗(选择咨询项目) */ const app = getApp() diff --git a/miniprogram/pages/mentors/mentors.js b/miniprogram/pages/mentors/mentors.js index 00bf3a69..317abdb2 100644 --- a/miniprogram/pages/mentors/mentors.js +++ b/miniprogram/pages/mentors/mentors.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 选择导师(stitch_soul) + * 卡若创业派对 - 选择导师(stitch_soul) */ const app = getApp() diff --git a/miniprogram/pages/my/my.js b/miniprogram/pages/my/my.js index b050a14e..973c1e59 100644 --- a/miniprogram/pages/my/my.js +++ b/miniprogram/pages/my/my.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 我的页面 + * 卡若创业派对 - 我的页面 * 开发: 卡若 * 技术支持: 存客宝 */ @@ -60,17 +60,12 @@ Page({ // 登录弹窗 showLoginModal: false, - isLoggingIn: false, - // 用户须主动勾选同意协议(审核要求:不得默认同意) - agreeProtocol: false, + showPrivacyModal: false, // 修改昵称弹窗 showNicknameModal: false, editingNickname: '', - // 头像弹窗(含 chooseAvatar 按钮,必须用户点击才可获取微信头像) - showAvatarModal: false, - // 手机/微信号弹窗(stitch_soul comprehensive_profile_editor_v1_2) showContactModal: false, contactPhone: '', @@ -412,6 +407,8 @@ Page({ wx.hideLoading() this.setData({ receivingAll: false }) this.loadPendingConfirm() + this.loadMyEarnings() + this.loadWalletBalance() } }, @@ -430,9 +427,12 @@ Page({ return } const d = res.data + // 我的收益 = 累计佣金;我的余额 = 可提现金额(兼容 snake_case) + const totalCommission = d.totalCommission ?? d.total_commission ?? 0 + const availableEarnings = d.availableEarnings ?? d.available_earnings ?? 0 this.setData({ - earnings: formatMoney(d.totalCommission), - pendingEarnings: formatMoney(d.availableEarnings), + earnings: formatMoney(totalCommission), + pendingEarnings: formatMoney(availableEarnings), referralCount: d.referralCount ?? this.data.referralCount, earningsLoading: false, earningsRefreshing: false @@ -458,10 +458,9 @@ Page({ wx.showToast({ title: '已刷新', icon: 'success' }) }, - // 微信原生获取头像(button open-type="chooseAvatar" 回调,真正获取微信头像) + // 微信原生获取头像(button open-type="chooseAvatar" 回调,点击头像直接唤起选择器) async onChooseAvatar(e) { const tempAvatarUrl = e.detail?.avatarUrl - this.setData({ showAvatarModal: false }) if (!tempAvatarUrl) return wx.showLoading({ title: '上传中...', mask: true }) @@ -495,8 +494,11 @@ Page({ }) }) - // 2. 获取上传后的完整URL - const avatarUrl = app.globalData.baseUrl + uploadRes.data.url + // 2. 获取上传后的完整URL(显示用);保存时只传路径 + let avatarUrl = uploadRes.data?.url || uploadRes.url + if (avatarUrl && !avatarUrl.startsWith('http')) { + avatarUrl = app.globalData.baseUrl + avatarUrl + } console.log('[My] 头像上传成功:', avatarUrl) // 3. 更新本地头像 @@ -506,7 +508,7 @@ Page({ app.globalData.userInfo = userInfo wx.setStorageSync('userInfo', userInfo) - // 4. 同步到服务器数据库 + // 4. 同步到服务器数据库(只保存路径,不含域名) await app.request('/api/miniprogram/user/update', { method: 'POST', data: { userId: userInfo.id, avatar: avatarUrl } @@ -548,12 +550,9 @@ Page({ } }, - // 打开昵称修改弹窗 + // 点击昵称:跳转资料编辑页(type="nickname" 在弹窗内无法触发微信昵称选择器,需在主页面) editNickname() { - this.setData({ - showNicknameModal: true, - editingNickname: this.data.userInfo?.nickname || '' - }) + wx.navigateTo({ url: '/pages/profile-edit/profile-edit' }) }, // 关闭昵称弹窗 @@ -689,84 +688,23 @@ Page({ console.warn('[My] 检测单页模式失败,回退为正常登录弹窗:', e) } try { - this.setData({ showLoginModal: true, agreeProtocol: false }) + this.setData({ showLoginModal: true }) } catch (e) { console.error('[My] showLogin error:', e) this.setData({ showLoginModal: true }) } }, - // 切换协议勾选(用户主动勾选,非默认同意) - toggleAgree() { - this.setData({ agreeProtocol: !this.data.agreeProtocol }) + onLoginModalClose() { + this.setData({ showLoginModal: false, showPrivacyModal: false }) }, - - // 打开用户协议页(审核要求:点击《用户协议》需有响应) - openUserProtocol() { - wx.navigateTo({ url: '/pages/agreement/agreement' }) + onLoginModalPrivacyAgree() { + this.setData({ showPrivacyModal: false }) }, - - // 打开隐私政策页(审核要求:点击《隐私政策》需有响应) - openPrivacy() { - wx.navigateTo({ url: '/pages/privacy/privacy' }) - }, - - // 关闭登录弹窗 - closeLoginModal() { - if (this.data.isLoggingIn) return + onLoginModalSuccess() { + this.initUserStatus() this.setData({ showLoginModal: false }) - }, - - // 微信登录(须已勾选同意协议,且做好错误处理避免审核报错) - async handleWechatLogin() { - if (!this.data.agreeProtocol) { - wx.showToast({ title: '请先阅读并同意用户协议和隐私政策', icon: 'none' }) - return - } - this.setData({ isLoggingIn: true }) - try { - const result = await app.login() - if (result) { - this.initUserStatus() - this.setData({ showLoginModal: false, agreeProtocol: false }) - wx.showToast({ title: '登录成功', icon: 'success' }) - } else { - wx.showToast({ title: '登录失败,请重试', icon: 'none' }) - } - } catch (e) { - console.error('[My] 微信登录错误:', e) - wx.showToast({ title: '登录失败,请重试', icon: 'none' }) - } finally { - this.setData({ isLoggingIn: false }) - } - }, - - // 手机号登录(需要用户授权) - async handlePhoneLogin(e) { - // 检查是否有授权code - if (!e.detail.code) { - // 用户拒绝授权或获取失败,尝试使用微信登录 - console.log('手机号授权失败,尝试微信登录') - return this.handleWechatLogin() - } - - this.setData({ isLoggingIn: true }) - - try { - const result = await app.loginWithPhone(e.detail.code) - if (result) { - this.initUserStatus() - this.setData({ showLoginModal: false }) - wx.showToast({ title: '登录成功', icon: 'success' }) - } else { - wx.showToast({ title: '登录失败,请重试', icon: 'none' }) - } - } catch (e) { - console.error('手机号登录错误:', e) - wx.showToast({ title: '登录失败,请重试', icon: 'none' }) - } finally { - this.setData({ isLoggingIn: false }) - } + wx.showToast({ title: '登录成功', icon: 'success' }) }, // 点击菜单 @@ -875,62 +813,6 @@ Page({ } catch (e) { console.log('[My] 余额查询失败', e) } }, - // 头像点击:已登录弹出选项(微信头像 / 相册) - onAvatarTap() { - if (!this.data.isLoggedIn) { this.showLogin(); return } - wx.showActionSheet({ - itemList: ['获取微信头像', '从相册选择'], - success: (res) => { - if (res.tapIndex === 0) this.setData({ showAvatarModal: true }) - if (res.tapIndex === 1) this.chooseAvatarFromAlbum() - } - }) - }, - - closeAvatarModal() { - this.setData({ showAvatarModal: false }) - }, - - // 从相册/相机选择(自定义图片) - chooseAvatarFromAlbum() { - wx.chooseMedia({ - count: 1, mediaType: ['image'], sourceType: ['album', 'camera'], - success: async (res) => { - const tempPath = res.tempFiles[0].tempFilePath - wx.showLoading({ title: '上传中...', mask: true }) - try { - const uploadRes = await new Promise((resolve, reject) => { - wx.uploadFile({ - url: app.globalData.baseUrl + '/api/miniprogram/upload', - filePath: tempPath, - name: 'file', - formData: { folder: 'avatars' }, - success: (r) => { - try { - const data = JSON.parse(r.data) - data.success ? resolve(data) : reject(new Error(data.error || '上传失败')) - } catch (e) { reject(new Error('解析失败')) } - }, - fail: (e) => reject(e) - }) - }) - const avatarUrl = app.globalData.baseUrl + uploadRes.data.url - const userInfo = this.data.userInfo - userInfo.avatar = avatarUrl - this.setData({ userInfo }) - app.globalData.userInfo = userInfo - wx.setStorageSync('userInfo', userInfo) - await app.request('/api/miniprogram/user/update', { method: 'POST', data: { userId: userInfo.id, avatar: avatarUrl } }) - wx.hideLoading() - wx.showToast({ title: '头像已更新', icon: 'success' }) - } catch (e) { - wx.hideLoading() - wx.showToast({ title: e.message || '上传失败,请重试', icon: 'none' }) - } - } - }) - }, - goToVip() { trackClick('my', 'btn_click', '会员中心') if (!this.data.isLoggedIn) { this.showLogin(); return } @@ -974,6 +856,7 @@ Page({ wx.hideLoading() wx.showToast({ title: '提现申请已提交', icon: 'success' }) this.loadMyEarnings() + this.loadWalletBalance() } catch (e) { wx.hideLoading() wx.showToast({ title: e.message || '提现失败', icon: 'none' }) @@ -982,18 +865,19 @@ Page({ }) }, - // 提现/找伙伴前检查手机或微信号,未填则弹窗(stitch_soul) + // 提现/找伙伴前检查联系方式:手机号必填(与 profile-edit 规则一致) async ensureContactInfo(callback) { const userId = app.globalData.userInfo?.id if (!userId) { callback(); return } try { const res = await app.request({ url: `/api/miniprogram/user/profile?userId=${userId}`, silent: true }) - const phone = (res?.data?.phone || '').trim() - const wechat = (res?.data?.wechatId || '').trim() - if (phone || wechat) { + const phone = (res?.data?.phone || wx.getStorageSync('user_phone') || '').trim().replace(/\s/g, '') + const hasValidPhone = !!phone && /^1[3-9]\d{9}$/.test(phone) + if (hasValidPhone) { callback() return } + const wechat = (res?.data?.wechatId || res?.data?.wechat_id || wx.getStorageSync('user_wechat') || '').trim() this.setData({ showContactModal: true, contactPhone: phone || '', @@ -1015,10 +899,14 @@ Page({ onContactWechatInput(e) { this.setData({ contactWechat: e.detail.value }) }, async saveContactInfo() { - const phone = (this.data.contactPhone || '').trim() + const phone = (this.data.contactPhone || '').trim().replace(/\s/g, '') const wechat = (this.data.contactWechat || '').trim() - if (!phone && !wechat) { - wx.showToast({ title: '请至少填写手机号或微信号', icon: 'none' }) + if (!phone) { + wx.showToast({ title: '请输入手机号(必填)', icon: 'none' }) + return + } + if (!/^1[3-9]\d{9}$/.test(phone)) { + wx.showToast({ title: '请输入正确的11位手机号', icon: 'none' }) return } this.setData({ contactSaving: true }) @@ -1051,13 +939,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 我的', + title: '卡若创业派对 - 我的', path: ref ? `/pages/my/my?ref=${ref}` : '/pages/my/my' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 我的', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 我的', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/my/my.wxml b/miniprogram/pages/my/my.wxml index 8532a9e2..440771a7 100644 --- a/miniprogram/pages/my/my.wxml +++ b/miniprogram/pages/my/my.wxml @@ -16,20 +16,21 @@ {{guestNickname[0] || '游'}} {{guestNickname}} - + - + {{userInfo.nickname ? userInfo.nickname[0] : '?'}} VIP VIP + @@ -56,7 +57,7 @@ 推荐好友 - {{earnings === '-' ? '--' : earnings}} + {{pendingEarnings === '-' ? '--' : pendingEarnings}} 我的收益 @@ -87,10 +88,7 @@ 将依次调起微信收款页完成领取 - - 查看提现记录 - - + 查看提现记录 › @@ -143,7 +141,7 @@ 暂无阅读记录 - 去阅读 + 去阅读 → @@ -173,27 +171,16 @@ - - - - + + @@ -219,17 +206,6 @@ - - - - - 获取微信头像 - 点击下方按钮使用你的微信头像 - - 取消 - - - diff --git a/miniprogram/pages/my/my.wxss b/miniprogram/pages/my/my.wxss index 2d351fe9..62d427c8 100644 --- a/miniprogram/pages/my/my.wxss +++ b/miniprogram/pages/my/my.wxss @@ -41,7 +41,22 @@ border: 1rpx solid rgba(75,85,99,0.5); } .profile-top-row { display: flex; align-items: flex-start; gap: 32rpx; } -.avatar-wrap { position: relative; flex-shrink: 0; } +/* 头像区域:view 负责展示,button 绝对定位覆盖其上,避免原生样式影响 */ +.avatar-wrap { + position: relative; + width: 130rpx; height: 130rpx; + flex-shrink: 0; +} +/* 绝对定位的按钮覆盖在头像上,透明无样式,点击唤起微信选择器(微信头像/相册/拍照) */ +.avatar-overlay-btn { + position: absolute; + left: 0; top: 0; + width: 130rpx; height: 130rpx; + padding: 0; margin: 0; + background: transparent; border: none; + display: block; +} +.avatar-overlay-btn::after { border: none; } .avatar-inner { width: 130rpx; height: 130rpx; border-radius: 50%; overflow: hidden; background: #1C2524; border: 5rpx solid #374151; @@ -208,6 +223,10 @@ .agree-text { color: rgba(255,255,255,0.6); } .agree-link { color: #4FD1C5; text-decoration: underline; padding: 0 4rpx; } .btn-wechat-disabled { opacity: 0.6; } +.privacy-wechat-row { margin: 24rpx 0; padding: 24rpx; background: rgba(0,206,209,0.1); border-radius: 16rpx; } +.privacy-wechat-desc { display: block; font-size: 26rpx; color: rgba(255,255,255,0.8); margin-bottom: 16rpx; } +.privacy-agree-btn { width: 100%; padding: 20rpx; background: #07C160; color: #fff; font-size: 28rpx; border-radius: 16rpx; border: none; } +.privacy-agree-btn::after { border: none; } /* 头像弹窗 */ .avatar-modal .avatar-modal-title { display: block; font-size: 36rpx; font-weight: bold; color: #fff; text-align: center; margin-bottom: 16rpx; } diff --git a/miniprogram/pages/privacy/privacy.js b/miniprogram/pages/privacy/privacy.js index 6696bfcc..a6d62e92 100644 --- a/miniprogram/pages/privacy/privacy.js +++ b/miniprogram/pages/privacy/privacy.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 隐私政策 + * 卡若创业派对 - 隐私政策 * 审核要求:登录前可点击《隐私政策》查看完整内容 */ const app = getApp() @@ -23,13 +23,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 隐私政策', + title: '卡若创业派对 - 隐私政策', path: ref ? `/pages/privacy/privacy?ref=${ref}` : '/pages/privacy/privacy' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 隐私政策', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 隐私政策', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/profile-edit/profile-edit.js b/miniprogram/pages/profile-edit/profile-edit.js index 4d86c30c..a80cfff1 100644 --- a/miniprogram/pages/profile-edit/profile-edit.js +++ b/miniprogram/pages/profile-edit/profile-edit.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 资料编辑完整版(comprehensive_profile_editor_v1_1) + * 卡若创业派对 - 资料编辑完整版(comprehensive_profile_editor_v1_1) * 温馨提示、头像、基本信息、核心联系方式、个人故事、互助需求、项目介绍 * * 接口约定(/api/miniprogram/user/profile): @@ -9,6 +9,7 @@ * 表单展示:普通用户仅展示 温馨提示、头像、昵称、MBTI、地区、行业、业务体量、职位、核心联系方式;VIP 展示全部 */ const app = getApp() +const { toAvatarPath } = require('../../utils/util.js') const MBTI_OPTIONS = ['INTJ', 'INFP', 'INTP', 'ENTP', 'ENFP', 'ENTJ', 'ENFJ', 'INFJ', 'ISTJ', 'ISFJ', 'ESTJ', 'ESFJ', 'ISTP', 'ISFP', 'ESTP', 'ESFP'] @@ -18,6 +19,7 @@ Page({ isVip: false, avatar: '', nickname: '', + shareCardPath: '', // 分享名片封面图(预生成) mbti: '', mbtiIndex: 0, region: '', @@ -37,11 +39,22 @@ Page({ showMbtiPicker: false, saving: false, loading: true, - showAvatarModal: false, + showPrivacyModal: false, + nicknameInputFocus: false, }, - onLoad() { - this.setData({ statusBarHeight: app.globalData.statusBarHeight || 44 }) + onLoad(options) { + this.setData({ + statusBarHeight: app.globalData.statusBarHeight || 44, + fromVip: options?.from === 'vip', + }) + wx.showShareMenu({ withShareTimeline: true }) + // 从朋友圈/分享打开且带 id:跳转到名片详情(member-detail) + if (options?.id) { + const ref = options.ref ? `&ref=${options.ref}` : '' + wx.redirectTo({ url: `/pages/member-detail/member-detail?id=${options.id}${ref}` }) + return + } this.loadProfile() }, @@ -85,6 +98,7 @@ Page({ projectIntro: v('projectIntro'), loading: false, }) + setTimeout(() => this.generateShareCard(), 200) } else { this.setData({ loading: false }) } @@ -95,6 +109,191 @@ Page({ goBack() { getApp().goBackOrToHome() }, + onNicknameAreaTouch() { + if (typeof wx.requirePrivacyAuthorize !== 'function') return + wx.requirePrivacyAuthorize({ + success: () => { this.setData({ nicknameInputFocus: true }) }, + fail: () => {}, + }) + }, + onNicknameBlur() { this.setData({ nicknameInputFocus: false }) }, + preventMove() {}, + handleAgreePrivacy() { + if (app._privacyResolve) { + app._privacyResolve({ buttonId: 'agree-btn', event: 'agree' }) + app._privacyResolve = null + } + this.setData({ showPrivacyModal: false, nicknameInputFocus: true }) + }, + handleDisagreePrivacy() { + if (app._privacyResolve) { + app._privacyResolve({ event: 'disagree' }) + app._privacyResolve = null + } + this.setData({ showPrivacyModal: false }) + }, + + // 生成分享名片封面图(参考:头像左+昵称右,分隔线,四栏信息 5:4) + async generateShareCard() { + const { avatar, nickname, region, mbti, industry, position } = this.data + const userId = app.globalData.userInfo?.id + if (!userId) return + try { + const ctx = wx.createCanvasContext('shareCardCanvas', this) + const w = 500 + const h = 400 + const pad = 32 + // 背景(深灰卡片感) + const grd = ctx.createLinearGradient(0, 0, w, h) + grd.addColorStop(0, '#1E293B') + grd.addColorStop(1, '#0F172A') + ctx.setFillStyle(grd) + ctx.fillRect(0, 0, w, h) + // 顶部区域:左头像 + 右昵称 + const avatarSize = 100 + const avatarX = pad + 10 + const avatarY = 50 + const avatarRadius = avatarSize / 2 + const rightStart = avatarX + avatarSize + 28 + const drawAvatar = () => new Promise((resolve) => { + if (avatar && avatar.startsWith('http')) { + wx.downloadFile({ + url: avatar, + success: (res) => { + if (res.statusCode === 200) { + ctx.save() + ctx.beginPath() + ctx.arc(avatarX + avatarRadius, avatarY + avatarRadius, avatarRadius, 0, Math.PI * 2) + ctx.clip() + ctx.drawImage(res.tempFilePath, avatarX, avatarY, avatarSize, avatarSize) + ctx.restore() + } else { + this.drawAvatarPlaceholder(ctx, avatarX, avatarY, avatarSize, nickname) + } + resolve() + }, + fail: () => { + this.drawAvatarPlaceholder(ctx, avatarX, avatarY, avatarSize, nickname) + resolve() + }, + }) + } else { + this.drawAvatarPlaceholder(ctx, avatarX, avatarY, avatarSize, nickname) + resolve() + } + }) + await drawAvatar() + ctx.setStrokeStyle('rgba(94,234,212,0.5)') + ctx.setLineWidth(2) + ctx.beginPath() + ctx.arc(avatarX + avatarRadius, avatarY + avatarRadius, avatarRadius, 0, Math.PI * 2) + ctx.stroke() + // 右侧:昵称 + 个人名片 + const displayName = (nickname || '').trim() || '创业者' + ctx.setFillStyle('#ffffff') + ctx.setFontSize(26) + ctx.setTextAlign('left') + ctx.fillText(displayName, rightStart, avatarY + 36) + ctx.setFillStyle('#94A3B8') + ctx.setFontSize(13) + ctx.fillText('个人名片', rightStart, avatarY + 62) + // 分隔线 + const divY = 168 + ctx.setStrokeStyle('rgba(255,255,255,0.08)') + ctx.setLineWidth(1) + ctx.beginPath() + ctx.moveTo(pad, divY) + ctx.lineTo(w - pad, divY) + ctx.stroke() + // 底部四栏:地区 | MBTI,行业 | 职位 + const labelGray = '#64748B' + const valueWhite = '#F1F5F9' + const rowH = 52 + const colW = (w - pad * 2) / 2 + const truncate = (text, maxW) => { + if (!text) return '' + ctx.setFontSize(15) + let m = ctx.measureText(text) + if (m.width <= maxW) return text + for (let i = text.length - 1; i > 0; i--) { + const t = text.slice(0, i) + '…' + if (ctx.measureText(t).width <= maxW) return t + } + return text[0] + '…' + } + const maxValW = colW - 16 + const items = [ + { label: '地区', value: truncate((region || '').trim() || '未填写', maxValW), x: pad }, + { label: 'MBTI', value: (mbti || '').trim() || '未填写', x: pad + colW }, + { label: '行业', value: truncate((industry || '').trim() || '未填写', maxValW), x: pad }, + { label: '职位', value: truncate((position || '').trim() || '未填写', maxValW), x: pad + colW }, + ] + items.forEach((item, i) => { + const row = Math.floor(i / 2) + const baseY = divY + 36 + row * rowH + ctx.setFillStyle(labelGray) + ctx.setFontSize(12) + ctx.fillText(item.label, item.x, baseY - 8) + ctx.setFillStyle(valueWhite) + ctx.setFontSize(15) + ctx.fillText(item.value, item.x, baseY + 14) + }) + ctx.draw(true, () => { + wx.canvasToTempFilePath({ + canvasId: 'shareCardCanvas', + destWidth: 500, + destHeight: 400, + success: (res) => { + this.setData({ shareCardPath: res.tempFilePath }) + }, + }, this) + }) + } catch (e) { + console.warn('[ShareCard] 生成失败:', e) + } + }, + + drawAvatarPlaceholder(ctx, x, y, size, nickname) { + ctx.setFillStyle('rgba(94,234,212,0.2)') + ctx.beginPath() + ctx.arc(x + size / 2, y + size / 2, size / 2, 0, Math.PI * 2) + ctx.fill() + ctx.setFillStyle('#5EEAD4') + ctx.setFontSize(size * 0.42) + ctx.setTextAlign('center') + ctx.fillText((nickname || '?')[0], x + size / 2, y + size / 2 + size * 0.14) + }, + + onShareAppMessage() { + const ref = app.getMyReferralCode() + const userId = app.globalData.userInfo?.id + const nickname = (this.data.nickname || '').trim() || '我' + const path = userId + ? (ref ? `/pages/member-detail/member-detail?id=${userId}&ref=${ref}` : `/pages/member-detail/member-detail?id=${userId}`) + : (ref ? `/pages/profile-edit/profile-edit?ref=${ref}` : '/pages/profile-edit/profile-edit') + const result = { + title: `${nickname}为您分享名片`, + path, + } + if (this.data.shareCardPath) result.imageUrl = this.data.shareCardPath + return result + }, + + onShareTimeline() { + const ref = app.getMyReferralCode() + const userId = app.globalData.userInfo?.id + const nickname = (this.data.nickname || '').trim() || '我' + const query = userId + ? (ref ? `id=${userId}&ref=${ref}` : `id=${userId}`) + : (ref ? `ref=${ref}` : '') + const result = { + title: `${nickname}为您分享名片`, + query: query || '', + } + if (this.data.shareCardPath) result.imageUrl = this.data.shareCardPath + return result + }, + onNicknameInput(e) { this.setData({ nickname: e.detail.value }) }, onNicknameChange(e) { this.setData({ nickname: e.detail.value }) }, onRegionInput(e) { this.setData({ region: e.detail.value }) }, @@ -116,76 +315,9 @@ Page({ this.setData({ mbtiIndex: i, mbti: MBTI_OPTIONS[i] }) }, - // 点击头像:选择微信头像或从相册选择 - onAvatarTap() { - wx.showActionSheet({ - itemList: ['使用微信头像', '从相册选择'], - success: (res) => { - if (res.tapIndex === 0) { - this.setData({ showAvatarModal: true }) - } else if (res.tapIndex === 1) { - this.chooseAvatarFromAlbum() - } - }, - }) - }, - - closeAvatarModal() { - this.setData({ showAvatarModal: false }) - }, - - // 从相册/相机选择头像 - chooseAvatarFromAlbum() { - wx.chooseMedia({ - count: 1, - mediaType: ['image'], - sourceType: ['album', 'camera'], - success: async (res) => { - const tempPath = res.tempFiles[0].tempFilePath - wx.showLoading({ title: '上传中...', mask: true }) - try { - const uploadRes = await new Promise((resolve, reject) => { - wx.uploadFile({ - url: app.globalData.baseUrl + '/api/miniprogram/upload', - filePath: tempPath, - name: 'file', - formData: { folder: 'avatars' }, - success: (r) => { - try { - const data = JSON.parse(r.data) - if (data.success) resolve(data) - else reject(new Error(data.error || '上传失败')) - } catch { reject(new Error('解析失败')) } - }, - fail: reject, - }) - }) - const rawUrl1 = uploadRes.data.url || '' - const avatarUrl = rawUrl1.startsWith('http://') || rawUrl1.startsWith('https://') ? rawUrl1 : app.globalData.baseUrl + rawUrl1 - this.setData({ avatar: avatarUrl }) - await app.request({ - url: '/api/miniprogram/user/profile', - method: 'POST', - data: { userId: app.globalData.userInfo?.id, avatar: avatarUrl }, - }) - if (app.globalData.userInfo) { - app.globalData.userInfo.avatar = avatarUrl - wx.setStorageSync('userInfo', app.globalData.userInfo) - } - wx.hideLoading() - wx.showToast({ title: '头像已更新', icon: 'success' }) - } catch (e) { - wx.hideLoading() - wx.showToast({ title: e.message || '上传失败', icon: 'none' }) - } - }, - }) - }, - - // 微信原生 chooseAvatar 回调:使用当前微信头像 + // 微信原生 chooseAvatar 回调(点击头像直接弹出原生选择器:用微信头像/从相册选择/拍照) async onChooseAvatar(e) { const tempAvatarUrl = e.detail?.avatarUrl - this.setData({ showAvatarModal: false }) if (!tempAvatarUrl) return wx.showLoading({ title: '上传中...', mask: true }) @@ -209,13 +341,16 @@ Page({ }) }) - const rawUrl2 = uploadRes.data.url || '' - const avatarUrl = rawUrl2.startsWith('http://') || rawUrl2.startsWith('https://') ? rawUrl2 : app.globalData.baseUrl + rawUrl2 + let avatarUrl = uploadRes.data?.url || uploadRes.url + if (avatarUrl && !avatarUrl.startsWith('http')) { + avatarUrl = app.globalData.baseUrl + avatarUrl + } this.setData({ avatar: avatarUrl }) + const avatarToSave = toAvatarPath(avatarUrl) await app.request({ url: '/api/miniprogram/user/profile', method: 'POST', - data: { userId: app.globalData.userInfo?.id, avatar: avatarUrl }, + data: { userId: app.globalData.userInfo?.id, avatar: avatarToSave }, }) if (app.globalData.userInfo) { app.globalData.userInfo.avatar = avatarUrl @@ -223,6 +358,7 @@ Page({ } wx.hideLoading() wx.showToast({ title: '头像已更新', icon: 'success' }) + setTimeout(() => this.generateShareCard(), 200) } catch (err) { wx.hideLoading() wx.showToast({ title: err.message || '上传失败,请重试', icon: 'none' }) @@ -235,20 +371,32 @@ Page({ wx.showToast({ title: '请先登录', icon: 'none' }) return } + const s = (v) => (v || '').toString().trim() + const isVip = this.data.isVip + // 手机号必填,格式校验(支持带空格/连字符输入) + const phoneRaw = s(this.data.phone) + if (!phoneRaw) { + wx.showToast({ title: '请输入手机号', icon: 'none' }) + return + } + const phoneNum = phoneRaw.replace(/\D/g, '') + if (!/^1[3-9]\d{9}$/.test(phoneNum)) { + wx.showToast({ title: '请输入正确的11位手机号', icon: 'none' }) + return + } + const phoneToSave = phoneNum this.setData({ saving: true }) try { - const s = (v) => (v || '').toString().trim() - const isVip = this.data.isVip const payload = { userId, - avatar: s(this.data.avatar), + avatar: toAvatarPath(s(this.data.avatar)), nickname: s(this.data.nickname), mbti: s(this.data.mbti), region: s(this.data.region), industry: s(this.data.industry), businessScale: s(this.data.businessScale), position: s(this.data.position), - phone: s(this.data.phone), + phone: phoneToSave, wechatId: s(this.data.wechatId), } const showHelp = isVip || this.data.helpOffer || this.data.helpNeed @@ -271,7 +419,7 @@ Page({ this.setData({ saving: false }) return } - await app.request({ + const res = await app.request({ url: '/api/miniprogram/user/profile', method: 'POST', data: payload, @@ -279,7 +427,7 @@ Page({ wx.showToast({ title: '保存成功', icon: 'success' }) if (app.globalData.userInfo) { if (payload.nickname) app.globalData.userInfo.nickname = payload.nickname - if (payload.avatar) app.globalData.userInfo.avatar = payload.avatar + if (res?.data?.avatar) app.globalData.userInfo.avatar = res.data.avatar wx.setStorageSync('userInfo', app.globalData.userInfo) } setTimeout(() => getApp().goBackOrToHome(), 800) diff --git a/miniprogram/pages/profile-edit/profile-edit.wxml b/miniprogram/pages/profile-edit/profile-edit.wxml index 8eb00930..b83adc38 100644 --- a/miniprogram/pages/profile-edit/profile-edit.wxml +++ b/miniprogram/pages/profile-edit/profile-edit.wxml @@ -9,36 +9,39 @@ 加载中... - - + + - 温馨提示:需完善手机号和微信号才能使用提现和找伙伴功能 + {{fromVip ? '恭喜成为VIP!完善资料后即可使用找伙伴、提现等功能,手机号必填' : '温馨提示:手机号必填,微信号建议填写,以便使用提现和找伙伴功能'}} - + - - - - {{nickname ? nickname[0] : '?'}} + 昵称 - + @@ -84,8 +87,8 @@ 核心联系方式 - 手机号 - + 手机号* + 微信号 @@ -146,14 +149,16 @@ - - - - - 使用微信头像 - 点击下方按钮,一键同步当前微信头像 - - 取消 + + + + + + + 温馨提示 + 为获取微信昵称,请先同意《用户隐私保护指引》 + + 拒绝 diff --git a/miniprogram/pages/profile-edit/profile-edit.wxss b/miniprogram/pages/profile-edit/profile-edit.wxss index ea0ad739..b7f91238 100644 --- a/miniprogram/pages/profile-edit/profile-edit.wxss +++ b/miniprogram/pages/profile-edit/profile-edit.wxss @@ -26,10 +26,20 @@ background: rgba(94,234,212,0.08); border: 1rpx solid rgba(94,234,212,0.25); border-radius: 24rpx; margin-bottom: 48rpx; } +.tip-card-highlight { + background: rgba(94,234,212,0.12); border-color: rgba(94,234,212,0.4); +} .tip-icon { font-size: 40rpx; color: #5EEAD4; flex-shrink: 0; } .tip-text { font-size: 26rpx; color: rgba(94,234,212,0.95); line-height: 1.6; } .avatar-section { display: flex; flex-direction: column; align-items: center; margin-bottom: 48rpx; } +/* 头像按钮:透明无边框,点击直接弹出微信原生选择器 */ +.avatar-wrap-btn { + display: flex; align-items: center; justify-content: center; + padding: 0; margin: 0; background: transparent; border: none; + width: 192rpx; height: 192rpx; border-radius: 50%; overflow: visible; +} +.avatar-wrap-btn::after { border: none; } .avatar-wrap { position: relative; width: 192rpx; height: 192rpx; border-radius: 50%; border: 4rpx solid #5EEAD4; box-shadow: 0 0 30rpx rgba(94,234,212,0.3); @@ -62,6 +72,7 @@ .form-row-2 { display: flex; gap: 24rpx; } .form-row-2 .form-item { flex: 1; min-width: 0; } .form-label { display: block; font-size: 24rpx; color: #94A3B8; margin-bottom: 12rpx; margin-left: 8rpx; } +.required-mark { color: #F87171; margin-left: 4rpx; } /* input/textarea 用 view 包裹,padding 写在 view 上 */ .form-input-wrap { @@ -70,10 +81,37 @@ border-radius: 24rpx; box-sizing: border-box; min-width: 0; width: 100%; } -.form-input-suffix { position: relative; padding-right: 64rpx; } +/* 地区等带后缀图标的输入框:与 MBTI 同高,图标垂直居中 */ +.form-input-suffix { + position: relative; + padding-right: 64rpx; + display: flex; + align-items: center; + min-height: 88rpx; +} +.form-input-suffix .form-input-inner { + flex: 1; + min-height: 40rpx; + line-height: 40rpx; +} .form-input-suffix .form-suffix { - position: absolute; right: 24rpx; top: 50%; transform: translateY(-50%); - font-size: 32rpx; color: #94A3B8; + position: absolute; + right: 24rpx; + top: 50%; + transform: translateY(-50%); + font-size: 32rpx; + color: #94A3B8; + pointer-events: none; +} +/* form-row-2 下两列统一最小高度,与 MBTI 一致 */ +.form-row-2 .form-input-wrap, +.form-row-2 .form-picker { + min-height: 88rpx; + display: flex; + align-items: center; +} +.form-row-2 .form-picker { + color: #fff; } .form-input-inner { width: 100%; max-width: 100%; font-size: 28rpx; color: #fff; background: transparent; @@ -175,9 +213,123 @@ .btn-choose-avatar::after { border: none; } +.btn-choose-album { + width: 100%; + height: 88rpx; + margin-top: 24rpx; + display: flex; + align-items: center; + justify-content: center; + background: rgba(94, 234, 212, 0.15); + color: #5EEAD4; + font-size: 30rpx; + font-weight: 600; + border-radius: 44rpx; + border: 2rpx solid #5EEAD4; +} .avatar-modal-cancel { margin-top: 24rpx; text-align: center; font-size: 28rpx; color: #9CA3AF; } + +/* 昵称隐私弹窗 */ +.privacy-mask { + position: fixed; + left: 0; + top: 0; + right: 0; + bottom: 0; + background: rgba(0, 0, 0, 0.5); + z-index: 9999; + display: flex; + align-items: center; + justify-content: center; +} +.privacy-modal { + width: 560rpx; + padding: 48rpx 40rpx; + background: #1E293B; + border-radius: 24rpx; + text-align: center; +} +.privacy-modal .privacy-title { font-size: 34rpx; font-weight: 600; color: #fff; margin-bottom: 24rpx; } +.privacy-modal .privacy-desc { font-size: 28rpx; color: #94A3B8; line-height: 1.6; margin-bottom: 40rpx; } +.privacy-btn { + width: 100%; + height: 88rpx; + line-height: 88rpx; + background: #5EEAD4; + color: #0F172A; + font-size: 32rpx; + font-weight: 600; + border-radius: 44rpx; + border: none; +} + +/* 隐私授权弹窗 */ +.privacy-mask { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(0, 0, 0, 0.6); + z-index: 9999; + display: flex; + align-items: center; + justify-content: center; +} +.privacy-modal { + width: 580rpx; + background: #1E293B; + border-radius: 24rpx; + padding: 40rpx 32rpx 32rpx; +} +.privacy-modal-title { + font-size: 34rpx; + font-weight: 600; + color: #F8FAFC; + margin-bottom: 24rpx; + text-align: center; +} +.privacy-modal-desc { + font-size: 28rpx; + color: #94A3B8; + line-height: 1.5; + margin-bottom: 32rpx; +} +.privacy-btn { + width: 100%; + height: 88rpx; + display: flex; + align-items: center; + justify-content: center; + background: #5EEAD4; + color: #0F172A; + font-size: 32rpx; + font-weight: 600; + border-radius: 44rpx; + margin-bottom: 16rpx; +} +.privacy-btn:last-of-type { + margin-bottom: 0; + background: transparent; + color: #94A3B8; + border: 2rpx solid #475569; +} + +/* 昵称隐私授权弹窗(解决 errno:104) */ +.privacy-mask { + position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 9999; + display: flex; align-items: center; justify-content: center; padding: 48rpx; +} +.privacy-modal { + width: 100%; max-width: 600rpx; background: #1E293B; border-radius: 24rpx; padding: 48rpx; +} +.privacy-title { font-size: 36rpx; font-weight: 700; display: block; margin-bottom: 16rpx; } +.privacy-desc { font-size: 28rpx; color: #94A3B8; line-height: 1.5; display: block; margin-bottom: 32rpx; } +.privacy-btn { width: 100%; height: 88rpx; line-height: 88rpx; background: #5EEAD4; color: #050B14; font-size: 30rpx; font-weight: 600; border-radius: 44rpx; border: none; } +.privacy-btn::after { border: none; } +.privacy-cancel { text-align: center; margin-top: 24rpx; font-size: 28rpx; color: #94A3B8; } diff --git a/miniprogram/pages/profile-show/profile-show.js b/miniprogram/pages/profile-show/profile-show.js index b5d884e9..fedc599e 100644 --- a/miniprogram/pages/profile-show/profile-show.js +++ b/miniprogram/pages/profile-show/profile-show.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 个人资料展示页(stitch_soul enhanced_professional_profile) + * 卡若创业派对 - 个人资料展示页(stitch_soul enhanced_professional_profile) * 从「我的」页编辑图标进入;展示基本信息、个人故事、互助需求、项目介绍 */ const app = getApp() diff --git a/miniprogram/pages/purchases/purchases.js b/miniprogram/pages/purchases/purchases.js index 70c2bcce..befdfce6 100644 --- a/miniprogram/pages/purchases/purchases.js +++ b/miniprogram/pages/purchases/purchases.js @@ -66,13 +66,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 购买记录', + title: '卡若创业派对 - 购买记录', path: ref ? `/pages/purchases/purchases?ref=${ref}` : '/pages/purchases/purchases' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 购买记录', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 购买记录', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/read/read.js b/miniprogram/pages/read/read.js index 6e405af1..c3590bfc 100644 --- a/miniprogram/pages/read/read.js +++ b/miniprogram/pages/read/read.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 阅读页(标准流程版) + * 卡若创业派对 - 阅读页(标准流程版) * 开发: 卡若 * 技术支持: 存客宝 * @@ -74,7 +74,7 @@ Page({ giftPaid: false, giftRequestSn: '', showLoginModal: false, - agreeProtocol: false, + showPrivacyModal: false, showPosterModal: false, isPaying: false, isGeneratingPoster: false, @@ -651,21 +651,21 @@ Page({ return } const myUserId = app.globalData.userInfo.id - let phone = (app.globalData.userInfo.phone || '').trim() - let wechatId = (app.globalData.userInfo.wechatId || app.globalData.userInfo.wechat_id || '').trim() - if (!phone && !wechatId) { + let phone = (app.globalData.userInfo.phone || wx.getStorageSync('user_phone') || '').trim().replace(/\s/g, '') + let wechatId = (app.globalData.userInfo.wechatId || app.globalData.userInfo.wechat_id || wx.getStorageSync('user_wechat') || '').trim() + if (!phone || !/^1[3-9]\d{9}$/.test(phone)) { try { const profileRes = await app.request({ url: `/api/miniprogram/user/profile?userId=${myUserId}`, silent: true }) if (profileRes?.success && profileRes.data) { - phone = (profileRes.data.phone || '').trim() - wechatId = (profileRes.data.wechatId || profileRes.data.wechat_id || '').trim() + phone = (profileRes.data.phone || wx.getStorageSync('user_phone') || '').trim().replace(/\s/g, '') + wechatId = (profileRes.data.wechatId || profileRes.data.wechat_id || wx.getStorageSync('user_wechat') || '').trim() } } catch (e) {} } - if (!phone && !wechatId) { + if (!phone || !/^1[3-9]\d{9}$/.test(phone)) { wx.showModal({ title: '完善资料', - content: '请先填写手机号或微信号,以便对方联系您', + content: '请先填写手机号(必填),以便对方联系您', confirmText: '去填写', cancelText: '取消', success: (res) => { @@ -866,11 +866,11 @@ Page({ copyShareText() { const { section } = this.data - const shareText = `🔥 刚看完这篇《${section?.title || 'Soul创业派对'}》,太上头了! + const shareText = `🔥 刚看完这篇《${section?.title || '卡若创业派对'}》,太上头了! 62个真实商业案例,每个都是从0到1的实战经验。私域运营、资源整合、商业变现,干货满满。 -推荐给正在创业或想创业的朋友,搜"Soul创业派对"小程序就能看! +推荐给正在创业或想创业的朋友,搜"卡若创业派对"小程序就能看! #创业派对 #私域运营 #商业案例` @@ -894,7 +894,7 @@ Page({ if (isGiftShare && requestSn) { let path = `/pages/read/read?${q}&gift=1&requestSn=${encodeURIComponent(requestSn)}` if (ref) path += `&ref=${encodeURIComponent(ref)}` - const t = section?.title || 'Soul创业派对' + const t = section?.title || '卡若创业派对' const title = `我已为你买单:${t.length > 18 ? t.slice(0, 18) + '...' : t}` return { title, path } } @@ -902,7 +902,7 @@ Page({ const path = ref ? `/pages/read/read?${q}&ref=${ref}` : `/pages/read/read?${q}` const title = section?.title ? `📚 ${section.title.length > 20 ? section.title.slice(0, 20) + '...' : section.title}` - : '📚 Soul创业派对 - 真实商业故事' + : '📚 卡若创业派对 - 真实商业故事' return { title, path } }, @@ -925,7 +925,7 @@ Page({ .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#Soul创业派对 #真实商业故事` + const copyText = picked.length > 0 ? title + '\n\n' + picked.join('\n\n') : `🔥 刚看完这篇《${title}》,推荐给你!\n\n#卡若创业派对 #真实商业故事` wx.setClipboardData({ data: copyText, success: () => { @@ -951,7 +951,7 @@ Page({ const articleTitle = (section?.title || chapterTitle || '').trim() const title = articleTitle ? (articleTitle.length > 28 ? articleTitle.slice(0, 28) + '...' : articleTitle) - : 'Soul创业派对 - 真实商业故事' + : '卡若创业派对 - 真实商业故事' return { title, query } }, @@ -974,68 +974,23 @@ Page({ console.warn('[Read] 检测单页模式失败,回退为正常登录流程:', e) } try { - this.setData({ showLoginModal: true, agreeProtocol: false }) + this.setData({ showLoginModal: true }) } catch (e) { console.error('[Read] showLoginModal error:', e) this.setData({ showLoginModal: true }) } }, - closeLoginModal() { + onLoginModalClose() { + this.setData({ showLoginModal: false, showPrivacyModal: false }) + }, + onLoginModalPrivacyAgree() { + this.setData({ showPrivacyModal: false }) + }, + async onLoginModalSuccess() { this.setData({ showLoginModal: false }) - }, - - toggleAgree() { - this.setData({ agreeProtocol: !this.data.agreeProtocol }) - }, - - openUserProtocol() { - wx.navigateTo({ url: '/pages/agreement/agreement' }) - }, - - openPrivacy() { - wx.navigateTo({ url: '/pages/privacy/privacy' }) - }, - - // 从服务端刷新购买状态,避免登录后误用旧数据导致误解锁 - // 【重构】微信登录(须先勾选同意协议,符合审核要求) - async handleWechatLogin() { - if (!this.data.agreeProtocol) { - wx.showToast({ title: '请先阅读并同意用户协议和隐私政策', icon: 'none' }) - return - } - try { - const result = await app.login() - if (!result) return - - this.setData({ showLoginModal: false, agreeProtocol: false }) - await this.onLoginSuccess() - wx.showToast({ title: '登录成功', icon: 'success' }) - - } catch (e) { - console.error('[Read] 登录失败:', e) - wx.showToast({ title: '登录失败,请重试', icon: 'none' }) - } - }, - - // 【重构】手机号登录(标准流程) - async handlePhoneLogin(e) { - if (!e.detail.code) { - return this.handleWechatLogin() - } - - try { - const result = await app.loginWithPhone(e.detail.code) - if (!result) return - - this.setData({ showLoginModal: false }) - await this.onLoginSuccess() - wx.showToast({ title: '登录成功', icon: 'success' }) - - } catch (e) { - console.error('[Read] 手机号登录失败:', e) - wx.showToast({ title: '登录失败', icon: 'none' }) - } + await this.onLoginSuccess() + wx.showToast({ title: '登录成功', icon: 'success' }) }, // 【新增】登录成功后的标准处理流程 @@ -1537,7 +1492,7 @@ Page({ // 标题区域 ctx.setFillStyle('#ffffff') ctx.setFontSize(14) - ctx.fillText('📚 Soul创业派对', 20, 35) + ctx.fillText('📚 卡若创业派对', 20, 35) // 章节标题 ctx.setFontSize(18) diff --git a/miniprogram/pages/read/read.wxml b/miniprogram/pages/read/read.wxml index 5284e7cf..0afcd585 100644 --- a/miniprogram/pages/read/read.wxml +++ b/miniprogram/pages/read/read.wxml @@ -1,5 +1,5 @@ - + @@ -131,7 +131,7 @@ 已阅读50%,登录后查看完整内容 @@ -333,28 +333,15 @@ - - - - + + diff --git a/miniprogram/pages/read/read.wxss b/miniprogram/pages/read/read.wxss index 0e44f235..f9317390 100644 --- a/miniprogram/pages/read/read.wxss +++ b/miniprogram/pages/read/read.wxss @@ -1164,6 +1164,10 @@ padding: 0 4rpx; } .btn-wechat-disabled { opacity: 0.6; } +.privacy-wechat-row { margin: 24rpx 0; padding: 24rpx; background: rgba(0,206,209,0.1); border-radius: 16rpx; } +.privacy-wechat-desc { display: block; font-size: 26rpx; color: rgba(255,255,255,0.8); margin-bottom: 16rpx; } +.privacy-agree-btn { width: 100%; padding: 20rpx; background: #07C160; color: #fff; font-size: 28rpx; border-radius: 16rpx; border: none; } +.privacy-agree-btn::after { border: none; } /* ===== 支付中加载 ===== */ .loading-box { diff --git a/miniprogram/pages/referral/referral.js b/miniprogram/pages/referral/referral.js index 1fa3677b..54a633ad 100644 --- a/miniprogram/pages/referral/referral.js +++ b/miniprogram/pages/referral/referral.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 分销中心页 + * 卡若创业派对 - 分销中心页 * * 可见数据: * - 绑定用户数(当前有效绑定) @@ -590,25 +590,25 @@ Page({ shareToMoments() { // 10条随机文案,基于书的内容 const shareTexts = [ - `🔥 在派对房里听到的真实故事,比虚构的小说精彩100倍!\n\n电动车出租月入5万、私域一年赚1000万、一个人的公司月入10万...\n\n62个真实案例,搜"Soul创业派对"小程序看全部!\n\n#创业 #私域 #商业`, + `🔥 在派对房里听到的真实故事,比虚构的小说精彩100倍!\n\n电动车出租月入5万、私域一年赚1000万、一个人的公司月入10万...\n\n62个真实案例,搜"卡若创业派对"小程序看全部!\n\n#创业 #私域 #商业`, - `💡 今天终于明白:会赚钱的人,都在用"流量杠杆"\n\n抖音、Soul、飞书...同一套内容,撬动不同平台的流量。\n\n《Soul创业派对》里的实战方法,受用终身!\n\n#流量 #副业 #创业派对`, + `💡 今天终于明白:会赚钱的人,都在用"流量杠杆"\n\n抖音、Soul、飞书...同一套内容,撬动不同平台的流量。\n\n《卡若创业派对》里的实战方法,受用终身!\n\n#流量 #副业 #创业派对`, - `📚 一个70后大健康私域,一个月150万流水是怎么做到的?\n\n答案在《Soul创业派对》第9章,全是干货。\n\n搜小程序"Soul创业派对",我在里面等你\n\n#大健康 #私域运营 #真实案例`, + `📚 一个70后大健康私域,一个月150万流水是怎么做到的?\n\n答案在《卡若创业派对》第9章,全是干货。\n\n搜小程序"卡若创业派对",我在里面等你\n\n#大健康 #私域运营 #真实案例`, - `🎯 "分钱不是分你的钱,是分不属于对方的钱"\n\n这句话改变了我对商业合作的认知。\n\n推荐《Soul创业派对》,创业者必读!\n\n#云阿米巴 #商业思维 #创业`, + `🎯 "分钱不是分你的钱,是分不属于对方的钱"\n\n这句话改变了我对商业合作的认知。\n\n推荐《卡若创业派对》,创业者必读!\n\n#云阿米巴 #商业思维 #创业`, - `✨ 资源整合高手的社交方法论,在派对房里学到了\n\n"先让对方赚到钱,自己才能长久赚钱"\n\n这本《Soul创业派对》,每章都是实战经验\n\n#资源整合 #社交 #创业故事`, + `✨ 资源整合高手的社交方法论,在派对房里学到了\n\n"先让对方赚到钱,自己才能长久赚钱"\n\n这本《卡若创业派对》,每章都是实战经验\n\n#资源整合 #社交 #创业故事`, - `🚀 AI工具推广:一个隐藏的高利润赛道\n\n客单价高、复购率高、需求旺盛...\n\n《Soul创业派对》里的商业机会,你发现了吗?\n\n#AI #副业 #商业机会`, + `🚀 AI工具推广:一个隐藏的高利润赛道\n\n客单价高、复购率高、需求旺盛...\n\n《卡若创业派对》里的商业机会,你发现了吗?\n\n#AI #副业 #商业机会`, - `💰 美业整合:一个人的公司如何月入十万?\n\n不开店、不囤货、轻资产运营...\n\n《Soul创业派对》告诉你答案!\n\n#美业 #轻创业 #月入十万`, + `💰 美业整合:一个人的公司如何月入十万?\n\n不开店、不囤货、轻资产运营...\n\n《卡若创业派对》告诉你答案!\n\n#美业 #轻创业 #月入十万`, - `🌟 3000万流水是怎么跑出来的?\n\n不是靠运气,是靠系统。\n\n《Soul创业派对》里的电商底层逻辑,值得反复看\n\n#电商 #创业 #商业系统`, + `🌟 3000万流水是怎么跑出来的?\n\n不是靠运气,是靠系统。\n\n《卡若创业派对》里的电商底层逻辑,值得反复看\n\n#电商 #创业 #商业系统`, - `📖 "人与人之间的关系,归根结底就三个东西:利益、情感、价值观"\n\n在派对房里聊出的金句,都在《Soul创业派对》里\n\n#人性 #商业 #创业派对`, + `📖 "人与人之间的关系,归根结底就三个东西:利益、情感、价值观"\n\n在派对房里聊出的金句,都在《卡若创业派对》里\n\n#人性 #商业 #创业派对`, - `🔔 未来职业的三个方向:技术型、资源型、服务型\n\n你属于哪一种?\n\n《Soul创业派对》帮你找到答案!\n\n#职业规划 #创业 #未来` + `🔔 未来职业的三个方向:技术型、资源型、服务型\n\n你属于哪一种?\n\n《卡若创业派对》帮你找到答案!\n\n#职业规划 #创业 #未来` ] // 随机选择一条文案 @@ -892,7 +892,7 @@ Page({ const ref = this.data.referralCode || app.getMyReferralCode() console.log('[Referral] 分享给好友,推荐码:', ref) return { - title: 'Soul创业派对 - 来自派对房的真实商业故事', + title: '卡若创业派对 - 来自派对房的真实商业故事', path: ref ? `/pages/index/index?ref=${ref}` : '/pages/index/index' // 不设置 imageUrl,使用小程序默认截图 // 如需自定义图片,请将图片放在 /assets/ 目录并配置路径 @@ -904,7 +904,7 @@ Page({ const ref = this.data.referralCode || app.getMyReferralCode() console.log('[Referral] 分享到朋友圈,推荐码:', ref) return { - title: `Soul创业派对 - 62个真实商业案例`, + title: `卡若创业派对 - 62个真实商业案例`, query: ref ? `ref=${ref}` : '' // 不设置 imageUrl,使用小程序默认截图 } diff --git a/miniprogram/pages/referral/referral.wxml b/miniprogram/pages/referral/referral.wxml index 9c7abd4f..d1bb3d0d 100644 --- a/miniprogram/pages/referral/referral.wxml +++ b/miniprogram/pages/referral/referral.wxml @@ -134,7 +134,7 @@ - {{item.nickname[0] || '用'}} + {{(item.nickname && item.nickname[0]) || '用'}} - + + 为获取手机号,请先同意《用户隐私保护指引》 + + @@ -117,6 +121,13 @@ 输入 userId 切换为其他账号调试 + + + + 账户密码登录 + 输入对方手机号登录,密码可留空 + + 退出登录 diff --git a/miniprogram/pages/settings/settings.wxss b/miniprogram/pages/settings/settings.wxss index db01478b..98506d88 100644 --- a/miniprogram/pages/settings/settings.wxss +++ b/miniprogram/pages/settings/settings.wxss @@ -49,6 +49,10 @@ line-height: normal; } .get-phone-btn::after { border: none; } +.privacy-wechat-row { margin: 24rpx 0; padding: 24rpx; background: rgba(0,206,209,0.1); border-radius: 16rpx; } +.privacy-wechat-desc { display: block; font-size: 26rpx; color: rgba(255,255,255,0.8); margin-bottom: 16rpx; } +.privacy-agree-btn { width: 100%; padding: 20rpx; background: #07C160; color: #fff; font-size: 28rpx; border-radius: 16rpx; border: none; } +.privacy-agree-btn::after { border: none; } /* 自动提现卡片 */ .auto-withdraw-card { margin-top: 24rpx; } diff --git a/miniprogram/pages/vip/vip.js b/miniprogram/pages/vip/vip.js index 0a44a225..44426ba5 100644 --- a/miniprogram/pages/vip/vip.js +++ b/miniprogram/pages/vip/vip.js @@ -85,20 +85,7 @@ Page({ return } } - // 支付前:若头像/昵称仍为默认值,引导先完善(仅头像+昵称) - if (this._shouldGuideAvatarNickname()) { - wx.showModal({ - title: '完善资料', - content: '开通超级个体前,请先设置头像和昵称,让他人更好地认识你', - confirmText: '去完善', - cancelText: '稍后', - success: (res) => { - if (res.confirm) wx.navigateTo({ url: '/pages/avatar-nickname/avatar-nickname' }) - } - }) - return - } - + // VIP 购买后才引导完善资料:购买前不拦截,购买成功后跳转 profile-edit this.setData({ purchasing: true }) const amount = this.data.price try { @@ -173,23 +160,21 @@ Page({ else if (typeof p.updateUserStatus === 'function') p.updateUserStatus() }) - // 开通成功后兜底:仍为默认头像/昵称则引导完善 - if (this._shouldGuideAvatarNickname()) { - wx.navigateTo({ url: '/pages/avatar-nickname/avatar-nickname' }) - } + // 超级个体购买后:弹窗提示,强制跳转资料编辑页 + wx.hideLoading() + wx.showModal({ + title: '完善资料', + content: '为了更好为您服务,请填写好资料', + confirmText: '去完善', + showCancel: false, + success: () => { + wx.redirectTo({ url: '/pages/profile-edit/profile-edit?from=vip' }) + } + }) } catch (e) { console.error('[VIP] 支付后同步失败:', e) + wx.hideLoading() } - wx.hideLoading() - }, - - _shouldGuideAvatarNickname() { - const user = app.globalData.userInfo || {} - const avatar = (user.avatar || user.avatarUrl || '').trim() - const nickname = (user.nickname || user.nickName || '').trim() - // 与 ruleEngine.checkRule_FillAvatar 保持同口径(允许前端兜底) - if (avatar && !avatar.includes('default') && nickname && nickname !== '微信用户' && !nickname.startsWith('微信用户')) return false - return true }, goBack() { getApp().goBackOrToHome() }, @@ -197,13 +182,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - VIP会员', + title: '卡若创业派对 - VIP会员', path: ref ? `/pages/vip/vip?ref=${ref}` : '/pages/vip/vip' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - VIP会员', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - VIP会员', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/pages/wallet/wallet.wxml b/miniprogram/pages/wallet/wallet.wxml index e496e674..ccfcdf03 100644 --- a/miniprogram/pages/wallet/wallet.wxml +++ b/miniprogram/pages/wallet/wallet.wxml @@ -1,4 +1,4 @@ - + diff --git a/miniprogram/pages/wallet/wallet.wxss b/miniprogram/pages/wallet/wallet.wxss index 3f4498c4..c0b6da2d 100644 --- a/miniprogram/pages/wallet/wallet.wxss +++ b/miniprogram/pages/wallet/wallet.wxss @@ -1,4 +1,4 @@ -/* Soul创业派对 - 我的余额 - 深色主题 */ +/* 卡若创业派对 - 我的余额 - 深色主题 */ .page { min-height: 100vh; background: #0a0a0a; diff --git a/miniprogram/pages/withdraw-records/withdraw-records.js b/miniprogram/pages/withdraw-records/withdraw-records.js index edd1882e..fa878d37 100644 --- a/miniprogram/pages/withdraw-records/withdraw-records.js +++ b/miniprogram/pages/withdraw-records/withdraw-records.js @@ -125,13 +125,13 @@ Page({ onShareAppMessage() { const ref = app.getMyReferralCode() return { - title: 'Soul创业派对 - 提现记录', + title: '卡若创业派对 - 提现记录', path: ref ? `/pages/withdraw-records/withdraw-records?ref=${ref}` : '/pages/withdraw-records/withdraw-records' } }, onShareTimeline() { const ref = app.getMyReferralCode() - return { title: 'Soul创业派对 - 提现记录', query: ref ? `ref=${ref}` : '' } + return { title: '卡若创业派对 - 提现记录', query: ref ? `ref=${ref}` : '' } } }) diff --git a/miniprogram/project.config.json b/miniprogram/project.config.json index b1752da7..96716b8a 100644 --- a/miniprogram/project.config.json +++ b/miniprogram/project.config.json @@ -1,7 +1,7 @@ { "compileType": "miniprogram", "miniprogramRoot": "", - "description": "Soul创业派对 - 来自派对房的真实商业故事", + "description": "卡若创业派对 - 来自派对房的真实商业故事", "appid": "wxb8bbb2b10dec74aa", "setting": { "urlCheck": false, diff --git a/miniprogram/project.private.config.json b/miniprogram/project.private.config.json index 2fc18e97..04d22c2f 100644 --- a/miniprogram/project.private.config.json +++ b/miniprogram/project.private.config.json @@ -24,12 +24,40 @@ "miniprogram": { "list": [ { - "name": "pages/gift-pay/list", - "pathName": "pages/gift-pay/list", + "name": "开发登录", + "pathName": "pages/dev-login/dev-login", "query": "", "scene": null, "launchMode": "default" }, + { + "name": "pages/member-detail/member-detail", + "pathName": "pages/member-detail/member-detail", + "query": "id=ogpTW5cVMxd5afBBtXdvmeMO8aho", + "launchMode": "default", + "scene": null + }, + { + "name": "pages/my/my", + "pathName": "pages/my/my", + "query": "", + "launchMode": "default", + "scene": null + }, + { + "name": "个人资料", + "pathName": "pages/avatar-nickname/avatar-nickname", + "query": "", + "launchMode": "default", + "scene": null + }, + { + "name": "pages/gift-pay/list", + "pathName": "pages/gift-pay/list", + "query": "", + "launchMode": "default", + "scene": null + }, { "name": "代付", "pathName": "pages/gift-pay/detail", diff --git a/miniprogram/utils/contentParser.js b/miniprogram/utils/contentParser.js index cb9374e5..5b4ba101 100644 --- a/miniprogram/utils/contentParser.js +++ b/miniprogram/utils/contentParser.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 内容解析工具 + * 卡若创业派对 - 内容解析工具 * 解析 TipTap HTML 为阅读页可展示的 segments * * segment 类型: diff --git a/miniprogram/utils/ruleEngine.js b/miniprogram/utils/ruleEngine.js index 506f787c..89c3be58 100644 --- a/miniprogram/utils/ruleEngine.js +++ b/miniprogram/utils/ruleEngine.js @@ -1,6 +1,7 @@ /** - * Soul创业派对 - 用户旅程规则引擎 + * 卡若创业派对 - 用户旅程规则引擎 * 从后端 /api/miniprogram/user-rules 读取启用的规则,按场景触发引导 + * 稳定版兼容:readCount 用 getReadCount(),hasPurchasedFull 用 hasFullBook,完善头像跳 avatar-nickname * * trigger → scene 映射: * 注册 → after_login @@ -15,7 +16,14 @@ * 浏览导师页 → browse_mentor */ -const app = getApp() +function getAppInstance() { + try { + const a = getApp() + return a && a.globalData ? a : null + } catch (e) { + return null + } +} const RULE_COOLDOWN_KEY = 'rule_engine_cooldown' const COOLDOWN_MS = 60 * 1000 @@ -59,11 +67,14 @@ function setCooldown(ruleId) { } function getUserInfo() { - return app.globalData.userInfo || {} + const app = getAppInstance() + return app ? (app.globalData.userInfo || {}) : {} } async function loadRules() { if (_cachedRules && Date.now() - _cacheTs < CACHE_TTL) return _cachedRules + const app = getAppInstance() + if (!app) return _cachedRules || [] try { const res = await app.request({ url: '/api/miniprogram/user-rules', method: 'GET', silent: true }) if (res && res.success && res.rules) { @@ -85,8 +96,12 @@ function getRuleInfo(rules, triggerName) { return rules.find(r => r.trigger === triggerName) } +// 稳定版:跳转 avatar-nickname(专注头像+昵称,首次登录由 app.login 强制 redirect) +// VIP 用户不触发:统一由 checkVipContactRequiredAndGuide 引导到 profile-edit,避免与主流程冲突 function checkRule_FillAvatar(rules) { if (!isRuleEnabled(rules, '注册')) return null + const app = getAppInstance() + if (app && app.globalData.isVip) return null const user = getUserInfo() if (!user.id) return null const avatar = user.avatar || user.avatarUrl || '' @@ -100,7 +115,7 @@ function checkRule_FillAvatar(rules) { title: info?.title || '完善个人信息', message: info?.description || '设置头像和昵称,让其他创业者更容易认识你', action: 'navigate', - target: '/pages/profile-edit/profile-edit' + target: '/pages/avatar-nickname/avatar-nickname' } } @@ -138,11 +153,13 @@ function checkRule_FillProfile(rules) { } } +// 稳定版兼容:readCount 用 getReadCount() function checkRule_ShareAfter5Chapters(rules) { if (!isRuleEnabled(rules, '累计浏览5章节')) return null const user = getUserInfo() if (!user.id) return null - const readCount = app.globalData.readCount || 0 + const app = getAppInstance() + const readCount = app ? (typeof app.getReadCount === 'function' ? app.getReadCount() : (app.globalData.readCount || 0)) : 0 if (readCount < 5) return null if (isInCooldown('share_after_5')) return null setCooldown('share_after_5') @@ -156,11 +173,13 @@ function checkRule_ShareAfter5Chapters(rules) { } } +// 稳定版兼容:hasPurchasedFull 用 hasFullBook function checkRule_FillVipInfo(rules) { if (!isRuleEnabled(rules, '完成付款')) return null const user = getUserInfo() if (!user.id) return null - if (!app.globalData.hasPurchasedFull) return null + const app = getAppInstance() + if (!app || !(app.globalData.hasFullBook || app.globalData.hasPurchasedFull)) return null if (user.wechatId && user.address) return null if (isInCooldown('fill_vip_info')) return null setCooldown('fill_vip_info') @@ -212,7 +231,8 @@ function checkRule_Withdraw(rules) { if (!isRuleEnabled(rules, '收益满50元')) return null const user = getUserInfo() if (!user.id) return null - const earnings = app.globalData.totalEarnings || 0 + const app = getAppInstance() + const earnings = app ? (app.globalData.totalEarnings || 0) : 0 if (earnings < 50) return null if (isInCooldown('withdraw_50')) return null setCooldown('withdraw_50') @@ -274,6 +294,8 @@ function executeRule(rule, pageInstance) { function _trackRuleAction(ruleId, action) { const userId = getUserInfo().id if (!userId) return + const app = getAppInstance() + if (!app) return app.request({ url: '/api/miniprogram/track', method: 'POST', diff --git a/miniprogram/utils/scene.js b/miniprogram/utils/scene.js index b6b58704..83846653 100644 --- a/miniprogram/utils/scene.js +++ b/miniprogram/utils/scene.js @@ -1,5 +1,5 @@ /** - * Soul创业派对 - 小程序码 scene 参数统一编解码(海报生成 ↔ 扫码解析闭环) + * 卡若创业派对 - 小程序码 scene 参数统一编解码(海报生成 ↔ 扫码解析闭环) * 官方以 options.scene 接收扫码参数;后端生成码时会把 & 转为 _,故解析时同时支持 & 和 _ * scene 同时可带两个参数:章节标识(mid/id) + 推荐人(ref) */ diff --git a/miniprogram/utils/util.js b/miniprogram/utils/util.js index 5a35effc..785570ec 100644 --- a/miniprogram/utils/util.js +++ b/miniprogram/utils/util.js @@ -171,6 +171,20 @@ const showConfirm = (title, content) => { }) } +/** + * 从头像 URL 提取路径部分(不含域名),用于保存到后端 + * 例如:https://xxx.com/uploads/avatars/1.jpg → /uploads/avatars/1.jpg + * @param {string} url - 完整 URL 或路径 + * @returns {string} + */ +const toAvatarPath = url => { + if (!url || typeof url !== 'string') return url || '' + const idx = url.indexOf('/uploads/') + if (idx >= 0) return url.substring(idx) + if (url.startsWith('/')) return url + return url +} + module.exports = { formatTime, formatDate, @@ -188,5 +202,6 @@ module.exports = { showToast, showLoading, hideLoading, - showConfirm + showConfirm, + toAvatarPath } diff --git a/miniprogram/模拟测试清单.md b/miniprogram/模拟测试清单.md new file mode 100644 index 00000000..8d4b9516 --- /dev/null +++ b/miniprogram/模拟测试清单.md @@ -0,0 +1,94 @@ +# Soul 小程序 - 模拟测试清单 + +在**微信开发者工具**中打开 `miniprogram` 项目,按以下步骤逐项验证。 + +--- + +## 一、前置准备 + +1. 启动微信开发者工具,打开项目 `e:\Gongsi\Mycontent\miniprogram` +2. 确认后端 soul-api 已启动(baseUrl 指向正确,如 `http://localhost:8080`) +3. 准备测试账号:① 普通用户(未完善) ② VIP 用户(无手机号) ③ 已完善用户 + +--- + +## 二、VIP 无手机号 / 头像未改(先判断 VIP) + +| 步骤 | 操作 | 预期结果 | +|------|------|----------| +| 2.1 | 用 **VIP 且无手机号** 的账号登录 | 登录成功 | +| 2.2 | 完全关闭小程序,重新编译并启动 | 约 1.5s 后弹窗「VIP会员需完善手机号...」→ 点击「去完善」→ redirectTo profile-edit | +| 2.3 | 用 **VIP 有手机号但头像/昵称未改**(旧数据) | 弹窗「为了更好为您服务,请完善资料」→ redirectTo profile-edit | +| 2.4 | 在资料页填写并保存手机号 | 保存成功,可返回首页 | +| 2.5 | 再次关闭并重新启动 | 不再弹窗或跳转,正常进入首页 | + +--- + +## 三、头像/昵称引导(非 VIP 老用户) + +| 步骤 | 操作 | 预期结果 | +|------|------|----------| +| 3.1 | 用 **非 VIP、头像/昵称仍为默认** 的账号冷启动 | 先获取 VIP 状态 → 非 VIP → 弹窗「请设置头像和昵称」,每日最多 1 次 | +| 3.2 | 点击「去完善」 | navigateTo avatar-nickname | +| 3.3 | 点击「稍后」 | 弹窗关闭,可正常使用 | +| 3.4 | **新注册用户**(isNewUser)且头像未改 | 无弹窗,直接 redirectTo avatar-nickname | +| 3.5 | 当前已在 profile-edit 或 avatar-nickname 页 | 不再重复弹窗或跳转 | + +--- + +## 四、检测顺序(VIP 优先) + +| 步骤 | 操作 | 预期结果 | +|------|------|----------| +| 4.1 | 用 **VIP 无手机号 + 头像默认** 账号登录 | 先执行 VIP 检测 → 直接 redirectTo profile-edit | +| 4.2 | 验证不会先到头像页 | VIP 优先,直接进 profile-edit,不会先到 avatar-nickname | + +--- + +## 五、VIP 购买流程 + +| 步骤 | 操作 | 预期结果 | +|------|------|----------| +| 5.1 | 进入 VIP 页点击「开通」并完成购买 | 购买前不拦截;购买成功后弹窗说明,确认后跳转 profile-edit?from=vip | +| 5.2 | VIP 购买成功后点击「去完善」 | 跳转到 profile-edit(含手机号必填) | +| 5.3 | 在 profile-edit 不填手机号直接保存(VIP 账号) | 提示「请输入手机号(VIP会员必填)」 | +| 5.4 | 填写正确手机号后保存 | 保存成功 | + +--- + +## 六、微信号引导(非强制) + +| 步骤 | 操作 | 预期结果 | +|------|------|----------| +| 6.1 | 用 **VIP 有手机号但无微信号** 账号登录 | 弹窗「请到资料页完善微信号」 | +| 6.2 | 点击「去完善」或「稍后」 | 去完善→跳转;稍后→关闭 | + +--- + +## 七、快捷自检命令(开发者工具控制台) + +在**调试器 → Console** 中可粘贴以下代码快速模拟状态: + +```javascript +// 查看当前 userInfo +getApp().globalData.userInfo + +// 手动触发检测(需已登录) +getApp().checkVipContactRequiredAndGuide() +getApp().checkAvatarNicknameAndGuide() +``` + +--- + +## 八、常见问题排查 + +| 现象 | 可能原因 | +|------|----------| +| 未触发 VIP redirect | 1) 非 VIP 2) 已填手机号 3) 当前已在 profile-edit 页 | +| 头像未改却未强制跳转 | 检查当前页是否为 profile-edit 或 avatar-nickname(会跳过) | +| 后端请求失败 | 确认 soul-api 已启动,baseUrl 正确 | +| 登录态丢失 | 检查 token、userInfo 是否持久化 | + +--- + +测试完成后,可在本文件末尾记录:✅ 通过 / ❌ 失败及原因。 diff --git a/scripts/test/web/admin_routes_smoke.py b/scripts/test/web/admin_routes_smoke.py new file mode 100644 index 00000000..85c447ef --- /dev/null +++ b/scripts/test/web/admin_routes_smoke.py @@ -0,0 +1,166 @@ +import json +import re +from dataclasses import dataclass +from typing import Any + +import requests + + +ROUTER_GO = r"e:\\Gongsi\\Mycontent\\soul-api\\internal\\router\\router.go" + + +@dataclass +class Route: + group: str # "admin" | "db" | "root" + method: str + path: str # path within the group, e.g. "/chapters" or "/admin" + full_path: str # full path appended to API_BASE_URL + + +def _read_text(path: str) -> str: + with open(path, "r", encoding="utf-8", errors="ignore") as f: + return f.read() + + +def extract_admin_and_db_routes() -> list[tuple[str, str]]: + """ + 返回 [(method, full_path_template), ...] + full_path_template 已包含 /api/admin 或 /api/db 前缀,保留 :id 占位符。 + """ + text = _read_text(ROUTER_GO) + + routes: list[tuple[str, str]] = [] + + # 1) /api/admin 登录/鉴权/登出(不是 admin group 内) + # api.GET("/admin", ...) / api.POST("/admin", ...) / api.POST("/admin/logout", ...) + for m in re.finditer(r'api\.(GET|POST|PUT|DELETE)\("(/admin(?:/[^"]*)?)",\s*handler\.[A-Za-z0-9_]+', text): + routes.append((m.group(1), f"/api{m.group(2)}")) + + # 2) admin group:api.Group("/admin") + admin.(GET|POST|PUT|DELETE)("/xxx", ...) + for m in re.finditer(r'admin\.(GET|POST|PUT|DELETE)\("(/[^"]*)",\s*handler\.[A-Za-z0-9_]+', text): + routes.append((m.group(1), f"/api/admin{m.group(2)}")) + + # 3) db group:api.Group("/db") + db.(GET|POST|PUT|DELETE)("/xxx", ...) + for m in re.finditer(r'db\.(GET|POST|PUT|DELETE)\("(/[^"]*)",\s*handler\.[A-Za-z0-9_]+', text): + routes.append((m.group(1), f"/api/db{m.group(2)}")) + + # 去重(同一 handler 可能存在重复注册) + seen: set[tuple[str, str]] = set() + out: list[tuple[str, str]] = [] + for method, p in routes: + k = (method, p) + if k in seen: + continue + seen.add(k) + out.append((method, p)) + return out + + +def replace_path_params(path: str) -> str: + # 仅用于 smoke:把 :id 替换成一个固定占位 + return path.replace(":id", "1") + + +def request_json( + session: requests.Session, + method: str, + url: str, + headers: dict[str, str], + payload: Any | None = None, + raw_body: str | None = None, +) -> tuple[int, dict[str, Any] | None, str]: + try: + if raw_body is not None: + resp = session.request(method, url, headers=headers, data=raw_body, timeout=10) + elif payload is None: + resp = session.request(method, url, headers=headers, timeout=10) + else: + resp = session.request(method, url, headers=headers, data=json.dumps(payload), timeout=10) + text = resp.text or "" + try: + data = resp.json() + except Exception: + data = None + return resp.status_code, data, text[:300] + except Exception as e: + return 0, None, f"EXC: {e}" + + +def main() -> None: + api_base = None + # 优先使用本地默认;需要对接测试环境时在 PowerShell 设置 SOUL_API_BASE + import os + + api_base = (os.environ.get("SOUL_API_BASE") or "").rstrip("/") + if not api_base: + # 默认本机 + api_base = "http://localhost:8080" + + admin_username = os.environ.get("SOUL_ADMIN_USERNAME", "admin") + admin_password = os.environ.get("SOUL_ADMIN_PASSWORD", "admin123") + + session = requests.Session() + + # 本 smoke 默认不验证 TLS(如果你用的是 https 且是自签证书,能跑通测试) + session.verify = False + + # 登录拿 token + login_url = f"{api_base}/api/admin" + r = session.post(login_url, json={"username": admin_username, "password": admin_password}, timeout=10) + try: + login_data = r.json() + except Exception: + login_data = None + if r.status_code != 200 or not (login_data and login_data.get("success") is True and login_data.get("token")): + print("LOGIN_FAILED", r.status_code, r.text[:200]) + return + + token = login_data["token"] + headers = {"Authorization": f"Bearer {token}", "Content-Type": "application/json"} + + routes = extract_admin_and_db_routes() + print(f"Found routes: {len(routes)}") + + failures: list[dict[str, Any]] = [] + unexpected_success: list[dict[str, Any]] = [] + + for method, path_template in routes: + path = replace_path_params(path_template) + url = f"{api_base}{path}" + + payload = None + raw_body = None + if method in ("POST", "PUT", "DELETE"): + # 安全模式:发送明显非法 JSON,尽量触发 ShouldBindJSON 失败,避免真实写入。 + payload = None + raw_body = "{invalid_json" + + status, data, preview = request_json( + session, method, url, headers, payload=payload, raw_body=raw_body + ) + + ok = status not in (404, 500) and status != 0 + # POST/PUT/DELETE 在安全模式下不应返回 success=true + if method in ("POST", "PUT", "DELETE") and data and data.get("success") is True: + unexpected_success.append( + {"method": method, "path": path, "status": status, "data": data, "preview": preview} + ) + + if not ok: + failures.append({"method": method, "path": path, "status": status, "data": data, "preview": preview}) + + print("\n=== SMOKE_RESULT ===") + print("Failures(404/500/EXC):", len(failures)) + if failures: + for it in failures: + print(f"- {it['method']} {it['path']} -> {it['status']}, preview={it.get('preview')}") + + print("\nUnexpected success on write calls:", len(unexpected_success)) + if unexpected_success: + for it in unexpected_success: + print(f"- {it['method']} {it['path']} -> success=true (status {it['status']}, preview={it.get('preview')})") + + +if __name__ == "__main__": + main() + diff --git a/scripts/test/web/admin_routes_smoke_authless.py b/scripts/test/web/admin_routes_smoke_authless.py new file mode 100644 index 00000000..1e823180 --- /dev/null +++ b/scripts/test/web/admin_routes_smoke_authless.py @@ -0,0 +1,132 @@ +import re +from dataclasses import dataclass + +import requests + + +ROUTER_GO = r"e:\\Gongsi\\Mycontent\\soul-api\\internal\\router\\router.go" + + +@dataclass +class Check: + method: str + path: str + status: int + preview: str + + +def _read_text(path: str) -> str: + with open(path, "r", encoding="utf-8", errors="ignore") as f: + return f.read() + + +def extract_routes() -> list[tuple[str, str]]: + """ + 返回 [(method, full_path_template), ...] + full_path_template 保留 :id 占位符。 + """ + text = _read_text(ROUTER_GO) + routes: list[tuple[str, str]] = [] + + # /api/admin 登录/鉴权/登出 + for m in re.finditer(r'api\.(GET|POST|PUT|DELETE)\("(/admin(?:/[^"]*)?)",\s*handler\.[A-Za-z0-9_]+', text): + routes.append((m.group(1), f"/api{m.group(2)}")) + + # /api/admin 组 + for m in re.finditer(r'admin\.(GET|POST|PUT|DELETE)\("(/[^"]*)",\s*handler\.[A-Za-z0-9_]+', text): + routes.append((m.group(1), f"/api/admin{m.group(2)}")) + + # /api/db 组 + for m in re.finditer(r'db\.(GET|POST|PUT|DELETE)\("(/[^"]*)",\s*handler\.[A-Za-z0-9_]+', text): + routes.append((m.group(1), f"/api/db{m.group(2)}")) + + # 去重 + seen = set() + out = [] + for method, p in routes: + if (method, p) in seen: + continue + seen.add((method, p)) + out.append((method, p)) + return out + + +def replace_path_params(path: str) -> str: + return path.replace(":id", "1") + + +def main() -> None: + import os + + api_base = (os.environ.get("SOUL_API_BASE") or "http://localhost:8080").rstrip("/") + session = requests.Session() + session.verify = False # 如为 https 自签证书也可探测 + + routes = extract_routes() + print(f"Found routes: {len(routes)}") + + failures: list[Check] = [] + unexpected: list[Check] = [] + + headers = {"Content-Type": "application/json"} + + # 先验证登录接口是否通(只对 /api/admin POST 登录做一次带凭证的检查) + admin_username = os.environ.get("SOUL_ADMIN_USERNAME", "admin") + admin_password = os.environ.get("SOUL_ADMIN_PASSWORD", "admin123") + login_url = f"{api_base}/api/admin" + r_login = session.post( + login_url, + json={"username": admin_username, "password": admin_password}, + headers=headers, + timeout=10, + ) + try: + login_data = r_login.json() + except Exception: + login_data = None + if r_login.status_code != 200 or not (login_data and login_data.get("success") is True and login_data.get("token")): + failures.append(Check("POST", "/api/admin", r_login.status_code, (r_login.text or "")[:200])) + print("LOGIN_CHECK_FAILED,后续路由鉴权探测可能不准确。") + + for method, path_template in routes: + path = replace_path_params(path_template) + url = f"{api_base}{path}" + + # 仅对登录接口放行;其他都不带 token,避免触发写操作 + json_payload = None + if path == "/api/admin" and method == "POST": + # 已在上面验证登录;这里跳过 + continue + + if method in ("POST", "PUT"): + # 发空 body,通常也会被 AdminAuth 在更早阶段拦截 + json_payload = {} + + try: + resp = session.request(method, url, headers=headers, json=json_payload, timeout=10) + status = resp.status_code + preview = (resp.text or "")[:200].replace("\n", " ") + except Exception as e: + failures.append(Check(method, path, 0, f"EXC: {e}")) + continue + + # 非登录接口:预期 AdminAuth 拦截 => 401 或 403 + if status not in (401, 403): + unexpected.append(Check(method, path, status, preview)) + + print("\n=== AUTHLESS_SMOKE_RESULT ===") + print("Failures(0/404/500 等异常/网络异常):", len(failures)) + for it in failures[:30]: + print(f"- {it.method} {it.path} -> {it.status}, preview={it.preview}") + + print("Unexpected (非 401/403):", len(unexpected)) + for it in unexpected[:30]: + print(f"- {it.method} {it.path} -> {it.status}, preview={it.preview}") + + if len(unexpected) > 30: + print("... truncated") + + +if __name__ == "__main__": + main() + diff --git a/soul-admin/dist/assets/index-34teBEu9.js b/soul-admin/dist/assets/index-34teBEu9.js deleted file mode 100644 index 11e06f55..00000000 --- a/soul-admin/dist/assets/index-34teBEu9.js +++ /dev/null @@ -1,914 +0,0 @@ -function bE(t,e){for(var n=0;ns[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"]'))s(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"&&s(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 s(a){if(a.ep)return;a.ep=!0;const i=n(a);fetch(a.href,i)}})();function Bw(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Om={exports:{}},Hc={},Dm={exports:{}},ft={};/** - * @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 Tv;function vE(){if(Tv)return ft;Tv=1;var t=Symbol.for("react.element"),e=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),s=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 g(L){return L===null||typeof L!="object"?null:(L=m&&L[m]||L["@@iterator"],typeof L=="function"?L:null)}var y={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},N=Object.assign,w={};function v(L,W,oe){this.props=L,this.context=W,this.refs=w,this.updater=oe||y}v.prototype.isReactComponent={},v.prototype.setState=function(L,W){if(typeof L!="object"&&typeof L!="function"&&L!=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,L,W,"setState")},v.prototype.forceUpdate=function(L){this.updater.enqueueForceUpdate(this,L,"forceUpdate")};function k(){}k.prototype=v.prototype;function C(L,W,oe){this.props=L,this.context=W,this.refs=w,this.updater=oe||y}var E=C.prototype=new k;E.constructor=C,N(E,v.prototype),E.isPureReactComponent=!0;var M=Array.isArray,P=Object.prototype.hasOwnProperty,$={current:null},D={key:!0,ref:!0,__self:!0,__source:!0};function R(L,W,oe){var Q,X={},V=null,re=null;if(W!=null)for(Q in W.ref!==void 0&&(re=W.ref),W.key!==void 0&&(V=""+W.key),W)P.call(W,Q)&&!D.hasOwnProperty(Q)&&(X[Q]=W[Q]);var ue=arguments.length-2;if(ue===1)X.children=oe;else if(1>>1,W=I[L];if(0>>1;La(X,F))Va(re,X)?(I[L]=re,I[V]=F,L=V):(I[L]=X,I[Q]=F,L=Q);else if(Va(re,F))I[L]=re,I[V]=F,L=V;else break e}}return q}function a(I,q){var F=I.sortIndex-q.sortIndex;return F!==0?F:I.id-q.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,g=3,y=!1,N=!1,w=!1,v=typeof setTimeout=="function"?setTimeout:null,k=typeof clearTimeout=="function"?clearTimeout:null,C=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function E(I){for(var q=n(h);q!==null;){if(q.callback===null)s(h);else if(q.startTime<=I)s(h),q.sortIndex=q.expirationTime,e(u,q);else break;q=n(h)}}function M(I){if(w=!1,E(I),!N)if(n(u)!==null)N=!0,K(P);else{var q=n(h);q!==null&&U(M,q.startTime-I)}}function P(I,q){N=!1,w&&(w=!1,k(R),R=-1),y=!0;var F=g;try{for(E(q),m=n(u);m!==null&&(!(m.expirationTime>q)||I&&!se());){var L=m.callback;if(typeof L=="function"){m.callback=null,g=m.priorityLevel;var W=L(m.expirationTime<=q);q=t.unstable_now(),typeof W=="function"?m.callback=W:m===n(u)&&s(u),E(q)}else s(u);m=n(u)}if(m!==null)var oe=!0;else{var Q=n(h);Q!==null&&U(M,Q.startTime-q),oe=!1}return oe}finally{m=null,g=F,y=!1}}var $=!1,D=null,R=-1,O=5,_=-1;function se(){return!(t.unstable_now()-_I||125L?(I.sortIndex=F,e(h,I),n(u)===null&&I===n(h)&&(w?(k(R),R=-1):w=!0,U(M,F-L))):(I.sortIndex=W,e(u,I),N||y||(N=!0,K(P))),I},t.unstable_shouldYield=se,t.unstable_wrapCallback=function(I){var q=g;return function(){var F=g;g=q;try{return I.apply(this,arguments)}finally{g=F}}}})(zm)),zm}var Pv;function kE(){return Pv||(Pv=1,_m.exports=jE()),_m.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 Ov;function SE(){if(Ov)return Rs;Ov=1;var t=Od(),e=kE();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 g(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,x){if(p!==null&&p.type===0)return!1;switch(typeof d){case"function":case"symbol":return!0;case"boolean":return x?!1:p!==null?!p.acceptsBooleans:(l=l.toLowerCase().slice(0,5),l!=="data-"&&l!=="aria-");default:return!1}}function N(l,d,p,x){if(d===null||typeof d>"u"||y(l,d,p,x))return!0;if(x)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 w(l,d,p,x,j,S,A){this.acceptsBooleans=d===2||d===3||d===4,this.attributeName=x,this.attributeNamespace=j,this.mustUseProperty=p,this.propertyName=l,this.type=d,this.sanitizeURL=S,this.removeEmptyString=A}var v={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(l){v[l]=new w(l,0,!1,l,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(l){var d=l[0];v[d]=new w(d,1,!1,l[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(l){v[l]=new w(l,2,!1,l.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(l){v[l]=new w(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){v[l]=new w(l,3,!1,l.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(l){v[l]=new w(l,3,!0,l,null,!1,!1)}),["capture","download"].forEach(function(l){v[l]=new w(l,4,!1,l,null,!1,!1)}),["cols","rows","size","span"].forEach(function(l){v[l]=new w(l,6,!1,l,null,!1,!1)}),["rowSpan","start"].forEach(function(l){v[l]=new w(l,5,!1,l.toLowerCase(),null,!1,!1)});var k=/[\-:]([a-z])/g;function C(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,C);v[d]=new w(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,C);v[d]=new w(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,C);v[d]=new w(d,1,!1,l,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(l){v[l]=new w(l,1,!1,l.toLowerCase(),null,!1,!1)}),v.xlinkHref=new w("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(l){v[l]=new w(l,1,!1,l.toLowerCase(),null,!0,!0)});function E(l,d,p,x){var j=v.hasOwnProperty(d)?v[d]:null;(j!==null?j.type!==0:x||!(2B||j[A]!==S[B]){var Y=` -`+j[A].replace(" at new "," at ");return l.displayName&&Y.includes("")&&(Y=Y.replace("",l.displayName)),Y}while(1<=A&&0<=B);break}}}finally{oe=!1,Error.prepareStackTrace=p}return(l=l?l.displayName||l.name:"")?W(l):""}function X(l){switch(l.tag){case 5:return W(l.type);case 16:return W("Lazy");case 13:return W("Suspense");case 19:return W("SuspenseList");case 0:case 2:case 15:return l=Q(l.type,!1),l;case 11:return l=Q(l.type.render,!1),l;case 1:return l=Q(l.type,!0),l;default:return""}}function V(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 D:return"Fragment";case $:return"Portal";case O:return"Profiler";case R:return"StrictMode";case pe:return"Suspense";case ge:return"SuspenseList"}if(typeof l=="object")switch(l.$$typeof){case se:return(l.displayName||"Context")+".Consumer";case _:return(l._context.displayName||"Context")+".Provider";case ne:var d=l.render;return l=l.displayName,l||(l=d.displayName||d.name||"",l=l!==""?"ForwardRef("+l+")":"ForwardRef"),l;case z:return d=l.displayName||null,d!==null?d:V(l.type)||"Memo";case K:d=l._payload,l=l._init;try{return V(l(d))}catch{}}return null}function re(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 V(d);case 8:return d===R?"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 ue(l){switch(typeof l){case"boolean":case"number":case"string":case"undefined":return l;case"object":return l;default:return""}}function ce(l){var d=l.type;return(l=l.nodeName)&&l.toLowerCase()==="input"&&(d==="checkbox"||d==="radio")}function be(l){var d=ce(l)?"checked":"value",p=Object.getOwnPropertyDescriptor(l.constructor.prototype,d),x=""+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(A){x=""+A,S.call(this,A)}}),Object.defineProperty(l,d,{enumerable:p.enumerable}),{getValue:function(){return x},setValue:function(A){x=""+A},stopTracking:function(){l._valueTracker=null,delete l[d]}}}}function Pe(l){l._valueTracker||(l._valueTracker=be(l))}function Le(l){if(!l)return!1;var d=l._valueTracker;if(!d)return!0;var p=d.getValue(),x="";return l&&(x=ce(l)?l.checked?"true":"false":l.value),l=x,l!==p?(d.setValue(l),!0):!1}function lt(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 Rt(l,d){var p=d.checked;return F({},d,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:p??l._wrapperState.initialChecked})}function dn(l,d){var p=d.defaultValue==null?"":d.defaultValue,x=d.checked!=null?d.checked:d.defaultChecked;p=ue(d.value!=null?d.value:p),l._wrapperState={initialChecked:x,initialValue:p,controlled:d.type==="checkbox"||d.type==="radio"?d.checked!=null:d.value!=null}}function gt(l,d){d=d.checked,d!=null&&E(l,"checked",d,!1)}function sn(l,d){gt(l,d);var p=ue(d.value),x=d.type;if(p!=null)x==="number"?(p===0&&l.value===""||l.value!=p)&&(l.value=""+p):l.value!==""+p&&(l.value=""+p);else if(x==="submit"||x==="reset"){l.removeAttribute("value");return}d.hasOwnProperty("value")?Pt(l,d.type,p):d.hasOwnProperty("defaultValue")&&Pt(l,d.type,ue(d.defaultValue)),d.checked==null&&d.defaultChecked!=null&&(l.defaultChecked=!!d.defaultChecked)}function Pn(l,d,p){if(d.hasOwnProperty("value")||d.hasOwnProperty("defaultValue")){var x=d.type;if(!(x!=="submit"&&x!=="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 Pt(l,d,p){(d!=="number"||lt(l.ownerDocument)!==l)&&(p==null?l.defaultValue=""+l._wrapperState.initialValue:l.defaultValue!==""+p&&(l.defaultValue=""+p))}var Qt=Array.isArray;function rn(l,d,p,x){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 ct(l,d){if(d){var p=l.firstChild;if(p&&p===l.lastChild&&p.nodeType===3){p.nodeValue=d;return}}l.textContent=d}var st={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},pt=["Webkit","ms","Moz","O"];Object.keys(st).forEach(function(l){pt.forEach(function(d){d=d+l.charAt(0).toUpperCase()+l.substring(1),st[d]=st[l]})});function Lt(l,d,p){return d==null||typeof d=="boolean"||d===""?"":p||typeof d!="number"||d===0||st.hasOwnProperty(l)&&st[l]?(""+d).trim():d+"px"}function yn(l,d){l=l.style;for(var p in d)if(d.hasOwnProperty(p)){var x=p.indexOf("--")===0,j=Lt(p,d[p],x);p==="float"&&(p="cssFloat"),x?l.setProperty(p,j):l[p]=j}}var gs=F({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 js(l,d){if(d){if(gs[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 Mr(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 Ks=null;function Ar(l){return l=l.target||l.srcElement||window,l.correspondingUseElement&&(l=l.correspondingUseElement),l.nodeType===3?l.parentNode:l}var me=null,ye=null,Ot=null;function Zn(l){if(l=Tc(l)){if(typeof me!="function")throw Error(n(280));var d=l.stateNode;d&&(d=su(d),me(l.stateNode,l.type,d))}}function Ra(l){ye?Ot?Ot.push(l):Ot=[l]:ye=l}function Hi(){if(ye){var l=ye,d=Ot;if(Ot=ye=null,Zn(l),d)for(l=0;l>>=0,l===0?32:31-(Kt(l)/xs|0)|0}var qt=64,Un=4194304;function an(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 fr(l,d){var p=l.pendingLanes;if(p===0)return 0;var x=0,j=l.suspendedLanes,S=l.pingedLanes,A=p&268435455;if(A!==0){var B=A&~j;B!==0?x=an(B):(S&=A,S!==0&&(x=an(S)))}else A=p&~j,A!==0?x=an(A):S!==0&&(x=an(S));if(x===0)return 0;if(d!==0&&d!==x&&(d&j)===0&&(j=x&-x,S=d&-d,j>=S||j===16&&(S&4194240)!==0))return d;if((x&4)!==0&&(x|=p&16),d=l.entangledLanes,d!==0)for(l=l.entanglements,d&=x;0p;p++)d.push(l);return d}function qi(l,d,p){l.pendingLanes|=d,d!==536870912&&(l.suspendedLanes=0,l.pingedLanes=0),l=l.eventTimes,d=31-Qe(d),l[d]=p}function cp(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 x=l.eventTimes;for(l=l.expirationTimes;0=bc),Ny=" ",wy=!1;function jy(l,d){switch(l){case"keyup":return p3.indexOf(d.keyCode)!==-1;case"keydown":return d.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function ky(l){return l=l.detail,typeof l=="object"&&"data"in l?l.data:null}var sl=!1;function g3(l,d){switch(l){case"compositionend":return ky(d);case"keypress":return d.which!==32?null:(wy=!0,Ny);case"textInput":return l=d.data,l===Ny&&wy?null:l;default:return null}}function x3(l,d){if(sl)return l==="compositionend"||!pp&&jy(l,d)?(l=tl(),Qi=gc=Lr=null,sl=!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=x}e:{for(;p;){if(p.nextSibling){p=p.nextSibling;break e}p=p.parentNode}p=void 0}p=Iy(p)}}function Py(l,d){return l&&d?l===d?!0:l&&l.nodeType===3?!1:d&&d.nodeType===3?Py(l,d.parentNode):"contains"in l?l.contains(d):l.compareDocumentPosition?!!(l.compareDocumentPosition(d)&16):!1:!1}function Oy(){for(var l=window,d=lt();d instanceof l.HTMLIFrameElement;){try{var p=typeof d.contentWindow.location.href=="string"}catch{p=!1}if(p)l=d.contentWindow;else break;d=lt(l.document)}return d}function xp(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 C3(l){var d=Oy(),p=l.focusedElem,x=l.selectionRange;if(d!==p&&p&&p.ownerDocument&&Py(p.ownerDocument.documentElement,p)){if(x!==null&&xp(p)){if(d=x.start,l=x.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(x.start,j);x=x.end===void 0?S:Math.min(x.end,j),!l.extend&&S>x&&(j=x,x=S,S=j),j=Ry(p,S);var A=Ry(p,x);j&&A&&(l.rangeCount!==1||l.anchorNode!==j.node||l.anchorOffset!==j.offset||l.focusNode!==A.node||l.focusOffset!==A.offset)&&(d=d.createRange(),d.setStart(j.node,j.offset),l.removeAllRanges(),S>x?(l.addRange(d),l.extend(A.node,A.offset)):(d.setEnd(A.node,A.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,rl=null,yp=null,jc=null,bp=!1;function Dy(l,d,p){var x=p.window===p?p.document:p.nodeType===9?p:p.ownerDocument;bp||rl==null||rl!==lt(x)||(x=rl,"selectionStart"in x&&xp(x)?x={start:x.selectionStart,end:x.selectionEnd}:(x=(x.ownerDocument&&x.ownerDocument.defaultView||window).getSelection(),x={anchorNode:x.anchorNode,anchorOffset:x.anchorOffset,focusNode:x.focusNode,focusOffset:x.focusOffset}),jc&&wc(jc,x)||(jc=x,x=eu(yp,"onSelect"),0cl||(l.current=Ip[cl],Ip[cl]=null,cl--)}function Ft(l,d){cl++,Ip[cl]=l.current,l.current=d}var Ja={},ts=Ga(Ja),Es=Ga(!1),no=Ja;function dl(l,d){var p=l.type.contextTypes;if(!p)return Ja;var x=l.stateNode;if(x&&x.__reactInternalMemoizedUnmaskedChildContext===d)return x.__reactInternalMemoizedMaskedChildContext;var j={},S;for(S in p)j[S]=d[S];return x&&(l=l.stateNode,l.__reactInternalMemoizedUnmaskedChildContext=d,l.__reactInternalMemoizedMaskedChildContext=j),j}function Ts(l){return l=l.childContextTypes,l!=null}function ru(){Jt(Es),Jt(ts)}function Yy(l,d,p){if(ts.current!==Ja)throw Error(n(168));Ft(ts,d),Ft(Es,p)}function Qy(l,d,p){var x=l.stateNode;if(d=d.childContextTypes,typeof x.getChildContext!="function")return p;x=x.getChildContext();for(var j in x)if(!(j in d))throw Error(n(108,re(l)||"Unknown",j));return F({},p,x)}function au(l){return l=(l=l.stateNode)&&l.__reactInternalMemoizedMergedChildContext||Ja,no=ts.current,Ft(ts,l),Ft(Es,Es.current),!0}function Xy(l,d,p){var x=l.stateNode;if(!x)throw Error(n(169));p?(l=Qy(l,d,no),x.__reactInternalMemoizedMergedChildContext=l,Jt(Es),Jt(ts),Ft(ts,l)):Jt(Es),Ft(Es,p)}var oa=null,iu=!1,Rp=!1;function Zy(l){oa===null?oa=[l]:oa.push(l)}function z3(l){iu=!0,Zy(l)}function Ya(){if(!Rp&&oa!==null){Rp=!0;var l=0,d=vt;try{var p=oa;for(vt=1;l>=A,j-=A,la=1<<32-Qe(d)+j|p<at?(Fn=nt,nt=null):Fn=nt.sibling;var Nt=we(le,nt,de[at],Ae);if(Nt===null){nt===null&&(nt=Fn);break}l&&nt&&Nt.alternate===null&&d(le,nt),te=S(Nt,te,at),tt===null?He=Nt:tt.sibling=Nt,tt=Nt,nt=Fn}if(at===de.length)return p(le,nt),Xt&&ro(le,at),He;if(nt===null){for(;atat?(Fn=nt,nt=null):Fn=nt.sibling;var ai=we(le,nt,Nt.value,Ae);if(ai===null){nt===null&&(nt=Fn);break}l&&nt&&ai.alternate===null&&d(le,nt),te=S(ai,te,at),tt===null?He=ai:tt.sibling=ai,tt=ai,nt=Fn}if(Nt.done)return p(le,nt),Xt&&ro(le,at),He;if(nt===null){for(;!Nt.done;at++,Nt=de.next())Nt=Se(le,Nt.value,Ae),Nt!==null&&(te=S(Nt,te,at),tt===null?He=Nt:tt.sibling=Nt,tt=Nt);return Xt&&ro(le,at),He}for(nt=x(le,nt);!Nt.done;at++,Nt=de.next())Nt=De(nt,le,at,Nt.value,Ae),Nt!==null&&(l&&Nt.alternate!==null&&nt.delete(Nt.key===null?at:Nt.key),te=S(Nt,te,at),tt===null?He=Nt:tt.sibling=Nt,tt=Nt);return l&&nt.forEach(function(yE){return d(le,yE)}),Xt&&ro(le,at),He}function bn(le,te,de,Ae){if(typeof de=="object"&&de!==null&&de.type===D&&de.key===null&&(de=de.props.children),typeof de=="object"&&de!==null){switch(de.$$typeof){case P:e:{for(var He=de.key,tt=te;tt!==null;){if(tt.key===He){if(He=de.type,He===D){if(tt.tag===7){p(le,tt.sibling),te=j(tt,de.props.children),te.return=le,le=te;break e}}else if(tt.elementType===He||typeof He=="object"&&He!==null&&He.$$typeof===K&&ab(He)===tt.type){p(le,tt.sibling),te=j(tt,de.props),te.ref=Mc(le,tt,de),te.return=le,le=te;break e}p(le,tt);break}else d(le,tt);tt=tt.sibling}de.type===D?(te=fo(de.props.children,le.mode,Ae,de.key),te.return=le,le=te):(Ae=Ou(de.type,de.key,de.props,null,le.mode,Ae),Ae.ref=Mc(le,te,de),Ae.return=le,le=Ae)}return A(le);case $:e:{for(tt=de.key;te!==null;){if(te.key===tt)if(te.tag===4&&te.stateNode.containerInfo===de.containerInfo&&te.stateNode.implementation===de.implementation){p(le,te.sibling),te=j(te,de.children||[]),te.return=le,le=te;break e}else{p(le,te);break}else d(le,te);te=te.sibling}te=Mm(de,le.mode,Ae),te.return=le,le=te}return A(le);case K:return tt=de._init,bn(le,te,tt(de._payload),Ae)}if(Qt(de))return ze(le,te,de,Ae);if(q(de))return Ve(le,te,de,Ae);du(le,de)}return typeof de=="string"&&de!==""||typeof de=="number"?(de=""+de,te!==null&&te.tag===6?(p(le,te.sibling),te=j(te,de),te.return=le,le=te):(p(le,te),te=Tm(de,le.mode,Ae),te.return=le,le=te),A(le)):p(le,te)}return bn}var pl=ib(!0),ob=ib(!1),uu=Ga(null),hu=null,ml=null,zp=null;function $p(){zp=ml=hu=null}function Fp(l){var d=uu.current;Jt(uu),l._currentValue=d}function Bp(l,d,p){for(;l!==null;){var x=l.alternate;if((l.childLanes&d)!==d?(l.childLanes|=d,x!==null&&(x.childLanes|=d)):x!==null&&(x.childLanes&d)!==d&&(x.childLanes|=d),l===p)break;l=l.return}}function gl(l,d){hu=l,zp=ml=null,l=l.dependencies,l!==null&&l.firstContext!==null&&((l.lanes&d)!==0&&(Ms=!0),l.firstContext=null)}function Zs(l){var d=l._currentValue;if(zp!==l)if(l={context:l,memoizedValue:d,next:null},ml===null){if(hu===null)throw Error(n(308));ml=l,hu.dependencies={lanes:0,firstContext:l}}else ml=ml.next=l;return d}var ao=null;function Vp(l){ao===null?ao=[l]:ao.push(l)}function lb(l,d,p,x){var j=d.interleaved;return j===null?(p.next=p,Vp(d)):(p.next=j.next,j.next=p),d.interleaved=p,da(l,x)}function da(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 Qa=!1;function Hp(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 ua(l,d){return{eventTime:l,lane:d,tag:0,payload:null,callback:null,next:null}}function Xa(l,d,p){var x=l.updateQueue;if(x===null)return null;if(x=x.shared,(xt&2)!==0){var j=x.pending;return j===null?d.next=d:(d.next=j.next,j.next=d),x.pending=d,da(l,p)}return j=x.interleaved,j===null?(d.next=d,Vp(x)):(d.next=j.next,j.next=d),x.interleaved=d,da(l,p)}function fu(l,d,p){if(d=d.updateQueue,d!==null&&(d=d.shared,(p&4194240)!==0)){var x=d.lanes;x&=l.pendingLanes,p|=x,d.lanes=p,dc(l,p)}}function db(l,d){var p=l.updateQueue,x=l.alternate;if(x!==null&&(x=x.updateQueue,p===x)){var j=null,S=null;if(p=p.firstBaseUpdate,p!==null){do{var A={eventTime:p.eventTime,lane:p.lane,tag:p.tag,payload:p.payload,callback:p.callback,next:null};S===null?j=S=A:S=S.next=A,p=p.next}while(p!==null);S===null?j=S=d:S=S.next=d}else j=S=d;p={baseState:x.baseState,firstBaseUpdate:j,lastBaseUpdate:S,shared:x.shared,effects:x.effects},l.updateQueue=p;return}l=p.lastBaseUpdate,l===null?p.firstBaseUpdate=d:l.next=d,p.lastBaseUpdate=d}function pu(l,d,p,x){var j=l.updateQueue;Qa=!1;var S=j.firstBaseUpdate,A=j.lastBaseUpdate,B=j.shared.pending;if(B!==null){j.shared.pending=null;var Y=B,fe=Y.next;Y.next=null,A===null?S=fe:A.next=fe,A=Y;var je=l.alternate;je!==null&&(je=je.updateQueue,B=je.lastBaseUpdate,B!==A&&(B===null?je.firstBaseUpdate=fe:B.next=fe,je.lastBaseUpdate=Y))}if(S!==null){var Se=j.baseState;A=0,je=fe=Y=null,B=S;do{var we=B.lane,De=B.eventTime;if((x&we)===we){je!==null&&(je=je.next={eventTime:De,lane:0,tag:B.tag,payload:B.payload,callback:B.callback,next:null});e:{var ze=l,Ve=B;switch(we=d,De=p,Ve.tag){case 1:if(ze=Ve.payload,typeof ze=="function"){Se=ze.call(De,Se,we);break e}Se=ze;break e;case 3:ze.flags=ze.flags&-65537|128;case 0:if(ze=Ve.payload,we=typeof ze=="function"?ze.call(De,Se,we):ze,we==null)break e;Se=F({},Se,we);break e;case 2:Qa=!0}}B.callback!==null&&B.lane!==0&&(l.flags|=64,we=j.effects,we===null?j.effects=[B]:we.push(B))}else De={eventTime:De,lane:we,tag:B.tag,payload:B.payload,callback:B.callback,next:null},je===null?(fe=je=De,Y=Se):je=je.next=De,A|=we;if(B=B.next,B===null){if(B=j.shared.pending,B===null)break;we=B,B=we.next,we.next=null,j.lastBaseUpdate=we,j.shared.pending=null}}while(!0);if(je===null&&(Y=Se),j.baseState=Y,j.firstBaseUpdate=fe,j.lastBaseUpdate=je,d=j.shared.interleaved,d!==null){j=d;do A|=j.lane,j=j.next;while(j!==d)}else S===null&&(j.shared.lanes=0);lo|=A,l.lanes=A,l.memoizedState=Se}}function ub(l,d,p){if(l=d.effects,d.effects=null,l!==null)for(d=0;dp?p:4,l(!0);var x=Gp.transition;Gp.transition={};try{l(!1),d()}finally{vt=p,Gp.transition=x}}function Ab(){return er().memoizedState}function V3(l,d,p){var x=ni(l);if(p={lane:x,action:p,hasEagerState:!1,eagerState:null,next:null},Ib(l))Rb(d,p);else if(p=lb(l,d,p,x),p!==null){var j=bs();vr(p,l,x,j),Pb(p,d,x)}}function H3(l,d,p){var x=ni(l),j={lane:x,action:p,hasEagerState:!1,eagerState:null,next:null};if(Ib(l))Rb(d,j);else{var S=l.alternate;if(l.lanes===0&&(S===null||S.lanes===0)&&(S=d.lastRenderedReducer,S!==null))try{var A=d.lastRenderedState,B=S(A,p);if(j.hasEagerState=!0,j.eagerState=B,mr(B,A)){var Y=d.interleaved;Y===null?(j.next=j,Vp(d)):(j.next=Y.next,Y.next=j),d.interleaved=j;return}}catch{}finally{}p=lb(l,d,j,x),p!==null&&(j=bs(),vr(p,l,x,j),Pb(p,d,x))}}function Ib(l){var d=l.alternate;return l===cn||d!==null&&d===cn}function Rb(l,d){Pc=xu=!0;var p=l.pending;p===null?d.next=d:(d.next=p.next,p.next=d),l.pending=d}function Pb(l,d,p){if((p&4194240)!==0){var x=d.lanes;x&=l.pendingLanes,p|=x,d.lanes=p,dc(l,p)}}var vu={readContext:Zs,useCallback:ns,useContext:ns,useEffect:ns,useImperativeHandle:ns,useInsertionEffect:ns,useLayoutEffect:ns,useMemo:ns,useReducer:ns,useRef:ns,useState:ns,useDebugValue:ns,useDeferredValue:ns,useTransition:ns,useMutableSource:ns,useSyncExternalStore:ns,useId:ns,unstable_isNewReconciler:!1},W3={readContext:Zs,useCallback:function(l,d){return $r().memoizedState=[l,d===void 0?null:d],l},useContext:Zs,useEffect:wb,useImperativeHandle:function(l,d,p){return p=p!=null?p.concat([l]):null,yu(4194308,4,Sb.bind(null,d,l),p)},useLayoutEffect:function(l,d){return yu(4194308,4,l,d)},useInsertionEffect:function(l,d){return yu(4,2,l,d)},useMemo:function(l,d){var p=$r();return d=d===void 0?null:d,l=l(),p.memoizedState=[l,d],l},useReducer:function(l,d,p){var x=$r();return d=p!==void 0?p(d):d,x.memoizedState=x.baseState=d,l={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:l,lastRenderedState:d},x.queue=l,l=l.dispatch=V3.bind(null,cn,l),[x.memoizedState,l]},useRef:function(l){var d=$r();return l={current:l},d.memoizedState=l},useState:vb,useDebugValue:tm,useDeferredValue:function(l){return $r().memoizedState=l},useTransition:function(){var l=vb(!1),d=l[0];return l=B3.bind(null,l[1]),$r().memoizedState=l,[d,l]},useMutableSource:function(){},useSyncExternalStore:function(l,d,p){var x=cn,j=$r();if(Xt){if(p===void 0)throw Error(n(407));p=p()}else{if(p=d(),$n===null)throw Error(n(349));(oo&30)!==0||mb(x,d,p)}j.memoizedState=p;var S={value:p,getSnapshot:d};return j.queue=S,wb(xb.bind(null,x,S,l),[l]),x.flags|=2048,Lc(9,gb.bind(null,x,S,p,d),void 0,null),p},useId:function(){var l=$r(),d=$n.identifierPrefix;if(Xt){var p=ca,x=la;p=(x&~(1<<32-Qe(x)-1)).toString(32)+p,d=":"+d+"R"+p,p=Oc++,0<\/script>",l=l.removeChild(l.firstChild)):typeof x.is=="string"?l=A.createElement(p,{is:x.is}):(l=A.createElement(p),p==="select"&&(A=l,x.multiple?A.multiple=!0:x.size&&(A.size=x.size))):l=A.createElementNS(l,p),l[_r]=d,l[Ec]=x,Zb(l,d,!1,!1),d.stateNode=l;e:{switch(A=Mr(p,x),p){case"dialog":Gt("cancel",l),Gt("close",l),j=x;break;case"iframe":case"object":case"embed":Gt("load",l),j=x;break;case"video":case"audio":for(j=0;jNl&&(d.flags|=128,x=!0,_c(S,!1),d.lanes=4194304)}else{if(!x)if(l=mu(A),l!==null){if(d.flags|=128,x=!0,p=l.updateQueue,p!==null&&(d.updateQueue=p,d.flags|=4),_c(S,!0),S.tail===null&&S.tailMode==="hidden"&&!A.alternate&&!Xt)return ss(d),null}else 2*Ut()-S.renderingStartTime>Nl&&p!==1073741824&&(d.flags|=128,x=!0,_c(S,!1),d.lanes=4194304);S.isBackwards?(A.sibling=d.child,d.child=A):(p=S.last,p!==null?p.sibling=A:d.child=A,S.last=A)}return S.tail!==null?(d=S.tail,S.rendering=d,S.tail=d.sibling,S.renderingStartTime=Ut(),d.sibling=null,p=ln.current,Ft(ln,x?p&1|2:p&1),d):(ss(d),null);case 22:case 23:return Sm(),x=d.memoizedState!==null,l!==null&&l.memoizedState!==null!==x&&(d.flags|=8192),x&&(d.mode&1)!==0?(_s&1073741824)!==0&&(ss(d),d.subtreeFlags&6&&(d.flags|=8192)):ss(d),null;case 24:return null;case 25:return null}throw Error(n(156,d.tag))}function X3(l,d){switch(Op(d),d.tag){case 1:return Ts(d.type)&&ru(),l=d.flags,l&65536?(d.flags=l&-65537|128,d):null;case 3:return xl(),Jt(Es),Jt(ts),qp(),l=d.flags,(l&65536)!==0&&(l&128)===0?(d.flags=l&-65537|128,d):null;case 5:return Up(d),null;case 13:if(Jt(ln),l=d.memoizedState,l!==null&&l.dehydrated!==null){if(d.alternate===null)throw Error(n(340));fl()}return l=d.flags,l&65536?(d.flags=l&-65537|128,d):null;case 19:return Jt(ln),null;case 4:return xl(),null;case 10:return Fp(d.type._context),null;case 22:case 23:return Sm(),null;case 24:return null;default:return null}}var ku=!1,rs=!1,Z3=typeof WeakSet=="function"?WeakSet:Set,_e=null;function bl(l,d){var p=l.ref;if(p!==null)if(typeof p=="function")try{p(null)}catch(x){hn(l,d,x)}else p.current=null}function fm(l,d,p){try{p()}catch(x){hn(l,d,x)}}var nv=!1;function eE(l,d){if(Sp=Zo,l=Oy(),xp(l)){if("selectionStart"in l)var p={start:l.selectionStart,end:l.selectionEnd};else e:{p=(p=l.ownerDocument)&&p.defaultView||window;var x=p.getSelection&&p.getSelection();if(x&&x.rangeCount!==0){p=x.anchorNode;var j=x.anchorOffset,S=x.focusNode;x=x.focusOffset;try{p.nodeType,S.nodeType}catch{p=null;break e}var A=0,B=-1,Y=-1,fe=0,je=0,Se=l,we=null;t:for(;;){for(var De;Se!==p||j!==0&&Se.nodeType!==3||(B=A+j),Se!==S||x!==0&&Se.nodeType!==3||(Y=A+x),Se.nodeType===3&&(A+=Se.nodeValue.length),(De=Se.firstChild)!==null;)we=Se,Se=De;for(;;){if(Se===l)break t;if(we===p&&++fe===j&&(B=A),we===S&&++je===x&&(Y=A),(De=Se.nextSibling)!==null)break;Se=we,we=Se.parentNode}Se=De}p=B===-1||Y===-1?null:{start:B,end:Y}}else p=null}p=p||{start:0,end:0}}else p=null;for(Cp={focusedElem:l,selectionRange:p},Zo=!1,_e=d;_e!==null;)if(d=_e,l=d.child,(d.subtreeFlags&1028)!==0&&l!==null)l.return=d,_e=l;else for(;_e!==null;){d=_e;try{var ze=d.alternate;if((d.flags&1024)!==0)switch(d.tag){case 0:case 11:case 15:break;case 1:if(ze!==null){var Ve=ze.memoizedProps,bn=ze.memoizedState,le=d.stateNode,te=le.getSnapshotBeforeUpdate(d.elementType===d.type?Ve:xr(d.type,Ve),bn);le.__reactInternalSnapshotBeforeUpdate=te}break;case 3:var de=d.stateNode.containerInfo;de.nodeType===1?de.textContent="":de.nodeType===9&&de.documentElement&&de.removeChild(de.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(n(163))}}catch(Ae){hn(d,d.return,Ae)}if(l=d.sibling,l!==null){l.return=d.return,_e=l;break}_e=d.return}return ze=nv,nv=!1,ze}function zc(l,d,p){var x=d.updateQueue;if(x=x!==null?x.lastEffect:null,x!==null){var j=x=x.next;do{if((j.tag&l)===l){var S=j.destroy;j.destroy=void 0,S!==void 0&&fm(d,p,S)}j=j.next}while(j!==x)}}function Su(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 x=p.create;p.destroy=x()}p=p.next}while(p!==d)}}function pm(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 sv(l){var d=l.alternate;d!==null&&(l.alternate=null,sv(d)),l.child=null,l.deletions=null,l.sibling=null,l.tag===5&&(d=l.stateNode,d!==null&&(delete d[_r],delete d[Ec],delete d[Ap],delete d[L3],delete d[_3])),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 rv(l){return l.tag===5||l.tag===3||l.tag===4}function av(l){e:for(;;){for(;l.sibling===null;){if(l.return===null||rv(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 mm(l,d,p){var x=l.tag;if(x===5||x===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=nu));else if(x!==4&&(l=l.child,l!==null))for(mm(l,d,p),l=l.sibling;l!==null;)mm(l,d,p),l=l.sibling}function gm(l,d,p){var x=l.tag;if(x===5||x===6)l=l.stateNode,d?p.insertBefore(l,d):p.appendChild(l);else if(x!==4&&(l=l.child,l!==null))for(gm(l,d,p),l=l.sibling;l!==null;)gm(l,d,p),l=l.sibling}var Kn=null,yr=!1;function Za(l,d,p){for(p=p.child;p!==null;)iv(l,d,p),p=p.sibling}function iv(l,d,p){if(Oe&&typeof Oe.onCommitFiberUnmount=="function")try{Oe.onCommitFiberUnmount(G,p)}catch{}switch(p.tag){case 5:rs||bl(p,d);case 6:var x=Kn,j=yr;Kn=null,Za(l,d,p),Kn=x,yr=j,Kn!==null&&(yr?(l=Kn,p=p.stateNode,l.nodeType===8?l.parentNode.removeChild(p):l.removeChild(p)):Kn.removeChild(p.stateNode));break;case 18:Kn!==null&&(yr?(l=Kn,p=p.stateNode,l.nodeType===8?Mp(l.parentNode,p):l.nodeType===1&&Mp(l,p),Yi(l)):Mp(Kn,p.stateNode));break;case 4:x=Kn,j=yr,Kn=p.stateNode.containerInfo,yr=!0,Za(l,d,p),Kn=x,yr=j;break;case 0:case 11:case 14:case 15:if(!rs&&(x=p.updateQueue,x!==null&&(x=x.lastEffect,x!==null))){j=x=x.next;do{var S=j,A=S.destroy;S=S.tag,A!==void 0&&((S&2)!==0||(S&4)!==0)&&fm(p,d,A),j=j.next}while(j!==x)}Za(l,d,p);break;case 1:if(!rs&&(bl(p,d),x=p.stateNode,typeof x.componentWillUnmount=="function"))try{x.props=p.memoizedProps,x.state=p.memoizedState,x.componentWillUnmount()}catch(B){hn(p,d,B)}Za(l,d,p);break;case 21:Za(l,d,p);break;case 22:p.mode&1?(rs=(x=rs)||p.memoizedState!==null,Za(l,d,p),rs=x):Za(l,d,p);break;default:Za(l,d,p)}}function ov(l){var d=l.updateQueue;if(d!==null){l.updateQueue=null;var p=l.stateNode;p===null&&(p=l.stateNode=new Z3),d.forEach(function(x){var j=cE.bind(null,l,x);p.has(x)||(p.add(x),x.then(j,j))})}}function br(l,d){var p=d.deletions;if(p!==null)for(var x=0;xj&&(j=A),x&=~S}if(x=j,x=Ut()-x,x=(120>x?120:480>x?480:1080>x?1080:1920>x?1920:3e3>x?3e3:4320>x?4320:1960*nE(x/1960))-x,10l?16:l,ti===null)var x=!1;else{if(l=ti,ti=null,Au=0,(xt&6)!==0)throw Error(n(331));var j=xt;for(xt|=4,_e=l.current;_e!==null;){var S=_e,A=S.child;if((_e.flags&16)!==0){var B=S.deletions;if(B!==null){for(var Y=0;YUt()-bm?uo(l,0):ym|=p),Is(l,d)}function vv(l,d){d===0&&((l.mode&1)===0?d=1:(d=Un,Un<<=1,(Un&130023424)===0&&(Un=4194304)));var p=bs();l=da(l,d),l!==null&&(qi(l,d,p),Is(l,p))}function lE(l){var d=l.memoizedState,p=0;d!==null&&(p=d.retryLane),vv(l,p)}function cE(l,d){var p=0;switch(l.tag){case 13:var x=l.stateNode,j=l.memoizedState;j!==null&&(p=j.retryLane);break;case 19:x=l.stateNode;break;default:throw Error(n(314))}x!==null&&x.delete(d),vv(l,p)}var Nv;Nv=function(l,d,p){if(l!==null)if(l.memoizedProps!==d.pendingProps||Es.current)Ms=!0;else{if((l.lanes&p)===0&&(d.flags&128)===0)return Ms=!1,Y3(l,d,p);Ms=(l.flags&131072)!==0}else Ms=!1,Xt&&(d.flags&1048576)!==0&&eb(d,lu,d.index);switch(d.lanes=0,d.tag){case 2:var x=d.type;ju(l,d),l=d.pendingProps;var j=dl(d,ts.current);gl(d,p),j=Yp(null,d,x,l,j,p);var S=Qp();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,Ts(x)?(S=!0,au(d)):S=!1,d.memoizedState=j.state!==null&&j.state!==void 0?j.state:null,Hp(d),j.updater=Nu,d.stateNode=j,j._reactInternals=d,sm(d,x,l,p),d=om(null,d,x,!0,S,p)):(d.tag=0,Xt&&S&&Pp(d),ys(null,d,j,p),d=d.child),d;case 16:x=d.elementType;e:{switch(ju(l,d),l=d.pendingProps,j=x._init,x=j(x._payload),d.type=x,j=d.tag=uE(x),l=xr(x,l),j){case 0:d=im(null,d,x,l,p);break e;case 1:d=qb(null,d,x,l,p);break e;case 11:d=Vb(null,d,x,l,p);break e;case 14:d=Hb(null,d,x,xr(x.type,l),p);break e}throw Error(n(306,x,""))}return d;case 0:return x=d.type,j=d.pendingProps,j=d.elementType===x?j:xr(x,j),im(l,d,x,j,p);case 1:return x=d.type,j=d.pendingProps,j=d.elementType===x?j:xr(x,j),qb(l,d,x,j,p);case 3:e:{if(Gb(d),l===null)throw Error(n(387));x=d.pendingProps,S=d.memoizedState,j=S.element,cb(l,d),pu(d,x,null,p);var A=d.memoizedState;if(x=A.element,S.isDehydrated)if(S={element:x,isDehydrated:!1,cache:A.cache,pendingSuspenseBoundaries:A.pendingSuspenseBoundaries,transitions:A.transitions},d.updateQueue.baseState=S,d.memoizedState=S,d.flags&256){j=yl(Error(n(423)),d),d=Jb(l,d,x,p,j);break e}else if(x!==j){j=yl(Error(n(424)),d),d=Jb(l,d,x,p,j);break e}else for(Ls=qa(d.stateNode.containerInfo.firstChild),Ds=d,Xt=!0,gr=null,p=ob(d,null,x,p),d.child=p;p;)p.flags=p.flags&-3|4096,p=p.sibling;else{if(fl(),x===j){d=ha(l,d,p);break e}ys(l,d,x,p)}d=d.child}return d;case 5:return hb(d),l===null&&Lp(d),x=d.type,j=d.pendingProps,S=l!==null?l.memoizedProps:null,A=j.children,Ep(x,j)?A=null:S!==null&&Ep(x,S)&&(d.flags|=32),Kb(l,d),ys(l,d,A,p),d.child;case 6:return l===null&&Lp(d),null;case 13:return Yb(l,d,p);case 4:return Wp(d,d.stateNode.containerInfo),x=d.pendingProps,l===null?d.child=pl(d,null,x,p):ys(l,d,x,p),d.child;case 11:return x=d.type,j=d.pendingProps,j=d.elementType===x?j:xr(x,j),Vb(l,d,x,j,p);case 7:return ys(l,d,d.pendingProps,p),d.child;case 8:return ys(l,d,d.pendingProps.children,p),d.child;case 12:return ys(l,d,d.pendingProps.children,p),d.child;case 10:e:{if(x=d.type._context,j=d.pendingProps,S=d.memoizedProps,A=j.value,Ft(uu,x._currentValue),x._currentValue=A,S!==null)if(mr(S.value,A)){if(S.children===j.children&&!Es.current){d=ha(l,d,p);break e}}else for(S=d.child,S!==null&&(S.return=d);S!==null;){var B=S.dependencies;if(B!==null){A=S.child;for(var Y=B.firstContext;Y!==null;){if(Y.context===x){if(S.tag===1){Y=ua(-1,p&-p),Y.tag=2;var fe=S.updateQueue;if(fe!==null){fe=fe.shared;var je=fe.pending;je===null?Y.next=Y:(Y.next=je.next,je.next=Y),fe.pending=Y}}S.lanes|=p,Y=S.alternate,Y!==null&&(Y.lanes|=p),Bp(S.return,p,d),B.lanes|=p;break}Y=Y.next}}else if(S.tag===10)A=S.type===d.type?null:S.child;else if(S.tag===18){if(A=S.return,A===null)throw Error(n(341));A.lanes|=p,B=A.alternate,B!==null&&(B.lanes|=p),Bp(A,p,d),A=S.sibling}else A=S.child;if(A!==null)A.return=S;else for(A=S;A!==null;){if(A===d){A=null;break}if(S=A.sibling,S!==null){S.return=A.return,A=S;break}A=A.return}S=A}ys(l,d,j.children,p),d=d.child}return d;case 9:return j=d.type,x=d.pendingProps.children,gl(d,p),j=Zs(j),x=x(j),d.flags|=1,ys(l,d,x,p),d.child;case 14:return x=d.type,j=xr(x,d.pendingProps),j=xr(x.type,j),Hb(l,d,x,j,p);case 15:return Wb(l,d,d.type,d.pendingProps,p);case 17:return x=d.type,j=d.pendingProps,j=d.elementType===x?j:xr(x,j),ju(l,d),d.tag=1,Ts(x)?(l=!0,au(d)):l=!1,gl(d,p),Db(d,x,j),sm(d,x,j,p),om(null,d,x,!0,l,p);case 19:return Xb(l,d,p);case 22:return Ub(l,d,p)}throw Error(n(156,d.tag))};function wv(l,d){return ta(l,d)}function dE(l,d,p,x){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=x,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function nr(l,d,p,x){return new dE(l,d,p,x)}function Em(l){return l=l.prototype,!(!l||!l.isReactComponent)}function uE(l){if(typeof l=="function")return Em(l)?1:0;if(l!=null){if(l=l.$$typeof,l===ne)return 11;if(l===z)return 14}return 2}function ri(l,d){var p=l.alternate;return p===null?(p=nr(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 Ou(l,d,p,x,j,S){var A=2;if(x=l,typeof l=="function")Em(l)&&(A=1);else if(typeof l=="string")A=5;else e:switch(l){case D:return fo(p.children,j,S,d);case R:A=8,j|=8;break;case O:return l=nr(12,p,d,j|2),l.elementType=O,l.lanes=S,l;case pe:return l=nr(13,p,d,j),l.elementType=pe,l.lanes=S,l;case ge:return l=nr(19,p,d,j),l.elementType=ge,l.lanes=S,l;case U:return Du(p,j,S,d);default:if(typeof l=="object"&&l!==null)switch(l.$$typeof){case _:A=10;break e;case se:A=9;break e;case ne:A=11;break e;case z:A=14;break e;case K:A=16,x=null;break e}throw Error(n(130,l==null?l:typeof l,""))}return d=nr(A,p,d,j),d.elementType=l,d.type=x,d.lanes=S,d}function fo(l,d,p,x){return l=nr(7,l,x,d),l.lanes=p,l}function Du(l,d,p,x){return l=nr(22,l,x,d),l.elementType=U,l.lanes=p,l.stateNode={isHidden:!1},l}function Tm(l,d,p){return l=nr(6,l,null,d),l.lanes=p,l}function Mm(l,d,p){return d=nr(4,l.children!==null?l.children:[],l.key,d),d.lanes=p,d.stateNode={containerInfo:l.containerInfo,pendingChildren:null,implementation:l.implementation},d}function hE(l,d,p,x,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=ra(0),this.expirationTimes=ra(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=ra(0),this.identifierPrefix=x,this.onRecoverableError=j,this.mutableSourceEagerHydrationData=null}function Am(l,d,p,x,j,S,A,B,Y){return l=new hE(l,d,p,B,Y),d===1?(d=1,S===!0&&(d|=8)):d=0,S=nr(3,null,null,d),l.current=S,S.stateNode=l,S.memoizedState={element:x,isDehydrated:p,cache:null,transitions:null,pendingSuspenseBoundaries:null},Hp(S),l}function fE(l,d,p){var x=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(e){console.error(e)}}return t(),Lm.exports=SE(),Lm.exports}var Lv;function CE(){if(Lv)return Vu;Lv=1;var t=Vw();return Vu.createRoot=t.createRoot,Vu.hydrateRoot=t.hydrateRoot,Vu}var EE=CE(),Dd=Vw();const Hw=Bw(Dd);/** - * @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 Qx(t,e){if(!t){typeof console<"u"&&console.warn(e);try{throw new Error(e)}catch{}}}function ME(){return Math.random().toString(36).substr(2,8)}function zv(t,e){return{usr:t.state,key:t.key,idx:e}}function _g(t,e,n,s){return n===void 0&&(n=null),gd({pathname:typeof t=="string"?t:t.pathname,search:"",hash:""},typeof e=="string"?Xl(e):e,{state:n,key:e&&e.key||s||ME()})}function Ch(t){let{pathname:e="/",search:n="",hash:s=""}=t;return n&&n!=="?"&&(e+=n.charAt(0)==="?"?n:"?"+n),s&&s!=="#"&&(e+=s.charAt(0)==="#"?s:"#"+s),e}function Xl(t){let e={};if(t){let n=t.indexOf("#");n>=0&&(e.hash=t.substr(n),t=t.substr(0,n));let s=t.indexOf("?");s>=0&&(e.search=t.substr(s),t=t.substr(0,s)),t&&(e.pathname=t)}return e}function AE(t,e,n,s){s===void 0&&(s={});let{window:a=document.defaultView,v5Compat:i=!1}=s,o=a.history,c=xi.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=xi.Pop;let v=f(),k=v==null?null:v-h;h=v,u&&u({action:c,location:w.location,delta:k})}function g(v,k){c=xi.Push;let C=_g(w.location,v,k);h=f()+1;let E=zv(C,h),M=w.createHref(C);try{o.pushState(E,"",M)}catch(P){if(P instanceof DOMException&&P.name==="DataCloneError")throw P;a.location.assign(M)}i&&u&&u({action:c,location:w.location,delta:1})}function y(v,k){c=xi.Replace;let C=_g(w.location,v,k);h=f();let E=zv(C,h),M=w.createHref(C);o.replaceState(E,"",M),i&&u&&u({action:c,location:w.location,delta:0})}function N(v){let k=a.location.origin!=="null"?a.location.origin:a.location.href,C=typeof v=="string"?v:Ch(v);return C=C.replace(/ $/,"%20"),Nn(k,"No window.location.(origin|href) available to create URL for href: "+C),new URL(C,k)}let w={get action(){return c},get location(){return t(a,o)},listen(v){if(u)throw new Error("A history only accepts one active listener");return a.addEventListener(_v,m),u=v,()=>{a.removeEventListener(_v,m),u=null}},createHref(v){return e(a,v)},createURL:N,encodeLocation(v){let k=N(v);return{pathname:k.pathname,search:k.search,hash:k.hash}},push:g,replace:y,go(v){return o.go(v)}};return w}var $v;(function(t){t.data="data",t.deferred="deferred",t.redirect="redirect",t.error="error"})($v||($v={}));function IE(t,e,n){return n===void 0&&(n="/"),RE(t,e,n)}function RE(t,e,n,s){let a=typeof e=="string"?Xl(e):e,i=Xx(a.pathname||"/",n);if(i==null)return null;let o=Ww(t);PE(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("/")&&(Nn(u.relativePath.startsWith(s),'Absolute route path "'+u.relativePath+'" nested under path '+('"'+s+'" is not valid. An absolute child route path ')+"must start with the combined path of all its parent routes."),u.relativePath=u.relativePath.slice(s.length));let h=wi([s,u.relativePath]),f=n.concat(u);i.children&&i.children.length>0&&(Nn(i.index!==!0,"Index routes must not have child routes. Please remove "+('all child routes from route path "'+h+'".')),Ww(i.children,e,f,h)),!(i.path==null&&!i.index)&&e.push({path:h,score:FE(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 Uw(i.path))a(i,o,u)}),e}function Uw(t){let e=t.split("/");if(e.length===0)return[];let[n,...s]=e,a=n.endsWith("?"),i=n.replace(/\?$/,"");if(s.length===0)return a?[i,""]:[i];let o=Uw(s.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 PE(t){t.sort((e,n)=>e.score!==n.score?n.score-e.score:BE(e.routesMeta.map(s=>s.childrenIndex),n.routesMeta.map(s=>s.childrenIndex)))}const OE=/^:[\w-]+$/,DE=3,LE=2,_E=1,zE=10,$E=-2,Fv=t=>t==="*";function FE(t,e){let n=t.split("/"),s=n.length;return n.some(Fv)&&(s+=$E),e&&(s+=LE),n.filter(a=>!Fv(a)).reduce((a,i)=>a+(OE.test(i)?DE:i===""?_E:zE),s)}function BE(t,e){return t.length===e.length&&t.slice(0,-1).every((s,a)=>s===e[a])?t[t.length-1]-e[e.length-1]:0}function VE(t,e,n){let{routesMeta:s}=t,a={},i="/",o=[];for(let c=0;c{let{paramName:g,isOptional:y}=f;if(g==="*"){let w=c[m]||"";o=i.slice(0,i.length-w.length).replace(/(.)\/+$/,"$1")}const N=c[m];return y&&!N?h[g]=void 0:h[g]=(N||"").replace(/%2F/g,"/"),h},{}),pathname:i,pathnameBase:o,pattern:t}}function WE(t,e,n){e===void 0&&(e=!1),n===void 0&&(n=!0),Qx(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 s=[],a="^"+t.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^${}|()[\]]/g,"\\$&").replace(/\/:([\w-]+)(\?)?/g,(o,c,u)=>(s.push({paramName:c,isOptional:u!=null}),u?"/?([^\\/]+)?":"/([^\\/]+)"));return t.endsWith("*")?(s.push({paramName:"*"}),a+=t==="*"||t==="/*"?"(.*)$":"(?:\\/(.+)|\\/*)$"):n?a+="\\/*$":t!==""&&t!=="/"&&(a+="(?:(?=\\/|$))"),[new RegExp(a,e?void 0:"i"),s]}function UE(t){try{return t.split("/").map(e=>decodeURIComponent(e).replace(/\//g,"%2F")).join("/")}catch(e){return Qx(!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 Xx(t,e){if(e==="/")return t;if(!t.toLowerCase().startsWith(e.toLowerCase()))return null;let n=e.endsWith("/")?e.length-1:e.length,s=t.charAt(n);return s&&s!=="/"?null:t.slice(n)||"/"}const KE=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,qE=t=>KE.test(t);function GE(t,e){e===void 0&&(e="/");let{pathname:n,search:s="",hash:a=""}=typeof t=="string"?Xl(t):t,i;if(n)if(qE(n))i=n;else{if(n.includes("//")){let o=n;n=n.replace(/\/\/+/g,"/"),Qx(!1,"Pathnames cannot have embedded double slashes - normalizing "+(o+" -> "+n))}n.startsWith("/")?i=Bv(n.substring(1),"/"):i=Bv(n,e)}else i=e;return{pathname:i,search:QE(s),hash:XE(a)}}function Bv(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 $m(t,e,n,s){return"Cannot include a '"+t+"' character in a manually specified "+("`to."+e+"` field ["+JSON.stringify(s)+"]. 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 JE(t){return t.filter((e,n)=>n===0||e.route.path&&e.route.path.length>0)}function Zx(t,e){let n=JE(t);return e?n.map((s,a)=>a===n.length-1?s.pathname:s.pathnameBase):n.map(s=>s.pathnameBase)}function e0(t,e,n,s){s===void 0&&(s=!1);let a;typeof t=="string"?a=Xl(t):(a=gd({},t),Nn(!a.pathname||!a.pathname.includes("?"),$m("?","pathname","search",a)),Nn(!a.pathname||!a.pathname.includes("#"),$m("#","pathname","hash",a)),Nn(!a.search||!a.search.includes("#"),$m("#","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(!s&&o.startsWith("..")){let g=o.split("/");for(;g[0]==="..";)g.shift(),m-=1;a.pathname=g.join("/")}c=m>=0?e[m]:"/"}let u=GE(a,c),h=o&&o!=="/"&&o.endsWith("/"),f=(i||o===".")&&n.endsWith("/");return!u.pathname.endsWith("/")&&(h||f)&&(u.pathname+="/"),u}const wi=t=>t.join("/").replace(/\/\/+/g,"/"),YE=t=>t.replace(/\/+$/,"").replace(/^\/*/,"/"),QE=t=>!t||t==="?"?"":t.startsWith("?")?t:"?"+t,XE=t=>!t||t==="#"?"":t.startsWith("#")?t:"#"+t;function ZE(t){return t!=null&&typeof t.status=="number"&&typeof t.statusText=="string"&&typeof t.internal=="boolean"&&"data"in t}const Kw=["post","put","patch","delete"];new Set(Kw);const eT=["get",...Kw];new Set(eT);/** - * 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 xd(){return xd=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"){s.go(h);return}let m=e0(h,JSON.parse(o),i,f.relative==="path");t==null&&e!=="/"&&(m.pathname=m.pathname==="/"?e:wi([e,m.pathname])),(f.replace?s.replace:s.push)(m,f.state,f)},[e,s,o,i,t])}const rT=b.createContext(null);function aT(t){let e=b.useContext(Aa).outlet;return e&&b.createElement(rT.Provider,{value:t},e)}function Jw(t,e){let{relative:n}=e===void 0?{}:e,{future:s}=b.useContext(Oi),{matches:a}=b.useContext(Aa),{pathname:i}=Di(),o=JSON.stringify(Zx(a,s.v7_relativeSplatPath));return b.useMemo(()=>e0(t,JSON.parse(o),i,n==="path"),[t,o,i,n])}function iT(t,e){return oT(t,e)}function oT(t,e,n,s){Zl()||Nn(!1);let{navigator:a}=b.useContext(Oi),{matches:i}=b.useContext(Aa),o=i[i.length-1],c=o?o.params:{};o&&o.pathname;let u=o?o.pathnameBase:"/";o&&o.route;let h=Di(),f;if(e){var m;let v=typeof e=="string"?Xl(e):e;u==="/"||(m=v.pathname)!=null&&m.startsWith(u)||Nn(!1),f=v}else f=h;let g=f.pathname||"/",y=g;if(u!=="/"){let v=u.replace(/^\//,"").split("/");y="/"+g.replace(/^\//,"").split("/").slice(v.length).join("/")}let N=IE(t,{pathname:y}),w=hT(N&&N.map(v=>Object.assign({},v,{params:Object.assign({},c,v.params),pathname:wi([u,a.encodeLocation?a.encodeLocation(v.pathname).pathname:v.pathname]),pathnameBase:v.pathnameBase==="/"?u:wi([u,a.encodeLocation?a.encodeLocation(v.pathnameBase).pathname:v.pathnameBase])})),i,n,s);return e&&w?b.createElement(Af.Provider,{value:{location:xd({pathname:"/",search:"",hash:"",state:null,key:"default"},f),navigationType:xi.Pop}},w):w}function lT(){let t=gT(),e=ZE(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 cT=b.createElement(lT,null);class dT 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(Aa.Provider,{value:this.props.routeContext},b.createElement(qw.Provider,{value:this.state.error,children:this.props.component})):this.props.children}}function uT(t){let{routeContext:e,match:n,children:s}=t,a=b.useContext(t0);return a&&a.static&&a.staticContext&&(n.route.errorElement||n.route.ErrorBoundary)&&(a.staticContext._deepestRenderedBoundaryId=n.route.id),b.createElement(Aa.Provider,{value:e},s)}function hT(t,e,n,s){var a;if(e===void 0&&(e=[]),n===void 0&&(n=null),s===void 0&&(s=null),t==null){var i;if(!n)return null;if(n.errors)t=n.matches;else if((i=s)!=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||Nn(!1),o=o.slice(0,Math.min(o.length,f+1))}let u=!1,h=-1;if(n&&s&&s.v7_partialHydration)for(let f=0;f=0?o=o.slice(0,h+1):o=[o[0]];break}}}return o.reduceRight((f,m,g)=>{let y,N=!1,w=null,v=null;n&&(y=c&&m.route.id?c[m.route.id]:void 0,w=m.route.errorElement||cT,u&&(h<0&&g===0?(yT("route-fallback"),N=!0,v=null):h===g&&(N=!0,v=m.route.hydrateFallbackElement||null)));let k=e.concat(o.slice(0,g+1)),C=()=>{let E;return y?E=w:N?E=v:m.route.Component?E=b.createElement(m.route.Component,null):m.route.element?E=m.route.element:E=f,b.createElement(uT,{match:m,routeContext:{outlet:f,matches:k,isDataRoute:n!=null},children:E})};return n&&(m.route.ErrorBoundary||m.route.errorElement||g===0)?b.createElement(dT,{location:n.location,revalidation:n.revalidation,component:w,error:y,children:C(),routeContext:{outlet:null,matches:k,isDataRoute:!0}}):C()},null)}var Yw=(function(t){return t.UseBlocker="useBlocker",t.UseRevalidator="useRevalidator",t.UseNavigateStable="useNavigate",t})(Yw||{}),Qw=(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})(Qw||{});function fT(t){let e=b.useContext(t0);return e||Nn(!1),e}function pT(t){let e=b.useContext(tT);return e||Nn(!1),e}function mT(t){let e=b.useContext(Aa);return e||Nn(!1),e}function Xw(t){let e=mT(),n=e.matches[e.matches.length-1];return n.route.id||Nn(!1),n.route.id}function gT(){var t;let e=b.useContext(qw),n=pT(),s=Xw();return e!==void 0?e:(t=n.errors)==null?void 0:t[s]}function xT(){let{router:t}=fT(Yw.UseNavigateStable),e=Xw(Qw.UseNavigateStable),n=b.useRef(!1);return Gw(()=>{n.current=!0}),b.useCallback(function(a,i){i===void 0&&(i={}),n.current&&(typeof a=="number"?t.navigate(a):t.navigate(a,xd({fromRouteId:e},i)))},[t,e])}const Vv={};function yT(t,e,n){Vv[t]||(Vv[t]=!0)}function bT(t,e){t==null||t.v7_startTransition,t==null||t.v7_relativeSplatPath}function Fm(t){let{to:e,replace:n,state:s,relative:a}=t;Zl()||Nn(!1);let{future:i,static:o}=b.useContext(Oi),{matches:c}=b.useContext(Aa),{pathname:u}=Di(),h=Li(),f=e0(e,Zx(c,i.v7_relativeSplatPath),u,a==="path"),m=JSON.stringify(f);return b.useEffect(()=>h(JSON.parse(m),{replace:n,state:s,relative:a}),[h,m,a,n,s]),null}function vT(t){return aT(t.context)}function Bt(t){Nn(!1)}function NT(t){let{basename:e="/",children:n=null,location:s,navigationType:a=xi.Pop,navigator:i,static:o=!1,future:c}=t;Zl()&&Nn(!1);let u=e.replace(/^\/*/,"/"),h=b.useMemo(()=>({basename:u,navigator:i,static:o,future:xd({v7_relativeSplatPath:!1},c)}),[u,c,i,o]);typeof s=="string"&&(s=Xl(s));let{pathname:f="/",search:m="",hash:g="",state:y=null,key:N="default"}=s,w=b.useMemo(()=>{let v=Xx(f,u);return v==null?null:{location:{pathname:v,search:m,hash:g,state:y,key:N},navigationType:a}},[u,f,m,g,y,N,a]);return w==null?null:b.createElement(Oi.Provider,{value:h},b.createElement(Af.Provider,{children:n,value:w}))}function wT(t){let{children:e,location:n}=t;return iT(zg(e),n)}new Promise(()=>{});function zg(t,e){e===void 0&&(e=[]);let n=[];return b.Children.forEach(t,(s,a)=>{if(!b.isValidElement(s))return;let i=[...e,a];if(s.type===b.Fragment){n.push.apply(n,zg(s.props.children,i));return}s.type!==Bt&&Nn(!1),!s.props.index||!s.props.children||Nn(!1);let o={id:s.props.id||i.join("-"),caseSensitive:s.props.caseSensitive,element:s.props.element,Component:s.props.Component,index:s.props.index,path:s.props.path,loader:s.props.loader,action:s.props.action,errorElement:s.props.errorElement,ErrorBoundary:s.props.ErrorBoundary,hasErrorBoundary:s.props.ErrorBoundary!=null||s.props.errorElement!=null,shouldRevalidate:s.props.shouldRevalidate,handle:s.props.handle,lazy:s.props.lazy};s.props.children&&(o.children=zg(s.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 $g(){return $g=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0)&&(n[a]=t[a]);return n}function kT(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}function ST(t,e){return t.button===0&&(!e||e==="_self")&&!kT(t)}function Fg(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 s=t[n];return e.concat(Array.isArray(s)?s.map(a=>[n,a]):[[n,s]])},[]))}function CT(t,e){let n=Fg(t);return e&&e.forEach((s,a)=>{n.has(a)||e.getAll(a).forEach(i=>{n.append(a,i)})}),n}const ET=["onClick","relative","reloadDocument","replace","state","target","to","preventScrollReset","viewTransition"],TT="6";try{window.__reactRouterVersion=TT}catch{}const MT="startTransition",Hv=Mf[MT];function AT(t){let{basename:e,children:n,future:s,window:a}=t,i=b.useRef();i.current==null&&(i.current=TE({window:a,v5Compat:!0}));let o=i.current,[c,u]=b.useState({action:o.action,location:o.location}),{v7_startTransition:h}=s||{},f=b.useCallback(m=>{h&&Hv?Hv(()=>u(m)):u(m)},[u,h]);return b.useLayoutEffect(()=>o.listen(f),[o,f]),b.useEffect(()=>bT(s),[s]),b.createElement(NT,{basename:e,children:n,location:c.location,navigationType:c.action,navigator:o,future:s})}const IT=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",RT=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,Bg=b.forwardRef(function(e,n){let{onClick:s,relative:a,reloadDocument:i,replace:o,state:c,target:u,to:h,preventScrollReset:f,viewTransition:m}=e,g=jT(e,ET),{basename:y}=b.useContext(Oi),N,w=!1;if(typeof h=="string"&&RT.test(h)&&(N=h,IT))try{let E=new URL(window.location.href),M=h.startsWith("//")?new URL(E.protocol+h):new URL(h),P=Xx(M.pathname,y);M.origin===E.origin&&P!=null?h=P+M.search+M.hash:w=!0}catch{}let v=nT(h,{relative:a}),k=PT(h,{replace:o,state:c,target:u,preventScrollReset:f,relative:a,viewTransition:m});function C(E){s&&s(E),E.defaultPrevented||k(E)}return b.createElement("a",$g({},g,{href:N||v,onClick:w||i?s:C,ref:n,target:u}))});var Wv;(function(t){t.UseScrollRestoration="useScrollRestoration",t.UseSubmit="useSubmit",t.UseSubmitFetcher="useSubmitFetcher",t.UseFetcher="useFetcher",t.useViewTransitionState="useViewTransitionState"})(Wv||(Wv={}));var Uv;(function(t){t.UseFetcher="useFetcher",t.UseFetchers="useFetchers",t.UseScrollRestoration="useScrollRestoration"})(Uv||(Uv={}));function PT(t,e){let{target:n,replace:s,state:a,preventScrollReset:i,relative:o,viewTransition:c}=e===void 0?{}:e,u=Li(),h=Di(),f=Jw(t,{relative:o});return b.useCallback(m=>{if(ST(m,n)){m.preventDefault();let g=s!==void 0?s:Ch(h)===Ch(f);u(t,{replace:g,state:a,preventScrollReset:i,relative:o,viewTransition:c})}},[h,u,f,s,a,n,t,i,o,c])}function Zw(t){let e=b.useRef(Fg(t)),n=b.useRef(!1),s=Di(),a=b.useMemo(()=>CT(s.search,n.current?null:e.current),[s.search]),i=Li(),o=b.useCallback((c,u)=>{const h=Fg(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 OT=t=>t.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),DT=t=>t.replace(/^([A-Z])|[\s-_]+(\w)/g,(e,n,s)=>s?s.toUpperCase():n.toLowerCase()),Kv=t=>{const e=DT(t);return e.charAt(0).toUpperCase()+e.slice(1)},ej=(...t)=>t.filter((e,n,s)=>!!e&&e.trim()!==""&&s.indexOf(e)===n).join(" ").trim(),LT=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 _T={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 zT=b.forwardRef(({color:t="currentColor",size:e=24,strokeWidth:n=2,absoluteStrokeWidth:s,className:a="",children:i,iconNode:o,...c},u)=>b.createElement("svg",{ref:u,..._T,width:e,height:e,stroke:t,strokeWidth:s?Number(n)*24/Number(e):n,className:ej("lucide",a),...!i&&!LT(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:s,...a},i)=>b.createElement(zT,{ref:i,iconNode:e,className:ej(`lucide-${OT(Kv(t))}`,`lucide-${t}`,s),...a}));return n.displayName=Kv(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 $T=[["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"}]],Bm=Me("arrow-up-down",$T);/** - * @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 FT=[["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"}]],qv=Me("bitcoin",FT);/** - * @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 BT=[["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"}]],VT=Me("bold",BT);/** - * @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 HT=[["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"}]],Hs=Me("book-open",HT);/** - * @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 WT=[["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"}]],Eh=Me("calendar",WT);/** - * @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 UT=[["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"}]],Vg=Me("chart-column",UT);/** - * @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 KT=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],If=Me("check",KT);/** - * @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 qT=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],yd=Me("chevron-down",qT);/** - * @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 GT=[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]],JT=Me("chevron-left",GT);/** - * @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 YT=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],Ol=Me("chevron-right",YT);/** - * @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 QT=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],tj=Me("chevron-up",QT);/** - * @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 XT=[["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"}]],nj=Me("circle-alert",XT);/** - * @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 ZT=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]],Gv=Me("circle-check-big",ZT);/** - * @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=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],Hg=Me("circle-check",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:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]],sj=Me("circle-question-mark",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=[["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"}]],Vm=Me("circle-user",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 sM=[["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"}]],rj=Me("circle-x",sM);/** - * @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:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],Wg=Me("clock",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=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]],iM=Me("cloud",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=[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]],lM=Me("code",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=[["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"}]],n0=Me("copy",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=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2",key:"ynyp8z"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10",key:"1b3vmo"}]],Jv=Me("credit-card",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.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"}]],zl=Me("crown",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 hM=[["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"}]],Th=Me("dollar-sign",hM);/** - * @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:"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"}]],pM=Me("download",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=[["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"}]],qr=Me("external-link",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:"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"}]],Ug=Me("eye",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 xM=[["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"}]],aj=Me("file-text",xM);/** - * @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=[["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"}]],ij=Me("funnel",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 bM=[["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"}]],oj=Me("gift",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=[["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"}]],NM=Me("git-merge",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=[["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"}]],Kg=Me("globe",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 jM=[["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"}]],kM=Me("graduation-cap",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 SM=[["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"}]],pa=Me("grip-vertical",SM);/** - * @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:"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"}]],EM=Me("handshake",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=[["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"}]],Yv=Me("hash",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:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"m17 12 3-2v8",key:"1hhhft"}]],AM=Me("heading-1",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:"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"}]],RM=Me("heading-2",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:"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"}]],OM=Me("heading-3",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 DM=[["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"}]],LM=Me("house",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 _M=[["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"}]],lj=Me("image",_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 zM=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]],Hu=Me("info",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=[["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"}]],FM=Me("italic",$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 BM=[["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"}]],cj=Me("key",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=[["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"}]],HM=Me("layout-dashboard",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:"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"}]],kr=Me("link-2",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 UM=[["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"}]],qg=Me("link",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 KM=[["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"}]],qM=Me("list-ordered",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 GM=[["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"}]],JM=Me("list",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 YM=[["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"}]],QM=Me("lock",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 XM=[["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"}]],ZM=Me("log-out",XM);/** - * @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:"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"}]],dj=Me("map-pin",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=[["path",{d:"M4 5h16",key:"1tepv9"}],["path",{d:"M4 12h16",key:"1lakjw"}],["path",{d:"M4 19h16",key:"1djgab"}]],nA=Me("menu",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 sA=[["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"}]],rA=Me("message-circle",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 aA=[["path",{d:"M5 12h14",key:"1ays0h"}]],iA=Me("minus",aA);/** - * @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=[["polygon",{points:"3 11 22 2 13 21 11 13 3 11",key:"1ltx0t"}]],Dl=Me("navigation",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 lA=[["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"}]],cA=Me("palette",lA);/** - * @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 dA=[["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"}]],Vt=Me("pen-line",dA);/** - * @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:"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"}]],Gg=Me("pencil",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=[["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"}]],fA=Me("percent",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 pA=[["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"}]],mA=Me("phone",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 gA=[["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"}]],xA=Me("pin",gA);/** - * @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:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],pn=Me("plus",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=[["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"}]],Qv=Me("qr-code",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:"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"}]],NA=Me("quote",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 wA=[["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"}]],jA=Me("redo",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:"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"}]],We=Me("refresh-cw",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:"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"}]],vn=Me("save",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 CA=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],ka=Me("search",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 EA=[["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"}]],TA=Me("send",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 MA=[["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"}]],jo=Me("settings",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 AA=[["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"}]],Wu=Me("settings-2",AA);/** - * @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:"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"}]],nd=Me("shield-check",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 RA=[["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"}]],Jg=Me("shopping-bag",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 PA=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12 18h.01",key:"mhygvu"}]],Ti=Me("smartphone",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 OA=[["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"}]],Ll=Me("star",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 DA=[["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",DA);/** - * @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 _A=[["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"}]],zA=Me("table",_A);/** - * @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 $A=[["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"}]],sd=Me("tag",$A);/** - * @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:"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"}]],Jn=Me("trash-2",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 BA=[["path",{d:"M16 7h6v6",key:"box55l"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17",key:"1t1m79"}]],rd=Me("trending-up",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:"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"}]],Yg=Me("trophy",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 HA=[["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"}]],uj=Me("undo-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 WA=[["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"}]],UA=Me("undo",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:"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"}]],Mh=Me("upload",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 qA=[["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"}]],Qg=Me("user-plus",qA);/** - * @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 GA=[["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"}]],ko=Me("user",GA);/** - * @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 JA=[["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"}]],Rn=Me("users",JA);/** - * @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:"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"}]],Hl=Me("wallet",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 QA=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],is=Me("x",QA);/** - * @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:"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"}]],yi=Me("zap",XA),s0="admin_token";function Rf(){try{return localStorage.getItem(s0)}catch{return null}}function ZA(t){try{localStorage.setItem(s0,t)}catch{}}function Hm(){try{localStorage.removeItem(s0)}catch{}}const e5="https://soulapi.quwanzhi.com",t5=15e3,Xv=6e4,n5=()=>{const t="https://soulapi.quwanzhi.com";return t.length>0?t.replace(/\/$/,""):e5};function Ao(t){const e=n5(),n=t.startsWith("/")?t:`/${t}`;return e?`${e}${n}`:n}async function Pf(t,e={}){const{data:n,...s}=e,a=Ao(t),i=new Headers(s.headers),o=Rf();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):s.body,u=s.timeout??t5,h=new AbortController,f=setTimeout(()=>h.abort(),u),m=await fetch(a,{...s,headers:i,body:c,credentials:"include",signal:h.signal}).finally(()=>clearTimeout(f)),y=(m.headers.get("Content-Type")||"").includes("application/json")?await m.json():m,N=w=>{const v=w,k=((v==null?void 0:v.message)||(v==null?void 0:v.error)||"").toString();(k.includes("可提现金额不足")||k.includes("可提现不足")||k.includes("余额不足"))&&window.dispatchEvent(new CustomEvent("recharge-alert",{detail:k}))};if(!m.ok){N(y);const w=new Error((y==null?void 0:y.error)||`HTTP ${m.status}`);throw w.status=m.status,w.data=y,w}return N(y),y}function Re(t,e){return Pf(t,{...e,method:"GET"})}function yt(t,e,n){return Pf(t,{...n,method:"POST",data:e})}function _t(t,e,n){return Pf(t,{...n,method:"PUT",data:e})}function Hr(t,e){return Pf(t,{...e,method:"DELETE"})}function s5(){const[t,e]=b.useState(!1),[n,s]=b.useState("");return b.useEffect(()=>{const a=i=>{const o=i.detail;s(o||"可提现/余额不足,请及时充值商户号"),e(!0)};return window.addEventListener("recharge-alert",a),()=>window.removeEventListener("recharge-alert",a)},[]),t?r.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:[r.jsxs("div",{className:"flex items-center gap-3 min-w-0",children:[r.jsx(nj,{className:"w-5 h-5 shrink-0 text-red-400"}),r.jsxs("span",{className:"text-sm font-medium",children:[n,r.jsx("span",{className:"ml-2 text-red-300",children:"请及时充值商户号或核对账户后重试。"})]})]}),r.jsx("button",{type:"button",onClick:()=>e(!1),className:"shrink-0 p-1 rounded hover:bg-red-800/50 transition-colors","aria-label":"关闭告警",children:r.jsx(is,{className:"w-4 h-4"})})]}):null}const r5=[{icon:HM,label:"数据概览",href:"/dashboard"},{icon:Hs,label:"内容管理",href:"/content"},{icon:Rn,label:"用户管理",href:"/users"},{icon:NM,label:"找伙伴",href:"/find-partner"},{icon:Hl,label:"推广中心",href:"/distribution"}];function a5(){const t=Di(),e=Li(),[n,s]=b.useState(!1),[a,i]=b.useState(!1);b.useEffect(()=>{s(!0)},[]),b.useEffect(()=>{if(!n)return;i(!1);let c=!1;if(!Rf()){e("/login",{replace:!0});return}return Re("/api/admin").then(u=>{c||(u&&u.success!==!1?i(!0):(Hm(),e("/login",{replace:!0,state:{from:t.pathname}})))}).catch(()=>{c||(Hm(),e("/login",{replace:!0,state:{from:t.pathname}}))}),()=>{c=!0}},[t.pathname,n,e]);const o=async()=>{Hm();try{await yt("/api/admin/logout",{})}catch{}e("/login",{replace:!0})};return!n||!a?r.jsxs("div",{className:"flex min-h-screen bg-[#0a1628]",children:[r.jsx("div",{className:"w-64 bg-[#0f2137] border-r border-gray-700/50"}),r.jsx("div",{className:"flex-1 flex items-center justify-center",children:r.jsx("div",{className:"text-[#38bdac]",children:"加载中..."})})]}):r.jsxs("div",{className:"flex min-h-screen bg-[#0a1628]",children:[r.jsxs("div",{className:"w-64 bg-[#0f2137] flex flex-col border-r border-gray-700/50 shadow-xl",children:[r.jsxs("div",{className:"p-6 border-b border-gray-700/50",children:[r.jsx("h1",{className:"text-xl font-bold text-[#38bdac]",children:"管理后台"}),r.jsx("p",{className:"text-xs text-gray-400 mt-1",children:"Soul创业派对"})]}),r.jsxs("nav",{className:"flex-1 p-4 space-y-1 overflow-y-auto",children:[r5.map(c=>{const u=t.pathname===c.href;return r.jsxs(Bg,{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:[r.jsx(c.icon,{className:"w-5 h-5 shrink-0"}),r.jsx("span",{className:"text-sm",children:c.label})]},c.href)}),r.jsx("div",{className:"pt-4 mt-4 border-t border-gray-700/50",children:r.jsxs(Bg,{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:[r.jsx(jo,{className:"w-5 h-5 shrink-0"}),r.jsx("span",{className:"text-sm",children:"系统设置"})]})})]}),r.jsx("div",{className:"p-4 border-t border-gray-700/50 space-y-1",children:r.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:[r.jsx(ZM,{className:"w-5 h-5"}),r.jsx("span",{className:"text-sm",children:"退出登录"})]})})]}),r.jsxs("div",{className:"flex-1 overflow-auto bg-[#0a1628] min-w-0 flex flex-col",children:[r.jsx(s5,{}),r.jsx("div",{className:"w-full min-w-[1024px] min-h-full flex-1",children:r.jsx(vT,{})})]})]})}function Zv(t,e){if(typeof t=="function")return t(e);t!=null&&(t.current=e)}function r0(...t){return e=>{let n=!1;const s=t.map(a=>{const i=Zv(a,e);return!n&&typeof i=="function"&&(n=!0),i});if(n)return()=>{for(let a=0;a{let{children:i,...o}=s;hj(i)&&typeof Ah=="function"&&(i=Ah(i._payload));const c=b.Children.toArray(i),u=c.find(d5);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 r.jsx(e,{...o,ref:a,children:b.isValidElement(h)?b.cloneElement(h,void 0,f):null})}return r.jsx(e,{...o,ref:a,children:i})});return n.displayName=`${t}.Slot`,n}var pj=fj("Slot");function l5(t){const e=b.forwardRef((n,s)=>{let{children:a,...i}=n;if(hj(a)&&typeof Ah=="function"&&(a=Ah(a._payload)),b.isValidElement(a)){const o=h5(a),c=u5(i,a.props);return a.type!==b.Fragment&&(c.ref=s?r0(s,o):o),b.cloneElement(a,c)}return b.Children.count(a)>1?b.Children.only(null):null});return e.displayName=`${t}.SlotClone`,e}var c5=Symbol("radix.slottable");function d5(t){return b.isValidElement(t)&&typeof t.type=="function"&&"__radixId"in t.type&&t.type.__radixId===c5}function u5(t,e){const n={...e};for(const s in e){const a=t[s],i=e[s];/^on[A-Z]/.test(s)?a&&i?n[s]=(...c)=>{const u=i(...c);return a(...c),u}:a&&(n[s]=a):s==="style"?n[s]={...a,...i}:s==="className"&&(n[s]=[a,i].filter(Boolean).join(" "))}return{...t,...n}}function h5(t){var s,a;let e=(s=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:s.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 mj(t){var e,n,s="";if(typeof t=="string"||typeof t=="number")s+=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,t1=gj,xj=(t,e)=>n=>{var s;if((e==null?void 0:e.variants)==null)return t1(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 g=e1(f)||e1(m);return a[h][g]}),c=n&&Object.entries(n).reduce((h,f)=>{let[m,g]=f;return g===void 0||(h[m]=g),h},{}),u=e==null||(s=e.compoundVariants)===null||s===void 0?void 0:s.reduce((h,f)=>{let{class:m,className:g,...y}=f;return Object.entries(y).every(N=>{let[w,v]=N;return Array.isArray(v)?v.includes({...i,...c}[w]):{...i,...c}[w]===v})?[...h,m,g]:h},[]);return t1(t,o,u,n==null?void 0:n.class,n==null?void 0:n.className)},f5=(t,e)=>{const n=new Array(t.length+e.length);for(let s=0;s({classGroupId:t,validator:e}),yj=(t=new Map,e=null,n)=>({nextPart:t,validators:e,classGroupId:n}),Ih="-",n1=[],m5="arbitrary..",g5=t=>{const e=y5(t),{conflictingClassGroups:n,conflictingClassGroupModifiers:s}=t;return{getClassGroupId:o=>{if(o.startsWith("[")&&o.endsWith("]"))return x5(o);const c=o.split(Ih),u=c[0]===""&&c.length>1?1:0;return bj(c,u,e)},getConflictingClassGroupIds:(o,c)=>{if(c){const u=s[o],h=n[o];return u?h?f5(h,u):u:h||n1}return n[o]||n1}}},bj=(t,e,n)=>{if(t.length-e===0)return n.classGroupId;const a=t[e],i=n.nextPart.get(a);if(i){const h=bj(t,e+1,i);if(h)return h}const o=n.validators;if(o===null)return;const c=e===0?t.join(Ih):t.slice(e).join(Ih),u=o.length;for(let h=0;ht.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const e=t.slice(1,-1),n=e.indexOf(":"),s=e.slice(0,n);return s?m5+s:void 0})(),y5=t=>{const{theme:e,classGroups:n}=t;return b5(n,e)},b5=(t,e)=>{const n=yj();for(const s in t){const a=t[s];a0(a,n,s,e)}return n},a0=(t,e,n,s)=>{const a=t.length;for(let i=0;i{if(typeof t=="string"){N5(t,e,n);return}if(typeof t=="function"){w5(t,e,n,s);return}j5(t,e,n,s)},N5=(t,e,n)=>{const s=t===""?e:vj(e,t);s.classGroupId=n},w5=(t,e,n,s)=>{if(k5(t)){a0(t(s),e,n,s);return}e.validators===null&&(e.validators=[]),e.validators.push(p5(n,t))},j5=(t,e,n,s)=>{const a=Object.entries(t),i=a.length;for(let o=0;o{let n=t;const s=e.split(Ih),a=s.length;for(let i=0;i"isThemeGetter"in t&&t.isThemeGetter===!0,S5=t=>{if(t<1)return{get:()=>{},set:()=>{}};let e=0,n=Object.create(null),s=Object.create(null);const a=(i,o)=>{n[i]=o,e++,e>t&&(e=0,s=n,n=Object.create(null))};return{get(i){let o=n[i];if(o!==void 0)return o;if((o=s[i])!==void 0)return a(i,o),o},set(i,o){i in n?n[i]=o:a(i,o)}}},Xg="!",s1=":",C5=[],r1=(t,e,n,s,a)=>({modifiers:t,hasImportantModifier:e,baseClassName:n,maybePostfixModifierPosition:s,isExternal:a}),E5=t=>{const{prefix:e,experimentalParseClassName:n}=t;let s=a=>{const i=[];let o=0,c=0,u=0,h;const f=a.length;for(let w=0;wu?h-u:void 0;return r1(i,y,g,N)};if(e){const a=e+s1,i=s;s=o=>o.startsWith(a)?i(o.slice(a.length)):r1(C5,!1,o,void 0,!0)}if(n){const a=s;s=i=>n({className:i,parseClassName:a})}return s},T5=t=>{const e=new Map;return t.orderSensitiveModifiers.forEach((n,s)=>{e.set(n,1e6+s)}),n=>{const s=[];let a=[];for(let i=0;i0&&(a.sort(),s.push(...a),a=[]),s.push(o)):a.push(o)}return a.length>0&&(a.sort(),s.push(...a)),s}},M5=t=>({cache:S5(t.cacheSize),parseClassName:E5(t),sortModifiers:T5(t),...g5(t)}),A5=/\s+/,I5=(t,e)=>{const{parseClassName:n,getClassGroupId:s,getConflictingClassGroupIds:a,sortModifiers:i}=e,o=[],c=t.trim().split(A5);let u="";for(let h=c.length-1;h>=0;h-=1){const f=c[h],{isExternal:m,modifiers:g,hasImportantModifier:y,baseClassName:N,maybePostfixModifierPosition:w}=n(f);if(m){u=f+(u.length>0?" "+u:u);continue}let v=!!w,k=s(v?N.substring(0,w):N);if(!k){if(!v){u=f+(u.length>0?" "+u:u);continue}if(k=s(N),!k){u=f+(u.length>0?" "+u:u);continue}v=!1}const C=g.length===0?"":g.length===1?g[0]:i(g).join(":"),E=y?C+Xg:C,M=E+k;if(o.indexOf(M)>-1)continue;o.push(M);const P=a(k,v);for(let $=0;$0?" "+u:u)}return u},R5=(...t)=>{let e=0,n,s,a="";for(;e{if(typeof t=="string")return t;let e,n="";for(let s=0;s{let n,s,a,i;const o=u=>{const h=e.reduce((f,m)=>m(f),t());return n=M5(h),s=n.cache.get,a=n.cache.set,i=c,c(u)},c=u=>{const h=s(u);if(h)return h;const f=I5(u,n);return a(u,f),f};return i=o,(...u)=>i(R5(...u))},O5=[],An=t=>{const e=n=>n[t]||O5;return e.isThemeGetter=!0,e},wj=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,jj=/^\((?:(\w[\w-]*):)?(.+)\)$/i,D5=/^\d+\/\d+$/,L5=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,_5=/\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$/,z5=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,$5=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,F5=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,jl=t=>D5.test(t),ut=t=>!!t&&!Number.isNaN(Number(t)),ii=t=>!!t&&Number.isInteger(Number(t)),Wm=t=>t.endsWith("%")&&ut(t.slice(0,-1)),ma=t=>L5.test(t),B5=()=>!0,V5=t=>_5.test(t)&&!z5.test(t),kj=()=>!1,H5=t=>$5.test(t),W5=t=>F5.test(t),U5=t=>!$e(t)&&!Fe(t),K5=t=>ec(t,Ej,kj),$e=t=>wj.test(t),po=t=>ec(t,Tj,V5),Um=t=>ec(t,Q5,ut),a1=t=>ec(t,Sj,kj),q5=t=>ec(t,Cj,W5),Uu=t=>ec(t,Mj,H5),Fe=t=>jj.test(t),Wc=t=>tc(t,Tj),G5=t=>tc(t,X5),i1=t=>tc(t,Sj),J5=t=>tc(t,Ej),Y5=t=>tc(t,Cj),Ku=t=>tc(t,Mj,!0),ec=(t,e,n)=>{const s=wj.exec(t);return s?s[1]?e(s[1]):n(s[2]):!1},tc=(t,e,n=!1)=>{const s=jj.exec(t);return s?s[1]?e(s[1]):n:!1},Sj=t=>t==="position"||t==="percentage",Cj=t=>t==="image"||t==="url",Ej=t=>t==="length"||t==="size"||t==="bg-size",Tj=t=>t==="length",Q5=t=>t==="number",X5=t=>t==="family-name",Mj=t=>t==="shadow",Z5=()=>{const t=An("color"),e=An("font"),n=An("text"),s=An("font-weight"),a=An("tracking"),i=An("leading"),o=An("breakpoint"),c=An("container"),u=An("spacing"),h=An("radius"),f=An("shadow"),m=An("inset-shadow"),g=An("text-shadow"),y=An("drop-shadow"),N=An("blur"),w=An("perspective"),v=An("aspect"),k=An("ease"),C=An("animate"),E=()=>["auto","avoid","all","avoid-page","page","left","right","column"],M=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],P=()=>[...M(),Fe,$e],$=()=>["auto","hidden","clip","visible","scroll"],D=()=>["auto","contain","none"],R=()=>[Fe,$e,u],O=()=>[jl,"full","auto",...R()],_=()=>[ii,"none","subgrid",Fe,$e],se=()=>["auto",{span:["full",ii,Fe,$e]},ii,Fe,$e],ne=()=>[ii,"auto",Fe,$e],pe=()=>["auto","min","max","fr",Fe,$e],ge=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],z=()=>["start","end","center","stretch","center-safe","end-safe"],K=()=>["auto",...R()],U=()=>[jl,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...R()],I=()=>[t,Fe,$e],q=()=>[...M(),i1,a1,{position:[Fe,$e]}],F=()=>["no-repeat",{repeat:["","x","y","space","round"]}],L=()=>["auto","cover","contain",J5,K5,{size:[Fe,$e]}],W=()=>[Wm,Wc,po],oe=()=>["","none","full",h,Fe,$e],Q=()=>["",ut,Wc,po],X=()=>["solid","dashed","dotted","double"],V=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],re=()=>[ut,Wm,i1,a1],ue=()=>["","none",N,Fe,$e],ce=()=>["none",ut,Fe,$e],be=()=>["none",ut,Fe,$e],Pe=()=>[ut,Fe,$e],Le=()=>[jl,"full",...R()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[ma],breakpoint:[ma],color:[B5],container:[ma],"drop-shadow":[ma],ease:["in","out","in-out"],font:[U5],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[ma],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[ma],shadow:[ma],spacing:["px",ut],text:[ma],"text-shadow":[ma],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",jl,$e,Fe,v]}],container:["container"],columns:[{columns:[ut,$e,Fe,c]}],"break-after":[{"break-after":E()}],"break-before":[{"break-before":E()}],"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:P()}],overflow:[{overflow:$()}],"overflow-x":[{"overflow-x":$()}],"overflow-y":[{"overflow-y":$()}],overscroll:[{overscroll:D()}],"overscroll-x":[{"overscroll-x":D()}],"overscroll-y":[{"overscroll-y":D()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:O()}],"inset-x":[{"inset-x":O()}],"inset-y":[{"inset-y":O()}],start:[{start:O()}],end:[{end:O()}],top:[{top:O()}],right:[{right:O()}],bottom:[{bottom:O()}],left:[{left:O()}],visibility:["visible","invisible","collapse"],z:[{z:[ii,"auto",Fe,$e]}],basis:[{basis:[jl,"full","auto",c,...R()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[ut,jl,"auto","initial","none",$e]}],grow:[{grow:["",ut,Fe,$e]}],shrink:[{shrink:["",ut,Fe,$e]}],order:[{order:[ii,"first","last","none",Fe,$e]}],"grid-cols":[{"grid-cols":_()}],"col-start-end":[{col:se()}],"col-start":[{"col-start":ne()}],"col-end":[{"col-end":ne()}],"grid-rows":[{"grid-rows":_()}],"row-start-end":[{row:se()}],"row-start":[{"row-start":ne()}],"row-end":[{"row-end":ne()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":pe()}],"auto-rows":[{"auto-rows":pe()}],gap:[{gap:R()}],"gap-x":[{"gap-x":R()}],"gap-y":[{"gap-y":R()}],"justify-content":[{justify:[...ge(),"normal"]}],"justify-items":[{"justify-items":[...z(),"normal"]}],"justify-self":[{"justify-self":["auto",...z()]}],"align-content":[{content:["normal",...ge()]}],"align-items":[{items:[...z(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...z(),{baseline:["","last"]}]}],"place-content":[{"place-content":ge()}],"place-items":[{"place-items":[...z(),"baseline"]}],"place-self":[{"place-self":["auto",...z()]}],p:[{p:R()}],px:[{px:R()}],py:[{py:R()}],ps:[{ps:R()}],pe:[{pe:R()}],pt:[{pt:R()}],pr:[{pr:R()}],pb:[{pb:R()}],pl:[{pl:R()}],m:[{m:K()}],mx:[{mx:K()}],my:[{my:K()}],ms:[{ms:K()}],me:[{me:K()}],mt:[{mt:K()}],mr:[{mr:K()}],mb:[{mb:K()}],ml:[{ml:K()}],"space-x":[{"space-x":R()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":R()}],"space-y-reverse":["space-y-reverse"],size:[{size:U()}],w:[{w:[c,"screen",...U()]}],"min-w":[{"min-w":[c,"screen","none",...U()]}],"max-w":[{"max-w":[c,"screen","none","prose",{screen:[o]},...U()]}],h:[{h:["screen","lh",...U()]}],"min-h":[{"min-h":["screen","lh","none",...U()]}],"max-h":[{"max-h":["screen","lh",...U()]}],"font-size":[{text:["base",n,Wc,po]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[s,Fe,Um]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",Wm,$e]}],"font-family":[{font:[G5,$e,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,Fe,$e]}],"line-clamp":[{"line-clamp":[ut,"none",Fe,Um]}],leading:[{leading:[i,...R()]}],"list-image":[{"list-image":["none",Fe,$e]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",Fe,$e]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:I()}],"text-color":[{text:I()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...X(),"wavy"]}],"text-decoration-thickness":[{decoration:[ut,"from-font","auto",Fe,po]}],"text-decoration-color":[{decoration:I()}],"underline-offset":[{"underline-offset":[ut,"auto",Fe,$e]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:R()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",Fe,$e]}],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",Fe,$e]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:q()}],"bg-repeat":[{bg:F()}],"bg-size":[{bg:L()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},ii,Fe,$e],radial:["",Fe,$e],conic:[ii,Fe,$e]},Y5,q5]}],"bg-color":[{bg:I()}],"gradient-from-pos":[{from:W()}],"gradient-via-pos":[{via:W()}],"gradient-to-pos":[{to:W()}],"gradient-from":[{from:I()}],"gradient-via":[{via:I()}],"gradient-to":[{to:I()}],rounded:[{rounded:oe()}],"rounded-s":[{"rounded-s":oe()}],"rounded-e":[{"rounded-e":oe()}],"rounded-t":[{"rounded-t":oe()}],"rounded-r":[{"rounded-r":oe()}],"rounded-b":[{"rounded-b":oe()}],"rounded-l":[{"rounded-l":oe()}],"rounded-ss":[{"rounded-ss":oe()}],"rounded-se":[{"rounded-se":oe()}],"rounded-ee":[{"rounded-ee":oe()}],"rounded-es":[{"rounded-es":oe()}],"rounded-tl":[{"rounded-tl":oe()}],"rounded-tr":[{"rounded-tr":oe()}],"rounded-br":[{"rounded-br":oe()}],"rounded-bl":[{"rounded-bl":oe()}],"border-w":[{border:Q()}],"border-w-x":[{"border-x":Q()}],"border-w-y":[{"border-y":Q()}],"border-w-s":[{"border-s":Q()}],"border-w-e":[{"border-e":Q()}],"border-w-t":[{"border-t":Q()}],"border-w-r":[{"border-r":Q()}],"border-w-b":[{"border-b":Q()}],"border-w-l":[{"border-l":Q()}],"divide-x":[{"divide-x":Q()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":Q()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...X(),"hidden","none"]}],"divide-style":[{divide:[...X(),"hidden","none"]}],"border-color":[{border:I()}],"border-color-x":[{"border-x":I()}],"border-color-y":[{"border-y":I()}],"border-color-s":[{"border-s":I()}],"border-color-e":[{"border-e":I()}],"border-color-t":[{"border-t":I()}],"border-color-r":[{"border-r":I()}],"border-color-b":[{"border-b":I()}],"border-color-l":[{"border-l":I()}],"divide-color":[{divide:I()}],"outline-style":[{outline:[...X(),"none","hidden"]}],"outline-offset":[{"outline-offset":[ut,Fe,$e]}],"outline-w":[{outline:["",ut,Wc,po]}],"outline-color":[{outline:I()}],shadow:[{shadow:["","none",f,Ku,Uu]}],"shadow-color":[{shadow:I()}],"inset-shadow":[{"inset-shadow":["none",m,Ku,Uu]}],"inset-shadow-color":[{"inset-shadow":I()}],"ring-w":[{ring:Q()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:I()}],"ring-offset-w":[{"ring-offset":[ut,po]}],"ring-offset-color":[{"ring-offset":I()}],"inset-ring-w":[{"inset-ring":Q()}],"inset-ring-color":[{"inset-ring":I()}],"text-shadow":[{"text-shadow":["none",g,Ku,Uu]}],"text-shadow-color":[{"text-shadow":I()}],opacity:[{opacity:[ut,Fe,$e]}],"mix-blend":[{"mix-blend":[...V(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":V()}],"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":[ut]}],"mask-image-linear-from-pos":[{"mask-linear-from":re()}],"mask-image-linear-to-pos":[{"mask-linear-to":re()}],"mask-image-linear-from-color":[{"mask-linear-from":I()}],"mask-image-linear-to-color":[{"mask-linear-to":I()}],"mask-image-t-from-pos":[{"mask-t-from":re()}],"mask-image-t-to-pos":[{"mask-t-to":re()}],"mask-image-t-from-color":[{"mask-t-from":I()}],"mask-image-t-to-color":[{"mask-t-to":I()}],"mask-image-r-from-pos":[{"mask-r-from":re()}],"mask-image-r-to-pos":[{"mask-r-to":re()}],"mask-image-r-from-color":[{"mask-r-from":I()}],"mask-image-r-to-color":[{"mask-r-to":I()}],"mask-image-b-from-pos":[{"mask-b-from":re()}],"mask-image-b-to-pos":[{"mask-b-to":re()}],"mask-image-b-from-color":[{"mask-b-from":I()}],"mask-image-b-to-color":[{"mask-b-to":I()}],"mask-image-l-from-pos":[{"mask-l-from":re()}],"mask-image-l-to-pos":[{"mask-l-to":re()}],"mask-image-l-from-color":[{"mask-l-from":I()}],"mask-image-l-to-color":[{"mask-l-to":I()}],"mask-image-x-from-pos":[{"mask-x-from":re()}],"mask-image-x-to-pos":[{"mask-x-to":re()}],"mask-image-x-from-color":[{"mask-x-from":I()}],"mask-image-x-to-color":[{"mask-x-to":I()}],"mask-image-y-from-pos":[{"mask-y-from":re()}],"mask-image-y-to-pos":[{"mask-y-to":re()}],"mask-image-y-from-color":[{"mask-y-from":I()}],"mask-image-y-to-color":[{"mask-y-to":I()}],"mask-image-radial":[{"mask-radial":[Fe,$e]}],"mask-image-radial-from-pos":[{"mask-radial-from":re()}],"mask-image-radial-to-pos":[{"mask-radial-to":re()}],"mask-image-radial-from-color":[{"mask-radial-from":I()}],"mask-image-radial-to-color":[{"mask-radial-to":I()}],"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":M()}],"mask-image-conic-pos":[{"mask-conic":[ut]}],"mask-image-conic-from-pos":[{"mask-conic-from":re()}],"mask-image-conic-to-pos":[{"mask-conic-to":re()}],"mask-image-conic-from-color":[{"mask-conic-from":I()}],"mask-image-conic-to-color":[{"mask-conic-to":I()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:q()}],"mask-repeat":[{mask:F()}],"mask-size":[{mask:L()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",Fe,$e]}],filter:[{filter:["","none",Fe,$e]}],blur:[{blur:ue()}],brightness:[{brightness:[ut,Fe,$e]}],contrast:[{contrast:[ut,Fe,$e]}],"drop-shadow":[{"drop-shadow":["","none",y,Ku,Uu]}],"drop-shadow-color":[{"drop-shadow":I()}],grayscale:[{grayscale:["",ut,Fe,$e]}],"hue-rotate":[{"hue-rotate":[ut,Fe,$e]}],invert:[{invert:["",ut,Fe,$e]}],saturate:[{saturate:[ut,Fe,$e]}],sepia:[{sepia:["",ut,Fe,$e]}],"backdrop-filter":[{"backdrop-filter":["","none",Fe,$e]}],"backdrop-blur":[{"backdrop-blur":ue()}],"backdrop-brightness":[{"backdrop-brightness":[ut,Fe,$e]}],"backdrop-contrast":[{"backdrop-contrast":[ut,Fe,$e]}],"backdrop-grayscale":[{"backdrop-grayscale":["",ut,Fe,$e]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[ut,Fe,$e]}],"backdrop-invert":[{"backdrop-invert":["",ut,Fe,$e]}],"backdrop-opacity":[{"backdrop-opacity":[ut,Fe,$e]}],"backdrop-saturate":[{"backdrop-saturate":[ut,Fe,$e]}],"backdrop-sepia":[{"backdrop-sepia":["",ut,Fe,$e]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":R()}],"border-spacing-x":[{"border-spacing-x":R()}],"border-spacing-y":[{"border-spacing-y":R()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",Fe,$e]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[ut,"initial",Fe,$e]}],ease:[{ease:["linear","initial",k,Fe,$e]}],delay:[{delay:[ut,Fe,$e]}],animate:[{animate:["none",C,Fe,$e]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[w,Fe,$e]}],"perspective-origin":[{"perspective-origin":P()}],rotate:[{rotate:ce()}],"rotate-x":[{"rotate-x":ce()}],"rotate-y":[{"rotate-y":ce()}],"rotate-z":[{"rotate-z":ce()}],scale:[{scale:be()}],"scale-x":[{"scale-x":be()}],"scale-y":[{"scale-y":be()}],"scale-z":[{"scale-z":be()}],"scale-3d":["scale-3d"],skew:[{skew:Pe()}],"skew-x":[{"skew-x":Pe()}],"skew-y":[{"skew-y":Pe()}],transform:[{transform:[Fe,$e,"","none","gpu","cpu"]}],"transform-origin":[{origin:P()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:Le()}],"translate-x":[{"translate-x":Le()}],"translate-y":[{"translate-y":Le()}],"translate-z":[{"translate-z":Le()}],"translate-none":["translate-none"],accent:[{accent:I()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:I()}],"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",Fe,$e]}],"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":R()}],"scroll-mx":[{"scroll-mx":R()}],"scroll-my":[{"scroll-my":R()}],"scroll-ms":[{"scroll-ms":R()}],"scroll-me":[{"scroll-me":R()}],"scroll-mt":[{"scroll-mt":R()}],"scroll-mr":[{"scroll-mr":R()}],"scroll-mb":[{"scroll-mb":R()}],"scroll-ml":[{"scroll-ml":R()}],"scroll-p":[{"scroll-p":R()}],"scroll-px":[{"scroll-px":R()}],"scroll-py":[{"scroll-py":R()}],"scroll-ps":[{"scroll-ps":R()}],"scroll-pe":[{"scroll-pe":R()}],"scroll-pt":[{"scroll-pt":R()}],"scroll-pr":[{"scroll-pr":R()}],"scroll-pb":[{"scroll-pb":R()}],"scroll-pl":[{"scroll-pl":R()}],"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",Fe,$e]}],fill:[{fill:["none",...I()]}],"stroke-w":[{stroke:[ut,Wc,po,Um]}],stroke:[{stroke:["none",...I()]}],"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"]}},eI=P5(Z5);function Tt(...t){return eI(gj(t))}const tI=xj("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 Z({className:t,variant:e,size:n,asChild:s=!1,...a}){const i=s?pj:"button";return r.jsx(i,{"data-slot":"button",className:Tt(tI({variant:e,size:n,className:t})),...a})}function ie({className:t,type:e,...n}){return r.jsx("input",{type:e,"data-slot":"input",className:Tt("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 nI(){const t=Li(),[e,n]=b.useState(""),[s,a]=b.useState(""),[i,o]=b.useState(""),[c,u]=b.useState(!1),h=async()=>{o(""),u(!0);try{const f=await yt("/api/admin",{username:e.trim(),password:s});if((f==null?void 0:f.success)!==!1&&(f!=null&&f.token)){ZA(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 r.jsxs("div",{className:"min-h-screen bg-[#0a1628] flex items-center justify-center p-4",children:[r.jsxs("div",{className:"absolute inset-0 overflow-hidden",children:[r.jsx("div",{className:"absolute top-1/4 left-1/4 w-96 h-96 bg-[#38bdac]/5 rounded-full blur-3xl"}),r.jsx("div",{className:"absolute bottom-1/4 right-1/4 w-96 h-96 bg-blue-500/5 rounded-full blur-3xl"})]}),r.jsxs("div",{className:"w-full max-w-md relative z-10",children:[r.jsxs("div",{className:"text-center mb-8",children:[r.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:r.jsx(nd,{className:"w-8 h-8 text-[#38bdac]"})}),r.jsx("h1",{className:"text-2xl font-bold text-white mb-2",children:"管理后台"}),r.jsx("p",{className:"text-gray-400",children:"一场SOUL的创业实验场"})]}),r.jsxs("div",{className:"bg-[#0f2137] rounded-2xl p-8 shadow-xl border border-gray-700/50 backdrop-blur-xl",children:[r.jsx("h2",{className:"text-xl font-semibold text-white mb-6 text-center",children:"管理员登录"}),r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{children:[r.jsx("label",{className:"block text-gray-400 text-sm mb-2",children:"用户名"}),r.jsxs("div",{className:"relative",children:[r.jsx(ko,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-gray-500"}),r.jsx(ie,{type:"text",value:e,onChange:f=>n(f.target.value),placeholder:"请输入用户名",className:"pl-10 bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500 focus:border-[#38bdac]"})]})]}),r.jsxs("div",{children:[r.jsx("label",{className:"block text-gray-400 text-sm mb-2",children:"密码"}),r.jsxs("div",{className:"relative",children:[r.jsx(QM,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-gray-500"}),r.jsx(ie,{type:"password",value:s,onChange:f=>a(f.target.value),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&&r.jsx("div",{className:"bg-red-500/10 text-red-400 text-sm p-3 rounded-lg border border-red-500/20",children:i}),r.jsx(Z,{onClick:h,disabled:c,className:"w-full bg-[#38bdac] hover:bg-[#2da396] text-white py-5 disabled:opacity-50",children:c?"登录中...":"登录"})]})]}),r.jsx("p",{className:"text-center text-gray-500 text-xs mt-6",children:"Soul创业实验场 · 后台管理系统"})]})]})}const Ce=b.forwardRef(({className:t,...e},n)=>r.jsx("div",{ref:n,className:Tt("rounded-xl border bg-card text-card-foreground shadow",t),...e}));Ce.displayName="Card";const Je=b.forwardRef(({className:t,...e},n)=>r.jsx("div",{ref:n,className:Tt("flex flex-col space-y-1.5 p-6",t),...e}));Je.displayName="CardHeader";const Ye=b.forwardRef(({className:t,...e},n)=>r.jsx("h3",{ref:n,className:Tt("font-semibold leading-none tracking-tight",t),...e}));Ye.displayName="CardTitle";const Dt=b.forwardRef(({className:t,...e},n)=>r.jsx("p",{ref:n,className:Tt("text-sm text-muted-foreground",t),...e}));Dt.displayName="CardDescription";const Ee=b.forwardRef(({className:t,...e},n)=>r.jsx("div",{ref:n,className:Tt("p-6 pt-0",t),...e}));Ee.displayName="CardContent";const sI=b.forwardRef(({className:t,...e},n)=>r.jsx("div",{ref:n,className:Tt("flex items-center p-6 pt-0",t),...e}));sI.displayName="CardFooter";const rI={success:{bg:"#f0fdf4",border:"#22c55e",icon:"✓"},error:{bg:"#fef2f2",border:"#ef4444",icon:"✕"},info:{bg:"#eff6ff",border:"#3b82f6",icon:"ℹ"}};function Km(t,e="info",n=3e3){const s=`toast-${Date.now()}`,a=rI[e],i=document.createElement("div");i.id=s,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(s),n);function h(f){clearTimeout(u);const m=document.getElementById(f);m&&(m.style.opacity="0",m.style.transform="translateY(-8px)",setTimeout(()=>{var g;return(g=m.parentNode)==null?void 0:g.removeChild(m)},250))}}const ae={success:(t,e)=>Km(t,"success",e),error:(t,e)=>Km(t,"error",e),info:(t,e)=>Km(t,"info",e)};function ot(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 aI(t,e){const n=b.createContext(e),s=i=>{const{children:o,...c}=i,u=b.useMemo(()=>c,Object.values(c));return r.jsx(n.Provider,{value:u,children:o})};s.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[s,a]}function _i(t,e=[]){let n=[];function s(i,o){const c=b.createContext(o),u=n.length;n=[...n,o];const h=m=>{var k;const{scope:g,children:y,...N}=m,w=((k=g==null?void 0:g[t])==null?void 0:k[u])||c,v=b.useMemo(()=>N,Object.values(N));return r.jsx(w.Provider,{value:v,children:y})};h.displayName=i+"Provider";function f(m,g){var w;const y=((w=g==null?void 0:g[t])==null?void 0:w[u])||c,N=b.useContext(y);if(N)return N;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,[s,iI(a,...e)]}function iI(...t){const e=t[0];if(t.length===1)return e;const n=()=>{const s=t.map(a=>({useScope:a(),scopeName:a.scopeName}));return function(i){const o=s.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 ls=globalThis!=null&&globalThis.document?b.useLayoutEffect:()=>{},oI=Mf[" useId ".trim().toString()]||(()=>{}),lI=0;function ji(t){const[e,n]=b.useState(oI());return ls(()=>{n(s=>s??String(lI++))},[t]),e?`radix-${e}`:""}var cI=Mf[" useInsertionEffect ".trim().toString()]||ls;function Io({prop:t,defaultProp:e,onChange:n=()=>{},caller:s}){const[a,i,o]=dI({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(`${s} 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,s])}const h=b.useCallback(f=>{var m;if(c){const g=uI(f)?f(t):f;g!==t&&((m=o.current)==null||m.call(o,g))}else i(f)},[c,t,i,o]);return[u,h]}function dI({defaultProp:t,onChange:e}){const[n,s]=b.useState(t),a=b.useRef(n),i=b.useRef(e);return cI(()=>{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,s,i]}function uI(t){return typeof t=="function"}function bd(t){const e=hI(t),n=b.forwardRef((s,a)=>{const{children:i,...o}=s,c=b.Children.toArray(i),u=c.find(pI);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 r.jsx(e,{...o,ref:a,children:b.isValidElement(h)?b.cloneElement(h,void 0,f):null})}return r.jsx(e,{...o,ref:a,children:i})});return n.displayName=`${t}.Slot`,n}function hI(t){const e=b.forwardRef((n,s)=>{const{children:a,...i}=n;if(b.isValidElement(a)){const o=gI(a),c=mI(i,a.props);return a.type!==b.Fragment&&(c.ref=s?r0(s,o):o),b.cloneElement(a,c)}return b.Children.count(a)>1?b.Children.only(null):null});return e.displayName=`${t}.SlotClone`,e}var fI=Symbol("radix.slottable");function pI(t){return b.isValidElement(t)&&typeof t.type=="function"&&"__radixId"in t.type&&t.type.__radixId===fI}function mI(t,e){const n={...e};for(const s in e){const a=t[s],i=e[s];/^on[A-Z]/.test(s)?a&&i?n[s]=(...c)=>{const u=i(...c);return a(...c),u}:a&&(n[s]=a):s==="style"?n[s]={...a,...i}:s==="className"&&(n[s]=[a,i].filter(Boolean).join(" "))}return{...t,...n}}function gI(t){var s,a;let e=(s=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:s.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 xI=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],ht=xI.reduce((t,e)=>{const n=bd(`Primitive.${e}`),s=b.forwardRef((a,i)=>{const{asChild:o,...c}=a,u=o?n:e;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),r.jsx(u,{...c,ref:i})});return s.displayName=`Primitive.${e}`,{...t,[e]:s}},{});function yI(t,e){t&&Dd.flushSync(()=>t.dispatchEvent(e))}function Mi(t){const e=b.useRef(t);return b.useEffect(()=>{e.current=t}),b.useMemo(()=>(...n)=>{var s;return(s=e.current)==null?void 0:s.call(e,...n)},[])}function bI(t,e=globalThis==null?void 0:globalThis.document){const n=Mi(t);b.useEffect(()=>{const s=a=>{a.key==="Escape"&&n(a)};return e.addEventListener("keydown",s,{capture:!0}),()=>e.removeEventListener("keydown",s,{capture:!0})},[n,e])}var vI="DismissableLayer",Zg="dismissableLayer.update",NI="dismissableLayer.pointerDownOutside",wI="dismissableLayer.focusOutside",o1,Aj=b.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),i0=b.forwardRef((t,e)=>{const{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:s,onPointerDownOutside:a,onFocusOutside:i,onInteractOutside:o,onDismiss:c,...u}=t,h=b.useContext(Aj),[f,m]=b.useState(null),g=(f==null?void 0:f.ownerDocument)??(globalThis==null?void 0:globalThis.document),[,y]=b.useState({}),N=Et(e,D=>m(D)),w=Array.from(h.layers),[v]=[...h.layersWithOutsidePointerEventsDisabled].slice(-1),k=w.indexOf(v),C=f?w.indexOf(f):-1,E=h.layersWithOutsidePointerEventsDisabled.size>0,M=C>=k,P=SI(D=>{const R=D.target,O=[...h.branches].some(_=>_.contains(R));!M||O||(a==null||a(D),o==null||o(D),D.defaultPrevented||c==null||c())},g),$=CI(D=>{const R=D.target;[...h.branches].some(_=>_.contains(R))||(i==null||i(D),o==null||o(D),D.defaultPrevented||c==null||c())},g);return bI(D=>{C===h.layers.size-1&&(s==null||s(D),!D.defaultPrevented&&c&&(D.preventDefault(),c()))},g),b.useEffect(()=>{if(f)return n&&(h.layersWithOutsidePointerEventsDisabled.size===0&&(o1=g.body.style.pointerEvents,g.body.style.pointerEvents="none"),h.layersWithOutsidePointerEventsDisabled.add(f)),h.layers.add(f),l1(),()=>{n&&h.layersWithOutsidePointerEventsDisabled.size===1&&(g.body.style.pointerEvents=o1)}},[f,g,n,h]),b.useEffect(()=>()=>{f&&(h.layers.delete(f),h.layersWithOutsidePointerEventsDisabled.delete(f),l1())},[f,h]),b.useEffect(()=>{const D=()=>y({});return document.addEventListener(Zg,D),()=>document.removeEventListener(Zg,D)},[]),r.jsx(ht.div,{...u,ref:N,style:{pointerEvents:E?M?"auto":"none":void 0,...t.style},onFocusCapture:ot(t.onFocusCapture,$.onFocusCapture),onBlurCapture:ot(t.onBlurCapture,$.onBlurCapture),onPointerDownCapture:ot(t.onPointerDownCapture,P.onPointerDownCapture)})});i0.displayName=vI;var jI="DismissableLayerBranch",kI=b.forwardRef((t,e)=>{const n=b.useContext(Aj),s=b.useRef(null),a=Et(e,s);return b.useEffect(()=>{const i=s.current;if(i)return n.branches.add(i),()=>{n.branches.delete(i)}},[n.branches]),r.jsx(ht.div,{...t,ref:a})});kI.displayName=jI;function SI(t,e=globalThis==null?void 0:globalThis.document){const n=Mi(t),s=b.useRef(!1),a=b.useRef(()=>{});return b.useEffect(()=>{const i=c=>{if(c.target&&!s.current){let u=function(){Ij(NI,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);s.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:()=>s.current=!0}}function CI(t,e=globalThis==null?void 0:globalThis.document){const n=Mi(t),s=b.useRef(!1);return b.useEffect(()=>{const a=i=>{i.target&&!s.current&&Ij(wI,n,{originalEvent:i},{discrete:!1})};return e.addEventListener("focusin",a),()=>e.removeEventListener("focusin",a)},[e,n]),{onFocusCapture:()=>s.current=!0,onBlurCapture:()=>s.current=!1}}function l1(){const t=new CustomEvent(Zg);document.dispatchEvent(t)}function Ij(t,e,n,{discrete:s}){const a=n.originalEvent.target,i=new CustomEvent(t,{bubbles:!1,cancelable:!0,detail:n});e&&a.addEventListener(t,e,{once:!0}),s?yI(a,i):a.dispatchEvent(i)}var qm="focusScope.autoFocusOnMount",Gm="focusScope.autoFocusOnUnmount",c1={bubbles:!1,cancelable:!0},EI="FocusScope",o0=b.forwardRef((t,e)=>{const{loop:n=!1,trapped:s=!1,onMountAutoFocus:a,onUnmountAutoFocus:i,...o}=t,[c,u]=b.useState(null),h=Mi(a),f=Mi(i),m=b.useRef(null),g=Et(e,w=>u(w)),y=b.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;b.useEffect(()=>{if(s){let w=function(E){if(y.paused||!c)return;const M=E.target;c.contains(M)?m.current=M:ci(m.current,{select:!0})},v=function(E){if(y.paused||!c)return;const M=E.relatedTarget;M!==null&&(c.contains(M)||ci(m.current,{select:!0}))},k=function(E){if(document.activeElement===document.body)for(const P of E)P.removedNodes.length>0&&ci(c)};document.addEventListener("focusin",w),document.addEventListener("focusout",v);const C=new MutationObserver(k);return c&&C.observe(c,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",w),document.removeEventListener("focusout",v),C.disconnect()}}},[s,c,y.paused]),b.useEffect(()=>{if(c){u1.add(y);const w=document.activeElement;if(!c.contains(w)){const k=new CustomEvent(qm,c1);c.addEventListener(qm,h),c.dispatchEvent(k),k.defaultPrevented||(TI(PI(Rj(c)),{select:!0}),document.activeElement===w&&ci(c))}return()=>{c.removeEventListener(qm,h),setTimeout(()=>{const k=new CustomEvent(Gm,c1);c.addEventListener(Gm,f),c.dispatchEvent(k),k.defaultPrevented||ci(w??document.body,{select:!0}),c.removeEventListener(Gm,f),u1.remove(y)},0)}}},[c,h,f,y]);const N=b.useCallback(w=>{if(!n&&!s||y.paused)return;const v=w.key==="Tab"&&!w.altKey&&!w.ctrlKey&&!w.metaKey,k=document.activeElement;if(v&&k){const C=w.currentTarget,[E,M]=MI(C);E&&M?!w.shiftKey&&k===M?(w.preventDefault(),n&&ci(E,{select:!0})):w.shiftKey&&k===E&&(w.preventDefault(),n&&ci(M,{select:!0})):k===C&&w.preventDefault()}},[n,s,y.paused]);return r.jsx(ht.div,{tabIndex:-1,...o,ref:g,onKeyDown:N})});o0.displayName=EI;function TI(t,{select:e=!1}={}){const n=document.activeElement;for(const s of t)if(ci(s,{select:e}),document.activeElement!==n)return}function MI(t){const e=Rj(t),n=d1(e,t),s=d1(e.reverse(),t);return[n,s]}function Rj(t){const e=[],n=document.createTreeWalker(t,NodeFilter.SHOW_ELEMENT,{acceptNode:s=>{const a=s.tagName==="INPUT"&&s.type==="hidden";return s.disabled||s.hidden||a?NodeFilter.FILTER_SKIP:s.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)e.push(n.currentNode);return e}function d1(t,e){for(const n of t)if(!AI(n,{upTo:e}))return n}function AI(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 II(t){return t instanceof HTMLInputElement&&"select"in t}function ci(t,{select:e=!1}={}){if(t&&t.focus){const n=document.activeElement;t.focus({preventScroll:!0}),t!==n&&II(t)&&e&&t.select()}}var u1=RI();function RI(){let t=[];return{add(e){const n=t[0];e!==n&&(n==null||n.pause()),t=h1(t,e),t.unshift(e)},remove(e){var n;t=h1(t,e),(n=t[0])==null||n.resume()}}}function h1(t,e){const n=[...t],s=n.indexOf(e);return s!==-1&&n.splice(s,1),n}function PI(t){return t.filter(e=>e.tagName!=="A")}var OI="Portal",l0=b.forwardRef((t,e)=>{var c;const{container:n,...s}=t,[a,i]=b.useState(!1);ls(()=>i(!0),[]);const o=n||a&&((c=globalThis==null?void 0:globalThis.document)==null?void 0:c.body);return o?Hw.createPortal(r.jsx(ht.div,{...s,ref:e}),o):null});l0.displayName=OI;function DI(t,e){return b.useReducer((n,s)=>e[n][s]??n,t)}var Ld=t=>{const{present:e,children:n}=t,s=LI(e),a=typeof n=="function"?n({present:s.isPresent}):b.Children.only(n),i=Et(s.ref,_I(a));return typeof n=="function"||s.isPresent?b.cloneElement(a,{ref:i}):null};Ld.displayName="Presence";function LI(t){const[e,n]=b.useState(),s=b.useRef(null),a=b.useRef(t),i=b.useRef("none"),o=t?"mounted":"unmounted",[c,u]=DI(o,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return b.useEffect(()=>{const h=qu(s.current);i.current=c==="mounted"?h:"none"},[c]),ls(()=>{const h=s.current,f=a.current;if(f!==t){const g=i.current,y=qu(h);t?u("MOUNT"):y==="none"||(h==null?void 0:h.display)==="none"?u("UNMOUNT"):u(f&&g!==y?"ANIMATION_OUT":"UNMOUNT"),a.current=t}},[t,u]),ls(()=>{if(e){let h;const f=e.ownerDocument.defaultView??window,m=y=>{const w=qu(s.current).includes(CSS.escape(y.animationName));if(y.target===e&&w&&(u("ANIMATION_END"),!a.current)){const v=e.style.animationFillMode;e.style.animationFillMode="forwards",h=f.setTimeout(()=>{e.style.animationFillMode==="forwards"&&(e.style.animationFillMode=v)})}},g=y=>{y.target===e&&(i.current=qu(s.current))};return e.addEventListener("animationstart",g),e.addEventListener("animationcancel",m),e.addEventListener("animationend",m),()=>{f.clearTimeout(h),e.removeEventListener("animationstart",g),e.removeEventListener("animationcancel",m),e.removeEventListener("animationend",m)}}else u("ANIMATION_END")},[e,u]),{isPresent:["mounted","unmountSuspended"].includes(c),ref:b.useCallback(h=>{s.current=h?getComputedStyle(h):null,n(h)},[])}}function qu(t){return(t==null?void 0:t.animationName)||"none"}function _I(t){var s,a;let e=(s=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:s.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 Jm=0;function Pj(){b.useEffect(()=>{const t=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",t[0]??f1()),document.body.insertAdjacentElement("beforeend",t[1]??f1()),Jm++,()=>{Jm===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(e=>e.remove()),Jm--}},[])}function f1(){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 Wr=function(){return Wr=Object.assign||function(e){for(var n,s=1,a=arguments.length;s"u")return eR;var e=tR(t),n=document.documentElement.clientWidth,s=window.innerWidth;return{left:e[0],top:e[1],right:e[2],gap:Math.max(0,s-n+e[2]-e[0])}},sR=_j(),$l="data-scroll-locked",rR=function(t,e,n,s){var a=t.left,i=t.top,o=t.right,c=t.gap;return n===void 0&&(n="margin"),` - .`.concat($I,` { - overflow: hidden `).concat(s,`; - padding-right: `).concat(c,"px ").concat(s,`; - } - body[`).concat($l,`] { - overflow: hidden `).concat(s,`; - overscroll-behavior: contain; - `).concat([e&&"position: relative ".concat(s,";"),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(s,`; - `),n==="padding"&&"padding-right: ".concat(c,"px ").concat(s,";")].filter(Boolean).join(""),` - } - - .`).concat(gh,` { - right: `).concat(c,"px ").concat(s,`; - } - - .`).concat(xh,` { - margin-right: `).concat(c,"px ").concat(s,`; - } - - .`).concat(gh," .").concat(gh,` { - right: 0 `).concat(s,`; - } - - .`).concat(xh," .").concat(xh,` { - margin-right: 0 `).concat(s,`; - } - - body[`).concat($l,`] { - `).concat(FI,": ").concat(c,`px; - } -`)},m1=function(){var t=parseInt(document.body.getAttribute($l)||"0",10);return isFinite(t)?t:0},aR=function(){b.useEffect(function(){return document.body.setAttribute($l,(m1()+1).toString()),function(){var t=m1()-1;t<=0?document.body.removeAttribute($l):document.body.setAttribute($l,t.toString())}},[])},iR=function(t){var e=t.noRelative,n=t.noImportant,s=t.gapMode,a=s===void 0?"margin":s;aR();var i=b.useMemo(function(){return nR(a)},[a]);return b.createElement(sR,{styles:rR(i,!e,a,n?"":"!important")})},ex=!1;if(typeof window<"u")try{var Gu=Object.defineProperty({},"passive",{get:function(){return ex=!0,!0}});window.addEventListener("test",Gu,Gu),window.removeEventListener("test",Gu,Gu)}catch{ex=!1}var kl=ex?{passive:!1}:!1,oR=function(t){return t.tagName==="TEXTAREA"},zj=function(t,e){if(!(t instanceof Element))return!1;var n=window.getComputedStyle(t);return n[e]!=="hidden"&&!(n.overflowY===n.overflowX&&!oR(t)&&n[e]==="visible")},lR=function(t){return zj(t,"overflowY")},cR=function(t){return zj(t,"overflowX")},g1=function(t,e){var n=e.ownerDocument,s=e;do{typeof ShadowRoot<"u"&&s instanceof ShadowRoot&&(s=s.host);var a=$j(t,s);if(a){var i=Fj(t,s),o=i[1],c=i[2];if(o>c)return!0}s=s.parentNode}while(s&&s!==n.body);return!1},dR=function(t){var e=t.scrollTop,n=t.scrollHeight,s=t.clientHeight;return[e,n,s]},uR=function(t){var e=t.scrollLeft,n=t.scrollWidth,s=t.clientWidth;return[e,n,s]},$j=function(t,e){return t==="v"?lR(e):cR(e)},Fj=function(t,e){return t==="v"?dR(e):uR(e)},hR=function(t,e){return t==="h"&&e==="rtl"?-1:1},fR=function(t,e,n,s,a){var i=hR(t,window.getComputedStyle(e).direction),o=i*s,c=n.target,u=e.contains(c),h=!1,f=o>0,m=0,g=0;do{if(!c)break;var y=Fj(t,c),N=y[0],w=y[1],v=y[2],k=w-v-i*N;(N||k)&&$j(t,c)&&(m+=k,g+=N);var C=c.parentNode;c=C&&C.nodeType===Node.DOCUMENT_FRAGMENT_NODE?C.host:C}while(!u&&c!==document.body||u&&(e.contains(c)||e===c));return(f&&Math.abs(m)<1||!f&&Math.abs(g)<1)&&(h=!0),h},Ju=function(t){return"changedTouches"in t?[t.changedTouches[0].clientX,t.changedTouches[0].clientY]:[0,0]},x1=function(t){return[t.deltaX,t.deltaY]},y1=function(t){return t&&"current"in t?t.current:t},pR=function(t,e){return t[0]===e[0]&&t[1]===e[1]},mR=function(t){return` - .block-interactivity-`.concat(t,` {pointer-events: none;} - .allow-interactivity-`).concat(t,` {pointer-events: all;} -`)},gR=0,Sl=[];function xR(t){var e=b.useRef([]),n=b.useRef([0,0]),s=b.useRef(),a=b.useState(gR++)[0],i=b.useState(_j)[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 w=zI([t.lockRef.current],(t.shards||[]).map(y1),!0).filter(Boolean);return w.forEach(function(v){return v.classList.add("allow-interactivity-".concat(a))}),function(){document.body.classList.remove("block-interactivity-".concat(a)),w.forEach(function(v){return v.classList.remove("allow-interactivity-".concat(a))})}}},[t.inert,t.lockRef.current,t.shards]);var c=b.useCallback(function(w,v){if("touches"in w&&w.touches.length===2||w.type==="wheel"&&w.ctrlKey)return!o.current.allowPinchZoom;var k=Ju(w),C=n.current,E="deltaX"in w?w.deltaX:C[0]-k[0],M="deltaY"in w?w.deltaY:C[1]-k[1],P,$=w.target,D=Math.abs(E)>Math.abs(M)?"h":"v";if("touches"in w&&D==="h"&&$.type==="range")return!1;var R=window.getSelection(),O=R&&R.anchorNode,_=O?O===$||O.contains($):!1;if(_)return!1;var se=g1(D,$);if(!se)return!0;if(se?P=D:(P=D==="v"?"h":"v",se=g1(D,$)),!se)return!1;if(!s.current&&"changedTouches"in w&&(E||M)&&(s.current=P),!P)return!0;var ne=s.current||P;return fR(ne,v,w,ne==="h"?E:M)},[]),u=b.useCallback(function(w){var v=w;if(!(!Sl.length||Sl[Sl.length-1]!==i)){var k="deltaY"in v?x1(v):Ju(v),C=e.current.filter(function(P){return P.name===v.type&&(P.target===v.target||v.target===P.shadowParent)&&pR(P.delta,k)})[0];if(C&&C.should){v.cancelable&&v.preventDefault();return}if(!C){var E=(o.current.shards||[]).map(y1).filter(Boolean).filter(function(P){return P.contains(v.target)}),M=E.length>0?c(v,E[0]):!o.current.noIsolation;M&&v.cancelable&&v.preventDefault()}}},[]),h=b.useCallback(function(w,v,k,C){var E={name:w,delta:v,target:k,should:C,shadowParent:yR(k)};e.current.push(E),setTimeout(function(){e.current=e.current.filter(function(M){return M!==E})},1)},[]),f=b.useCallback(function(w){n.current=Ju(w),s.current=void 0},[]),m=b.useCallback(function(w){h(w.type,x1(w),w.target,c(w,t.lockRef.current))},[]),g=b.useCallback(function(w){h(w.type,Ju(w),w.target,c(w,t.lockRef.current))},[]);b.useEffect(function(){return Sl.push(i),t.setCallbacks({onScrollCapture:m,onWheelCapture:m,onTouchMoveCapture:g}),document.addEventListener("wheel",u,kl),document.addEventListener("touchmove",u,kl),document.addEventListener("touchstart",f,kl),function(){Sl=Sl.filter(function(w){return w!==i}),document.removeEventListener("wheel",u,kl),document.removeEventListener("touchmove",u,kl),document.removeEventListener("touchstart",f,kl)}},[]);var y=t.removeScrollBar,N=t.inert;return b.createElement(b.Fragment,null,N?b.createElement(i,{styles:mR(a)}):null,y?b.createElement(iR,{noRelative:t.noRelative,gapMode:t.gapMode}):null)}function yR(t){for(var e=null;t!==null;)t instanceof ShadowRoot&&(e=t.host,t=t.host),t=t.parentNode;return e}const bR=qI(Lj,xR);var c0=b.forwardRef(function(t,e){return b.createElement(Of,Wr({},t,{ref:e,sideCar:bR}))});c0.classNames=Of.classNames;var vR=function(t){if(typeof document>"u")return null;var e=Array.isArray(t)?t[0]:t;return e.ownerDocument.body},Cl=new WeakMap,Yu=new WeakMap,Qu={},Zm=0,Bj=function(t){return t&&(t.host||Bj(t.parentNode))},NR=function(t,e){return e.map(function(n){if(t.contains(n))return n;var s=Bj(n);return s&&t.contains(s)?s:(console.error("aria-hidden",n,"in not contained inside",t,". Doing nothing"),null)}).filter(function(n){return!!n})},wR=function(t,e,n,s){var a=NR(e,Array.isArray(t)?t:[t]);Qu[n]||(Qu[n]=new WeakMap);var i=Qu[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(g){if(c.has(g))f(g);else try{var y=g.getAttribute(s),N=y!==null&&y!=="false",w=(Cl.get(g)||0)+1,v=(i.get(g)||0)+1;Cl.set(g,w),i.set(g,v),o.push(g),w===1&&N&&Yu.set(g,!0),v===1&&g.setAttribute(n,"true"),N||g.setAttribute(s,"true")}catch(k){console.error("aria-hidden: cannot operate on ",g,k)}})};return f(e),c.clear(),Zm++,function(){o.forEach(function(m){var g=Cl.get(m)-1,y=i.get(m)-1;Cl.set(m,g),i.set(m,y),g||(Yu.has(m)||m.removeAttribute(s),Yu.delete(m)),y||m.removeAttribute(n)}),Zm--,Zm||(Cl=new WeakMap,Cl=new WeakMap,Yu=new WeakMap,Qu={})}},Vj=function(t,e,n){n===void 0&&(n="data-aria-hidden");var s=Array.from(Array.isArray(t)?t:[t]),a=vR(t);return a?(s.push.apply(s,Array.from(a.querySelectorAll("[aria-live], script"))),wR(s,a,n,"aria-hidden")):function(){return null}},Df="Dialog",[Hj]=_i(Df),[jR,Er]=Hj(Df),Wj=t=>{const{__scopeDialog:e,children:n,open:s,defaultOpen:a,onOpenChange:i,modal:o=!0}=t,c=b.useRef(null),u=b.useRef(null),[h,f]=Io({prop:s,defaultProp:a??!1,onChange:i,caller:Df});return r.jsx(jR,{scope:e,triggerRef:c,contentRef:u,contentId:ji(),titleId:ji(),descriptionId:ji(),open:h,onOpenChange:f,onOpenToggle:b.useCallback(()=>f(m=>!m),[f]),modal:o,children:n})};Wj.displayName=Df;var Uj="DialogTrigger",kR=b.forwardRef((t,e)=>{const{__scopeDialog:n,...s}=t,a=Er(Uj,n),i=Et(e,a.triggerRef);return r.jsx(ht.button,{type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":h0(a.open),...s,ref:i,onClick:ot(t.onClick,a.onOpenToggle)})});kR.displayName=Uj;var d0="DialogPortal",[SR,Kj]=Hj(d0,{forceMount:void 0}),qj=t=>{const{__scopeDialog:e,forceMount:n,children:s,container:a}=t,i=Er(d0,e);return r.jsx(SR,{scope:e,forceMount:n,children:b.Children.map(s,o=>r.jsx(Ld,{present:n||i.open,children:r.jsx(l0,{asChild:!0,container:a,children:o})}))})};qj.displayName=d0;var Rh="DialogOverlay",Gj=b.forwardRef((t,e)=>{const n=Kj(Rh,t.__scopeDialog),{forceMount:s=n.forceMount,...a}=t,i=Er(Rh,t.__scopeDialog);return i.modal?r.jsx(Ld,{present:s||i.open,children:r.jsx(ER,{...a,ref:e})}):null});Gj.displayName=Rh;var CR=bd("DialogOverlay.RemoveScroll"),ER=b.forwardRef((t,e)=>{const{__scopeDialog:n,...s}=t,a=Er(Rh,n);return r.jsx(c0,{as:CR,allowPinchZoom:!0,shards:[a.contentRef],children:r.jsx(ht.div,{"data-state":h0(a.open),...s,ref:e,style:{pointerEvents:"auto",...s.style}})})}),Ro="DialogContent",Jj=b.forwardRef((t,e)=>{const n=Kj(Ro,t.__scopeDialog),{forceMount:s=n.forceMount,...a}=t,i=Er(Ro,t.__scopeDialog);return r.jsx(Ld,{present:s||i.open,children:i.modal?r.jsx(TR,{...a,ref:e}):r.jsx(MR,{...a,ref:e})})});Jj.displayName=Ro;var TR=b.forwardRef((t,e)=>{const n=Er(Ro,t.__scopeDialog),s=b.useRef(null),a=Et(e,n.contentRef,s);return b.useEffect(()=>{const i=s.current;if(i)return Vj(i)},[]),r.jsx(Yj,{...t,ref:a,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:ot(t.onCloseAutoFocus,i=>{var o;i.preventDefault(),(o=n.triggerRef.current)==null||o.focus()}),onPointerDownOutside:ot(t.onPointerDownOutside,i=>{const o=i.detail.originalEvent,c=o.button===0&&o.ctrlKey===!0;(o.button===2||c)&&i.preventDefault()}),onFocusOutside:ot(t.onFocusOutside,i=>i.preventDefault())})}),MR=b.forwardRef((t,e)=>{const n=Er(Ro,t.__scopeDialog),s=b.useRef(!1),a=b.useRef(!1);return r.jsx(Yj,{...t,ref:e,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:i=>{var o,c;(o=t.onCloseAutoFocus)==null||o.call(t,i),i.defaultPrevented||(s.current||(c=n.triggerRef.current)==null||c.focus(),i.preventDefault()),s.current=!1,a.current=!1},onInteractOutside:i=>{var u,h;(u=t.onInteractOutside)==null||u.call(t,i),i.defaultPrevented||(s.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()}})}),Yj=b.forwardRef((t,e)=>{const{__scopeDialog:n,trapFocus:s,onOpenAutoFocus:a,onCloseAutoFocus:i,...o}=t,c=Er(Ro,n),u=b.useRef(null),h=Et(e,u);return Pj(),r.jsxs(r.Fragment,{children:[r.jsx(o0,{asChild:!0,loop:!0,trapped:s,onMountAutoFocus:a,onUnmountAutoFocus:i,children:r.jsx(i0,{role:"dialog",id:c.contentId,"aria-describedby":c.descriptionId,"aria-labelledby":c.titleId,"data-state":h0(c.open),...o,ref:h,onDismiss:()=>c.onOpenChange(!1)})}),r.jsxs(r.Fragment,{children:[r.jsx(AR,{titleId:c.titleId}),r.jsx(RR,{contentRef:u,descriptionId:c.descriptionId})]})]})}),u0="DialogTitle",Qj=b.forwardRef((t,e)=>{const{__scopeDialog:n,...s}=t,a=Er(u0,n);return r.jsx(ht.h2,{id:a.titleId,...s,ref:e})});Qj.displayName=u0;var Xj="DialogDescription",Zj=b.forwardRef((t,e)=>{const{__scopeDialog:n,...s}=t,a=Er(Xj,n);return r.jsx(ht.p,{id:a.descriptionId,...s,ref:e})});Zj.displayName=Xj;var ek="DialogClose",tk=b.forwardRef((t,e)=>{const{__scopeDialog:n,...s}=t,a=Er(ek,n);return r.jsx(ht.button,{type:"button",...s,ref:e,onClick:ot(t.onClick,()=>a.onOpenChange(!1))})});tk.displayName=ek;function h0(t){return t?"open":"closed"}var nk="DialogTitleWarning",[GV,sk]=aI(nk,{contentName:Ro,titleName:u0,docsSlug:"dialog"}),AR=({titleId:t})=>{const e=sk(nk),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},IR="DialogDescriptionWarning",RR=({contentRef:t,descriptionId:e})=>{const s=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${sk(IR).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(s))},[s,t,e]),null},PR=Wj,OR=qj,DR=Gj,LR=Jj,_R=Qj,zR=Zj,$R=tk;function Mt(t){return r.jsx(PR,{"data-slot":"dialog",...t})}function FR(t){return r.jsx(OR,{...t})}const rk=b.forwardRef(({className:t,...e},n)=>r.jsx(DR,{ref:n,className:Tt("fixed inset-0 z-50 bg-black/50",t),...e}));rk.displayName="DialogOverlay";const kt=b.forwardRef(({className:t,children:e,showCloseButton:n=!0,...s},a)=>r.jsxs(FR,{children:[r.jsx(rk,{}),r.jsxs(LR,{ref:a,"aria-describedby":void 0,className:Tt("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),...s,children:[e,n&&r.jsxs($R,{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:[r.jsx(is,{className:"h-4 w-4"}),r.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));kt.displayName="DialogContent";function At({className:t,...e}){return r.jsx("div",{className:Tt("flex flex-col gap-2 text-center sm:text-left",t),...e})}function Zt({className:t,...e}){return r.jsx("div",{className:Tt("flex flex-col-reverse gap-2 sm:flex-row sm:justify-end",t),...e})}function It(t){return r.jsx(_R,{className:"text-lg font-semibold leading-none",...t})}function vd(t){return r.jsx(zR,{className:"text-sm text-muted-foreground",...t})}const BR=xj("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,...s}){const a=n?pj:"span";return r.jsx(a,{className:Tt(BR({variant:e}),t),...s})}var VR=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],HR=VR.reduce((t,e)=>{const n=fj(`Primitive.${e}`),s=b.forwardRef((a,i)=>{const{asChild:o,...c}=a,u=o?n:e;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),r.jsx(u,{...c,ref:i})});return s.displayName=`Primitive.${e}`,{...t,[e]:s}},{}),WR="Label",ak=b.forwardRef((t,e)=>r.jsx(HR.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=WR;var ik=ak;const ee=b.forwardRef(({className:t,...e},n)=>r.jsx(ik,{ref:n,className:Tt("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",t),...e}));ee.displayName=ik.displayName;function f0(t){const e=t+"CollectionProvider",[n,s]=_i(e),[a,i]=n(e,{collectionRef:{current:null},itemMap:new Map}),o=w=>{const{scope:v,children:k}=w,C=vs.useRef(null),E=vs.useRef(new Map).current;return r.jsx(a,{scope:v,itemMap:E,collectionRef:C,children:k})};o.displayName=e;const c=t+"CollectionSlot",u=bd(c),h=vs.forwardRef((w,v)=>{const{scope:k,children:C}=w,E=i(c,k),M=Et(v,E.collectionRef);return r.jsx(u,{ref:M,children:C})});h.displayName=c;const f=t+"CollectionItemSlot",m="data-radix-collection-item",g=bd(f),y=vs.forwardRef((w,v)=>{const{scope:k,children:C,...E}=w,M=vs.useRef(null),P=Et(v,M),$=i(f,k);return vs.useEffect(()=>($.itemMap.set(M,{ref:M,...E}),()=>void $.itemMap.delete(M))),r.jsx(g,{[m]:"",ref:P,children:C})});y.displayName=f;function N(w){const v=i(t+"CollectionConsumer",w);return vs.useCallback(()=>{const C=v.collectionRef.current;if(!C)return[];const E=Array.from(C.querySelectorAll(`[${m}]`));return Array.from(v.itemMap.values()).sort(($,D)=>E.indexOf($.ref.current)-E.indexOf(D.ref.current))},[v.collectionRef,v.itemMap])}return[{Provider:o,Slot:h,ItemSlot:y},N,s]}var UR=b.createContext(void 0);function Lf(t){const e=b.useContext(UR);return t||e||"ltr"}var eg="rovingFocusGroup.onEntryFocus",KR={bubbles:!1,cancelable:!0},_d="RovingFocusGroup",[tx,ok,qR]=f0(_d),[GR,lk]=_i(_d,[qR]),[JR,YR]=GR(_d),ck=b.forwardRef((t,e)=>r.jsx(tx.Provider,{scope:t.__scopeRovingFocusGroup,children:r.jsx(tx.Slot,{scope:t.__scopeRovingFocusGroup,children:r.jsx(QR,{...t,ref:e})})}));ck.displayName=_d;var QR=b.forwardRef((t,e)=>{const{__scopeRovingFocusGroup:n,orientation:s,loop:a=!1,dir:i,currentTabStopId:o,defaultCurrentTabStopId:c,onCurrentTabStopIdChange:u,onEntryFocus:h,preventScrollOnEntryFocus:f=!1,...m}=t,g=b.useRef(null),y=Et(e,g),N=Lf(i),[w,v]=Io({prop:o,defaultProp:c??null,onChange:u,caller:_d}),[k,C]=b.useState(!1),E=Mi(h),M=ok(n),P=b.useRef(!1),[$,D]=b.useState(0);return b.useEffect(()=>{const R=g.current;if(R)return R.addEventListener(eg,E),()=>R.removeEventListener(eg,E)},[E]),r.jsx(JR,{scope:n,orientation:s,dir:N,loop:a,currentTabStopId:w,onItemFocus:b.useCallback(R=>v(R),[v]),onItemShiftTab:b.useCallback(()=>C(!0),[]),onFocusableItemAdd:b.useCallback(()=>D(R=>R+1),[]),onFocusableItemRemove:b.useCallback(()=>D(R=>R-1),[]),children:r.jsx(ht.div,{tabIndex:k||$===0?-1:0,"data-orientation":s,...m,ref:y,style:{outline:"none",...t.style},onMouseDown:ot(t.onMouseDown,()=>{P.current=!0}),onFocus:ot(t.onFocus,R=>{const O=!P.current;if(R.target===R.currentTarget&&O&&!k){const _=new CustomEvent(eg,KR);if(R.currentTarget.dispatchEvent(_),!_.defaultPrevented){const se=M().filter(K=>K.focusable),ne=se.find(K=>K.active),pe=se.find(K=>K.id===w),z=[ne,pe,...se].filter(Boolean).map(K=>K.ref.current);hk(z,f)}}P.current=!1}),onBlur:ot(t.onBlur,()=>C(!1))})})}),dk="RovingFocusGroupItem",uk=b.forwardRef((t,e)=>{const{__scopeRovingFocusGroup:n,focusable:s=!0,active:a=!1,tabStopId:i,children:o,...c}=t,u=ji(),h=i||u,f=YR(dk,n),m=f.currentTabStopId===h,g=ok(n),{onFocusableItemAdd:y,onFocusableItemRemove:N,currentTabStopId:w}=f;return b.useEffect(()=>{if(s)return y(),()=>N()},[s,y,N]),r.jsx(tx.ItemSlot,{scope:n,id:h,focusable:s,active:a,children:r.jsx(ht.span,{tabIndex:m?0:-1,"data-orientation":f.orientation,...c,ref:e,onMouseDown:ot(t.onMouseDown,v=>{s?f.onItemFocus(h):v.preventDefault()}),onFocus:ot(t.onFocus,()=>f.onItemFocus(h)),onKeyDown:ot(t.onKeyDown,v=>{if(v.key==="Tab"&&v.shiftKey){f.onItemShiftTab();return}if(v.target!==v.currentTarget)return;const k=eP(v,f.orientation,f.dir);if(k!==void 0){if(v.metaKey||v.ctrlKey||v.altKey||v.shiftKey)return;v.preventDefault();let E=g().filter(M=>M.focusable).map(M=>M.ref.current);if(k==="last")E.reverse();else if(k==="prev"||k==="next"){k==="prev"&&E.reverse();const M=E.indexOf(v.currentTarget);E=f.loop?tP(E,M+1):E.slice(M+1)}setTimeout(()=>hk(E))}}),children:typeof o=="function"?o({isCurrentTabStop:m,hasTabStop:w!=null}):o})})});uk.displayName=dk;var XR={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function ZR(t,e){return e!=="rtl"?t:t==="ArrowLeft"?"ArrowRight":t==="ArrowRight"?"ArrowLeft":t}function eP(t,e,n){const s=ZR(t.key,n);if(!(e==="vertical"&&["ArrowLeft","ArrowRight"].includes(s))&&!(e==="horizontal"&&["ArrowUp","ArrowDown"].includes(s)))return XR[s]}function hk(t,e=!1){const n=document.activeElement;for(const s of t)if(s===n||(s.focus({preventScroll:e}),document.activeElement!==n))return}function tP(t,e){return t.map((n,s)=>t[(e+s)%t.length])}var nP=ck,sP=uk,_f="Tabs",[rP]=_i(_f,[lk]),fk=lk(),[aP,p0]=rP(_f),pk=b.forwardRef((t,e)=>{const{__scopeTabs:n,value:s,onValueChange:a,defaultValue:i,orientation:o="horizontal",dir:c,activationMode:u="automatic",...h}=t,f=Lf(c),[m,g]=Io({prop:s,onChange:a,defaultProp:i??"",caller:_f});return r.jsx(aP,{scope:n,baseId:ji(),value:m,onValueChange:g,orientation:o,dir:f,activationMode:u,children:r.jsx(ht.div,{dir:f,"data-orientation":o,...h,ref:e})})});pk.displayName=_f;var mk="TabsList",gk=b.forwardRef((t,e)=>{const{__scopeTabs:n,loop:s=!0,...a}=t,i=p0(mk,n),o=fk(n);return r.jsx(nP,{asChild:!0,...o,orientation:i.orientation,dir:i.dir,loop:s,children:r.jsx(ht.div,{role:"tablist","aria-orientation":i.orientation,...a,ref:e})})});gk.displayName=mk;var xk="TabsTrigger",yk=b.forwardRef((t,e)=>{const{__scopeTabs:n,value:s,disabled:a=!1,...i}=t,o=p0(xk,n),c=fk(n),u=Nk(o.baseId,s),h=wk(o.baseId,s),f=s===o.value;return r.jsx(sP,{asChild:!0,...c,focusable:!a,active:f,children:r.jsx(ht.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:ot(t.onMouseDown,m=>{!a&&m.button===0&&m.ctrlKey===!1?o.onValueChange(s):m.preventDefault()}),onKeyDown:ot(t.onKeyDown,m=>{[" ","Enter"].includes(m.key)&&o.onValueChange(s)}),onFocus:ot(t.onFocus,()=>{const m=o.activationMode!=="manual";!f&&!a&&m&&o.onValueChange(s)})})})});yk.displayName=xk;var bk="TabsContent",vk=b.forwardRef((t,e)=>{const{__scopeTabs:n,value:s,forceMount:a,children:i,...o}=t,c=p0(bk,n),u=Nk(c.baseId,s),h=wk(c.baseId,s),f=s===c.value,m=b.useRef(f);return b.useEffect(()=>{const g=requestAnimationFrame(()=>m.current=!1);return()=>cancelAnimationFrame(g)},[]),r.jsx(Ld,{present:a||f,children:({present:g})=>r.jsx(ht.div,{"data-state":f?"active":"inactive","data-orientation":c.orientation,role:"tabpanel","aria-labelledby":u,hidden:!g,id:h,tabIndex:0,...o,ref:e,style:{...t.style,animationDuration:m.current?"0s":void 0},children:g&&i})})});vk.displayName=bk;function Nk(t,e){return`${t}-trigger-${e}`}function wk(t,e){return`${t}-content-${e}`}var iP=pk,jk=gk,kk=yk,Sk=vk;const zd=iP,nc=b.forwardRef(({className:t,...e},n)=>r.jsx(jk,{ref:n,className:Tt("inline-flex h-9 items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground",t),...e}));nc.displayName=jk.displayName;const en=b.forwardRef(({className:t,...e},n)=>r.jsx(kk,{ref:n,className:Tt("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}));en.displayName=kk.displayName;const tn=b.forwardRef(({className:t,...e},n)=>r.jsx(Sk,{ref:n,className:Tt("mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",t),...e}));tn.displayName=Sk.displayName;function m0(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 g0(t){const[e,n]=b.useState(void 0);return ls(()=>{if(t){n({width:t.offsetWidth,height:t.offsetHeight});const s=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 s.observe(t,{box:"border-box"}),()=>s.unobserve(t)}else n(void 0)},[t]),e}var zf="Switch",[oP]=_i(zf),[lP,cP]=oP(zf),Ck=b.forwardRef((t,e)=>{const{__scopeSwitch:n,name:s,checked:a,defaultChecked:i,required:o,disabled:c,value:u="on",onCheckedChange:h,form:f,...m}=t,[g,y]=b.useState(null),N=Et(e,E=>y(E)),w=b.useRef(!1),v=g?f||!!g.closest("form"):!0,[k,C]=Io({prop:a,defaultProp:i??!1,onChange:h,caller:zf});return r.jsxs(lP,{scope:n,checked:k,disabled:c,children:[r.jsx(ht.button,{type:"button",role:"switch","aria-checked":k,"aria-required":o,"data-state":Ak(k),"data-disabled":c?"":void 0,disabled:c,value:u,...m,ref:N,onClick:ot(t.onClick,E=>{C(M=>!M),v&&(w.current=E.isPropagationStopped(),w.current||E.stopPropagation())})}),v&&r.jsx(Mk,{control:g,bubbles:!w.current,name:s,value:u,checked:k,required:o,disabled:c,form:f,style:{transform:"translateX(-100%)"}})]})});Ck.displayName=zf;var Ek="SwitchThumb",Tk=b.forwardRef((t,e)=>{const{__scopeSwitch:n,...s}=t,a=cP(Ek,n);return r.jsx(ht.span,{"data-state":Ak(a.checked),"data-disabled":a.disabled?"":void 0,...s,ref:e})});Tk.displayName=Ek;var dP="SwitchBubbleInput",Mk=b.forwardRef(({__scopeSwitch:t,control:e,checked:n,bubbles:s=!0,...a},i)=>{const o=b.useRef(null),c=Et(o,i),u=m0(n),h=g0(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 N=new Event("click",{bubbles:s});y.call(f,n),f.dispatchEvent(N)}},[u,n,s]),r.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}})});Mk.displayName=dP;function Ak(t){return t?"checked":"unchecked"}var Ik=Ck,uP=Tk;const St=b.forwardRef(({className:t,...e},n)=>r.jsx(Ik,{className:Tt("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:r.jsx(uP,{className:Tt("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")})}));St.displayName=Ik.displayName;function x0({open:t,onClose:e,userId:n,onUserUpdated:s}){var Ar;const[a,i]=b.useState(null),[o,c]=b.useState([]),[u,h]=b.useState([]),[f,m]=b.useState(null),[g,y]=b.useState(!1),[N,w]=b.useState(!1),[v,k]=b.useState(!1),[C,E]=b.useState("info"),[M,P]=b.useState(""),[$,D]=b.useState(""),[R,O]=b.useState([]),[_,se]=b.useState(""),[ne,pe]=b.useState(""),[ge,z]=b.useState(""),[K,U]=b.useState(!1),[I,q]=b.useState({isVip:!1,vipExpireDate:"",vipRole:"",vipName:"",vipProject:"",vipContact:"",vipBio:""}),[F,L]=b.useState([]),[W,oe]=b.useState(!1),[Q,X]=b.useState(""),[V,re]=b.useState(""),[ue,ce]=b.useState(!1),[be,Pe]=b.useState(!1),[Le,lt]=b.useState(null),[Rt,dn]=b.useState(null),[gt,sn]=b.useState(""),[Pn,Pt]=b.useState(""),[Qt,rn]=b.useState(""),[On,ms]=b.useState(!1),[Dn,Wn]=b.useState(null),[J,Ke]=b.useState("");b.useEffect(()=>{t&&n&&(E("info"),lt(null),dn(null),Wn(null),Ke(""),pe(""),z(""),Ge(),Re("/api/db/vip-roles").then(me=>{me!=null&&me.success&&me.data&&L(me.data)}).catch(()=>{}))},[t,n]);async function Ge(){if(n){y(!0);try{const me=await Re(`/api/db/users?id=${encodeURIComponent(n)}`);if(me!=null&&me.success&&me.user){const ye=me.user;i(ye),P(ye.phone||""),D(ye.nickname||""),sn(ye.phone||""),Pt(ye.wechatId||""),rn(ye.openId||"");try{O(typeof ye.tags=="string"?JSON.parse(ye.tags||"[]"):[])}catch{O([])}q({isVip:!!(ye.isVip??!1),vipExpireDate:ye.vipExpireDate?String(ye.vipExpireDate).slice(0,10):"",vipRole:String(ye.vipRole??""),vipName:String(ye.vipName??""),vipProject:String(ye.vipProject??""),vipContact:String(ye.vipContact??""),vipBio:String(ye.vipBio??"")})}try{const ye=await Re(`/api/admin/user/track?userId=${encodeURIComponent(n)}&limit=50`);ye!=null&&ye.success&&ye.tracks&&c(ye.tracks)}catch{c([])}try{const ye=await Re(`/api/db/users/referrals?userId=${encodeURIComponent(n)}`);ye!=null&&ye.success&&ye.referrals&&h(ye.referrals)}catch{h([])}try{const ye=await Re(`/api/admin/users/${encodeURIComponent(n)}/balance`);ye!=null&&ye.success&&ye.data?m(ye.data):m(null)}catch{m(null)}}catch(me){console.error("Load user detail error:",me)}finally{y(!1)}}}async function mt(){if(!(a!=null&&a.phone)){ae.info("用户未绑定手机号,无法同步");return}w(!0);try{const me=await yt("/api/ckb/sync",{action:"full_sync",phone:a.phone,userId:a.id});me!=null&&me.success?(ae.success("同步成功"),Ge()):ae.error("同步失败: "+(me==null?void 0:me.error))}catch(me){console.error("Sync CKB error:",me),ae.error("同步失败")}finally{w(!1)}}async function ct(){if(a){if(I.isVip&&!I.vipExpireDate.trim()){ae.error("开启 VIP 请填写有效到期日");return}k(!0);try{const me={id:a.id,phone:M||void 0,nickname:$||void 0,tags:JSON.stringify(R),isVip:I.isVip,vipExpireDate:I.isVip?I.vipExpireDate:void 0,vipRole:I.vipRole||void 0,vipName:I.vipName||void 0,vipProject:I.vipProject||void 0,vipContact:I.vipContact||void 0,vipBio:I.vipBio||void 0},ye=await _t("/api/db/users",me);ye!=null&&ye.success?(ae.success("保存成功"),Ge(),s==null||s()):ae.error("保存失败: "+(ye==null?void 0:ye.error))}catch(me){console.error("Save user error:",me),ae.error("保存失败")}finally{k(!1)}}}const st=()=>{_&&!R.includes(_)&&(O([...R,_]),se(""))},pt=me=>O(R.filter(ye=>ye!==me));async function Lt(){if(a){if(!ne){ae.error("请输入新密码");return}if(ne!==ge){ae.error("两次密码不一致");return}if(ne.length<6){ae.error("密码至少 6 位");return}U(!0);try{const me=await _t("/api/db/users",{id:a.id,password:ne});me!=null&&me.success?(ae.success("修改成功"),pe(""),z("")):ae.error("修改失败: "+((me==null?void 0:me.error)||""))}catch{ae.error("修改失败")}finally{U(!1)}}}async function yn(){if(!a)return;const me=parseFloat(Q);if(Number.isNaN(me)||me===0){ae.error("请输入有效金额(正数增加、负数扣减)");return}ce(!0);try{const ye=await yt(`/api/admin/users/${a.id}/balance/adjust`,{amount:me,remark:V||void 0});ye!=null&&ye.success?(ae.success("余额已调整"),oe(!1),X(""),re(""),Ge(),s==null||s()):ae.error("调整失败: "+((ye==null?void 0:ye.error)||""))}catch{ae.error("调整失败")}finally{ce(!1)}}async function gs(){if(!gt&&!Qt&&!Pn){dn("请至少输入手机号、微信号或 OpenID 中的一项");return}Pe(!0),dn(null),lt(null);try{const me=new URLSearchParams;gt&&me.set("phone",gt),Qt&&me.set("openId",Qt),Pn&&me.set("wechatId",Pn);const ye=await Re(`/api/admin/shensheshou/query?${me}`);ye!=null&&ye.success&&ye.data?(lt(ye.data),a&&await js(ye.data)):dn((ye==null?void 0:ye.error)||"未查询到数据,该用户可能未在神射手收录")}catch(me){console.error("SSS query error:",me),dn("请求失败,请检查神射手接口配置")}finally{Pe(!1)}}async function js(me){if(a)try{await yt("/api/admin/shensheshou/enrich",{userId:a.id,phone:gt||a.phone||"",openId:Qt||a.openId||"",wechatId:Pn||a.wechatId||""}),Ge()}catch(ye){console.error("SSS enrich error:",ye)}}async function Mr(){if(a){ms(!0),Wn(null);try{const me={users:[{phone:a.phone||"",name:a.nickname||"",openId:a.openId||"",tags:R}]},ye=await yt("/api/admin/shensheshou/ingest",me);ye!=null&&ye.success&&ye.data?Wn(ye.data):Wn({error:(ye==null?void 0:ye.error)||"推送失败"})}catch(me){console.error("SSS ingest error:",me),Wn({error:"请求失败"})}finally{ms(!1)}}}const Ks=me=>{const Ot={view_chapter:Hs,purchase:Jg,match:Rn,login:ko,register:ko,share:kr,bind_phone:mA,bind_wechat:rA,fill_profile:sd,visit_page:Dl}[me]||Wg;return r.jsx(Ot,{className:"w-4 h-4"})};return t?r.jsxs(r.Fragment,{children:[r.jsx(Mt,{open:t,onOpenChange:()=>e(),children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-4xl max-h-[90vh] overflow-hidden",children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(ko,{className:"w-5 h-5 text-[#38bdac]"}),"用户详情",(a==null?void 0:a.phone)&&r.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0 ml-2",children:"已绑定手机"}),(a==null?void 0:a.isVip)&&r.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 border-0",children:"VIP"})]})}),g?r.jsxs("div",{className:"flex items-center justify-center py-20",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):a?r.jsxs("div",{className:"flex flex-col h-[75vh]",children:[r.jsxs("div",{className:"flex items-center gap-4 p-4 bg-[#0a1628] rounded-lg mb-3",children:[r.jsx("div",{className:"w-16 h-16 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-2xl text-[#38bdac] shrink-0",children:a.avatar?r.jsx("img",{src:a.avatar,className:"w-full h-full rounded-full object-cover",alt:""}):((Ar=a.nickname)==null?void 0:Ar.charAt(0))||"?"}),r.jsxs("div",{className:"flex-1 min-w-0",children:[r.jsxs("div",{className:"flex items-center gap-2 flex-wrap",children:[r.jsx("h3",{className:"text-lg font-bold text-white",children:a.nickname}),a.isAdmin&&r.jsx(Ue,{className:"bg-purple-500/20 text-purple-400 border-0",children:"管理员"}),a.hasFullBook&&r.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0",children:"全书已购"}),a.vipRole&&r.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 border-0",children:a.vipRole})]}),r.jsxs("p",{className:"text-gray-400 text-sm mt-1",children:[a.phone?`📱 ${a.phone}`:"未绑定手机",a.wechatId&&` · 💬 ${a.wechatId}`,a.mbti&&` · ${a.mbti}`]}),r.jsxs("div",{className:"flex items-center gap-4 mt-1",children:[r.jsxs("p",{className:"text-gray-600 text-xs",children:["ID: ",a.id.slice(0,16),"…"]}),a.referralCode&&r.jsxs("p",{className:"text-xs",children:[r.jsx("span",{className:"text-gray-500",children:"推广码:"}),r.jsx("code",{className:"text-[#38bdac] bg-[#38bdac]/10 px-1.5 py-0.5 rounded",children:a.referralCode})]})]})]}),r.jsxs("div",{className:"text-right shrink-0",children:[r.jsxs("p",{className:"text-[#38bdac] font-bold text-lg",children:["¥",(a.earnings||0).toFixed(2)]}),r.jsx("p",{className:"text-gray-500 text-xs",children:"累计收益"})]})]}),r.jsxs(zd,{value:C,onValueChange:E,className:"flex-1 flex flex-col overflow-hidden",children:[r.jsxs(nc,{className:"bg-[#0a1628] border border-gray-700/50 p-1 mb-3 flex-wrap h-auto gap-1",children:[r.jsx(en,{value:"info",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-xs",children:"基础信息"}),r.jsx(en,{value:"tags",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-xs",children:"标签体系"}),r.jsxs(en,{value:"journey",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-xs",children:[r.jsx(Dl,{className:"w-3 h-3 mr-1"}),"用户旅程"]}),r.jsx(en,{value:"relations",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-xs",children:"关系链路"}),r.jsxs(en,{value:"shensheshou",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-xs",children:[r.jsx(yi,{className:"w-3 h-3 mr-1"}),"用户资料完善"]})]}),r.jsxs(tn,{value:"info",className:"flex-1 overflow-auto space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"手机号"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"输入手机号",value:M,onChange:me=>P(me.target.value),disabled:!!(a!=null&&a.phone)}),(a==null?void 0:a.phone)&&r.jsx("p",{className:"text-xs text-gray-500",children:"编辑时手机号不可修改"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"昵称"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"输入昵称",value:$,onChange:me=>D(me.target.value)})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-3 text-sm",children:[a.openId&&r.jsxs("div",{className:"p-3 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"微信 OpenID"}),r.jsx("p",{className:"text-gray-300 font-mono text-xs break-all",children:a.openId})]}),a.region&&r.jsxs("div",{className:"p-3 bg-[#0a1628] rounded-lg flex items-center gap-2",children:[r.jsx(dj,{className:"w-4 h-4 text-gray-500"}),r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-500 text-xs",children:"地区"}),r.jsx("p",{className:"text-white",children:a.region})]})]}),a.industry&&r.jsxs("div",{className:"p-3 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"行业"}),r.jsx("p",{className:"text-white",children:a.industry})]}),a.position&&r.jsxs("div",{className:"p-3 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"职位"}),r.jsx("p",{className:"text-white",children:a.position})]})]}),r.jsxs("div",{className:"grid grid-cols-2 sm:grid-cols-4 gap-4",children:[r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"推荐人数"}),r.jsx("p",{className:"text-2xl font-bold text-white",children:a.referralCount??0})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"待提现"}),r.jsxs("p",{className:"text-2xl font-bold text-yellow-400",children:["¥",(a.pendingEarnings??0).toFixed(2)]})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg flex flex-col justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"当前余额"}),r.jsxs("p",{className:"text-2xl font-bold text-[#38bdac]",children:["¥",((f==null?void 0:f.balance)??0).toFixed(2)]})]}),r.jsx(Z,{size:"sm",variant:"outline",className:"mt-2 border-[#38bdac]/50 text-[#38bdac] hover:bg-[#38bdac]/10 text-xs",onClick:()=>{X(""),re(""),oe(!0)},children:"调整余额"})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"创建时间"}),r.jsx("p",{className:"text-sm text-white",children:a.createdAt?new Date(a.createdAt).toLocaleDateString():"-"})]})]}),r.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-4",children:[r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg border border-gray-700/50",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(cj,{className:"w-4 h-4 text-yellow-400"}),r.jsx("span",{className:"text-white font-medium",children:"修改密码"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ie,{type:"password",className:"bg-[#162840] border-gray-700 text-white",placeholder:"新密码(至少6位)",value:ne,onChange:me=>pe(me.target.value)}),r.jsx(ie,{type:"password",className:"bg-[#162840] border-gray-700 text-white",placeholder:"确认密码",value:ge,onChange:me=>z(me.target.value)}),r.jsx(Z,{size:"sm",onClick:Lt,disabled:K||!ne||!ge,className:"bg-yellow-500/20 hover:bg-yellow-500/30 text-yellow-400 border border-yellow-500/40",children:K?"保存中...":"确认修改"})]})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg border border-amber-500/20",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(zl,{className:"w-4 h-4 text-amber-400"}),r.jsx("span",{className:"text-white font-medium",children:"设成超级个体"})]}),r.jsxs("div",{className:"space-y-3",children:[r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsx(ee,{className:"text-gray-400 text-sm",children:"VIP 会员"}),r.jsx(St,{checked:I.isVip,onCheckedChange:me=>q(ye=>({...ye,isVip:me}))})]}),I.isVip&&r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"到期日"}),r.jsx(ie,{type:"date",className:"bg-[#162840] border-gray-700 text-white text-sm",value:I.vipExpireDate,onChange:me=>q(ye=>({...ye,vipExpireDate:me.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"角色"}),r.jsxs("select",{className:"w-full bg-[#162840] border border-gray-700 text-white rounded px-2 py-1.5 text-sm",value:I.vipRole,onChange:me=>q(ye=>({...ye,vipRole:me.target.value})),children:[r.jsx("option",{value:"",children:"请选择"}),F.map(me=>r.jsx("option",{value:me.name,children:me.name},me.id))]})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"展示名"}),r.jsx(ie,{className:"bg-[#162840] border-gray-700 text-white text-sm",placeholder:"创业老板排行展示名",value:I.vipName,onChange:me=>q(ye=>({...ye,vipName:me.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"项目"}),r.jsx(ie,{className:"bg-[#162840] border-gray-700 text-white text-sm",placeholder:"如:某某科技",value:I.vipProject,onChange:me=>q(ye=>({...ye,vipProject:me.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"联系方式"}),r.jsx(ie,{className:"bg-[#162840] border-gray-700 text-white text-sm",placeholder:"微信/手机等",value:I.vipContact,onChange:me=>q(ye=>({...ye,vipContact:me.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"简介"}),r.jsx(ie,{className:"bg-[#162840] border-gray-700 text-white text-sm",placeholder:"简短介绍",value:I.vipBio,onChange:me=>q(ye=>({...ye,vipBio:me.target.value}))})]})]})]})]}),a.isVip&&r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg border border-amber-500/20",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(zl,{className:"w-4 h-4 text-amber-400"}),r.jsx("span",{className:"text-white font-medium",children:"VIP 信息"}),r.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 border-0 text-xs",children:a.vipRole||"VIP"})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-3 text-sm",children:[a.vipName&&r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"展示名:"}),r.jsx("span",{className:"text-white",children:a.vipName})]}),a.vipProject&&r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"项目:"}),r.jsx("span",{className:"text-white",children:a.vipProject})]}),a.vipContact&&r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"联系方式:"}),r.jsx("span",{className:"text-white",children:a.vipContact})]}),a.vipExpireDate&&r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"到期时间:"}),r.jsx("span",{className:"text-white",children:new Date(a.vipExpireDate).toLocaleDateString()})]})]}),a.vipBio&&r.jsx("p",{className:"text-gray-400 text-sm mt-2",children:a.vipBio})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg border border-purple-500/20",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(Ti,{className:"w-4 h-4 text-purple-400"}),r.jsx("span",{className:"text-white font-medium",children:"微信归属"}),r.jsx("span",{className:"text-gray-500 text-xs",children:"该用户归属在哪个微信号下"})]}),r.jsxs("div",{className:"flex gap-2 items-center",children:[r.jsx(ie,{className:"bg-[#162840] border-gray-700 text-white flex-1",placeholder:"输入归属微信号(如 wxid_xxxx)",value:J,onChange:me=>Ke(me.target.value)}),r.jsxs(Z,{size:"sm",onClick:async()=>{if(!(!J||!a))try{await _t("/api/db/users",{id:a.id,wechatId:J}),ae.success("已保存微信归属"),Ge()}catch{ae.error("保存失败")}},className:"bg-purple-500/20 hover:bg-purple-500/30 text-purple-400 border border-purple-500/30 shrink-0",children:[r.jsx(vn,{className:"w-4 h-4 mr-1"})," 保存"]})]}),a.wechatId&&r.jsxs("p",{className:"text-gray-500 text-xs mt-2",children:["当前归属:",r.jsx("span",{className:"text-purple-400",children:a.wechatId})]})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center justify-between mb-3",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(kr,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx("span",{className:"text-white font-medium",children:"存客宝同步"})]}),r.jsx(Z,{size:"sm",onClick:mt,disabled:N||!a.phone,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:N?r.jsxs(r.Fragment,{children:[r.jsx(We,{className:"w-4 h-4 mr-1 animate-spin"})," 同步中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(We,{className:"w-4 h-4 mr-1"})," 同步数据"]})})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4 text-sm",children:[r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"同步状态:"}),a.ckbSyncedAt?r.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0 ml-1",children:"已同步"}):r.jsx(Ue,{className:"bg-gray-500/20 text-gray-400 border-0 ml-1",children:"未同步"})]}),r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"最后同步:"}),r.jsx("span",{className:"text-gray-300 ml-1",children:a.ckbSyncedAt?new Date(a.ckbSyncedAt).toLocaleString():"-"})]})]})]})]}),r.jsxs(tn,{value:"tags",className:"flex-1 overflow-auto space-y-4",children:[r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(sd,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx("span",{className:"text-white font-medium",children:"用户标签"}),r.jsx("span",{className:"text-gray-500 text-xs",children:"基于《一场 Soul 的创业实验》维度打标"})]}),r.jsxs("div",{className:"mb-3 p-2.5 bg-[#38bdac]/5 border border-[#38bdac]/20 rounded-lg flex items-center gap-2 text-xs text-gray-400",children:[r.jsx(Hg,{className:"w-3.5 h-3.5 text-[#38bdac] shrink-0"}),"命中的标签自动高亮 · 系统根据行为轨迹和填写资料自动打标 · 手动点击补充或取消"]}),r.jsx("div",{className:"mb-4 space-y-3",children:[{category:"身份类型",tags:["创业者","打工人","自由职业","学生","投资人","合伙人"]},{category:"行业背景",tags:["电商","内容","传统行业","科技/AI","金融","教育","餐饮"]},{category:"痛点标签",tags:["找资源","找方向","找合伙人","想赚钱","想学习","找情感出口"]},{category:"付费意愿",tags:["高意向","已付费","观望中","薅羊毛"]},{category:"MBTI",tags:["ENTJ","INTJ","ENFP","INFP","ENTP","INTP","ESTJ","ISFJ"]}].map(me=>r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1.5",children:me.category}),r.jsx("div",{className:"flex flex-wrap gap-1.5",children:me.tags.map(ye=>r.jsxs("button",{type:"button",onClick:()=>{R.includes(ye)?pt(ye):O([...R,ye])},className:`px-2 py-0.5 rounded text-xs border transition-all ${R.includes(ye)?"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:[R.includes(ye)?"✓ ":"",ye]},ye))})]},me.category))}),r.jsxs("div",{className:"border-t border-gray-700/50 pt-3",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-2",children:"已选标签"}),r.jsxs("div",{className:"flex flex-wrap gap-2 mb-3 min-h-[32px]",children:[R.map((me,ye)=>r.jsxs(Ue,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0 pr-1",children:[me,r.jsx("button",{type:"button",onClick:()=>pt(me),className:"ml-1 hover:text-red-400",children:r.jsx(is,{className:"w-3 h-3"})})]},ye)),R.length===0&&r.jsx("span",{className:"text-gray-600 text-sm",children:"暂未选择标签"})]}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx(ie,{className:"bg-[#162840] border-gray-700 text-white flex-1",placeholder:"自定义标签(回车添加)",value:_,onChange:me=>se(me.target.value),onKeyDown:me=>me.key==="Enter"&&st()}),r.jsx(Z,{onClick:st,className:"bg-[#38bdac] hover:bg-[#2da396]",children:"添加"})]})]})]}),(()=>{const me=a.tags||a.ckbTags||"";let ye=[];try{const Zn=typeof me=="string"?JSON.parse(me||"[]"):[];ye=Array.isArray(Zn)?Zn:typeof me=="string"?me.split(","):[]}catch{ye=typeof me=="string"?me.split(","):[]}const Ot=ye.map(Zn=>String(Zn).trim()).filter(Boolean);return Ot.length===0?null:r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-2",children:[r.jsx(sd,{className:"w-4 h-4 text-purple-400"}),r.jsx("span",{className:"text-white font-medium",children:"存客宝标签"})]}),r.jsx("div",{className:"flex flex-wrap gap-2",children:Ot.map((Zn,Ra)=>r.jsx(Ue,{className:"bg-purple-500/20 text-purple-400 border-0",children:Zn},Ra))})]})})()]}),r.jsxs(tn,{value:"journey",className:"flex-1 overflow-auto",children:[r.jsxs("div",{className:"mb-3 p-3 bg-[#0a1628] rounded-lg flex items-center gap-2",children:[r.jsx(Dl,{className:"w-4 h-4 text-[#38bdac]"}),r.jsxs("span",{className:"text-gray-400 text-sm",children:["记录用户从注册到付费的完整行动路径,共 ",o.length," 条记录"]})]}),r.jsx("div",{className:"space-y-2",children:o.length>0?o.map((me,ye)=>r.jsxs("div",{className:"flex items-start gap-3 p-3 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex flex-col items-center",children:[r.jsx("div",{className:"w-8 h-8 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-[#38bdac]",children:Ks(me.action)}),ye0?u.map((me,ye)=>{var Zn;const Ot=me;return r.jsxs("div",{className:"flex items-center justify-between p-2 bg-[#162840] rounded",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("div",{className:"w-6 h-6 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-xs text-[#38bdac]",children:((Zn=Ot.nickname)==null?void 0:Zn.charAt(0))||"?"}),r.jsx("span",{className:"text-white text-sm",children:Ot.nickname})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[Ot.status==="vip"&&r.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0 text-xs",children:"已购"}),r.jsx("span",{className:"text-gray-500 text-xs",children:Ot.createdAt?new Date(Ot.createdAt).toLocaleDateString():""})]})]},Ot.id||ye)}):r.jsx("p",{className:"text-gray-500 text-sm text-center py-4",children:"暂无推荐用户"})})]})}),r.jsxs(tn,{value:"shensheshou",className:"flex-1 overflow-auto space-y-4",children:[r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(yi,{className:"w-5 h-5 text-[#38bdac]"}),r.jsx("span",{className:"text-white font-medium",children:"用户资料完善"}),r.jsx("span",{className:"text-gray-500 text-xs",children:"通过多维度查询神射手数据,自动回填用户基础信息"})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-2 mb-3",children:[r.jsxs("div",{children:[r.jsx(ee,{className:"text-gray-500 text-xs mb-1 block",children:"手机号"}),r.jsx(ie,{className:"bg-[#162840] border-gray-700 text-white",placeholder:"11位手机号",value:gt,onChange:me=>sn(me.target.value)})]}),r.jsxs("div",{children:[r.jsx(ee,{className:"text-gray-500 text-xs mb-1 block",children:"微信号"}),r.jsx(ie,{className:"bg-[#162840] border-gray-700 text-white",placeholder:"微信 ID",value:Pn,onChange:me=>Pt(me.target.value)})]}),r.jsxs("div",{className:"col-span-2",children:[r.jsx(ee,{className:"text-gray-500 text-xs mb-1 block",children:"微信 OpenID"}),r.jsx(ie,{className:"bg-[#162840] border-gray-700 text-white",placeholder:"openid_xxxx(自动填入)",value:Qt,onChange:me=>rn(me.target.value)})]})]}),r.jsx(Z,{onClick:gs,disabled:be,className:"w-full bg-[#38bdac] hover:bg-[#2da396] text-white",children:be?r.jsxs(r.Fragment,{children:[r.jsx(We,{className:"w-4 h-4 mr-1 animate-spin"})," 查询并自动回填中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(ka,{className:"w-4 h-4 mr-1"})," 查询并自动完善用户资料"]})}),r.jsx("p",{className:"text-gray-600 text-xs mt-2",children:"查询成功后,神射手返回的标签将自动同步到该用户"}),Rt&&r.jsx("div",{className:"mt-3 p-3 bg-red-500/10 border border-red-500/30 rounded-lg text-red-400 text-sm",children:Rt}),Le&&r.jsxs("div",{className:"mt-3 space-y-3",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[r.jsxs("div",{className:"p-3 bg-[#162840] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"神射手 RFM 分"}),r.jsx("p",{className:"text-2xl font-bold text-[#38bdac]",children:Le.rfm_score??"-"})]}),r.jsxs("div",{className:"p-3 bg-[#162840] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"用户等级"}),r.jsx("p",{className:"text-2xl font-bold text-white",children:Le.user_level??"-"})]})]}),Le.tags&&Le.tags.length>0&&r.jsxs("div",{className:"p-3 bg-[#162840] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-2",children:"神射手标签"}),r.jsx("div",{className:"flex flex-wrap gap-2",children:Le.tags.map((me,ye)=>r.jsx(Ue,{className:"bg-[#38bdac]/10 text-[#38bdac] border border-[#38bdac]/20",children:me},ye))})]}),Le.last_active&&r.jsxs("div",{className:"text-sm text-gray-500",children:["最近活跃:",Le.last_active]})]})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center justify-between mb-3",children:[r.jsxs("div",{children:[r.jsxs("div",{className:"flex items-center gap-2 mb-1",children:[r.jsx(yi,{className:"w-4 h-4 text-purple-400"}),r.jsx("span",{className:"text-white font-medium",children:"推送用户数据到神射手"})]}),r.jsx("p",{className:"text-gray-500 text-xs",children:"将本用户信息(手机号、昵称、标签等)同步至神射手,自动完善用户画像"})]}),r.jsx(Z,{onClick:Mr,disabled:On||!a.phone,variant:"outline",className:"border-purple-500/40 text-purple-400 hover:bg-purple-500/10 bg-transparent shrink-0 ml-4",children:On?r.jsxs(r.Fragment,{children:[r.jsx(We,{className:"w-4 h-4 mr-1 animate-spin"})," 推送中"]}):r.jsxs(r.Fragment,{children:[r.jsx(yi,{className:"w-4 h-4 mr-1"})," 推送"]})})]}),!a.phone&&r.jsx("p",{className:"text-yellow-500/70 text-xs",children:"⚠ 用户未绑定手机号,无法推送"}),Dn&&r.jsx("div",{className:"mt-3 p-3 bg-[#162840] rounded-lg text-sm",children:Dn.error?r.jsx("p",{className:"text-red-400",children:String(Dn.error)}):r.jsxs("div",{className:"space-y-1",children:[r.jsxs("p",{className:"text-green-400 flex items-center gap-1",children:[r.jsx(Hg,{className:"w-4 h-4"})," 推送成功"]}),Dn.enriched!==void 0&&r.jsxs("p",{className:"text-gray-400",children:["自动补全标签数:",String(Dn.new_tags_added??0)]})]})})]})]})]}),r.jsxs("div",{className:"flex justify-end gap-2 pt-3 border-t border-gray-700 mt-3",children:[r.jsxs(Z,{variant:"outline",onClick:e,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(is,{className:"w-4 h-4 mr-2"}),"关闭"]}),r.jsxs(Z,{onClick:ct,disabled:v,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),v?"保存中...":"保存修改"]})]})]}):r.jsx("div",{className:"text-center py-12 text-gray-500",children:"用户不存在"})]})}),r.jsx(Mt,{open:W,onOpenChange:oe,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white",showCloseButton:!0,children:[r.jsx(At,{children:r.jsx(It,{children:"调整余额"})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"调整金额(元)"}),r.jsx(ie,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white mt-1",placeholder:"正数增加,负数扣减,如 10 或 -5",value:Q,onChange:me=>X(me.target.value)})]}),r.jsxs("div",{children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"备注(可选)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white mt-1",placeholder:"如:活动补偿",value:V,onChange:me=>re(me.target.value)})]})]}),r.jsxs("div",{className:"flex justify-end gap-2",children:[r.jsx(Z,{variant:"outline",onClick:()=>oe(!1),className:"border-gray-600 text-gray-300",children:"取消"}),r.jsx(Z,{onClick:yn,disabled:ue,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:ue?"提交中...":"确认调整"})]})]})})]}):null}function hP(){const t=Li(),[e,n]=b.useState(!0),[s,a]=b.useState(!0),[i,o]=b.useState(!0),[c,u]=b.useState([]),[h,f]=b.useState([]),[m,g]=b.useState(0),[y,N]=b.useState(0),[w,v]=b.useState(0),[k,C]=b.useState(0),[E,M]=b.useState(null),[P,$]=b.useState(null),[D,R]=b.useState(!1),[O,_]=b.useState(0),[se,ne]=b.useState(!1),[pe,ge]=b.useState("week"),[z,K]=b.useState(null),[U,I]=b.useState(!1),q=X=>{const V=X;if((V==null?void 0:V.status)===401)M("登录已过期,请重新登录");else{if((V==null?void 0:V.name)==="AbortError")return;M("加载失败,请检查网络或联系管理员")}};async function F(X){const V=X?{signal:X}:void 0;n(!0),M(null);try{const ce=await Re("/api/admin/dashboard/stats",V);ce!=null&&ce.success&&(g(ce.totalUsers??0),N(ce.paidOrderCount??0),v(ce.totalRevenue??0),C(ce.conversionRate??0))}catch(ce){if((ce==null?void 0:ce.name)!=="AbortError"){console.error("stats 失败,尝试 overview 降级",ce);try{const be=await Re("/api/admin/dashboard/overview",V);be!=null&&be.success&&(g(be.totalUsers??0),N(be.paidOrderCount??0),v(be.totalRevenue??0),C(be.conversionRate??0))}catch(be){q(be)}}}finally{n(!1)}try{const ce=await Re("/api/admin/balance/summary",V);ce!=null&&ce.success&&ce.data&&_(ce.data.totalGifted??0)}catch{}a(!0),o(!0);const re=async()=>{try{const ce=await Re("/api/admin/dashboard/recent-orders?limit=10",V);if(ce!=null&&ce.success&&ce.recentOrders)f(ce.recentOrders);else throw new Error("no data")}catch(ce){if((ce==null?void 0:ce.name)!=="AbortError")try{const be=await Re("/api/admin/orders?page=1&pageSize=20&status=paid",V),Le=((be==null?void 0:be.orders)??[]).filter(lt=>["paid","completed","success"].includes(lt.status||""));f(Le.slice(0,5))}catch{f([])}}finally{a(!1)}},ue=async()=>{try{const ce=await Re("/api/admin/dashboard/new-users",V);if(ce!=null&&ce.success&&ce.newUsers)u(ce.newUsers);else throw new Error("no data")}catch(ce){if((ce==null?void 0:ce.name)!=="AbortError")try{const be=await Re("/api/db/users?page=1&pageSize=10",V);u((be==null?void 0:be.users)??[])}catch{u([])}}finally{o(!1)}};await Promise.all([re(),ue()])}async function L(X){const V=X||pe;I(!0);try{const re=await Re(`/api/admin/track/stats?period=${V}`);re!=null&&re.success&&K({total:re.total??0,byModule:re.byModule??{}})}catch{K(null)}finally{I(!1)}}b.useEffect(()=>{const X=new AbortController;F(X.signal),L();const V=setInterval(()=>{F(),L()},3e4);return()=>{X.abort(),clearInterval(V)}},[]);const W=m,oe=X=>{const V=X.productType||"",re=X.description||"";if(V==="balance_recharge")return{title:`余额充值 ¥${typeof X.amount=="number"?X.amount.toFixed(2):parseFloat(String(X.amount||"0")).toFixed(2)}`,subtitle:"余额充值"};if(V==="gift_pay")return{title:`代付 ¥${typeof X.amount=="number"?X.amount.toFixed(2):parseFloat(String(X.amount||"0")).toFixed(2)}`,subtitle:"好友代付"};if(V==="gift_pay_batch"){const ue=typeof X.amount=="number"?X.amount.toFixed(2):parseFloat(String(X.amount||"0")).toFixed(2);return{title:re||`代付分享 ¥${ue}`,subtitle:"代付分享"}}if(V==="section"&&re.includes("代付领取"))return{title:re.replace("代付领取 - ",""),subtitle:"代付领取"};if(re){if(V==="section"&&re.includes("章节")){if(re.includes("-")){const ue=re.split("-");if(ue.length>=3)return{title:`第${ue[1]}章 第${ue[2]}节`,subtitle:"《一场Soul的创业实验》"}}return{title:re,subtitle:"章节购买"}}return V==="fullbook"||re.includes("全书")?{title:"《一场Soul的创业实验》",subtitle:"全书购买"}:V==="vip"||re.includes("VIP")?{title:"超级个体开通费用",subtitle:"超级个体"}:V==="match"||re.includes("伙伴")?{title:"找伙伴匹配",subtitle:"功能服务"}:{title:re,subtitle:V==="section"?"单章":V==="fullbook"?"全书":"其他"}}return V==="section"?{title:`章节 ${X.productId||""}`,subtitle:"单章购买"}:V==="fullbook"?{title:"《一场Soul的创业实验》",subtitle:"全书购买"}:V==="vip"?{title:"超级个体开通费用",subtitle:"超级个体"}:V==="match"?{title:"找伙伴匹配",subtitle:"功能服务"}:{title:"未知商品",subtitle:V||"其他"}},Q=[{title:"总用户数",value:e?null:W,sub:null,icon:Rn,color:"text-blue-400",bg:"bg-blue-500/20",link:"/users"},{title:"总收入",value:e?null:`¥${(w??0).toFixed(2)}`,sub:O>0?`含代付 ¥${O.toFixed(2)}`:null,icon:rd,color:"text-[#38bdac]",bg:"bg-[#38bdac]/20",link:"/orders"},{title:"订单数",value:e?null:y,sub:null,icon:Jg,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:Hs,color:"text-orange-400",bg:"bg-orange-500/20",link:"/distribution"}];return r.jsxs("div",{className:"p-8 w-full",children:[r.jsx("h1",{className:"text-2xl font-bold mb-8 text-white",children:"数据概览"}),E&&r.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:[r.jsx("span",{children:E}),r.jsx("button",{type:"button",onClick:()=>F(),className:"text-amber-400 hover:text-amber-300 underline",children:"重试"})]}),r.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8",children:Q.map((X,V)=>r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl cursor-pointer hover:border-[#38bdac]/50 transition-colors group",onClick:()=>X.link&&t(X.link),children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between pb-2",children:[r.jsx(Ye,{className:"text-sm font-medium text-gray-400",children:X.title}),r.jsx("div",{className:`p-2 rounded-lg ${X.bg}`,children:r.jsx(X.icon,{className:`w-4 h-4 ${X.color}`})})]}),r.jsx(Ee,{children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("div",{className:"text-2xl font-bold text-white min-h-8 flex items-center",children:X.value!=null?X.value:r.jsxs("span",{className:"inline-flex items-center gap-2 text-gray-500",children:[r.jsx(We,{className:"w-4 h-4 animate-spin"}),"加载中"]})}),X.sub&&r.jsx("p",{className:"text-xs text-gray-500 mt-1",children:X.sub})]}),r.jsx(Ol,{className:"w-5 h-5 text-gray-600 group-hover:text-[#38bdac] transition-colors"})]})})]},V))}),r.jsxs("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-8",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between",children:[r.jsx(Ye,{className:"text-white",children:"最近订单"}),r.jsxs("button",{type:"button",onClick:()=>F(),disabled:s||i,className:"text-xs text-gray-400 hover:text-[#38bdac] flex items-center gap-1 disabled:opacity-50",title:"刷新",children:[s||i?r.jsx(We,{className:"w-3.5 h-3.5 animate-spin"}):r.jsx(We,{className:"w-3.5 h-3.5"}),"刷新(每 30 秒自动更新)"]})]}),r.jsx(Ee,{children:r.jsx("div",{className:"space-y-3",children:s&&h.length===0?r.jsxs("div",{className:"flex flex-col items-center justify-center py-12 text-gray-500",children:[r.jsx(We,{className:"w-8 h-8 animate-spin mb-2"}),r.jsx("span",{className:"text-sm",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[h.slice(0,se?10:4).map(X=>{var be;const V=X.referrerId?c.find(Pe=>Pe.id===X.referrerId):void 0,re=X.referralCode||(V==null?void 0:V.referralCode)||(V==null?void 0:V.nickname)||(X.referrerId?String(X.referrerId).slice(0,8):""),ue=oe(X),ce=X.userNickname||((be=c.find(Pe=>Pe.id===X.userId))==null?void 0:be.nickname)||"匿名用户";return r.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:[r.jsxs("div",{className:"flex items-start gap-3 flex-1",children:[X.userAvatar?r.jsx("img",{src:X.userAvatar,alt:ce,className:"w-9 h-9 rounded-full object-cover flex-shrink-0 mt-0.5",onError:Pe=>{Pe.currentTarget.style.display="none";const Le=Pe.currentTarget.nextElementSibling;Le&&Le.classList.remove("hidden")}}):null,r.jsx("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 mt-0.5 ${X.userAvatar?"hidden":""}`,children:ce.charAt(0)}),r.jsxs("div",{className:"flex-1 min-w-0",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-1",children:[r.jsx("button",{type:"button",onClick:()=>{X.userId&&($(X.userId),R(!0))},className:"text-sm text-[#38bdac] hover:text-[#2da396] hover:underline text-left",children:ce}),r.jsx("span",{className:"text-gray-600",children:"·"}),r.jsx("span",{className:"text-sm font-medium text-white truncate",children:ue.title})]}),r.jsxs("div",{className:"flex items-center gap-2 text-xs text-gray-500",children:[ue.subtitle&&ue.subtitle!=="章节购买"&&r.jsx("span",{className:"px-1.5 py-0.5 bg-gray-700/50 rounded",children:ue.subtitle}),r.jsx("span",{children:new Date(X.createdAt||0).toLocaleString("zh-CN",{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"})})]}),re&&r.jsxs("p",{className:"text-xs text-gray-600 mt-1",children:["推荐: ",re]})]})]}),r.jsxs("div",{className:"text-right ml-4 flex-shrink-0",children:[r.jsxs("p",{className:"text-sm font-bold text-[#38bdac]",children:["+¥",Number(X.amount).toFixed(2)]}),r.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:X.paymentMethod||"微信"})]})]},X.id)}),h.length>4&&!se&&r.jsx("button",{type:"button",onClick:()=>ne(!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&&!s&&r.jsxs("div",{className:"text-center py-12",children:[r.jsx(Jg,{className:"w-12 h-12 text-gray-600 mx-auto mb-3"}),r.jsx("p",{className:"text-gray-500",children:"暂无订单数据"})]})]})})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"新注册用户"})}),r.jsx(Ee,{children:r.jsx("div",{className:"space-y-3",children:i&&c.length===0?r.jsxs("div",{className:"flex flex-col items-center justify-center py-12 text-gray-500",children:[r.jsx(We,{className:"w-8 h-8 animate-spin mb-2"}),r.jsx("span",{className:"text-sm",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[c.slice(0,5).map(X=>{var V;return r.jsxs("div",{className:"flex items-center justify-between p-4 bg-[#0a1628] rounded-lg border border-gray-700/30",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx("div",{className:"w-10 h-10 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm font-medium text-[#38bdac]",children:((V=X.nickname)==null?void 0:V.charAt(0))||"?"}),r.jsxs("div",{children:[r.jsx("button",{type:"button",onClick:()=>{$(X.id),R(!0)},className:"text-sm font-medium text-[#38bdac] hover:text-[#2da396] hover:underline text-left",children:X.nickname||"匿名用户"}),r.jsx("p",{className:"text-xs text-gray-500",children:X.phone||"-"})]})]}),r.jsx("p",{className:"text-xs text-gray-400",children:X.createdAt?new Date(X.createdAt).toLocaleDateString():"-"})]},X.id)}),c.length===0&&!i&&r.jsx("p",{className:"text-gray-500 text-center py-8",children:"暂无用户数据"})]})})})]})]}),r.jsxs(Ce,{className:"mt-8 bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between",children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Vg,{className:"w-5 h-5 text-[#38bdac]"}),"分类标签点击统计"]}),r.jsx("div",{className:"flex items-center gap-2",children:["today","week","month","all"].map(X=>r.jsx("button",{type:"button",onClick:()=>{ge(X),L(X)},className:`px-3 py-1 text-xs rounded-full transition-colors ${pe===X?"bg-[#38bdac] text-white":"bg-gray-700/50 text-gray-400 hover:bg-gray-700"}`,children:{today:"今日",week:"本周",month:"本月",all:"全部"}[X]},X))})]}),r.jsx(Ee,{children:U&&!z?r.jsxs("div",{className:"flex items-center justify-center py-12 text-gray-500",children:[r.jsx(We,{className:"w-6 h-6 animate-spin mr-2"}),r.jsx("span",{children:"加载中..."})]}):z&&Object.keys(z.byModule).length>0?r.jsxs("div",{className:"space-y-6",children:[r.jsxs("p",{className:"text-sm text-gray-400",children:["总点击 ",r.jsx("span",{className:"text-white font-bold text-lg",children:z.total})," 次"]}),r.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",children:Object.entries(z.byModule).sort((X,V)=>V[1].reduce((re,ue)=>re+ue.count,0)-X[1].reduce((re,ue)=>re+ue.count,0)).map(([X,V])=>{const re=V.reduce((ce,be)=>ce+be.count,0),ue={home:"首页",chapters:"目录",read:"阅读",my:"我的",vip:"VIP",wallet:"钱包",match:"找伙伴",referral:"推广",search:"搜索",settings:"设置",about:"关于",other:"其他"};return r.jsxs("div",{className:"bg-[#0a1628] rounded-lg border border-gray-700/30 p-4",children:[r.jsxs("div",{className:"flex items-center justify-between mb-3",children:[r.jsx("span",{className:"text-sm font-medium text-[#38bdac]",children:ue[X]||X}),r.jsxs("span",{className:"text-xs text-gray-500",children:[re," 次"]})]}),r.jsx("div",{className:"space-y-2",children:V.sort((ce,be)=>be.count-ce.count).slice(0,8).map((ce,be)=>{const Pe={开始匹配:"开始匹配",mentor:"导师顾问",team:"团队招募",investor:"资源对接",充值:"充值",退款:"退款",wallet:"钱包",设置:"设置",VIP:"VIP会员",推广:"推广中心",目录:"目录",搜索:"搜索",匹配:"找伙伴",settings:"设置",expired:"已过期",active:"活跃",converted:"已转化",fill_profile:"完善资料",register:"注册",purchase:"购买",btn_click:"按钮点击",nav_click:"导航点击",card_click:"卡片点击",tab_click:"标签切换",rule_trigger:"规则触发",view_chapter:"浏览章节",链接卡若:"链接卡若",更多分享:"更多分享",分享朋友圈文案:"分享朋友圈",选择金额10:"选择金额10元"},Le={btn_click:"按钮点击",nav_click:"导航点击",card_click:"卡片点击",tab_click:"标签切换",purchase:"购买",register:"注册",rule_trigger:"规则触发",view_chapter:"浏览章节"},lt=Pe[ce.target]||ce.target||Le[ce.action]||ce.action;return r.jsxs("div",{className:"flex items-center justify-between text-xs",children:[r.jsx("span",{className:"text-gray-300 truncate mr-2",title:`${ce.action}: ${ce.target}`,children:lt}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[r.jsx("div",{className:"w-16 h-1.5 bg-gray-700 rounded-full overflow-hidden",children:r.jsx("div",{className:"h-full bg-[#38bdac] rounded-full",style:{width:`${re>0?ce.count/re*100:0}%`}})}),r.jsx("span",{className:"text-gray-400 w-8 text-right",children:ce.count})]})]},be)})})]},X)})})]}):r.jsxs("div",{className:"text-center py-12",children:[r.jsx(Vg,{className:"w-12 h-12 text-gray-600 mx-auto mb-3"}),r.jsx("p",{className:"text-gray-500",children:"暂无点击数据"}),r.jsx("p",{className:"text-gray-600 text-xs mt-1",children:"小程序端接入埋点后,数据将在此实时展示"})]})})]}),r.jsx(x0,{open:D,onClose:()=>{R(!1),$(null)},userId:P,onUserUpdated:()=>F()})]})}const cs=b.forwardRef(({className:t,...e},n)=>r.jsx("div",{className:"relative w-full overflow-auto",children:r.jsx("table",{ref:n,className:Tt("w-full caption-bottom text-sm",t),...e})}));cs.displayName="Table";const ds=b.forwardRef(({className:t,...e},n)=>r.jsx("thead",{ref:n,className:Tt("[&_tr]:border-b",t),...e}));ds.displayName="TableHeader";const us=b.forwardRef(({className:t,...e},n)=>r.jsx("tbody",{ref:n,className:Tt("[&_tr:last-child]:border-0",t),...e}));us.displayName="TableBody";const it=b.forwardRef(({className:t,...e},n)=>r.jsx("tr",{ref:n,className:Tt("border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",t),...e}));it.displayName="TableRow";const ke=b.forwardRef(({className:t,...e},n)=>r.jsx("th",{ref:n,className:Tt("h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",t),...e}));ke.displayName="TableHead";const Ne=b.forwardRef(({className:t,...e},n)=>r.jsx("td",{ref:n,className:Tt("p-4 align-middle [&:has([role=checkbox])]:pr-0",t),...e}));Ne.displayName="TableCell";function y0(t,e){const[n,s]=b.useState(t);return b.useEffect(()=>{const a=setTimeout(()=>s(t),e);return()=>clearTimeout(a)},[t,e]),n}function Vs({page:t,totalPages:e,total:n,pageSize:s,onPageChange:a,onPageSizeChange:i,pageSizeOptions:o=[10,20,50,100]}){return e<=1&&!i?null:r.jsxs("div",{className:"flex items-center justify-between gap-4 py-4 px-5 border-t border-gray-700/50",children:[r.jsxs("div",{className:"flex items-center gap-2 text-sm text-gray-400",children:[r.jsxs("span",{children:["共 ",n," 条"]}),i&&r.jsx("select",{value:s,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=>r.jsxs("option",{value:c,children:[c," 条/页"]},c))})]}),e>1&&r.jsxs("div",{className:"flex items-center gap-2",children:[r.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:"首页"}),r.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:"上一页"}),r.jsxs("span",{className:"px-3 py-1 text-gray-400 text-sm",children:[t," / ",e]}),r.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:"下一页"}),r.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 fP(){const[t,e]=b.useState([]),[n,s]=b.useState([]),[a,i]=b.useState(0),[o,c]=b.useState(0),[u,h]=b.useState(0),[f,m]=b.useState(1),[g,y]=b.useState(10),[N,w]=b.useState(""),v=y0(N,300),[k,C]=b.useState("all"),[E,M]=b.useState(!0),[P,$]=b.useState(null),[D,R]=b.useState(null),[O,_]=b.useState(""),[se,ne]=b.useState(!1);async function pe(){M(!0),$(null);try{const F=k==="all"?"":k==="completed"?"completed":k,L=new URLSearchParams({page:String(f),pageSize:String(g),...F&&{status:F},...v&&{search:v}}),[W,oe]=await Promise.all([Re(`/api/admin/orders?${L}`),Re("/api/db/users?page=1&pageSize=500")]);W!=null&&W.success&&(e(W.orders||[]),i(W.total??0),c(W.totalRevenue??0),h(W.todayRevenue??0)),oe!=null&&oe.success&&oe.users&&s(oe.users)}catch(F){console.error("加载订单失败",F),$("加载订单失败,请检查网络后重试")}finally{M(!1)}}b.useEffect(()=>{m(1)},[v,k]),b.useEffect(()=>{pe()},[f,g,v,k]);const ge=F=>{var L;return F.userNickname||((L=n.find(W=>W.id===F.userId))==null?void 0:L.nickname)||"匿名用户"},z=F=>{var L;return((L=n.find(W=>W.id===F))==null?void 0:L.phone)||"-"},K=F=>{const L=F.productType||F.type||"",W=F.description||"";if(L==="balance_recharge")return{name:`余额充值 ¥${Number(F.amount||0).toFixed(2)}`,type:"余额充值"};if(W){if(L==="section"&&(W.includes("章节")||W.includes("代付领取"))){if(W.includes("代付领取"))return{name:W.replace("代付领取 - ",""),type:"代付领取"};if(W.includes("-")){const oe=W.split("-");if(oe.length>=3)return{name:`第${oe[1]}章 第${oe[2]}节`,type:"《一场Soul的创业实验》"}}return{name:W,type:"章节购买"}}return L==="fullbook"||W.includes("全书")?{name:"《一场Soul的创业实验》",type:"全书购买"}:L==="vip"||W.includes("VIP")?{name:"超级个体开通费用",type:"超级个体"}:L==="match"||W.includes("伙伴")?{name:"找伙伴匹配",type:"功能服务"}:{name:W,type:"其他"}}return L==="section"?{name:`章节 ${F.productId||F.sectionId||""}`,type:"单章"}:L==="fullbook"?{name:"《一场Soul的创业实验》",type:"全书"}:L==="vip"?{name:"超级个体开通费用",type:"超级个体"}:L==="match"?{name:"找伙伴匹配",type:"功能"}:{name:"未知商品",type:L||"其他"}},U=Math.ceil(a/g)||1;async function I(){var F;if(!(!(D!=null&&D.orderSn)&&!(D!=null&&D.id))){ne(!0),$(null);try{const L=await _t("/api/admin/orders/refund",{orderSn:D.orderSn||D.id,reason:O||void 0});L!=null&&L.success?(R(null),_(""),pe()):$((L==null?void 0:L.error)||"退款失败")}catch(L){const W=L;$(((F=W==null?void 0:W.data)==null?void 0:F.error)||"退款失败,请检查网络后重试")}finally{ne(!1)}}}function q(){if(t.length===0){ae.info("暂无数据可导出");return}const F=["订单号","用户","手机号","商品","金额","支付方式","状态","退款原因","分销佣金","下单时间"],L=t.map(V=>{const re=K(V);return[V.orderSn||V.id||"",ge(V),z(V.userId),re.name,Number(V.amount||0).toFixed(2),V.paymentMethod==="wechat"?"微信支付":V.paymentMethod==="balance"?"余额支付":V.paymentMethod==="alipay"?"支付宝":V.paymentMethod||"微信支付",V.status==="refunded"?"已退款":V.status==="paid"||V.status==="completed"?"已完成":V.status==="pending"||V.status==="created"?"待支付":"已失败",V.status==="refunded"&&V.refundReason?V.refundReason:"-",V.referrerEarnings?Number(V.referrerEarnings).toFixed(2):"-",V.createdAt?new Date(V.createdAt).toLocaleString("zh-CN"):""].join(",")}),W="\uFEFF"+[F.join(","),...L].join(` -`),oe=new Blob([W],{type:"text/csv;charset=utf-8"}),Q=URL.createObjectURL(oe),X=document.createElement("a");X.href=Q,X.download=`订单列表_${new Date().toISOString().slice(0,10)}.csv`,X.click(),URL.revokeObjectURL(Q)}return r.jsxs("div",{className:"p-8 w-full",children:[P&&r.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:[r.jsx("span",{children:P}),r.jsx("button",{type:"button",onClick:()=>$(null),className:"hover:text-red-300",children:"×"})]}),r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"订单管理"}),r.jsxs("p",{className:"text-gray-400 mt-1",children:["共 ",t.length," 笔订单"]})]}),r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsxs(Z,{variant:"outline",onClick:pe,disabled:E,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${E?"animate-spin":""}`}),"刷新"]}),r.jsxs("div",{className:"flex items-center gap-2 text-sm",children:[r.jsx("span",{className:"text-gray-400",children:"总收入:"}),r.jsxs("span",{className:"text-[#38bdac] font-bold",children:["¥",o.toFixed(2)]}),r.jsx("span",{className:"text-gray-600",children:"|"}),r.jsx("span",{className:"text-gray-400",children:"今日:"}),r.jsxs("span",{className:"text-[#FFD700] font-bold",children:["¥",u.toFixed(2)]})]})]})]}),r.jsxs("div",{className:"flex items-center gap-4 mb-6",children:[r.jsxs("div",{className:"relative flex-1 max-w-md",children:[r.jsx(ka,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-500"}),r.jsx(ie,{type:"text",placeholder:"搜索订单号/用户/章节...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white placeholder:text-gray-500",value:N,onChange:F=>w(F.target.value)})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(ij,{className:"w-4 h-4 text-gray-400"}),r.jsxs("select",{value:k,onChange:F=>C(F.target.value),className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:[r.jsx("option",{value:"all",children:"全部状态"}),r.jsx("option",{value:"completed",children:"已完成"}),r.jsx("option",{value:"pending",children:"待支付"}),r.jsx("option",{value:"created",children:"已创建"}),r.jsx("option",{value:"failed",children:"已失败"}),r.jsx("option",{value:"refunded",children:"已退款"})]})]}),r.jsxs(Z,{variant:"outline",onClick:q,disabled:t.length===0,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(pM,{className:"w-4 h-4 mr-2"}),"导出 CSV"]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Ee,{className:"p-0",children:E?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs("div",{children:[r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"订单号"}),r.jsx(ke,{className:"text-gray-400",children:"用户"}),r.jsx(ke,{className:"text-gray-400",children:"商品"}),r.jsx(ke,{className:"text-gray-400",children:"金额"}),r.jsx(ke,{className:"text-gray-400",children:"支付方式"}),r.jsx(ke,{className:"text-gray-400",children:"状态"}),r.jsx(ke,{className:"text-gray-400",children:"退款原因"}),r.jsx(ke,{className:"text-gray-400",children:"分销佣金"}),r.jsx(ke,{className:"text-gray-400",children:"下单时间"}),r.jsx(ke,{className:"text-gray-400",children:"操作"})]})}),r.jsxs(us,{children:[t.map(F=>{const L=K(F);return r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsxs(Ne,{className:"font-mono text-xs text-gray-400",children:[(F.orderSn||F.id||"").slice(0,12),"..."]}),r.jsx(Ne,{children:r.jsxs("div",{children:[r.jsxs("p",{className:"text-white text-sm flex items-center gap-2",children:[ge(F),F.paymentMethod==="gift_pay"&&r.jsx(Ue,{className:"bg-emerald-500/20 text-emerald-400 hover:bg-emerald-500/20 border-0 text-xs",children:"代付领取"}),F.payerUserId&&F.paymentMethod!=="gift_pay"&&r.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 hover:bg-amber-500/20 border-0 text-xs",children:"代付"})]}),r.jsx("p",{className:"text-gray-500 text-xs",children:z(F.userId)}),F.payerUserId&&F.payerNickname&&r.jsxs("p",{className:"text-amber-400/80 text-xs mt-0.5",children:[F.paymentMethod==="gift_pay"?"赠送人:":"代付人:",F.payerNickname]})]})}),r.jsx(Ne,{children:r.jsxs("div",{children:[r.jsxs("p",{className:"text-white text-sm flex items-center gap-2",children:[L.name,(F.productType||F.type)==="vip"&&r.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 hover:bg-amber-500/20 border-0 text-xs",children:"超级个体"})]}),r.jsx("p",{className:"text-gray-500 text-xs",children:L.type})]})}),r.jsxs(Ne,{className:"text-[#38bdac] font-bold",children:["¥",Number(F.amount||0).toFixed(2)]}),r.jsx(Ne,{className:"text-gray-300",children:F.paymentMethod==="wechat"?"微信支付":F.paymentMethod==="balance"?"余额支付":F.paymentMethod==="alipay"?"支付宝":F.paymentMethod||"微信支付"}),r.jsx(Ne,{children:F.status==="refunded"?r.jsx(Ue,{className:"bg-gray-500/20 text-gray-400 hover:bg-gray-500/20 border-0",children:"已退款"}):F.status==="paid"||F.status==="completed"?r.jsx(Ue,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"已完成"}):F.status==="pending"||F.status==="created"?r.jsx(Ue,{className:"bg-yellow-500/20 text-yellow-400 hover:bg-yellow-500/20 border-0",children:"待支付"}):r.jsx(Ue,{className:"bg-red-500/20 text-red-400 hover:bg-red-500/20 border-0",children:"已失败"})}),r.jsx(Ne,{className:"text-gray-400 text-sm max-w-[120px] truncate",title:F.refundReason,children:F.status==="refunded"&&F.refundReason?F.refundReason:"-"}),r.jsx(Ne,{className:"text-[#FFD700]",children:F.referrerEarnings?`¥${Number(F.referrerEarnings).toFixed(2)}`:"-"}),r.jsx(Ne,{className:"text-gray-400 text-sm",children:new Date(F.createdAt).toLocaleString("zh-CN")}),r.jsx(Ne,{children:(F.status==="paid"||F.status==="completed")&&F.paymentMethod!=="balance"&&r.jsxs(Z,{variant:"outline",size:"sm",className:"border-orange-500/50 text-orange-400 hover:bg-orange-500/20",onClick:()=>{R(F),_("")},children:[r.jsx(uj,{className:"w-3 h-3 mr-1"}),"退款"]})})]},F.id)}),t.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:10,className:"text-center py-12 text-gray-500",children:"暂无订单数据"})})]})]}),r.jsx(Vs,{page:f,totalPages:U,total:a,pageSize:g,onPageChange:m,onPageSizeChange:F=>{y(F),m(1)}})]})})}),r.jsx(Mt,{open:!!D,onOpenChange:F=>!F&&R(null),children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[r.jsx(At,{children:r.jsx(It,{className:"text-white",children:"订单退款"})}),D&&r.jsxs("div",{className:"space-y-4",children:[r.jsxs("p",{className:"text-gray-400 text-sm",children:["订单号:",D.orderSn||D.id]}),r.jsxs("p",{className:"text-gray-400 text-sm",children:["退款金额:¥",Number(D.amount||0).toFixed(2)]}),r.jsxs("div",{children:[r.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"退款原因(选填)"}),r.jsx("div",{className:"form-input",children:r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"如:用户申请退款",value:O,onChange:F=>_(F.target.value)})})]}),r.jsx("p",{className:"text-orange-400/80 text-xs",children:"退款将原路退回至用户微信,且无法撤销,请确认后再操作。"})]}),r.jsxs(Zt,{children:[r.jsx(Z,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:()=>R(null),disabled:se,children:"取消"}),r.jsx(Z,{className:"bg-orange-500 hover:bg-orange-600 text-white",onClick:I,disabled:se,children:se?"退款中...":"确认退款"})]})]})})]})}const sc=b.forwardRef(({className:t,...e},n)=>r.jsx("textarea",{className:Tt("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}));sc.displayName="Textarea";const Xu=[{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 pP(){var na,$a,sa,Fa,Ui;const[t,e]=Zw(),n=t.get("pool"),[s,a]=b.useState([]),[i,o]=b.useState(0),[c,u]=b.useState(1),[h,f]=b.useState(10),[m,g]=b.useState(""),y=y0(m,300),N=n==="vip"?"vip":n==="complete"?"complete":"all",[w,v]=b.useState(N),[k,C]=b.useState(!0),[E,M]=b.useState(!1),[P,$]=b.useState(null),[D,R]=b.useState(!1),[O,_]=b.useState("desc");b.useEffect(()=>{n==="vip"?v("vip"):n==="complete"?v("complete"):n==="all"&&v("all")},[n]);const[se,ne]=b.useState(!1),[pe,ge]=b.useState(null),[z,K]=b.useState(!1),[U,I]=b.useState(!1),[q,F]=b.useState({referrals:[],stats:{}}),[L,W]=b.useState(!1),[oe,Q]=b.useState(null),[X,V]=b.useState(!1),[re,ue]=b.useState(null),[ce,be]=b.useState({phone:"",nickname:"",password:"",isAdmin:!1,hasFullBook:!1}),[Pe,Le]=b.useState([]),[lt,Rt]=b.useState(!1),[dn,gt]=b.useState(!1),[sn,Pn]=b.useState(null),[Pt,Qt]=b.useState({title:"",description:"",trigger:"",sort:0,enabled:!0}),[rn,On]=b.useState([]),[ms,Dn]=b.useState(!1),[Wn,J]=b.useState(null),[Ke,Ge]=b.useState(null),[mt,ct]=b.useState({}),[st,pt]=b.useState(!1);async function Lt(G=!1){var Oe;C(!0),G&&M(!0),$(null);try{if(D){const Be=new URLSearchParams({search:y,limit:String(h*5)}),Qe=await Re(`/api/db/users/rfm?${Be}`);if(Qe!=null&&Qe.success){let Kt=Qe.users||[];O==="asc"&&(Kt=[...Kt].reverse());const xs=(c-1)*h;a(Kt.slice(xs,xs+h)),o(((Oe=Qe.users)==null?void 0:Oe.length)??0),Kt.length===0&&(R(!1),$("暂无订单数据,RFM 排序需要用户有购买记录后才能生效"))}else R(!1),$((Qe==null?void 0:Qe.error)||"RFM 加载失败,已切回普通模式")}else{const Be=new URLSearchParams({page:String(c),pageSize:String(h),search:y,...w==="vip"&&{vip:"true"},...w==="complete"&&{pool:"complete"}}),Qe=await Re(`/api/db/users?${Be}`);Qe!=null&&Qe.success?(a(Qe.users||[]),o(Qe.total??0)):$((Qe==null?void 0:Qe.error)||"加载失败")}}catch(Be){console.error("Load users error:",Be),$("网络错误")}finally{C(!1),G&&M(!1)}}b.useEffect(()=>{u(1)},[y,w,D]),b.useEffect(()=>{Lt()},[c,h,y,w,D,O]);const yn=Math.ceil(i/h)||1,gs=()=>{D?O==="desc"?_("asc"):(R(!1),_("desc")):(R(!0),_("desc"))},js=G=>({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"})[G||""]||"bg-gray-500/20 text-gray-400";async function Mr(G){var Oe;if(confirm("确定要删除这个用户吗?"))try{const Be=await Hr(`/api/db/users?id=${encodeURIComponent(G)}`);Be!=null&&Be.success?(ae.success("已删除"),Lt()):ae.error("删除失败: "+((Be==null?void 0:Be.error)||"未知错误"))}catch(Be){const Qe=Be,Kt=((Oe=Qe==null?void 0:Qe.data)==null?void 0:Oe.error)||(Qe==null?void 0:Qe.message)||"网络错误";ae.error("删除失败: "+Kt)}}const Ks=G=>{ge(G),be({phone:G.phone||"",nickname:G.nickname||"",password:"",isAdmin:!!(G.isAdmin??!1),hasFullBook:!!(G.hasFullBook??!1)}),ne(!0)},Ar=()=>{ge(null),be({phone:"",nickname:"",password:"",isAdmin:!1,hasFullBook:!1}),ne(!0)};async function me(){if(!ce.phone||!ce.nickname){ae.error("请填写手机号和昵称");return}K(!0);try{if(pe){const G=await _t("/api/db/users",{id:pe.id,phone:ce.phone||void 0,nickname:ce.nickname,isAdmin:ce.isAdmin,hasFullBook:ce.hasFullBook,...ce.password&&{password:ce.password}});if(!(G!=null&&G.success)){ae.error("更新失败: "+((G==null?void 0:G.error)||""));return}}else{const G=await yt("/api/db/users",{phone:ce.phone,nickname:ce.nickname,password:ce.password,isAdmin:ce.isAdmin});if(!(G!=null&&G.success)){ae.error("创建失败: "+((G==null?void 0:G.error)||""));return}}ne(!1),Lt()}catch{ae.error("保存失败")}finally{K(!1)}}async function ye(G){Q(G),I(!0),W(!0);try{const Oe=await Re(`/api/db/users/referrals?userId=${encodeURIComponent(G.id)}`);Oe!=null&&Oe.success?F({referrals:Oe.referrals||[],stats:Oe.stats||{}}):F({referrals:[],stats:{}})}catch{F({referrals:[],stats:{}})}finally{W(!1)}}const Ot=b.useCallback(async()=>{Rt(!0);try{const G=await Re("/api/db/user-rules");G!=null&&G.success&&Le(G.rules||[])}catch{}finally{Rt(!1)}},[]);async function Zn(){if(!Pt.title){ae.error("请填写规则标题");return}K(!0);try{if(sn){const G=await _t("/api/db/user-rules",{id:sn.id,...Pt});if(!(G!=null&&G.success)){ae.error("更新失败: "+((G==null?void 0:G.error)||""));return}}else{const G=await yt("/api/db/user-rules",Pt);if(!(G!=null&&G.success)){ae.error("创建失败: "+((G==null?void 0:G.error)||""));return}}gt(!1),Ot()}catch{ae.error("保存失败")}finally{K(!1)}}async function Ra(G){if(confirm("确定删除?"))try{const Oe=await Hr(`/api/db/user-rules?id=${G}`);Oe!=null&&Oe.success&&Ot()}catch{}}async function Hi(G){try{await _t("/api/db/user-rules",{id:G.id,enabled:!G.enabled}),Ot()}catch{}}const ks=b.useCallback(async()=>{Dn(!0);try{const G=await Re("/api/db/vip-members?limit=500");if(G!=null&&G.success&&G.data){const Oe=[...G.data].map((Be,Qe)=>({...Be,vipSort:typeof Be.vipSort=="number"?Be.vipSort:Qe+1}));Oe.sort((Be,Qe)=>(Be.vipSort??999999)-(Qe.vipSort??999999)),On(Oe)}else G&&G.error&&ae.error(G.error)}catch{ae.error("加载超级个体列表失败")}finally{Dn(!1)}},[]),[Pa,qs]=b.useState(!1),[Ir,cr]=b.useState(null),[Rr,dr]=b.useState(""),[Ko,Gs]=b.useState(!1),Oa=["创业者","资源整合者","技术达人","投资人","产品经理","流量操盘手"],Da=G=>{cr(G),dr(G.vipRole||""),qs(!0)},ur=async G=>{const Oe=G.trim();if(Ir){if(!Oe){ae.error("请选择或输入标签");return}Gs(!0);try{const Be=await _t("/api/db/users",{id:Ir.id,vipRole:Oe});if(!(Be!=null&&Be.success)){ae.error((Be==null?void 0:Be.error)||"更新超级个体标签失败");return}ae.success("已更新超级个体标签"),qs(!1),cr(null),await ks()}catch{ae.error("更新超级个体标签失败")}finally{Gs(!1)}}},[qo,Zr]=b.useState(!1),[bt,un]=b.useState(null),[La,_a]=b.useState(""),[Go,ea]=b.useState(!1),Wi=G=>{un(G),_a(G.vipSort!=null?String(G.vipSort):""),Zr(!0)},ta=async()=>{if(!bt)return;const G=Number(La);if(!Number.isFinite(G)){ae.error("请输入有效的数字序号");return}ea(!0);try{const Oe=await _t("/api/db/users",{id:bt.id,vipSort:G});if(!(Oe!=null&&Oe.success)){ae.error((Oe==null?void 0:Oe.error)||"更新排序序号失败");return}ae.success("已更新排序序号"),Zr(!1),un(null),await ks()}catch{ae.error("更新排序序号失败")}finally{ea(!1)}},hr=(G,Oe)=>{G.dataTransfer.effectAllowed="move",G.dataTransfer.setData("text/plain",Oe),J(Oe)},za=(G,Oe)=>{G.preventDefault(),Ke!==Oe&&Ge(Oe)},cc=()=>{J(null),Ge(null)},Ut=async(G,Oe)=>{G.preventDefault();const Be=G.dataTransfer.getData("text/plain")||Wn;if(J(null),Ge(null),!Be||Be===Oe)return;const Qe=rn.find(qt=>qt.id===Be),Kt=rn.find(qt=>qt.id===Oe);if(!Qe||!Kt)return;const xs=Qe.vipSort??rn.findIndex(qt=>qt.id===Be)+1,Yo=Kt.vipSort??rn.findIndex(qt=>qt.id===Oe)+1;On(qt=>{const Un=[...qt],an=Un.findIndex(En=>En.id===Be),fr=Un.findIndex(En=>En.id===Oe);if(an===-1||fr===-1)return qt;const Js=[...Un],[Ki,Ba]=[Js[an],Js[fr]];return Js[an]={...Ba,vipSort:xs},Js[fr]={...Ki,vipSort:Yo},Js});try{const[qt,Un]=await Promise.all([_t("/api/db/users",{id:Be,vipSort:Yo}),_t("/api/db/users",{id:Oe,vipSort:xs})]);if(!(qt!=null&&qt.success)||!(Un!=null&&Un.success)){ae.error((qt==null?void 0:qt.error)||(Un==null?void 0:Un.error)||"更新排序失败"),await ks();return}ae.success("已更新排序"),await ks()}catch{ae.error("更新排序失败"),await ks()}},Jo=b.useCallback(async()=>{pt(!0);try{const G=await Re("/api/db/users/journey-stats");G!=null&&G.success&&G.stats&&ct(G.stats)}catch{}finally{pt(!1)}},[]);return r.jsxs("div",{className:"p-8 w-full",children:[P&&r.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:[r.jsx("span",{children:P}),r.jsx("button",{type:"button",onClick:()=>$(null),children:"×"})]}),r.jsx("div",{className:"flex justify-between items-center mb-6",children:r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"用户管理"}),r.jsxs("p",{className:"text-gray-400 mt-1 text-sm",children:["共 ",i," 位注册用户",D&&" · RFM 排序中"]})]})}),r.jsxs(zd,{defaultValue:"users",className:"w-full",children:[r.jsxs(nc,{className:"bg-[#0a1628] border border-gray-700/50 p-1 mb-6 flex-wrap h-auto gap-1",children:[r.jsxs(en,{value:"users",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",children:[r.jsx(Rn,{className:"w-4 h-4"})," 用户列表"]}),r.jsxs(en,{value:"journey",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:Jo,children:[r.jsx(Dl,{className:"w-4 h-4"})," 用户旅程总览"]}),r.jsxs(en,{value:"rules",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:Ot,children:[r.jsx(jo,{className:"w-4 h-4"})," 规则配置"]}),r.jsxs(en,{value:"vip-roles",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:ks,children:[r.jsx(zl,{className:"w-4 h-4"})," 超级个体列表"]})]}),r.jsxs(tn,{value:"users",children:[r.jsxs("div",{className:"flex items-center gap-3 mb-4 justify-end flex-wrap",children:[r.jsxs(Z,{variant:"outline",onClick:()=>Lt(!0),disabled:E,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${E?"animate-spin":""}`})," 刷新"]}),r.jsxs("select",{value:w,onChange:G=>{const Oe=G.target.value;v(Oe),u(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:D,children:[r.jsx("option",{value:"all",children:"全部用户"}),r.jsx("option",{value:"vip",children:"VIP会员(超级个体)"}),r.jsx("option",{value:"complete",children:"完善资料用户"})]}),r.jsxs("div",{className:"relative",children:[r.jsx(ka,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-500"}),r.jsx(ie,{type:"text",placeholder:"搜索用户...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white placeholder:text-gray-500 w-56",value:m,onChange:G=>g(G.target.value)})]}),r.jsxs(Z,{onClick:Ar,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(Qg,{className:"w-4 h-4 mr-2"})," 添加用户"]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Ee,{className:"p-0",children:k?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs("div",{children:[r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"用户信息"}),r.jsx(ke,{className:"text-gray-400",children:"绑定信息"}),r.jsx(ke,{className:"text-gray-400",children:"购买状态"}),r.jsx(ke,{className:"text-gray-400",children:"分销收益"}),r.jsxs(ke,{className:"text-gray-400 cursor-pointer select-none",onClick:gs,children:[r.jsxs("div",{className:"flex items-center gap-1 group",children:[r.jsx(rd,{className:"w-3.5 h-3.5"}),r.jsx("span",{children:"RFM分值"}),D?O==="desc"?r.jsx(yd,{className:"w-3.5 h-3.5 text-[#38bdac]"}):r.jsx(tj,{className:"w-3.5 h-3.5 text-[#38bdac]"}):r.jsx(Bm,{className:"w-3.5 h-3.5 text-gray-600 group-hover:text-gray-400"})]}),D&&r.jsx("div",{className:"text-[10px] text-[#38bdac] font-normal mt-0.5",children:"点击切换方向/关闭"})]}),r.jsx(ke,{className:"text-gray-400",children:"注册时间"}),r.jsx(ke,{className:"text-right text-gray-400",children:"操作"})]})}),r.jsxs(us,{children:[s.map(G=>{var Oe,Be,Qe;return r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(Ne,{children:r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx("div",{className:"w-10 h-10 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm font-medium text-[#38bdac]",children:G.avatar?r.jsx("img",{src:G.avatar,className:"w-full h-full rounded-full object-cover",alt:""}):((Oe=G.nickname)==null?void 0:Oe.charAt(0))||"?"}),r.jsxs("div",{children:[r.jsxs("div",{className:"flex items-center gap-1.5",children:[r.jsx("button",{type:"button",onClick:()=>{ue(G.id),V(!0)},className:"font-medium text-[#38bdac] hover:text-[#2da396] hover:underline text-left",children:G.nickname}),G.isAdmin&&r.jsx(Ue,{className:"bg-purple-500/20 text-purple-400 hover:bg-purple-500/20 border-0 text-xs",children:"管理员"}),G.openId&&!((Be=G.id)!=null&&Be.startsWith("user_"))&&r.jsx(Ue,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0 text-xs",children:"微信"})]}),r.jsx("p",{className:"text-xs text-gray-500 font-mono",children:G.openId?G.openId.slice(0,12)+"...":(Qe=G.id)==null?void 0:Qe.slice(0,12)})]})]})}),r.jsx(Ne,{children:r.jsxs("div",{className:"space-y-1",children:[G.phone&&r.jsxs("div",{className:"flex items-center gap-1 text-xs",children:[r.jsx("span",{className:"text-gray-500",children:"📱"}),r.jsx("span",{className:"text-gray-300",children:G.phone})]}),G.wechatId&&r.jsxs("div",{className:"flex items-center gap-1 text-xs",children:[r.jsx("span",{className:"text-gray-500",children:"💬"}),r.jsx("span",{className:"text-gray-300",children:G.wechatId})]}),G.openId&&r.jsxs("div",{className:"flex items-center gap-1 text-xs",children:[r.jsx("span",{className:"text-gray-500",children:"🔗"}),r.jsxs("span",{className:"text-gray-500 truncate max-w-[100px]",title:G.openId,children:[G.openId.slice(0,12),"..."]})]}),!G.phone&&!G.wechatId&&!G.openId&&r.jsx("span",{className:"text-gray-600 text-xs",children:"未绑定"})]})}),r.jsx(Ne,{children:G.hasFullBook?r.jsx(Ue,{className:"bg-amber-500/20 text-amber-400 hover:bg-amber-500/20 border-0",children:"VIP"}):r.jsx(Ue,{variant:"outline",className:"text-gray-500 border-gray-600",children:"未购买"})}),r.jsx(Ne,{children:r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"text-white font-medium",children:["¥",parseFloat(String(G.earnings||0)).toFixed(2)]}),parseFloat(String(G.pendingEarnings||0))>0&&r.jsxs("div",{className:"text-xs text-yellow-400",children:["待提现: ¥",parseFloat(String(G.pendingEarnings||0)).toFixed(2)]}),r.jsxs("div",{className:"text-xs text-[#38bdac] cursor-pointer hover:underline flex items-center gap-1",onClick:()=>ye(G),role:"button",tabIndex:0,onKeyDown:Kt=>Kt.key==="Enter"&&ye(G),children:[r.jsx(Rn,{className:"w-3 h-3"})," 绑定",G.referralCount||0,"人"]})]})}),r.jsx(Ne,{children:G.rfmScore!==void 0?r.jsx("div",{className:"flex flex-col gap-1",children:r.jsxs("div",{className:"flex items-center gap-1.5",children:[r.jsx("span",{className:"text-white font-bold text-base",children:G.rfmScore}),r.jsx(Ue,{className:`border-0 text-xs ${js(G.rfmLevel)}`,children:G.rfmLevel})]})}):r.jsxs("span",{className:"text-gray-600 text-sm",children:["— ",r.jsx("span",{className:"text-xs text-gray-700",children:"点列头排序"})]})}),r.jsx(Ne,{className:"text-gray-400",children:G.createdAt?new Date(G.createdAt).toLocaleDateString():"-"}),r.jsx(Ne,{className:"text-right",children:r.jsxs("div",{className:"flex items-center justify-end gap-1",children:[r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>{ue(G.id),V(!0)},className:"text-gray-400 hover:text-blue-400 hover:bg-blue-400/10",title:"用户详情",children:r.jsx(Ug,{className:"w-4 h-4"})}),r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>Ks(G),className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",title:"编辑用户",children:r.jsx(Vt,{className:"w-4 h-4"})}),r.jsx(Z,{variant:"ghost",size:"sm",className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",onClick:()=>Mr(G.id),title:"删除",children:r.jsx(Jn,{className:"w-4 h-4"})})]})})]},G.id)}),s.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:7,className:"text-center py-12 text-gray-500",children:"暂无用户数据"})})]})]}),r.jsx(Vs,{page:c,totalPages:yn,total:i,pageSize:h,onPageChange:u,onPageSizeChange:G=>{f(G),u(1)}})]})})})]}),r.jsxs(tn,{value:"journey",children:[r.jsxs("div",{className:"flex items-center justify-between mb-5",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"用户从注册到 VIP 的完整行动路径,点击各阶段查看用户动态"}),r.jsxs(Z,{variant:"outline",onClick:Jo,disabled:st,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${st?"animate-spin":""}`})," 刷新数据"]})]}),r.jsxs("div",{className:"relative mb-8",children:[r.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"}),r.jsx("div",{className:"grid grid-cols-4 gap-4 lg:grid-cols-8",children:Xu.map((G,Oe)=>r.jsxs("div",{className:"relative flex flex-col items-center",children:[r.jsxs("div",{className:`relative w-full p-3 rounded-xl border ${G.color} text-center cursor-default`,children:[r.jsx("div",{className:"text-2xl mb-1",children:G.icon}),r.jsx("div",{className:`text-xs font-medium ${G.color.split(" ").find(Be=>Be.startsWith("text-"))}`,children:G.label}),mt[G.id]!==void 0&&r.jsxs("div",{className:"mt-1.5 text-xs text-gray-400",children:[r.jsx("span",{className:"font-bold text-white",children:mt[G.id]})," 人"]}),r.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:Oe+1})]}),Oer.jsxs("div",{className:"flex items-start gap-3 p-2 bg-[#0a1628] rounded",children:[r.jsx("span",{className:"text-[#38bdac] font-mono text-xs shrink-0 mt-0.5",children:G.step}),r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-300",children:G.action}),r.jsxs("p",{className:"text-gray-600 text-xs",children:["→ ",G.next]})]})]},G.step))})]}),r.jsxs("div",{className:"bg-[#0f2137] border border-gray-700/50 rounded-lg p-4",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(Hs,{className:"w-4 h-4 text-purple-400"}),r.jsx("span",{className:"text-white font-medium",children:"行为锚点统计"}),r.jsx("span",{className:"text-gray-500 text-xs ml-auto",children:"实时更新"})]}),st?r.jsx("div",{className:"flex items-center justify-center py-8",children:r.jsx(We,{className:"w-5 h-5 text-[#38bdac] animate-spin"})}):Object.keys(mt).length>0?r.jsx("div",{className:"space-y-2",children:Xu.map(G=>{const Oe=mt[G.id]||0,Be=Math.max(...Xu.map(Kt=>mt[Kt.id]||0),1),Qe=Math.round(Oe/Be*100);return r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsxs("span",{className:"text-gray-500 text-xs w-20 shrink-0",children:[G.icon," ",G.label]}),r.jsx("div",{className:"flex-1 h-2 bg-[#0a1628] rounded-full overflow-hidden",children:r.jsx("div",{className:"h-full bg-[#38bdac]/60 rounded-full transition-all",style:{width:`${Qe}%`}})}),r.jsx("span",{className:"text-gray-400 text-xs w-10 text-right",children:Oe})]},G.id)})}):r.jsx("div",{className:"text-center py-8",children:r.jsx("p",{className:"text-gray-500 text-sm",children:"点击「刷新数据」加载统计"})})]})]})]}),r.jsxs(tn,{value:"rules",children:[r.jsxs("div",{className:"mb-4 flex items-center justify-between",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"用户旅程引导规则,定义各行为节点的触发条件与引导内容"}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsxs(Z,{variant:"outline",onClick:Ot,disabled:lt,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${lt?"animate-spin":""}`})," 刷新"]}),r.jsxs(Z,{onClick:()=>{Pn(null),Qt({title:"",description:"",trigger:"",sort:0,enabled:!0}),gt(!0)},className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(pn,{className:"w-4 h-4 mr-2"})," 添加规则"]})]})]}),lt?r.jsx("div",{className:"flex items-center justify-center py-12",children:r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"})}):Pe.length===0?r.jsxs("div",{className:"text-center py-16 bg-[#0f2137] rounded-lg border border-gray-700/50",children:[r.jsx(Hs,{className:"w-12 h-12 text-[#38bdac]/30 mx-auto mb-4"}),r.jsx("p",{className:"text-gray-400 mb-4",children:"暂无规则(重启服务将自动写入10条默认规则)"}),r.jsxs(Z,{onClick:Ot,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(We,{className:"w-4 h-4 mr-2"})," 重新加载"]})]}):r.jsx("div",{className:"space-y-2",children:Pe.map(G=>r.jsx("div",{className:`p-4 rounded-lg border transition-all ${G.enabled?"bg-[#0f2137] border-gray-700/50":"bg-[#0a1628]/50 border-gray-700/30 opacity-55"}`,children:r.jsxs("div",{className:"flex items-start justify-between",children:[r.jsxs("div",{className:"flex-1",children:[r.jsxs("div",{className:"flex items-center gap-2 flex-wrap mb-1",children:[r.jsx(Vt,{className:"w-4 h-4 text-[#38bdac] shrink-0"}),r.jsx("span",{className:"text-white font-medium",children:G.title}),G.trigger&&r.jsxs(Ue,{className:"bg-[#38bdac]/10 text-[#38bdac] border border-[#38bdac]/30 text-xs",children:["触发:",G.trigger]}),r.jsx(Ue,{className:`text-xs border-0 ${G.enabled?"bg-green-500/20 text-green-400":"bg-gray-500/20 text-gray-400"}`,children:G.enabled?"启用":"禁用"})]}),G.description&&r.jsx("p",{className:"text-gray-400 text-sm ml-6",children:G.description})]}),r.jsxs("div",{className:"flex items-center gap-2 ml-4 shrink-0",children:[r.jsx(St,{checked:G.enabled,onCheckedChange:()=>Hi(G)}),r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>{Pn(G),Qt({title:G.title,description:G.description,trigger:G.trigger,sort:G.sort,enabled:G.enabled}),gt(!0)},className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",children:r.jsx(Vt,{className:"w-4 h-4"})}),r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>Ra(G.id),className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",children:r.jsx(Jn,{className:"w-4 h-4"})})]})]})},G.id))})]}),r.jsxs(tn,{value:"vip-roles",children:[r.jsxs("div",{className:"mb-4 flex items-center justify-between",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"展示当前所有有效的超级个体(VIP 用户),用于检查会员信息与排序值。"}),r.jsx("p",{className:"text-xs text-[#38bdac]",children:"提示:按住任意一行即可拖拽排序,释放后将同步更新小程序展示顺序。"})]}),r.jsx("div",{className:"flex items-center gap-2",children:r.jsxs(Z,{variant:"outline",onClick:ks,disabled:ms,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${ms?"animate-spin":""}`})," ","刷新"]})})]}),ms?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):rn.length===0?r.jsxs("div",{className:"text-center py-16 bg-[#0f2137] rounded-lg border border-gray-700/50",children:[r.jsx(zl,{className:"w-12 h-12 text-amber-400/30 mx-auto mb-4"}),r.jsx("p",{className:"text-gray-400 mb-4",children:"当前没有有效的超级个体用户。"})]}):r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Ee,{className:"p-0",children:r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400 w-16",children:"序号"}),r.jsx(ke,{className:"text-gray-400",children:"成员"}),r.jsx(ke,{className:"text-gray-400 min-w-48",children:"超级个体标签"}),r.jsx(ke,{className:"text-gray-400 w-24",children:"排序值"}),r.jsx(ke,{className:"text-gray-400 w-40 text-right",children:"操作"})]})}),r.jsx(us,{children:rn.map((G,Oe)=>{var Kt;const Be=Wn===G.id,Qe=Ke===G.id;return r.jsxs(it,{draggable:!0,onDragStart:xs=>hr(xs,G.id),onDragOver:xs=>za(xs,G.id),onDrop:xs=>Ut(xs,G.id),onDragEnd:cc,className:`border-gray-700/50 cursor-grab active:cursor-grabbing select-none ${Be?"opacity-60":""} ${Qe?"bg-[#38bdac]/10":""}`,children:[r.jsx(Ne,{className:"text-gray-300",children:Oe+1}),r.jsx(Ne,{children:r.jsxs("div",{className:"flex items-center gap-3",children:[G.avatar?r.jsx("img",{src:G.avatar,className:"w-8 h-8 rounded-full object-cover border border-amber-400/60"}):r.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:((Kt=G.name)==null?void 0:Kt[0])||"创"}),r.jsx("div",{className:"min-w-0",children:r.jsx("div",{className:"text-white text-sm truncate",children:G.name})})]})}),r.jsx(Ne,{className:"text-gray-300 whitespace-nowrap",children:G.vipRole||r.jsx("span",{className:"text-gray-500",children:"(未设置超级个体标签)"})}),r.jsx(Ne,{className:"text-gray-300",children:G.vipSort??Oe+1}),r.jsx(Ne,{className:"text-right text-xs text-gray-300",children:r.jsxs("div",{className:"inline-flex items-center gap-1.5",children:[r.jsx(Z,{variant:"ghost",size:"sm",className:"h-7 w-7 px-0 text-amber-300 hover:text-amber-200",onClick:()=>Da(G),title:"设置超级个体标签",children:r.jsx(sd,{className:"w-3.5 h-3.5"})}),r.jsx(Z,{variant:"ghost",size:"sm",className:"h-7 w-7 px-0 text-[#38bdac] hover:text-[#5fe0cd]",onClick:()=>{ue(G.id),V(!0)},title:"编辑资料",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),r.jsx(Z,{variant:"ghost",size:"sm",className:"h-7 w-7 px-0 text-sky-300 hover:text-sky-200",onClick:()=>Wi(G),title:"设置排序序号",children:r.jsx(Bm,{className:"w-3.5 h-3.5"})})]})})]},G.id)})})]})})})]})]}),r.jsx(Mt,{open:qo,onOpenChange:G=>{Zr(G),G||un(null)},children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-sm",children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(Bm,{className:"w-5 h-5 text-[#38bdac]"}),"设置排序 — ",bt==null?void 0:bt.name]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"排序序号(数字越小越靠前)"}),r.jsx(ie,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:1",value:La,onChange:G=>_a(G.target.value)})]}),r.jsxs(Zt,{children:[r.jsxs(Z,{variant:"outline",onClick:()=>Zr(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(is,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(Z,{onClick:ta,disabled:Go,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),Go?"保存中...":"保存"]})]})]})}),r.jsx(Mt,{open:Pa,onOpenChange:G=>{qs(G),G||cr(null)},children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(zl,{className:"w-5 h-5 text-amber-400"}),"设置超级个体标签 — ",Ir==null?void 0:Ir.name]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"选择或输入标签"}),r.jsx("div",{className:"flex flex-wrap gap-2",children:Oa.map(G=>r.jsx(Z,{variant:Rr===G?"default":"outline",size:"sm",className:Rr===G?"bg-[#38bdac] hover:bg-[#2da396] text-white":"border-gray-600 text-gray-300 hover:bg-gray-700/50",onClick:()=>dr(G),children:G},G))}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"或手动输入"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:创业者、资源整合者等",value:Rr,onChange:G=>dr(G.target.value)})]})]}),r.jsxs(Zt,{children:[r.jsxs(Z,{variant:"outline",onClick:()=>qs(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(is,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(Z,{onClick:()=>ur(Rr),disabled:Ko,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),Ko?"保存中...":"保存"]})]})]})}),r.jsx(Mt,{open:se,onOpenChange:ne,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[pe?r.jsx(Vt,{className:"w-5 h-5 text-[#38bdac]"}):r.jsx(Qg,{className:"w-5 h-5 text-[#38bdac]"}),pe?"编辑用户":"添加用户"]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"手机号"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"请输入手机号",value:ce.phone,onChange:G=>be({...ce,phone:G.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"昵称"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"请输入昵称",value:ce.nickname,onChange:G=>be({...ce,nickname:G.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:pe?"新密码 (留空则不修改)":"密码"}),r.jsx(ie,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:pe?"留空则不修改":"请输入密码",value:ce.password,onChange:G=>be({...ce,password:G.target.value})})]}),r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsx(ee,{className:"text-gray-300",children:"管理员权限"}),r.jsx(St,{checked:ce.isAdmin,onCheckedChange:G=>be({...ce,isAdmin:G})})]}),r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsx(ee,{className:"text-gray-300",children:"已购全书"}),r.jsx(St,{checked:ce.hasFullBook,onCheckedChange:G=>be({...ce,hasFullBook:G})})]})]}),r.jsxs(Zt,{children:[r.jsxs(Z,{variant:"outline",onClick:()=>ne(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(is,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(Z,{onClick:me,disabled:z,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),z?"保存中...":"保存"]})]})]})}),r.jsx(Mt,{open:dn,onOpenChange:gt,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(Vt,{className:"w-5 h-5 text-[#38bdac]"}),sn?"编辑规则":"添加规则"]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"规则标题 *"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例:匹配后填写头像、付款1980需填写信息",value:Pt.title,onChange:G=>Qt({...Pt,title:G.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"规则描述"}),r.jsx(sc,{className:"bg-[#0a1628] border-gray-700 text-white min-h-[80px] resize-none",placeholder:"详细说明规则内容...",value:Pt.description,onChange:G=>Qt({...Pt,description:G.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"触发条件"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例:完成匹配、付款后、注册时",value:Pt.trigger,onChange:G=>Qt({...Pt,trigger:G.target.value})})]}),r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsx("div",{children:r.jsx(ee,{className:"text-gray-300",children:"启用状态"})}),r.jsx(St,{checked:Pt.enabled,onCheckedChange:G=>Qt({...Pt,enabled:G})})]})]}),r.jsxs(Zt,{children:[r.jsxs(Z,{variant:"outline",onClick:()=>gt(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(is,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(Z,{onClick:Zn,disabled:z,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),z?"保存中...":"保存"]})]})]})}),r.jsx(Mt,{open:U,onOpenChange:I,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-2xl max-h-[80vh] overflow-auto",children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(Rn,{className:"w-5 h-5 text-[#38bdac]"}),"绑定关系 - ",oe==null?void 0:oe.nickname]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-4 gap-3",children:[r.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[r.jsx("div",{className:"text-2xl font-bold text-[#38bdac]",children:((na=q.stats)==null?void 0:na.total)||0}),r.jsx("div",{className:"text-xs text-gray-400",children:"绑定总数"})]}),r.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[r.jsx("div",{className:"text-2xl font-bold text-green-400",children:(($a=q.stats)==null?void 0:$a.purchased)||0}),r.jsx("div",{className:"text-xs text-gray-400",children:"已付费"})]}),r.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[r.jsxs("div",{className:"text-2xl font-bold text-yellow-400",children:["¥",(((sa=q.stats)==null?void 0:sa.earnings)||0).toFixed(2)]}),r.jsx("div",{className:"text-xs text-gray-400",children:"累计收益"})]}),r.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[r.jsxs("div",{className:"text-2xl font-bold text-orange-400",children:["¥",(((Fa=q.stats)==null?void 0:Fa.pendingEarnings)||0).toFixed(2)]}),r.jsx("div",{className:"text-xs text-gray-400",children:"待提现"})]})]}),L?r.jsxs("div",{className:"flex items-center justify-center py-8",children:[r.jsx(We,{className:"w-5 h-5 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):(((Ui=q.referrals)==null?void 0:Ui.length)??0)>0?r.jsx("div",{className:"space-y-2 max-h-[300px] overflow-y-auto",children:(q.referrals??[]).map((G,Oe)=>{var Qe;const Be=G;return r.jsxs("div",{className:"flex items-center justify-between bg-[#0a1628] rounded-lg p-3",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx("div",{className:"w-8 h-8 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm text-[#38bdac]",children:((Qe=Be.nickname)==null?void 0:Qe.charAt(0))||"?"}),r.jsxs("div",{children:[r.jsx("div",{className:"text-white text-sm",children:Be.nickname}),r.jsx("div",{className:"text-xs text-gray-500",children:Be.phone||(Be.hasOpenId?"微信用户":"未绑定")})]})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[Be.status==="vip"&&r.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0 text-xs",children:"全书已购"}),Be.status==="paid"&&r.jsxs(Ue,{className:"bg-blue-500/20 text-blue-400 border-0 text-xs",children:["已付费",Be.purchasedSections,"章"]}),Be.status==="free"&&r.jsx(Ue,{className:"bg-gray-500/20 text-gray-400 border-0 text-xs",children:"未付费"}),r.jsx("span",{className:"text-xs text-gray-500",children:Be.createdAt?new Date(Be.createdAt).toLocaleDateString():""})]})]},Be.id||Oe)})}):r.jsx("div",{className:"text-center py-8 text-gray-500",children:"暂无绑定用户"})]}),r.jsx(Zt,{children:r.jsx(Z,{variant:"outline",onClick:()=>I(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"关闭"})})]})}),r.jsx(x0,{open:X,onClose:()=>V(!1),userId:re,onUserUpdated:Lt})]})}function Ph(t,[e,n]){return Math.min(n,Math.max(e,t))}var Rk=["PageUp","PageDown"],Pk=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],Ok={"from-left":["Home","PageDown","ArrowDown","ArrowLeft"],"from-right":["Home","PageDown","ArrowDown","ArrowRight"],"from-bottom":["Home","PageDown","ArrowDown","ArrowLeft"],"from-top":["Home","PageDown","ArrowUp","ArrowLeft"]},rc="Slider",[nx,mP,gP]=f0(rc),[Dk]=_i(rc,[gP]),[xP,$f]=Dk(rc),Lk=b.forwardRef((t,e)=>{const{name:n,min:s=0,max:a=100,step:i=1,orientation:o="horizontal",disabled:c=!1,minStepsBetweenThumbs:u=0,defaultValue:h=[s],value:f,onValueChange:m=()=>{},onValueCommit:g=()=>{},inverted:y=!1,form:N,...w}=t,v=b.useRef(new Set),k=b.useRef(0),E=o==="horizontal"?yP:bP,[M=[],P]=Io({prop:f,defaultProp:h,onChange:se=>{var pe;(pe=[...v.current][k.current])==null||pe.focus(),m(se)}}),$=b.useRef(M);function D(se){const ne=kP(M,se);_(se,ne)}function R(se){_(se,k.current)}function O(){const se=$.current[k.current];M[k.current]!==se&&g(M)}function _(se,ne,{commit:pe}={commit:!1}){const ge=TP(i),z=MP(Math.round((se-s)/i)*i+s,ge),K=Ph(z,[s,a]);P((U=[])=>{const I=wP(U,K,ne);if(EP(I,u*i)){k.current=I.indexOf(K);const q=String(I)!==String(U);return q&&pe&&g(I),q?I:U}else return U})}return r.jsx(xP,{scope:t.__scopeSlider,name:n,disabled:c,min:s,max:a,valueIndexToChangeRef:k,thumbs:v.current,values:M,orientation:o,form:N,children:r.jsx(nx.Provider,{scope:t.__scopeSlider,children:r.jsx(nx.Slot,{scope:t.__scopeSlider,children:r.jsx(E,{"aria-disabled":c,"data-disabled":c?"":void 0,...w,ref:e,onPointerDown:ot(w.onPointerDown,()=>{c||($.current=M)}),min:s,max:a,inverted:y,onSlideStart:c?void 0:D,onSlideMove:c?void 0:R,onSlideEnd:c?void 0:O,onHomeKeyDown:()=>!c&&_(s,0,{commit:!0}),onEndKeyDown:()=>!c&&_(a,M.length-1,{commit:!0}),onStepKeyDown:({event:se,direction:ne})=>{if(!c){const z=Rk.includes(se.key)||se.shiftKey&&Pk.includes(se.key)?10:1,K=k.current,U=M[K],I=i*z*ne;_(U+I,K,{commit:!0})}}})})})})});Lk.displayName=rc;var[_k,zk]=Dk(rc,{startEdge:"left",endEdge:"right",size:"width",direction:1}),yP=b.forwardRef((t,e)=>{const{min:n,max:s,dir:a,inverted:i,onSlideStart:o,onSlideMove:c,onSlideEnd:u,onStepKeyDown:h,...f}=t,[m,g]=b.useState(null),y=Et(e,E=>g(E)),N=b.useRef(void 0),w=Lf(a),v=w==="ltr",k=v&&!i||!v&&i;function C(E){const M=N.current||m.getBoundingClientRect(),P=[0,M.width],D=b0(P,k?[n,s]:[s,n]);return N.current=M,D(E-M.left)}return r.jsx(_k,{scope:t.__scopeSlider,startEdge:k?"left":"right",endEdge:k?"right":"left",direction:k?1:-1,size:"width",children:r.jsx($k,{dir:w,"data-orientation":"horizontal",...f,ref:y,style:{...f.style,"--radix-slider-thumb-transform":"translateX(-50%)"},onSlideStart:E=>{const M=C(E.clientX);o==null||o(M)},onSlideMove:E=>{const M=C(E.clientX);c==null||c(M)},onSlideEnd:()=>{N.current=void 0,u==null||u()},onStepKeyDown:E=>{const P=Ok[k?"from-left":"from-right"].includes(E.key);h==null||h({event:E,direction:P?-1:1})}})})}),bP=b.forwardRef((t,e)=>{const{min:n,max:s,inverted:a,onSlideStart:i,onSlideMove:o,onSlideEnd:c,onStepKeyDown:u,...h}=t,f=b.useRef(null),m=Et(e,f),g=b.useRef(void 0),y=!a;function N(w){const v=g.current||f.current.getBoundingClientRect(),k=[0,v.height],E=b0(k,y?[s,n]:[n,s]);return g.current=v,E(w-v.top)}return r.jsx(_k,{scope:t.__scopeSlider,startEdge:y?"bottom":"top",endEdge:y?"top":"bottom",size:"height",direction:y?1:-1,children:r.jsx($k,{"data-orientation":"vertical",...h,ref:m,style:{...h.style,"--radix-slider-thumb-transform":"translateY(50%)"},onSlideStart:w=>{const v=N(w.clientY);i==null||i(v)},onSlideMove:w=>{const v=N(w.clientY);o==null||o(v)},onSlideEnd:()=>{g.current=void 0,c==null||c()},onStepKeyDown:w=>{const k=Ok[y?"from-bottom":"from-top"].includes(w.key);u==null||u({event:w,direction:k?-1:1})}})})}),$k=b.forwardRef((t,e)=>{const{__scopeSlider:n,onSlideStart:s,onSlideMove:a,onSlideEnd:i,onHomeKeyDown:o,onEndKeyDown:c,onStepKeyDown:u,...h}=t,f=$f(rc,n);return r.jsx(ht.span,{...h,ref:e,onKeyDown:ot(t.onKeyDown,m=>{m.key==="Home"?(o(m),m.preventDefault()):m.key==="End"?(c(m),m.preventDefault()):Rk.concat(Pk).includes(m.key)&&(u(m),m.preventDefault())}),onPointerDown:ot(t.onPointerDown,m=>{const g=m.target;g.setPointerCapture(m.pointerId),m.preventDefault(),f.thumbs.has(g)?g.focus():s(m)}),onPointerMove:ot(t.onPointerMove,m=>{m.target.hasPointerCapture(m.pointerId)&&a(m)}),onPointerUp:ot(t.onPointerUp,m=>{const g=m.target;g.hasPointerCapture(m.pointerId)&&(g.releasePointerCapture(m.pointerId),i(m))})})}),Fk="SliderTrack",Bk=b.forwardRef((t,e)=>{const{__scopeSlider:n,...s}=t,a=$f(Fk,n);return r.jsx(ht.span,{"data-disabled":a.disabled?"":void 0,"data-orientation":a.orientation,...s,ref:e})});Bk.displayName=Fk;var sx="SliderRange",Vk=b.forwardRef((t,e)=>{const{__scopeSlider:n,...s}=t,a=$f(sx,n),i=zk(sx,n),o=b.useRef(null),c=Et(e,o),u=a.values.length,h=a.values.map(g=>Uk(g,a.min,a.max)),f=u>1?Math.min(...h):0,m=100-Math.max(...h);return r.jsx(ht.span,{"data-orientation":a.orientation,"data-disabled":a.disabled?"":void 0,...s,ref:c,style:{...t.style,[i.startEdge]:f+"%",[i.endEdge]:m+"%"}})});Vk.displayName=sx;var rx="SliderThumb",Hk=b.forwardRef((t,e)=>{const n=mP(t.__scopeSlider),[s,a]=b.useState(null),i=Et(e,c=>a(c)),o=b.useMemo(()=>s?n().findIndex(c=>c.ref.current===s):-1,[n,s]);return r.jsx(vP,{...t,ref:i,index:o})}),vP=b.forwardRef((t,e)=>{const{__scopeSlider:n,index:s,name:a,...i}=t,o=$f(rx,n),c=zk(rx,n),[u,h]=b.useState(null),f=Et(e,C=>h(C)),m=u?o.form||!!u.closest("form"):!0,g=g0(u),y=o.values[s],N=y===void 0?0:Uk(y,o.min,o.max),w=jP(s,o.values.length),v=g==null?void 0:g[c.size],k=v?SP(v,N,c.direction):0;return b.useEffect(()=>{if(u)return o.thumbs.add(u),()=>{o.thumbs.delete(u)}},[u,o.thumbs]),r.jsxs("span",{style:{transform:"var(--radix-slider-thumb-transform)",position:"absolute",[c.startEdge]:`calc(${N}% + ${k}px)`},children:[r.jsx(nx.ItemSlot,{scope:t.__scopeSlider,children:r.jsx(ht.span,{role:"slider","aria-label":t["aria-label"]||w,"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:ot(t.onFocus,()=>{o.valueIndexToChangeRef.current=s})})}),m&&r.jsx(Wk,{name:a??(o.name?o.name+(o.values.length>1?"[]":""):void 0),form:o.form,value:y},s)]})});Hk.displayName=rx;var NP="RadioBubbleInput",Wk=b.forwardRef(({__scopeSlider:t,value:e,...n},s)=>{const a=b.useRef(null),i=Et(a,s),o=m0(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]),r.jsx(ht.input,{style:{display:"none"},...n,ref:i,defaultValue:e})});Wk.displayName=NP;function wP(t=[],e,n){const s=[...t];return s[n]=e,s.sort((a,i)=>a-i)}function Uk(t,e,n){const i=100/(n-e)*(t-e);return Ph(i,[0,100])}function jP(t,e){return e>2?`Value ${t+1} of ${e}`:e===2?["Minimum","Maximum"][t]:void 0}function kP(t,e){if(t.length===1)return 0;const n=t.map(a=>Math.abs(a-e)),s=Math.min(...n);return n.indexOf(s)}function SP(t,e,n){const s=t/2,i=b0([0,50],[0,s]);return(s-i(e)*n)*n}function CP(t){return t.slice(0,-1).map((e,n)=>t[n+1]-e)}function EP(t,e){if(e>0){const n=CP(t);return Math.min(...n)>=e}return!0}function b0(t,e){return n=>{if(t[0]===t[1]||e[0]===e[1])return e[0];const s=(e[1]-e[0])/(t[1]-t[0]);return e[0]+s*(n-t[0])}}function TP(t){return(String(t).split(".")[1]||"").length}function MP(t,e){const n=Math.pow(10,e);return Math.round(t*n)/n}var AP=Lk,IP=Bk,RP=Vk,PP=Hk;function OP({className:t,defaultValue:e,value:n,min:s=0,max:a=100,...i}){const o=b.useMemo(()=>Array.isArray(n)?n:Array.isArray(e)?e:[s,a],[n,e,s,a]);return r.jsxs(AP,{defaultValue:e,value:n,min:s,max:a,className:Tt("relative flex w-full touch-none items-center select-none data-[disabled]:opacity-50",t),...i,children:[r.jsx(IP,{className:"bg-gray-600 relative grow overflow-hidden rounded-full h-1.5 w-full",children:r.jsx(RP,{className:"bg-[#38bdac] absolute h-full rounded-full"})}),Array.from({length:o.length},(c,u)=>r.jsx(PP,{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 DP={distributorShare:90,minWithdrawAmount:10,bindingDays:30,userDiscount:5,enableAutoWithdraw:!1,vipOrderShareVip:20,vipOrderShareNonVip:10};function Kk(t){const[e,n]=b.useState(DP),[s,a]=b.useState(!0),[i,o]=b.useState(!1);b.useEffect(()=>{Re("/api/admin/referral-settings").then(h=>{const f=h==null?void 0:h.data;f&&typeof f=="object"&&n({distributorShare:f.distributorShare??90,minWithdrawAmount:f.minWithdrawAmount??10,bindingDays:f.bindingDays??30,userDiscount:f.userDiscount??5,enableAutoWithdraw:f.enableAutoWithdraw??!1,vipOrderShareVip:f.vipOrderShareVip??20,vipOrderShareNonVip:f.vipOrderShareNonVip??10})}).catch(console.error).finally(()=>a(!1))},[]);const c=async()=>{o(!0);try{const h={distributorShare:Number(e.distributorShare)||0,minWithdrawAmount:Number(e.minWithdrawAmount)||0,bindingDays:Number(e.bindingDays)||0,userDiscount:Number(e.userDiscount)||0,enableAutoWithdraw:!!e.enableAutoWithdraw,vipOrderShareVip:Number(e.vipOrderShareVip)||20,vipOrderShareNonVip:Number(e.vipOrderShareNonVip)||10},f=await yt("/api/admin/referral-settings",h);if(!f||f.success===!1){ae.error("保存失败: "+(f&&typeof f=="object"&&"error"in f?f.error:""));return}ae.success(`✅ 分销配置已保存成功! - -• 小程序与网站的推广规则会一起生效 -• 绑定关系会使用新的天数配置 -• 佣金比例会立即应用到新订单 - -如有缓存,请刷新前台/小程序页面。`)}catch(h){console.error(h),ae.error("保存失败: "+(h instanceof Error?h.message:String(h)))}finally{o(!1)}},u=h=>f=>{const m=parseFloat(f.target.value||"0");n(g=>({...g,[h]:isNaN(m)?0:m}))};return s?r.jsx("div",{className:"p-8 text-gray-500",children:"加载中..."}):r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(Hl,{className:"w-5 h-5 text-[#38bdac]"}),"推广 / 分销设置"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"统一管理「好友优惠」「你得 90% 收益」「绑定期 30 天」「提现门槛」等规则,小程序和 Web 共用这套配置。"})]}),r.jsxs(Z,{onClick:c,disabled:i||s,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),i?"保存中...":"保存配置"]})]}),r.jsxs("div",{className:"space-y-6",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"flex items-center gap-2 text-white",children:[r.jsx(fA,{className:"w-4 h-4 text-[#38bdac]"}),"推广规则"]}),r.jsx(Dt,{className:"text-gray-400",children:"这三项会直接体现在小程序「推广规则」卡片上,同时影响实收佣金计算。"})]}),r.jsx(Ee,{className:"space-y-6",children:r.jsxs("div",{className:"grid grid-cols-3 gap-6",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(Hu,{className:"w-3 h-3 text-[#38bdac]"}),"好友优惠(%)"]}),r.jsx(ie,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.userDiscount,onChange:u("userDiscount")}),r.jsx("p",{className:"text-xs text-gray-500",children:"例如 5 表示好友立减 5%(在价格配置基础上生效)。"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(Rn,{className:"w-3 h-3 text-[#38bdac]"}),"推广者分成(%)"]}),r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsx(OP,{className:"flex-1",min:10,max:100,step:1,value:[e.distributorShare],onValueChange:([h])=>n(f=>({...f,distributorShare:h}))}),r.jsx(ie,{type:"number",min:0,max:100,className:"w-20 bg-[#0a1628] border-gray-700 text-white text-center",value:e.distributorShare,onChange:u("distributorShare")})]}),r.jsxs("p",{className:"text-xs text-gray-500",children:["内容订单佣金 = 订单金额 ×"," ",r.jsxs("span",{className:"text-[#38bdac] font-mono",children:[e.distributorShare,"%"]}),";会员订单见下方。"]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(Hu,{className:"w-3 h-3 text-[#38bdac]"}),"会员订单分润(推广者是会员 %)"]}),r.jsx(ie,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.vipOrderShareVip,onChange:u("vipOrderShareVip")}),r.jsx("p",{className:"text-xs text-gray-500",children:"推广者已是会员时,会员订单佣金比例,默认 20%。"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(Hu,{className:"w-3 h-3 text-[#38bdac]"}),"会员订单分润(推广者非会员 %)"]}),r.jsx(ie,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.vipOrderShareNonVip,onChange:u("vipOrderShareNonVip")}),r.jsx("p",{className:"text-xs text-gray-500",children:"推广者非会员时,会员订单佣金比例,默认 10%。"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(Rn,{className:"w-3 h-3 text-[#38bdac]"}),"绑定有效期(天)"]}),r.jsx(ie,{type:"number",min:1,max:365,className:"bg-[#0a1628] border-gray-700 text-white",value:e.bindingDays,onChange:u("bindingDays")}),r.jsx("p",{className:"text-xs text-gray-500",children:"好友通过你的链接进来并登录后,绑定在你名下的天数。"})]})]})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"flex items-center gap-2 text-white",children:[r.jsx(Hl,{className:"w-4 h-4 text-[#38bdac]"}),"提现规则"]}),r.jsx(Dt,{className:"text-gray-400",children:"与「提现中心」「自动提现」相关的参数,影响推广者看到的可提现金额和最低门槛。"})]}),r.jsx(Ee,{className:"space-y-6",children:r.jsxs("div",{className:"grid grid-cols-2 gap-6",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"最低提现金额(元)"}),r.jsx(ie,{type:"number",min:0,step:1,className:"bg-[#0a1628] border-gray-700 text-white",value:e.minWithdrawAmount,onChange:u("minWithdrawAmount")}),r.jsx("p",{className:"text-xs text-gray-500",children:"小程序「满 X 元可提现」展示的门槛,同时用于后端接口校验。"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:["自动提现开关",r.jsx(Ue,{variant:"outline",className:"border-[#38bdac]/40 text-[#38bdac] text-[10px]",children:"预留"})]}),r.jsxs("div",{className:"flex items-center gap-3 mt-1",children:[r.jsx(St,{checked:e.enableAutoWithdraw,onCheckedChange:h=>n(f=>({...f,enableAutoWithdraw:h}))}),r.jsx("span",{className:"text-sm text-gray-400",children:"开启后,可结合定时任务实现「收益自动打款到微信零钱」。"})]})]})]})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs(Ye,{className:"flex items-center gap-2 text-gray-200 text-sm",children:[r.jsx(Hu,{className:"w-4 h-4 text-[#38bdac]"}),"使用说明"]})}),r.jsxs(Ee,{className:"space-y-2 text-xs text-gray-400 leading-relaxed",children:[r.jsxs("p",{children:["1. 以上配置会写入"," ",r.jsx("code",{className:"font-mono text-[11px] text-[#38bdac]",children:"system_config.referral_config"}),",小程序「推广中心」、Web 推广页以及支付回调都会读取同一份配置。"]}),r.jsx("p",{children:"2. 修改后新订单立即生效;旧订单的历史佣金不会自动重算,只影响之后产生的订单。"}),r.jsx("p",{children:"3. 如遇前端展示与实际结算不一致,优先以此处配置为准,再排查缓存和小程序版本。"})]})]})]})]})}function LP(){var Wn;const[t,e]=b.useState("overview"),[n,s]=b.useState([]),[a,i]=b.useState(null),[o,c]=b.useState([]),[u,h]=b.useState([]),[f,m]=b.useState([]),[g,y]=b.useState(!0),[N,w]=b.useState(null),[v,k]=b.useState(""),[C,E]=b.useState("all"),[M,P]=b.useState(1),[$,D]=b.useState(10),[R,O]=b.useState(0),[_,se]=b.useState(new Set),[ne,pe]=b.useState(null),[ge,z]=b.useState(""),[K,U]=b.useState(!1),[I,q]=b.useState(null),[F,L]=b.useState(""),[W,oe]=b.useState(!1),[Q,X]=b.useState([]),[V,re]=b.useState(1),[ue,ce]=b.useState(0),[be,Pe]=b.useState("");b.useEffect(()=>{Le()},[]),b.useEffect(()=>{P(1)},[t,C]),b.useEffect(()=>{lt(t)},[t]),b.useEffect(()=>{["orders","bindings","withdrawals"].includes(t)&<(t,!0),t==="giftPay"&<("giftPay",!0)},[M,$,C,v,V,be]);async function Le(){w(null);try{const J=await Re("/api/admin/distribution/overview");J!=null&&J.success&&J.overview&&i(J.overview)}catch(J){console.error("[Admin] 概览接口异常:",J),w("加载概览失败")}try{const J=await Re("/api/db/users");m((J==null?void 0:J.users)||[])}catch(J){console.error("[Admin] 用户数据加载失败:",J)}}async function lt(J,Ke=!1){var Ge;if(!(!Ke&&_.has(J))){y(!0);try{const mt=f;switch(J){case"overview":break;case"orders":{try{const ct=new URLSearchParams({page:String(M),pageSize:String($),...C!=="all"&&{status:C},...v&&{search:v}}),st=await Re(`/api/admin/orders?${ct}`);if(st!=null&&st.success&&st.orders){const pt=st.orders.map(Lt=>{const yn=mt.find(js=>js.id===Lt.userId),gs=Lt.referrerId?mt.find(js=>js.id===Lt.referrerId):null;return{...Lt,amount:parseFloat(String(Lt.amount))||0,userNickname:(yn==null?void 0:yn.nickname)||Lt.userNickname||"未知用户",userPhone:(yn==null?void 0:yn.phone)||Lt.userPhone||"-",referrerNickname:(gs==null?void 0:gs.nickname)||null,referrerCode:(gs==null?void 0:gs.referralCode)??null,type:Lt.productType||Lt.type}});s(pt),O(st.total??pt.length)}else s([]),O(0)}catch(ct){console.error(ct),w("加载订单失败"),s([])}break}case"bindings":{try{const ct=new URLSearchParams({page:String(M),pageSize:String($),...C!=="all"&&{status:C}}),st=await Re(`/api/db/distribution?${ct}`);c((st==null?void 0:st.bindings)||[]),O((st==null?void 0:st.total)??((Ge=st==null?void 0:st.bindings)==null?void 0:Ge.length)??0)}catch(ct){console.error(ct),w("加载绑定数据失败"),c([])}break}case"withdrawals":{try{const ct=C==="completed"?"success":C==="rejected"?"failed":C,st=new URLSearchParams({...ct&&ct!=="all"&&{status:ct},page:String(M),pageSize:String($)}),pt=await Re(`/api/admin/withdrawals?${st}`);if(pt!=null&&pt.success&&pt.withdrawals){const Lt=pt.withdrawals.map(yn=>({...yn,account:yn.account??"未绑定微信号",status:yn.status==="success"?"completed":yn.status==="failed"?"rejected":yn.status}));h(Lt),O((pt==null?void 0:pt.total)??Lt.length)}else pt!=null&&pt.success||w(`获取提现记录失败: ${(pt==null?void 0:pt.error)||"未知错误"}`),h([])}catch(ct){console.error(ct),w("加载提现数据失败"),h([])}break}case"giftPay":{try{const ct=new URLSearchParams({page:String(V),pageSize:"20",...be&&{status:be}}),st=await Re(`/api/admin/gift-pay-requests?${ct}`);st!=null&&st.success&&st.data?(X(st.data),ce(st.total??st.data.length)):(X([]),ce(0))}catch(ct){console.error(ct),w("加载代付请求失败"),X([])}break}}se(ct=>new Set(ct).add(J))}catch(mt){console.error(mt)}finally{y(!1)}}}async function Rt(){w(null),se(J=>{const Ke=new Set(J);return Ke.delete(t),Ke}),t==="overview"&&Le(),await lt(t,!0)}async function dn(J){if(confirm("确认审核通过并打款?"))try{const Ke=await _t("/api/admin/withdrawals",{id:J,action:"approve"});if(!(Ke!=null&&Ke.success)){const Ge=(Ke==null?void 0:Ke.message)||(Ke==null?void 0:Ke.error)||"操作失败";ae.error(Ge);return}await Rt()}catch(Ke){console.error(Ke),ae.error("操作失败")}}function gt(J){q(J),L("")}async function sn(){const J=I;if(!J)return;const Ke=F.trim();if(!Ke){ae.error("请填写拒绝原因");return}oe(!0);try{const Ge=await _t("/api/admin/withdrawals",{id:J,action:"reject",errorMessage:Ke});if(!(Ge!=null&&Ge.success)){ae.error((Ge==null?void 0:Ge.error)||"操作失败");return}ae.success("已拒绝该提现申请"),q(null),L(""),await Rt()}catch(Ge){console.error(Ge),ae.error("操作失败")}finally{oe(!1)}}function Pn(){I&&ae.info("已取消操作"),q(null),L("")}async function Pt(){var J;if(!(!(ne!=null&&ne.orderSn)&&!(ne!=null&&ne.id))){U(!0),w(null);try{const Ke=await _t("/api/admin/orders/refund",{orderSn:ne.orderSn||ne.id,reason:ge||void 0});Ke!=null&&Ke.success?(pe(null),z(""),await lt("orders",!0)):w((Ke==null?void 0:Ke.error)||"退款失败")}catch(Ke){const Ge=Ke;w(((J=Ge==null?void 0:Ge.data)==null?void 0:J.error)||"退款失败,请检查网络后重试")}finally{U(!1)}}}function Qt(J){const Ke={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"},Ge={active:"有效",converted:"已转化",expired:"已过期",cancelled:"已取消",pending:"待审核",pending_confirm:"待用户确认",processing:"处理中",completed:"已完成",rejected:"已拒绝"};return r.jsx(Ue,{className:`${Ke[J]||"bg-gray-500/20 text-gray-400"} border-0`,children:Ge[J]||J})}const rn=Math.ceil(R/$)||1,On=n,ms=o.filter(J=>{var Ge,mt,ct,st;if(!v)return!0;const Ke=v.toLowerCase();return((Ge=J.refereeNickname)==null?void 0:Ge.toLowerCase().includes(Ke))||((mt=J.refereePhone)==null?void 0:mt.includes(Ke))||((ct=J.referrerName)==null?void 0:ct.toLowerCase().includes(Ke))||((st=J.referrerCode)==null?void 0:st.toLowerCase().includes(Ke))}),Dn=u.filter(J=>{var Ge;if(!v)return!0;const Ke=v.toLowerCase();return((Ge=J.userName)==null?void 0:Ge.toLowerCase().includes(Ke))||J.account&&J.account.toLowerCase().includes(Ke)});return r.jsxs("div",{className:"p-8 w-full",children:[N&&r.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:[r.jsx("span",{children:N}),r.jsx("button",{type:"button",onClick:()=>w(null),className:"hover:text-red-300",children:"×"})]}),r.jsxs("div",{className:"flex items-center justify-between mb-8",children:[r.jsxs("div",{children:[r.jsx("h1",{className:"text-2xl font-bold text-white",children:"推广中心"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"统一管理:订单、分销绑定、提现审核"})]}),r.jsxs(Z,{onClick:Rt,disabled:g,variant:"outline",className:"border-gray-700 text-gray-300 hover:bg-gray-800",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${g?"animate-spin":""}`}),"刷新数据"]})]}),r.jsx("div",{className:"flex gap-2 mb-6 border-b border-gray-700 pb-4 flex-wrap",children:[{key:"overview",label:"数据概览",icon:rd},{key:"orders",label:"订单管理",icon:Th},{key:"bindings",label:"绑定管理",icon:kr},{key:"withdrawals",label:"提现审核",icon:Hl},{key:"giftPay",label:"代付请求",icon:oj},{key:"settings",label:"推广设置",icon:jo}].map(J=>r.jsxs("button",{type:"button",onClick:()=>{e(J.key),E("all"),k(""),J.key==="giftPay"&&(Pe(""),re(1))},className:`flex items-center gap-2 px-4 py-2 rounded-lg text-sm font-medium transition-colors ${t===J.key?"bg-[#38bdac] text-white":"text-gray-400 hover:text-white hover:bg-gray-800"}`,children:[r.jsx(J.icon,{className:"w-4 h-4"}),J.label]},J.key))}),g?r.jsxs("div",{className:"flex items-center justify-center py-20",children:[r.jsx(We,{className:"w-8 h-8 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[t==="overview"&&a&&r.jsxs("div",{className:"space-y-6",children:[r.jsxs("div",{className:"grid grid-cols-4 gap-4",children:[r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日点击"}),r.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:a.todayClicks}),r.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:"总点击次数(实时)"})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-blue-500/20 flex items-center justify-center",children:r.jsx(Ug,{className:"w-6 h-6 text-blue-400"})})]})})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日独立用户"}),r.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:a.todayUniqueVisitors??0}),r.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:"去重访客数(实时)"})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-cyan-500/20 flex items-center justify-center",children:r.jsx(Rn,{className:"w-6 h-6 text-cyan-400"})})]})})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日总文章点击率"}),r.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:(a.todayClickRate??0).toFixed(2)}),r.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:"人均点击(总点击/独立用户)"})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-amber-500/20 flex items-center justify-center",children:r.jsx(rd,{className:"w-6 h-6 text-amber-400"})})]})})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日绑定"}),r.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:a.todayBindings})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-green-500/20 flex items-center justify-center",children:r.jsx(kr,{className:"w-6 h-6 text-green-400"})})]})})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日转化"}),r.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:a.todayConversions})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-purple-500/20 flex items-center justify-center",children:r.jsx(Gv,{className:"w-6 h-6 text-purple-400"})})]})})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日佣金"}),r.jsxs("p",{className:"text-2xl font-bold text-[#38bdac] mt-1",children:["¥",a.todayEarnings.toFixed(2)]})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-[#38bdac]/20 flex items-center justify-center",children:r.jsx(Th,{className:"w-6 h-6 text-[#38bdac]"})})]})})})]}),(((Wn=a.todayClicksByPage)==null?void 0:Wn.length)??0)>0&&r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Ug,{className:"w-5 h-5 text-[#38bdac]"}),"每篇文章今日点击(按来源页/文章统计)"]}),r.jsx("p",{className:"text-gray-400 text-sm mt-1",children:"实际用户与实际文章的点击均计入;今日总点击与上表一致"})]}),r.jsx(Ee,{children:r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"border-b border-gray-700 text-left text-gray-400",children:[r.jsx("th",{className:"pb-3 pr-4",children:"来源页/文章"}),r.jsx("th",{className:"pb-3 pr-4 text-right",children:"今日点击"}),r.jsx("th",{className:"pb-3 text-right",children:"占比"})]})}),r.jsx("tbody",{children:[...a.todayClicksByPage??[]].sort((J,Ke)=>Ke.clicks-J.clicks).map((J,Ke)=>r.jsxs("tr",{className:"border-b border-gray-700/50",children:[r.jsx("td",{className:"py-2 pr-4 text-white font-mono",children:J.page||"(未区分)"}),r.jsx("td",{className:"py-2 pr-4 text-right text-white",children:J.clicks}),r.jsxs("td",{className:"py-2 text-right text-gray-400",children:[a.todayClicks>0?(J.clicks/a.todayClicks*100).toFixed(1):0,"%"]})]},Ke))})]})})})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsx(Ce,{className:"bg-orange-500/10 border-orange-500/30",children:r.jsx(Ee,{className:"p-6",children:r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsx("div",{className:"w-12 h-12 rounded-xl bg-orange-500/20 flex items-center justify-center",children:r.jsx(Wg,{className:"w-6 h-6 text-orange-400"})}),r.jsxs("div",{className:"flex-1",children:[r.jsx("p",{className:"text-orange-300 font-medium",children:"即将过期绑定"}),r.jsxs("p",{className:"text-2xl font-bold text-white",children:[a.expiringBindings," 个"]}),r.jsx("p",{className:"text-orange-300/60 text-sm",children:"7天内到期,需关注转化"})]})]})})}),r.jsx(Ce,{className:"bg-blue-500/10 border-blue-500/30",children:r.jsx(Ee,{className:"p-6",children:r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsx("div",{className:"w-12 h-12 rounded-xl bg-blue-500/20 flex items-center justify-center",children:r.jsx(Hl,{className:"w-6 h-6 text-blue-400"})}),r.jsxs("div",{className:"flex-1",children:[r.jsx("p",{className:"text-blue-300 font-medium",children:"待审核提现"}),r.jsxs("p",{className:"text-2xl font-bold text-white",children:[a.pendingWithdrawals," 笔"]}),r.jsxs("p",{className:"text-blue-300/60 text-sm",children:["共 ¥",a.pendingWithdrawAmount.toFixed(2)]})]}),r.jsx(Z,{onClick:()=>e("withdrawals"),variant:"outline",className:"border-blue-500/50 text-blue-400 hover:bg-blue-500/20",children:"去审核"})]})})})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-6",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Eh,{className:"w-5 h-5 text-[#38bdac]"}),"本月统计"]})}),r.jsx(Ee,{children:r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"点击量"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.monthClicks})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"绑定数"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.monthBindings})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"转化数"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.monthConversions})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"佣金"}),r.jsxs("p",{className:"text-xl font-bold text-[#38bdac]",children:["¥",a.monthEarnings.toFixed(2)]})]})]})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(rd,{className:"w-5 h-5 text-[#38bdac]"}),"累计统计"]})}),r.jsxs(Ee,{children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"总点击"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.totalClicks.toLocaleString()})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"总绑定"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.totalBindings.toLocaleString()})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"总转化"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.totalConversions})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"总佣金"}),r.jsxs("p",{className:"text-xl font-bold text-[#38bdac]",children:["¥",a.totalEarnings.toFixed(2)]})]})]}),r.jsxs("div",{className:"mt-4 p-4 bg-[#38bdac]/10 rounded-lg flex items-center justify-between",children:[r.jsx("span",{className:"text-gray-300",children:"点击转化率"}),r.jsxs("span",{className:"text-[#38bdac] font-bold text-xl",children:[a.conversionRate,"%"]})]})]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Rn,{className:"w-5 h-5 text-[#38bdac]"}),"推广统计"]})}),r.jsx(Ee,{children:r.jsxs("div",{className:"grid grid-cols-4 gap-4",children:[r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg text-center",children:[r.jsx("p",{className:"text-3xl font-bold text-white",children:a.totalDistributors}),r.jsx("p",{className:"text-gray-400 text-sm mt-1",children:"推广用户数"})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg text-center",children:[r.jsx("p",{className:"text-3xl font-bold text-green-400",children:a.activeDistributors}),r.jsx("p",{className:"text-gray-400 text-sm mt-1",children:"有收益用户"})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg text-center",children:[r.jsx("p",{className:"text-3xl font-bold text-[#38bdac]",children:"90%"}),r.jsx("p",{className:"text-gray-400 text-sm mt-1",children:"佣金比例"})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg text-center",children:[r.jsx("p",{className:"text-3xl font-bold text-orange-400",children:"30天"}),r.jsx("p",{className:"text-gray-400 text-sm mt-1",children:"绑定有效期"})]})]})})]})]}),t==="orders"&&r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex gap-4",children:[r.jsxs("div",{className:"relative flex-1",children:[r.jsx(ka,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),r.jsx(ie,{value:v,onChange:J=>k(J.target.value),placeholder:"搜索订单号、用户名、手机号...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white"})]}),r.jsxs("select",{value:C,onChange:J=>E(J.target.value),className:"px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white",children:[r.jsx("option",{value:"all",children:"全部状态"}),r.jsx("option",{value:"completed",children:"已完成"}),r.jsx("option",{value:"pending",children:"待支付"}),r.jsx("option",{value:"failed",children:"已失败"}),r.jsx("option",{value:"refunded",children:"已退款"})]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Ee,{className:"p-0",children:[n.length===0?r.jsx("div",{className:"py-12 text-center text-gray-500",children:"暂无订单数据"}):r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[r.jsx("th",{className:"p-4 text-left font-medium",children:"订单号"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"用户"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"商品"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"金额"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"支付方式"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"退款原因"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"推荐人/邀请码"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"分销佣金"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"下单时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"操作"})]})}),r.jsx("tbody",{className:"divide-y divide-gray-700/50",children:On.map(J=>{var Ke,Ge;return r.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[r.jsxs("td",{className:"p-4 font-mono text-xs text-gray-400",children:[(Ke=J.id)==null?void 0:Ke.slice(0,12),"..."]}),r.jsx("td",{className:"p-4",children:r.jsxs("div",{children:[r.jsx("p",{className:"text-white text-sm",children:J.userNickname}),r.jsx("p",{className:"text-gray-500 text-xs",children:J.userPhone})]})}),r.jsx("td",{className:"p-4",children:r.jsxs("div",{children:[r.jsx("p",{className:"text-white text-sm",children:(()=>{const mt=J.productType||J.type,ct=J.description||"",st=String(J.productId||J.sectionId||""),pt=mt==="vip"||ct.includes("VIP")||ct.toLowerCase().includes("vip")||st.toLowerCase().includes("vip");return mt==="balance_recharge"?`余额充值 ¥${typeof J.amount=="number"?J.amount.toFixed(2):parseFloat(String(J.amount||"0")).toFixed(2)}`:pt?"超级个体开通费用":mt==="fullbook"?`${J.bookName||"《底层逻辑》"} - 全本`:mt==="match"?"匹配次数购买":`${J.bookName||"《底层逻辑》"} - ${J.sectionTitle||J.chapterTitle||`章节${J.productId||J.sectionId||""}`}`})()}),r.jsx("p",{className:"text-gray-500 text-xs",children:(()=>{const mt=J.productType||J.type,ct=J.description||"",st=String(J.productId||J.sectionId||""),pt=mt==="vip"||ct.includes("VIP")||ct.toLowerCase().includes("vip")||st.toLowerCase().includes("vip");return mt==="balance_recharge"?"余额充值":pt?"超级个体":mt==="fullbook"?"全书解锁":mt==="match"?"功能权益":J.chapterTitle||"单章购买"})()})]})}),r.jsxs("td",{className:"p-4 text-[#38bdac] font-bold",children:["¥",typeof J.amount=="number"?J.amount.toFixed(2):parseFloat(String(J.amount||"0")).toFixed(2)]}),r.jsx("td",{className:"p-4 text-gray-300",children:J.paymentMethod==="wechat"?"微信支付":J.paymentMethod==="balance"?"余额支付":J.paymentMethod==="alipay"?"支付宝":J.paymentMethod||"微信支付"}),r.jsx("td",{className:"p-4",children:J.status==="refunded"?r.jsx(Ue,{className:"bg-gray-500/20 text-gray-400 border-0",children:"已退款"}):J.status==="completed"||J.status==="paid"?r.jsx(Ue,{className:"bg-green-500/20 text-green-400 border-0",children:"已完成"}):J.status==="pending"||J.status==="created"?r.jsx(Ue,{className:"bg-yellow-500/20 text-yellow-400 border-0",children:"待支付"}):r.jsx(Ue,{className:"bg-red-500/20 text-red-400 border-0",children:"已失败"})}),r.jsx("td",{className:"p-4 text-gray-400 text-sm max-w-[120px]",title:J.refundReason,children:J.status==="refunded"&&J.refundReason?J.refundReason:"-"}),r.jsx("td",{className:"p-4 text-gray-300 text-sm",children:J.referrerId||J.referralCode?r.jsxs("span",{title:J.referralCode||J.referrerCode||J.referrerId||"",children:[J.referrerNickname||J.referralCode||J.referrerCode||((Ge=J.referrerId)==null?void 0:Ge.slice(0,8)),(J.referralCode||J.referrerCode)&&` (${J.referralCode||J.referrerCode})`]}):"-"}),r.jsx("td",{className:"p-4 text-[#FFD700]",children:J.referrerEarnings?`¥${(typeof J.referrerEarnings=="number"?J.referrerEarnings:parseFloat(String(J.referrerEarnings))).toFixed(2)}`:"-"}),r.jsx("td",{className:"p-4 text-gray-400 text-sm",children:J.createdAt?new Date(J.createdAt).toLocaleString("zh-CN"):"-"}),r.jsx("td",{className:"p-4",children:(J.status==="paid"||J.status==="completed")&&r.jsxs(Z,{variant:"outline",size:"sm",className:"border-orange-500/50 text-orange-400 hover:bg-orange-500/20",onClick:()=>{pe(J),z("")},children:[r.jsx(uj,{className:"w-3 h-3 mr-1"}),"退款"]})})]},J.id)})})]})}),t==="orders"&&r.jsx(Vs,{page:M,totalPages:rn,total:R,pageSize:$,onPageChange:P,onPageSizeChange:J=>{D(J),P(1)}})]})})]}),t==="bindings"&&r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex gap-4",children:[r.jsxs("div",{className:"relative flex-1",children:[r.jsx(ka,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),r.jsx(ie,{value:v,onChange:J=>k(J.target.value),placeholder:"搜索用户昵称、手机号、推广码...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white"})]}),r.jsxs("select",{value:C,onChange:J=>E(J.target.value),className:"px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white",children:[r.jsx("option",{value:"all",children:"全部状态"}),r.jsx("option",{value:"active",children:"有效"}),r.jsx("option",{value:"converted",children:"已转化"}),r.jsx("option",{value:"expired",children:"已过期"})]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Ee,{className:"p-0",children:[ms.length===0?r.jsx("div",{className:"py-12 text-center text-gray-500",children:"暂无绑定数据"}):r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[r.jsx("th",{className:"p-4 text-left font-medium",children:"访客"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"分销商"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"绑定时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"到期时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"佣金"})]})}),r.jsx("tbody",{className:"divide-y divide-gray-700/50",children:ms.map(J=>r.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[r.jsx("td",{className:"p-4",children:r.jsxs("div",{children:[r.jsx("p",{className:"text-white font-medium",children:J.refereeNickname||"匿名用户"}),r.jsx("p",{className:"text-gray-500 text-xs",children:J.refereePhone})]})}),r.jsx("td",{className:"p-4",children:r.jsxs("div",{children:[r.jsx("p",{className:"text-white",children:J.referrerName||"-"}),r.jsx("p",{className:"text-gray-500 text-xs font-mono",children:J.referrerCode})]})}),r.jsx("td",{className:"p-4 text-gray-400",children:J.boundAt?new Date(J.boundAt).toLocaleDateString("zh-CN"):"-"}),r.jsx("td",{className:"p-4 text-gray-400",children:J.expiresAt?new Date(J.expiresAt).toLocaleDateString("zh-CN"):"-"}),r.jsx("td",{className:"p-4",children:Qt(J.status)}),r.jsx("td",{className:"p-4",children:J.commission?r.jsxs("span",{className:"text-[#38bdac] font-medium",children:["¥",J.commission.toFixed(2)]}):r.jsx("span",{className:"text-gray-500",children:"-"})})]},J.id))})]})}),t==="bindings"&&r.jsx(Vs,{page:M,totalPages:rn,total:R,pageSize:$,onPageChange:P,onPageSizeChange:J=>{D(J),P(1)}})]})})]}),t==="withdrawals"&&r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex gap-4",children:[r.jsxs("div",{className:"relative flex-1",children:[r.jsx(ka,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),r.jsx(ie,{value:v,onChange:J=>k(J.target.value),placeholder:"搜索用户名称、账号...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white"})]}),r.jsxs("select",{value:C,onChange:J=>E(J.target.value),className:"px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white",children:[r.jsx("option",{value:"all",children:"全部状态"}),r.jsx("option",{value:"pending",children:"待审核"}),r.jsx("option",{value:"completed",children:"已完成"}),r.jsx("option",{value:"rejected",children:"已拒绝"})]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Ee,{className:"p-0",children:[Dn.length===0?r.jsx("div",{className:"py-12 text-center text-gray-500",children:"暂无提现记录"}):r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[r.jsx("th",{className:"p-4 text-left font-medium",children:"申请人"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"金额"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"收款方式"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"收款账号"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"申请时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),r.jsx("th",{className:"p-4 text-right font-medium",children:"操作"})]})}),r.jsx("tbody",{className:"divide-y divide-gray-700/50",children:Dn.map(J=>r.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[r.jsx("td",{className:"p-4",children:r.jsxs("div",{className:"flex items-center gap-2",children:[J.userAvatar?r.jsx("img",{src:J.userAvatar,alt:"",className:"w-8 h-8 rounded-full object-cover"}):r.jsx("div",{className:"w-8 h-8 rounded-full bg-gray-600 flex items-center justify-center text-white text-sm font-medium",children:(J.userName||J.name||"?").slice(0,1)}),r.jsx("p",{className:"text-white font-medium",children:J.userName||J.name})]})}),r.jsx("td",{className:"p-4",children:r.jsxs("span",{className:"text-[#38bdac] font-bold",children:["¥",J.amount.toFixed(2)]})}),r.jsx("td",{className:"p-4",children:r.jsx(Ue,{className:J.method==="wechat"?"bg-green-500/20 text-green-400 border-0":"bg-blue-500/20 text-blue-400 border-0",children:J.method==="wechat"?"微信":"支付宝"})}),r.jsx("td",{className:"p-4",children:r.jsxs("div",{children:[r.jsx("p",{className:"text-white font-mono text-xs",children:J.account}),r.jsx("p",{className:"text-gray-500 text-xs",children:J.name})]})}),r.jsx("td",{className:"p-4 text-gray-400",children:J.createdAt?new Date(J.createdAt).toLocaleString("zh-CN"):"-"}),r.jsx("td",{className:"p-4",children:Qt(J.status)}),r.jsx("td",{className:"p-4 text-right",children:J.status==="pending"&&r.jsxs("div",{className:"flex gap-2 justify-end",children:[r.jsxs(Z,{size:"sm",onClick:()=>dn(J.id),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(Gv,{className:"w-4 h-4 mr-1"}),"通过"]}),r.jsxs(Z,{size:"sm",variant:"outline",onClick:()=>gt(J.id),className:"border-red-500/50 text-red-400 hover:bg-red-500/20",children:[r.jsx(rj,{className:"w-4 h-4 mr-1"}),"拒绝"]})]})})]},J.id))})]})}),t==="withdrawals"&&r.jsx(Vs,{page:M,totalPages:rn,total:R,pageSize:$,onPageChange:P,onPageSizeChange:J=>{D(J),P(1)}})]})})]}),t==="giftPay"&&r.jsx("div",{className:"space-y-4",children:r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs("div",{className:"flex flex-wrap items-center justify-between gap-4",children:[r.jsx(Ye,{className:"text-white",children:"代付请求列表"}),r.jsxs("div",{className:"flex gap-2 items-center",children:[r.jsxs("select",{className:"bg-[#0a1628] border border-gray-700 text-white rounded px-3 py-1.5 text-sm",value:be,onChange:J=>{Pe(J.target.value),re(1)},children:[r.jsx("option",{value:"",children:"全部状态"}),r.jsx("option",{value:"pending",children:"待支付(旧)"}),r.jsx("option",{value:"pending_pay",children:"待发起人支付"}),r.jsx("option",{value:"paid",children:"已支付"}),r.jsx("option",{value:"refunded",children:"已退款"}),r.jsx("option",{value:"cancelled",children:"已取消"}),r.jsx("option",{value:"expired",children:"已过期"})]}),r.jsxs(Z,{size:"sm",variant:"outline",onClick:()=>lt("giftPay",!0),className:"border-gray-600 text-gray-300",children:[r.jsx(We,{className:"w-4 h-4 mr-1"}),"刷新"]})]})]})}),r.jsxs(Ee,{children:[r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"border-b border-gray-700/50",children:[r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"请求号"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"发起人"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"商品/金额"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"份数/已领"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"付款人"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"状态"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"创建时间"})]})}),r.jsx("tbody",{className:"divide-y divide-gray-700/50",children:Q.map(J=>r.jsxs("tr",{className:"hover:bg-[#0a1628]",children:[r.jsx("td",{className:"p-4 font-mono text-xs text-gray-400",children:J.requestSn}),r.jsx("td",{className:"p-4",children:r.jsx("p",{className:"text-white text-sm",children:J.initiatorNick||J.initiatorUserId})}),r.jsxs("td",{className:"p-4",children:[r.jsxs("p",{className:"text-white",children:[J.productType," · ¥",J.amount.toFixed(2)]}),J.description&&r.jsx("p",{className:"text-gray-500 text-xs",children:J.description})]}),r.jsx("td",{className:"p-4 text-gray-400",children:(J.quantity??1)>1?`${J.quantity}份 / 已领${J.redeemedCount??0}`:"-"}),r.jsx("td",{className:"p-4 text-gray-400",children:J.payerNick||(J.payerUserId?J.payerUserId:"-")}),r.jsx("td",{className:"p-4",children:r.jsx(Ue,{className:J.status==="paid"?"bg-green-500/20 text-green-400 border-0":J.status==="pending"||J.status==="pending_pay"?"bg-amber-500/20 text-amber-400 border-0":J.status==="refunded"?"bg-red-500/20 text-red-400 border-0":"bg-gray-500/20 text-gray-400 border-0",children:J.status==="paid"?"已支付":J.status==="pending"||J.status==="pending_pay"?"待支付":J.status==="refunded"?"已退款":J.status==="cancelled"?"已取消":"已过期"})}),r.jsx("td",{className:"p-4 text-gray-400 text-sm",children:J.createdAt?new Date(J.createdAt).toLocaleString("zh-CN"):"-"})]},J.id))})]})}),Q.length===0&&!g&&r.jsx("p",{className:"text-center py-8 text-gray-500",children:"暂无代付请求"}),ue>20&&r.jsx("div",{className:"mt-4 flex justify-center",children:r.jsx(Vs,{page:V,totalPages:Math.ceil(ue/20),total:ue,pageSize:20,onPageChange:re,onPageSizeChange:()=>{}})})]})]})})]}),r.jsx(Mt,{open:!!ne,onOpenChange:J=>!J&&pe(null),children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[r.jsx(At,{children:r.jsx(It,{className:"text-white",children:"订单退款"})}),ne&&r.jsxs("div",{className:"space-y-4",children:[r.jsxs("p",{className:"text-gray-400 text-sm",children:["订单号:",ne.orderSn||ne.id]}),r.jsxs("p",{className:"text-gray-400 text-sm",children:["退款金额:¥",typeof ne.amount=="number"?ne.amount.toFixed(2):parseFloat(String(ne.amount||"0")).toFixed(2)]}),r.jsxs("div",{children:[r.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"退款原因(选填)"}),r.jsx("div",{className:"form-input",children:r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"如:用户申请退款",value:ge,onChange:J=>z(J.target.value)})})]}),r.jsx("p",{className:"text-orange-400/80 text-xs",children:"退款将原路退回至用户微信,且无法撤销,请确认后再操作。"})]}),r.jsxs(Zt,{children:[r.jsx(Z,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:()=>pe(null),disabled:K,children:"取消"}),r.jsx(Z,{className:"bg-orange-500 hover:bg-orange-600 text-white",onClick:Pt,disabled:K,children:K?"退款中...":"确认退款"})]})]})}),r.jsx(Mt,{open:!!I,onOpenChange:J=>!J&&Pn(),children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[r.jsx(At,{children:r.jsx(It,{className:"text-white",children:"拒绝提现"})}),r.jsxs("div",{className:"space-y-4",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"拒绝后该笔提现金额将返还用户余额。"}),r.jsxs("div",{children:[r.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"拒绝原因(必填)"}),r.jsx("div",{className:"form-input",children:r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"请输入拒绝原因",value:F,onChange:J=>L(J.target.value)})})]})]}),r.jsxs(Zt,{children:[r.jsx(Z,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:Pn,disabled:W,children:"取消"}),r.jsx(Z,{className:"bg-red-600 hover:bg-red-700 text-white",onClick:sn,disabled:W||!F.trim(),children:W?"提交中...":"确认拒绝"})]})]})}),t==="settings"&&r.jsx("div",{className:"-mx-8 -mt-6",children:r.jsx(Kk,{embedded:!0})})]})}function _P(){const[t,e]=b.useState([]),[n,s]=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),[g,y]=b.useState(10),[N,w]=b.useState(0),[v,k]=b.useState(null),[C,E]=b.useState(null),[M,P]=b.useState(""),[$,D]=b.useState(!1);async function R(){var z,K,U,I,q,F,L;i(!0),c(null);try{const W=new URLSearchParams({status:u,page:String(f),pageSize:String(g)}),oe=await Re(`/api/admin/withdrawals?${W}`);if(oe!=null&&oe.success){const Q=oe.withdrawals||[];e(Q),w(oe.total??((z=oe.stats)==null?void 0:z.total)??Q.length),s({total:((K=oe.stats)==null?void 0:K.total)??oe.total??Q.length,pendingCount:((U=oe.stats)==null?void 0:U.pendingCount)??0,pendingAmount:((I=oe.stats)==null?void 0:I.pendingAmount)??0,successCount:((q=oe.stats)==null?void 0:q.successCount)??0,successAmount:((F=oe.stats)==null?void 0:F.successAmount)??0,failedCount:((L=oe.stats)==null?void 0:L.failedCount)??0})}else c("加载提现记录失败")}catch(W){console.error("Load withdrawals error:",W),c("加载失败,请检查网络后重试")}finally{i(!1)}}b.useEffect(()=>{m(1)},[u]),b.useEffect(()=>{R()},[u,f,g]);const O=Math.ceil(N/g)||1;async function _(z){const K=t.find(U=>U.id===z);if(K!=null&&K.userCommissionInfo&&K.userCommissionInfo.availableAfterThis<0){if(!confirm(`⚠️ 风险警告:该用户审核后余额为负数(¥${K.userCommissionInfo.availableAfterThis.toFixed(2)}),可能存在超额提现。 - -确认已核实用户账户并完成打款?`))return}else if(!confirm("确认已完成打款?批准后将更新用户提现记录。"))return;k(z);try{const U=await _t("/api/admin/withdrawals",{id:z,action:"approve"});U!=null&&U.success?R():ae.error("操作失败: "+((U==null?void 0:U.error)??""))}catch{ae.error("操作失败")}finally{k(null)}}function se(z){E(z),P("")}async function ne(){const z=C;if(!z)return;const K=M.trim();if(!K){ae.error("请填写拒绝原因");return}D(!0);try{const U=await _t("/api/admin/withdrawals",{id:z,action:"reject",errorMessage:K});U!=null&&U.success?(ae.success("已拒绝该提现申请"),E(null),P(""),R()):ae.error("操作失败: "+((U==null?void 0:U.error)??""))}catch{ae.error("操作失败")}finally{D(!1)}}function pe(){C&&ae.info("已取消操作"),E(null),P("")}function ge(z){switch(z){case"pending":return r.jsx(Ue,{className:"bg-orange-500/20 text-orange-400 hover:bg-orange-500/20 border-0",children:"待处理"});case"pending_confirm":return r.jsx(Ue,{className:"bg-orange-500/20 text-orange-400 hover:bg-orange-500/20 border-0",children:"待用户确认"});case"processing":return r.jsx(Ue,{className:"bg-blue-500/20 text-blue-400 hover:bg-blue-500/20 border-0",children:"已审批等待打款"});case"success":case"completed":return r.jsx(Ue,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"已完成"});case"failed":case"rejected":return r.jsx(Ue,{className:"bg-red-500/20 text-red-400 hover:bg-red-500/20 border-0",children:"已拒绝"});default:return r.jsx(Ue,{className:"bg-gray-500/20 text-gray-400 border-0",children:z})}}return r.jsxs("div",{className:"p-8 w-full",children:[o&&r.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:[r.jsx("span",{children:o}),r.jsx("button",{type:"button",onClick:()=>c(null),className:"hover:text-red-300",children:"×"})]}),r.jsxs("div",{className:"flex justify-between items-start mb-8",children:[r.jsxs("div",{children:[r.jsx("h1",{className:"text-2xl font-bold text-white",children:"分账提现管理"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"管理用户分销收益的提现申请"})]}),r.jsxs(Z,{variant:"outline",onClick:R,disabled:a,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${a?"animate-spin":""}`}),"刷新"]})]}),r.jsx(Ce,{className:"bg-gradient-to-r from-[#38bdac]/10 to-[#0f2137] border-[#38bdac]/30 mb-6",children:r.jsx(Ee,{className:"p-4",children:r.jsxs("div",{className:"flex items-start gap-3",children:[r.jsx(Th,{className:"w-5 h-5 text-[#38bdac] mt-0.5"}),r.jsxs("div",{children:[r.jsx("h3",{className:"text-white font-medium mb-2",children:"自动分账规则"}),r.jsxs("div",{className:"text-sm text-gray-400 space-y-1",children:[r.jsxs("p",{children:["• ",r.jsx("span",{className:"text-[#38bdac]",children:"分销比例"}),":推广者获得订单金额的"," ",r.jsx("span",{className:"text-white font-medium",children:"90%"})]}),r.jsxs("p",{children:["• ",r.jsx("span",{className:"text-[#38bdac]",children:"结算方式"}),":用户付款后,分销收益自动计入推广者账户"]}),r.jsxs("p",{children:["• ",r.jsx("span",{className:"text-[#38bdac]",children:"提现方式"}),":用户在小程序端点击提现,系统自动转账到微信零钱"]}),r.jsxs("p",{children:["• ",r.jsx("span",{className:"text-[#38bdac]",children:"审批流程"}),":待处理的提现需管理员手动确认打款后批准"]})]})]})]})})}),r.jsxs("div",{className:"grid grid-cols-4 gap-4 mb-6",children:[r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Ee,{className:"p-4 text-center",children:[r.jsx("div",{className:"text-3xl font-bold text-[#38bdac]",children:n.total}),r.jsx("div",{className:"text-sm text-gray-400",children:"总申请"})]})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Ee,{className:"p-4 text-center",children:[r.jsx("div",{className:"text-3xl font-bold text-orange-400",children:n.pendingCount}),r.jsx("div",{className:"text-sm text-gray-400",children:"待处理"}),r.jsxs("div",{className:"text-xs text-orange-400 mt-1",children:["¥",n.pendingAmount.toFixed(2)]})]})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Ee,{className:"p-4 text-center",children:[r.jsx("div",{className:"text-3xl font-bold text-green-400",children:n.successCount}),r.jsx("div",{className:"text-sm text-gray-400",children:"已完成"}),r.jsxs("div",{className:"text-xs text-green-400 mt-1",children:["¥",n.successAmount.toFixed(2)]})]})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Ee,{className:"p-4 text-center",children:[r.jsx("div",{className:"text-3xl font-bold text-red-400",children:n.failedCount}),r.jsx("div",{className:"text-sm text-gray-400",children:"已拒绝"})]})})]}),r.jsx("div",{className:"flex gap-2 mb-4",children:["all","pending","success","failed"].map(z=>r.jsx(Z,{variant:u===z?"default":"outline",size:"sm",onClick:()=>h(z),className:u===z?"bg-[#38bdac] hover:bg-[#2da396] text-white":"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:z==="all"?"全部":z==="pending"?"待处理":z==="success"?"已完成":"已拒绝"},z))}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Ee,{className:"p-0",children:a?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):t.length===0?r.jsxs("div",{className:"text-center py-12",children:[r.jsx(Hl,{className:"w-12 h-12 text-gray-600 mx-auto mb-3"}),r.jsx("p",{className:"text-gray-500",children:"暂无提现记录"})]}):r.jsxs(r.Fragment,{children:[r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[r.jsx("th",{className:"p-4 text-left font-medium",children:"申请时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"用户"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"提现金额"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"用户佣金信息"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"处理时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"确认收款"}),r.jsx("th",{className:"p-4 text-right font-medium",children:"操作"})]})}),r.jsx("tbody",{className:"divide-y divide-gray-700/50",children:t.map(z=>r.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[r.jsx("td",{className:"p-4 text-gray-400",children:new Date(z.createdAt??"").toLocaleString()}),r.jsx("td",{className:"p-4",children:r.jsxs("div",{className:"flex items-center gap-2",children:[z.userAvatar?r.jsx("img",{src:z.userAvatar,alt:z.userName??"",className:"w-8 h-8 rounded-full object-cover"}):r.jsx("div",{className:"w-8 h-8 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm text-[#38bdac]",children:(z.userName??"?").charAt(0)}),r.jsxs("div",{children:[r.jsx("p",{className:"font-medium text-white",children:z.userName??"未知"}),r.jsx("p",{className:"text-xs text-gray-500",children:z.userPhone??z.referralCode??(z.userId??"").slice(0,10)})]})]})}),r.jsx("td",{className:"p-4",children:r.jsxs("span",{className:"font-bold text-orange-400",children:["¥",Number(z.amount).toFixed(2)]})}),r.jsx("td",{className:"p-4",children:z.userCommissionInfo?r.jsxs("div",{className:"text-xs space-y-1",children:[r.jsxs("div",{className:"flex justify-between gap-4",children:[r.jsx("span",{className:"text-gray-500",children:"累计佣金:"}),r.jsxs("span",{className:"text-[#38bdac] font-medium",children:["¥",z.userCommissionInfo.totalCommission.toFixed(2)]})]}),r.jsxs("div",{className:"flex justify-between gap-4",children:[r.jsx("span",{className:"text-gray-500",children:"已提现:"}),r.jsxs("span",{className:"text-gray-400",children:["¥",z.userCommissionInfo.withdrawnEarnings.toFixed(2)]})]}),r.jsxs("div",{className:"flex justify-between gap-4",children:[r.jsx("span",{className:"text-gray-500",children:"待审核:"}),r.jsxs("span",{className:"text-orange-400",children:["¥",z.userCommissionInfo.pendingWithdrawals.toFixed(2)]})]}),r.jsxs("div",{className:"flex justify-between gap-4 pt-1 border-t border-gray-700/30",children:[r.jsx("span",{className:"text-gray-500",children:"审核后余额:"}),r.jsxs("span",{className:z.userCommissionInfo.availableAfterThis>=0?"text-green-400 font-medium":"text-red-400 font-medium",children:["¥",z.userCommissionInfo.availableAfterThis.toFixed(2)]})]})]}):r.jsx("span",{className:"text-gray-500 text-xs",children:"暂无数据"})}),r.jsxs("td",{className:"p-4",children:[ge(z.status),z.errorMessage&&r.jsx("p",{className:"text-xs text-red-400 mt-1",children:z.errorMessage})]}),r.jsx("td",{className:"p-4 text-gray-400",children:z.processedAt?new Date(z.processedAt).toLocaleString():"-"}),r.jsx("td",{className:"p-4 text-gray-400",children:z.userConfirmedAt?r.jsxs("span",{className:"text-green-400",title:z.userConfirmedAt,children:["已确认 ",new Date(z.userConfirmedAt).toLocaleString()]}):"-"}),r.jsxs("td",{className:"p-4 text-right",children:[(z.status==="pending"||z.status==="pending_confirm")&&r.jsxs("div",{className:"flex items-center justify-end gap-2",children:[r.jsxs(Z,{size:"sm",onClick:()=>_(z.id),disabled:v===z.id,className:"bg-green-600 hover:bg-green-700 text-white",children:[r.jsx(If,{className:"w-4 h-4 mr-1"}),"批准"]}),r.jsxs(Z,{size:"sm",variant:"outline",onClick:()=>se(z.id),disabled:v===z.id,className:"border-red-500/50 text-red-400 hover:bg-red-500/10 bg-transparent",children:[r.jsx(is,{className:"w-4 h-4 mr-1"}),"拒绝"]})]}),(z.status==="success"||z.status==="completed")&&z.transactionId&&r.jsx("span",{className:"text-xs text-gray-500 font-mono",children:z.transactionId})]})]},z.id))})]})}),r.jsx(Vs,{page:f,totalPages:O,total:N,pageSize:g,onPageChange:m,onPageSizeChange:z=>{y(z),m(1)}})]})})}),r.jsx(Mt,{open:!!C,onOpenChange:z=>!z&&pe(),children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[r.jsx(At,{children:r.jsx(It,{className:"text-white",children:"拒绝提现"})}),r.jsxs("div",{className:"space-y-4",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"拒绝后该笔提现金额将返还用户余额。"}),r.jsxs("div",{children:[r.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"拒绝原因(必填)"}),r.jsx("div",{className:"form-input",children:r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"请输入拒绝原因",value:M,onChange:z=>P(z.target.value)})})]})]}),r.jsxs(Zt,{children:[r.jsx(Z,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:pe,disabled:$,children:"取消"}),r.jsx(Z,{className:"bg-red-600 hover:bg-red-700 text-white",onClick:ne,disabled:$||!M.trim(),children:$?"提交中...":"确认拒绝"})]})]})})]})}var tg={exports:{}},ng={};/** - * @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 b1;function zP(){if(b1)return ng;b1=1;var t=Od();function e(m,g){return m===g&&(m!==0||1/m===1/g)||m!==m&&g!==g}var n=typeof Object.is=="function"?Object.is:e,s=t.useState,a=t.useEffect,i=t.useLayoutEffect,o=t.useDebugValue;function c(m,g){var y=g(),N=s({inst:{value:y,getSnapshot:g}}),w=N[0].inst,v=N[1];return i(function(){w.value=y,w.getSnapshot=g,u(w)&&v({inst:w})},[m,y,g]),a(function(){return u(w)&&v({inst:w}),m(function(){u(w)&&v({inst:w})})},[m]),o(y),y}function u(m){var g=m.getSnapshot;m=m.value;try{var y=g();return!n(m,y)}catch{return!0}}function h(m,g){return g()}var f=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?h:c;return ng.useSyncExternalStore=t.useSyncExternalStore!==void 0?t.useSyncExternalStore:f,ng}var v1;function qk(){return v1||(v1=1,tg.exports=zP()),tg.exports}var Gk=qk();function Gn(t){this.content=t}Gn.prototype={constructor:Gn,find:function(t){for(var e=0;e>1}};Gn.from=function(t){if(t instanceof Gn)return t;var e=[];if(t)for(var n in t)e.push(n,t[n]);return new Gn(e)};function Jk(t,e,n){for(let s=0;;s++){if(s==t.childCount||s==e.childCount)return t.childCount==e.childCount?null:n;let a=t.child(s),i=e.child(s);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=Jk(a.content,i.content,n+1);if(o!=null)return o}n+=a.nodeSize}}function Yk(t,e,n,s){for(let a=t.childCount,i=e.childCount;;){if(a==0||i==0)return a==i?null:{a:n,b:s};let o=t.child(--a),c=e.child(--i),u=o.nodeSize;if(o==c){n-=u,s-=u;continue}if(!o.sameMarkup(c))return{a:n,b:s};if(o.isText&&o.text!=c.text){let h=0,f=Math.min(o.text.length,c.text.length);for(;he&&s(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),s,a+f)}c=h}}descendants(e){this.nodesBetween(0,this.size,e)}textBetween(e,n,s,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)&&s&&(o?o=!1:i+=s),i+=h},0),i}append(e){if(!e.size)return this;if(!this.size)return e;let n=this.lastChild,s=e.firstChild,a=this.content.slice(),i=0;for(n.isText&&n.sameMarkup(s)&&(a[a.length-1]=n.withText(n.text+s.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))),s.push(c),a+=c.nodeSize),o=u}return new ve(s,a)}cutByIndex(e,n){return e==n?ve.empty:e==0&&n==this.content.length?this:new ve(this.content.slice(e,n))}replaceChild(e,n){let s=this.content[e];if(s==n)return this;let a=this.content.slice(),i=this.size+n.nodeSize-s.nodeSize;return a[e]=n,new ve(a,i)}addToStart(e){return new ve([e].concat(this.content),this.size+e.nodeSize)}addToEnd(e){return new ve(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,s=0;;n++){let a=this.child(n),i=s+a.nodeSize;if(i>=e)return i==e?Zu(n+1,i):Zu(n,s);s=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 ve.empty;if(!Array.isArray(n))throw new RangeError("Invalid input for Fragment.fromJSON");return new ve(n.map(e.nodeFromJSON))}static fromArray(e){if(!e.length)return ve.empty;let n,s=0;for(let a=0;athis.type.rank&&(n||(n=e.slice(0,a)),n.push(this),s=!0),n&&n.push(i)}}return n||(n=e.slice()),s||n.push(this),n}removeFromSet(e){for(let n=0;ns.type.rank-a.type.rank),n}};$t.none=[];class Dh extends Error{}class Ie{constructor(e,n,s){this.content=e,this.openStart=n,this.openEnd=s}get size(){return this.content.size-this.openStart-this.openEnd}insertAt(e,n){let s=Xk(this.content,e+this.openStart,n);return s&&new Ie(s,this.openStart,this.openEnd)}removeBetween(e,n){return new Ie(Qk(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 Ie.empty;let s=n.openStart||0,a=n.openEnd||0;if(typeof s!="number"||typeof a!="number")throw new RangeError("Invalid input for Slice.fromJSON");return new Ie(ve.fromJSON(e,n.content),s,a)}static maxOpen(e,n=!0){let s=0,a=0;for(let i=e.firstChild;i&&!i.isLeaf&&(n||!i.type.spec.isolating);i=i.firstChild)s++;for(let i=e.lastChild;i&&!i.isLeaf&&(n||!i.type.spec.isolating);i=i.lastChild)a++;return new Ie(e,s,a)}}Ie.empty=new Ie(ve.empty,0,0);function Qk(t,e,n){let{index:s,offset:a}=t.findIndex(e),i=t.maybeChild(s),{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(s!=o)throw new RangeError("Removing non-flat range");return t.replaceChild(s,i.copy(Qk(i.content,e-a-1,n-a-1)))}function Xk(t,e,n,s){let{index:a,offset:i}=t.findIndex(e),o=t.maybeChild(a);if(i==e||o.isText)return s&&!s.canReplace(a,a,n)?null:t.cut(0,e).append(n).append(t.cut(e));let c=Xk(o.content,e-i-1,n,o);return c&&t.replaceChild(a,o.copy(c))}function $P(t,e,n){if(n.openStart>t.depth)throw new Dh("Inserted content deeper than insertion position");if(t.depth-n.openStart!=e.depth-n.openEnd)throw new Dh("Inconsistent open depths");return Zk(t,e,n,0)}function Zk(t,e,n,s){let a=t.index(s),i=t.node(s);if(a==e.index(s)&&s=0&&t.isText&&t.sameMarkup(e[n])?e[n]=t.withText(e[n].text+t.text):e.push(t)}function ad(t,e,n,s){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&&(So(t.nodeAfter,s),i++));for(let c=i;ca&&ix(t,e,a+1),o=s.depth>a&&ix(n,s,a+1),c=[];return ad(null,t,a,c),i&&o&&e.index(a)==n.index(a)?(eS(i,o),So(Co(i,tS(t,e,n,s,a+1)),c)):(i&&So(Co(i,Lh(t,e,a+1)),c),ad(e,n,a,c),o&&So(Co(o,Lh(n,s,a+1)),c)),ad(s,null,a,c),new ve(c)}function Lh(t,e,n){let s=[];if(ad(null,t,n,s),t.depth>n){let a=ix(t,e,n+1);So(Co(a,Lh(t,e,n+1)),s)}return ad(e,null,n,s),new ve(s)}function FP(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(ve.from(a));return{start:a.resolveNoCache(t.openStart+n),end:a.resolveNoCache(a.content.size-t.openEnd-n)}}class Nd{constructor(e,n,s){this.pos=e,this.path=n,this.parentOffset=s,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 s=this.pos-this.path[this.path.length-1],a=e.child(n);return s?e.child(n).cut(s):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 s=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;s--)if(e.pos<=this.end(s)&&(!n||n(this.node(s))))return new _h(this,e,s);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 s=[],a=0,i=n;for(let o=e;;){let{index:c,offset:u}=o.content.findIndex(i),h=i-u;if(s.push(o,c,a+u),!h||(o=o.child(c),o.isText))break;i=h-1,a+=u+1}return new Nd(n,s,i)}static resolveCached(e,n){let s=N1.get(e);if(s)for(let i=0;ie&&this.nodesBetween(e,n,i=>(s.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()+")"),nS(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,s=ve.empty,a=0,i=s.childCount){let o=this.contentMatchAt(e).matchFragment(s,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 s;if(n.marks){if(!Array.isArray(n.marks))throw new RangeError("Invalid mark data for Node.fromJSON");s=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,s)}let a=ve.fromJSON(e,n.content),i=e.nodeType(n.type).create(n.attrs,a,s);return i.type.checkAttrs(i.attrs),i}};Sa.prototype.text=void 0;class zh extends Sa{constructor(e,n,s,a){if(super(e,n,null,a),!s)throw new RangeError("Empty text nodes are not allowed");this.text=s}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):nS(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 zh(this.type,this.attrs,this.text,e)}withText(e){return e==this.text?this:new zh(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 nS(t,e){for(let n=t.length-1;n>=0;n--)e=t[n].type.name+"("+e+")";return e}class Po{constructor(e){this.validEnd=e,this.next=[],this.wrapCache=[]}static parse(e,n){let s=new WP(e,n);if(s.next==null)return Po.empty;let a=sS(s);s.next&&s.err("Unexpected trailing text");let i=QP(YP(a));return XP(i,s),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(s){e.push(s);for(let a=0;a{let i=a+(s.validEnd?"*":" ")+" ";for(let o=0;o"+e.indexOf(s.next[o].next);return i}).join(` -`)}}Po.empty=new Po(!0);class WP{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 sS(t){let e=[];do e.push(UP(t));while(t.eat("|"));return e.length==1?e[0]:{type:"choice",exprs:e}}function UP(t){let e=[];do e.push(KP(t));while(t.next&&t.next!=")"&&t.next!="|");return e.length==1?e[0]:{type:"seq",exprs:e}}function KP(t){let e=JP(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=qP(t,e);else break;return e}function w1(t){/\D/.test(t.next)&&t.err("Expected number, got '"+t.next+"'");let e=Number(t.next);return t.pos++,e}function qP(t,e){let n=w1(t),s=n;return t.eat(",")&&(t.next!="}"?s=w1(t):s=-1),t.eat("}")||t.err("Unclosed braced range"),{type:"range",min:n,max:s,expr:e}}function GP(t,e){let n=t.nodeTypes,s=n[e];if(s)return[s];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 JP(t){if(t.eat("(")){let e=sS(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=GP(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 YP(t){let e=[[]];return a(i(t,0),n()),e;function n(){return e.push([])-1}function s(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 s(c,u),a(i(o.expr,u),u),[s(u)]}else if(o.type=="plus"){let u=n();return a(i(o.expr,c),u),a(i(o.expr,u),u),[s(u)]}else{if(o.type=="opt")return[s(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[s.join(",")]=new Po(s.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:iS(this.attrs,e)}create(e=null,n,s){if(this.isText)throw new Error("NodeType.create can't construct text nodes");return new Sa(this,this.computeAttrs(e),ve.from(n),$t.setFrom(s))}createChecked(e=null,n,s){return n=ve.from(n),this.checkContent(n),new Sa(this,this.computeAttrs(e),n,$t.setFrom(s))}createAndFill(e=null,n,s){if(e=this.computeAttrs(e),n=ve.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(ve.empty,!0);return i?new Sa(this,e,n.append(i),$t.setFrom(s)):null}validContent(e){let n=this.contentMatch.matchFragment(e);if(!n||!n.validEnd)return!1;for(let s=0;s-1}allowsMarks(e){if(this.markSet==null)return!0;for(let n=0;ns[i]=new cS(i,n,o));let a=n.spec.topNode||"doc";if(!s[a])throw new RangeError("Schema is missing its top node type ('"+a+"')");if(!s.text)throw new RangeError("Every schema needs a 'text' type");for(let i in s.text.attrs)throw new RangeError("The text node type should not have attributes");return s}};function ZP(t,e,n){let s=n.split("|");return a=>{let i=a===null?"null":typeof a;if(s.indexOf(i)<0)throw new RangeError(`Expected value of type ${s} for attribute ${e} on type ${t}, got ${i}`)}}class eO{constructor(e,n,s){this.hasDefault=Object.prototype.hasOwnProperty.call(s,"default"),this.default=s.default,this.validate=typeof s.validate=="string"?ZP(e,n,s.validate):s.validate}get isRequired(){return!this.hasDefault}}class Ff{constructor(e,n,s,a){this.name=e,this.rank=n,this.schema=s,this.spec=a,this.attrs=lS(e,a.attrs),this.excluded=null;let i=aS(this.attrs);this.instance=i?new $t(this,i):null}create(e=null){return!e&&this.instance?this.instance:new $t(this,iS(this.attrs,e))}static compile(e,n){let s=Object.create(null),a=0;return e.forEach((i,o)=>s[i]=new Ff(i,a++,n,o)),s}removeFromSet(e){for(var n=0;n-1}}class dS{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=Gn.from(e.nodes),n.marks=Gn.from(e.marks||{}),this.nodes=k1.compile(this.spec.nodes,this),this.marks=Ff.compile(this.spec.marks,this);let s=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=s[o]||(s[o]=Po.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?S1(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==""?[]:S1(this,o.split(" "))}this.nodeFromJSON=a=>Sa.fromJSON(this,a),this.markFromJSON=a=>$t.fromJSON(this,a),this.topNodeType=this.nodes[this.spec.topNode||"doc"],this.cached.wrappings=Object.create(null)}node(e,n=null,s,a){if(typeof e=="string")e=this.nodeType(e);else if(e instanceof k1){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,s,a)}text(e,n){let s=this.nodes.text;return new zh(s,s.defaultAttrs,e,$t.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 S1(t,e){let n=[];for(let s=0;s-1)&&n.push(o=u)}if(!o)throw new SyntaxError("Unknown mark type: '"+e[s]+"'")}return n}function tO(t){return t.tag!=null}function nO(t){return t.style!=null}class ki{constructor(e,n){this.schema=e,this.rules=n,this.tags=[],this.styles=[];let s=this.matchedStyles=[];n.forEach(a=>{if(tO(a))this.tags.push(a);else if(nO(a)){let i=/[^=]*/.exec(a.style)[0];s.indexOf(i)<0&&s.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 s=new E1(this,n,!1);return s.addAll(e,$t.none,n.from,n.to),s.finish()}parseSlice(e,n={}){let s=new E1(this,n,!0);return s.addAll(e,$t.none,n.from,n.to),Ie.maxOpen(s.finish())}matchTag(e,n,s){for(let a=s?this.tags.indexOf(s)+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 s(a){let i=a.priority==null?50:a.priority,o=0;for(;o{s(o=T1(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=>{s(o=T1(o)),o.node||o.ignore||o.mark||(o.node=a)})}return n}static fromSchema(e){return e.cached.domParser||(e.cached.domParser=new ki(e,ki.schemaRules(e)))}}const uS={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},sO={head:!0,noscript:!0,object:!0,script:!0,style:!0,title:!0},hS={ol:!0,ul:!0},wd=1,lx=2,id=4;function C1(t,e,n){return e!=null?(e?wd:0)|(e==="full"?lx:0):t&&t.whitespace=="pre"?wd|lx:n&~id}class eh{constructor(e,n,s,a,i,o){this.type=e,this.attrs=n,this.marks=s,this.solid=a,this.options=o,this.content=[],this.activeMarks=$t.none,this.match=i||(o&id?null:e.contentMatch)}findWrapping(e){if(!this.match){if(!this.type)return[];let n=this.type.contentMatch.fillBefore(ve.from(e));if(n)this.match=this.type.contentMatch.matchFragment(n);else{let s=this.type.contentMatch,a;return(a=s.findWrapping(e.type))?(this.match=s,a):null}}return this.match.findWrapping(e.type)}finish(e){if(!(this.options&wd)){let s=this.content[this.content.length-1],a;if(s&&s.isText&&(a=/[ \t\r\n\u000c]+$/.exec(s.text))){let i=s;s.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=ve.from(this.content);return!e&&this.match&&(n=n.append(this.match.fillBefore(ve.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&&!uS.hasOwnProperty(e.parentNode.nodeName.toLowerCase())}}class E1{constructor(e,n,s){this.parser=e,this.options=n,this.isOpen=s,this.open=0,this.localPreserveWS=!1;let a=n.topNode,i,o=C1(null,n.preserveWhitespace,0)|(s?id:0);a?i=new eh(a.type,a.attrs,$t.none,!0,n.topMatch||a.type.contentMatch,o):s?i=new eh(null,null,$t.none,!0,null,o):i=new eh(e.schema.topNodeType,null,$t.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 s=e.nodeValue,a=this.top,i=a.options&lx?"full":this.localPreserveWS||(a.options&wd)>0,{schema:o}=this.parser;if(i==="full"||a.inlineContext(e)||/[^ \t\r\n\u000c]/.test(s)){if(i)if(i==="full")s=s.replace(/\r\n?/g,` -`);else if(o.linebreakReplacement&&/[\r\n]/.test(s)&&this.top.findWrapping(o.linebreakReplacement.create())){let c=s.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,s,a){let i,o;if(n.node)if(o=this.parser.schema.nodes[n.node],o.isLeaf)this.insertNode(o.create(n.attrs),s,e.nodeName=="BR")||this.leafFallback(e,s);else{let u=this.enter(o,n.attrs||null,s,n.preserveWhitespace);u&&(i=!0,s=u)}else{let u=this.parser.schema.marks[n.mark];s=s.concat(u.create(n.attrs))}let c=this.top;if(o&&o.isLeaf)this.findInside(e);else if(a)this.addElement(e,s,a);else if(n.getContent)this.findInside(e),n.getContent(e,this.parser.schema).forEach(u=>this.insertNode(u,s,!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,s),this.findAround(e,u,!1)}i&&this.sync(c)&&this.open--}addAll(e,n,s,a){let i=s||0;for(let o=s?e.childNodes[s]: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,s){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(s)break;c+=2}}if(!a)return null;this.sync(i);for(let o=0;o(o.type?o.type.allowsMarkType(h.type):M1(h.type,e))?(u=h.addToSet(u),!1):!0),this.nodes.push(new eh(e,n,u,a,null,c)),this.open++,s}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|=wd)}return!1}get currentPos(){this.closeExtra();let e=0;for(let n=this.open;n>=0;n--){let s=this.nodes[n].content;for(let a=s.length-1;a>=0;a--)e+=s[a].nodeSize;n&&e++}return e}findAtPoint(e,n){if(this.find)for(let s=0;s-1)return e.split(/\s*\|\s*/).some(this.matchesContext,this);let n=e.split("/"),s=this.options.context,a=!this.isOpen&&(!s||s.parent.type==this.nodes[0].type),i=-(s?s.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:s&&u>=i?s.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 s=e.node(n).contentMatchAt(e.indexAfter(n)).defaultType;if(s&&s.isTextblock&&s.defaultAttrs)return s}for(let n in this.parser.schema.nodes){let s=this.parser.schema.nodes[n];if(s.isTextblock&&s.defaultAttrs)return s}}}function rO(t){for(let e=t.firstChild,n=null;e;e=e.nextSibling){let s=e.nodeType==1?e.nodeName.toLowerCase():null;s&&hS.hasOwnProperty(s)&&n?(n.appendChild(e),e=n):s=="li"?n=e:s&&(n=null)}}function aO(t,e){return(t.matches||t.msMatchesSelector||t.webkitMatchesSelector||t.mozMatchesSelector).call(t,e)}function T1(t){let e={};for(let n in t)e[n]=t[n];return e}function M1(t,e){let n=e.schema.nodes;for(let s in n){let a=n[s];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(s),s=i.dom)}return s}serializeMark(e,n,s={}){let a=this.marks[e.type.name];return a&&yh(rg(s),a(e,n),null,e.attrs)}static renderSpec(e,n,s=null,a){return yh(e,n,s,a)}static fromSchema(e){return e.cached.domSerializer||(e.cached.domSerializer=new Ho(this.nodesFromSchema(e),this.marksFromSchema(e)))}static nodesFromSchema(e){let n=A1(e.nodes);return n.text||(n.text=s=>s.text),n}static marksFromSchema(e){return A1(e.marks)}}function A1(t){let e={};for(let n in t){let s=t[n].spec.toDOM;s&&(e[n]=s)}return e}function rg(t){return t.document||window.document}const I1=new WeakMap;function iO(t){let e=I1.get(t);return e===void 0&&I1.set(t,e=oO(t)),e}function oO(t){let e=null;function n(s){if(s&&typeof s=="object")if(Array.isArray(s))if(typeof s[0]=="string")e||(e=[]),e.push(s);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 g=m.indexOf(" ");g>0?u.setAttributeNS(m.slice(0,g),m.slice(g+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:N}=yh(t,g,n,s);if(u.appendChild(y),N){if(c)throw new RangeError("Multiple content holes");c=N}}}return{dom:u,contentDOM:c}}const fS=65535,pS=Math.pow(2,16);function lO(t,e){return t+e*pS}function R1(t){return t&fS}function cO(t){return(t-(t&fS))/pS}const mS=1,gS=2,bh=4,xS=8;class cx{constructor(e,n,s){this.pos=e,this.delInfo=n,this.recover=s}get deleted(){return(this.delInfo&xS)>0}get deletedBefore(){return(this.delInfo&(mS|bh))>0}get deletedAfter(){return(this.delInfo&(gS|bh))>0}get deletedAcross(){return(this.delInfo&bh)>0}}class Fs{constructor(e,n=!1){if(this.ranges=e,this.inverted=n,!e.length&&Fs.empty)return Fs.empty}recover(e){let n=0,s=R1(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 g=h?e==u?-1:e==m?1:n:n,y=u+a+(g<0?0:f);if(s)return y;let N=e==(n<0?u:m)?null:lO(c/3,e-u),w=e==u?gS:e==m?mS:bh;return(n<0?e!=u:e!=m)&&(w|=xS),new cx(y,w,N)}a+=f-h}return s?e+a:new cx(e+a,0,null)}touches(e,n){let s=0,a=R1(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;s+=this.ranges[c+o]-h}return!1}forEach(e){let n=this.inverted?2:1,s=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?s-a-1:void 0)}}invert(){let e=new jd;return e.appendMappingInverted(this),e}map(e,n=1){if(this.mirror)return this._map(e,n,!0);for(let s=this.from;si&&u!o.isAtom||!c.type.allowsMarkType(this.mark.type)?o:o.mark(this.mark.addToSet(o.marks)),a),n.openStart,n.openEnd);return kn.fromReplace(e,this.from,this.to,i)}invert(){return new jr(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),s=e.mapResult(this.to,-1);return n.deleted&&s.deleted||n.pos>=s.pos?null:new bi(n.pos,s.pos,this.mark)}merge(e){return e instanceof bi&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new bi(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 bi(n.from,n.to,e.markFromJSON(n.mark))}}ps.jsonID("addMark",bi);class jr extends ps{constructor(e,n,s){super(),this.from=e,this.to=n,this.mark=s}apply(e){let n=e.slice(this.from,this.to),s=new Ie(v0(n.content,a=>a.mark(this.mark.removeFromSet(a.marks)),e),n.openStart,n.openEnd);return kn.fromReplace(e,this.from,this.to,s)}invert(){return new bi(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),s=e.mapResult(this.to,-1);return n.deleted&&s.deleted||n.pos>=s.pos?null:new jr(n.pos,s.pos,this.mark)}merge(e){return e instanceof jr&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new jr(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 jr(n.from,n.to,e.markFromJSON(n.mark))}}ps.jsonID("removeMark",jr);class vi extends ps{constructor(e,n){super(),this.pos=e,this.mark=n}apply(e){let n=e.nodeAt(this.pos);if(!n)return kn.fail("No node at mark step's position");let s=n.type.create(n.attrs,null,this.mark.addToSet(n.marks));return kn.fromReplace(e,this.pos,this.pos+1,new Ie(ve.from(s),0,n.isLeaf?0:1))}invert(e){let n=e.nodeAt(this.pos);if(n){let s=this.mark.addToSet(n.marks);if(s.length==n.marks.length){for(let a=0;as.pos?null:new Vn(n.pos,s.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 Vn(n.from,n.to,n.gapFrom,n.gapTo,Ie.fromJSON(e,n.slice),n.insert,!!n.structure)}}ps.jsonID("replaceAround",Vn);function dx(t,e,n){let s=t.resolve(e),a=n-e,i=s.depth;for(;a>0&&i>0&&s.indexAfter(i)==s.node(i).childCount;)i--,a--;if(a>0){let o=s.node(i).maybeChild(s.indexAfter(i));for(;a>0;){if(!o||o.isLeaf)return!0;o=o.firstChild,a--}}return!1}function dO(t,e,n,s){let a=[],i=[],o,c;t.doc.nodesBetween(e,n,(u,h,f)=>{if(!u.isInline)return;let m=u.marks;if(!s.isInSet(m)&&f.type.allowsMarkType(s.type)){let g=Math.max(h,e),y=Math.min(h+u.nodeSize,n),N=s.addToSet(m);for(let w=0;wt.step(u)),i.forEach(u=>t.step(u))}function uO(t,e,n,s){let a=[],i=0;t.doc.nodesBetween(e,n,(o,c)=>{if(!o.isInline)return;i++;let u=null;if(s instanceof Ff){let h=o.marks,f;for(;f=s.isInSet(h);)(u||(u=[])).push(f),h=f.removeFromSet(h)}else s?s.isInSet(o.marks)&&(u=[s]):u=o.marks;if(u&&u.length){let h=Math.min(c+o.nodeSize,n);for(let f=0;ft.step(new jr(o.from,o.to,o.style)))}function N0(t,e,n,s=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 hO(t,e,n){return(e==0||t.canReplace(e,t.childCount))&&(n==t.childCount||t.canReplace(0,n))}function ac(t){let n=t.parent.content.cutByIndex(t.startIndex,t.endIndex);for(let s=t.depth,a=0,i=0;;--s){let o=t.$from.node(s),c=t.$from.index(s)+a,u=t.$to.indexAfter(s)-i;if(sn;N--)w||s.index(N)>0?(w=!0,f=ve.from(s.node(N).copy(f)),m++):u--;let g=ve.empty,y=0;for(let N=i,w=!1;N>n;N--)w||a.after(N+1)=0;o--){if(s.size){let c=n[o].type.contentMatch.matchFragment(s);if(!c||!c.validEnd)throw new RangeError("Wrapper type given to Transform.wrap does not form valid content of its parent wrapper")}s=ve.from(n[o].type.create(n[o].attrs,s))}let a=e.start,i=e.end;t.step(new Vn(a,i,a,i,new Ie(s,0,0),n.length,!0))}function xO(t,e,n,s,a){if(!s.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(s,u)&&yO(t.doc,t.mapping.slice(i).map(c),s)){let h=null;if(s.schema.linebreakReplacement){let y=s.whitespace=="pre",N=!!s.contentMatch.matchType(s.schema.linebreakReplacement);y&&!N?h=!1:!y&&N&&(h=!0)}h===!1&&bS(t,o,c,i),N0(t,t.mapping.slice(i).map(c,1),s,void 0,h===null);let f=t.mapping.slice(i),m=f.map(c,1),g=f.map(c+o.nodeSize,1);return t.step(new Vn(m,g,m+1,g-1,new Ie(ve.from(s.create(u,null,o.marks)),0,0),1,!0)),h===!0&&yS(t,o,c,i),!1}})}function yS(t,e,n,s){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(s).map(n+1+i+o.index);t.replaceWith(u,u+1,e.type.schema.linebreakReplacement.create())}}})}function bS(t,e,n,s){e.forEach((a,i)=>{if(a.type==a.type.schema.linebreakReplacement){let o=t.mapping.slice(s).map(n+1+i);t.replaceWith(o,o+1,e.type.schema.text(` -`))}})}function yO(t,e,n){let s=t.resolve(e),a=s.index();return s.parent.canReplaceWith(a,a+1,n)}function bO(t,e,n,s,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(s,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 Vn(e,e+i.nodeSize,e+1,e+i.nodeSize-1,new Ie(ve.from(o),0,0),1,!0))}function Ca(t,e,n=1,s){let a=t.resolve(e),i=a.depth-n,o=s&&s[s.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),g=a.index(h);if(m.type.spec.isolating)return!1;let y=m.content.cutByIndex(g,m.childCount),N=s&&s[f+1];N&&(y=y.replaceChild(0,N.type.create(N.attrs)));let w=s&&s[f]||m;if(!m.canReplace(g+1,m.childCount)||!w.type.validContent(y))return!1}let c=a.indexAfter(i),u=s&&s[0];return a.node(i).canReplaceWith(c,c,u?u.type:a.node(i+1).type)}function vO(t,e,n=1,s){let a=t.doc.resolve(e),i=ve.empty,o=ve.empty;for(let c=a.depth,u=a.depth-n,h=n-1;c>u;c--,h--){i=ve.from(a.node(c).copy(i));let f=s&&s[h];o=ve.from(f?f.type.create(f.attrs,o):a.node(c).copy(o))}t.step(new Bn(e,e,new Ie(i.append(o),n,n),!0))}function zi(t,e){let n=t.resolve(e),s=n.index();return vS(n.nodeBefore,n.nodeAfter)&&n.parent.canReplace(s,s+1)}function NO(t,e){e.content.size||t.type.compatibleContent(e.type);let n=t.contentMatchAt(t.childCount),{linebreakReplacement:s}=t.type.schema;for(let a=0;a0?(i=s.node(a+1),c++,o=s.node(a).maybeChild(c)):(i=s.node(a).maybeChild(c-1),o=s.node(a+1)),i&&!i.isTextblock&&vS(i,o)&&s.node(a).canReplace(c,c+1))return e;if(a==0)break;e=n<0?s.before(a):s.after(a)}}function wO(t,e,n){let s=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?s=!1:!f&&m&&(s=!0)}let c=t.steps.length;if(s===!1){let f=t.doc.resolve(e+n);bS(t,f.node(),f.before(),c)}o.inlineContent&&N0(t,e+n-1,o,i.node().contentMatchAt(i.index()),s==null);let u=t.mapping.slice(c),h=u.map(e-n);if(t.step(new Bn(h,u.map(e+n,-1),Ie.empty,!0)),s===!0){let f=t.doc.resolve(h);yS(t,f.node(),f.before(),t.steps.length)}return t}function jO(t,e,n){let s=t.resolve(e);if(s.parent.canReplaceWith(s.index(),s.index(),n))return e;if(s.parentOffset==0)for(let a=s.depth-1;a>=0;a--){let i=s.index(a);if(s.node(a).canReplaceWith(i,i,n))return s.before(a+1);if(i>0)return null}if(s.parentOffset==s.parent.content.size)for(let a=s.depth-1;a>=0;a--){let i=s.indexAfter(a);if(s.node(a).canReplaceWith(i,i,n))return s.after(a+1);if(i=0;o--){let c=o==s.depth?0:s.pos<=(s.start(o+1)+s.end(o+1))/2?-1:1,u=s.index(o)+(c>0?1:0),h=s.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?s.pos:c<0?s.before(o+1):s.after(o+1)}return null}function Vf(t,e,n=e,s=Ie.empty){if(e==n&&!s.size)return null;let a=t.resolve(e),i=t.resolve(n);return wS(a,i,s)?new Bn(e,n,s):new kO(a,i,s).fit()}function wS(t,e,n){return!n.openStart&&!n.openEnd&&t.start()==e.start()&&t.parent.canReplace(t.index(),e.index(),n.content)}class kO{constructor(e,n,s){this.$from=e,this.$to=n,this.unplaced=s,this.frontier=[],this.placed=ve.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=ve.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,s=this.$from,a=this.close(e<0?this.$to:s.doc.resolve(e));if(!a)return null;let i=this.placed,o=s.depth,c=a.depth;for(;o&&c&&i.childCount==1;)i=i.firstChild.content,o--,c--;let u=new Ie(i,o,c);return e>-1?new Vn(s.pos,e,this.$to.pos,this.$to.end(),u,n):u.size||s.pos!=this.$to.pos?new Bn(s.pos,a.pos,u):null}findFittable(){let e=this.unplaced.openStart;for(let n=this.unplaced.content,s=0,a=this.unplaced.openEnd;s1&&(a=0),i.type.spec.isolating&&a<=s){e=s;break}n=i.content}for(let n=1;n<=2;n++)for(let s=n==1?e:this.unplaced.openStart;s>=0;s--){let a,i=null;s?(i=ig(this.unplaced.content,s-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(ve.from(o),!1)):i&&u.compatibleContent(i.type)))return{sliceDepth:s,frontierDepth:c,parent:i,inject:m};if(n==2&&o&&(f=h.findWrapping(o.type)))return{sliceDepth:s,frontierDepth:c,parent:i,wrap:f};if(i&&h.matchType(i.type))break}}}openMore(){let{content:e,openStart:n,openEnd:s}=this.unplaced,a=ig(e,n);return!a.childCount||a.firstChild.isLeaf?!1:(this.unplaced=new Ie(e,n+1,Math.max(s,a.size+n>=e.size-s?n+1:0)),!0)}dropNode(){let{content:e,openStart:n,openEnd:s}=this.unplaced,a=ig(e,n);if(a.childCount<=1&&n>0){let i=e.size-n<=n+a.size;this.unplaced=new Ie(Jc(e,n-1,1),n-1,i?n-1:s)}else this.unplaced=new Ie(Jc(e,n,1),n,s)}placeNodes({sliceDepth:e,frontierDepth:n,parent:s,inject:a,wrap:i}){for(;this.depth>n;)this.closeFrontierNode();if(i)for(let w=0;w1||u==0||w.content.size)&&(m=v,f.push(jS(w.mark(g.allowedMarks(w.marks)),h==1?u:0,h==c.childCount?y:-1)))}let N=h==c.childCount;N||(y=-1),this.placed=Yc(this.placed,n,ve.from(f)),this.frontier[n].match=m,N&&y<0&&s&&s.type==this.frontier[this.depth].type&&this.frontier.length>1&&this.closeFrontierNode();for(let w=0,v=c;w1&&a==this.$to.end(--s);)++a;return a}findCloseLevel(e){e:for(let n=Math.min(this.depth,e.depth);n>=0;n--){let{match:s,type:a}=this.frontier[n],i=n=0;c--){let{match:u,type:h}=this.frontier[c],f=og(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=Yc(this.placed,n.depth,n.fit)),e=n.move;for(let s=n.depth+1;s<=e.depth;s++){let a=e.node(s),i=a.type.contentMatch.fillBefore(a.content,!0,e.index(s));this.openFrontierNode(a.type,a.attrs,i)}return e}openFrontierNode(e,n=null,s){let a=this.frontier[this.depth];a.match=a.match.matchType(e),this.placed=Yc(this.placed,this.depth,ve.from(e.create(n,s))),this.frontier.push({type:e,match:e.contentMatch})}closeFrontierNode(){let n=this.frontier.pop().match.fillBefore(ve.empty,!0);n.childCount&&(this.placed=Yc(this.placed,this.frontier.length,n))}}function Jc(t,e,n){return e==0?t.cutByIndex(n,t.childCount):t.replaceChild(0,t.firstChild.copy(Jc(t.firstChild.content,e-1,n)))}function Yc(t,e,n){return e==0?t.append(n):t.replaceChild(t.childCount-1,t.lastChild.copy(Yc(t.lastChild.content,e-1,n)))}function ig(t,e){for(let n=0;n1&&(s=s.replaceChild(0,jS(s.firstChild,e-1,s.childCount==1?n-1:0))),e>0&&(s=t.type.contentMatch.fillBefore(s).append(s),n<=0&&(s=s.append(t.type.contentMatch.matchFragment(s).fillBefore(ve.empty,!0)))),t.copy(s)}function og(t,e,n,s,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=s.fillBefore(i.content,!0,o);return c&&!SO(n,i.content,o)?c:null}function SO(t,e,n){for(let s=n;s0;g--,y--){let N=a.node(g).type.spec;if(N.defining||N.definingAsContext||N.isolating)break;o.indexOf(g)>-1?c=g:a.before(g)==y&&o.splice(1,0,-g)}let u=o.indexOf(c),h=[],f=s.openStart;for(let g=s.content,y=0;;y++){let N=g.firstChild;if(h.push(N),y==s.openStart)break;g=N.content}for(let g=f-1;g>=0;g--){let y=h[g],N=CO(y.type);if(N&&!y.sameMarkup(a.node(Math.abs(c)-1)))f=g;else if(N||!y.type.isTextblock)break}for(let g=s.openStart;g>=0;g--){let y=(g+f+1)%(s.openStart+1),N=h[y];if(N)for(let w=0;w=0&&(t.replace(e,n,s),!(t.steps.length>m));g--){let y=o[g];y<0||(e=a.before(y),n=i.after(y))}}function kS(t,e,n,s,a){if(es){let i=a.contentMatchAt(0),o=i.fillBefore(t).append(t);t=o.append(i.matchFragment(o).fillBefore(ve.empty,!0))}return t}function TO(t,e,n,s){if(!s.isInline&&e==n&&t.doc.resolve(e).parent.content.size){let a=jO(t.doc,e,s.type);a!=null&&(e=n=a)}t.replaceRange(e,n,new Ie(ve.from(s),0,0))}function MO(t,e,n){let s=t.doc.resolve(e),a=t.doc.resolve(n),i=SS(s,a);for(let o=0;o0&&(u||s.node(c-1).canReplace(s.index(c-1),a.indexAfter(c-1))))return t.delete(s.before(c),a.after(c))}for(let o=1;o<=s.depth&&o<=a.depth;o++)if(e-s.start(o)==s.depth-o&&n>s.end(o)&&a.end(o)-n!=a.depth-o&&s.start(o-1)==a.start(o-1)&&s.node(o-1).canReplace(s.index(o-1),a.index(o-1)))return t.delete(s.before(o),n);t.delete(e,n)}function SS(t,e){let n=[],s=Math.min(t.depth,e.depth);for(let a=s;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 Fl extends ps{constructor(e,n,s){super(),this.pos=e,this.attr=n,this.value=s}apply(e){let n=e.nodeAt(this.pos);if(!n)return kn.fail("No node at attribute step's position");let s=Object.create(null);for(let i in n.attrs)s[i]=n.attrs[i];s[this.attr]=this.value;let a=n.type.create(s,null,n.marks);return kn.fromReplace(e,this.pos,this.pos+1,new Ie(ve.from(a),0,n.isLeaf?0:1))}getMap(){return Fs.empty}invert(e){return new Fl(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 Fl(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 Fl(n.pos,n.attr,n.value)}}ps.jsonID("attr",Fl);class kd extends ps{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 s=e.type.create(n,e.content,e.marks);return kn.ok(s)}getMap(){return Fs.empty}invert(e){return new kd(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 kd(n.attr,n.value)}}ps.jsonID("docAttr",kd);let Wl=class extends Error{};Wl=function t(e){let n=Error.call(this,e);return n.__proto__=t.prototype,n};Wl.prototype=Object.create(Error.prototype);Wl.prototype.constructor=Wl;Wl.prototype.name="TransformError";class j0{constructor(e){this.doc=e,this.steps=[],this.docs=[],this.mapping=new jd}get before(){return this.docs.length?this.docs[0]:this.doc}step(e){let n=this.maybeStep(e);if(n.failed)throw new Wl(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 s=0;s{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,s=Ie.empty){let a=Vf(this.doc,e,n,s);return a&&this.step(a),this}replaceWith(e,n,s){return this.replace(e,n,new Ie(ve.from(s),0,0))}delete(e,n){return this.replace(e,n,Ie.empty)}insert(e,n){return this.replaceWith(e,e,n)}replaceRange(e,n,s){return EO(this,e,n,s),this}replaceRangeWith(e,n,s){return TO(this,e,n,s),this}deleteRange(e,n){return MO(this,e,n),this}lift(e,n){return fO(this,e,n),this}join(e,n=1){return wO(this,e,n),this}wrap(e,n){return gO(this,e,n),this}setBlockType(e,n=e,s,a=null){return xO(this,e,n,s,a),this}setNodeMarkup(e,n,s=null,a){return bO(this,e,n,s,a),this}setNodeAttribute(e,n,s){return this.step(new Fl(e,n,s)),this}setDocAttribute(e,n){return this.step(new kd(e,n)),this}addNodeMark(e,n){return this.step(new vi(e,n)),this}removeNodeMark(e,n){let s=this.doc.nodeAt(e);if(!s)throw new RangeError("No node at position "+e);if(n instanceof $t)n.isInSet(s.marks)&&this.step(new Oo(e,n));else{let a=s.marks,i,o=[];for(;i=n.isInSet(a);)o.push(new Oo(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,s){return vO(this,e,n,s),this}addMark(e,n,s){return dO(this,e,n,s),this}removeMark(e,n,s){return uO(this,e,n,s),this}clearIncompatible(e,n,s){return N0(this,e,n,s),this}}const lg=Object.create(null);class rt{constructor(e,n,s){this.$anchor=e,this.$head=n,this.ranges=s||[new CS(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?Ml(e.node(0),e.node(i),e.before(i+1),e.index(i),n,s):Ml(e.node(0),e.node(i),e.after(i+1),e.index(i)+1,n,s);if(o)return o}return null}static near(e,n=1){return this.findFrom(e,n)||this.findFrom(e,-n)||new Ws(e.node(0))}static atStart(e){return Ml(e,e,0,0,1)||new Ws(e)}static atEnd(e){return Ml(e,e,e.content.size,e.childCount,-1)||new Ws(e)}static fromJSON(e,n){if(!n||!n.type)throw new RangeError("Invalid input for Selection.fromJSON");let s=lg[n.type];if(!s)throw new RangeError(`No selection type ${n.type} defined`);return s.fromJSON(e,n)}static jsonID(e,n){if(e in lg)throw new RangeError("Duplicate use of selection JSON ID "+e);return lg[e]=n,n.prototype.jsonID=e,n}getBookmark(){return Ze.between(this.$anchor,this.$head).getBookmark()}}rt.prototype.visible=!0;class CS{constructor(e,n){this.$from=e,this.$to=n}}let O1=!1;function D1(t){!O1&&!t.parent.inlineContent&&(O1=!0,console.warn("TextSelection endpoint not pointing into a node with inline content ("+t.parent.type.name+")"))}class Ze extends rt{constructor(e,n=e){D1(e),D1(n),super(e,n)}get $cursor(){return this.$anchor.pos==this.$head.pos?this.$head:null}map(e,n){let s=e.resolve(n.map(this.head));if(!s.parent.inlineContent)return rt.near(s);let a=e.resolve(n.map(this.anchor));return new Ze(a.parent.inlineContent?a:s,s)}replace(e,n=Ie.empty){if(super.replace(e,n),n==Ie.empty){let s=this.$from.marksAcross(this.$to);s&&e.ensureMarks(s)}}eq(e){return e instanceof Ze&&e.anchor==this.anchor&&e.head==this.head}getBookmark(){return new Hf(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 Ze(e.resolve(n.anchor),e.resolve(n.head))}static create(e,n,s=n){let a=e.resolve(n);return new this(a,s==n?a:e.resolve(s))}static between(e,n,s){let a=e.pos-n.pos;if((!s||a)&&(s=a>=0?1:-1),!n.parent.inlineContent){let i=rt.findFrom(n,s,!0)||rt.findFrom(n,-s,!0);if(i)n=i.$head;else return rt.near(n,s)}return e.parent.inlineContent||(a==0?e=n:(e=(rt.findFrom(e,-s,!0)||rt.findFrom(e,s,!0)).$anchor,e.pos0?0:1);a>0?o=0;o+=a){let c=e.child(o);if(c.isAtom){if(!i&&Xe.isSelectable(c))return Xe.create(t,n-(a<0?c.nodeSize:0))}else{let u=Ml(t,c,n+a,a<0?c.childCount:0,a,i);if(u)return u}n+=c.nodeSize*a}return null}function L1(t,e,n){let s=t.steps.length-1;if(s{o==null&&(o=f)}),t.setSelection(rt.near(t.doc.resolve(o),n))}const _1=1,th=2,z1=4;class IO extends j0{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 $t.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 s=this.selection;return n&&(e=e.mark(this.storedMarks||(s.empty?s.$from.marks():s.$from.marksAcross(s.$to)||$t.none))),s.replaceWith(this,e),this}deleteSelection(){return this.selection.replace(this),this}insertText(e,n,s){let a=this.doc.type.schema;if(n==null)return e?this.replaceSelectionWith(a.text(e),!0):this.deleteSelection();{if(s==null&&(s=n),!e)return this.deleteRange(n,s);let i=this.storedMarks;if(!i){let o=this.doc.resolve(n);i=s==n?o.marks():o.marksAcross(this.doc.resolve(s))}return this.replaceRangeWith(n,s,a.text(e,i)),!this.selection.empty&&this.selection.to==n+e.length&&this.setSelection(rt.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|=z1,this}get scrolledIntoView(){return(this.updated&z1)>0}}function $1(t,e){return!e||!t?t:t.bind(e)}class Qc{constructor(e,n,s){this.name=e,this.init=$1(n.init,s),this.apply=$1(n.apply,s)}}const RO=[new Qc("doc",{init(t){return t.doc||t.schema.topNodeType.createAndFill()},apply(t){return t.doc}}),new Qc("selection",{init(t,e){return t.selection||rt.atStart(e.doc)},apply(t){return t.selection}}),new Qc("storedMarks",{init(t){return t.storedMarks||null},apply(t,e,n,s){return s.selection.$cursor?t.storedMarks:null}}),new Qc("scrollToSelection",{init(){return 0},apply(t,e){return t.scrolledIntoView?e+1:e}})];class cg{constructor(e,n){this.schema=e,this.plugins=[],this.pluginsByKey=Object.create(null),this.fields=RO.slice(),n&&n.forEach(s=>{if(this.pluginsByKey[s.key])throw new RangeError("Adding different instances of a keyed plugin ("+s.key+")");this.plugins.push(s),this.pluginsByKey[s.key]=s,s.spec.state&&this.fields.push(new Qc(s.key,s.spec.state,s))})}}class _l{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 s=0;ss.toJSON())),e&&typeof e=="object")for(let s in e){if(s=="doc"||s=="selection")throw new RangeError("The JSON fields `doc` and `selection` are reserved");let a=e[s],i=a.spec.state;i&&i.toJSON&&(n[s]=i.toJSON.call(a,this[a.key]))}return n}static fromJSON(e,n,s){if(!n)throw new RangeError("Invalid input for EditorState.fromJSON");if(!e.schema)throw new RangeError("Required config field 'schema' missing");let a=new cg(e.schema,e.plugins),i=new _l(a);return a.fields.forEach(o=>{if(o.name=="doc")i.doc=Sa.fromJSON(e.schema,n.doc);else if(o.name=="selection")i.selection=rt.fromJSON(i.doc,n.selection);else if(o.name=="storedMarks")n.storedMarks&&(i.storedMarks=n.storedMarks.map(e.schema.markFromJSON));else{if(s)for(let c in s){let u=s[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 s in t){let a=t[s];a instanceof Function?a=a.bind(e):s=="handleDOMEvents"&&(a=ES(a,e,{})),n[s]=a}return n}class Wt{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 dg=Object.create(null);function TS(t){return t in dg?t+"$"+ ++dg[t]:(dg[t]=0,t+"$")}class nn{constructor(e="key"){this.key=TS(e)}get(e){return e.config.pluginsByKey[this.key]}getState(e){return e[this.key]}}const S0=(t,e)=>t.selection.empty?!1:(e&&e(t.tr.deleteSelection().scrollIntoView()),!0);function MS(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("backward",t):n.parentOffset>0)?null:n}const AS=(t,e,n)=>{let s=MS(t,n);if(!s)return!1;let a=C0(s);if(!a){let o=s.blockRange(),c=o&&ac(o);return c==null?!1:(e&&e(t.tr.lift(o,c).scrollIntoView()),!0)}let i=a.nodeBefore;if($S(t,a,e,-1))return!0;if(s.parent.content.size==0&&(Ul(i,"end")||Xe.isSelectable(i)))for(let o=s.depth;;o--){let c=Vf(t.doc,s.before(o),s.after(o),Ie.empty);if(c&&c.slice.size1)break}return i.isAtom&&a.depth==s.depth-1?(e&&e(t.tr.delete(a.pos-i.nodeSize,a.pos).scrollIntoView()),!0):!1},PO=(t,e,n)=>{let s=MS(t,n);if(!s)return!1;let a=C0(s);return a?IS(t,a,e):!1},OO=(t,e,n)=>{let s=PS(t,n);if(!s)return!1;let a=E0(s);return a?IS(t,a,e):!1};function IS(t,e,n){let s=e.nodeBefore,a=s,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=Vf(t.doc,i,u,Ie.empty);if(!h||h.from!=i||h instanceof Bn&&h.slice.size>=u-i)return!1;if(n){let f=t.tr.step(h);f.setSelection(Ze.create(f.doc,i)),n(f.scrollIntoView())}return!0}function Ul(t,e,n=!1){for(let s=t;s;s=e=="start"?s.firstChild:s.lastChild){if(s.isTextblock)return!0;if(n&&s.childCount!=1)return!1}return!1}const RS=(t,e,n)=>{let{$head:s,empty:a}=t.selection,i=s;if(!a)return!1;if(s.parent.isTextblock){if(n?!n.endOfTextblock("backward",t):s.parentOffset>0)return!1;i=C0(s)}let o=i&&i.nodeBefore;return!o||!Xe.isSelectable(o)?!1:(e&&e(t.tr.setSelection(Xe.create(t.doc,i.pos-o.nodeSize)).scrollIntoView()),!0)};function C0(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 PS(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("forward",t):n.parentOffset{let s=PS(t,n);if(!s)return!1;let a=E0(s);if(!a)return!1;let i=a.nodeAfter;if($S(t,a,e,1))return!0;if(s.parent.content.size==0&&(Ul(i,"start")||Xe.isSelectable(i))){let o=Vf(t.doc,s.before(),s.after(),Ie.empty);if(o&&o.slice.size{let{$head:s,empty:a}=t.selection,i=s;if(!a)return!1;if(s.parent.isTextblock){if(n?!n.endOfTextblock("forward",t):s.parentOffset=0;e--){let n=t.node(e);if(t.index(e)+1{let n=t.selection,s=n instanceof Xe,a;if(s){if(n.node.isTextblock||!zi(t.doc,n.from))return!1;a=n.from}else if(a=Bf(t.doc,n.from,-1),a==null)return!1;if(e){let i=t.tr.join(a);s&&i.setSelection(Xe.create(i.doc,a-t.doc.resolve(a).nodeBefore.nodeSize)),e(i.scrollIntoView())}return!0},LO=(t,e)=>{let n=t.selection,s;if(n instanceof Xe){if(n.node.isTextblock||!zi(t.doc,n.to))return!1;s=n.to}else if(s=Bf(t.doc,n.to,1),s==null)return!1;return e&&e(t.tr.join(s).scrollIntoView()),!0},_O=(t,e)=>{let{$from:n,$to:s}=t.selection,a=n.blockRange(s),i=a&&ac(a);return i==null?!1:(e&&e(t.tr.lift(a,i).scrollIntoView()),!0)},LS=(t,e)=>{let{$head:n,$anchor:s}=t.selection;return!n.parent.type.spec.code||!n.sameParent(s)?!1:(e&&e(t.tr.insertText(` -`).scrollIntoView()),!0)};function T0(t){for(let e=0;e{let{$head:n,$anchor:s}=t.selection;if(!n.parent.type.spec.code||!n.sameParent(s))return!1;let a=n.node(-1),i=n.indexAfter(-1),o=T0(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(rt.near(u.doc.resolve(c),1)),e(u.scrollIntoView())}return!0},_S=(t,e)=>{let n=t.selection,{$from:s,$to:a}=n;if(n instanceof Ws||s.parent.inlineContent||a.parent.inlineContent)return!1;let i=T0(a.parent.contentMatchAt(a.indexAfter()));if(!i||!i.isTextblock)return!1;if(e){let o=(!s.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(Ca(t.doc,i))return e&&e(t.tr.split(i).scrollIntoView()),!0}let s=n.blockRange(),a=s&&ac(s);return a==null?!1:(e&&e(t.tr.lift(s,a).scrollIntoView()),!0)};function $O(t){return(e,n)=>{let{$from:s,$to:a}=e.selection;if(e.selection instanceof Xe&&e.selection.node.isBlock)return!s.parentOffset||!Ca(e.doc,s.pos)?!1:(n&&n(e.tr.split(s.pos).scrollIntoView()),!0);if(!s.depth)return!1;let i=[],o,c,u=!1,h=!1;for(let y=s.depth;;y--)if(s.node(y).isBlock){u=s.end(y)==s.pos+(s.depth-y),h=s.start(y)==s.pos-(s.depth-y),c=T0(s.node(y-1).contentMatchAt(s.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 Ze||e.selection instanceof Ws)&&f.deleteSelection();let m=f.mapping.map(s.pos),g=Ca(f.doc,m,i.length,i);if(g||(i[0]=c?{type:c}:null,g=Ca(f.doc,m,i.length,i)),!g)return!1;if(f.split(m,i.length,i),!u&&h&&s.node(o).type!=c){let y=f.mapping.map(s.before(o)),N=f.doc.resolve(y);c&&s.node(o-1).canReplaceWith(N.index(),N.index()+1,c)&&f.setNodeMarkup(f.mapping.map(s.before(o)),c)}return n&&n(f.scrollIntoView()),!0}}const FO=$O(),BO=(t,e)=>{let{$from:n,to:s}=t.selection,a,i=n.sharedDepth(s);return i==0?!1:(a=n.before(i),e&&e(t.tr.setSelection(Xe.create(t.doc,a))),!0)};function VO(t,e,n){let s=e.nodeBefore,a=e.nodeAfter,i=e.index();return!s||!a||!s.type.compatibleContent(a.type)?!1:!s.content.size&&e.parent.canReplace(i-1,i)?(n&&n(t.tr.delete(e.pos-s.nodeSize,e.pos).scrollIntoView()),!0):!e.parent.canReplace(i,i+1)||!(a.isTextblock||zi(t.doc,e.pos))?!1:(n&&n(t.tr.join(e.pos).scrollIntoView()),!0)}function $S(t,e,n,s){let a=e.nodeBefore,i=e.nodeAfter,o,c,u=a.type.spec.isolating||i.type.spec.isolating;if(!u&&VO(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,N=ve.empty;for(let k=o.length-1;k>=0;k--)N=ve.from(o[k].create(null,N));N=ve.from(a.copy(N));let w=t.tr.step(new Vn(e.pos-1,y,e.pos,y,new Ie(N,1,0),o.length,!0)),v=w.doc.resolve(y+2*o.length);v.nodeAfter&&v.nodeAfter.type==a.type&&zi(w.doc,v.pos)&&w.join(v.pos),n(w.scrollIntoView())}return!0}let f=i.type.spec.isolating||s>0&&u?null:rt.findFrom(e,1),m=f&&f.$from.blockRange(f.$to),g=m&&ac(m);if(g!=null&&g>=e.depth)return n&&n(t.tr.lift(m,g).scrollIntoView()),!0;if(h&&Ul(i,"start",!0)&&Ul(a,"end")){let y=a,N=[];for(;N.push(y),!y.isTextblock;)y=y.lastChild;let w=i,v=1;for(;!w.isTextblock;w=w.firstChild)v++;if(y.canReplace(y.childCount,y.childCount,w.content)){if(n){let k=ve.empty;for(let E=N.length-1;E>=0;E--)k=ve.from(N[E].copy(k));let C=t.tr.step(new Vn(e.pos-N.length,e.pos+i.nodeSize,e.pos+v,e.pos+i.nodeSize-v,new Ie(k,N.length,0),0,!0));n(C.scrollIntoView())}return!0}}return!1}function FS(t){return function(e,n){let s=e.selection,a=t<0?s.$from:s.$to,i=a.depth;for(;a.node(i).isInline;){if(!i)return!1;i--}return a.node(i).isTextblock?(n&&n(e.tr.setSelection(Ze.create(e.doc,t<0?a.start(i):a.end(i)))),!0):!1}}const HO=FS(-1),WO=FS(1);function UO(t,e=null){return function(n,s){let{$from:a,$to:i}=n.selection,o=a.blockRange(i),c=o&&w0(o,t,e);return c?(s&&s(n.tr.wrap(o,c).scrollIntoView()),!0):!1}}function F1(t,e=null){return function(n,s){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(s){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 _h(u,u,e.depth),e.endIndex=0;f--)i=ve.from(n[f].type.create(n[f].attrs,i));t.step(new Vn(e.start-(s?2:0),e.end,e.start,e.end,new Ie(i,0,0),n.length,!0));let o=0;for(let f=0;fo.childCount>0&&o.firstChild.type==t);return i?n?s.node(i.depth-1).type==t?YO(e,n,t,i):QO(e,n,i):!0:!1}}function YO(t,e,n,s){let a=t.tr,i=s.end,o=s.$to.end(s.depth);iw;N--)y-=a.child(N).nodeSize,s.delete(y-1,y+1);let i=s.doc.resolve(n.start),o=i.nodeAfter;if(s.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?ve.empty:ve.from(a))))return!1;let m=i.pos,g=m+o.nodeSize;return s.step(new Vn(m-(c?1:0),g+(u?1:0),m+1,g-1,new Ie((c?ve.empty:ve.from(a.copy(ve.empty))).append(u?ve.empty:ve.from(a.copy(ve.empty))),c?0:1,u?0:1),c?0:1)),e(s.scrollIntoView()),!0}function XO(t){return function(e,n){let{$from:s,$to:a}=e.selection,i=s.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=ve.from(h?t.create():null),m=new Ie(ve.from(t.create(null,ve.from(c.type.create(null,f)))),h?3:1,0),g=i.start,y=i.end;n(e.tr.step(new Vn(g-(h?3:1),y,g,y,m,1,!0)).scrollIntoView())}return!0}}const Yn=function(t){for(var e=0;;e++)if(t=t.previousSibling,!t)return e},Kl=function(t){let e=t.assignedSlot||t.parentNode;return e&&e.nodeType==11?e.host:e};let ux=null;const Na=function(t,e,n){let s=ux||(ux=document.createRange());return s.setEnd(t,n??t.nodeValue.length),s.setStart(t,e||0),s},ZO=function(){ux=null},Do=function(t,e,n,s){return n&&(B1(t,e,n,s,-1)||B1(t,e,n,s,1))},eD=/^(img|br|input|textarea|hr)$/i;function B1(t,e,n,s,a){for(var i;;){if(t==n&&e==s)return!0;if(e==(a<0?0:ir(t))){let o=t.parentNode;if(!o||o.nodeType!=1||$d(t)||eD.test(t.nodeName)||t.contentEditable=="false")return!1;e=Yn(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?ir(t):0}else return!1}}function ir(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function tD(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=ir(t)}else if(t.parentNode&&!$d(t))e=Yn(t),t=t.parentNode;else return null}}function nD(t,e){for(;;){if(t.nodeType==3&&e2),ar=ql||(Gr?/Mac/.test(Gr.platform):!1),HS=Gr?/Win/.test(Gr.platform):!1,ja=/Android \d/.test($i),Fd=!!V1&&"webkitFontSmoothing"in V1.documentElement.style,iD=Fd?+(/\bAppleWebKit\/(\d+)/.exec(navigator.userAgent)||[0,0])[1]:0;function oD(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 ga(t,e){return typeof t=="number"?t:t[e]}function lD(t){let e=t.getBoundingClientRect(),n=e.width/t.offsetWidth||1,s=e.height/t.offsetHeight||1;return{left:e.left,right:e.left+t.clientWidth*n,top:e.top,bottom:e.top+t.clientHeight*s}}function H1(t,e,n){let s=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=Kl(o);continue}let c=o,u=c==i.body,h=u?oD(i):lD(c),f=0,m=0;if(e.toph.bottom-ga(s,"bottom")&&(m=e.bottom-e.top>h.bottom-h.top?e.top+ga(a,"top")-h.top:e.bottom-h.bottom+ga(a,"bottom")),e.lefth.right-ga(s,"right")&&(f=e.right-h.right+ga(a,"right")),f||m)if(u)i.defaultView.scrollBy(f,m);else{let y=c.scrollLeft,N=c.scrollTop;m&&(c.scrollTop+=m),f&&(c.scrollLeft+=f);let w=c.scrollLeft-y,v=c.scrollTop-N;e={left:e.left-w,top:e.top-v,right:e.right-w,bottom:e.bottom-v}}let g=u?"fixed":getComputedStyle(o).position;if(/^(fixed|sticky)$/.test(g))break;o=g=="absolute"?o.offsetParent:Kl(o)}}function cD(t){let e=t.dom.getBoundingClientRect(),n=Math.max(0,e.top),s,a;for(let i=(e.left+e.right)/2,o=n+1;o=n-20){s=c,a=u.top;break}}return{refDOM:s,refTop:a,stack:WS(t.dom)}}function WS(t){let e=[],n=t.ownerDocument;for(let s=t;s&&(e.push({dom:s,top:s.scrollTop,left:s.scrollLeft}),t!=n);s=Kl(s));return e}function dD({refDOM:t,refTop:e,stack:n}){let s=t?t.getBoundingClientRect().top:0;US(n,s==0?0:s-e)}function US(t,e){for(let n=0;n=c){o=Math.max(N.bottom,o),c=Math.min(N.top,c);let w=N.left>e.left?N.left-e.left:N.right=(N.left+N.right)/2?1:0));continue}}else N.top>e.top&&!u&&N.left<=e.left&&N.right>=e.left&&(u=f,h={left:Math.max(N.left,Math.min(N.right,e.left)),top:N.top});!n&&(e.left>=N.right&&e.top>=N.top||e.left>=N.left&&e.top>=N.bottom)&&(i=m+1)}}return!n&&u&&(n=u,a=h,s=0),n&&n.nodeType==3?hD(n,a):!n||s&&n.nodeType==1?{node:t,offset:i}:KS(n,a)}function hD(t,e){let n=t.nodeValue.length,s=document.createRange(),a;for(let i=0;i=(o.left+o.right)/2?1:0)};break}}return s.detach(),a||{node:t,offset:0}}function A0(t,e){return t.left>=e.left-1&&t.left<=e.right+1&&t.top>=e.top-1&&t.top<=e.bottom+1}function fD(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(s,a,i)}function mD(t,e,n,s){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>s.left||u.top>s.top?a=c.posBefore:(!o&&u.right-1?a:t.docView.posFromDOM(e,n,-1)}function qS(t,e,n){let s=t.childNodes.length;if(s&&n.tope.top&&a++}let h;Fd&&a&&s.nodeType==1&&(h=s.childNodes[a-1]).nodeType==1&&h.contentEditable=="false"&&h.getBoundingClientRect().top>=e.top&&a--,s==t.dom&&a==s.childNodes.length-1&&s.lastChild.nodeType==1&&e.top>s.lastChild.getBoundingClientRect().bottom?c=t.state.doc.content.size:(a==0||s.nodeType!=1||s.childNodes[a-1].nodeName!="BR")&&(c=mD(t,s,a,e))}c==null&&(c=pD(t,o,e));let u=t.docView.nearestDesc(o,!0);return{pos:c,inside:u?u.posAtStart-u.border:-1}}function W1(t){return t.top=0&&a==s.nodeValue.length?(u--,f=1):n<0?u--:h++,Uc(di(Na(s,u,h),f),f<0)}if(!t.state.doc.resolve(e-(i||0)).parent.inlineContent){if(i==null&&a&&(n<0||a==ir(s))){let u=s.childNodes[a-1];if(u.nodeType==1)return ug(u.getBoundingClientRect(),!1)}if(i==null&&a=0)}if(i==null&&a&&(n<0||a==ir(s))){let u=s.childNodes[a-1],h=u.nodeType==3?Na(u,ir(u)-(o?0:1)):u.nodeType==1&&(u.nodeName!="BR"||!u.nextSibling)?u:null;if(h)return Uc(di(h,1),!1)}if(i==null&&a=0)}function Uc(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 ug(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 JS(t,e,n){let s=t.state,a=t.root.activeElement;s!=e&&t.updateState(e),a!=t.dom&&t.focus();try{return n()}finally{s!=e&&t.updateState(s),a!=t.dom&&a&&a.focus()}}function yD(t,e,n){let s=e.selection,a=n=="up"?s.$from:s.$to;return JS(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=GS(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=Na(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 bD=/[\u0590-\u08ac]/;function vD(t,e,n){let{$head:s}=e.selection;if(!s.parent.isTextblock)return!1;let a=s.parentOffset,i=!a,o=a==s.parent.content.size,c=t.domSelection();return c?!bD.test(s.parent.textContent)||!c.modify?n=="left"||n=="backward"?i:o:JS(t,e,()=>{let{focusNode:u,focusOffset:h,anchorNode:f,anchorOffset:m}=t.domSelectionRange(),g=c.caretBidiLevel;c.modify("move",n,"character");let y=s.depth?t.docView.domAfterPos(s.before()):t.dom,{focusNode:N,focusOffset:w}=t.domSelectionRange(),v=N&&!y.contains(N.nodeType==1?N:N.parentNode)||u==N&&h==w;try{c.collapse(f,m),u&&(u!=f||h!=m)&&c.extend&&c.extend(u,h)}catch{}return g!=null&&(c.caretBidiLevel=g),v}):s.pos==s.start()||s.pos==s.end()}let U1=null,K1=null,q1=!1;function ND(t,e,n){return U1==e&&K1==n?q1:(U1=e,K1=n,q1=n=="up"||n=="down"?yD(t,e,n):vD(t,e,n))}const lr=0,G1=1,bo=2,Jr=3;class Bd{constructor(e,n,s,a){this.parent=e,this.children=n,this.dom=s,this.contentDOM=a,this.dirty=lr,s.pmViewDesc=this}matchesWidget(e){return!1}matchesMark(e){return!1}matchesNode(e,n,s){return!1}matchesHack(e){return!1}parseRule(){return null}stopEvent(e){return!1}get size(){let e=0;for(let n=0;nYn(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??s>0?this.posAtEnd:this.posAtStart}nearestDesc(e,n=!1){for(let s=!0,a=e;a;a=a.parentNode){let i=this.getDesc(a),o;if(i&&(!n||i.node))if(s&&(o=i.nodeDOM)&&!(o.nodeType==1?o.contains(e.nodeType==1?e:e.parentNode):o==e))s=!1;else return i}}getDesc(e){let n=e.pmViewDesc;for(let s=n;s;s=s.parent)if(s==this)return n}posFromDOM(e,n,s){for(let a=e;a;a=a.parentNode){let i=this.getDesc(a);if(i)return i.localPosFromDOM(e,n,s)}return-1}descAt(e){for(let n=0,s=0;ne||o instanceof QS){a=e-i;break}i=c}if(a)return this.children[s].domFromPos(a-this.children[s].border,n);for(let i;s&&!(i=this.children[s-1]).size&&i instanceof YS&&i.side>=0;s--);if(n<=0){let i,o=!0;for(;i=s?this.children[s-1]:null,!(!i||i.dom.parentNode==this.contentDOM);s--,o=!1);return i&&n&&o&&!i.border&&!i.domAtom?i.domFromPos(i.size,n):{node:this.contentDOM,offset:i?Yn(i.dom)+1:0}}else{let i,o=!0;for(;i=s=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 g=this.children[m-1];if(g.size&&g.dom.parentNode==this.contentDOM&&!g.emptyChildAt(1)){a=Yn(g.dom)+1;break}e-=g.size}a==-1&&(a=0)}if(a>-1&&(h>n||c==this.children.length-1)){n=h;for(let f=c+1;fN&&on){let N=c;c=u,u=N}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 s=0,a=0;a=s:es){let c=s+i.border,u=o-i.border;if(e>=c&&n<=u){this.dirty=e==s||n==o?bo:G1,e==c&&n==u&&(i.contentLost||i.dom.parentNode!=this.contentDOM)?i.dirty=Jr:i.markDirty(e-c,n-c);return}else i.dirty=i.dom==i.contentDOM&&i.dom.parentNode==this.contentDOM&&!i.children.length?bo:Jr}s=o}this.dirty=bo}markParentsDirty(){let e=1;for(let n=this.parent;n;n=n.parent,e++){let s=e==1?bo:G1;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==lr&&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 wD extends Bd{constructor(e,n,s,a){super(e,[],n,null),this.textDOM=s,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 Lo extends Bd{constructor(e,n,s,a,i){super(e,[],s,a),this.mark=n,this.spec=i}static create(e,n,s,a){let i=a.nodeViews[n.type.name],o=i&&i(n,a,s);return(!o||!o.dom)&&(o=Ho.renderSpec(document,n.type.spec.toDOM(n,s),null,n.attrs)),new Lo(e,n,o.dom,o.contentDOM||o.dom,o)}parseRule(){return this.dirty&Jr||this.mark.type.spec.reparseInView?null:{mark:this.mark.type.name,attrs:this.mark.attrs,contentElement:this.contentDOM}}matchesMark(e){return this.dirty!=Jr&&this.mark.eq(e)}markDirty(e,n){if(super.markDirty(e,n),this.dirty!=lr){let s=this.parent;for(;!s.node;)s=s.parent;s.dirty0&&(i=gx(i,0,e,s));for(let c=0;c{if(!u)return o;if(u.parent)return u.parent.posBeforeChild(u)},s,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}=Ho.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 g=f;return f=e2(f,s,n),h?u=new jD(e,n,s,a,f,m||null,g,h,i,o+1):n.isText?new Uf(e,n,s,a,f,g,i):new Ci(e,n,s,a,f,m||null,g,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 s=this.children[n];if(this.dom.contains(s.dom.parentNode)){e.contentElement=s.dom.parentNode;break}}e.contentElement||(e.getContent=()=>ve.empty)}return e}matchesNode(e,n,s){return this.dirty==lr&&e.eq(this.node)&&$h(n,this.outerDeco)&&s.eq(this.innerDeco)}get size(){return this.node.nodeSize}get border(){return this.node.isLeaf?0:1}updateChildren(e,n){let s=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 SD(this,o&&o.node,e);TD(this.node,this.innerDeco,(h,f,m)=>{h.spec.marks?u.syncToMarks(h.spec.marks,s,e,f):h.type.side>=0&&!m&&u.syncToMarks(f==this.node.childCount?$t.none:this.node.child(f).marks,s,e,f),u.placeWidget(h,e,a)},(h,f,m,g)=>{u.syncToMarks(h.marks,s,e,g);let y;u.findNodeMatch(h,f,m,g)||c&&e.state.selection.from>a&&e.state.selection.to-1&&u.updateNodeAt(h,f,m,y,e)||u.updateNextNode(h,f,m,e,g,a)||u.addNode(h,f,m,e,a),a+=h.nodeSize}),u.syncToMarks([],s,e,0),this.node.isTextblock&&u.addTextblockHacks(),u.destroyRest(),(u.changed||this.dirty==bo)&&(o&&this.protectLocalComposition(e,o),XS(this.contentDOM,this.children,e),ql&&MD(this.dom))}localCompositionInfo(e,n){let{from:s,to:a}=e.state.selection;if(!(e.state.selection instanceof Ze)||sn+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=AD(this.node.content,o,s-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:s,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 wD(this,i,n,a);e.input.compositionNodes.push(o),this.children=gx(this.children,s,s+a.length,e,o)}update(e,n,s,a){return this.dirty==Jr||!e.sameMarkup(this.node)?!1:(this.updateInner(e,n,s,a),!0)}updateInner(e,n,s,a){this.updateOuterDeco(n),this.node=e,this.innerDeco=s,this.contentDOM&&this.updateChildren(a,this.posAtStart),this.dirty=lr}updateOuterDeco(e){if($h(e,this.outerDeco))return;let n=this.nodeDOM.nodeType!=1,s=this.dom;this.dom=ZS(this.dom,this.nodeDOM,mx(this.outerDeco,this.node,n),mx(e,this.node,n)),this.dom!=s&&(s.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 J1(t,e,n,s,a){e2(s,e,t);let i=new Ci(void 0,t,e,n,s,s,s,a,0);return i.contentDOM&&i.updateChildren(a,0),i}class Uf extends Ci{constructor(e,n,s,a,i,o,c){super(e,n,s,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,s,a){return this.dirty==Jr||this.dirty!=lr&&!this.inParent()||!e.sameMarkup(this.node)?!1:(this.updateOuterDeco(n),(this.dirty!=lr||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=lr,!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,s){return e==this.nodeDOM?this.posAtStart+Math.min(n,this.node.text.length):super.localPosFromDOM(e,n,s)}ignoreMutation(e){return e.type!="characterData"&&e.type!="selection"}slice(e,n,s){let a=this.node.cut(e,n),i=document.createTextNode(a.text);return new Uf(this.parent,a,this.outerDeco,this.innerDeco,i,i,s)}markDirty(e,n){super.markDirty(e,n),this.dom!=this.nodeDOM&&(e==0||n==this.nodeDOM.nodeValue.length)&&(this.dirty=Jr)}get domAtom(){return!1}isText(e){return this.node.text==e}}class QS extends Bd{parseRule(){return{ignore:!0}}matchesHack(e){return this.dirty==lr&&this.dom.nodeName==e}get domAtom(){return!0}get ignoreForCoords(){return this.dom.nodeName=="IMG"}}class jD extends Ci{constructor(e,n,s,a,i,o,c,u,h,f){super(e,n,s,a,i,o,c,h,f),this.spec=u}update(e,n,s,a){if(this.dirty==Jr)return!1;if(this.spec.update&&(this.node.type==e.type||this.spec.multiType)){let i=this.spec.update(e,n,s);return i&&this.updateInner(e,n,s,a),i}else return!this.contentDOM&&!e.isLeaf?!1:super.update(e,n,s,a)}selectNode(){this.spec.selectNode?this.spec.selectNode():super.selectNode()}deselectNode(){this.spec.deselectNode?this.spec.deselectNode():super.deselectNode()}setSelection(e,n,s,a){this.spec.setSelection?this.spec.setSelection(e,n,s.root):super.setSelection(e,n,s,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 XS(t,e,n){let s=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=Lo.create(this.top,e[o],n,s);this.top.children.splice(this.index,0,f),this.top=f,this.changed=!0}this.index=0,o++}}findNodeMatch(e,n,s,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,s))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(s){let h=n.children[s-1];if(h instanceof Lo)n=h,s=h.children.length;else{c=h,s--;break}}else{if(n==e)break e;s=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 ED(t,e){return t.type.side-e.type.side}function TD(t,e,n,s){let a=e.locals(t),i=0;if(a.length==0){for(let h=0;hi;)c.push(a[o++]);let N=i+g.nodeSize;if(g.isText){let v=N;o!v.inline):c.slice();s(g,w,e.forChild(i,g),y),i=N}}function MD(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 AD(t,e,n,s){for(let a=0,i=0;a=n){if(i>=s&&u.slice(s-e.length-c,s-c)==e)return s-e.length;let h=c=0&&h+e.length+c>=n)return c+h;if(n==s&&u.length>=s+e.length-c&&u.slice(s-c,s-c+e.length)==e)return s}}return-1}function gx(t,e,n,s,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,s)))}return i}function I0(t,e=null){let n=t.domSelectionRange(),s=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=s.resolve(o),u,h;if(Wf(n)){for(u=o;a&&!a.node;)a=a.parent;let m=a.node;if(a&&m.isAtom&&Xe.isSelectable(m)&&a.parent&&!(m.isInline&&sD(n.focusNode,n.focusOffset,a.dom))){let g=a.posBefore;h=new Xe(o==g?c:s.resolve(g))}}else{if(n instanceof t.dom.ownerDocument.defaultView.Selection&&n.rangeCount>1){let m=o,g=o;for(let y=0;y{(n.anchorNode!=s||n.anchorOffset!=a)&&(e.removeEventListener("selectionchange",t.input.hideSelectionGuard),setTimeout(()=>{(!t2(t)||t.state.selection.visible)&&t.dom.classList.remove("ProseMirror-hideselection")},20))})}function RD(t){let e=t.domSelection();if(!e)return;let n=t.cursorWrapper.dom,s=n.nodeName=="IMG";s?e.collapse(n.parentNode,Yn(n)+1):e.collapse(n,0),!s&&!t.state.selection.visible&&Os&&Si<=11&&(n.disabled=!0,n.disabled=!1)}function n2(t,e){if(e instanceof Xe){let n=t.docView.descAt(e.from);n!=t.lastSelectedViewDesc&&(eN(t),n&&n.selectNode(),t.lastSelectedViewDesc=n)}else eN(t)}function eN(t){t.lastSelectedViewDesc&&(t.lastSelectedViewDesc.parent&&t.lastSelectedViewDesc.deselectNode(),t.lastSelectedViewDesc=void 0)}function R0(t,e,n,s){return t.someProp("createSelectionBetween",a=>a(t,e,n))||Ze.between(e,n,s)}function tN(t){return t.editable&&!t.hasFocus()?!1:s2(t)}function s2(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 PD(t){let e=t.docView.domFromPos(t.state.selection.anchor,0),n=t.domSelectionRange();return Do(e.node,e.offset,n.anchorNode,n.anchorOffset)}function xx(t,e){let{$anchor:n,$head:s}=t.selection,a=e>0?n.max(s):n.min(s),i=a.parent.inlineContent?a.depth?t.doc.resolve(e>0?a.after():a.before()):null:a;return i&&rt.findFrom(i,e)}function ui(t,e){return t.dispatch(t.state.tr.setSelection(e).scrollIntoView()),!0}function nN(t,e,n){let s=t.state.selection;if(s instanceof Ze)if(n.indexOf("s")>-1){let{$head:a}=s,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 ui(t,new Ze(s.$anchor,o))}else if(s.empty){if(t.endOfTextblock(e>0?"forward":"backward")){let a=xx(t.state,e);return a&&a instanceof Xe?ui(t,a):!1}else if(!(ar&&n.indexOf("m")>-1)){let a=s.$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?Xe.isSelectable(i)?ui(t,new Xe(e<0?t.state.doc.resolve(a.pos-i.nodeSize):a)):Fd?ui(t,new Ze(t.state.doc.resolve(e<0?c:c+i.nodeSize))):!1:!1}}else return!1;else{if(s instanceof Xe&&s.node.isInline)return ui(t,new Ze(e>0?s.$to:s.$from));{let a=xx(t.state,e);return a?ui(t,a):!1}}}function Fh(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function ld(t,e){let n=t.pmViewDesc;return n&&n.size==0&&(e<0||t.nextSibling||t.nodeName!="BR")}function Tl(t,e){return e<0?OD(t):DD(t)}function OD(t){let e=t.domSelectionRange(),n=e.focusNode,s=e.focusOffset;if(!n)return;let a,i,o=!1;for(or&&n.nodeType==1&&s0){if(n.nodeType!=1)break;{let c=n.childNodes[s-1];if(ld(c,-1))a=n,i=--s;else if(c.nodeType==3)n=c,s=n.nodeValue.length;else break}}else{if(r2(n))break;{let c=n.previousSibling;for(;c&&ld(c,-1);)a=n.parentNode,i=Yn(c),c=c.previousSibling;if(c)n=c,s=Fh(n);else{if(n=n.parentNode,n==t.dom)break;s=0}}}o?yx(t,n,s):a&&yx(t,a,i)}function DD(t){let e=t.domSelectionRange(),n=e.focusNode,s=e.focusOffset;if(!n)return;let a=Fh(n),i,o;for(;;)if(s{t.state==a&&Ea(t)},50)}function sN(t,e){let n=t.state.doc.resolve(e);if(!(Xn||HS)&&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 rN(t,e,n){let s=t.state.selection;if(s instanceof Ze&&!s.empty||n.indexOf("s")>-1||ar&&n.indexOf("m")>-1)return!1;let{$from:a,$to:i}=s;if(!a.parent.inlineContent||t.endOfTextblock(e<0?"up":"down")){let o=xx(t.state,e);if(o&&o instanceof Xe)return ui(t,o)}if(!a.parent.inlineContent){let o=e<0?a:i,c=s instanceof Ws?rt.near(o,e):rt.findFrom(o,e);return c?ui(t,c):!1}return!1}function aN(t,e){if(!(t.state.selection instanceof Ze))return!0;let{$head:n,$anchor:s,empty:a}=t.state.selection;if(!n.sameParent(s))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 iN(t,e,n){t.domObserver.stop(),e.contentEditable=n,t.domObserver.start()}function zD(t){if(!hs||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 s=e.firstChild;iN(t,s,"true"),setTimeout(()=>iN(t,s,"false"),20)}return!1}function $D(t){let e="";return t.ctrlKey&&(e+="c"),t.metaKey&&(e+="m"),t.altKey&&(e+="a"),t.shiftKey&&(e+="s"),e}function FD(t,e){let n=e.keyCode,s=$D(e);if(n==8||ar&&n==72&&s=="c")return aN(t,-1)||Tl(t,-1);if(n==46&&!e.shiftKey||ar&&n==68&&s=="c")return aN(t,1)||Tl(t,1);if(n==13||n==27)return!0;if(n==37||ar&&n==66&&s=="c"){let a=n==37?sN(t,t.state.selection.from)=="ltr"?-1:1:-1;return nN(t,a,s)||Tl(t,a)}else if(n==39||ar&&n==70&&s=="c"){let a=n==39?sN(t,t.state.selection.from)=="ltr"?1:-1:1;return nN(t,a,s)||Tl(t,a)}else{if(n==38||ar&&n==80&&s=="c")return rN(t,-1,s)||Tl(t,-1);if(n==40||ar&&n==78&&s=="c")return zD(t)||rN(t,1,s)||Tl(t,1);if(s==(ar?"m":"c")&&(n==66||n==73||n==89||n==90))return!0}return!1}function P0(t,e){t.someProp("transformCopied",y=>{e=y(e,t)});let n=[],{content:s,openStart:a,openEnd:i}=e;for(;a>1&&i>1&&s.childCount==1&&s.firstChild.childCount==1;){a--,i--;let y=s.firstChild;n.push(y.type.name,y.attrs!=y.type.defaultAttrs?y.attrs:null),s=y.content}let o=t.someProp("clipboardSerializer")||Ho.fromSchema(t.state.schema),c=d2(),u=c.createElement("div");u.appendChild(o.serializeFragment(s,{document:c}));let h=u.firstChild,f,m=0;for(;h&&h.nodeType==1&&(f=c2[h.nodeName.toLowerCase()]);){for(let y=f.length-1;y>=0;y--){let N=c.createElement(f[y]);for(;u.firstChild;)N.appendChild(u.firstChild);u.appendChild(N),m++}h=u.firstChild}h&&h.nodeType==1&&h.setAttribute("data-pm-slice",`${a} ${i}${m?` -${m}`:""} ${JSON.stringify(n)}`);let g=t.someProp("clipboardTextSerializer",y=>y(e,t))||e.content.textBetween(0,e.content.size,` - -`);return{dom:u,text:g,slice:e}}function a2(t,e,n,s,a){let i=a.parent.type.spec.code,o,c;if(!n&&!e)return null;let u=!!e&&(s||i||!n);if(u){if(t.someProp("transformPastedText",g=>{e=g(e,i||s,t)}),i)return c=new Ie(ve.from(t.state.schema.text(e.replace(/\r\n?/g,` -`))),0,0),t.someProp("transformPasted",g=>{c=g(c,t,!0)}),c;let m=t.someProp("clipboardTextParser",g=>g(e,a,s,t));if(m)c=m;else{let g=a.marks(),{schema:y}=t.state,N=Ho.fromSchema(y);o=document.createElement("div"),e.split(/(?:\r\n?|\n)+/).forEach(w=>{let v=o.appendChild(document.createElement("p"));w&&v.appendChild(N.serializeNode(y.text(w,g)))})}}else t.someProp("transformPastedHTML",m=>{n=m(n,t)}),o=WD(n),Fd&&UD(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 g=o.firstChild;for(;g&&g.nodeType!=1;)g=g.nextSibling;if(!g)break;o=g}if(c||(c=(t.someProp("clipboardParser")||t.someProp("domParser")||ki.fromSchema(t.state.schema)).parseSlice(o,{preserveWhitespace:!!(u||f),context:a,ruleFromNode(g){return g.nodeName=="BR"&&!g.nextSibling&&g.parentNode&&!BD.test(g.parentNode.nodeName)?{ignore:!0}:null}})),f)c=KD(oN(c,+f[1],+f[2]),f[4]);else if(c=Ie.maxOpen(VD(c.content,a),!0),c.openStart||c.openEnd){let m=0,g=0;for(let y=c.content.firstChild;m{c=m(c,t,u)}),c}const BD=/^(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 VD(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&&o2(u,i,c,o[o.length-1],0))o[o.length-1]=h;else{o.length&&(o[o.length-1]=l2(o[o.length-1],i.length));let f=i2(c,u);o.push(f),a=a.matchType(f.type),i=u}}),o)return ve.from(o)}return t}function i2(t,e,n=0){for(let s=e.length-1;s>=n;s--)t=e[s].create(null,ve.from(t));return t}function o2(t,e,n,s,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(ve.empty,!0))),t.replaceChild(e<0?0:t.childCount-1,o.copy(c))}function oN(t,e,n){return en})),fg.createHTML(t)):t}function WD(t){let e=/^(\s*]*>)*/.exec(t);e&&(t=t.slice(e[0].length));let n=d2().createElement("div"),s=/<([a-z][^>\s]+)/i.exec(t),a;if((a=s&&c2[s[1].toLowerCase()])&&(t=a.map(i=>"<"+i+">").join("")+t+a.map(i=>"").reverse().join("")),n.innerHTML=HD(t),a)for(let i=0;i=0;c-=2){let u=n.nodes[s[c]];if(!u||u.hasRequiredAttrs())break;a=ve.from(u.create(s[c+1],a)),i++,o++}return new Ie(a,i,o)}const Ns={},ws={},qD={touchstart:!0,touchmove:!0};class GD{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 JD(t){for(let e in Ns){let n=Ns[e];t.dom.addEventListener(e,t.input.eventHandlers[e]=s=>{QD(t,s)&&!O0(t,s)&&(t.editable||!(s.type in ws))&&n(t,s)},qD[e]?{passive:!0}:void 0)}hs&&t.dom.addEventListener("input",()=>null),vx(t)}function Ni(t,e){t.input.lastSelectionOrigin=e,t.input.lastSelectionTime=Date.now()}function YD(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 vx(t){t.someProp("handleDOMEvents",e=>{for(let n in e)t.input.eventHandlers[n]||t.dom.addEventListener(n,t.input.eventHandlers[n]=s=>O0(t,s))})}function O0(t,e){return t.someProp("handleDOMEvents",n=>{let s=n[e.type];return s?s(t,e)||e.defaultPrevented:!1})}function QD(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 XD(t,e){!O0(t,e)&&Ns[e.type]&&(t.editable||!(e.type in ws))&&Ns[e.type](t,e)}ws.keydown=(t,e)=>{let n=e;if(t.input.shiftKey=n.keyCode==16||n.shiftKey,!h2(t,n)&&(t.input.lastKeyCode=n.keyCode,t.input.lastKeyCodeTime=Date.now(),!(ja&&Xn&&n.keyCode==13)))if(n.keyCode!=229&&t.domObserver.forceFlush(),ql&&n.keyCode==13&&!n.ctrlKey&&!n.altKey&&!n.metaKey){let s=Date.now();t.input.lastIOSEnter=s,t.input.lastIOSEnterFallbackTimeout=setTimeout(()=>{t.input.lastIOSEnter==s&&(t.someProp("handleKeyDown",a=>a(t,go(13,"Enter"))),t.input.lastIOSEnter=0)},200)}else t.someProp("handleKeyDown",s=>s(t,n))||FD(t,n)?n.preventDefault():Ni(t,"key")};ws.keyup=(t,e)=>{e.keyCode==16&&(t.input.shiftKey=!1)};ws.keypress=(t,e)=>{let n=e;if(h2(t,n)||!n.charCode||n.ctrlKey&&!n.altKey||ar&&n.metaKey)return;if(t.someProp("handleKeyPress",a=>a(t,n))){n.preventDefault();return}let s=t.state.selection;if(!(s instanceof Ze)||!s.$from.sameParent(s.$to)){let a=String.fromCharCode(n.charCode),i=()=>t.state.tr.insertText(a).scrollIntoView();!/[\r\n]/.test(a)&&!t.someProp("handleTextInput",o=>o(t,s.$from.pos,s.$to.pos,a,i))&&t.dispatch(i()),n.preventDefault()}};function Kf(t){return{left:t.clientX,top:t.clientY}}function ZD(t,e){let n=e.x-t.clientX,s=e.y-t.clientY;return n*n+s*s<100}function D0(t,e,n,s,a){if(s==-1)return!1;let i=t.state.doc.resolve(s);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 Bl(t,e,n){if(t.focused||t.focus(),t.state.selection.eq(e))return;let s=t.state.tr.setSelection(e);s.setMeta("pointer",!0),t.dispatch(s)}function eL(t,e){if(e==-1)return!1;let n=t.state.doc.resolve(e),s=n.nodeAfter;return s&&s.isAtom&&Xe.isSelectable(s)?(Bl(t,new Xe(n)),!0):!1}function tL(t,e){if(e==-1)return!1;let n=t.state.selection,s,a;n instanceof Xe&&(s=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(Xe.isSelectable(c)){s&&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?(Bl(t,Xe.create(t.state.doc,a)),!0):!1}function nL(t,e,n,s,a){return D0(t,"handleClickOn",e,n,s)||t.someProp("handleClick",i=>i(t,e,s))||(a?tL(t,n):eL(t,n))}function sL(t,e,n,s){return D0(t,"handleDoubleClickOn",e,n,s)||t.someProp("handleDoubleClick",a=>a(t,e,s))}function rL(t,e,n,s){return D0(t,"handleTripleClickOn",e,n,s)||t.someProp("handleTripleClick",a=>a(t,e,s))||aL(t,n,s)}function aL(t,e,n){if(n.button!=0)return!1;let s=t.state.doc;if(e==-1)return s.inlineContent?(Bl(t,Ze.create(s,0,s.content.size)),!0):!1;let a=s.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)Bl(t,Ze.create(s,c+1,c+1+o.content.size));else if(Xe.isSelectable(o))Bl(t,Xe.create(s,c));else continue;return!0}}function L0(t){return Bh(t)}const u2=ar?"metaKey":"ctrlKey";Ns.mousedown=(t,e)=>{let n=e;t.input.shiftKey=n.shiftKey;let s=L0(t),a=Date.now(),i="singleClick";a-t.input.lastClick.time<500&&ZD(n,t.input.lastClick)&&!n[u2]&&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(Kf(n));o&&(i=="singleClick"?(t.input.mouseDown&&t.input.mouseDown.done(),t.input.mouseDown=new iL(t,o,n,!!s)):(i=="doubleClick"?sL:rL)(t,o.pos,o.inside,n)?n.preventDefault():Ni(t,"pointer"))};class iL{constructor(e,n,s,a){this.view=e,this.pos=n,this.event=s,this.flushed=a,this.delayedSelectionSync=!1,this.mightDrag=null,this.startDoc=e.state.doc,this.selectNode=!!s[u2],this.allowDefault=s.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:s.target,u=c?e.docView.nearestDesc(c,!0):null;this.target=u&&u.nodeDOM.nodeType==1?u.nodeDOM:null;let{selection:h}=e.state;(s.button==0&&i.type.spec.draggable&&i.type.spec.selectable!==!1||h instanceof Xe&&h.from<=o&&h.to>o)&&(this.mightDrag={node:i,pos:o,addAttr:!!(this.target&&!this.target.draggable),setUneditable:!!(this.target&&or&&!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)),Ni(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(()=>Ea(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(Kf(e))),this.updateAllowDefault(e),this.allowDefault||!n?Ni(this.view,"pointer"):nL(this.view,n.pos,n.inside,e,this.selectNode)?e.preventDefault():e.button==0&&(this.flushed||hs&&this.mightDrag&&!this.mightDrag.node.isAtom||Xn&&!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)?(Bl(this.view,rt.near(this.view.state.doc.resolve(n.pos))),e.preventDefault()):Ni(this.view,"pointer")}move(e){this.updateAllowDefault(e),Ni(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)}}Ns.touchstart=t=>{t.input.lastTouch=Date.now(),L0(t),Ni(t,"pointer")};Ns.touchmove=t=>{t.input.lastTouch=Date.now(),Ni(t,"pointer")};Ns.contextmenu=t=>L0(t);function h2(t,e){return t.composing?!0:hs&&Math.abs(e.timeStamp-t.input.compositionEndedAt)<500?(t.input.compositionEndedAt=-2e8,!0):!1}const oL=ja?5e3:-1;ws.compositionstart=ws.compositionupdate=t=>{if(!t.composing){t.domObserver.flush();let{state:e}=t,n=e.selection.$to;if(e.selection instanceof Ze&&(e.storedMarks||!n.textOffset&&n.parentOffset&&n.nodeBefore.marks.some(s=>s.type.spec.inclusive===!1)||Xn&&HS&&lL(t)))t.markCursor=t.state.storedMarks||n.marks(),Bh(t,!0),t.markCursor=null;else if(Bh(t,!e.selection.empty),or&&e.selection.empty&&n.parentOffset&&!n.textOffset&&n.nodeBefore.marks.length){let s=t.domSelectionRange();for(let a=s.focusNode,i=s.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}f2(t,oL)};function lL(t){let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(!e||e.nodeType!=1||n>=e.childNodes.length)return!1;let s=e.childNodes[n];return s.nodeType==1&&s.contentEditable=="false"}ws.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++,f2(t,20))};function f2(t,e){clearTimeout(t.input.composingTimeout),e>-1&&(t.input.composingTimeout=setTimeout(()=>Bh(t),e))}function p2(t){for(t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=dL());t.input.compositionNodes.length>0;)t.input.compositionNodes.pop().markParentsDirty()}function cL(t){let e=t.domSelectionRange();if(!e.focusNode)return null;let n=tD(e.focusNode,e.focusOffset),s=nD(e.focusNode,e.focusOffset);if(n&&s&&n!=s){let a=s.pmViewDesc,i=t.domObserver.lastChangedTextNode;if(n==i||s==i)return i;if(!a||!a.isText(s.nodeValue))return s;if(t.input.compositionNode==s){let o=n.pmViewDesc;if(!(!o||!o.isText(n.nodeValue)))return s}}return n||s}function dL(){let t=document.createEvent("Event");return t.initEvent("event",!0,!0),t.timeStamp}function Bh(t,e=!1){if(!(ja&&t.domObserver.flushingSoon>=0)){if(t.domObserver.forceFlush(),p2(t),e||t.docView&&t.docView.dirty){let n=I0(t),s=t.state.selection;return n&&!n.eq(s)?t.dispatch(t.state.tr.setSelection(n)):(t.markCursor||e)&&!s.$from.node(s.$from.sharedDepth(s.to)).inlineContent?t.dispatch(t.state.tr.deleteSelection()):t.updateState(t.state),!0}return!1}}function uL(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 s=getSelection(),a=document.createRange();a.selectNodeContents(e),t.dom.blur(),s.removeAllRanges(),s.addRange(a),setTimeout(()=>{n.parentNode&&n.parentNode.removeChild(n),t.focus()},50)}const Sd=Os&&Si<15||ql&&iD<604;Ns.copy=ws.cut=(t,e)=>{let n=e,s=t.state.selection,a=n.type=="cut";if(s.empty)return;let i=Sd?null:n.clipboardData,o=s.content(),{dom:c,text:u}=P0(t,o);i?(n.preventDefault(),i.clearData(),i.setData("text/html",c.innerHTML),i.setData("text/plain",u)):uL(t,c),a&&t.dispatch(t.state.tr.deleteSelection().scrollIntoView().setMeta("uiEvent","cut"))};function hL(t){return t.openStart==0&&t.openEnd==0&&t.content.childCount==1?t.content.firstChild:null}function fL(t,e){if(!t.dom.parentNode)return;let n=t.input.shiftKey||t.state.selection.$from.parent.type.spec.code,s=t.dom.parentNode.appendChild(document.createElement(n?"textarea":"div"));n||(s.contentEditable="true"),s.style.cssText="position: fixed; left: -10000px; top: 10px",s.focus();let a=t.input.shiftKey&&t.input.lastKeyCode!=45;setTimeout(()=>{t.focus(),s.parentNode&&s.parentNode.removeChild(s),n?Cd(t,s.value,null,a,e):Cd(t,s.textContent,s.innerHTML,a,e)},50)}function Cd(t,e,n,s,a){let i=a2(t,e,n,s,t.state.selection.$from);if(t.someProp("handlePaste",u=>u(t,a,i||Ie.empty)))return!0;if(!i)return!1;let o=hL(i),c=o?t.state.tr.replaceSelectionWith(o,s):t.state.tr.replaceSelection(i);return t.dispatch(c.scrollIntoView().setMeta("paste",!0).setMeta("uiEvent","paste")),!0}function m2(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," "):""}ws.paste=(t,e)=>{let n=e;if(t.composing&&!ja)return;let s=Sd?null:n.clipboardData,a=t.input.shiftKey&&t.input.lastKeyCode!=45;s&&Cd(t,m2(s),s.getData("text/html"),a,n)?n.preventDefault():fL(t,n)};class g2{constructor(e,n,s){this.slice=e,this.move=n,this.node=s}}const pL=ar?"altKey":"ctrlKey";function x2(t,e){let n=t.someProp("dragCopies",s=>!s(e));return n??!e[pL]}Ns.dragstart=(t,e)=>{let n=e,s=t.input.mouseDown;if(s&&s.done(),!n.dataTransfer)return;let a=t.state.selection,i=a.empty?null:t.posAtCoords(Kf(n)),o;if(!(i&&i.pos>=a.from&&i.pos<=(a instanceof Xe?a.to-1:a.to))){if(s&&s.mightDrag)o=Xe.create(t.state.doc,s.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=Xe.create(t.state.doc,m.posBefore))}}let c=(o||t.state.selection).content(),{dom:u,text:h,slice:f}=P0(t,c);(!n.dataTransfer.files.length||!Xn||VS>120)&&n.dataTransfer.clearData(),n.dataTransfer.setData(Sd?"Text":"text/html",u.innerHTML),n.dataTransfer.effectAllowed="copyMove",Sd||n.dataTransfer.setData("text/plain",h),t.dragging=new g2(f,x2(t,n),o)};Ns.dragend=t=>{let e=t.dragging;window.setTimeout(()=>{t.dragging==e&&(t.dragging=null)},50)};ws.dragover=ws.dragenter=(t,e)=>e.preventDefault();ws.drop=(t,e)=>{try{mL(t,e,t.dragging)}finally{t.dragging=null}};function mL(t,e,n){if(!e.dataTransfer)return;let s=t.posAtCoords(Kf(e));if(!s)return;let a=t.state.doc.resolve(s.pos),i=n&&n.slice;i?t.someProp("transformPasted",y=>{i=y(i,t,!1)}):i=a2(t,m2(e.dataTransfer),Sd?null:e.dataTransfer.getData("text/html"),!1,a);let o=!!(n&&x2(t,e));if(t.someProp("handleDrop",y=>y(t,e,i||Ie.empty,o))){e.preventDefault();return}if(!i)return;e.preventDefault();let c=i?NS(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 g=u.doc.resolve(h);if(f&&Xe.isSelectable(i.content.firstChild)&&g.nodeAfter&&g.nodeAfter.sameMarkup(i.content.firstChild))u.setSelection(new Xe(g));else{let y=u.mapping.map(c);u.mapping.maps[u.mapping.maps.length-1].forEach((N,w,v,k)=>y=k),u.setSelection(R0(t,g,u.doc.resolve(y)))}t.focus(),t.dispatch(u.setMeta("uiEvent","drop"))}Ns.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())&&Ea(t)},20))};Ns.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)};Ns.beforeinput=(t,e)=>{if(Xn&&ja&&e.inputType=="deleteContentBackward"){t.domObserver.flushSoon();let{domChangeCount:s}=t.input;setTimeout(()=>{if(t.input.domChangeCount!=s||(t.dom.blur(),t.focus(),t.someProp("handleKeyDown",i=>i(t,go(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 ws)Ns[t]=ws[t];function Ed(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 Vh{constructor(e,n){this.toDOM=e,this.spec=n||Eo,this.side=this.spec.side||0}map(e,n,s,a){let{pos:i,deleted:o}=e.mapResult(n.from+a,this.side<0?-1:1);return o?null:new In(i-s,i-s,this)}valid(){return!0}eq(e){return this==e||e instanceof Vh&&(this.spec.key&&this.spec.key==e.spec.key||this.toDOM==e.toDOM&&Ed(this.spec,e.spec))}destroy(e){this.spec.destroy&&this.spec.destroy(e)}}class Ei{constructor(e,n){this.attrs=e,this.spec=n||Eo}map(e,n,s,a){let i=e.map(n.from+a,this.spec.inclusiveStart?-1:1)-s,o=e.map(n.to+a,this.spec.inclusiveEnd?1:-1)-s;return i>=o?null:new In(i,o,this)}valid(e,n){return n.from=e&&(!i||i(c.spec))&&s.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,s,a+c,i)}}map(e,n,s){return this==as||e.maps.length==0?this:this.mapInner(e,n,0,0,s||Eo)}mapInner(e,n,s,a,i){let o;for(let c=0;c{let h=u+s,f;if(f=b2(n,c,h)){for(a||(a=this.children.slice());ic&&m.to=e){this.children[c]==e&&(s=this.children[c+2]);break}let i=e+1,o=i+n.content.size;for(let c=0;ci&&u.type instanceof Ei){let h=Math.max(i,u.from)-i,f=Math.min(o,u.to)-i;ha.map(e,n,Eo));return pi.from(s)}forChild(e,n){if(n.isLeaf)return zt.empty;let s=[];for(let a=0;an instanceof zt)?e:e.reduce((n,s)=>n.concat(s instanceof zt?s:s.members),[]))}}forEachSet(e){for(let n=0;n{let v=w-N-(y-g);for(let k=0;kC+f-m)continue;let E=c[k]+f-m;y>=E?c[k+1]=g<=E?-2:-1:g>=f&&v&&(c[k]+=v,c[k+1]+=v)}m+=v}),f=n.maps[h].map(f,-1)}let u=!1;for(let h=0;h=s.content.size){u=!0;continue}let g=n.map(t[h+1]+i,-1),y=g-a,{index:N,offset:w}=s.content.findIndex(m),v=s.maybeChild(N);if(v&&w==m&&w+v.nodeSize==y){let k=c[h+2].mapInner(n,v,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=xL(c,t,e,n,a,i,o),f=Hh(h,s,0,o);e=f.local;for(let m=0;mn&&o.to{let h=b2(t,c,u+n);if(h){i=!0;let f=Hh(h,c,n+u+1,s);f!=as&&a.push(u,u+c.nodeSize,f)}});let o=y2(i?v2(t):t,-n).sort(To);for(let c=0;c0;)e++;t.splice(e,0,n)}function pg(t){let e=[];return t.someProp("decorations",n=>{let s=n(t.state);s&&s!=as&&e.push(s)}),t.cursorWrapper&&e.push(zt.create(t.state.doc,[t.cursorWrapper.deco])),pi.from(e)}const yL={childList:!0,characterData:!0,characterDataOldValue:!0,attributes:!0,attributeOldValue:!0,subtree:!0},bL=Os&&Si<=11;class vL{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 NL{constructor(e,n){this.view=e,this.handleDOMChange=n,this.queue=[],this.flushingSoon=-1,this.observer=null,this.currentSelection=new vL,this.onCharData=null,this.suppressingSelectionUpdates=!1,this.lastChangedTextNode=null,this.observer=window.MutationObserver&&new window.MutationObserver(s=>{for(let a=0;aa.type=="childList"&&a.removedNodes.length||a.type=="characterData"&&a.oldValue.length>a.target.nodeValue.length)?this.flushSoon():hs&&e.composing&&s.some(a=>a.type=="childList"&&a.target.nodeName=="TR")?(e.input.badSafariComposition=!0,this.flushSoon()):this.flush()}),bL&&(this.onCharData=s=>{this.queue.push({target:s.target,type:"characterData",oldValue:s.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,yL)),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(tN(this.view)){if(this.suppressingSelectionUpdates)return Ea(this.view);if(Os&&Si<=11&&!this.view.state.selection.empty){let e=this.view.domSelectionRange();if(e.focusNode&&Do(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,s;for(let i=e.focusNode;i;i=Kl(i))n.add(i);for(let i=e.anchorNode;i;i=Kl(i))if(n.has(i)){s=i;break}let a=s&&this.view.docView.nearestDesc(s);if(a&&a.ignoreMutation({type:"selection",target:s.nodeType==3?s.parentNode:s}))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 s=e.domSelectionRange(),a=!this.suppressingSelectionUpdates&&!this.currentSelection.eq(s)&&tN(e)&&!this.ignoreSelectionChange(s),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(or&&u.length){let f=u.filter(m=>m.nodeName=="BR");if(f.length==2){let[m,g]=f;m.parentNode&&m.parentNode.parentNode==g.parentNode?g.remove():m.remove()}else{let{focusNode:m}=this.currentSelection;for(let g of f){let y=g.parentNode;y&&y.nodeName=="LI"&&(!m||kL(e,m)!=y)&&g.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),wL(e)),e.input.badSafariComposition&&(e.input.badSafariComposition=!1,SL(e,u)),this.handleDOMChange(i,o,c,u),e.docView&&e.docView.dirty?e.updateState(e.state):this.currentSelection.eq(s)||Ea(e),this.currentSelection.set(s))}registerMutation(e,n){if(n.indexOf(e.target)>-1)return null;let s=this.view.docView.nearestDesc(e.target);if(e.type=="attributes"&&(s==this.view.docView||e.attributeName=="contenteditable"||e.attributeName=="style"&&!e.oldValue&&!e.target.getAttribute("style"))||!s||s.ignoreMutation(e))return null;if(e.type=="childList"){for(let f=0;fa;v--){let k=s.childNodes[v-1],C=k.pmViewDesc;if(k.nodeName=="BR"&&!C){i=v;break}if(!C||C.size)break}let m=t.state.doc,g=t.someProp("domParser")||ki.fromSchema(t.state.schema),y=m.resolve(o),N=null,w=g.parse(s,{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:EL,context:y});if(h&&h[0].pos!=null){let v=h[0].pos,k=h[1]&&h[1].pos;k==null&&(k=v),N={anchor:v+o,head:k+o}}return{doc:w,sel:N,from:o,to:c}}function EL(t){let e=t.pmViewDesc;if(e)return e.parseRule();if(t.nodeName=="BR"&&t.parentNode){if(hs&&/^(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||hs&&/^(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 TL=/^(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 ML(t,e,n,s,a){let i=t.input.compositionPendingChanges||(t.composing?t.input.compositionID:0);if(t.input.compositionPendingChanges=0,e<0){let D=t.input.lastSelectionTime>Date.now()-50?t.input.lastSelectionOrigin:null,R=I0(t,D);if(R&&!t.state.selection.eq(R)){if(Xn&&ja&&t.input.lastKeyCode===13&&Date.now()-100_(t,go(13,"Enter"))))return;let O=t.state.tr.setSelection(R);D=="pointer"?O.setMeta("pointer",!0):D=="key"&&O.scrollIntoView(),i&&O.setMeta("composition",i),t.dispatch(O)}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=CL(t,e,n),f=t.state.doc,m=f.slice(h.from,h.to),g,y;t.input.lastKeyCode===8&&Date.now()-100Date.now()-225||ja)&&a.some(D=>D.nodeType==1&&!TL.test(D.nodeName))&&(!N||N.endA>=N.endB)&&t.someProp("handleKeyDown",D=>D(t,go(13,"Enter")))){t.input.lastIOSEnter=0;return}if(!N)if(s&&u instanceof Ze&&!u.empty&&u.$head.sameParent(u.$anchor)&&!t.composing&&!(h.sel&&h.sel.anchor!=h.sel.head))N={start:u.from,endA:u.to,endB:u.to};else{if(h.sel){let D=fN(t,t.state.doc,h.sel);if(D&&!D.eq(t.state.selection)){let R=t.state.tr.setSelection(D);i&&R.setMeta("composition",i),t.dispatch(R)}}return}t.state.selection.fromt.state.selection.from&&N.start<=t.state.selection.from+2&&t.state.selection.from>=h.from?N.start=t.state.selection.from:N.endA=t.state.selection.to-2&&t.state.selection.to<=h.to&&(N.endB+=t.state.selection.to-N.endA,N.endA=t.state.selection.to)),Os&&Si<=11&&N.endB==N.start+1&&N.endA==N.start&&N.start>h.from&&h.doc.textBetween(N.start-h.from-1,N.start-h.from+1)=="  "&&(N.start--,N.endA--,N.endB--);let w=h.doc.resolveNoCache(N.start-h.from),v=h.doc.resolveNoCache(N.endB-h.from),k=f.resolve(N.start),C=w.sameParent(v)&&w.parent.inlineContent&&k.end()>=N.endA;if((ql&&t.input.lastIOSEnter>Date.now()-225&&(!C||a.some(D=>D.nodeName=="DIV"||D.nodeName=="P"))||!C&&w.posD(t,go(13,"Enter")))){t.input.lastIOSEnter=0;return}if(t.state.selection.anchor>N.start&&IL(f,N.start,N.endA,w,v)&&t.someProp("handleKeyDown",D=>D(t,go(8,"Backspace")))){ja&&Xn&&t.domObserver.suppressSelectionUpdates();return}Xn&&N.endB==N.start&&(t.input.lastChromeDelete=Date.now()),ja&&!C&&w.start()!=v.start()&&v.parentOffset==0&&w.depth==v.depth&&h.sel&&h.sel.anchor==h.sel.head&&h.sel.head==N.endA&&(N.endB-=2,v=h.doc.resolveNoCache(N.endB-h.from),setTimeout(()=>{t.someProp("handleKeyDown",function(D){return D(t,go(13,"Enter"))})},20));let E=N.start,M=N.endA,P=D=>{let R=D||t.state.tr.replace(E,M,h.doc.slice(N.start-h.from,N.endB-h.from));if(h.sel){let O=fN(t,R.doc,h.sel);O&&!(Xn&&t.composing&&O.empty&&(N.start!=N.endB||t.input.lastChromeDeleteEa(t),20));let D=P(t.state.tr.delete(E,M)),R=f.resolve(N.start).marksAcross(f.resolve(N.endA));R&&D.ensureMarks(R),t.dispatch(D)}else if(N.endA==N.endB&&($=AL(w.parent.content.cut(w.parentOffset,v.parentOffset),k.parent.content.cut(k.parentOffset,N.endA-k.start())))){let D=P(t.state.tr);$.type=="add"?D.addMark(E,M,$.mark):D.removeMark(E,M,$.mark),t.dispatch(D)}else if(w.parent.child(w.index()).isText&&w.index()==v.index()-(v.textOffset?0:1)){let D=w.parent.textBetween(w.parentOffset,v.parentOffset),R=()=>P(t.state.tr.insertText(D,E,M));t.someProp("handleTextInput",O=>O(t,E,M,D,R))||t.dispatch(R())}else t.dispatch(P());else t.dispatch(P())}function fN(t,e,n){return Math.max(n.anchor,n.head)>e.content.size?null:R0(t,e.resolve(n.anchor),e.resolve(n.head))}function AL(t,e){let n=t.firstChild.marks,s=e.firstChild.marks,a=n,i=s,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||mg(o,!0,!1)0&&(e||t.indexAfter(s)==t.node(s).childCount);)s--,a++,e=!1;if(n){let i=t.node(s).maybeChild(t.indexAfter(s));for(;i&&!i.isLeaf;)i=i.firstChild,a++}return a}function RL(t,e,n,s,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));s-=o+u-i}if(o=o?i-s:0;i-=u,i&&i=c?i-s:0;i-=u,i&&i=56320&&e<=57343&&n>=55296&&n<=56319}class N2{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 GD,this.prevDirectPlugins=[],this.pluginViews=[],this.requiresGeckoHackNode=!1,this.dragging=null,this._props=n,this.state=n.state,this.directPlugins=n.plugins||[],this.directPlugins.forEach(bN),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=xN(this),gN(this),this.nodeViews=yN(this),this.docView=J1(this.state.doc,mN(this),pg(this),this.dom,this),this.domObserver=new NL(this,(s,a,i,o)=>ML(this,s,a,i,o)),this.domObserver.start(),JD(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&&vx(this);let n=this._props;this._props=e,e.plugins&&(e.plugins.forEach(bN),this.directPlugins=e.plugins),this.updateStateInner(e.state,n)}setProps(e){let n={};for(let s in this._props)n[s]=this._props[s];n.state=this.state;for(let s in e)n[s]=e[s];this.update(n)}updateState(e){this.updateStateInner(e,this._props)}updateStateInner(e,n){var s;let a=this.state,i=!1,o=!1;e.storedMarks&&this.composing&&(p2(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=yN(this);OL(y,this.nodeViews)&&(this.nodeViews=y,i=!0)}(c||n.handleDOMEvents!=this._props.handleDOMEvents)&&vx(this),this.editable=xN(this),gN(this);let u=pg(this),h=mN(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 g=f=="preserve"&&o&&this.dom.style.overflowAnchor==null&&cD(this);if(o){this.domObserver.stop();let y=m&&(Os||Xn)&&!this.composing&&!a.selection.empty&&!e.selection.empty&&PL(a.selection,e.selection);if(m){let N=Xn?this.trackWrites=this.domSelectionRange().focusNode:null;this.composing&&(this.input.compositionNode=cL(this)),(i||!this.docView.update(e.doc,h,u,this))&&(this.docView.updateOuterDeco(h),this.docView.destroy(),this.docView=J1(e.doc,h,u,this.dom,this)),N&&(!this.trackWrites||!this.dom.contains(this.trackWrites))&&(y=!0)}y||!(this.input.mouseDown&&this.domObserver.currentSelection.eq(this.domSelectionRange())&&PD(this))?Ea(this,y):(n2(this,e.selection),this.domObserver.setCurSelection()),this.domObserver.start()}this.updatePluginViews(a),!((s=this.dragging)===null||s===void 0)&&s.node&&!a.doc.eq(e.doc)&&this.updateDraggedNode(this.dragging,a),f=="reset"?this.dom.scrollTop=0:f=="to selection"?this.scrollToSelection():g&&dD(g)}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 Xe){let n=this.docView.domAfterPos(this.state.selection.from);n.nodeType==1&&H1(this,n.getBoundingClientRect(),e)}else H1(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))==s.node&&(a=i)}this.dragging=new g2(e.slice,e.move,a<0?void 0:Xe.create(this.state.doc,a))}someProp(e,n){let s=this._props&&this._props[e],a;if(s!=null&&(a=n?n(s):s))return a;for(let o=0;on.ownerDocument.getSelection()),this._root=n}return e||document}updateRoot(){this._root=null}posAtCoords(e){return gD(this,e)}coordsAtPos(e,n=1){return GS(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,s=-1){let a=this.docView.posFromDOM(e,n,s);if(a==null)throw new RangeError("DOM position not inside the editor");return a}endOfTextblock(e,n){return ND(this,n||this.state,e)}pasteHTML(e,n){return Cd(this,"",e,!1,n||new ClipboardEvent("paste"))}pasteText(e,n){return Cd(this,e,null,!0,n||new ClipboardEvent("paste"))}serializeForClipboard(e){return P0(this,e)}destroy(){this.docView&&(YD(this),this.destroyPluginViews(),this.mounted?(this.docView.update(this.state.doc,[],pg(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 XD(this,e)}domSelectionRange(){let e=this.domSelection();return e?hs&&this.root.nodeType===11&&rD(this.dom.ownerDocument)==this.dom&&jL(this,e)||e:{focusNode:null,focusOffset:0,anchorNode:null,anchorOffset:0}}domSelection(){return this.root.getSelection()}}N2.prototype.dispatch=function(t){let e=this._props.dispatchTransaction;e?e.call(this,t):this.updateState(this.state.apply(t))};function mN(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 s in n)s=="class"?e.class+=" "+n[s]:s=="style"?e.style=(e.style?e.style+";":"")+n[s]:!e[s]&&s!="contenteditable"&&s!="nodeName"&&(e[s]=String(n[s]))}),e.translate||(e.translate="no"),[In.node(0,t.state.doc.content.size,e)]}function gN(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:In.widget(t.state.selection.from,e,{raw:!0,marks:t.markCursor})}}else t.cursorWrapper=null}function xN(t){return!t.someProp("editable",e=>e(t.state)===!1)}function PL(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 yN(t){let e=Object.create(null);function n(s){for(let a in s)Object.prototype.hasOwnProperty.call(e,a)||(e[a]=s[a])}return t.someProp("nodeViews",n),t.someProp("markViews",n),e}function OL(t,e){let n=0,s=0;for(let a in t){if(t[a]!=e[a])return!0;n++}for(let a in e)s++;return n!=s}function bN(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 Ai={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:"'"},Wh={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},DL=typeof navigator<"u"&&/Mac/.test(navigator.platform),LL=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);for(var Qn=0;Qn<10;Qn++)Ai[48+Qn]=Ai[96+Qn]=String(Qn);for(var Qn=1;Qn<=24;Qn++)Ai[Qn+111]="F"+Qn;for(var Qn=65;Qn<=90;Qn++)Ai[Qn]=String.fromCharCode(Qn+32),Wh[Qn]=String.fromCharCode(Qn);for(var gg in Ai)Wh.hasOwnProperty(gg)||(Wh[gg]=Ai[gg]);function _L(t){var e=DL&&t.metaKey&&t.shiftKey&&!t.ctrlKey&&!t.altKey||LL&&t.shiftKey&&t.key&&t.key.length==1||t.key=="Unidentified",n=!e&&t.key||(t.shiftKey?Wh:Ai)[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 zL=typeof navigator<"u"&&/Mac|iP(hone|[oa]d)/.test(navigator.platform),$L=typeof navigator<"u"&&/Win/.test(navigator.platform);function FL(t){let e=t.split(/-(?!$)/),n=e[e.length-1];n=="Space"&&(n=" ");let s,a,i,o;for(let c=0;c{for(var n in e)HL(t,n,{get:e[n],enumerable:!0})};function qf(t){const{state:e,transaction:n}=t;let{selection:s}=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 s},get doc(){return a},get tr(){return s=n.selection,a=n.doc,i=n.storedMarks,n}}}var Gf=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:s}=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&&s.dispatch(a),f}]))}get chain(){return()=>this.createChain()}get can(){return()=>this.createCan()}createChain(t,e=!0){const{rawCommands:n,editor:s,state:a}=this,{view:i}=s,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,g])=>[m,(...N)=>{const w=this.buildProps(u,e),v=g(...N)(w);return o.push(v),f}])),run:h};return f}createCan(t){const{rawCommands:e,state:n}=this,s=!1,a=t||n.tr,i=this.buildProps(a,s);return{...Object.fromEntries(Object.entries(e).map(([c,u])=>[c,(...h)=>u(...h)({...i,dispatch:void 0})])),chain:()=>this.createChain(a,s)}}buildProps(t,e=!0){const{rawCommands:n,editor:s,state:a}=this,{view:i}=s,o={tr:t,editor:s,view:i,state:qf({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}},w2={};F0(w2,{blur:()=>WL,clearContent:()=>UL,clearNodes:()=>KL,command:()=>qL,createParagraphNear:()=>GL,cut:()=>JL,deleteCurrentNode:()=>YL,deleteNode:()=>QL,deleteRange:()=>XL,deleteSelection:()=>ZL,enter:()=>e8,exitCode:()=>t8,extendMarkRange:()=>n8,first:()=>s8,focus:()=>a8,forEach:()=>i8,insertContent:()=>o8,insertContentAt:()=>d8,joinBackward:()=>f8,joinDown:()=>h8,joinForward:()=>p8,joinItemBackward:()=>m8,joinItemForward:()=>g8,joinTextblockBackward:()=>x8,joinTextblockForward:()=>y8,joinUp:()=>u8,keyboardShortcut:()=>v8,lift:()=>N8,liftEmptyBlock:()=>w8,liftListItem:()=>j8,newlineInCode:()=>k8,resetAttributes:()=>S8,scrollIntoView:()=>C8,selectAll:()=>E8,selectNodeBackward:()=>T8,selectNodeForward:()=>M8,selectParentNode:()=>A8,selectTextblockEnd:()=>I8,selectTextblockStart:()=>R8,setContent:()=>P8,setMark:()=>Z8,setMeta:()=>e6,setNode:()=>t6,setNodeSelection:()=>n6,setTextDirection:()=>s6,setTextSelection:()=>r6,sinkListItem:()=>a6,splitBlock:()=>i6,splitListItem:()=>o6,toggleList:()=>l6,toggleMark:()=>c6,toggleNode:()=>d6,toggleWrap:()=>u6,undoInputRule:()=>h6,unsetAllMarks:()=>f6,unsetMark:()=>p6,unsetTextDirection:()=>m6,updateAttributes:()=>g6,wrapIn:()=>x6,wrapInList:()=>y6});var WL=()=>({editor:t,view:e})=>(requestAnimationFrame(()=>{var n;t.isDestroyed||(e.dom.blur(),(n=window==null?void 0:window.getSelection())==null||n.removeAllRanges())}),!0),UL=(t=!0)=>({commands:e})=>e.setContent("",{emitUpdate:t}),KL=()=>({state:t,tr:e,dispatch:n})=>{const{selection:s}=e,{ranges:a}=s;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)),g=h.resolve(f.map(u+c.nodeSize)),y=m.blockRange(g);if(!y)return;const N=ac(y);if(c.type.isTextblock){const{defaultType:w}=m.parent.contentMatchAt(m.index());e.setNodeMarkup(y.start,w)}(N||N===0)&&e.lift(y,N)})}),!0},qL=t=>e=>t(e),GL=()=>({state:t,dispatch:e})=>_S(t,e),JL=(t,e)=>({editor:n,tr:s})=>{const{state:a}=n,i=a.doc.slice(t.from,t.to);s.deleteRange(t.from,t.to);const o=s.mapping.map(e);return s.insert(o,i.content),s.setSelection(new Ze(s.doc.resolve(Math.max(o-1,0)))),!0},YL=()=>({tr:t,dispatch:e})=>{const{selection:n}=t,s=n.$anchor.node();if(s.content.size>0)return!1;const a=t.selection.$anchor;for(let i=a.depth;i>0;i-=1)if(a.node(i).type===s.type){if(e){const c=a.before(i),u=a.after(i);t.delete(c,u).scrollIntoView()}return!0}return!1};function Sn(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 QL=t=>({tr:e,state:n,dispatch:s})=>{const a=Sn(t,n.schema),i=e.selection.$anchor;for(let o=i.depth;o>0;o-=1)if(i.node(o).type===a){if(s){const u=i.before(o),h=i.after(o);e.delete(u,h).scrollIntoView()}return!0}return!1},XL=t=>({tr:e,dispatch:n})=>{const{from:s,to:a}=t;return n&&e.delete(s,a),!0},ZL=()=>({state:t,dispatch:e})=>S0(t,e),e8=()=>({commands:t})=>t.keyboardShortcut("Enter"),t8=()=>({state:t,dispatch:e})=>zO(t,e);function B0(t){return Object.prototype.toString.call(t)==="[object RegExp]"}function Uh(t,e,n={strict:!0}){const s=Object.keys(e);return s.length?s.every(a=>n.strict?e[a]===t[a]:B0(e[a])?e[a].test(t[a]):e[a]===t[a]):!0}function j2(t,e,n={}){return t.find(s=>s.type===e&&Uh(Object.fromEntries(Object.keys(n).map(a=>[a,s.attrs[a]])),n))}function vN(t,e,n={}){return!!j2(t,e,n)}function V0(t,e,n){var s;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||((s=a.node.marks[0])==null?void 0:s.attrs),!j2([...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&&vN([...t.parent.child(o-1).marks],e,n);)o-=1,c-=t.parent.child(o).nodeSize;for(;u({tr:n,state:s,dispatch:a})=>{const i=Ia(t,s.schema),{doc:o,selection:c}=n,{$from:u,from:h,to:f}=c;if(a){const m=V0(u,i,e);if(m&&m.from<=h&&m.to>=f){const g=Ze.create(o,m.from,m.to);n.setSelection(g)}}return!0},s8=t=>e=>{const n=typeof t=="function"?t(e):t;for(let s=0;s({editor:n,view:s,tr:a,dispatch:i})=>{e={scrollIntoView:!0,...e};const o=()=>{(Kh()||NN())&&s.dom.focus(),r8()&&!Kh()&&!NN()&&s.dom.focus({preventScroll:!0}),requestAnimationFrame(()=>{n.isDestroyed||(s.focus(),e!=null&&e.scrollIntoView&&n.commands.scrollIntoView())})};try{if(s.hasFocus()&&t===null||t===!1)return!0}catch{return!1}if(i&&t===null&&!k2(n.state.selection))return o(),!0;const c=S2(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},i8=(t,e)=>n=>t.every((s,a)=>e(s,{...n,index:a})),o8=(t,e)=>({tr:n,commands:s})=>s.insertContentAt({from:n.selection.from,to:n.selection.to},t,e),C2=t=>{const e=t.childNodes;for(let n=e.length-1;n>=0;n-=1){const s=e[n];s.nodeType===3&&s.nodeValue&&/^(\n\s\s|\n)$/.test(s.nodeValue)?t.removeChild(s):s.nodeType===1&&C2(s)}return t};function nh(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 C2(n)}function Td(t,e,n){if(t instanceof Sa||t instanceof ve)return t;n={slice:!0,parseOptions:{},...n};const s=typeof t=="object"&&t!==null,a=typeof t=="string";if(s)try{if(Array.isArray(t)&&t.length>0)return ve.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),Td("",e,n)}if(a){if(n.errorOnInvalidContent){let o=!1,c="";const u=new dS({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?ki.fromSchema(u).parseSlice(nh(t),n.parseOptions):ki.fromSchema(u).parse(nh(t),n.parseOptions),n.errorOnInvalidContent&&o)throw new Error("[tiptap error]: Invalid HTML content",{cause:new Error(`Invalid element found: ${c}`)})}const i=ki.fromSchema(e);return n.slice?i.parseSlice(nh(t),n.parseOptions).content:i.parse(nh(t),n.parseOptions)}return Td("",e,n)}function l8(t,e,n){const s=t.steps.length-1;if(s{o===0&&(o=f)}),t.setSelection(rt.near(t.doc.resolve(o),n))}var c8=t=>!("type"in t),d8=(t,e,n)=>({tr:s,dispatch:a,editor:i})=>{var o;if(a){n={parseOptions:i.options.parseOptions,updateSelection:!0,applyInputRules:!1,applyPasteRules:!1,...n};let c;const u=v=>{i.emit("contentError",{editor:i,error:v,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{Td(e,i.schema,{parseOptions:h,errorOnInvalidContent:!0})}catch(v){u(v)}try{c=Td(e,i.schema,{parseOptions:h,errorOnInvalidContent:(o=n.errorOnInvalidContent)!=null?o:i.options.enableContentCheck})}catch(v){return u(v),!1}let{from:f,to:m}=typeof t=="number"?{from:t,to:t}:{from:t.from,to:t.to},g=!0,y=!0;if((c8(c)?c:[c]).forEach(v=>{v.check(),g=g?v.isText&&v.marks.length===0:!1,y=y?v.isBlock:!1}),f===m&&y){const{parent:v}=s.doc.resolve(f);v.isTextblock&&!v.type.spec.code&&!v.childCount&&(f-=1,m+=1)}let w;if(g){if(Array.isArray(e))w=e.map(v=>v.text||"").join("");else if(e instanceof ve){let v="";e.forEach(k=>{k.text&&(v+=k.text)}),w=v}else typeof e=="object"&&e&&e.text?w=e.text:w=e;s.insertText(w,f,m)}else{w=c;const v=s.doc.resolve(f),k=v.node(),C=v.parentOffset===0,E=k.isText||k.isTextblock,M=k.content.size>0;C&&E&&M&&(f=Math.max(0,f-1)),s.replaceWith(f,m,w)}n.updateSelection&&l8(s,s.steps.length-1,-1),n.applyInputRules&&s.setMeta("applyInputRules",{from:f,text:w}),n.applyPasteRules&&s.setMeta("applyPasteRules",{from:f,text:w})}return!0},u8=()=>({state:t,dispatch:e})=>DO(t,e),h8=()=>({state:t,dispatch:e})=>LO(t,e),f8=()=>({state:t,dispatch:e})=>AS(t,e),p8=()=>({state:t,dispatch:e})=>OS(t,e),m8=()=>({state:t,dispatch:e,tr:n})=>{try{const s=Bf(t.doc,t.selection.$from.pos,-1);return s==null?!1:(n.join(s,2),e&&e(n),!0)}catch{return!1}},g8=()=>({state:t,dispatch:e,tr:n})=>{try{const s=Bf(t.doc,t.selection.$from.pos,1);return s==null?!1:(n.join(s,2),e&&e(n),!0)}catch{return!1}},x8=()=>({state:t,dispatch:e})=>PO(t,e),y8=()=>({state:t,dispatch:e})=>OO(t,e);function E2(){return typeof navigator<"u"?/Mac/.test(navigator.platform):!1}function b8(t){const e=t.split(/-(?!$)/);let n=e[e.length-1];n==="Space"&&(n=" ");let s,a,i,o;for(let c=0;c({editor:e,view:n,tr:s,dispatch:a})=>{const i=b8(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(s.mapping);f&&a&&s.maybeStep(f)}),!0};function Ii(t,e,n={}){const{from:s,to:a,empty:i}=t.selection,o=e?Sn(e,t.schema):null,c=[];t.doc.nodesBetween(s,a,(m,g)=>{if(m.isText)return;const y=Math.max(s,g),N=Math.min(a,g+m.nodeSize);c.push({node:m,from:y,to:N})});const u=a-s,h=c.filter(m=>o?o.name===m.node.type.name:!0).filter(m=>Uh(m.node.attrs,n,{strict:!1}));return i?!!h.length:h.reduce((m,g)=>m+g.to-g.from,0)>=u}var N8=(t,e={})=>({state:n,dispatch:s})=>{const a=Sn(t,n.schema);return Ii(n,a,e)?_O(n,s):!1},w8=()=>({state:t,dispatch:e})=>zS(t,e),j8=t=>({state:e,dispatch:n})=>{const s=Sn(t,e.schema);return JO(s)(e,n)},k8=()=>({state:t,dispatch:e})=>LS(t,e);function Jf(t,e){return e.nodes[t]?"node":e.marks[t]?"mark":null}function wN(t,e){const n=typeof e=="string"?[e]:e;return Object.keys(t).reduce((s,a)=>(n.includes(a)||(s[a]=t[a]),s),{})}var S8=(t,e)=>({tr:n,state:s,dispatch:a})=>{let i=null,o=null;const c=Jf(typeof t=="string"?t:t.name,s.schema);if(!c)return!1;c==="node"&&(i=Sn(t,s.schema)),c==="mark"&&(o=Ia(t,s.schema));let u=!1;return n.selection.ranges.forEach(h=>{s.doc.nodesBetween(h.$from.pos,h.$to.pos,(f,m)=>{i&&i===f.type&&(u=!0,a&&n.setNodeMarkup(m,void 0,wN(f.attrs,e))),o&&f.marks.length&&f.marks.forEach(g=>{o===g.type&&(u=!0,a&&n.addMark(m,m+f.nodeSize,o.create(wN(g.attrs,e))))})})}),u},C8=()=>({tr:t,dispatch:e})=>(e&&t.scrollIntoView(),!0),E8=()=>({tr:t,dispatch:e})=>{if(e){const n=new Ws(t.doc);t.setSelection(n)}return!0},T8=()=>({state:t,dispatch:e})=>RS(t,e),M8=()=>({state:t,dispatch:e})=>DS(t,e),A8=()=>({state:t,dispatch:e})=>BO(t,e),I8=()=>({state:t,dispatch:e})=>WO(t,e),R8=()=>({state:t,dispatch:e})=>HO(t,e);function Nx(t,e,n={},s={}){return Td(t,e,{slice:!1,parseOptions:n,errorOnInvalidContent:s.errorOnInvalidContent})}var P8=(t,{errorOnInvalidContent:e,emitUpdate:n=!0,parseOptions:s={}}={})=>({editor:a,tr:i,dispatch:o,commands:c})=>{const{doc:u}=i;if(s.preserveWhitespace!=="full"){const h=Nx(t,a.schema,s,{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:s,errorOnInvalidContent:e??a.options.enableContentCheck})};function T2(t,e){const n=Ia(e,t.schema),{from:s,to:a,empty:i}=t.selection,o=[];i?(t.storedMarks&&o.push(...t.storedMarks),o.push(...t.selection.$head.marks())):t.doc.nodesBetween(s,a,u=>{o.push(...u.marks)});const c=o.find(u=>u.type.name===n.name);return c?{...c.attrs}:{}}function M2(t,e){const n=new j0(t);return e.forEach(s=>{s.steps.forEach(a=>{n.step(a)})}),n}function O8(t){for(let e=0;e{n(a)&&s.push({node:a,pos:i})}),s}function A2(t,e){for(let n=t.depth;n>0;n-=1){const s=t.node(n);if(e(s))return{pos:n>0?t.before(n):0,start:t.start(n),depth:n,node:s}}}function Yf(t){return e=>A2(e.$from,t)}function qe(t,e,n){return t.config[e]===void 0&&t.parent?qe(t.parent,e,n):typeof t.config[e]=="function"?t.config[e].bind({...n,parent:t.parent?qe(t.parent,e,n):null}):t.config[e]}function H0(t){return t.map(e=>{const n={name:e.name,options:e.options,storage:e.storage},s=qe(e,"addExtensions",n);return s?[e,...H0(s())]:e}).flat(10)}function W0(t,e){const n=Ho.fromSchema(e).serializeFragment(t),a=document.implementation.createHTMLDocument().createElement("div");return a.appendChild(n),a.innerHTML}function I2(t){return typeof t=="function"}function jt(t,e=void 0,...n){return I2(t)?e?t.bind(e)(...n):t(...n):t}function L8(t={}){return Object.keys(t).length===0&&t.constructor===Object}function Gl(t){const e=t.filter(a=>a.type==="extension"),n=t.filter(a=>a.type==="node"),s=t.filter(a=>a.type==="mark");return{baseExtensions:e,nodeExtensions:n,markExtensions:s}}function R2(t){const e=[],{nodeExtensions:n,markExtensions:s}=Gl(t),a=[...n,...s],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=s.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=qe(h,"addGlobalAttributes",f);if(!m)return;m().forEach(y=>{let N;Array.isArray(y.types)?N=y.types:y.types==="*"?N=u:y.types==="nodes"?N=o:y.types==="marks"?N=c:N=[],N.forEach(w=>{Object.entries(y.attributes).forEach(([v,k])=>{e.push({type:w,name:v,attribute:{...i,...k}})})})})}),a.forEach(h=>{const f={name:h.name,options:h.options,storage:h.storage},m=qe(h,"addAttributes",f);if(!m)return;const g=m();Object.entries(g).forEach(([y,N])=>{const w={...i,...N};typeof(w==null?void 0:w.default)=="function"&&(w.default=w.default()),w!=null&&w.isRequired&&(w==null?void 0:w.default)===void 0&&delete w.default,e.push({type:h.name,name:y,attribute:w})})}),e}function _8(t){const e=[];let n="",s=!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 jN(t){const e=[],n=_8(t||""),s=n.length;for(let a=0;a!!e).reduce((e,n)=>{const s={...e};return Object.entries(n).forEach(([a,i])=>{if(!s[a]){s[a]=i;return}if(a==="class"){const c=i?String(i).split(" "):[],u=s[a]?s[a].split(" "):[],h=c.filter(f=>!u.includes(f));s[a]=[...u,...h].join(" ")}else if(a==="style"){const c=new Map([...jN(s[a]),...jN(i)]);s[a]=Array.from(c.entries()).map(([u,h])=>`${u}: ${h}`).join("; ")}else s[a]=i}),s},{})}function Md(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,s)=>Ct(n,s),{})}function z8(t){return typeof t!="string"?t:t.match(/^[+-]?(?:\d*\.)?\d+$/)?Number(t):t==="true"?!0:t==="false"?!1:t}function kN(t,e){return"style"in t?t:{...t,getAttrs:n=>{const s=t.getAttrs?t.getAttrs(n):t.attrs;if(s===!1)return!1;const a=e.reduce((i,o)=>{const c=o.attribute.parseHTML?o.attribute.parseHTML(n):z8(n.getAttribute(o.name));return c==null?i:{...i,[o.name]:c}},{});return{...s,...a}}}}function SN(t){return Object.fromEntries(Object.entries(t).filter(([e,n])=>e==="attrs"&&L8(n)?!1:n!=null))}function CN(t){var e,n;const s={};return!((e=t==null?void 0:t.attribute)!=null&&e.isRequired)&&"default"in((t==null?void 0:t.attribute)||{})&&(s.default=t.attribute.default),((n=t==null?void 0:t.attribute)==null?void 0:n.validate)!==void 0&&(s.validate=t.attribute.validate),[t.name,s]}function $8(t,e){var n;const s=R2(t),{nodeExtensions:a,markExtensions:i}=Gl(t),o=(n=a.find(h=>qe(h,"topNode")))==null?void 0:n.name,c=Object.fromEntries(a.map(h=>{const f=s.filter(k=>k.type===h.name),m={name:h.name,options:h.options,storage:h.storage,editor:e},g=t.reduce((k,C)=>{const E=qe(C,"extendNodeSchema",m);return{...k,...E?E(h):{}}},{}),y=SN({...g,content:jt(qe(h,"content",m)),marks:jt(qe(h,"marks",m)),group:jt(qe(h,"group",m)),inline:jt(qe(h,"inline",m)),atom:jt(qe(h,"atom",m)),selectable:jt(qe(h,"selectable",m)),draggable:jt(qe(h,"draggable",m)),code:jt(qe(h,"code",m)),whitespace:jt(qe(h,"whitespace",m)),linebreakReplacement:jt(qe(h,"linebreakReplacement",m)),defining:jt(qe(h,"defining",m)),isolating:jt(qe(h,"isolating",m)),attrs:Object.fromEntries(f.map(CN))}),N=jt(qe(h,"parseHTML",m));N&&(y.parseDOM=N.map(k=>kN(k,f)));const w=qe(h,"renderHTML",m);w&&(y.toDOM=k=>w({node:k,HTMLAttributes:Md(k,f)}));const v=qe(h,"renderText",m);return v&&(y.toText=v),[h.name,y]})),u=Object.fromEntries(i.map(h=>{const f=s.filter(v=>v.type===h.name),m={name:h.name,options:h.options,storage:h.storage,editor:e},g=t.reduce((v,k)=>{const C=qe(k,"extendMarkSchema",m);return{...v,...C?C(h):{}}},{}),y=SN({...g,inclusive:jt(qe(h,"inclusive",m)),excludes:jt(qe(h,"excludes",m)),group:jt(qe(h,"group",m)),spanning:jt(qe(h,"spanning",m)),code:jt(qe(h,"code",m)),attrs:Object.fromEntries(f.map(CN))}),N=jt(qe(h,"parseHTML",m));N&&(y.parseDOM=N.map(v=>kN(v,f)));const w=qe(h,"renderHTML",m);return w&&(y.toDOM=v=>w({mark:v,HTMLAttributes:Md(v,f)})),[h.name,y]}));return new dS({topNode:o,nodes:c,marks:u})}function F8(t){const e=t.filter((n,s)=>t.indexOf(n)!==s);return Array.from(new Set(e))}function cd(t){return t.sort((n,s)=>{const a=qe(n,"priority")||100,i=qe(s,"priority")||100;return a>i?-1:as.name));return n.length&&console.warn(`[tiptap warn]: Duplicate extension names found: [${n.map(s=>`'${s}'`).join(", ")}]. This can lead to issues.`),e}function O2(t,e,n){const{from:s,to:a}=e,{blockSeparator:i=` - -`,textSerializers:o={}}=n||{};let c="";return t.nodesBetween(s,a,(u,h,f,m)=>{var g;u.isBlock&&h>s&&(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+=(g=u==null?void 0:u.text)==null?void 0:g.slice(Math.max(s,h)-h,a-h))}),c}function B8(t,e){const n={from:0,to:t.content.size};return O2(t,n,e)}function D2(t){return Object.fromEntries(Object.entries(t.nodes).filter(([,e])=>e.spec.toText).map(([e,n])=>[e,n.spec.toText]))}function V8(t,e){const n=Sn(e,t.schema),{from:s,to:a}=t.selection,i=[];t.doc.nodesBetween(s,a,c=>{i.push(c)});const o=i.reverse().find(c=>c.type.name===n.name);return o?{...o.attrs}:{}}function L2(t,e){const n=Jf(typeof e=="string"?e:e.name,t.schema);return n==="node"?V8(t,e):n==="mark"?T2(t,e):{}}function H8(t,e=JSON.stringify){const n={};return t.filter(s=>{const a=e(s);return Object.prototype.hasOwnProperty.call(n,a)?!1:n[a]=!0})}function W8(t){const e=H8(t);return e.length===1?e:e.filter((n,s)=>!e.filter((i,o)=>o!==s).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 _2(t){const{mapping:e,steps:n}=t,s=[];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),g=e.invert().map(f);s.push({oldRange:{from:m,to:g},newRange:{from:h,to:f}})})}),W8(s)}function U0(t,e,n){const s=[];return t===e?n.resolve(t).marks().forEach(a=>{const i=n.resolve(t),o=V0(i,a.type);o&&s.push({mark:a,...o})}):n.nodesBetween(t,e,(a,i)=>{!a||(a==null?void 0:a.nodeSize)===void 0||s.push(...a.marks.map(o=>({from:i,to:i+a.nodeSize,mark:o})))}),s}var U8=(t,e,n,s=20)=>{const a=t.doc.resolve(n);let i=s,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 Kc(t,e){return e.nodes[t]||e.marks[t]||null}function vh(t,e,n){return Object.fromEntries(Object.entries(n).filter(([s])=>{const a=t.find(i=>i.type===e&&i.name===s);return a?a.attribute.keepOnSplit:!1}))}var K8=(t,e=500)=>{let n="";const s=t.parentOffset;return t.parent.nodesBetween(Math.max(0,s-e),s,(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,s-i))}),n};function wx(t,e,n={}){const{empty:s,ranges:a}=t.selection,i=e?Ia(e,t.schema):null;if(s)return!!(t.storedMarks||t.selection.$from.marks()).filter(m=>i?i.name===m.type.name:!0).find(m=>Uh(m.attrs,n,{strict:!1}));let o=0;const c=[];if(a.forEach(({$from:m,$to:g})=>{const y=m.pos,N=g.pos;t.doc.nodesBetween(y,N,(w,v)=>{if(i&&w.inlineContent&&!w.type.allowsMarkType(i))return!1;if(!w.isText&&!w.marks.length)return;const k=Math.max(y,v),C=Math.min(N,v+w.nodeSize),E=C-k;o+=E,c.push(...w.marks.map(M=>({mark:M,from:k,to:C})))})}),o===0)return!1;const u=c.filter(m=>i?i.name===m.mark.type.name:!0).filter(m=>Uh(m.mark.attrs,n,{strict:!1})).reduce((m,g)=>m+g.to-g.from,0),h=c.filter(m=>i?m.mark.type!==i&&m.mark.type.excludes(i):!0).reduce((m,g)=>m+g.to-g.from,0);return(u>0?u+h:u)>=o}function q8(t,e,n={}){if(!e)return Ii(t,null,n)||wx(t,null,n);const s=Jf(e,t.schema);return s==="node"?Ii(t,e,n):s==="mark"?wx(t,e,n):!1}var G8=(t,e)=>{const{$from:n,$to:s,$anchor:a}=t.selection;if(e){const i=Yf(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!(s.parentOffset{const{$from:e,$to:n}=t.selection;return!(e.parentOffset>0||e.pos!==n.pos)};function EN(t,e){return Array.isArray(e)?e.some(n=>(typeof n=="string"?n:n.name)===t.name):e}function TN(t,e){const{nodeExtensions:n}=Gl(e),s=n.find(o=>o.name===t);if(!s)return!1;const a={name:s.name,options:s.options,storage:s.storage},i=jt(qe(s,"group",a));return typeof i!="string"?!1:i.split(" ").includes("list")}function Qf(t,{checkChildren:e=!0,ignoreWhitespace:n=!1}={}){var s;if(n){if(t.type.name==="hardBreak")return!0;if(t.isText)return/^\s*$/m.test((s=t.text)!=null?s:"")}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&&(Qf(i,{ignoreWhitespace:n,checkChildren:e})||(a=!1))}),a}return!1}function z2(t){return t instanceof Xe}var $2=class F2{constructor(e){this.position=e}static fromJSON(e){return new F2(e.position)}toJSON(){return{position:this.position}}};function Y8(t,e){const n=e.mapping.mapResult(t.position);return{position:new $2(n.pos),mapResult:n}}function Q8(t){return new $2(t)}function X8(t,e,n){var s;const{selection:a}=e;let i=null;if(k2(a)&&(i=a.$cursor),i){const c=(s=t.storedMarks)!=null?s: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,g)=>{if(h)return!1;if(f.isInline){const y=!g||g.type.allowsMarkType(n),N=!!n.isInSet(f.marks)||!f.marks.some(w=>w.type.excludes(n));h=y&&N}return!h}),h})}var Z8=(t,e={})=>({tr:n,state:s,dispatch:a})=>{const{selection:i}=n,{empty:o,ranges:c}=i,u=Ia(t,s.schema);if(a)if(o){const h=T2(s,u);n.addStoredMark(u.create({...h,...e}))}else c.forEach(h=>{const f=h.$from.pos,m=h.$to.pos;s.doc.nodesBetween(f,m,(g,y)=>{const N=Math.max(y,f),w=Math.min(y+g.nodeSize,m);g.marks.find(k=>k.type===u)?g.marks.forEach(k=>{u===k.type&&n.addMark(N,w,u.create({...k.attrs,...e}))}):n.addMark(N,w,u.create(e))})});return X8(s,n,u)},e6=(t,e)=>({tr:n})=>(n.setMeta(t,e),!0),t6=(t,e={})=>({state:n,dispatch:s,chain:a})=>{const i=Sn(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})=>F1(i,{...o,...e})(n)?!0:c.clearNodes()).command(({state:c})=>F1(i,{...o,...e})(c,s)).run():(console.warn('[tiptap warn]: Currently "setNode()" only supports text block nodes.'),!1)},n6=t=>({tr:e,dispatch:n})=>{if(n){const{doc:s}=e,a=No(t,0,s.content.size),i=Xe.create(s,a);e.setSelection(i)}return!0},s6=(t,e)=>({tr:n,state:s,dispatch:a})=>{const{selection:i}=s;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},r6=t=>({tr:e,dispatch:n})=>{if(n){const{doc:s}=e,{from:a,to:i}=typeof t=="number"?{from:t,to:t}:t,o=Ze.atStart(s).from,c=Ze.atEnd(s).to,u=No(a,o,c),h=No(i,o,c),f=Ze.create(s,u,h);e.setSelection(f)}return!0},a6=t=>({state:e,dispatch:n})=>{const s=Sn(t,e.schema);return XO(s)(e,n)};function MN(t,e){const n=t.storedMarks||t.selection.$to.parentOffset&&t.selection.$from.marks();if(n){const s=n.filter(a=>e==null?void 0:e.includes(a.type.name));t.tr.ensureMarks(s)}}var i6=({keepMarks:t=!0}={})=>({tr:e,state:n,dispatch:s,editor:a})=>{const{selection:i,doc:o}=e,{$from:c,$to:u}=i,h=a.extensionManager.attributes,f=vh(h,c.node().type.name,c.node().attrs);if(i instanceof Xe&&i.node.isBlock)return!c.parentOffset||!Ca(o,c.pos)?!1:(s&&(t&&MN(n,a.extensionManager.splittableMarks),e.split(c.pos).scrollIntoView()),!0);if(!c.parent.isBlock)return!1;const m=u.parentOffset===u.parent.content.size,g=c.depth===0?void 0:O8(c.node(-1).contentMatchAt(c.indexAfter(-1)));let y=m&&g?[{type:g,attrs:f}]:void 0,N=Ca(e.doc,e.mapping.map(c.pos),1,y);if(!y&&!N&&Ca(e.doc,e.mapping.map(c.pos),1,g?[{type:g}]:void 0)&&(N=!0,y=g?[{type:g,attrs:f}]:void 0),s){if(N&&(i instanceof Ze&&e.deleteSelection(),e.split(e.mapping.map(c.pos),1,y),g&&!m&&!c.parentOffset&&c.parent.type!==g)){const w=e.mapping.map(c.before()),v=e.doc.resolve(w);c.node(-1).canReplaceWith(v.index(),v.index()+1,g)&&e.setNodeMarkup(e.mapping.map(c.before()),g)}t&&MN(n,a.extensionManager.splittableMarks),e.scrollIntoView()}return N},o6=(t,e={})=>({tr:n,state:s,dispatch:a,editor:i})=>{var o;const c=Sn(t,s.schema),{$from:u,$to:h}=s.selection,f=s.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 g=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=ve.empty;const C=u.index(-1)?1:u.index(-2)?2:3;for(let R=u.depth-C;R>=u.depth-3;R-=1)k=ve.from(u.node(R).copy(k));const E=u.indexAfter(-1){if(D>-1)return!1;R.isTextblock&&R.content.size===0&&(D=O+1)}),D>-1&&n.setSelection(Ze.near(n.doc.resolve(D))),n.scrollIntoView()}return!0}const y=h.pos===u.end()?m.contentMatchAt(0).defaultType:null,N={...vh(g,m.type.name,m.attrs),...e},w={...vh(g,u.node().type.name,u.node().attrs),...e};n.delete(u.pos,h.pos);const v=y?[{type:c,attrs:N},{type:y,attrs:w}]:[{type:c,attrs:N}];if(!Ca(n.doc,u.pos,2))return!1;if(a){const{selection:k,storedMarks:C}=s,{splittableMarks:E}=i.extensionManager,M=C||k.$to.parentOffset&&k.$from.marks();if(n.split(u.pos,2,v).scrollIntoView(),!M||!a)return!0;const P=M.filter($=>E.includes($.type.name));n.ensureMarks(P)}return!0},yg=(t,e)=>{const n=Yf(o=>o.type===e)(t.selection);if(!n)return!0;const s=t.doc.resolve(Math.max(0,n.pos-1)).before(n.depth);if(s===void 0)return!0;const a=t.doc.nodeAt(s);return n.node.type===(a==null?void 0:a.type)&&zi(t.doc,n.pos)&&t.join(n.pos),!0},bg=(t,e)=>{const n=Yf(o=>o.type===e)(t.selection);if(!n)return!0;const s=t.doc.resolve(n.start).after(n.depth);if(s===void 0)return!0;const a=t.doc.nodeAt(s);return n.node.type===(a==null?void 0:a.type)&&zi(t.doc,s)&&t.join(s),!0},l6=(t,e,n,s={})=>({editor:a,tr:i,state:o,dispatch:c,chain:u,commands:h,can:f})=>{const{extensions:m,splittableMarks:g}=a.extensionManager,y=Sn(t,o.schema),N=Sn(e,o.schema),{selection:w,storedMarks:v}=o,{$from:k,$to:C}=w,E=k.blockRange(C),M=v||w.$to.parentOffset&&w.$from.marks();if(!E)return!1;const P=Yf($=>TN($.type.name,m))(w);if(E.depth>=1&&P&&E.depth-P.depth<=1){if(P.node.type===y)return h.liftListItem(N);if(TN(P.node.type.name,m)&&y.validContent(P.node.content)&&c)return u().command(()=>(i.setNodeMarkup(P.pos,y),!0)).command(()=>yg(i,y)).command(()=>bg(i,y)).run()}return!n||!M||!c?u().command(()=>f().wrapInList(y,s)?!0:h.clearNodes()).wrapInList(y,s).command(()=>yg(i,y)).command(()=>bg(i,y)).run():u().command(()=>{const $=f().wrapInList(y,s),D=M.filter(R=>g.includes(R.type.name));return i.ensureMarks(D),$?!0:h.clearNodes()}).wrapInList(y,s).command(()=>yg(i,y)).command(()=>bg(i,y)).run()},c6=(t,e={},n={})=>({state:s,commands:a})=>{const{extendEmptyMarkRange:i=!1}=n,o=Ia(t,s.schema);return wx(s,o,e)?a.unsetMark(o,{extendEmptyMarkRange:i}):a.setMark(o,e)},d6=(t,e,n={})=>({state:s,commands:a})=>{const i=Sn(t,s.schema),o=Sn(e,s.schema),c=Ii(s,i,n);let u;return s.selection.$anchor.sameParent(s.selection.$head)&&(u=s.selection.$anchor.parent.attrs),c?a.setNode(o,u):a.setNode(i,{...u,...n})},u6=(t,e={})=>({state:n,commands:s})=>{const a=Sn(t,n.schema);return Ii(n,a,e)?s.lift(a):s.wrapIn(a,e)},h6=()=>({state:t,dispatch:e})=>{const n=t.plugins;for(let s=0;s=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},f6=()=>({tr:t,dispatch:e})=>{const{selection:n}=t,{empty:s,ranges:a}=n;return s||e&&a.forEach(i=>{t.removeMark(i.$from.pos,i.$to.pos)}),!0},p6=(t,e={})=>({tr:n,state:s,dispatch:a})=>{var i;const{extendEmptyMarkRange:o=!1}=e,{selection:c}=n,u=Ia(t,s.schema),{$from:h,empty:f,ranges:m}=c;if(!a)return!0;if(f&&o){let{from:g,to:y}=c;const N=(i=h.marks().find(v=>v.type===u))==null?void 0:i.attrs,w=V0(h,u,N);w&&(g=w.from,y=w.to),n.removeMark(g,y,u)}else m.forEach(g=>{n.removeMark(g.$from.pos,g.$to.pos,u)});return n.removeStoredMark(u),!0},m6=t=>({tr:e,state:n,dispatch:s})=>{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),s&&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},g6=(t,e={})=>({tr:n,state:s,dispatch:a})=>{let i=null,o=null;const c=Jf(typeof t=="string"?t:t.name,s.schema);if(!c)return!1;c==="node"&&(i=Sn(t,s.schema)),c==="mark"&&(o=Ia(t,s.schema));let u=!1;return n.selection.ranges.forEach(h=>{const f=h.$from.pos,m=h.$to.pos;let g,y,N,w;n.selection.empty?s.doc.nodesBetween(f,m,(v,k)=>{i&&i===v.type&&(u=!0,N=Math.max(k,f),w=Math.min(k+v.nodeSize,m),g=k,y=v)}):s.doc.nodesBetween(f,m,(v,k)=>{k=f&&k<=m&&(i&&i===v.type&&(u=!0,a&&n.setNodeMarkup(k,void 0,{...v.attrs,...e})),o&&v.marks.length&&v.marks.forEach(C=>{if(o===C.type&&(u=!0,a)){const E=Math.max(k,f),M=Math.min(k+v.nodeSize,m);n.addMark(E,M,o.create({...C.attrs,...e}))}}))}),y&&(g!==void 0&&a&&n.setNodeMarkup(g,void 0,{...y.attrs,...e}),o&&y.marks.length&&y.marks.forEach(v=>{o===v.type&&a&&n.addMark(N,w,o.create({...v.attrs,...e}))}))}),u},x6=(t,e={})=>({state:n,dispatch:s})=>{const a=Sn(t,n.schema);return UO(a,e)(n,s)},y6=(t,e={})=>({state:n,dispatch:s})=>{const a=Sn(t,n.schema);return KO(a,e)(n,s)},b6=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(s=>s.apply(this,e)),this}off(t,e){const n=this.callbacks[t];return n&&(e?this.callbacks[t]=n.filter(s=>s!==e):delete this.callbacks[t]),this}once(t,e){const n=(...s)=>{this.off(t,n),e.apply(this,s)};return this.on(t,n)}removeAllListeners(){this.callbacks={}}},Xf=class{constructor(t){var e;this.find=t.find,this.handler=t.handler,this.undoable=(e=t.undoable)!=null?e:!0}},v6=(t,e)=>{if(B0(e))return e.exec(t);const n=e(t);if(!n)return null;const s=[n.text];return s.index=n.index,s.input=t,s.data=n.data,n.replaceWith&&(n.text.includes(n.replaceWith)||console.warn('[tiptap warn]: "inputRuleMatch.replaceWith" must be part of "inputRuleMatch.text".'),s.push(n.replaceWith)),s};function sh(t){var e;const{editor:n,from:s,to:a,text:i,rules:o,plugin:c}=t,{view:u}=n;if(u.composing)return!1;const h=u.state.doc.resolve(s);if(h.parent.type.spec.code||(e=h.nodeBefore||h.nodeAfter)!=null&&e.marks.find(g=>g.type.spec.code))return!1;let f=!1;const m=K8(h)+i;return o.forEach(g=>{if(f)return;const y=v6(m,g.find);if(!y)return;const N=u.state.tr,w=qf({state:u.state,transaction:N}),v={from:s-(y[0].length-i.length),to:a},{commands:k,chain:C,can:E}=new Gf({editor:n,state:w});g.handler({state:w,range:v,match:y,commands:k,chain:C,can:E})===null||!N.steps.length||(g.undoable&&N.setMeta(c,{transform:N,from:s,to:a,text:i}),u.dispatch(N),f=!0)}),f}function N6(t){const{editor:e,rules:n}=t,s=new Wt({state:{init(){return null},apply(a,i,o){const c=a.getMeta(s);if(c)return c;const u=a.getMeta("applyInputRules");return!!u&&setTimeout(()=>{let{text:f}=u;typeof f=="string"?f=f:f=W0(ve.from(f),o.schema);const{from:m}=u,g=m+f.length;sh({editor:e,from:m,to:g,text:f,rules:n,plugin:s})}),a.selectionSet||a.docChanged?null:i}},props:{handleTextInput(a,i,o,c){return sh({editor:e,from:i,to:o,text:c,rules:n,plugin:s})},handleDOMEvents:{compositionend:a=>(setTimeout(()=>{const{$cursor:i}=a.state.selection;i&&sh({editor:e,from:i.pos,to:i.pos,text:"",rules:n,plugin:s})}),!1)},handleKeyDown(a,i){if(i.key!=="Enter")return!1;const{$cursor:o}=a.state.selection;return o?sh({editor:e,from:o.pos,to:o.pos,text:` -`,rules:n,plugin:s}):!1}},isInputRules:!0});return s}function w6(t){return Object.prototype.toString.call(t).slice(8,-1)}function rh(t){return w6(t)!=="Object"?!1:t.constructor===Object&&Object.getPrototypeOf(t)===Object.prototype}function B2(t,e){const n={...t};return rh(t)&&rh(e)&&Object.keys(e).forEach(s=>{rh(e[s])&&rh(t[s])?n[s]=B2(t[s],e[s]):n[s]=e[s]}),n}var K0=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{...jt(qe(this,"addOptions",{name:this.name}))||{}}}get storage(){return{...jt(qe(this,"addStorage",{name:this.name,options:this.options}))||{}}}configure(t={}){const e=this.extend({...this.config,addOptions:()=>B2(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}},Wo=class V2 extends K0{constructor(){super(...arguments),this.type="mark"}static create(e={}){const n=typeof e=="function"?e():e;return new V2(n)}static handleExit({editor:e,mark:n}){const{tr:s}=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&&s.removeStoredMark(u),s.insertText(" ",a.pos),e.view.dispatch(s),!0}return!1}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}};function j6(t){return typeof t=="number"}var k6=class{constructor(t){this.find=t.find,this.handler=t.handler}},S6=(t,e,n)=>{if(B0(e))return[...t.matchAll(e)];const s=e(t,n);return s?s.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 C6(t){const{editor:e,state:n,from:s,to:a,rule:i,pasteEvent:o,dropEvent:c}=t,{commands:u,chain:h,can:f}=new Gf({editor:e,state:n}),m=[];return n.doc.nodesBetween(s,a,(y,N)=>{var w,v,k,C,E;if((v=(w=y.type)==null?void 0:w.spec)!=null&&v.code||!(y.isText||y.isTextblock||y.isInline))return;const M=(E=(C=(k=y.content)==null?void 0:k.size)!=null?C:y.nodeSize)!=null?E:0,P=Math.max(s,N),$=Math.min(a,N+M);if(P>=$)return;const D=y.isText?y.text||"":y.textBetween(P-N,$-N,void 0,"");S6(D,i.find,o).forEach(O=>{if(O.index===void 0)return;const _=P+O.index+1,se=_+O[0].length,ne={from:n.tr.mapping.map(_),to:n.tr.mapping.map(se)},pe=i.handler({state:n,range:ne,match:O,commands:u,chain:h,can:f,pasteEvent:o,dropEvent:c});m.push(pe)})}),m.every(y=>y!==null)}var ah=null,E6=t=>{var e;const n=new ClipboardEvent("paste",{clipboardData:new DataTransfer});return(e=n.clipboardData)==null||e.setData("text/html",t),n};function T6(t){const{editor:e,rules:n}=t;let s=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:g,rule:y,pasteEvt:N})=>{const w=f.tr,v=qf({state:f,transaction:w});if(!(!C6({editor:e,state:v,from:Math.max(m-1,0),to:g.b-1,rule:y,pasteEvent:N,dropEvent:c})||!w.steps.length)){try{c=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{c=null}return o=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,w}};return n.map(f=>new Wt({view(m){const g=N=>{var w;s=(w=m.dom.parentElement)!=null&&w.contains(N.target)?m.dom.parentElement:null,s&&(ah=e)},y=()=>{ah&&(ah=null)};return window.addEventListener("dragstart",g),window.addEventListener("dragend",y),{destroy(){window.removeEventListener("dragstart",g),window.removeEventListener("dragend",y)}}},props:{handleDOMEvents:{drop:(m,g)=>{if(i=s===m.dom.parentElement,c=g,!i){const y=ah;y!=null&&y.isEditable&&setTimeout(()=>{const N=y.state.selection;N&&y.commands.deleteRange({from:N.from,to:N.to})},10)}return!1},paste:(m,g)=>{var y;const N=(y=g.clipboardData)==null?void 0:y.getData("text/html");return o=g,a=!!(N!=null&&N.includes("data-pm-slice")),!1}}},appendTransaction:(m,g,y)=>{const N=m[0],w=N.getMeta("uiEvent")==="paste"&&!a,v=N.getMeta("uiEvent")==="drop"&&!i,k=N.getMeta("applyPasteRules"),C=!!k;if(!w&&!v&&!C)return;if(C){let{text:P}=k;typeof P=="string"?P=P:P=W0(ve.from(P),y.schema);const{from:$}=k,D=$+P.length,R=E6(P);return u({rule:f,state:y,from:$,to:{b:D},pasteEvt:R})}const E=g.doc.content.findDiffStart(y.doc.content),M=g.doc.content.findDiffEnd(y.doc.content);if(!(!j6(E)||!M||E===M.b))return u({rule:f,state:y,from:E,to:M,pasteEvt:o})}}))}var Zf=class{constructor(t,e){this.splittableMarks=[],this.editor=e,this.baseExtensions=t,this.extensions=P2(t),this.schema=$8(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:Kc(e.name,this.schema)},s=qe(e,"addCommands",n);return s?{...t,...s()}:t},{})}get plugins(){const{editor:t}=this;return cd([...this.extensions].reverse()).flatMap(s=>{const a={name:s.name,options:s.options,storage:this.editor.extensionStorage[s.name],editor:t,type:Kc(s.name,this.schema)},i=[],o=qe(s,"addKeyboardShortcuts",a);let c={};if(s.type==="mark"&&qe(s,"exitable",a)&&(c.ArrowRight=()=>Wo.handleExit({editor:t,mark:s})),o){const g=Object.fromEntries(Object.entries(o()).map(([y,N])=>[y,()=>N({editor:t})]));c={...c,...g}}const u=VL(c);i.push(u);const h=qe(s,"addInputRules",a);if(EN(s,t.options.enableInputRules)&&h){const g=h();if(g&&g.length){const y=N6({editor:t,rules:g}),N=Array.isArray(y)?y:[y];i.push(...N)}}const f=qe(s,"addPasteRules",a);if(EN(s,t.options.enablePasteRules)&&f){const g=f();if(g&&g.length){const y=T6({editor:t,rules:g});i.push(...y)}}const m=qe(s,"addProseMirrorPlugins",a);if(m){const g=m();i.push(...g)}return i})}get attributes(){return R2(this.extensions)}get nodeViews(){const{editor:t}=this,{nodeExtensions:e}=Gl(this.extensions);return Object.fromEntries(e.filter(n=>!!qe(n,"addNodeView")).map(n=>{const s=this.attributes.filter(u=>u.type===n.name),a={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:Sn(n.name,this.schema)},i=qe(n,"addNodeView",a);if(!i)return[];const o=i();if(!o)return[];const c=(u,h,f,m,g)=>{const y=Md(u,s);return o({node:u,view:h,getPos:f,decorations:m,innerDecorations:g,editor:t,extension:n,HTMLAttributes:y})};return[n.name,c]}))}dispatchTransaction(t){const{editor:e}=this;return cd([...this.extensions].reverse()).reduceRight((s,a)=>{const i={name:a.name,options:a.options,storage:this.editor.extensionStorage[a.name],editor:e,type:Kc(a.name,this.schema)},o=qe(a,"dispatchTransaction",i);return o?c=>{o.call(i,{transaction:c,next:s})}:s},t)}transformPastedHTML(t){const{editor:e}=this;return cd([...this.extensions]).reduce((s,a)=>{const i={name:a.name,options:a.options,storage:this.editor.extensionStorage[a.name],editor:e,type:Kc(a.name,this.schema)},o=qe(a,"transformPastedHTML",i);return o?(c,u)=>{const h=s(c,u);return o.call(i,h)}:s},t||(s=>s))}get markViews(){const{editor:t}=this,{markExtensions:e}=Gl(this.extensions);return Object.fromEntries(e.filter(n=>!!qe(n,"addMarkView")).map(n=>{const s=this.attributes.filter(c=>c.type===n.name),a={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:Ia(n.name,this.schema)},i=qe(n,"addMarkView",a);if(!i)return[];const o=(c,u,h)=>{const f=Md(c,s);return i()({mark:c,view:u,inline:h,editor:t,extension:n,HTMLAttributes:f,updateAttributes:m=>{H6(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 s={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:Kc(e.name,this.schema)};e.type==="mark"&&((n=jt(qe(e,"keepOnSplit",s)))==null||n)&&this.splittableMarks.push(e.name);const a=qe(e,"onBeforeCreate",s),i=qe(e,"onCreate",s),o=qe(e,"onUpdate",s),c=qe(e,"onSelectionUpdate",s),u=qe(e,"onTransaction",s),h=qe(e,"onFocus",s),f=qe(e,"onBlur",s),m=qe(e,"onDestroy",s);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)})}};Zf.resolve=P2;Zf.sort=cd;Zf.flatten=H0;var M6={};F0(M6,{ClipboardTextSerializer:()=>W2,Commands:()=>U2,Delete:()=>K2,Drop:()=>q2,Editable:()=>G2,FocusEvents:()=>Y2,Keymap:()=>Q2,Paste:()=>X2,Tabindex:()=>Z2,TextDirection:()=>eC,focusEventsPluginKey:()=>J2});var xn=class H2 extends K0{constructor(){super(...arguments),this.type="extension"}static create(e={}){const n=typeof e=="function"?e():e;return new H2(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}},W2=xn.create({name:"clipboardTextSerializer",addOptions(){return{blockSeparator:void 0}},addProseMirrorPlugins(){return[new Wt({key:new nn("clipboardTextSerializer"),props:{clipboardTextSerializer:()=>{const{editor:t}=this,{state:e,schema:n}=t,{doc:s,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=D2(n);return O2(s,{from:o,to:c},{...this.options.blockSeparator!==void 0?{blockSeparator:this.options.blockSeparator}:{},textSerializers:u})}}})]}}),U2=xn.create({name:"commands",addCommands(){return{...w2}}}),K2=xn.create({name:"delete",onUpdate({transaction:t,appendedTransactions:e}){var n,s,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=M2(t.before,[t,...e]);_2(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,(N,w)=>{const v=w+N.nodeSize-2,k=y.oldRange.from<=w&&v<=y.oldRange.to;this.editor.emit("delete",{type:"node",node:N,from:w,to:v,newFrom:f.mapping.map(w),newTo:f.mapping.map(v),deletedRange:y.oldRange,newRange:y.newRange,partial:!k,editor:this.editor,transaction:t,combinedTransform:f})})});const g=f.mapping;f.steps.forEach((y,N)=>{var w,v;if(y instanceof jr){const k=g.slice(N).map(y.from,-1),C=g.slice(N).map(y.to),E=g.invert().map(k,-1),M=g.invert().map(C),P=(w=f.doc.nodeAt(k-1))==null?void 0:w.marks.some(D=>D.eq(y.mark)),$=(v=f.doc.nodeAt(C))==null?void 0:v.marks.some(D=>D.eq(y.mark));this.editor.emit("delete",{type:"mark",mark:y.mark,from:y.from,to:y.to,deletedRange:{from:E,to:M},newRange:{from:k,to:C},partial:!!($||P),editor:this.editor,transaction:t,combinedTransform:f})}})};(a=(s=(n=this.editor.options.coreExtensionOptions)==null?void 0:n.delete)==null?void 0:s.async)==null||a?setTimeout(i,0):i()}}),q2=xn.create({name:"drop",addProseMirrorPlugins(){return[new Wt({key:new nn("tiptapDrop"),props:{handleDrop:(t,e,n,s)=>{this.editor.emit("drop",{editor:this.editor,event:e,slice:n,moved:s})}}})]}}),G2=xn.create({name:"editable",addProseMirrorPlugins(){return[new Wt({key:new nn("editable"),props:{editable:()=>this.editor.options.editable}})]}}),J2=new nn("focusEvents"),Y2=xn.create({name:"focusEvents",addProseMirrorPlugins(){const{editor:t}=this;return[new Wt({key:J2,props:{handleDOMEvents:{focus:(e,n)=>{t.isFocused=!0;const s=t.state.tr.setMeta("focus",{event:n}).setMeta("addToHistory",!1);return e.dispatch(s),!1},blur:(e,n)=>{t.isFocused=!1;const s=t.state.tr.setMeta("blur",{event:n}).setMeta("addToHistory",!1);return e.dispatch(s),!1}}}})]}}),Q2=xn.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:g,parent:y}=m,N=m.parent.isTextblock&&g>0?c.doc.resolve(g-1):m,w=N.parent.type.spec.isolating,v=m.pos-m.parentOffset,k=w&&N.parent.childCount===1?v===m.pos:rt.atStart(h).from===g;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()]),s={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={...s},i={...s,"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 Kh()||E2()?i:a},addProseMirrorPlugins(){return[new Wt({key:new nn("clearDocument"),appendTransaction:(t,e,n)=>{if(t.some(w=>w.getMeta("composition")))return;const s=t.some(w=>w.docChanged)&&!e.doc.eq(n.doc),a=t.some(w=>w.getMeta("preventClearDocument"));if(!s||a)return;const{empty:i,from:o,to:c}=e.selection,u=rt.atStart(e.doc).from,h=rt.atEnd(e.doc).to;if(i||!(o===u&&c===h)||!Qf(n.doc))return;const g=n.tr,y=qf({state:n,transaction:g}),{commands:N}=new Gf({editor:this.editor,state:y});if(N.clearNodes(),!!g.steps.length)return g}})]}}),X2=xn.create({name:"paste",addProseMirrorPlugins(){return[new Wt({key:new nn("tiptapPaste"),props:{handlePaste:(t,e,n)=>{this.editor.emit("paste",{editor:this.editor,event:e,slice:n})}}})]}}),Z2=xn.create({name:"tabindex",addProseMirrorPlugins(){return[new Wt({key:new nn("tabindex"),props:{attributes:()=>this.editor.isEditable?{tabindex:"0"}:{}}})]}}),eC=xn.create({name:"textDirection",addOptions(){return{direction:void 0}},addGlobalAttributes(){if(!this.options.direction)return[];const{nodeExtensions:t}=Gl(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 Wt({key:new nn("textDirection"),props:{attributes:()=>{const t=this.options.direction;return t?{dir:t}:{}}}})]}}),A6=class Xc{constructor(e,n,s=!1,a=null){this.currentNode=null,this.actualDepth=null,this.isBlock=s,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,s=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,s=this.to-1}this.editor.commands.insertContentAt({from:n,to:s},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 Xc(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 Xc(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 Xc(e,this.editor)}get children(){const e=[];return this.node.content.forEach((n,s)=>{const a=n.isBlock&&!n.isTextblock,i=n.isAtom&&!n.isText,o=n.isInline,c=this.pos+s+(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 Xc(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 s=null,a=this.parent;for(;a&&!s;){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{s&&a.length>0||(o.node.type.name===e&&i.every(u=>n[u]===o.node.attrs[u])&&a.push(o),!(s&&a.length>0)&&(a=a.concat(o.querySelectorAll(e,n,s))))}),a}setAttribute(e){const{tr:n}=this.editor.state;n.setNodeMarkup(this.from,void 0,{...this.node.attrs,...e}),this.editor.view.dispatch(n)}},I6=`.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 R6(t,e,n){const s=document.querySelector("style[data-tiptap-style]");if(s!==null)return s;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 P6=class extends b6{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:s})=>{throw s},onPaste:()=>null,onDrop:()=>null,onDelete:()=>null,enableExtensionDispatchTransaction:!0},this.isCapturingTransaction=!1,this.capturedTransaction=null,this.utils={getUpdatedPosition:Y8,createMappablePosition:Q8},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:s,slice:a,moved:i})=>this.options.onDrop(s,a,i)),this.on("paste",({event:s,slice:a})=>this.options.onPaste(s,a)),this.on("delete",this.options.onDelete);const e=this.createDoc(),n=S2(e,this.options.autofocus);this.editorState=_l.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=R6(I6,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=I2(e)?e(t,[...this.state.plugins]):[...this.state.plugins,t],s=this.state.reconfigure({plugins:n});return this.view.updateState(s),s}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 s=this.state.reconfigure({plugins:n});return this.view.updateState(s),s}createExtensionManager(){var t,e;const s=[...this.options.enableCoreExtensions?[G2,W2.configure({blockSeparator:(e=(t=this.options.coreExtensionOptions)==null?void 0:t.clipboardTextSerializer)==null?void 0:e.blockSeparator}),U2,Y2,Q2,Z2,q2,X2,K2,eC.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 Zf(s,this)}createCommandManager(){this.commandManager=new Gf({editor:this})}createSchema(){this.schema=this.extensionManager.schema}createDoc(){let t;try{t=Nx(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=Nx(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:!1})}return t}createView(t){const{editorProps:e,enableExtensionDispatchTransaction:n}=this.options,s=e.dispatchTransaction||this.dispatchTransaction.bind(this),a=n?this.extensionManager.dispatchTransaction(s):s,i=e.transformPastedHTML,o=this.extensionManager.transformPastedHTML(i);this.editorView=new N2(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),s=!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)}),s&&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 L2(this.state,t)}isActive(t,e){const n=typeof t=="string"?t:null,s=typeof t=="string"?e:t;return q8(this.state,n,s)}getJSON(){return this.state.doc.toJSON()}getHTML(){return W0(this.state.doc.content,this.schema)}getText(t){const{blockSeparator:e=` - -`,textSerializers:n={}}=t||{};return B8(this.state.doc,{blockSeparator:e,textSerializers:{...D2(this.schema),...n}})}get isEmpty(){return Qf(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 A6(e,this)}get $doc(){return this.$pos(0)}};function Jl(t){return new Xf({find:t.find,handler:({state:e,range:n,match:s})=>{const a=jt(t.getAttributes,void 0,s);if(a===!1||a===null)return null;const{tr:i}=e,o=s[s.length-1],c=s[0];if(o){const u=c.search(/\S/),h=n.from+c.indexOf(o),f=h+o.length;if(U0(n.from,n.to,e.doc).filter(y=>y.mark.type.excluded.find(w=>w===t.type&&w!==y.mark.type)).filter(y=>y.to>h).length)return null;fn.from&&i.delete(n.from+u,h);const g=n.from+u+o.length;i.addMark(n.from+u,g,t.type.create(a||{})),i.removeStoredMark(t.type)}},undoable:t.undoable})}function tC(t){return new Xf({find:t.find,handler:({state:e,range:n,match:s})=>{const a=jt(t.getAttributes,void 0,s)||{},{tr:i}=e,o=n.from;let c=n.to;const u=t.type.create(a);if(s[1]){const h=s[0].lastIndexOf(s[1]);let f=o+h;f>c?f=c:c=f+s[1].length;const m=s[0][s[0].length-1];i.insertText(m,o+s[0].length-1),i.replaceWith(f,c,u)}else if(s[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 jx(t){return new Xf({find:t.find,handler:({state:e,range:n,match:s})=>{const a=e.doc.resolve(n.from),i=jt(t.getAttributes,void 0,s)||{};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 Yl(t){return new Xf({find:t.find,handler:({state:e,range:n,match:s,chain:a})=>{const i=jt(t.getAttributes,void 0,s)||{},o=e.tr.delete(n.from,n.to),u=o.doc.resolve(n.from).blockRange(),h=u&&w0(u,t.type,i);if(!h)return null;if(o.wrap(u,h),t.keepMarks&&t.editor){const{selection:m,storedMarks:g}=e,{splittableMarks:y}=t.editor.extensionManager,N=g||m.$to.parentOffset&&m.$from.marks();if(N){const w=N.filter(v=>y.includes(v.type.name));o.ensureMarks(w)}}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&&zi(o.doc,n.from-1)&&(!t.joinPredicate||t.joinPredicate(s,f))&&o.join(n.from-1)},undoable:t.undoable})}var O6=t=>"touches"in t,D6=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,s,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),(s=t==null?void 0:t.options)!=null&&s.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"),s=e.includes("bottom"),a=e.includes("left"),i=e.includes("right");n&&(t.style.top="0"),s&&(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,O6(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:s,height:a}=this.calculateNewDimensions(this.activeHandle,t,e),i=this.applyConstraints(s,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 s=this.startWidth,a=this.startHeight;const i=t.includes("right"),o=t.includes("left"),c=t.includes("bottom"),u=t.includes("top");return i?s=this.startWidth+e:o&&(s=this.startWidth-e),c?a=this.startHeight+n:u&&(a=this.startHeight-n),(t==="right"||t==="left")&&(s=this.startWidth+(i?e:-e)),(t==="top"||t==="bottom")&&(a=this.startHeight+(c?n:-n)),this.preserveAspectRatio||this.isShiftKeyPressed?this.applyAspectRatio(s,a,t):{width:s,height:a}}applyConstraints(t,e,n){var s,a,i,o;if(!n){let h=Math.max(this.minSize.width,t),f=Math.max(this.minSize.height,e);return(s=this.maxSize)!=null&&s.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 s=n==="left"||n==="right",a=n==="top"||n==="bottom";return s?{width:t,height:t/this.aspectRatio}:a?{width:e*this.aspectRatio,height:e}:{width:t,height:t/this.aspectRatio}}};function L6(t,e){const{selection:n}=t,{$from:s}=n;if(n instanceof Xe){const i=s.index();return s.parent.canReplaceWith(i,i+1,e)}let a=s.depth;for(;a>=0;){const i=s.index(a);if(s.node(a).contentMatchAt(i).matchType(e))return!0;a-=1}return!1}function _6(t){return t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&")}var z6={};F0(z6,{createAtomBlockMarkdownSpec:()=>$6,createBlockMarkdownSpec:()=>F6,createInlineMarkdownSpec:()=>nC,parseAttributes:()=>q0,parseIndentedBlocks:()=>kx,renderNestedMarkdownContent:()=>J0,serializeAttributes:()=>G0});function q0(t){if(!(t!=null&&t.trim()))return{};const e={},n=[],s=t.replace(/["']([^"']*)["']/g,h=>(n.push(h),`__QUOTED_${n.length-1}__`)),a=s.match(/(?:^|\s)\.([a-zA-Z][\w-]*)/g);if(a){const h=a.map(f=>f.trim().slice(1));e.class=h.join(" ")}const i=s.match(/(?:^|\s)#([a-zA-Z][\w-]*)/);i&&(e.id=i[1]);const o=/([a-zA-Z][\w-]*)\s*=\s*(__QUOTED_\d+__)/g;Array.from(s.matchAll(o)).forEach(([,h,f])=>{var m;const g=parseInt(((m=f.match(/__QUOTED_(\d+)__/))==null?void 0:m[1])||"0",10),y=n[g];y&&(e[h]=y.slice(1,-1))});const u=s.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 G0(t){if(!t||Object.keys(t).length===0)return"";const e=[];return t.class&&String(t.class).split(/\s+/).filter(Boolean).forEach(s=>e.push(`.${s}`)),t.id&&e.push(`#${t.id}`),Object.entries(t).forEach(([n,s])=>{n==="class"||n==="id"||(s===!0?e.push(n):s!==!1&&s!=null&&e.push(`${n}="${String(s)}"`))}),e.join(" ")}function $6(t){const{nodeName:e,name:n,parseAttributes:s=q0,serializeAttributes:a=G0,defaultAttributes:i={},requiredAttributes:o=[],allowedAttributes:c}=t,u=n||e,h=f=>{if(!c)return f;const m={};return c.forEach(g=>{g in f&&(m[g]=f[g])}),m};return{parseMarkdown:(f,m)=>{const g={...i,...f.attributes};return m.createNode(e,g,[])},markdownTokenizer:{name:e,level:"block",start(f){var m;const g=new RegExp(`^:::${u}(?:\\s|$)`,"m"),y=(m=f.match(g))==null?void 0:m.index;return y!==void 0?y:-1},tokenize(f,m,g){const y=new RegExp(`^:::${u}(?:\\s+\\{([^}]*)\\})?\\s*:::(?:\\n|$)`),N=f.match(y);if(!N)return;const w=N[1]||"",v=s(w);if(!o.find(C=>!(C in v)))return{type:e,raw:N[0],attributes:v}}},renderMarkdown:f=>{const m=h(f.attrs||{}),g=a(m),y=g?` {${g}}`:"";return`:::${u}${y} :::`}}}function F6(t){const{nodeName:e,name:n,getContent:s,parseAttributes:a=q0,serializeAttributes:i=G0,defaultAttributes:o={},content:c="block",allowedAttributes:u}=t,h=n||e,f=m=>{if(!u)return m;const g={};return u.forEach(y=>{y in m&&(g[y]=m[y])}),g};return{parseMarkdown:(m,g)=>{let y;if(s){const w=s(m);y=typeof w=="string"?[{type:"text",text:w}]:w}else c==="block"?y=g.parseChildren(m.tokens||[]):y=g.parseInline(m.tokens||[]);const N={...o,...m.attributes};return g.createNode(e,N,y)},markdownTokenizer:{name:e,level:"block",start(m){var g;const y=new RegExp(`^:::${h}`,"m"),N=(g=m.match(y))==null?void 0:g.index;return N!==void 0?N:-1},tokenize(m,g,y){var N;const w=new RegExp(`^:::${h}(?:\\s+\\{([^}]*)\\})?\\s*\\n`),v=m.match(w);if(!v)return;const[k,C=""]=v,E=a(C);let M=1;const P=k.length;let $="";const D=/^:::([\w-]*)(\s.*)?/gm,R=m.slice(P);for(D.lastIndex=0;;){const O=D.exec(R);if(O===null)break;const _=O.index,se=O[1];if(!((N=O[2])!=null&&N.endsWith(":::"))){if(se)M+=1;else if(M-=1,M===0){const ne=R.slice(0,_);$=ne.trim();const pe=m.slice(0,P+_+O[0].length);let ge=[];if($)if(c==="block")for(ge=y.blockTokens(ne),ge.forEach(z=>{z.text&&(!z.tokens||z.tokens.length===0)&&(z.tokens=y.inlineTokens(z.text))});ge.length>0;){const z=ge[ge.length-1];if(z.type==="paragraph"&&(!z.text||z.text.trim()===""))ge.pop();else break}else ge=y.inlineTokens($);return{type:e,raw:pe,attributes:E,content:$,tokens:ge}}}}}},renderMarkdown:(m,g)=>{const y=f(m.attrs||{}),N=i(y),w=N?` {${N}}`:"",v=g.renderChildren(m.content||[],` - -`);return`:::${h}${w} - -${v} - -:::`}}}function B6(t){if(!t.trim())return{};const e={},n=/(\w+)=(?:"([^"]*)"|'([^']*)')/g;let s=n.exec(t);for(;s!==null;){const[,a,i,o]=s;e[a]=i||o,s=n.exec(t)}return e}function V6(t){return Object.entries(t).filter(([,e])=>e!=null).map(([e,n])=>`${e}="${n}"`).join(" ")}function nC(t){const{nodeName:e,name:n,getContent:s,parseAttributes:a=B6,serializeAttributes:i=V6,defaultAttributes:o={},selfClosing:c=!1,allowedAttributes:u}=t,h=n||e,f=g=>{if(!u)return g;const y={};return u.forEach(N=>{const w=typeof N=="string"?N:N.name,v=typeof N=="string"?void 0:N.skipIfDefault;if(w in g){const k=g[w];if(v!==void 0&&k===v)return;y[w]=k}}),y},m=h.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return{parseMarkdown:(g,y)=>{const N={...o,...g.attributes};if(c)return y.createNode(e,N);const w=s?s(g):g.content||"";return w?y.createNode(e,N,[y.createTextNode(w)]):y.createNode(e,N,[])},markdownTokenizer:{name:e,level:"inline",start(g){const y=c?new RegExp(`\\[${m}\\s*[^\\]]*\\]`):new RegExp(`\\[${m}\\s*[^\\]]*\\][\\s\\S]*?\\[\\/${m}\\]`),N=g.match(y),w=N==null?void 0:N.index;return w!==void 0?w:-1},tokenize(g,y,N){const w=c?new RegExp(`^\\[${m}\\s*([^\\]]*)\\]`):new RegExp(`^\\[${m}\\s*([^\\]]*)\\]([\\s\\S]*?)\\[\\/${m}\\]`),v=g.match(w);if(!v)return;let k="",C="";if(c){const[,M]=v;C=M}else{const[,M,P]=v;C=M,k=P||""}const E=a(C.trim());return{type:e,raw:v[0],content:k.trim(),attributes:E}}},renderMarkdown:g=>{let y="";s?y=s(g):g.content&&g.content.length>0&&(y=g.content.filter(k=>k.type==="text").map(k=>k.text).join(""));const N=f(g.attrs||{}),w=i(N),v=w?` ${w}`:"";return c?`[${h}${v}]`:`[${h}${v}]${y}[/${h}]`}}}function kx(t,e,n){var s,a,i,o;const c=t.split(` -`),u=[];let h="",f=0;const m=e.baseIndentSize||2;for(;f0)break;if(g.trim()===""){f+=1,h=`${h}${g} -`;continue}else return}const N=e.extractItemData(y),{indentLevel:w,mainContent:v}=N;h=`${h}${g} -`;const k=[v];for(f+=1;f_.trim()!=="");if(D===-1)break;if((((a=(s=c[f+1+D].match(/^(\s*)/))==null?void 0:s[1])==null?void 0:a.length)||0)>w){k.push(P),h=`${h}${P} -`,f+=1;continue}else break}if((((o=(i=P.match(/^(\s*)/))==null?void 0:i[1])==null?void 0:o.length)||0)>w)k.push(P),h=`${h}${P} -`,f+=1;else break}let C;const E=k.slice(1);if(E.length>0){const P=E.map($=>$.slice(w+m)).join(` -`);P.trim()&&(e.customNestedParser?C=e.customNestedParser(P):C=n.blockTokens(P))}const M=e.createToken(N,C);u.push(M)}if(u.length!==0)return{items:u,raw:h}}function J0(t,e,n,s){if(!t||!Array.isArray(t.content))return"";const a=typeof n=="function"?n(s):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(g=>g?e.indent(g):"").join(` -`);u.push(m)}}),u.join(` -`)}function H6(t,e,n={}){const{state:s}=e,{doc:a,tr:i}=s,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 g=!1;if(Object.keys(n).forEach(y=>{n[y]!==m.attrs[y]&&(g=!0)}),g){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 Cn=class sC extends K0{constructor(){super(...arguments),this.type="node"}static create(e={}){const n=typeof e=="function"?e():e;return new sC(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}};function _o(t){return new k6({find:t.find,handler:({state:e,range:n,match:s,pasteEvent:a})=>{const i=jt(t.getAttributes,void 0,s,a);if(i===!1||i===null)return null;const{tr:o}=e,c=s[s.length-1],u=s[0];let h=n.to;if(c){const f=u.search(/\S/),m=n.from+u.indexOf(c),g=m+c.length;if(U0(n.from,n.to,e.doc).filter(N=>N.mark.type.excluded.find(v=>v===t.type&&v!==N.mark.type)).filter(N=>N.to>m).length)return null;gn.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:W6,getOwnPropertySymbols:U6}=Object,{hasOwnProperty:K6}=Object.prototype;function vg(t,e){return function(s,a,i){return t(s,a,i)&&e(s,a,i)}}function ih(t){return function(n,s,a){if(!n||!s||typeof n!="object"||typeof s!="object")return t(n,s,a);const{cache:i}=a,o=i.get(n),c=i.get(s);if(o&&c)return o===s&&c===n;i.set(n,s),i.set(s,n);const u=t(n,s,a);return i.delete(n),i.delete(s),u}}function q6(t){return t!=null?t[Symbol.toStringTag]:void 0}function AN(t){return W6(t).concat(U6(t))}const G6=Object.hasOwn||((t,e)=>K6.call(t,e));function Uo(t,e){return t===e||!t&&!e&&t!==t&&e!==e}const J6="__v",Y6="__o",Q6="_owner",{getOwnPropertyDescriptor:IN,keys:RN}=Object;function X6(t,e){return t.byteLength===e.byteLength&&qh(new Uint8Array(t),new Uint8Array(e))}function Z6(t,e,n){let s=t.length;if(e.length!==s)return!1;for(;s-- >0;)if(!n.equals(t[s],e[s],s,s,t,e,n))return!1;return!0}function e_(t,e){return t.byteLength===e.byteLength&&qh(new Uint8Array(t.buffer,t.byteOffset,t.byteLength),new Uint8Array(e.buffer,e.byteOffset,e.byteLength))}function t_(t,e){return Uo(t.getTime(),e.getTime())}function n_(t,e){return t.name===e.name&&t.message===e.message&&t.cause===e.cause&&t.stack===e.stack}function s_(t,e){return t===e}function PN(t,e,n){const s=t.size;if(s!==e.size)return!1;if(!s)return!0;const a=new Array(s),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 g=o.value,y=c.value;if(n.equals(g[0],y[0],u,m,t,e,n)&&n.equals(g[1],y[1],g[0],y[0],t,e,n)){f=a[m]=!0;break}m++}if(!f)return!1;u++}return!0}const r_=Uo;function a_(t,e,n){const s=RN(t);let a=s.length;if(RN(e).length!==a)return!1;for(;a-- >0;)if(!rC(t,e,n,s[a]))return!1;return!0}function qc(t,e,n){const s=AN(t);let a=s.length;if(AN(e).length!==a)return!1;let i,o,c;for(;a-- >0;)if(i=s[a],!rC(t,e,n,i)||(o=IN(t,i),c=IN(e,i),(o||c)&&(!o||!c||o.configurable!==c.configurable||o.enumerable!==c.enumerable||o.writable!==c.writable)))return!1;return!0}function i_(t,e){return Uo(t.valueOf(),e.valueOf())}function o_(t,e){return t.source===e.source&&t.flags===e.flags}function ON(t,e,n){const s=t.size;if(s!==e.size)return!1;if(!s)return!0;const a=new Array(s),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 qh(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 l_(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 rC(t,e,n,s){return(s===Q6||s===Y6||s===J6)&&(t.$$typeof||e.$$typeof)?!0:G6(e,s)&&n.equals(t[s],e[s],s,s,t,e,n)}const c_="[object ArrayBuffer]",d_="[object Arguments]",u_="[object Boolean]",h_="[object DataView]",f_="[object Date]",p_="[object Error]",m_="[object Map]",g_="[object Number]",x_="[object Object]",y_="[object RegExp]",b_="[object Set]",v_="[object String]",N_={"[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},w_="[object URL]",j_=Object.prototype.toString;function k_({areArrayBuffersEqual:t,areArraysEqual:e,areDataViewsEqual:n,areDatesEqual:s,areErrorsEqual:a,areFunctionsEqual:i,areMapsEqual:o,areNumbersEqual:c,areObjectsEqual:u,arePrimitiveWrappersEqual:h,areRegExpsEqual:f,areSetsEqual:m,areTypedArraysEqual:g,areUrlsEqual:y,unknownTagComparators:N}){return function(v,k,C){if(v===k)return!0;if(v==null||k==null)return!1;const E=typeof v;if(E!==typeof k)return!1;if(E!=="object")return E==="number"?c(v,k,C):E==="function"?i(v,k,C):!1;const M=v.constructor;if(M!==k.constructor)return!1;if(M===Object)return u(v,k,C);if(Array.isArray(v))return e(v,k,C);if(M===Date)return s(v,k,C);if(M===RegExp)return f(v,k,C);if(M===Map)return o(v,k,C);if(M===Set)return m(v,k,C);const P=j_.call(v);if(P===f_)return s(v,k,C);if(P===y_)return f(v,k,C);if(P===m_)return o(v,k,C);if(P===b_)return m(v,k,C);if(P===x_)return typeof v.then!="function"&&typeof k.then!="function"&&u(v,k,C);if(P===w_)return y(v,k,C);if(P===p_)return a(v,k,C);if(P===d_)return u(v,k,C);if(N_[P])return g(v,k,C);if(P===c_)return t(v,k,C);if(P===h_)return n(v,k,C);if(P===u_||P===g_||P===v_)return h(v,k,C);if(N){let $=N[P];if(!$){const D=q6(v);D&&($=N[D])}if($)return $(v,k,C)}return!1}}function S_({circular:t,createCustomConfig:e,strict:n}){let s={areArrayBuffersEqual:X6,areArraysEqual:n?qc:Z6,areDataViewsEqual:e_,areDatesEqual:t_,areErrorsEqual:n_,areFunctionsEqual:s_,areMapsEqual:n?vg(PN,qc):PN,areNumbersEqual:r_,areObjectsEqual:n?qc:a_,arePrimitiveWrappersEqual:i_,areRegExpsEqual:o_,areSetsEqual:n?vg(ON,qc):ON,areTypedArraysEqual:n?vg(qh,qc):qh,areUrlsEqual:l_,unknownTagComparators:void 0};if(e&&(s=Object.assign({},s,e(s))),t){const a=ih(s.areArraysEqual),i=ih(s.areMapsEqual),o=ih(s.areObjectsEqual),c=ih(s.areSetsEqual);s=Object.assign({},s,{areArraysEqual:a,areMapsEqual:i,areObjectsEqual:o,areSetsEqual:c})}return s}function C_(t){return function(e,n,s,a,i,o,c){return t(e,n,c)}}function E_({circular:t,comparator:e,createState:n,equals:s,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:s,meta:f,strict:a})};if(t)return function(c,u){return e(c,u,{cache:new WeakMap,equals:s,meta:void 0,strict:a})};const i={cache:void 0,equals:s,meta:void 0,strict:a};return function(c,u){return e(c,u,i)}}const T_=Fi();Fi({strict:!0});Fi({circular:!0});Fi({circular:!0,strict:!0});Fi({createInternalComparator:()=>Uo});Fi({strict:!0,createInternalComparator:()=>Uo});Fi({circular:!0,createInternalComparator:()=>Uo});Fi({circular:!0,createInternalComparator:()=>Uo,strict:!0});function Fi(t={}){const{circular:e=!1,createInternalComparator:n,createState:s,strict:a=!1}=t,i=S_(t),o=k_(i),c=n?n(o):C_(o);return E_({circular:e,comparator:o,createState:s,equals:c,strict:a})}var Ng={exports:{}},wg={};/** - * @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 DN;function M_(){if(DN)return wg;DN=1;var t=Od(),e=qk();function n(h,f){return h===f&&(h!==0||1/h===1/f)||h!==h&&f!==f}var s=typeof Object.is=="function"?Object.is:n,a=e.useSyncExternalStore,i=t.useRef,o=t.useEffect,c=t.useMemo,u=t.useDebugValue;return wg.useSyncExternalStoreWithSelector=function(h,f,m,g,y){var N=i(null);if(N.current===null){var w={hasValue:!1,value:null};N.current=w}else w=N.current;N=c(function(){function k($){if(!C){if(C=!0,E=$,$=g($),y!==void 0&&w.hasValue){var D=w.value;if(y(D,$))return M=D}return M=$}if(D=M,s(E,$))return D;var R=g($);return y!==void 0&&y(D,R)?(E=$,D):(E=$,M=R)}var C=!1,E,M,P=m===void 0?null:m;return[function(){return k(f())},P===null?void 0:function(){return k(P())}]},[f,m,g,y]);var v=a(h,N[0],N[1]);return o(function(){w.hasValue=!0,w.value=v},[v]),u(v),v},wg}var LN;function A_(){return LN||(LN=1,Ng.exports=M_()),Ng.exports}var I_=A_(),R_=(...t)=>e=>{t.forEach(n=>{typeof n=="function"?n(e):n&&(n.current=e)})},P_=({contentComponent:t})=>{const e=Gk.useSyncExternalStore(t.subscribe,t.getSnapshot,t.getServerSnapshot);return r.jsx(r.Fragment,{children:Object.values(e)})};function O_(){const t=new Set;let e={};return{subscribe(n){return t.add(n),()=>{t.delete(n)}},getSnapshot(){return e},getServerSnapshot(){return e},setRenderer(n,s){e={...e,[n]:Hw.createPortal(s.reactElement,s.element,n)},t.forEach(a=>a())},removeRenderer(n){const s={...e};delete s[n],e=s,t.forEach(a=>a())}}}var D_=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=O_(),this.state.hasContentComponentInitialized||(this.unsubscribeToContentComponent=e.contentComponent.subscribe(()=>{this.setState(s=>s.hasContentComponentInitialized?s:{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 r.jsxs(r.Fragment,{children:[r.jsx("div",{ref:R_(e,this.editorContentRef),...n}),(t==null?void 0:t.contentComponent)&&r.jsx(P_,{contentComponent:t.contentComponent})]})}},L_=b.forwardRef((t,e)=>{const n=vs.useMemo(()=>Math.floor(Math.random()*4294967295).toString(),[t.editor]);return vs.createElement(D_,{key:n,innerRef:e,...t})}),aC=vs.memo(L_),__=typeof window<"u"?b.useLayoutEffect:b.useEffect,z_=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(s=>s())},n=this.editor;return n.on("transaction",e),()=>{n.off("transaction",e)}}}};function $_(t){var e;const[n]=b.useState(()=>new z_(t.editor)),s=I_.useSyncExternalStoreWithSelector(n.subscribe,n.getSnapshot,n.getServerSnapshot,t.selector,(e=t.equalityFn)!=null?e:T_);return __(()=>n.watch(t.editor),[t.editor,n]),b.useDebugValue(s),s}var F_=!1,Sx=typeof window>"u",B_=Sx||!!(typeof window<"u"&&window.next),V_=class iC{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?Sx||B_?null:this.createEditor():(this.options.current.immediatelyRender,this.options.current.immediatelyRender?this.createEditor():null)}createEditor(){const e={...this.options.current,onBeforeCreate:(...s)=>{var a,i;return(i=(a=this.options.current).onBeforeCreate)==null?void 0:i.call(a,...s)},onBlur:(...s)=>{var a,i;return(i=(a=this.options.current).onBlur)==null?void 0:i.call(a,...s)},onCreate:(...s)=>{var a,i;return(i=(a=this.options.current).onCreate)==null?void 0:i.call(a,...s)},onDestroy:(...s)=>{var a,i;return(i=(a=this.options.current).onDestroy)==null?void 0:i.call(a,...s)},onFocus:(...s)=>{var a,i;return(i=(a=this.options.current).onFocus)==null?void 0:i.call(a,...s)},onSelectionUpdate:(...s)=>{var a,i;return(i=(a=this.options.current).onSelectionUpdate)==null?void 0:i.call(a,...s)},onTransaction:(...s)=>{var a,i;return(i=(a=this.options.current).onTransaction)==null?void 0:i.call(a,...s)},onUpdate:(...s)=>{var a,i;return(i=(a=this.options.current).onUpdate)==null?void 0:i.call(a,...s)},onContentError:(...s)=>{var a,i;return(i=(a=this.options.current).onContentError)==null?void 0:i.call(a,...s)},onDrop:(...s)=>{var a,i;return(i=(a=this.options.current).onDrop)==null?void 0:i.call(a,...s)},onPaste:(...s)=>{var a,i;return(i=(a=this.options.current).onPaste)==null?void 0:i.call(a,...s)},onDelete:(...s)=>{var a,i;return(i=(a=this.options.current).onDelete)==null?void 0:i.call(a,...s)}};return new P6(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(s=>["onCreate","onBeforeCreate","onDestroy","onUpdate","onTransaction","onFocus","onBlur","onSelectionUpdate","onContentError","onDrop","onPaste"].includes(s)?!0:s==="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[s]===n[s])}onRender(e){return()=>(this.isComponentMounted=!0,clearTimeout(this.scheduledDestructionTimeout),this.editor&&!this.editor.isDestroyed&&e.length===0?iC.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((s,a)=>s===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 H_(t={},e=[]){const n=b.useRef(t);n.current=t;const[s]=b.useState(()=>new V_(n)),a=Gk.useSyncExternalStore(s.subscribe,s.getEditor,s.getServerSnapshot);return b.useDebugValue(a),b.useEffect(s.onRender(e)),$_({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 W_=b.createContext({onDragStart:()=>{},nodeViewContentChildren:void 0,nodeViewContentRef:()=>{}}),U_=()=>b.useContext(W_);vs.forwardRef((t,e)=>{const{onDragStart:n}=U_(),s=t.as||"div";return r.jsx(s,{...t,ref:e,"data-node-view-wrapper":"",onDragStart:n,style:{whiteSpace:"normal",...t.style}})});vs.createContext({markViewContentRef:()=>{}});var Y0=b.createContext({get editor(){throw new Error("useTiptap must be used within a provider")}});Y0.displayName="TiptapContext";var K_=()=>b.useContext(Y0);function lC({editor:t,instance:e,children:n}){const s=t??e;if(!s)throw new Error("Tiptap: An editor instance is required. Pass a non-null `editor` prop.");const a=b.useMemo(()=>({editor:s}),[s]),i=b.useMemo(()=>({editor:s}),[s]);return r.jsx(oC.Provider,{value:i,children:r.jsx(Y0.Provider,{value:a,children:n})})}lC.displayName="Tiptap";function cC({...t}){const{editor:e}=K_();return r.jsx(aC,{editor:e,...t})}cC.displayName="Tiptap.Content";Object.assign(lC,{Content:cC});var Gh=(t,e)=>{if(t==="slot")return 0;if(t instanceof Function)return t(e);const{children:n,...s}=e??{};if(t==="svg")throw new Error("SVG elements are not supported in the JSX syntax, use the array syntax instead");return[t,s,n]},q_=/^\s*>\s$/,G_=Cn.create({name:"blockquote",addOptions(){return{HTMLAttributes:{}}},content:"block+",group:"block",defining:!0,parseHTML(){return[{tag:"blockquote"}]},renderHTML({HTMLAttributes:t}){return Gh("blockquote",{...Ct(this.options.HTMLAttributes,t),children:Gh("slot",{})})},parseMarkdown:(t,e)=>e.createNode("blockquote",void 0,e.parseChildren(t.tokens||[])),renderMarkdown:(t,e)=>{if(!t.content)return"";const n=">",s=[];return t.content.forEach(a=>{const c=e.renderChildren([a]).split(` -`).map(u=>u.trim()===""?n:`${n} ${u}`);s.push(c.join(` -`))}),s.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[Yl({find:q_,type:this.type})]}}),J_=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))$/,Y_=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))/g,Q_=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))$/,X_=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))/g,Z_=Wo.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 Gh("strong",{...Ct(this.options.HTMLAttributes,t),children:Gh("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[Jl({find:J_,type:this.type}),Jl({find:Q_,type:this.type})]},addPasteRules(){return[_o({find:Y_,type:this.type}),_o({find:X_,type:this.type})]}}),e7=/(^|[^`])`([^`]+)`(?!`)$/,t7=/(^|[^`])`([^`]+)`(?!`)/g,n7=Wo.create({name:"code",addOptions(){return{HTMLAttributes:{}}},excludes:"_",code:!0,exitable:!0,parseHTML(){return[{tag:"code"}]},renderHTML({HTMLAttributes:t}){return["code",Ct(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[Jl({find:e7,type:this.type})]},addPasteRules(){return[_o({find:t7,type:this.type})]}}),jg=4,s7=/^```([a-z]+)?[\s\n]$/,r7=/^~~~([a-z]+)?[\s\n]$/,a7=Cn.create({name:"codeBlock",addOptions(){return{languageClassPrefix:"language-",exitOnTripleEnter:!0,exitOnArrowDown:!0,defaultLanguage:null,enableTabIndentation:!1,tabSize:jg,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",Ct(this.options.HTMLAttributes,e),["code",{class:t.attrs.language?this.options.languageClassPrefix+t.attrs.language:null},0]]},markdownTokenName:"code",parseMarkdown:(t,e)=>{var n,s;return((n=t.raw)==null?void 0:n.startsWith("```"))===!1&&((s=t.raw)==null?void 0:s.startsWith("~~~"))===!1&&t.codeBlockStyle!=="indented"?[]:e.createNode("codeBlock",{language:t.lang||null},t.text?[e.createTextNode(t.text)]:[])},renderMarkdown:(t,e)=>{var n;let s="";const a=((n=t.attrs)==null?void 0:n.language)||"";return t.content?s=[`\`\`\`${a}`,e.renderChildren(t.content),"```"].join(` -`):s=`\`\`\`${a} - -\`\`\``,s},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:jg,{state:s}=t,{selection:a}=s,{$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=s.doc.textBetween(h,f,` -`,` -`).split(` -`).map(N=>c+N).join(` -`);return u.replaceWith(h,f,s.schema.text(y)),!0})},"Shift-Tab":({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;const n=(e=this.options.tabSize)!=null?e:jg,{state:s}=t,{selection:a}=s,{$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=s.doc.textBetween(f,m,` -`,` -`).split(` -`);let N=0,w=0;const v=h-f;for(let $=0;$=v){N=$;break}w+=y[$].length+1}const C=((u=y[N].match(/^ */))==null?void 0:u[0])||"",E=Math.min(C.length,n);if(E===0)return!0;let M=f;for(let $=0;${const{from:u,to:h}=a,g=s.doc.textBetween(u,h,` -`,` -`).split(` -`).map(y=>{var N;const w=((N=y.match(/^ */))==null?void 0:N[0])||"",v=Math.min(w.length,n);return y.slice(v)}).join(` -`);return c.replaceWith(u,h,s.schema.text(g)),!0})},Enter:({editor:t})=>{if(!this.options.exitOnTripleEnter)return!1;const{state:e}=t,{selection:n}=e,{$from:s,empty:a}=n;if(!a||s.parent.type!==this.type)return!1;const i=s.parentOffset===s.parent.nodeSize-2,o=s.parent.textContent.endsWith(` - -`);return!i||!o?!1:t.chain().command(({tr:c})=>(c.delete(s.pos-2,s.pos),!0)).exitCode().run()},ArrowDown:({editor:t})=>{if(!this.options.exitOnArrowDown)return!1;const{state:e}=t,{selection:n,doc:s}=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:s.nodeAt(c)?t.commands.command(({tr:h})=>(h.setSelection(rt.near(s.resolve(c))),!0)):t.commands.exitCode()}}},addInputRules(){return[jx({find:s7,type:this.type,getAttributes:t=>({language:t[1]})}),jx({find:r7,type:this.type,getAttributes:t=>({language:t[1]})})]},addProseMirrorPlugins(){return[new Wt({key:new nn("codeBlockVSCodeHandler"),props:{handlePaste:(t,e)=>{if(!e.clipboardData||this.editor.isActive(this.type.name))return!1;const n=e.clipboardData.getData("text/plain"),s=e.clipboardData.getData("vscode-editor-data"),a=s?JSON.parse(s):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(Ze.near(o.doc.resolve(Math.max(0,o.selection.from-2)))),o.setMeta("paste",!0),t.dispatch(o),!0}}})]}}),i7=Cn.create({name:"doc",topNode:!0,content:"block+",renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` - -`):""}),o7=Cn.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",Ct(this.options.HTMLAttributes,t)]},renderText(){return` -`},renderMarkdown:()=>` -`,parseMarkdown:()=>({type:"hardBreak"}),addCommands(){return{setHardBreak:()=>({commands:t,chain:e,state:n,editor:s})=>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}=s.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(g=>c.includes(g.type.name));h.ensureMarks(m)}return!0}).run()})])}},addKeyboardShortcuts(){return{"Mod-Enter":()=>this.editor.commands.setHardBreak(),"Shift-Enter":()=>this.editor.commands.setHardBreak()}}}),l7=Cn.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]}`,Ct(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 s=(n=t.attrs)!=null&&n.level?parseInt(t.attrs.level,10):1,a="#".repeat(s);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=>jx({find:new RegExp(`^(#{${Math.min(...this.options.levels)},${t}})\\s$`),type:this.type,getAttributes:{level:t}}))}}),c7=Cn.create({name:"horizontalRule",addOptions(){return{HTMLAttributes:{},nextNodeType:"paragraph"}},group:"block",parseHTML(){return[{tag:"hr"}]},renderHTML({HTMLAttributes:t}){return["hr",Ct(this.options.HTMLAttributes,t)]},markdownTokenName:"hr",parseMarkdown:(t,e)=>e.createNode("horizontalRule"),renderMarkdown:()=>"---",addCommands(){return{setHorizontalRule:()=>({chain:t,state:e})=>{if(!L6(e,e.schema.nodes[this.name]))return!1;const{selection:n}=e,{$to:s}=n,a=t();return z2(n)?a.insertContentAt(s.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(Ze.create(o.doc,u.pos+1)):u.nodeAfter.isBlock?o.setSelection(Xe.create(o.doc,u.pos)):o.setSelection(Ze.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(Ze.create(o.doc,h+1)))}o.scrollIntoView()}return!0}).run()}}},addInputRules(){return[tC({find:/^(?:---|—-|___\s|\*\*\*\s)$/,type:this.type})]}}),d7=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))$/,u7=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))/g,h7=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))$/,f7=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))/g,p7=Wo.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",Ct(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[Jl({find:d7,type:this.type}),Jl({find:h7,type:this.type})]},addPasteRules(){return[_o({find:u7,type:this.type}),_o({find:f7,type:this.type})]}});const m7="aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3nlop4pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2o0dyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rckmsd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0stone5umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5mögensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2olterskluwer11odside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2",g7="ελ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",Cx="numeric",Ex="ascii",Tx="alpha",dd="asciinumeric",Zc="alphanumeric",Mx="domain",dC="emoji",x7="scheme",y7="slashscheme",kg="whitespace";function b7(t,e){return t in e||(e[t]=[]),e[t]}function wo(t,e,n){e[Cx]&&(e[dd]=!0,e[Zc]=!0),e[Ex]&&(e[dd]=!0,e[Tx]=!0),e[dd]&&(e[Zc]=!0),e[Tx]&&(e[Zc]=!0),e[Zc]&&(e[Mx]=!0),e[dC]&&(e[Mx]=!0);for(const s in e){const a=b7(s,n);a.indexOf(t)<0&&a.push(t)}}function v7(t,e){const n={};for(const s in e)e[s].indexOf(t)>=0&&(n[s]=!0);return n}function Ps(t=null){this.j={},this.jr=[],this.jd=null,this.t=t}Ps.groups={};Ps.prototype={accepts(){return!!this.t},go(t){const e=this,n=e.j[t];if(n)return n;for(let s=0;st.ta(e,n,s,a),fn=(t,e,n,s,a)=>t.tr(e,n,s,a),_N=(t,e,n,s,a)=>t.ts(e,n,s,a),Te=(t,e,n,s,a)=>t.tt(e,n,s,a),ba="WORD",Ax="UWORD",uC="ASCIINUMERICAL",hC="ALPHANUMERICAL",Ad="LOCALHOST",Ix="TLD",Rx="UTLD",Nh="SCHEME",Il="SLASH_SCHEME",Q0="NUM",Px="WS",X0="NL",ud="OPENBRACE",hd="CLOSEBRACE",Jh="OPENBRACKET",Yh="CLOSEBRACKET",Qh="OPENPAREN",Xh="CLOSEPAREN",Zh="OPENANGLEBRACKET",ef="CLOSEANGLEBRACKET",tf="FULLWIDTHLEFTPAREN",nf="FULLWIDTHRIGHTPAREN",sf="LEFTCORNERBRACKET",rf="RIGHTCORNERBRACKET",af="LEFTWHITECORNERBRACKET",of="RIGHTWHITECORNERBRACKET",lf="FULLWIDTHLESSTHAN",cf="FULLWIDTHGREATERTHAN",df="AMPERSAND",uf="APOSTROPHE",hf="ASTERISK",hi="AT",ff="BACKSLASH",pf="BACKTICK",mf="CARET",mi="COLON",Z0="COMMA",gf="DOLLAR",Br="DOT",xf="EQUALS",ey="EXCLAMATION",rr="HYPHEN",fd="PERCENT",yf="PIPE",bf="PLUS",vf="POUND",pd="QUERY",ty="QUOTE",fC="FULLWIDTHMIDDLEDOT",ny="SEMI",Vr="SLASH",md="TILDE",Nf="UNDERSCORE",pC="EMOJI",wf="SYM";var mC=Object.freeze({__proto__:null,ALPHANUMERICAL:hC,AMPERSAND:df,APOSTROPHE:uf,ASCIINUMERICAL:uC,ASTERISK:hf,AT:hi,BACKSLASH:ff,BACKTICK:pf,CARET:mf,CLOSEANGLEBRACKET:ef,CLOSEBRACE:hd,CLOSEBRACKET:Yh,CLOSEPAREN:Xh,COLON:mi,COMMA:Z0,DOLLAR:gf,DOT:Br,EMOJI:pC,EQUALS:xf,EXCLAMATION:ey,FULLWIDTHGREATERTHAN:cf,FULLWIDTHLEFTPAREN:tf,FULLWIDTHLESSTHAN:lf,FULLWIDTHMIDDLEDOT:fC,FULLWIDTHRIGHTPAREN:nf,HYPHEN:rr,LEFTCORNERBRACKET:sf,LEFTWHITECORNERBRACKET:af,LOCALHOST:Ad,NL:X0,NUM:Q0,OPENANGLEBRACKET:Zh,OPENBRACE:ud,OPENBRACKET:Jh,OPENPAREN:Qh,PERCENT:fd,PIPE:yf,PLUS:bf,POUND:vf,QUERY:pd,QUOTE:ty,RIGHTCORNERBRACKET:rf,RIGHTWHITECORNERBRACKET:of,SCHEME:Nh,SEMI:ny,SLASH:Vr,SLASH_SCHEME:Il,SYM:wf,TILDE:md,TLD:Ix,UNDERSCORE:Nf,UTLD:Rx,UWORD:Ax,WORD:ba,WS:Px});const xa=/[a-z]/,Gc=new RegExp("\\p{L}","u"),Sg=new RegExp("\\p{Emoji}","u"),ya=/\d/,Cg=/\s/,zN="\r",Eg=` -`,N7="️",w7="‍",Tg="";let oh=null,lh=null;function j7(t=[]){const e={};Ps.groups=e;const n=new Ps;oh==null&&(oh=$N(m7)),lh==null&&(lh=$N(g7)),Te(n,"'",uf),Te(n,"{",ud),Te(n,"}",hd),Te(n,"[",Jh),Te(n,"]",Yh),Te(n,"(",Qh),Te(n,")",Xh),Te(n,"<",Zh),Te(n,">",ef),Te(n,"(",tf),Te(n,")",nf),Te(n,"「",sf),Te(n,"」",rf),Te(n,"『",af),Te(n,"』",of),Te(n,"<",lf),Te(n,">",cf),Te(n,"&",df),Te(n,"*",hf),Te(n,"@",hi),Te(n,"`",pf),Te(n,"^",mf),Te(n,":",mi),Te(n,",",Z0),Te(n,"$",gf),Te(n,".",Br),Te(n,"=",xf),Te(n,"!",ey),Te(n,"-",rr),Te(n,"%",fd),Te(n,"|",yf),Te(n,"+",bf),Te(n,"#",vf),Te(n,"?",pd),Te(n,'"',ty),Te(n,"/",Vr),Te(n,";",ny),Te(n,"~",md),Te(n,"_",Nf),Te(n,"\\",ff),Te(n,"・",fC);const s=fn(n,ya,Q0,{[Cx]:!0});fn(s,ya,s);const a=fn(s,xa,uC,{[dd]:!0}),i=fn(s,Gc,hC,{[Zc]:!0}),o=fn(n,xa,ba,{[Ex]:!0});fn(o,ya,a),fn(o,xa,o),fn(a,ya,a),fn(a,xa,a);const c=fn(n,Gc,Ax,{[Tx]:!0});fn(c,xa),fn(c,ya,i),fn(c,Gc,c),fn(i,ya,i),fn(i,xa),fn(i,Gc,i);const u=Te(n,Eg,X0,{[kg]:!0}),h=Te(n,zN,Px,{[kg]:!0}),f=fn(n,Cg,Px,{[kg]:!0});Te(n,Tg,f),Te(h,Eg,u),Te(h,Tg,f),fn(h,Cg,f),Te(f,zN),Te(f,Eg),fn(f,Cg,f),Te(f,Tg,f);const m=fn(n,Sg,pC,{[dC]:!0});Te(m,"#"),fn(m,Sg,m),Te(m,N7,m);const g=Te(m,w7);Te(g,"#"),fn(g,Sg,m);const y=[[xa,o],[ya,a]],N=[[xa,null],[Gc,c],[ya,i]];for(let w=0;ww[0]>v[0]?1:-1);for(let w=0;w=0?C[Mx]=!0:xa.test(v)?ya.test(v)?C[dd]=!0:C[Ex]=!0:C[Cx]=!0,_N(n,v,v,C)}return _N(n,"localhost",Ad,{ascii:!0}),n.jd=new Ps(wf),{start:n,tokens:Object.assign({groups:e},mC)}}function gC(t,e){const n=k7(e.replace(/[A-Z]/g,c=>c.toLowerCase())),s=n.length,a=[];let i=0,o=0;for(;o=0&&(m+=n[o].length,g++),h+=n[o].length,i+=n[o].length,o++;i-=m,o-=g,h-=m,a.push({t:f.t,v:e.slice(i-h,i),s:i-h,e:i})}return a}function k7(t){const e=[],n=t.length;let s=0;for(;s56319||s+1===n||(i=t.charCodeAt(s+1))<56320||i>57343?t[s]:t.slice(s,s+2);e.push(o),s+=o.length}return e}function oi(t,e,n,s,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(s,s+i),10);o>0;o--)n.pop();s+=i}else n.push(t[s]),s++}return e}const Id={defaultProtocol:"http",events:null,format:FN,formatHref:FN,nl2br:!1,tagName:"a",target:null,rel:null,validate:!0,truncate:1/0,className:null,attributes:null,ignoreTags:[],render:null};function sy(t,e=null){let n=Object.assign({},Id);t&&(n=Object.assign(n,t instanceof sy?t.o:t));const s=n.ignoreTags,a=[];for(let i=0;in?s.substring(0,n)+"…":s},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=Id.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")),s=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=s,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 xC{constructor(a,i){super(a,i),this.t=t}}for(const s in e)n.prototype[s]=e[s];return n.t=t,n}const BN=ep("email",{isLink:!0,toHref(){return"mailto:"+this.toString()}}),VN=ep("text"),S7=ep("nl"),ch=ep("url",{isLink:!0,toHref(t=Id.defaultProtocol){return this.hasProtocol()?this.v:`${t}://${this.v}`},hasProtocol(){const t=this.tk;return t.length>=2&&t[0].t!==Ad&&t[1].t===mi}}),sr=t=>new Ps(t);function C7({groups:t}){const e=t.domain.concat([df,hf,hi,ff,pf,mf,gf,xf,rr,Q0,fd,yf,bf,vf,Vr,wf,md,Nf]),n=[uf,mi,Z0,Br,ey,fd,pd,ty,ny,Zh,ef,ud,hd,Yh,Jh,Qh,Xh,tf,nf,sf,rf,af,of,lf,cf],s=[df,uf,hf,ff,pf,mf,gf,xf,rr,ud,hd,fd,yf,bf,vf,pd,Vr,wf,md,Nf],a=sr(),i=Te(a,md);dt(i,s,i),dt(i,t.domain,i);const o=sr(),c=sr(),u=sr();dt(a,t.domain,o),dt(a,t.scheme,c),dt(a,t.slashscheme,u),dt(o,s,i),dt(o,t.domain,o);const h=Te(o,hi);Te(i,hi,h),Te(c,hi,h),Te(u,hi,h);const f=Te(i,Br);dt(f,s,i),dt(f,t.domain,i);const m=sr();dt(h,t.domain,m),dt(m,t.domain,m);const g=Te(m,Br);dt(g,t.domain,m);const y=sr(BN);dt(g,t.tld,y),dt(g,t.utld,y),Te(h,Ad,y);const N=Te(m,rr);Te(N,rr,N),dt(N,t.domain,m),dt(y,t.domain,m),Te(y,Br,g),Te(y,rr,N);const w=Te(y,mi);dt(w,t.numeric,BN);const v=Te(o,rr),k=Te(o,Br);Te(v,rr,v),dt(v,t.domain,o),dt(k,s,i),dt(k,t.domain,o);const C=sr(ch);dt(k,t.tld,C),dt(k,t.utld,C),dt(C,t.domain,o),dt(C,s,i),Te(C,Br,k),Te(C,rr,v),Te(C,hi,h);const E=Te(C,mi),M=sr(ch);dt(E,t.numeric,M);const P=sr(ch),$=sr();dt(P,e,P),dt(P,n,$),dt($,e,P),dt($,n,$),Te(C,Vr,P),Te(M,Vr,P);const D=Te(c,mi),R=Te(u,mi),O=Te(R,Vr),_=Te(O,Vr);dt(c,t.domain,o),Te(c,Br,k),Te(c,rr,v),dt(u,t.domain,o),Te(u,Br,k),Te(u,rr,v),dt(D,t.domain,P),Te(D,Vr,P),Te(D,pd,P),dt(_,t.domain,P),dt(_,e,P),Te(_,Vr,P);const se=[[ud,hd],[Jh,Yh],[Qh,Xh],[Zh,ef],[tf,nf],[sf,rf],[af,of],[lf,cf]];for(let ne=0;ne=0&&g++,a++,f++;if(g<0)a-=f,a0&&(i.push(Mg(VN,e,o)),o=[]),a-=g,f-=g;const y=m.t,N=n.slice(a-f,a);i.push(Mg(y,e,N))}}return o.length>0&&i.push(Mg(VN,e,o)),i}function Mg(t,e,n){const s=n[0].s,a=n[n.length-1].e,i=e.slice(s,a);return new t(i,n)}const T7=typeof console<"u"&&console&&console.warn||(()=>{}),M7="until manual call of linkify.init(). Register all schemes and plugins before invoking linkify the first time.",Yt={scanner:null,parser:null,tokenQueue:[],pluginQueue:[],customSchemes:[],initialized:!1};function A7(){return Ps.groups={},Yt.scanner=null,Yt.parser=null,Yt.tokenQueue=[],Yt.pluginQueue=[],Yt.customSchemes=[],Yt.initialized=!1,Yt}function HN(t,e=!1){if(Yt.initialized&&T7(`linkifyjs: already initialized - will not register custom scheme "${t}" ${M7}`),!/^[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`);Yt.customSchemes.push([t,e])}function I7(){Yt.scanner=j7(Yt.customSchemes);for(let t=0;t{const a=e.some(h=>h.docChanged)&&!n.doc.eq(s.doc),i=e.some(h=>h.getMeta("preventAutolink"));if(!a||i)return;const{tr:o}=s,c=M2(n.doc,[...e]);if(_2(c).forEach(({newRange:h})=>{const f=D8(s.doc,h,y=>y.isTextblock);let m,g;if(f.length>1)m=f[0],g=s.doc.textBetween(m.pos,m.pos+m.node.nodeSize,void 0," ");else if(f.length){const y=s.doc.textBetween(h.from,h.to," "," ");if(!P7.test(y))return;m=f[0],g=s.doc.textBetween(m.pos,h.to,void 0," ")}if(m&&g){const y=g.split(R7).filter(Boolean);if(y.length<=0)return!1;const N=y[y.length-1],w=m.pos+g.lastIndexOf(N);if(!N)return!1;const v=ry(N).map(k=>k.toObject(t.defaultProtocol));if(!D7(v))return!1;v.filter(k=>k.isLink).map(k=>({...k,from:w+k.start+1,to:w+k.end+1})).filter(k=>s.schema.marks.code?!s.doc.rangeHasMark(k.from,k.to,s.schema.marks.code):!0).filter(k=>t.validate(k.value)).filter(k=>t.shouldAutoLink(k.value)).forEach(k=>{U0(k.from,k.to,s.doc).some(C=>C.mark.type===t.type)||o.addMark(k.from,k.to,t.type.create({href:k.href}))})}}),!!o.steps.length)return o}})}function _7(t){return new Wt({key:new nn("handleClickLink"),props:{handleClick:(e,n,s)=>{var a,i;if(s.button!==0||!e.editable)return!1;let o=null;if(s.target instanceof HTMLAnchorElement)o=s.target;else{const u=s.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=L2(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 z7(t){return new Wt({key:new nn("handlePasteLink"),props:{handlePaste:(e,n,s)=>{const{shouldAutoLink:a}=t,{state:i}=e,{selection:o}=i,{empty:c}=o;if(c)return!1;let u="";s.content.forEach(f=>{u+=f.textContent});const h=yC(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 mo(t,e){const n=["http","https","ftp","ftps","mailto","tel","callto","sms","cid","xmpp"];return e&&e.forEach(s=>{const a=typeof s=="string"?s:s.scheme;a&&n.push(a)}),!t||t.replace(O7,"").match(new RegExp(`^(?:(?:${n.join("|")}):|[^a-z]|[a-z0-9+.-]+(?:[^a-z+.-:]|$))`,"i"))}var $7=Wo.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"){HN(t);return}HN(t.scheme,t.optionalSlashes)})},onDestroy(){A7()},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)=>!!mo(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=>!!mo(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=>!!mo(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?["a",Ct(this.options.HTMLAttributes,t),0]:["a",Ct(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,s,a,i;const o=(s=(n=t.attrs)==null?void 0:n.href)!=null?s:"",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:s=>!!mo(s,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:s=>!!mo(s,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[_o({find:t=>{const e=[];if(t){const{protocols:n,defaultProtocol:s}=this.options,a=yC(t).filter(i=>i.isLink&&this.options.isAllowedUri(i.value,{defaultValidate:o=>!!mo(o,n),protocols:n,defaultProtocol:s}));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(L7({type:this.type,defaultProtocol:this.options.defaultProtocol,validate:s=>this.options.isAllowedUri(s,{defaultValidate:a=>!!mo(a,e),protocols:e,defaultProtocol:n}),shouldAutoLink:this.options.shouldAutoLink})),t.push(_7({type:this.type,editor:this.editor,openOnClick:this.options.openOnClick==="whenNotEditable"?!0:this.options.openOnClick,enableClickSelection:this.options.enableClickSelection})),this.options.linkOnPaste&&t.push(z7({editor:this.editor,defaultProtocol:this.options.defaultProtocol,type:this.type,shouldAutoLink:this.options.shouldAutoLink})),t}}),F7=Object.defineProperty,B7=(t,e)=>{for(var n in e)F7(t,n,{get:e[n],enumerable:!0})},V7="listItem",WN="textStyle",UN=/^\s*([-+*])\s$/,bC=Cn.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",Ct(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(V7,this.editor.getAttributes(WN)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-8":()=>this.editor.commands.toggleBulletList()}},addInputRules(){let t=Yl({find:UN,type:this.type});return(this.options.keepMarks||this.options.keepAttributes)&&(t=Yl({find:UN,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:()=>this.editor.getAttributes(WN),editor:this.editor})),[t]}}),vC=Cn.create({name:"listItem",addOptions(){return{HTMLAttributes:{},bulletListTypeName:"bulletList",orderedListTypeName:"orderedList"}},content:"paragraph block*",defining:!0,parseHTML(){return[{tag:"li"}]},renderHTML({HTMLAttributes:t}){return["li",Ct(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)=>J0(t,e,s=>{var a,i;return s.parentType==="bulletList"?"- ":s.parentType==="orderedList"?`${(((i=(a=s.meta)==null?void 0:a.parentAttrs)==null?void 0:i.start)||1)+s.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)}}}),H7={};B7(H7,{findListItemPos:()=>Vd,getNextListDepth:()=>iy,handleBackspace:()=>Ox,handleDelete:()=>Dx,hasListBefore:()=>NC,hasListItemAfter:()=>W7,hasListItemBefore:()=>wC,listItemHasSubList:()=>jC,nextListIsDeeper:()=>kC,nextListIsHigher:()=>SC});var Vd=(t,e)=>{const{$from:n}=e.selection,s=Sn(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===s?c=i:(i-=1,o-=1);return c===null?null:{$pos:e.doc.resolve(o),depth:c}},iy=(t,e)=>{const n=Vd(t,e);if(!n)return!1;const[,s]=U8(e,t,n.$pos.pos+4);return s},NC=(t,e,n)=>{const{$anchor:s}=t.selection,a=Math.max(0,s.pos-2),i=t.doc.resolve(a).node();return!(!i||!n.includes(i.type.name))},wC=(t,e)=>{var n;const{$anchor:s}=e.selection,a=e.doc.resolve(s.pos-2);return!(a.index()===0||((n=a.nodeBefore)==null?void 0:n.type.name)!==t)},jC=(t,e,n)=>{if(!n)return!1;const s=Sn(t,e.schema);let a=!1;return n.descendants(i=>{i.type===s&&(a=!0)}),a},Ox=(t,e,n)=>{if(t.commands.undoInputRule())return!0;if(t.state.selection.from!==t.state.selection.to)return!1;if(!Ii(t.state,e)&&NC(t.state,e,n)){const{$anchor:c}=t.state.selection,u=t.state.doc.resolve(c.before()-1),h=[];u.node().descendants((g,y)=>{g.type.name===e&&h.push({node:g,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(!Ii(t.state,e)||!J8(t.state))return!1;const s=Vd(e,t.state);if(!s)return!1;const i=t.state.doc.resolve(s.$pos.pos-2).node(s.depth),o=jC(e,t.state,i);return wC(e,t.state)&&!o?t.commands.joinItemBackward():t.chain().liftListItem(e).run()},kC=(t,e)=>{const n=iy(t,e),s=Vd(t,e);return!s||!n?!1:n>s.depth},SC=(t,e)=>{const n=iy(t,e),s=Vd(t,e);return!s||!n?!1:n{if(!Ii(t.state,e)||!G8(t.state,e))return!1;const{selection:n}=t.state,{$from:s,$to:a}=n;return!n.empty&&s.sameParent(a)?!1:kC(e,t.state)?t.chain().focus(t.state.selection.from+4).lift(e).joinBackward().run():SC(e,t.state)?t.chain().joinForward().joinBackward().run():t.commands.joinItemForward()},W7=(t,e)=>{var n;const{$anchor:s}=e.selection,a=e.doc.resolve(s.pos-s.parentOffset-2);return!(a.index()===a.parent.childCount-1||((n=a.nodeAfter)==null?void 0:n.type.name)!==t)},CC=xn.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&&Dx(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&&Dx(t,n)&&(e=!0)}),e},Backspace:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:s})=>{t.state.schema.nodes[n]!==void 0&&Ox(t,n,s)&&(e=!0)}),e},"Mod-Backspace":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:s})=>{t.state.schema.nodes[n]!==void 0&&Ox(t,n,s)&&(e=!0)}),e}}}}),KN=/^(\s*)(\d+)\.\s+(.*)$/,U7=/^\s/;function K7(t){const e=[];let n=0,s=0;for(;ne;)g.push(t[m]),m+=1;if(g.length>0){const y=Math.min(...g.map(w=>w.indent)),N=EC(g,y,n);h.push({type:"list",ordered:!0,start:g[0].number,items:N,raw:g.map(w=>w.raw).join(` -`)})}a.push({type:"list_item",raw:o.raw,tokens:h}),i=m}else i+=1}return a}function q7(t,e){return t.map(n=>{if(n.type!=="list_item")return e.parseChildren([n])[0];const s=[];return n.tokens&&n.tokens.length>0&&n.tokens.forEach(a=>{if(a.type==="paragraph"||a.type==="list"||a.type==="blockquote"||a.type==="code")s.push(...e.parseChildren([a]));else if(a.type==="text"&&a.tokens){const i=e.parseChildren([a]);s.push({type:"paragraph",content:i})}else{const i=e.parseChildren([a]);i.length>0&&s.push(...i)}}),{type:"listItem",content:s}})}var G7="listItem",qN="textStyle",GN=/^(\d+)\.\s$/,TC=Cn.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",Ct(this.options.HTMLAttributes,n),0]:["ol",Ct(this.options.HTMLAttributes,t),0]},markdownTokenName:"list",parseMarkdown:(t,e)=>{if(t.type!=="list"||!t.ordered)return[];const n=t.start||1,s=t.items?q7(t.items,e):[];return n!==1?{type:"orderedList",attrs:{start:n},content:s}:{type:"orderedList",content:s}},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 s;const a=t.split(` -`),[i,o]=K7(a);if(i.length===0)return;const c=EC(i,0,n);return c.length===0?void 0:{type:"list",ordered:!0,start:((s=i[0])==null?void 0:s.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(G7,this.editor.getAttributes(qN)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-7":()=>this.editor.commands.toggleOrderedList()}},addInputRules(){let t=Yl({find:GN,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=Yl({find:GN,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:e=>({start:+e[1],...this.editor.getAttributes(qN)}),joinPredicate:(e,n)=>n.childCount+n.attrs.start===+e[1],editor:this.editor})),[t]}}),J7=/^\s*(\[([( |x])?\])\s$/,Y7=Cn.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",Ct(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 s=e.parseChildren(t.nestedTokens);n.push(...s)}return e.createNode("taskItem",{checked:t.checked||!1},n)},renderMarkdown:(t,e)=>{var n;const a=`- [${(n=t.attrs)!=null&&n.checked?"x":" "}] `;return J0(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:s})=>{const a=document.createElement("li"),i=document.createElement("label"),o=document.createElement("span"),c=document.createElement("input"),u=document.createElement("div"),h=m=>{var g,y;c.ariaLabel=((y=(g=this.options.a11y)==null?void 0:g.checkboxLabel)==null?void 0:y.call(g,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(!s.isEditable&&!this.options.onReadOnlyChecked){c.checked=!c.checked;return}const{checked:g}=m.target;s.isEditable&&typeof n=="function"&&s.chain().focus(void 0,{scrollIntoView:!1}).command(({tr:y})=>{const N=n();if(typeof N!="number")return!1;const w=y.doc.nodeAt(N);return y.setNodeMarkup(N,void 0,{...w==null?void 0:w.attrs,checked:g}),!0}).run(),!s.isEditable&&this.options.onReadOnlyChecked&&(this.options.onReadOnlyChecked(t,g)||(c.checked=!c.checked))}),Object.entries(this.options.HTMLAttributes).forEach(([m,g])=>{a.setAttribute(m,g)}),a.dataset.checked=t.attrs.checked,c.checked=t.attrs.checked,i.append(c,o),a.append(i,u),Object.entries(e).forEach(([m,g])=>{a.setAttribute(m,g)});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 g=s.extensionManager.attributes,y=Md(m,g),N=new Set(Object.keys(y)),w=this.options.HTMLAttributes;return f.forEach(v=>{N.has(v)||(v in w?a.setAttribute(v,w[v]):a.removeAttribute(v))}),Object.entries(y).forEach(([v,k])=>{k==null?v in w?a.setAttribute(v,w[v]):a.removeAttribute(v):a.setAttribute(v,k)}),f=N,!0}}}},addInputRules(){return[Yl({find:J7,type:this.type,getAttributes:t=>({checked:t[t.length-1]==="x"})})]}}),Q7=Cn.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",Ct(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 s=i=>{const o=kx(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:s},n);return o?[{type:"taskList",raw:o.raw,items:o.items}]:n.blockTokens(i)},a=kx(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:s},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()}}});xn.create({name:"listKit",addExtensions(){const t=[];return this.options.bulletList!==!1&&t.push(bC.configure(this.options.bulletList)),this.options.listItem!==!1&&t.push(vC.configure(this.options.listItem)),this.options.listKeymap!==!1&&t.push(CC.configure(this.options.listKeymap)),this.options.orderedList!==!1&&t.push(TC.configure(this.options.orderedList)),this.options.taskItem!==!1&&t.push(Y7.configure(this.options.taskItem)),this.options.taskList!==!1&&t.push(Q7.configure(this.options.taskList)),t}});var JN=" ",X7=" ",Z7=Cn.create({name:"paragraph",priority:1e3,addOptions(){return{HTMLAttributes:{}}},group:"block",content:"inline*",parseHTML(){return[{tag:"p"}]},renderHTML({HTMLAttributes:t}){return["p",Ct(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 s=e.parseInline(n);return s.length===1&&s[0].type==="text"&&(s[0].text===JN||s[0].text===X7)?e.createNode("paragraph",void 0,[]):e.createNode("paragraph",void 0,s)},renderMarkdown:(t,e)=>{if(!t)return"";const n=Array.isArray(t.content)?t.content:[];return n.length===0?JN:e.renderChildren(n)},addCommands(){return{setParagraph:()=>({commands:t})=>t.setNode(this.name)}},addKeyboardShortcuts(){return{"Mod-Alt-0":()=>this.editor.commands.setParagraph()}}}),ez=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/,tz=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g,nz=Wo.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",Ct(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[Jl({find:ez,type:this.type})]},addPasteRules(){return[_o({find:tz,type:this.type})]}}),sz=Cn.create({name:"text",group:"inline",parseMarkdown:t=>({type:"text",text:t.text||""}),renderMarkdown:t=>t.text||""}),rz=Wo.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",Ct(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 az(t={}){return new Wt({view(e){return new iz(e,t)}})}class iz{constructor(e,n){var s;this.editorView=e,this.cursorPos=null,this.element=null,this.timeout=-1,this.width=(s=n.width)!==null&&s!==void 0?s: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,s,a=this.editorView.dom,i=a.getBoundingClientRect(),o=i.width/a.offsetWidth,c=i.height/a.offsetHeight;if(n){let m=e.nodeBefore,g=e.nodeAfter;if(m||g){let y=this.editorView.nodeDOM(this.cursorPos-(m?m.nodeSize:0));if(y){let N=y.getBoundingClientRect(),w=m?N.bottom:N.top;m&&g&&(w=(w+this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top)/2);let v=this.width/2*c;s={left:N.left,right:N.right,top:w-v,bottom:w+v}}}}if(!s){let m=this.editorView.coordsAtPos(this.cursorPos),g=this.width/2*o;s={left:m.left-g,right:m.left+g,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(),g=m.width/u.offsetWidth,y=m.height/u.offsetHeight;h=m.left-u.scrollLeft*g,f=m.top-u.scrollTop*y}this.element.style.left=(s.left-h)/o+"px",this.element.style.top=(s.top-f)/c+"px",this.element.style.width=(s.right-s.left)/o+"px",this.element.style.height=(s.bottom-s.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}),s=n&&n.inside>=0&&this.editorView.state.doc.nodeAt(n.inside),a=s&&s.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=NS(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 mn extends rt{constructor(e){super(e,e)}map(e,n){let s=e.resolve(n.map(this.head));return mn.valid(s)?new mn(s):rt.near(s)}content(){return Ie.empty}eq(e){return e instanceof mn&&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 mn(e.resolve(n.pos))}getBookmark(){return new oy(this.anchor)}static valid(e){let n=e.parent;if(n.isTextblock||!oz(e)||!lz(e))return!1;let s=n.type.spec.allowGapCursor;if(s!=null)return s;let a=n.contentMatchAt(e.index()).defaultType;return a&&a.isTextblock}static findGapCursorFrom(e,n,s=!1){e:for(;;){if(!s&&mn.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(mn.valid(u))return u}for(;;){let o=n>0?i.firstChild:i.lastChild;if(!o){if(i.isAtom&&!i.isText&&!Xe.isSelectable(i)){e=e.doc.resolve(a+i.nodeSize*n),s=!1;continue e}break}i=o,a+=n;let c=e.doc.resolve(a);if(mn.valid(c))return c}return null}}}mn.prototype.visible=!1;mn.findFrom=mn.findGapCursorFrom;rt.jsonID("gapcursor",mn);class oy{constructor(e){this.pos=e}map(e){return new oy(e.map(this.pos))}resolve(e){let n=e.resolve(this.pos);return mn.valid(n)?new mn(n):rt.near(n)}}function MC(t){return t.isAtom||t.spec.isolating||t.spec.createGapCursor}function oz(t){for(let e=t.depth;e>=0;e--){let n=t.index(e),s=t.node(e);if(n==0){if(s.type.spec.isolating)return!0;continue}for(let a=s.child(n-1);;a=a.lastChild){if(a.childCount==0&&!a.inlineContent||MC(a.type))return!0;if(a.inlineContent)return!1}}return!0}function lz(t){for(let e=t.depth;e>=0;e--){let n=t.indexAfter(e),s=t.node(e);if(n==s.childCount){if(s.type.spec.isolating)return!0;continue}for(let a=s.child(n);;a=a.firstChild){if(a.childCount==0&&!a.inlineContent||MC(a.type))return!0;if(a.inlineContent)return!1}}return!0}function cz(){return new Wt({props:{decorations:fz,createSelectionBetween(t,e,n){return e.pos==n.pos&&mn.valid(n)?new mn(n):null},handleClick:uz,handleKeyDown:dz,handleDOMEvents:{beforeinput:hz}}})}const dz=$0({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(s,a,i){let o=s.selection,c=e>0?o.$to:o.$from,u=o.empty;if(o instanceof Ze){if(!i.endOfTextblock(n)||c.depth==0)return!1;u=!1,c=s.doc.resolve(e>0?c.after():c.before())}let h=mn.findGapCursorFrom(c,e,u);return h?(a&&a(s.tr.setSelection(new mn(h))),!0):!1}}function uz(t,e,n){if(!t||!t.editable)return!1;let s=t.state.doc.resolve(e);if(!mn.valid(s))return!1;let a=t.posAtCoords({left:n.clientX,top:n.clientY});return a&&a.inside>-1&&Xe.isSelectable(t.state.doc.nodeAt(a.inside))?!1:(t.dispatch(t.state.tr.setSelection(new mn(s))),!0)}function hz(t,e){if(e.inputType!="insertCompositionText"||!(t.state.selection instanceof mn))return!1;let{$from:n}=t.state.selection,s=n.parent.contentMatchAt(n.index()).findWrapping(t.state.schema.nodes.text);if(!s)return!1;let a=ve.empty;for(let o=s.length-1;o>=0;o--)a=ve.from(s[o].createAndFill(null,a));let i=t.state.tr.replace(n.pos,n.pos,new Ie(a,0,0));return i.setSelection(Ze.near(i.doc.resolve(n.pos+1))),t.dispatch(i),!1}function fz(t){if(!(t.selection instanceof mn))return null;let e=document.createElement("div");return e.className="ProseMirror-gapcursor",zt.create(t.doc,[In.widget(t.selection.head,e,{key:"gapcursor"})])}var jf=200,Hn=function(){};Hn.prototype.append=function(e){return e.length?(e=Hn.from(e),!this.length&&e||e.length=n?Hn.empty:this.sliceInner(Math.max(0,e),Math.min(this.length,n))};Hn.prototype.get=function(e){if(!(e<0||e>=this.length))return this.getInner(e)};Hn.prototype.forEach=function(e,n,s){n===void 0&&(n=0),s===void 0&&(s=this.length),n<=s?this.forEachInner(e,n,s,0):this.forEachInvertedInner(e,n,s,0)};Hn.prototype.map=function(e,n,s){n===void 0&&(n=0),s===void 0&&(s=this.length);var a=[];return this.forEach(function(i,o){return a.push(e(i,o))},n,s),a};Hn.from=function(e){return e instanceof Hn?e:e&&e.length?new AC(e):Hn.empty};var AC=(function(t){function e(s){t.call(this),this.values=s}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<=jf)return new e(this.values.concat(a.flatten()))},e.prototype.leafPrepend=function(a){if(this.length+a.length<=jf)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})(Hn);Hn.empty=new AC([]);var pz=(function(t){function e(n,s){t.call(this),this.left=n,this.right=s,this.length=n.length+s.length,this.depth=Math.max(n.depth,s.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(s){return sc&&this.right.forEachInner(s,Math.max(a-c,0),Math.min(this.length,i)-c,o+c)===!1)return!1},e.prototype.forEachInvertedInner=function(s,a,i,o){var c=this.left.length;if(a>c&&this.right.forEachInvertedInner(s,a-c,Math.max(i,c)-c,o+c)===!1||i=i?this.right.slice(s-i,a-i):this.left.slice(s,i).append(this.right.slice(0,a-i))},e.prototype.leafAppend=function(s){var a=this.right.leafAppend(s);if(a)return new e(this.left,a)},e.prototype.leafPrepend=function(s){var a=this.left.leafPrepend(s);if(a)return new e(a,this.right)},e.prototype.appendInner=function(s){return this.left.depth>=Math.max(this.right.depth,s.depth)+1?new e(this.left,new e(this.right,s)):new e(this,s)},e})(Hn);const mz=500;class wr{constructor(e,n){this.items=e,this.eventCount=n}popEvent(e,n){if(this.eventCount==0)return null;let s=this.items.length;for(;;s--)if(this.items.get(s-1).selection){--s;break}let a,i;n&&(a=this.remapping(s,this.items.length),i=a.maps.length);let o=e.tr,c,u,h=[],f=[];return this.items.forEach((m,g)=>{if(!m.step){a||(a=this.remapping(s,g+1),i=a.maps.length),i--,f.push(m);return}if(a){f.push(new li(m.map));let y=m.step.map(a.slice(i)),N;y&&o.maybeStep(y).doc&&(N=o.mapping.maps[o.mapping.maps.length-1],h.push(new li(N,void 0,void 0,h.length+f.length))),i--,N&&a.appendMap(N,i)}else o.maybeStep(m.step);if(m.selection)return c=a?m.selection.map(a.slice(i)):m.selection,u=new wr(this.items.slice(0,s).append(f.reverse().concat(h)),this.eventCount-1),!1},this.items.length,0),{remaining:u,transform:o,selection:c}}addTransform(e,n,s,a){let i=[],o=this.eventCount,c=this.items,u=!a&&c.length?c.get(c.length-1):null;for(let f=0;fxz&&(c=gz(c,h),o-=h),new wr(c.append(i),o)}remapping(e,n){let s=new jd;return this.items.forEach((a,i)=>{let o=a.mirrorOffset!=null&&i-a.mirrorOffset>=e?s.maps.length-a.mirrorOffset:void 0;s.appendMap(a.map,o)},e,n),s}addMaps(e){return this.eventCount==0?this:new wr(this.items.append(e.map(n=>new li(n))),this.eventCount)}rebased(e,n){if(!this.eventCount)return this;let s=[],a=Math.max(0,this.items.length-n),i=e.mapping,o=e.steps.length,c=this.eventCount;this.items.forEach(g=>{g.selection&&c--},a);let u=n;this.items.forEach(g=>{let y=i.getMirror(--u);if(y==null)return;o=Math.min(o,y);let N=i.maps[y];if(g.step){let w=e.steps[y].invert(e.docs[y]),v=g.selection&&g.selection.map(i.slice(u+1,y));v&&c++,s.push(new li(N,w,v))}else s.push(new li(N))},a);let h=[];for(let g=n;gmz&&(m=m.compress(this.items.length-s.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),s=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(s)),h=u&&u.getMap();if(s--,h&&n.appendMap(h,s),u){let f=o.selection&&o.selection.map(n.slice(s));f&&i++;let m=new li(h.invert(),u,f),g,y=a.length-1;(g=a.length&&a[y].merge(m))?a[y]=g:a.push(m)}}else o.map&&s--},this.items.length,0),new wr(Hn.from(a.reverse()),i)}}wr.empty=new wr(Hn.empty,0);function gz(t,e){let n;return t.forEach((s,a)=>{if(s.selection&&e--==0)return n=a,!1}),t.slice(n)}let li=class IC{constructor(e,n,s,a){this.map=e,this.step=n,this.selection=s,this.mirrorOffset=a}merge(e){if(this.step&&e.step&&!e.selection){let n=e.step.merge(this.step);if(n)return new IC(n.getMap().invert(),n,this.selection)}}};class fi{constructor(e,n,s,a,i){this.done=e,this.undone=n,this.prevRanges=s,this.prevTime=a,this.prevComposition=i}}const xz=20;function yz(t,e,n,s){let a=n.getMeta(Mo),i;if(a)return a.historyState;n.getMeta(Nz)&&(t=new fi(t.done,t.undone,null,0,-1));let o=n.getMeta("appendedTransaction");if(n.steps.length==0)return t;if(o&&o.getMeta(Mo))return o.getMeta(Mo).redo?new fi(t.done.addTransform(n,void 0,s,wh(e)),t.undone,YN(n.mapping.maps),t.prevTime,t.prevComposition):new fi(t.done,t.undone.addTransform(n,void 0,s,wh(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)-s.newGroupDelay||!bz(n,t.prevRanges)),h=o?Ag(t.prevRanges,n.mapping):YN(n.mapping.maps);return new fi(t.done.addTransform(n,u?e.selection.getBookmark():void 0,s,wh(e)),wr.empty,h,n.time,c??t.prevComposition)}else return(i=n.getMeta("rebased"))?new fi(t.done.rebased(n,i),t.undone.rebased(n,i),Ag(t.prevRanges,n.mapping),t.prevTime,t.prevComposition):new fi(t.done.addMaps(n.mapping.maps),t.undone.addMaps(n.mapping.maps),Ag(t.prevRanges,n.mapping),t.prevTime,t.prevComposition)}function bz(t,e){if(!e)return!1;if(!t.docChanged)return!0;let n=!1;return t.mapping.maps[0].forEach((s,a)=>{for(let i=0;i=e[i]&&(n=!0)}),n}function YN(t){let e=[];for(let n=t.length-1;n>=0&&e.length==0;n--)t[n].forEach((s,a,i,o)=>e.push(i,o));return e}function Ag(t,e){if(!t)return null;let n=[];for(let s=0;s{let a=Mo.getState(n);if(!a||(t?a.undone:a.done).eventCount==0)return!1;if(s){let i=vz(a,n,t);i&&s(e?i.scrollIntoView():i)}return!0}}const PC=RC(!1,!0),OC=RC(!0,!0);xn.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 s=e.textBetween(0,e.content.size,void 0," ");return this.options.textCounter(s)}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 Wt({key:new nn("characterCount"),appendTransaction:(e,n,s)=>{if(t)return;const a=this.options.limit;if(a==null||a===0){t=!0;return}const i=this.storage.characters({node:s.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=s.tr.deleteRange(c,u);return t=!0,h}t=!0},filterTransaction:(e,n)=>{const s=this.options.limit;if(!e.docChanged||s===0||s===null||s===void 0)return!0;const a=this.storage.characters({node:n.doc}),i=this.storage.characters({node:e.doc});if(i<=s||a>s&&i>s&&i<=a)return!0;if(a>s&&i>s&&i>a||!e.getMeta("paste"))return!1;const c=e.selection.$head.pos,u=i-s,h=c-u,f=c;return e.deleteRange(h,f),!(this.storage.characters({node:e.doc})>s)}})]}});var jz=xn.create({name:"dropCursor",addOptions(){return{color:"currentColor",width:1,class:void 0}},addProseMirrorPlugins(){return[az(this.options)]}});xn.create({name:"focus",addOptions(){return{className:"has-focus",mode:"all"}},addProseMirrorPlugins(){return[new Wt({key:new nn("focus"),props:{decorations:({doc:t,selection:e})=>{const{isEditable:n,isFocused:s}=this.editor,{anchor:a}=e,i=[];if(!n||!s)return zt.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(In.node(h,h+u.nodeSize,{class:this.options.className}))}),zt.create(t,i)}}})]}});var kz=xn.create({name:"gapCursor",addProseMirrorPlugins(){return[cz()]},extendNodeSchema(t){var e;const n={name:t.name,options:t.options,storage:t.storage};return{allowGapCursor:(e=jt(qe(t,"allowGapCursor",n)))!=null?e:null}}}),XN="placeholder";function Sz(t){return t.replace(/\s+/g,"-").replace(/[^a-zA-Z0-9-]/g,"").replace(/^[0-9-]+/,"").replace(/^-+/,"").toLowerCase()}var Cz=xn.create({name:"placeholder",addOptions(){return{emptyEditorClass:"is-editor-empty",emptyNodeClass:"is-empty",dataAttribute:XN,placeholder:"Write something …",showOnlyWhenEditable:!0,showOnlyCurrent:!0,includeChildren:!1}},addProseMirrorPlugins(){const t=this.options.dataAttribute?`data-${Sz(this.options.dataAttribute)}`:`data-${XN}`;return[new Wt({key:new nn("placeholder"),props:{decorations:({doc:e,selection:n})=>{const s=this.editor.isEditable||!this.options.showOnlyWhenEditable,{anchor:a}=n,i=[];if(!s)return null;const o=this.editor.isEmpty;return e.descendants((c,u)=>{const h=a>=u&&a<=u+c.nodeSize,f=!c.isLeaf&&Qf(c);if((h||!this.options.showOnlyCurrent)&&f){const m=[this.options.emptyNodeClass];o&&m.push(this.options.emptyEditorClass);const g=In.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(g)}return this.options.includeChildren}),zt.create(e,i)}}})]}});xn.create({name:"selection",addOptions(){return{className:"selection"}},addProseMirrorPlugins(){const{editor:t,options:e}=this;return[new Wt({key:new nn("selection"),props:{decorations(n){return n.selection.empty||t.isFocused||!t.isEditable||z2(n.selection)||t.view.dragging?null:zt.create(n.doc,[In.inline(n.selection.from,n.selection.to,{class:e.className})])}}})]}});function ZN({types:t,node:e}){return e&&Array.isArray(t)&&t.includes(e.type)||(e==null?void 0:e.type)===t}var Ez=xn.create({name:"trailingNode",addOptions(){return{node:void 0,notAfter:[]}},addProseMirrorPlugins(){var t;const e=new nn(this.name),n=this.options.node||((t=this.editor.schema.topNodeType.contentMatch.defaultType)==null?void 0:t.name)||"paragraph",s=Object.entries(this.editor.schema.nodes).map(([,a])=>a).filter(a=>(this.options.notAfter||[]).concat(n).includes(a.name));return[new Wt({key:e,appendTransaction:(a,i,o)=>{const{doc:c,tr:u,schema:h}=o,f=e.getState(o),m=c.content.size,g=h.nodes[n];if(f)return u.insert(m,g.create())},state:{init:(a,i)=>{const o=i.tr.doc.lastChild;return!ZN({node:o,types:s})},apply:(a,i)=>{if(!a.docChanged||a.getMeta("__uniqueIDTransaction"))return i;const o=a.doc.lastChild;return!ZN({node:o,types:s})}}})]}}),Tz=xn.create({name:"undoRedo",addOptions(){return{depth:100,newGroupDelay:500}},addCommands(){return{undo:()=>({state:t,dispatch:e})=>PC(t,e),redo:()=>({state:t,dispatch:e})=>OC(t,e)}},addProseMirrorPlugins(){return[wz(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()}}}),Mz=xn.create({name:"starterKit",addExtensions(){var t,e,n,s;const a=[];return this.options.bold!==!1&&a.push(Z_.configure(this.options.bold)),this.options.blockquote!==!1&&a.push(G_.configure(this.options.blockquote)),this.options.bulletList!==!1&&a.push(bC.configure(this.options.bulletList)),this.options.code!==!1&&a.push(n7.configure(this.options.code)),this.options.codeBlock!==!1&&a.push(a7.configure(this.options.codeBlock)),this.options.document!==!1&&a.push(i7.configure(this.options.document)),this.options.dropcursor!==!1&&a.push(jz.configure(this.options.dropcursor)),this.options.gapcursor!==!1&&a.push(kz.configure(this.options.gapcursor)),this.options.hardBreak!==!1&&a.push(o7.configure(this.options.hardBreak)),this.options.heading!==!1&&a.push(l7.configure(this.options.heading)),this.options.undoRedo!==!1&&a.push(Tz.configure(this.options.undoRedo)),this.options.horizontalRule!==!1&&a.push(c7.configure(this.options.horizontalRule)),this.options.italic!==!1&&a.push(p7.configure(this.options.italic)),this.options.listItem!==!1&&a.push(vC.configure(this.options.listItem)),this.options.listKeymap!==!1&&a.push(CC.configure((t=this.options)==null?void 0:t.listKeymap)),this.options.link!==!1&&a.push($7.configure((e=this.options)==null?void 0:e.link)),this.options.orderedList!==!1&&a.push(TC.configure(this.options.orderedList)),this.options.paragraph!==!1&&a.push(Z7.configure(this.options.paragraph)),this.options.strike!==!1&&a.push(nz.configure(this.options.strike)),this.options.text!==!1&&a.push(sz.configure(this.options.text)),this.options.underline!==!1&&a.push(rz.configure((n=this.options)==null?void 0:n.underline)),this.options.trailingNode!==!1&&a.push(Ez.configure((s=this.options)==null?void 0:s.trailingNode)),a}}),Az=Mz,Iz=/(?:^|\s)(!\[(.+|:?)]\((\S+)(?:(?:\s+)["'](\S+)["'])?\))$/,Rz=Cn.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",Ct(this.options.HTMLAttributes,t)]},parseMarkdown:(t,e)=>e.createNode("image",{src:t.href,title:t.title,alt:t.text}),renderMarkdown:t=>{var e,n,s,a,i,o;const c=(n=(e=t.attrs)==null?void 0:e.src)!=null?n:"",u=(a=(s=t.attrs)==null?void 0:s.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:s}=this.options.resize;return({node:a,getPos:i,HTMLAttributes:o,editor:c})=>{const u=document.createElement("img");Object.entries(o).forEach(([m,g])=>{if(g!=null)switch(m){case"width":case"height":break;default:u.setAttribute(m,g);break}}),u.src=o.src;const h=new D6({element:u,editor:c,node:a,getPos:i,onResize:(m,g)=>{u.style.width=`${m}px`,u.style.height=`${g}px`},onCommit:(m,g)=>{const y=i();y!==void 0&&this.editor.chain().setNodeSelection(y).updateAttributes(this.name,{width:m,height:g}).run()},onUpdate:(m,g,y)=>m.type===a.type,options:{directions:t,min:{width:e,height:n},preserveAspectRatio:s===!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[tC({find:Iz,type:this.type,getAttributes:t=>{const[,,e,n,s]=t;return{src:n,alt:e,title:s}}})]}}),Pz=Rz;function Oz(t){var e;const{char:n,allowSpaces:s,allowToIncludeChar:a,allowedPrefixes:i,startOfLine:o,$position:c}=t,u=s&&!a,h=_6(n),f=new RegExp(`\\s${h}$`),m=o?"^":"",g=a?"":h,y=u?new RegExp(`${m}${h}.*?(?=\\s${g}|$)`,"gm"):new RegExp(`${m}(?:^)?${h}[^\\s${g}]*`,"gm"),N=((e=c.nodeBefore)==null?void 0:e.isText)&&c.nodeBefore.text;if(!N)return null;const w=c.pos-N.length,v=Array.from(N.matchAll(y)).pop();if(!v||v.input===void 0||v.index===void 0)return null;const k=v.input.slice(Math.max(0,v.index-1),v.index),C=new RegExp(`^[${i==null?void 0:i.join("")}\0]?$`).test(k);if(i!==null&&!C)return null;const E=w+v.index;let M=E+v[0].length;return u&&f.test(N.slice(M-1,M+1))&&(v[0]+=" ",M+=1),E=c.pos?{range:{from:E,to:M},query:v[0].slice(n.length),text:v[0]}:null}var Dz=new nn("suggestion");function Lz({pluginKey:t=Dz,editor:e,char:n="@",allowSpaces:s=!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:g=()=>[],render:y=()=>({}),allow:N=()=>!0,findSuggestionMatch:w=Oz,shouldShow:v}){let k;const C=y==null?void 0:y(),E=()=>{const D=e.state.selection.$anchor.pos,R=e.view.coordsAtPos(D),{top:O,right:_,bottom:se,left:ne}=R;try{return new DOMRect(ne,O,_-ne,se-O)}catch{return null}},M=(D,R)=>R?()=>{const O=t.getState(e.state),_=O==null?void 0:O.decorationId,se=D.dom.querySelector(`[data-decoration-id="${_}"]`);return(se==null?void 0:se.getBoundingClientRect())||null}:E;function P(D,R){var O;try{const se=t.getState(D.state),ne=se!=null&&se.decorationId?D.dom.querySelector(`[data-decoration-id="${se.decorationId}"]`):null,pe={editor:e,range:(se==null?void 0:se.range)||{from:0,to:0},query:(se==null?void 0:se.query)||null,text:(se==null?void 0:se.text)||null,items:[],command:ge=>m({editor:e,range:(se==null?void 0:se.range)||{from:0,to:0},props:ge}),decorationNode:ne,clientRect:M(D,ne)};(O=C==null?void 0:C.onExit)==null||O.call(C,pe)}catch{}const _=D.state.tr.setMeta(R,{exit:!0});D.dispatch(_)}const $=new Wt({key:t,view(){return{update:async(D,R)=>{var O,_,se,ne,pe,ge,z;const K=(O=this.key)==null?void 0:O.getState(R),U=(_=this.key)==null?void 0:_.getState(D.state),I=K.active&&U.active&&K.range.from!==U.range.from,q=!K.active&&U.active,F=K.active&&!U.active,L=!q&&!F&&K.query!==U.query,W=q||I&&L,oe=L||I,Q=F||I&&L;if(!W&&!oe&&!Q)return;const X=Q&&!W?K:U,V=D.dom.querySelector(`[data-decoration-id="${X.decorationId}"]`);k={editor:e,range:X.range,query:X.query,text:X.text,items:[],command:re=>m({editor:e,range:X.range,props:re}),decorationNode:V,clientRect:M(D,V)},W&&((se=C==null?void 0:C.onBeforeStart)==null||se.call(C,k)),oe&&((ne=C==null?void 0:C.onBeforeUpdate)==null||ne.call(C,k)),(oe||W)&&(k.items=await g({editor:e,query:X.query})),Q&&((pe=C==null?void 0:C.onExit)==null||pe.call(C,k)),oe&&((ge=C==null?void 0:C.onUpdate)==null||ge.call(C,k)),W&&((z=C==null?void 0:C.onStart)==null||z.call(C,k))},destroy:()=>{var D;k&&((D=C==null?void 0:C.onExit)==null||D.call(C,k))}}},state:{init(){return{active:!1,range:{from:0,to:0},query:null,text:null,composing:!1}},apply(D,R,O,_){const{isEditable:se}=e,{composing:ne}=e.view,{selection:pe}=D,{empty:ge,from:z}=pe,K={...R},U=D.getMeta(t);if(U&&U.exit)return K.active=!1,K.decorationId=null,K.range={from:0,to:0},K.query=null,K.text=null,K;if(K.composing=ne,se&&(ge||e.view.composing)){(zR.range.to)&&!ne&&!R.composing&&(K.active=!1);const I=w({char:n,allowSpaces:s,allowToIncludeChar:a,allowedPrefixes:i,startOfLine:o,$position:pe.$from}),q=`id_${Math.floor(Math.random()*4294967295)}`;I&&N({editor:e,state:_,range:I.range,isActive:R.active})&&(!v||v({editor:e,range:I.range,query:I.query,text:I.text,transaction:D}))?(K.active=!0,K.decorationId=R.decorationId?R.decorationId:q,K.range=I.range,K.query=I.query,K.text=I.text):K.active=!1}else K.active=!1;return K.active||(K.decorationId=null,K.range={from:0,to:0},K.query=null,K.text=null),K}},props:{handleKeyDown(D,R){var O,_,se,ne;const{active:pe,range:ge}=$.getState(D.state);if(!pe)return!1;if(R.key==="Escape"||R.key==="Esc"){const K=$.getState(D.state),U=(O=k==null?void 0:k.decorationNode)!=null?O:null,I=U??(K!=null&&K.decorationId?D.dom.querySelector(`[data-decoration-id="${K.decorationId}"]`):null);if(((_=C==null?void 0:C.onKeyDown)==null?void 0:_.call(C,{view:D,event:R,range:K.range}))||!1)return!0;const F={editor:e,range:K.range,query:K.query,text:K.text,items:[],command:L=>m({editor:e,range:K.range,props:L}),decorationNode:I,clientRect:I?()=>I.getBoundingClientRect()||null:null};return(se=C==null?void 0:C.onExit)==null||se.call(C,F),P(D,t),!0}return((ne=C==null?void 0:C.onKeyDown)==null?void 0:ne.call(C,{view:D,event:R,range:ge}))||!1},decorations(D){const{active:R,range:O,decorationId:_,query:se}=$.getState(D);if(!R)return null;const ne=!(se!=null&&se.length),pe=[u];return ne&&pe.push(f),zt.create(D.doc,[In.inline(O.from,O.to,{nodeName:c,class:pe.join(" "),"data-decoration-id":_,"data-decoration-content":h})])}}});return $}function _z({editor:t,overrideSuggestionOptions:e,extensionName:n,char:s="@"}){const a=new nn;return{editor:t,char:s,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:s}},{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 DC(t){return(t.options.suggestions.length?t.options.suggestions:[t.options.suggestion]).map(e=>_z({editor:t.editor,overrideSuggestionOptions:e,extensionName:t.name,char:e.char}))}function ew(t,e){const n=DC(t),s=n.find(a=>a.char===e);return s||(n.length?n[0]:null)}var zz=Cn.create({name:"mention",priority:101,addOptions(){return{HTMLAttributes:{},renderText({node:t,suggestion:e}){var n,s;return`${(n=e==null?void 0:e.char)!=null?n:"@"}${(s=t.attrs.label)!=null?s:t.attrs.id}`},deleteTriggerWithBackspace:!1,renderHTML({options:t,node:e,suggestion:n}){var s,a;return["span",Ct(this.HTMLAttributes,t.HTMLAttributes),`${(s=n==null?void 0:n.char)!=null?s:"@"}${(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=ew(this,t.attrs.mentionSuggestionChar);if(this.options.renderLabel!==void 0)return console.warn("renderLabel is deprecated use renderText and renderHTML instead"),["span",Ct({"data-type":this.name},this.options.HTMLAttributes,e),this.options.renderLabel({options:this.options,node:t,suggestion:n})];const s={...this.options};s.HTMLAttributes=Ct({"data-type":this.name},this.options.HTMLAttributes,e);const a=this.options.renderHTML({options:s,node:t,suggestion:n});return typeof a=="string"?["span",Ct({"data-type":this.name},this.options.HTMLAttributes,e),a]:a},...nC({nodeName:"mention",name:"@",selfClosing:!0,allowedAttributes:["id","label",{name:"mentionSuggestionChar",skipIfDefault:"@"}],parseAttributes:t=>{const e={},n=/(\w+)=(?:"([^"]*)"|'([^']*)')/g;let s=n.exec(t);for(;s!==null;){const[,a,i,o]=s,c=i??o;e[a==="char"?"mentionSuggestionChar":a]=c,s=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:ew(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:s}=e,{empty:a,anchor:i}=s;if(!a)return!1;let o=new Sa,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 DC(this).map(Lz)}}),$z=zz,Fz=Cz;let Lx,_x;if(typeof WeakMap<"u"){let t=new WeakMap;Lx=e=>t.get(e),_x=(e,n)=>(t.set(e,n),n)}else{const t=[];let n=0;Lx=s=>{for(let a=0;a(n==10&&(n=0),t[n++]=s,t[n++]=a)}var gn=class{constructor(t,e,n,s){this.width=t,this.height=e,this.map=n,this.problems=s}findCell(t){for(let e=0;e=n){(i||(i=[])).push({type:"overlong_rowspan",pos:f,n:k-E});break}const M=a+E*e;for(let P=0;Ps&&(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 Hz(t,e,n){t.problems||(t.problems=[]);const s={};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 Uz(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 Tr(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 tp(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=zo(e.$head)||Kz(e.$head);if(n)return n;throw new RangeError(`No cell found around position ${e.head}`)}function Kz(t){for(let e=t.nodeAfter,n=t.pos;e;e=e.firstChild,n++){const s=e.type.spec.tableRole;if(s=="cell"||s=="header_cell")return t.doc.resolve(n)}for(let e=t.nodeBefore,n=t.pos;e;e=e.lastChild,n--){const s=e.type.spec.tableRole;if(s=="cell"||s=="header_cell")return t.doc.resolve(n-e.nodeSize)}}function zx(t){return t.parent.type.spec.tableRole=="row"&&!!t.nodeAfter}function qz(t){return t.node(0).resolve(t.pos+t.nodeAfter.nodeSize)}function ly(t,e){return t.depth==e.depth&&t.pos>=e.start(-1)&&t.pos<=e.end(-1)}function LC(t,e,n){const s=t.node(-1),a=gn.get(s),i=t.start(-1),o=a.nextCell(t.pos-i,e,n);return o==null?null:t.node(0).resolve(i+o)}function $o(t,e,n=1){const s={...t,colspan:t.colspan-n};return s.colwidth&&(s.colwidth=s.colwidth.slice(),s.colwidth.splice(e,n),s.colwidth.some(a=>a>0)||(s.colwidth=null)),s}function _C(t,e,n=1){const s={...t,colspan:t.colspan+n};if(s.colwidth){s.colwidth=s.colwidth.slice();for(let a=0;af!=n.pos-i);u.unshift(n.pos-i);const h=u.map(f=>{const m=s.nodeAt(f);if(!m)throw new RangeError(`No cell with offset ${f} found`);const g=i+f+1;return new CS(c.resolve(g),c.resolve(g+m.content.size))});super(h[0].$from,h[0].$to,h),this.$anchorCell=e,this.$headCell=n}map(e,n){const s=e.resolve(n.map(this.$anchorCell.pos)),a=e.resolve(n.map(this.$headCell.pos));if(zx(s)&&zx(a)&&ly(s,a)){const i=this.$anchorCell.node(-1)!=s.node(-1);return i&&this.isRowSelection()?va.rowSelection(s,a):i&&this.isColSelection()?va.colSelection(s,a):new va(s,a)}return Ze.between(s,a)}content(){const e=this.$anchorCell.node(-1),n=gn.get(e),s=this.$anchorCell.start(-1),a=n.rectBetween(this.$anchorCell.pos-s,this.$headCell.pos-s),i={},o=[];for(let u=a.top;u0||v>0){let k=N.attrs;if(w>0&&(k=$o(k,0,w)),v>0&&(k=$o(k,k.colspan-v,v)),y.lefta.bottom){const k={...N.attrs,rowspan:Math.min(y.bottom,a.bottom)-Math.max(y.top,a.top)};y.top0)return!1;const s=e+this.$anchorCell.nodeAfter.attrs.rowspan,a=n+this.$headCell.nodeAfter.attrs.rowspan;return Math.max(s,a)==this.$headCell.node(-1).childCount}static colSelection(e,n=e){const s=e.node(-1),a=gn.get(s),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 va&&e.$anchorCell.pos==this.$anchorCell.pos&&e.$headCell.pos==this.$headCell.pos}static rowSelection(e,n=e){const s=e.node(-1),a=gn.get(s),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(In.node(s,s+n.nodeSize,{class:"selectedCell"}))}),zt.create(t.doc,e)}function Qz({$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--,s--);return n==s&&/row|table/.test(t.node(a).type.spec.tableRole)}function Xz({$from:t,$to:e}){let n,s;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"){s=i;break}}return n!==s&&e.parentOffset===0}function Zz(t,e,n){const s=(e||t).selection,a=(e||t).doc;let i,o;if(s instanceof Xe&&(o=s.node.type.spec.tableRole)){if(o=="cell"||o=="header_cell")i=Ht.create(a,s.from);else if(o=="row"){const c=a.resolve(s.from+1);i=Ht.rowSelection(c,c)}else if(!n){const c=gn.get(s.node),u=s.from+1,h=u+c.map[c.width*c.height-1];i=Ht.create(a,u+1,h)}}else s instanceof Ze&&Qz(s)?i=Ze.create(a,s.from):s instanceof Ze&&Xz(s)&&(i=Ze.create(a,s.$from.start(),s.$from.end()));return i&&(e||(e=t.tr)).setSelection(i),e}const e$=new nn("fix-tables");function $C(t,e,n,s){const a=t.childCount,i=e.childCount;e:for(let o=0,c=0;o{a.type.spec.tableRole=="table"&&(n=t$(t,a,i,n))};return e?e.doc!=t.doc&&$C(e.doc,t.doc,0,s):t.doc.descendants(s),n}function t$(t,e,n,s){const a=gn.get(e);if(!a.problems)return s;s||(s=t.tr);const i=[];for(let u=0;u0){let y="cell";f.firstChild&&(y=f.firstChild.type.spec.tableRole);const N=[];for(let v=0;v0?-1:0;Gz(e,s,a+i)&&(i=a==0||a==e.width?null:0);for(let o=0;o0&&a0&&e.map[c-1]==u||a0?-1:0;i$(e,s,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 g=n.nodeAt(m).attrs;t.setNodeMarkup(t.mapping.slice(c).map(m+s),null,{...g,rowspan:g.rowspan-1}),h+=g.colspan-1}else if(a0&&n[i]==n[i-1]||s.right0&&n[a]==n[a-t]||s.bottom0){const f=u+1+h.content.size,m=tw(h)?u+1:f;i.replaceWith(m+s.tableStart,f+s.tableStart,c)}i.setSelection(new Ht(i.doc.resolve(u+s.tableStart))),e(i)}return!0}function sw(t,e){const n=fs(t.schema);return h$(({node:s})=>n[s.type.spec.tableRole])(t,e)}function h$(t){return(e,n)=>{const s=e.selection;let a,i;if(s instanceof Ht){if(s.$anchorCell.pos!=s.$headCell.pos)return!1;a=s.$anchorCell.nodeAfter,i=s.$anchorCell.pos}else{var o;if(a=Uz(s.$from),!a)return!1;i=(o=zo(s.$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=Qr(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}),s(i)}return!0}}function p$(t){return function(e,n){if(!Tr(e))return!1;if(n){const s=fs(e.schema),a=Qr(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=g+i.tableStart,N=o.doc.nodeAt(y);N&&o.setNodeMarkup(y,m,N.attrs)}),s(o)}return!0}}Rd("row",{useDeprecatedLogic:!0});Rd("column",{useDeprecatedLogic:!0});const m$=Rd("cell",{useDeprecatedLogic:!0});function g$(t,e){if(e<0){const n=t.nodeBefore;if(n)return t.pos-n.nodeSize;for(let s=t.index(-1)-1,a=t.before();s>=0;s--){const i=t.node(-1).child(s),o=i.lastChild;if(o)return a-1-o.nodeSize;a-=i.nodeSize}}else{if(t.index()0;s--)if(n.node(s).type.spec.tableRole=="table")return e&&e(t.tr.delete(n.before(s),n.after(s)).scrollIntoView()),!0;return!1}function uh(t,e){const n=t.selection;if(!(n instanceof Ht))return!1;if(e){const s=t.tr,a=fs(t.schema).cell.createAndFill().content;n.forEachCell((i,o)=>{i.content.eq(a)||s.replace(s.mapping.map(o+1),s.mapping.map(o+i.nodeSize-1),new Ie(a,0,0))}),s.docChanged&&e(s)}return!0}function y$(t){if(t.size===0)return null;let{content:e,openStart:n,openEnd:s}=t;for(;e.childCount==1&&(n>0&&s>0||e.child(0).type.spec.tableRole=="table");)n--,s--,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(ve.empty),n[a]s&&(g=g.type.createChecked($o(g.attrs,g.attrs.colspan,f+g.attrs.colspan-s),g.content)),h.push(g),f+=g.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(ve.from(u))}n=i,e=a}return{width:t,height:e,rows:n}}function N$(t,e,n,s,a,i,o){const c=t.doc.type.schema,u=fs(c);let h,f;if(a>e.width)for(let m=0,g=0;me.height){const m=[];for(let N=0,w=(e.height-1)*e.width;N=e.width?!1:n.nodeAt(e.map[w+N]).type==u.header_cell;m.push(v?f||(f=u.header_cell.createAndFill()):h||(h=u.cell.createAndFill()))}const g=u.row.create(null,ve.from(m)),y=[];for(let N=e.height;N{if(!a)return!1;const i=n.selection;if(i instanceof Ht)return jh(n,s,rt.near(i.$headCell,e));if(t!="horiz"&&!i.empty)return!1;const o=HC(a,t,e);if(o==null)return!1;if(t=="horiz")return jh(n,s,rt.near(n.doc.resolve(i.head+e),e));{const c=n.doc.resolve(o),u=LC(c,t,e);let h;return u?h=rt.near(u,1):e<0?h=rt.near(n.doc.resolve(c.before(-1)),-1):h=rt.near(n.doc.resolve(c.after(-1)),1),jh(n,s,h)}}}function fh(t,e){return(n,s,a)=>{if(!a)return!1;const i=n.selection;let o;if(i instanceof Ht)o=i;else{const u=HC(a,t,e);if(u==null)return!1;o=new Ht(n.doc.resolve(u))}const c=LC(o.$headCell,t,e);return c?jh(n,s,new Ht(o.$anchorCell,c)):!1}}function j$(t,e){const n=t.state.doc,s=zo(n.resolve(e));return s?(t.dispatch(t.state.tr.setSelection(new Ht(s))),!0):!1}function k$(t,e,n){if(!Tr(t.state))return!1;let s=y$(n);const a=t.state.selection;if(a instanceof Ht){s||(s={width:1,height:1,rows:[ve.from($x(fs(t.state.schema).cell,n))]});const i=a.$anchorCell.node(-1),o=a.$anchorCell.start(-1),c=gn.get(i).rectBetween(a.$anchorCell.pos-o,a.$headCell.pos-o);return s=v$(s,c.right-c.left,c.bottom-c.top),lw(t.state,t.dispatch,o,c,s),!0}else if(s){const i=tp(t.state),o=i.start(-1);return lw(t.state,t.dispatch,o,gn.get(i.node(-1)).findCell(i.pos-o),s),!0}else return!1}function S$(t,e){var n;if(e.button!=0||e.ctrlKey||e.metaKey)return;const s=cw(t,e.target);let a;if(e.shiftKey&&t.state.selection instanceof Ht)i(t.state.selection.$anchorCell,e),e.preventDefault();else if(e.shiftKey&&s&&(a=zo(t.state.selection.$anchor))!=null&&((n=Rg(t,e))===null||n===void 0?void 0:n.pos)!=a.pos)i(a,e),e.preventDefault();else if(!s)return;function i(u,h){let f=Rg(t,h);const m=gi.getState(t.state)==null;if(!f||!ly(u,f))if(m)f=u;else return;const g=new Ht(u,f);if(m||!t.state.selection.eq(g)){const y=t.state.tr.setSelection(g);m&&y.setMeta(gi,u.pos),t.dispatch(y)}}function o(){t.root.removeEventListener("mouseup",o),t.root.removeEventListener("dragstart",o),t.root.removeEventListener("mousemove",c),gi.getState(t.state)!=null&&t.dispatch(t.state.tr.setMeta(gi,-1))}function c(u){const h=u,f=gi.getState(t.state);let m;if(f!=null)m=t.state.doc.resolve(f);else if(cw(t,h.target)!=s&&(m=Rg(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 HC(t,e,n){if(!(t.state.selection instanceof Ze))return null;const{$head:s}=t.state.selection;for(let a=s.depth-1;a>=0;a--){const i=s.node(a);if((n<0?s.index(a):s.indexAfter(a))!=(n<0?0:i.childCount))return null;if(i.type.spec.tableRole=="cell"||i.type.spec.tableRole=="header_cell"){const o=s.before(a),c=e=="vert"?n>0?"down":"up":n>0?"right":"left";return t.endOfTextblock(c)?o:null}}return null}function cw(t,e){for(;e&&e!=t.dom;e=e.parentNode)if(e.nodeName=="TD"||e.nodeName=="TH")return e;return null}function Rg(t,e){const n=t.posAtCoords({left:e.clientX,top:e.clientY});if(!n)return null;let{inside:s,pos:a}=n;return s>=0&&zo(t.state.doc.resolve(s))||zo(t.state.doc.resolve(a))}var C$=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")),Fx(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,Fx(e,this.colgroup,this.table,this.defaultCellMinWidth),!0)}ignoreMutation(e){return e.type=="attributes"&&(e.target==this.table||this.colgroup.contains(e.target))}};function Fx(t,e,n,s,a,i){let o=0,c=!0,u=e.firstChild;const h=t.firstChild;if(h){for(let m=0,g=0;mnew s(m,n,g)),new T$(-1,!1)},apply(o,c){return c.apply(o)}},props:{attributes:o=>{const c=Bs.getState(o);return c&&c.activeHandle>-1?{class:"resize-cursor"}:{}},handleDOMEvents:{mousemove:(o,c)=>{M$(o,c,t,a)},mouseleave:o=>{A$(o)},mousedown:(o,c)=>{I$(o,c,e,n)}},decorations:o=>{const c=Bs.getState(o);if(c&&c.activeHandle>-1)return L$(o,c.activeHandle)},nodeViews:{}}});return i}var T$=class kh{constructor(e,n){this.activeHandle=e,this.dragging=n}apply(e){const n=this,s=e.getMeta(Bs);if(s&&s.setHandle!=null)return new kh(s.setHandle,!1);if(s&&s.setDragging!==void 0)return new kh(n.activeHandle,s.setDragging);if(n.activeHandle>-1&&e.docChanged){let a=e.mapping.map(n.activeHandle,-1);return zx(e.doc.resolve(a))||(a=-1),new kh(a,n.dragging)}return n}};function M$(t,e,n,s){if(!t.editable)return;const a=Bs.getState(t.state);if(a&&!a.dragging){const i=P$(e.target);let o=-1;if(i){const{left:c,right:u}=i.getBoundingClientRect();e.clientX-c<=n?o=dw(t,e,"left",n):u-e.clientX<=n&&(o=dw(t,e,"right",n))}if(o!=a.activeHandle){if(!s&&o!==-1){const c=t.state.doc.resolve(o),u=c.node(-1),h=gn.get(u),f=c.start(-1);if(h.colCount(c.pos-f)+c.nodeAfter.attrs.colspan-1==h.width-1)return}WC(t,o)}}}function A$(t){if(!t.editable)return;const e=Bs.getState(t.state);e&&e.activeHandle>-1&&!e.dragging&&WC(t,-1)}function I$(t,e,n,s){var a;if(!t.editable)return!1;const i=(a=t.dom.ownerDocument.defaultView)!==null&&a!==void 0?a:window,o=Bs.getState(t.state);if(!o||o.activeHandle==-1||o.dragging)return!1;const c=t.state.doc.nodeAt(o.activeHandle),u=R$(t,o.activeHandle,c.attrs);t.dispatch(t.state.tr.setMeta(Bs,{setDragging:{startX:e.clientX,startWidth:u}}));function h(m){i.removeEventListener("mouseup",h),i.removeEventListener("mousemove",f);const g=Bs.getState(t.state);g!=null&&g.dragging&&(O$(t,g.activeHandle,uw(g.dragging,m,n)),t.dispatch(t.state.tr.setMeta(Bs,{setDragging:null})))}function f(m){if(!m.which)return h(m);const g=Bs.getState(t.state);if(g&&g.dragging){const y=uw(g.dragging,m,n);hw(t,g.activeHandle,y,s)}}return hw(t,o.activeHandle,u,s),i.addEventListener("mouseup",h),i.addEventListener("mousemove",f),e.preventDefault(),!0}function R$(t,e,{colspan:n,colwidth:s}){const a=s&&s[s.length-1];if(a)return a;const i=t.domAtPos(e);let o=i.node.childNodes[i.offset].offsetWidth,c=n;if(s)for(let u=0;u{var e,n;const s=t.getAttribute("colwidth"),a=s?s.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",Ct(this.options.HTMLAttributes,t),0]}}),KC=Cn.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(s=>parseInt(s,10)):null}}}},tableRole:"header_cell",isolating:!0,parseHTML(){return[{tag:"th"}]},renderHTML({HTMLAttributes:t}){return["th",Ct(this.options.HTMLAttributes,t),0]}}),qC=Cn.create({name:"tableRow",addOptions(){return{HTMLAttributes:{}}},content:"(tableCell | tableHeader)*",tableRole:"row",parseHTML(){return[{tag:"tr"}]},renderHTML({HTMLAttributes:t}){return["tr",Ct(this.options.HTMLAttributes,t),0]}});function Bx(t,e){return e?["width",`${Math.max(e,t)}px`]:["min-width",`${t}px`]}function fw(t,e,n,s,a,i){var o;let c=0,u=!0,h=e.firstChild;const f=t.firstChild;if(f!==null)for(let g=0,y=0;g{const s=t.nodes[n];s.spec.tableRole&&(e[s.spec.tableRole]=s)}),t.cached.tableNodeTypes=e,e}function B$(t,e,n,s,a){const i=F$(t),o=[],c=[];for(let h=0;h{const{selection:e}=t.state;if(!V$(e))return!1;let n=0;const s=A2(e.ranges[0].$from,i=>i.type.name==="table");return s==null||s.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},H$="";function W$(t){return(t||"").replace(/\s+/g," ").trim()}function U$(t,e,n={}){var s;const a=(s=n.cellLineSeparator)!=null?s:H$;if(!t||!t.content||t.content.length===0)return"";const i=[];t.content.forEach(N=>{const w=[];N.content&&N.content.forEach(v=>{let k="";v.content&&Array.isArray(v.content)&&v.content.length>1?k=v.content.map(P=>e.renderChildren(P)).join(a):k=v.content?e.renderChildren(v.content):"";const C=W$(k),E=v.type==="tableHeader";w.push({text:C,isHeader:E})}),i.push(w)});const o=i.reduce((N,w)=>Math.max(N,w.length),0);if(o===0)return"";const c=new Array(o).fill(0);i.forEach(N=>{var w;for(let v=0;vc[v]&&(c[v]=C),c[v]<3&&(c[v]=3)}});const u=(N,w)=>N+" ".repeat(Math.max(0,w-N.length)),h=i[0],f=h.some(N=>N.isHeader);let m=` -`;const g=new Array(o).fill(0).map((N,w)=>f&&h[w]&&h[w].text||"");return m+=`| ${g.map((N,w)=>u(N,c[w])).join(" | ")} | -`,m+=`| ${c.map(N=>"-".repeat(Math.max(3,N))).join(" | ")} | -`,(f?i.slice(1):i).forEach(N=>{m+=`| ${new Array(o).fill(0).map((w,v)=>u(N[v]&&N[v].text||"",c[v])).join(" | ")} | -`}),m}var K$=U$,GC=Cn.create({name:"table",addOptions(){return{HTMLAttributes:{},resizable:!1,renderWrapper:!1,handleWidth:5,cellMinWidth:25,View:z$,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:s,tableMinWidth:a}=$$(t,this.options.cellMinWidth),i=e.style;function o(){return i||(s?`width: ${s}`:`min-width: ${a}`)}const c=["table",Ct(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 s=[];t.header.forEach(a=>{s.push(e.createNode("tableHeader",{},[{type:"paragraph",content:e.parseInline(a.tokens)}]))}),n.push(e.createNode("tableRow",{},s))}return t.rows&&t.rows.forEach(s=>{const a=[];s.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)=>K$(t,e),addCommands(){return{insertTable:({rows:t=3,cols:e=3,withHeaderRow:n=!0}={})=>({tr:s,dispatch:a,editor:i})=>{const o=B$(i.schema,t,e,n);if(a){const c=s.selection.from+1;s.replaceSelectionWith(o).scrollIntoView().setSelection(Ze.near(s.doc.resolve(c)))}return!0},addColumnBefore:()=>({state:t,dispatch:e})=>n$(t,e),addColumnAfter:()=>({state:t,dispatch:e})=>s$(t,e),deleteColumn:()=>({state:t,dispatch:e})=>a$(t,e),addRowBefore:()=>({state:t,dispatch:e})=>o$(t,e),addRowAfter:()=>({state:t,dispatch:e})=>l$(t,e),deleteRow:()=>({state:t,dispatch:e})=>d$(t,e),deleteTable:()=>({state:t,dispatch:e})=>x$(t,e),mergeCells:()=>({state:t,dispatch:e})=>nw(t,e),splitCell:()=>({state:t,dispatch:e})=>sw(t,e),toggleHeaderColumn:()=>({state:t,dispatch:e})=>Rd("column")(t,e),toggleHeaderRow:()=>({state:t,dispatch:e})=>Rd("row")(t,e),toggleHeaderCell:()=>({state:t,dispatch:e})=>m$(t,e),mergeOrSplit:()=>({state:t,dispatch:e})=>nw(t,e)?!0:sw(t,e),setCellAttribute:(t,e)=>({state:n,dispatch:s})=>f$(t,e)(n,s),goToNextCell:()=>({state:t,dispatch:e})=>aw(1)(t,e),goToPreviousCell:()=>({state:t,dispatch:e})=>aw(-1)(t,e),fixTables:()=>({state:t,dispatch:e})=>(e&&FC(t),!0),setCellSelection:t=>({tr:e,dispatch:n})=>{if(n){const s=Ht.create(e.doc,t.anchorCell,t.headCell);e.setSelection(s)}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:ph,"Mod-Backspace":ph,Delete:ph,"Mod-Delete":ph}},addProseMirrorPlugins(){return[...this.options.resizable&&this.editor.isEditable?[E$({handleWidth:this.options.handleWidth,cellMinWidth:this.options.cellMinWidth,defaultCellMinWidth:this.options.cellMinWidth,View:this.options.View,lastColumnResizable:this.options.lastColumnResizable})]:[],_$({allowTableNodeSelection:this.options.allowTableNodeSelection})]},extendNodeSchema(t){const e={name:t.name,options:t.options,storage:t.storage};return{tableRole:jt(qe(t,"tableRole",e))}}});xn.create({name:"tableKit",addExtensions(){const t=[];return this.options.table!==!1&&t.push(GC.configure(this.options.table)),this.options.tableCell!==!1&&t.push(UC.configure(this.options.tableCell)),this.options.tableHeader!==!1&&t.push(KC.configure(this.options.tableHeader)),this.options.tableRow!==!1&&t.push(qC.configure(this.options.tableRow)),t}});function q$(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 mw(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(` -`),s=[];for(const a of n){const i=a.trim();i&&(/^<(?:h[1-6]|blockquote|hr|li|ul|ol|table|img)/.test(i)?s.push(i):s.push(`

    ${i}

    `))}return s.join("")}const G$=Cn.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",Ct(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 gw(t){const e=document.createElement("div");return e.textContent=t,e.innerHTML}const J$=t=>({items:({query:e})=>t.filter(n=>n.name.toLowerCase().includes(e.toLowerCase())||n.id.includes(e)).slice(0,8),render:()=>{let e=null,n=0,s=[],a=null;const i=()=>{e&&(e.innerHTML=s.map((o,c)=>`
    - @${gw(o.name)} - ${gw(o.label||o.id)} -
    `).join(""),e.querySelectorAll(".mention-item").forEach(o=>{o.addEventListener("click",()=>{const c=parseInt(o.getAttribute("data-index")||"0");a&&s[c]&&a({id:s[c].id,label:s[c].name})})}))};return{onStart:o=>{if(e=document.createElement("div"),e.className="mention-popup",document.body.appendChild(e),s=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(s=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(s.length-1,n+1),i(),!0):o.event.key==="Enter"?(a&&s[n]&&a({id:s[n].id,label:s[n].name}),!0):o.event.key==="Escape"?(e==null||e.remove(),e=null,!0):!1,onExit:()=>{e==null||e.remove(),e=null}}}});function Y$(t){var s;const e=[],n=(s=t.clipboardData)==null?void 0:s.items;if(!n)return e;for(let a=0;a{const u=b.useRef(null),h=b.useRef(null),[f,m]=b.useState(""),[g,y]=b.useState(!1),N=b.useRef(mw(t)),w=b.useCallback((M,P)=>{var O;const $=h.current;if(!$||!n)return!1;const D=Y$(P);if(D.length>0)return P.preventDefault(),(async()=>{for(const _ of D)try{const se=await n(_);se&&$.chain().focus().setImage({src:se}).run()}catch(se){console.error("粘贴图片上传失败",se)}})(),!0;const R=(O=P.clipboardData)==null?void 0:O.getData("text/html");if(R&&/data:image\/[^;"']+;base64,/i.test(R)){P.preventDefault();const{from:_,to:se}=$.state.selection;return(async()=>{try{const ne=await Z$(R,n);$.chain().focus().insertContentAt({from:_,to:se},ne).run()}catch(ne){console.error("粘贴 HTML 内 base64 转换失败",ne)}})(),!0}return!1},[n]),v=H_({extensions:[Az.configure({link:{openOnClick:!1,HTMLAttributes:{class:"rich-link"}}}),Pz.configure({inline:!0,allowBase64:!0}),$z.configure({HTMLAttributes:{class:"mention-tag"},suggestion:J$(s)}),G$,Fz.configure({placeholder:i}),GC.configure({resizable:!0}),qC,UC,KC],content:N.current,onUpdate:({editor:M})=>{e(M.getHTML())},editorProps:{attributes:{class:"rich-editor-content"},handlePaste:w}});b.useEffect(()=>{h.current=v??null},[v]),b.useImperativeHandle(c,()=>({getHTML:()=>(v==null?void 0:v.getHTML())||"",getMarkdown:()=>q$((v==null?void 0:v.getHTML())||"")})),b.useEffect(()=>{if(v&&t!==v.getHTML()){const M=mw(t);M!==v.getHTML()&&v.commands.setContent(M)}},[t]);const k=b.useCallback(async M=>{var $;const P=($=M.target.files)==null?void 0:$[0];if(!(!P||!v)){if(n){const D=await n(P);D&&v.chain().focus().setImage({src:D}).run()}else{const D=new FileReader;D.onload=()=>{typeof D.result=="string"&&v.chain().focus().setImage({src:D.result}).run()},D.readAsDataURL(P)}M.target.value=""}},[v,n]),C=b.useCallback(M=>{v&&v.chain().focus().insertContent({type:"linkTag",attrs:{label:M.label,url:M.url||"",tagType:M.type||"url",tagId:M.id||"",pagePath:M.pagePath||"",appId:M.appId||"",mpKey:M.type==="miniprogram"&&M.appId||""}}).run()},[v]),E=b.useCallback(()=>{!v||!f||(v.chain().focus().setLink({href:f}).run(),m(""),y(!1))},[v,f]);return v?r.jsxs("div",{className:`rich-editor-wrapper ${o||""}`,children:[r.jsxs("div",{className:"rich-editor-toolbar",children:[r.jsxs("div",{className:"toolbar-group",children:[r.jsx("button",{onClick:()=>v.chain().focus().toggleBold().run(),className:v.isActive("bold")?"is-active":"",type:"button",children:r.jsx(VT,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleItalic().run(),className:v.isActive("italic")?"is-active":"",type:"button",children:r.jsx(FM,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleStrike().run(),className:v.isActive("strike")?"is-active":"",type:"button",children:r.jsx(LA,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleCode().run(),className:v.isActive("code")?"is-active":"",type:"button",children:r.jsx(lM,{className:"w-4 h-4"})})]}),r.jsx("div",{className:"toolbar-divider"}),r.jsxs("div",{className:"toolbar-group",children:[r.jsx("button",{onClick:()=>v.chain().focus().toggleHeading({level:1}).run(),className:v.isActive("heading",{level:1})?"is-active":"",type:"button",children:r.jsx(AM,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleHeading({level:2}).run(),className:v.isActive("heading",{level:2})?"is-active":"",type:"button",children:r.jsx(RM,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleHeading({level:3}).run(),className:v.isActive("heading",{level:3})?"is-active":"",type:"button",children:r.jsx(OM,{className:"w-4 h-4"})})]}),r.jsx("div",{className:"toolbar-divider"}),r.jsxs("div",{className:"toolbar-group",children:[r.jsx("button",{onClick:()=>v.chain().focus().toggleBulletList().run(),className:v.isActive("bulletList")?"is-active":"",type:"button",children:r.jsx(JM,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleOrderedList().run(),className:v.isActive("orderedList")?"is-active":"",type:"button",children:r.jsx(qM,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleBlockquote().run(),className:v.isActive("blockquote")?"is-active":"",type:"button",children:r.jsx(NA,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().setHorizontalRule().run(),type:"button",children:r.jsx(iA,{className:"w-4 h-4"})})]}),r.jsx("div",{className:"toolbar-divider"}),r.jsxs("div",{className:"toolbar-group",children:[r.jsx("input",{ref:u,type:"file",accept:"image/*",onChange:k,className:"hidden"}),r.jsx("button",{onClick:()=>{var M;return(M=u.current)==null?void 0:M.click()},type:"button",children:r.jsx(lj,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>y(!g),className:v.isActive("link")?"is-active":"",type:"button",children:r.jsx(qg,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().insertTable({rows:3,cols:3,withHeaderRow:!0}).run(),type:"button",children:r.jsx(zA,{className:"w-4 h-4"})})]}),r.jsx("div",{className:"toolbar-divider"}),r.jsxs("div",{className:"toolbar-group",children:[r.jsx("button",{onClick:()=>v.chain().focus().undo().run(),disabled:!v.can().undo(),type:"button",children:r.jsx(UA,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().redo().run(),disabled:!v.can().redo(),type:"button",children:r.jsx(jA,{className:"w-4 h-4"})})]}),a.length>0&&r.jsxs(r.Fragment,{children:[r.jsx("div",{className:"toolbar-divider"}),r.jsx("div",{className:"toolbar-group",children:r.jsxs("select",{className:"link-tag-select",onChange:M=>{const P=a.find($=>$.id===M.target.value);P&&C(P),M.target.value=""},defaultValue:"",children:[r.jsx("option",{value:"",disabled:!0,children:"# 插入链接标签"}),a.map(M=>r.jsx("option",{value:M.id,children:M.label},M.id))]})})]})]}),g&&r.jsxs("div",{className:"link-input-bar",children:[r.jsx("input",{type:"url",placeholder:"输入链接地址...",value:f,onChange:M=>m(M.target.value),onKeyDown:M=>M.key==="Enter"&&E(),className:"link-input"}),r.jsx("button",{onClick:E,className:"link-confirm",type:"button",children:"确定"}),r.jsx("button",{onClick:()=>{v.chain().focus().unsetLink().run(),y(!1)},className:"link-remove",type:"button",children:"移除"})]}),r.jsx(aC,{editor:v})]}):null});Vx.displayName="RichEditor";const eF=["top","right","bottom","left"],Ri=Math.min,$s=Math.max,kf=Math.round,mh=Math.floor,Kr=t=>({x:t,y:t}),tF={left:"right",right:"left",bottom:"top",top:"bottom"},nF={start:"end",end:"start"};function Hx(t,e,n){return $s(t,Ri(e,n))}function Ta(t,e){return typeof t=="function"?t(e):t}function Ma(t){return t.split("-")[0]}function ic(t){return t.split("-")[1]}function cy(t){return t==="x"?"y":"x"}function dy(t){return t==="y"?"height":"width"}const sF=new Set(["top","bottom"]);function Ur(t){return sF.has(Ma(t))?"y":"x"}function uy(t){return cy(Ur(t))}function rF(t,e,n){n===void 0&&(n=!1);const s=ic(t),a=uy(t),i=dy(a);let o=a==="x"?s===(n?"end":"start")?"right":"left":s==="start"?"bottom":"top";return e.reference[i]>e.floating[i]&&(o=Sf(o)),[o,Sf(o)]}function aF(t){const e=Sf(t);return[Wx(t),e,Wx(e)]}function Wx(t){return t.replace(/start|end/g,e=>nF[e])}const xw=["left","right"],yw=["right","left"],iF=["top","bottom"],oF=["bottom","top"];function lF(t,e,n){switch(t){case"top":case"bottom":return n?e?yw:xw:e?xw:yw;case"left":case"right":return e?iF:oF;default:return[]}}function cF(t,e,n,s){const a=ic(t);let i=lF(Ma(t),n==="start",s);return a&&(i=i.map(o=>o+"-"+a),e&&(i=i.concat(i.map(Wx)))),i}function Sf(t){return t.replace(/left|right|bottom|top/g,e=>tF[e])}function dF(t){return{top:0,right:0,bottom:0,left:0,...t}}function JC(t){return typeof t!="number"?dF(t):{top:t,right:t,bottom:t,left:t}}function Cf(t){const{x:e,y:n,width:s,height:a}=t;return{width:s,height:a,top:n,left:e,right:e+s,bottom:n+a,x:e,y:n}}function bw(t,e,n){let{reference:s,floating:a}=t;const i=Ur(e),o=uy(e),c=dy(o),u=Ma(e),h=i==="y",f=s.x+s.width/2-a.width/2,m=s.y+s.height/2-a.height/2,g=s[c]/2-a[c]/2;let y;switch(u){case"top":y={x:f,y:s.y-a.height};break;case"bottom":y={x:f,y:s.y+s.height};break;case"right":y={x:s.x+s.width,y:m};break;case"left":y={x:s.x-a.width,y:m};break;default:y={x:s.x,y:s.y}}switch(ic(e)){case"start":y[o]-=g*(n&&h?-1:1);break;case"end":y[o]+=g*(n&&h?-1:1);break}return y}async function uF(t,e){var n;e===void 0&&(e={});const{x:s,y:a,platform:i,rects:o,elements:c,strategy:u}=t,{boundary:h="clippingAncestors",rootBoundary:f="viewport",elementContext:m="floating",altBoundary:g=!1,padding:y=0}=Ta(e,t),N=JC(y),v=c[g?m==="floating"?"reference":"floating":m],k=Cf(await i.getClippingRect({element:(n=await(i.isElement==null?void 0:i.isElement(v)))==null||n?v:v.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(c.floating)),boundary:h,rootBoundary:f,strategy:u})),C=m==="floating"?{x:s,y:a,width:o.floating.width,height:o.floating.height}:o.reference,E=await(i.getOffsetParent==null?void 0:i.getOffsetParent(c.floating)),M=await(i.isElement==null?void 0:i.isElement(E))?await(i.getScale==null?void 0:i.getScale(E))||{x:1,y:1}:{x:1,y:1},P=Cf(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:c,rect:C,offsetParent:E,strategy:u}):C);return{top:(k.top-P.top+N.top)/M.y,bottom:(P.bottom-k.bottom+N.bottom)/M.y,left:(k.left-P.left+N.left)/M.x,right:(P.right-k.right+N.right)/M.x}}const hF=async(t,e,n)=>{const{placement:s="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}=bw(h,s,u),g=s,y={},N=0;for(let v=0;v({name:"arrow",options:t,async fn(e){const{x:n,y:s,placement:a,rects:i,platform:o,elements:c,middlewareData:u}=e,{element:h,padding:f=0}=Ta(t,e)||{};if(h==null)return{};const m=JC(f),g={x:n,y:s},y=uy(a),N=dy(y),w=await o.getDimensions(h),v=y==="y",k=v?"top":"left",C=v?"bottom":"right",E=v?"clientHeight":"clientWidth",M=i.reference[N]+i.reference[y]-g[y]-i.floating[N],P=g[y]-i.reference[y],$=await(o.getOffsetParent==null?void 0:o.getOffsetParent(h));let D=$?$[E]:0;(!D||!await(o.isElement==null?void 0:o.isElement($)))&&(D=c.floating[E]||i.floating[N]);const R=M/2-P/2,O=D/2-w[N]/2-1,_=Ri(m[k],O),se=Ri(m[C],O),ne=_,pe=D-w[N]-se,ge=D/2-w[N]/2+R,z=Hx(ne,ge,pe),K=!u.arrow&&ic(a)!=null&&ge!==z&&i.reference[N]/2-(gege<=0)){var se,ne;const ge=(((se=i.flip)==null?void 0:se.index)||0)+1,z=D[ge];if(z&&(!(m==="alignment"?C!==Ur(z):!1)||_.every(I=>Ur(I.placement)===C?I.overflows[0]>0:!0)))return{data:{index:ge,overflows:_},reset:{placement:z}};let K=(ne=_.filter(U=>U.overflows[0]<=0).sort((U,I)=>U.overflows[1]-I.overflows[1])[0])==null?void 0:ne.placement;if(!K)switch(y){case"bestFit":{var pe;const U=(pe=_.filter(I=>{if($){const q=Ur(I.placement);return q===C||q==="y"}return!0}).map(I=>[I.placement,I.overflows.filter(q=>q>0).reduce((q,F)=>q+F,0)]).sort((I,q)=>I[1]-q[1])[0])==null?void 0:pe[0];U&&(K=U);break}case"initialPlacement":K=c;break}if(a!==K)return{reset:{placement:K}}}return{}}}};function vw(t,e){return{top:t.top-e.height,right:t.right-e.width,bottom:t.bottom-e.height,left:t.left-e.width}}function Nw(t){return eF.some(e=>t[e]>=0)}const mF=function(t){return t===void 0&&(t={}),{name:"hide",options:t,async fn(e){const{rects:n,platform:s}=e,{strategy:a="referenceHidden",...i}=Ta(t,e);switch(a){case"referenceHidden":{const o=await s.detectOverflow(e,{...i,elementContext:"reference"}),c=vw(o,n.reference);return{data:{referenceHiddenOffsets:c,referenceHidden:Nw(c)}}}case"escaped":{const o=await s.detectOverflow(e,{...i,altBoundary:!0}),c=vw(o,n.floating);return{data:{escapedOffsets:c,escaped:Nw(c)}}}default:return{}}}}},YC=new Set(["left","top"]);async function gF(t,e){const{placement:n,platform:s,elements:a}=t,i=await(s.isRTL==null?void 0:s.isRTL(a.floating)),o=Ma(n),c=ic(n),u=Ur(n)==="y",h=YC.has(o)?-1:1,f=i&&u?-1:1,m=Ta(e,t);let{mainAxis:g,crossAxis:y,alignmentAxis:N}=typeof m=="number"?{mainAxis:m,crossAxis:0,alignmentAxis:null}:{mainAxis:m.mainAxis||0,crossAxis:m.crossAxis||0,alignmentAxis:m.alignmentAxis};return c&&typeof N=="number"&&(y=c==="end"?N*-1:N),u?{x:y*f,y:g*h}:{x:g*h,y:y*f}}const xF=function(t){return t===void 0&&(t=0),{name:"offset",options:t,async fn(e){var n,s;const{x:a,y:i,placement:o,middlewareData:c}=e,u=await gF(e,t);return o===((n=c.offset)==null?void 0:n.placement)&&(s=c.arrow)!=null&&s.alignmentOffset?{}:{x:a+u.x,y:i+u.y,data:{...u,placement:o}}}}},yF=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(e){const{x:n,y:s,placement:a,platform:i}=e,{mainAxis:o=!0,crossAxis:c=!1,limiter:u={fn:k=>{let{x:C,y:E}=k;return{x:C,y:E}}},...h}=Ta(t,e),f={x:n,y:s},m=await i.detectOverflow(e,h),g=Ur(Ma(a)),y=cy(g);let N=f[y],w=f[g];if(o){const k=y==="y"?"top":"left",C=y==="y"?"bottom":"right",E=N+m[k],M=N-m[C];N=Hx(E,N,M)}if(c){const k=g==="y"?"top":"left",C=g==="y"?"bottom":"right",E=w+m[k],M=w-m[C];w=Hx(E,w,M)}const v=u.fn({...e,[y]:N,[g]:w});return{...v,data:{x:v.x-n,y:v.y-s,enabled:{[y]:o,[g]:c}}}}}},bF=function(t){return t===void 0&&(t={}),{options:t,fn(e){const{x:n,y:s,placement:a,rects:i,middlewareData:o}=e,{offset:c=0,mainAxis:u=!0,crossAxis:h=!0}=Ta(t,e),f={x:n,y:s},m=Ur(a),g=cy(m);let y=f[g],N=f[m];const w=Ta(c,e),v=typeof w=="number"?{mainAxis:w,crossAxis:0}:{mainAxis:0,crossAxis:0,...w};if(u){const E=g==="y"?"height":"width",M=i.reference[g]-i.floating[E]+v.mainAxis,P=i.reference[g]+i.reference[E]-v.mainAxis;yP&&(y=P)}if(h){var k,C;const E=g==="y"?"width":"height",M=YC.has(Ma(a)),P=i.reference[m]-i.floating[E]+(M&&((k=o.offset)==null?void 0:k[m])||0)+(M?0:v.crossAxis),$=i.reference[m]+i.reference[E]+(M?0:((C=o.offset)==null?void 0:C[m])||0)-(M?v.crossAxis:0);N$&&(N=$)}return{[g]:y,[m]:N}}}},vF=function(t){return t===void 0&&(t={}),{name:"size",options:t,async fn(e){var n,s;const{placement:a,rects:i,platform:o,elements:c}=e,{apply:u=()=>{},...h}=Ta(t,e),f=await o.detectOverflow(e,h),m=Ma(a),g=ic(a),y=Ur(a)==="y",{width:N,height:w}=i.floating;let v,k;m==="top"||m==="bottom"?(v=m,k=g===(await(o.isRTL==null?void 0:o.isRTL(c.floating))?"start":"end")?"left":"right"):(k=m,v=g==="end"?"top":"bottom");const C=w-f.top-f.bottom,E=N-f.left-f.right,M=Ri(w-f[v],C),P=Ri(N-f[k],E),$=!e.middlewareData.shift;let D=M,R=P;if((n=e.middlewareData.shift)!=null&&n.enabled.x&&(R=E),(s=e.middlewareData.shift)!=null&&s.enabled.y&&(D=C),$&&!g){const _=$s(f.left,0),se=$s(f.right,0),ne=$s(f.top,0),pe=$s(f.bottom,0);y?R=N-2*(_!==0||se!==0?_+se:$s(f.left,f.right)):D=w-2*(ne!==0||pe!==0?ne+pe:$s(f.top,f.bottom))}await u({...e,availableWidth:R,availableHeight:D});const O=await o.getDimensions(c.floating);return N!==O.width||w!==O.height?{reset:{rects:!0}}:{}}}};function np(){return typeof window<"u"}function oc(t){return QC(t)?(t.nodeName||"").toLowerCase():"#document"}function Us(t){var e;return(t==null||(e=t.ownerDocument)==null?void 0:e.defaultView)||window}function Xr(t){var e;return(e=(QC(t)?t.ownerDocument:t.document)||window.document)==null?void 0:e.documentElement}function QC(t){return np()?t instanceof Node||t instanceof Us(t).Node:!1}function Sr(t){return np()?t instanceof Element||t instanceof Us(t).Element:!1}function Yr(t){return np()?t instanceof HTMLElement||t instanceof Us(t).HTMLElement:!1}function ww(t){return!np()||typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof Us(t).ShadowRoot}const NF=new Set(["inline","contents"]);function Hd(t){const{overflow:e,overflowX:n,overflowY:s,display:a}=Cr(t);return/auto|scroll|overlay|hidden|clip/.test(e+s+n)&&!NF.has(a)}const wF=new Set(["table","td","th"]);function jF(t){return wF.has(oc(t))}const kF=[":popover-open",":modal"];function sp(t){return kF.some(e=>{try{return t.matches(e)}catch{return!1}})}const SF=["transform","translate","scale","rotate","perspective"],CF=["transform","translate","scale","rotate","perspective","filter"],EF=["paint","layout","strict","content"];function hy(t){const e=fy(),n=Sr(t)?Cr(t):t;return SF.some(s=>n[s]?n[s]!=="none":!1)||(n.containerType?n.containerType!=="normal":!1)||!e&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!e&&(n.filter?n.filter!=="none":!1)||CF.some(s=>(n.willChange||"").includes(s))||EF.some(s=>(n.contain||"").includes(s))}function TF(t){let e=Pi(t);for(;Yr(e)&&!Ql(e);){if(hy(e))return e;if(sp(e))return null;e=Pi(e)}return null}function fy(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const MF=new Set(["html","body","#document"]);function Ql(t){return MF.has(oc(t))}function Cr(t){return Us(t).getComputedStyle(t)}function rp(t){return Sr(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.scrollX,scrollTop:t.scrollY}}function Pi(t){if(oc(t)==="html")return t;const e=t.assignedSlot||t.parentNode||ww(t)&&t.host||Xr(t);return ww(e)?e.host:e}function XC(t){const e=Pi(t);return Ql(e)?t.ownerDocument?t.ownerDocument.body:t.body:Yr(e)&&Hd(e)?e:XC(e)}function Pd(t,e,n){var s;e===void 0&&(e=[]),n===void 0&&(n=!0);const a=XC(t),i=a===((s=t.ownerDocument)==null?void 0:s.body),o=Us(a);if(i){const c=Ux(o);return e.concat(o,o.visualViewport||[],Hd(a)?a:[],c&&n?Pd(c):[])}return e.concat(a,Pd(a,[],n))}function Ux(t){return t.parent&&Object.getPrototypeOf(t.parent)?t.frameElement:null}function ZC(t){const e=Cr(t);let n=parseFloat(e.width)||0,s=parseFloat(e.height)||0;const a=Yr(t),i=a?t.offsetWidth:n,o=a?t.offsetHeight:s,c=kf(n)!==i||kf(s)!==o;return c&&(n=i,s=o),{width:n,height:s,$:c}}function py(t){return Sr(t)?t:t.contextElement}function Vl(t){const e=py(t);if(!Yr(e))return Kr(1);const n=e.getBoundingClientRect(),{width:s,height:a,$:i}=ZC(e);let o=(i?kf(n.width):n.width)/s,c=(i?kf(n.height):n.height)/a;return(!o||!Number.isFinite(o))&&(o=1),(!c||!Number.isFinite(c))&&(c=1),{x:o,y:c}}const AF=Kr(0);function e4(t){const e=Us(t);return!fy()||!e.visualViewport?AF:{x:e.visualViewport.offsetLeft,y:e.visualViewport.offsetTop}}function IF(t,e,n){return e===void 0&&(e=!1),!n||e&&n!==Us(t)?!1:e}function Fo(t,e,n,s){e===void 0&&(e=!1),n===void 0&&(n=!1);const a=t.getBoundingClientRect(),i=py(t);let o=Kr(1);e&&(s?Sr(s)&&(o=Vl(s)):o=Vl(t));const c=IF(i,n,s)?e4(i):Kr(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 g=Us(i),y=s&&Sr(s)?Us(s):s;let N=g,w=Ux(N);for(;w&&s&&y!==N;){const v=Vl(w),k=w.getBoundingClientRect(),C=Cr(w),E=k.left+(w.clientLeft+parseFloat(C.paddingLeft))*v.x,M=k.top+(w.clientTop+parseFloat(C.paddingTop))*v.y;u*=v.x,h*=v.y,f*=v.x,m*=v.y,u+=E,h+=M,N=Us(w),w=Ux(N)}}return Cf({width:f,height:m,x:u,y:h})}function ap(t,e){const n=rp(t).scrollLeft;return e?e.left+n:Fo(Xr(t)).left+n}function t4(t,e){const n=t.getBoundingClientRect(),s=n.left+e.scrollLeft-ap(t,n),a=n.top+e.scrollTop;return{x:s,y:a}}function RF(t){let{elements:e,rect:n,offsetParent:s,strategy:a}=t;const i=a==="fixed",o=Xr(s),c=e?sp(e.floating):!1;if(s===o||c&&i)return n;let u={scrollLeft:0,scrollTop:0},h=Kr(1);const f=Kr(0),m=Yr(s);if((m||!m&&!i)&&((oc(s)!=="body"||Hd(o))&&(u=rp(s)),Yr(s))){const y=Fo(s);h=Vl(s),f.x=y.x+s.clientLeft,f.y=y.y+s.clientTop}const g=o&&!m&&!i?t4(o,u):Kr(0);return{width:n.width*h.x,height:n.height*h.y,x:n.x*h.x-u.scrollLeft*h.x+f.x+g.x,y:n.y*h.y-u.scrollTop*h.y+f.y+g.y}}function PF(t){return Array.from(t.getClientRects())}function OF(t){const e=Xr(t),n=rp(t),s=t.ownerDocument.body,a=$s(e.scrollWidth,e.clientWidth,s.scrollWidth,s.clientWidth),i=$s(e.scrollHeight,e.clientHeight,s.scrollHeight,s.clientHeight);let o=-n.scrollLeft+ap(t);const c=-n.scrollTop;return Cr(s).direction==="rtl"&&(o+=$s(e.clientWidth,s.clientWidth)-a),{width:a,height:i,x:o,y:c}}const jw=25;function DF(t,e){const n=Us(t),s=Xr(t),a=n.visualViewport;let i=s.clientWidth,o=s.clientHeight,c=0,u=0;if(a){i=a.width,o=a.height;const f=fy();(!f||f&&e==="fixed")&&(c=a.offsetLeft,u=a.offsetTop)}const h=ap(s);if(h<=0){const f=s.ownerDocument,m=f.body,g=getComputedStyle(m),y=f.compatMode==="CSS1Compat"&&parseFloat(g.marginLeft)+parseFloat(g.marginRight)||0,N=Math.abs(s.clientWidth-m.clientWidth-y);N<=jw&&(i-=N)}else h<=jw&&(i+=h);return{width:i,height:o,x:c,y:u}}const LF=new Set(["absolute","fixed"]);function _F(t,e){const n=Fo(t,!0,e==="fixed"),s=n.top+t.clientTop,a=n.left+t.clientLeft,i=Yr(t)?Vl(t):Kr(1),o=t.clientWidth*i.x,c=t.clientHeight*i.y,u=a*i.x,h=s*i.y;return{width:o,height:c,x:u,y:h}}function kw(t,e,n){let s;if(e==="viewport")s=DF(t,n);else if(e==="document")s=OF(Xr(t));else if(Sr(e))s=_F(e,n);else{const a=e4(t);s={x:e.x-a.x,y:e.y-a.y,width:e.width,height:e.height}}return Cf(s)}function n4(t,e){const n=Pi(t);return n===e||!Sr(n)||Ql(n)?!1:Cr(n).position==="fixed"||n4(n,e)}function zF(t,e){const n=e.get(t);if(n)return n;let s=Pd(t,[],!1).filter(c=>Sr(c)&&oc(c)!=="body"),a=null;const i=Cr(t).position==="fixed";let o=i?Pi(t):t;for(;Sr(o)&&!Ql(o);){const c=Cr(o),u=hy(o);!u&&c.position==="fixed"&&(a=null),(i?!u&&!a:!u&&c.position==="static"&&!!a&&LF.has(a.position)||Hd(o)&&!u&&n4(t,o))?s=s.filter(f=>f!==o):a=c,o=Pi(o)}return e.set(t,s),s}function $F(t){let{element:e,boundary:n,rootBoundary:s,strategy:a}=t;const o=[...n==="clippingAncestors"?sp(e)?[]:zF(e,this._c):[].concat(n),s],c=o[0],u=o.reduce((h,f)=>{const m=kw(e,f,a);return h.top=$s(m.top,h.top),h.right=Ri(m.right,h.right),h.bottom=Ri(m.bottom,h.bottom),h.left=$s(m.left,h.left),h},kw(e,c,a));return{width:u.right-u.left,height:u.bottom-u.top,x:u.left,y:u.top}}function FF(t){const{width:e,height:n}=ZC(t);return{width:e,height:n}}function BF(t,e,n){const s=Yr(e),a=Xr(e),i=n==="fixed",o=Fo(t,!0,i,e);let c={scrollLeft:0,scrollTop:0};const u=Kr(0);function h(){u.x=ap(a)}if(s||!s&&!i)if((oc(e)!=="body"||Hd(a))&&(c=rp(e)),s){const y=Fo(e,!0,i,e);u.x=y.x+e.clientLeft,u.y=y.y+e.clientTop}else a&&h();i&&!s&&a&&h();const f=a&&!s&&!i?t4(a,c):Kr(0),m=o.left+c.scrollLeft-u.x-f.x,g=o.top+c.scrollTop-u.y-f.y;return{x:m,y:g,width:o.width,height:o.height}}function Pg(t){return Cr(t).position==="static"}function Sw(t,e){if(!Yr(t)||Cr(t).position==="fixed")return null;if(e)return e(t);let n=t.offsetParent;return Xr(t)===n&&(n=n.ownerDocument.body),n}function s4(t,e){const n=Us(t);if(sp(t))return n;if(!Yr(t)){let a=Pi(t);for(;a&&!Ql(a);){if(Sr(a)&&!Pg(a))return a;a=Pi(a)}return n}let s=Sw(t,e);for(;s&&jF(s)&&Pg(s);)s=Sw(s,e);return s&&Ql(s)&&Pg(s)&&!hy(s)?n:s||TF(t)||n}const VF=async function(t){const e=this.getOffsetParent||s4,n=this.getDimensions,s=await n(t.floating);return{reference:BF(t.reference,await e(t.floating),t.strategy),floating:{x:0,y:0,width:s.width,height:s.height}}};function HF(t){return Cr(t).direction==="rtl"}const WF={convertOffsetParentRelativeRectToViewportRelativeRect:RF,getDocumentElement:Xr,getClippingRect:$F,getOffsetParent:s4,getElementRects:VF,getClientRects:PF,getDimensions:FF,getScale:Vl,isElement:Sr,isRTL:HF};function r4(t,e){return t.x===e.x&&t.y===e.y&&t.width===e.width&&t.height===e.height}function UF(t,e){let n=null,s;const a=Xr(t);function i(){var c;clearTimeout(s),(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:g,height:y}=h;if(c||e(),!g||!y)return;const N=mh(m),w=mh(a.clientWidth-(f+g)),v=mh(a.clientHeight-(m+y)),k=mh(f),E={rootMargin:-N+"px "+-w+"px "+-v+"px "+-k+"px",threshold:$s(0,Ri(1,u))||1};let M=!0;function P($){const D=$[0].intersectionRatio;if(D!==u){if(!M)return o();D?o(!1,D):s=setTimeout(()=>{o(!1,1e-7)},1e3)}D===1&&!r4(h,t.getBoundingClientRect())&&o(),M=!1}try{n=new IntersectionObserver(P,{...E,root:a.ownerDocument})}catch{n=new IntersectionObserver(P,E)}n.observe(t)}return o(!0),i}function KF(t,e,n,s){s===void 0&&(s={});const{ancestorScroll:a=!0,ancestorResize:i=!0,elementResize:o=typeof ResizeObserver=="function",layoutShift:c=typeof IntersectionObserver=="function",animationFrame:u=!1}=s,h=py(t),f=a||i?[...h?Pd(h):[],...Pd(e)]:[];f.forEach(k=>{a&&k.addEventListener("scroll",n,{passive:!0}),i&&k.addEventListener("resize",n)});const m=h&&c?UF(h,n):null;let g=-1,y=null;o&&(y=new ResizeObserver(k=>{let[C]=k;C&&C.target===h&&y&&(y.unobserve(e),cancelAnimationFrame(g),g=requestAnimationFrame(()=>{var E;(E=y)==null||E.observe(e)})),n()}),h&&!u&&y.observe(h),y.observe(e));let N,w=u?Fo(t):null;u&&v();function v(){const k=Fo(t);w&&!r4(w,k)&&n(),w=k,N=requestAnimationFrame(v)}return n(),()=>{var k;f.forEach(C=>{a&&C.removeEventListener("scroll",n),i&&C.removeEventListener("resize",n)}),m==null||m(),(k=y)==null||k.disconnect(),y=null,u&&cancelAnimationFrame(N)}}const qF=xF,GF=yF,JF=pF,YF=vF,QF=mF,Cw=fF,XF=bF,ZF=(t,e,n)=>{const s=new Map,a={platform:WF,...n},i={...a.platform,_c:s};return hF(t,e,{...a,platform:i})};var eB=typeof document<"u",tB=function(){},Sh=eB?b.useLayoutEffect:tB;function Ef(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,s,a;if(t&&e&&typeof t=="object"){if(Array.isArray(t)){if(n=t.length,n!==e.length)return!1;for(s=n;s--!==0;)if(!Ef(t[s],e[s]))return!1;return!0}if(a=Object.keys(t),n=a.length,n!==Object.keys(e).length)return!1;for(s=n;s--!==0;)if(!{}.hasOwnProperty.call(e,a[s]))return!1;for(s=n;s--!==0;){const i=a[s];if(!(i==="_owner"&&t.$$typeof)&&!Ef(t[i],e[i]))return!1}return!0}return t!==t&&e!==e}function a4(t){return typeof window>"u"?1:(t.ownerDocument.defaultView||window).devicePixelRatio||1}function Ew(t,e){const n=a4(t);return Math.round(e*n)/n}function Og(t){const e=b.useRef(t);return Sh(()=>{e.current=t}),e}function nB(t){t===void 0&&(t={});const{placement:e="bottom",strategy:n="absolute",middleware:s=[],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}),[g,y]=b.useState(s);Ef(g,s)||y(s);const[N,w]=b.useState(null),[v,k]=b.useState(null),C=b.useCallback(I=>{I!==$.current&&($.current=I,w(I))},[]),E=b.useCallback(I=>{I!==D.current&&(D.current=I,k(I))},[]),M=i||N,P=o||v,$=b.useRef(null),D=b.useRef(null),R=b.useRef(f),O=u!=null,_=Og(u),se=Og(a),ne=Og(h),pe=b.useCallback(()=>{if(!$.current||!D.current)return;const I={placement:e,strategy:n,middleware:g};se.current&&(I.platform=se.current),ZF($.current,D.current,I).then(q=>{const F={...q,isPositioned:ne.current!==!1};ge.current&&!Ef(R.current,F)&&(R.current=F,Dd.flushSync(()=>{m(F)}))})},[g,e,n,se,ne]);Sh(()=>{h===!1&&R.current.isPositioned&&(R.current.isPositioned=!1,m(I=>({...I,isPositioned:!1})))},[h]);const ge=b.useRef(!1);Sh(()=>(ge.current=!0,()=>{ge.current=!1}),[]),Sh(()=>{if(M&&($.current=M),P&&(D.current=P),M&&P){if(_.current)return _.current(M,P,pe);pe()}},[M,P,pe,_,O]);const z=b.useMemo(()=>({reference:$,floating:D,setReference:C,setFloating:E}),[C,E]),K=b.useMemo(()=>({reference:M,floating:P}),[M,P]),U=b.useMemo(()=>{const I={position:n,left:0,top:0};if(!K.floating)return I;const q=Ew(K.floating,f.x),F=Ew(K.floating,f.y);return c?{...I,transform:"translate("+q+"px, "+F+"px)",...a4(K.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:q,top:F}},[n,c,K.floating,f.x,f.y]);return b.useMemo(()=>({...f,update:pe,refs:z,elements:K,floatingStyles:U}),[f,pe,z,K,U])}const sB=t=>{function e(n){return{}.hasOwnProperty.call(n,"current")}return{name:"arrow",options:t,fn(n){const{element:s,padding:a}=typeof t=="function"?t(n):t;return s&&e(s)?s.current!=null?Cw({element:s.current,padding:a}).fn(n):{}:s?Cw({element:s,padding:a}).fn(n):{}}}},rB=(t,e)=>({...qF(t),options:[t,e]}),aB=(t,e)=>({...GF(t),options:[t,e]}),iB=(t,e)=>({...XF(t),options:[t,e]}),oB=(t,e)=>({...JF(t),options:[t,e]}),lB=(t,e)=>({...YF(t),options:[t,e]}),cB=(t,e)=>({...QF(t),options:[t,e]}),dB=(t,e)=>({...sB(t),options:[t,e]});var uB="Arrow",i4=b.forwardRef((t,e)=>{const{children:n,width:s=10,height:a=5,...i}=t;return r.jsx(ht.svg,{...i,ref:e,width:s,height:a,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:t.asChild?n:r.jsx("polygon",{points:"0,0 30,0 15,10"})})});i4.displayName=uB;var hB=i4,my="Popper",[o4,l4]=_i(my),[fB,c4]=o4(my),d4=t=>{const{__scopePopper:e,children:n}=t,[s,a]=b.useState(null);return r.jsx(fB,{scope:e,anchor:s,onAnchorChange:a,children:n})};d4.displayName=my;var u4="PopperAnchor",h4=b.forwardRef((t,e)=>{const{__scopePopper:n,virtualRef:s,...a}=t,i=c4(u4,n),o=b.useRef(null),c=Et(e,o),u=b.useRef(null);return b.useEffect(()=>{const h=u.current;u.current=(s==null?void 0:s.current)||o.current,h!==u.current&&i.onAnchorChange(u.current)}),s?null:r.jsx(ht.div,{...a,ref:c})});h4.displayName=u4;var gy="PopperContent",[pB,mB]=o4(gy),f4=b.forwardRef((t,e)=>{var re,ue,ce,be,Pe,Le;const{__scopePopper:n,side:s="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:g=!1,updatePositionStrategy:y="optimized",onPlaced:N,...w}=t,v=c4(gy,n),[k,C]=b.useState(null),E=Et(e,lt=>C(lt)),[M,P]=b.useState(null),$=g0(M),D=($==null?void 0:$.width)??0,R=($==null?void 0:$.height)??0,O=s+(i!=="center"?"-"+i:""),_=typeof f=="number"?f:{top:0,right:0,bottom:0,left:0,...f},se=Array.isArray(h)?h:[h],ne=se.length>0,pe={padding:_,boundary:se.filter(xB),altBoundary:ne},{refs:ge,floatingStyles:z,placement:K,isPositioned:U,middlewareData:I}=nB({strategy:"fixed",placement:O,whileElementsMounted:(...lt)=>KF(...lt,{animationFrame:y==="always"}),elements:{reference:v.anchor},middleware:[rB({mainAxis:a+R,alignmentAxis:o}),u&&aB({mainAxis:!0,crossAxis:!1,limiter:m==="partial"?iB():void 0,...pe}),u&&oB({...pe}),lB({...pe,apply:({elements:lt,rects:Rt,availableWidth:dn,availableHeight:gt})=>{const{width:sn,height:Pn}=Rt.reference,Pt=lt.floating.style;Pt.setProperty("--radix-popper-available-width",`${dn}px`),Pt.setProperty("--radix-popper-available-height",`${gt}px`),Pt.setProperty("--radix-popper-anchor-width",`${sn}px`),Pt.setProperty("--radix-popper-anchor-height",`${Pn}px`)}}),M&&dB({element:M,padding:c}),yB({arrowWidth:D,arrowHeight:R}),g&&cB({strategy:"referenceHidden",...pe})]}),[q,F]=g4(K),L=Mi(N);ls(()=>{U&&(L==null||L())},[U,L]);const W=(re=I.arrow)==null?void 0:re.x,oe=(ue=I.arrow)==null?void 0:ue.y,Q=((ce=I.arrow)==null?void 0:ce.centerOffset)!==0,[X,V]=b.useState();return ls(()=>{k&&V(window.getComputedStyle(k).zIndex)},[k]),r.jsx("div",{ref:ge.setFloating,"data-radix-popper-content-wrapper":"",style:{...z,transform:U?z.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:X,"--radix-popper-transform-origin":[(be=I.transformOrigin)==null?void 0:be.x,(Pe=I.transformOrigin)==null?void 0:Pe.y].join(" "),...((Le=I.hide)==null?void 0:Le.referenceHidden)&&{visibility:"hidden",pointerEvents:"none"}},dir:t.dir,children:r.jsx(pB,{scope:n,placedSide:q,onArrowChange:P,arrowX:W,arrowY:oe,shouldHideArrow:Q,children:r.jsx(ht.div,{"data-side":q,"data-align":F,...w,ref:E,style:{...w.style,animation:U?void 0:"none"}})})})});f4.displayName=gy;var p4="PopperArrow",gB={top:"bottom",right:"left",bottom:"top",left:"right"},m4=b.forwardRef(function(e,n){const{__scopePopper:s,...a}=e,i=mB(p4,s),o=gB[i.placedSide];return r.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:r.jsx(hB,{...a,ref:n,style:{...a.style,display:"block"}})})});m4.displayName=p4;function xB(t){return t!==null}var yB=t=>({name:"transformOrigin",options:t,fn(e){var v,k,C;const{placement:n,rects:s,middlewareData:a}=e,o=((v=a.arrow)==null?void 0:v.centerOffset)!==0,c=o?0:t.arrowWidth,u=o?0:t.arrowHeight,[h,f]=g4(n),m={start:"0%",center:"50%",end:"100%"}[f],g=(((k=a.arrow)==null?void 0:k.x)??0)+c/2,y=(((C=a.arrow)==null?void 0:C.y)??0)+u/2;let N="",w="";return h==="bottom"?(N=o?m:`${g}px`,w=`${-u}px`):h==="top"?(N=o?m:`${g}px`,w=`${s.floating.height+u}px`):h==="right"?(N=`${-u}px`,w=o?m:`${y}px`):h==="left"&&(N=`${s.floating.width+u}px`,w=o?m:`${y}px`),{data:{x:N,y:w}}}});function g4(t){const[e,n="center"]=t.split("-");return[e,n]}var bB=d4,vB=h4,NB=f4,wB=m4,x4=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"}),jB="VisuallyHidden",kB=b.forwardRef((t,e)=>r.jsx(ht.span,{...t,ref:e,style:{...x4,...t.style}}));kB.displayName=jB;var SB=[" ","Enter","ArrowUp","ArrowDown"],CB=[" ","Enter"],Bo="Select",[ip,op,EB]=f0(Bo),[lc]=_i(Bo,[EB,l4]),lp=l4(),[TB,Bi]=lc(Bo),[MB,AB]=lc(Bo),y4=t=>{const{__scopeSelect:e,children:n,open:s,defaultOpen:a,onOpenChange:i,value:o,defaultValue:c,onValueChange:u,dir:h,name:f,autoComplete:m,disabled:g,required:y,form:N}=t,w=lp(e),[v,k]=b.useState(null),[C,E]=b.useState(null),[M,P]=b.useState(!1),$=Lf(h),[D,R]=Io({prop:s,defaultProp:a??!1,onChange:i,caller:Bo}),[O,_]=Io({prop:o,defaultProp:c,onChange:u,caller:Bo}),se=b.useRef(null),ne=v?N||!!v.closest("form"):!0,[pe,ge]=b.useState(new Set),z=Array.from(pe).map(K=>K.props.value).join(";");return r.jsx(bB,{...w,children:r.jsxs(TB,{required:y,scope:e,trigger:v,onTriggerChange:k,valueNode:C,onValueNodeChange:E,valueNodeHasChildren:M,onValueNodeHasChildrenChange:P,contentId:ji(),value:O,onValueChange:_,open:D,onOpenChange:R,dir:$,triggerPointerDownPosRef:se,disabled:g,children:[r.jsx(ip.Provider,{scope:e,children:r.jsx(MB,{scope:t.__scopeSelect,onNativeOptionAdd:b.useCallback(K=>{ge(U=>new Set(U).add(K))},[]),onNativeOptionRemove:b.useCallback(K=>{ge(U=>{const I=new Set(U);return I.delete(K),I})},[]),children:n})}),ne?r.jsxs(F4,{"aria-hidden":!0,required:y,tabIndex:-1,name:f,autoComplete:m,value:O,onChange:K=>_(K.target.value),disabled:g,form:N,children:[O===void 0?r.jsx("option",{value:""}):null,Array.from(pe)]},z):null]})})};y4.displayName=Bo;var b4="SelectTrigger",v4=b.forwardRef((t,e)=>{const{__scopeSelect:n,disabled:s=!1,...a}=t,i=lp(n),o=Bi(b4,n),c=o.disabled||s,u=Et(e,o.onTriggerChange),h=op(n),f=b.useRef("touch"),[m,g,y]=V4(w=>{const v=h().filter(E=>!E.disabled),k=v.find(E=>E.value===o.value),C=H4(v,w,k);C!==void 0&&o.onValueChange(C.value)}),N=w=>{c||(o.onOpenChange(!0),y()),w&&(o.triggerPointerDownPosRef.current={x:Math.round(w.pageX),y:Math.round(w.pageY)})};return r.jsx(vB,{asChild:!0,...i,children:r.jsx(ht.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":B4(o.value)?"":void 0,...a,ref:u,onClick:ot(a.onClick,w=>{w.currentTarget.focus(),f.current!=="mouse"&&N(w)}),onPointerDown:ot(a.onPointerDown,w=>{f.current=w.pointerType;const v=w.target;v.hasPointerCapture(w.pointerId)&&v.releasePointerCapture(w.pointerId),w.button===0&&w.ctrlKey===!1&&w.pointerType==="mouse"&&(N(w),w.preventDefault())}),onKeyDown:ot(a.onKeyDown,w=>{const v=m.current!=="";!(w.ctrlKey||w.altKey||w.metaKey)&&w.key.length===1&&g(w.key),!(v&&w.key===" ")&&SB.includes(w.key)&&(N(),w.preventDefault())})})})});v4.displayName=b4;var N4="SelectValue",w4=b.forwardRef((t,e)=>{const{__scopeSelect:n,className:s,style:a,children:i,placeholder:o="",...c}=t,u=Bi(N4,n),{onValueNodeHasChildrenChange:h}=u,f=i!==void 0,m=Et(e,u.onValueNodeChange);return ls(()=>{h(f)},[h,f]),r.jsx(ht.span,{...c,ref:m,style:{pointerEvents:"none"},children:B4(u.value)?r.jsx(r.Fragment,{children:o}):i})});w4.displayName=N4;var IB="SelectIcon",j4=b.forwardRef((t,e)=>{const{__scopeSelect:n,children:s,...a}=t;return r.jsx(ht.span,{"aria-hidden":!0,...a,ref:e,children:s||"▼"})});j4.displayName=IB;var RB="SelectPortal",k4=t=>r.jsx(l0,{asChild:!0,...t});k4.displayName=RB;var Vo="SelectContent",S4=b.forwardRef((t,e)=>{const n=Bi(Vo,t.__scopeSelect),[s,a]=b.useState();if(ls(()=>{a(new DocumentFragment)},[]),!n.open){const i=s;return i?Dd.createPortal(r.jsx(C4,{scope:t.__scopeSelect,children:r.jsx(ip.Slot,{scope:t.__scopeSelect,children:r.jsx("div",{children:t.children})})}),i):null}return r.jsx(E4,{...t,ref:e})});S4.displayName=Vo;var Nr=10,[C4,Vi]=lc(Vo),PB="SelectContentImpl",OB=bd("SelectContent.RemoveScroll"),E4=b.forwardRef((t,e)=>{const{__scopeSelect:n,position:s="item-aligned",onCloseAutoFocus:a,onEscapeKeyDown:i,onPointerDownOutside:o,side:c,sideOffset:u,align:h,alignOffset:f,arrowPadding:m,collisionBoundary:g,collisionPadding:y,sticky:N,hideWhenDetached:w,avoidCollisions:v,...k}=t,C=Bi(Vo,n),[E,M]=b.useState(null),[P,$]=b.useState(null),D=Et(e,re=>M(re)),[R,O]=b.useState(null),[_,se]=b.useState(null),ne=op(n),[pe,ge]=b.useState(!1),z=b.useRef(!1);b.useEffect(()=>{if(E)return Vj(E)},[E]),Pj();const K=b.useCallback(re=>{const[ue,...ce]=ne().map(Le=>Le.ref.current),[be]=ce.slice(-1),Pe=document.activeElement;for(const Le of re)if(Le===Pe||(Le==null||Le.scrollIntoView({block:"nearest"}),Le===ue&&P&&(P.scrollTop=0),Le===be&&P&&(P.scrollTop=P.scrollHeight),Le==null||Le.focus(),document.activeElement!==Pe))return},[ne,P]),U=b.useCallback(()=>K([R,E]),[K,R,E]);b.useEffect(()=>{pe&&U()},[pe,U]);const{onOpenChange:I,triggerPointerDownPosRef:q}=C;b.useEffect(()=>{if(E){let re={x:0,y:0};const ue=be=>{var Pe,Le;re={x:Math.abs(Math.round(be.pageX)-(((Pe=q.current)==null?void 0:Pe.x)??0)),y:Math.abs(Math.round(be.pageY)-(((Le=q.current)==null?void 0:Le.y)??0))}},ce=be=>{re.x<=10&&re.y<=10?be.preventDefault():E.contains(be.target)||I(!1),document.removeEventListener("pointermove",ue),q.current=null};return q.current!==null&&(document.addEventListener("pointermove",ue),document.addEventListener("pointerup",ce,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",ue),document.removeEventListener("pointerup",ce,{capture:!0})}}},[E,I,q]),b.useEffect(()=>{const re=()=>I(!1);return window.addEventListener("blur",re),window.addEventListener("resize",re),()=>{window.removeEventListener("blur",re),window.removeEventListener("resize",re)}},[I]);const[F,L]=V4(re=>{const ue=ne().filter(Pe=>!Pe.disabled),ce=ue.find(Pe=>Pe.ref.current===document.activeElement),be=H4(ue,re,ce);be&&setTimeout(()=>be.ref.current.focus())}),W=b.useCallback((re,ue,ce)=>{const be=!z.current&&!ce;(C.value!==void 0&&C.value===ue||be)&&(O(re),be&&(z.current=!0))},[C.value]),oe=b.useCallback(()=>E==null?void 0:E.focus(),[E]),Q=b.useCallback((re,ue,ce)=>{const be=!z.current&&!ce;(C.value!==void 0&&C.value===ue||be)&&se(re)},[C.value]),X=s==="popper"?Kx:T4,V=X===Kx?{side:c,sideOffset:u,align:h,alignOffset:f,arrowPadding:m,collisionBoundary:g,collisionPadding:y,sticky:N,hideWhenDetached:w,avoidCollisions:v}:{};return r.jsx(C4,{scope:n,content:E,viewport:P,onViewportChange:$,itemRefCallback:W,selectedItem:R,onItemLeave:oe,itemTextRefCallback:Q,focusSelectedItem:U,selectedItemText:_,position:s,isPositioned:pe,searchRef:F,children:r.jsx(c0,{as:OB,allowPinchZoom:!0,children:r.jsx(o0,{asChild:!0,trapped:C.open,onMountAutoFocus:re=>{re.preventDefault()},onUnmountAutoFocus:ot(a,re=>{var ue;(ue=C.trigger)==null||ue.focus({preventScroll:!0}),re.preventDefault()}),children:r.jsx(i0,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:i,onPointerDownOutside:o,onFocusOutside:re=>re.preventDefault(),onDismiss:()=>C.onOpenChange(!1),children:r.jsx(X,{role:"listbox",id:C.contentId,"data-state":C.open?"open":"closed",dir:C.dir,onContextMenu:re=>re.preventDefault(),...k,...V,onPlaced:()=>ge(!0),ref:D,style:{display:"flex",flexDirection:"column",outline:"none",...k.style},onKeyDown:ot(k.onKeyDown,re=>{const ue=re.ctrlKey||re.altKey||re.metaKey;if(re.key==="Tab"&&re.preventDefault(),!ue&&re.key.length===1&&L(re.key),["ArrowUp","ArrowDown","Home","End"].includes(re.key)){let be=ne().filter(Pe=>!Pe.disabled).map(Pe=>Pe.ref.current);if(["ArrowUp","End"].includes(re.key)&&(be=be.slice().reverse()),["ArrowUp","ArrowDown"].includes(re.key)){const Pe=re.target,Le=be.indexOf(Pe);be=be.slice(Le+1)}setTimeout(()=>K(be)),re.preventDefault()}})})})})})})});E4.displayName=PB;var DB="SelectItemAlignedPosition",T4=b.forwardRef((t,e)=>{const{__scopeSelect:n,onPlaced:s,...a}=t,i=Bi(Vo,n),o=Vi(Vo,n),[c,u]=b.useState(null),[h,f]=b.useState(null),m=Et(e,D=>f(D)),g=op(n),y=b.useRef(!1),N=b.useRef(!0),{viewport:w,selectedItem:v,selectedItemText:k,focusSelectedItem:C}=o,E=b.useCallback(()=>{if(i.trigger&&i.valueNode&&c&&h&&w&&v&&k){const D=i.trigger.getBoundingClientRect(),R=h.getBoundingClientRect(),O=i.valueNode.getBoundingClientRect(),_=k.getBoundingClientRect();if(i.dir!=="rtl"){const Pe=_.left-R.left,Le=O.left-Pe,lt=D.left-Le,Rt=D.width+lt,dn=Math.max(Rt,R.width),gt=window.innerWidth-Nr,sn=Ph(Le,[Nr,Math.max(Nr,gt-dn)]);c.style.minWidth=Rt+"px",c.style.left=sn+"px"}else{const Pe=R.right-_.right,Le=window.innerWidth-O.right-Pe,lt=window.innerWidth-D.right-Le,Rt=D.width+lt,dn=Math.max(Rt,R.width),gt=window.innerWidth-Nr,sn=Ph(Le,[Nr,Math.max(Nr,gt-dn)]);c.style.minWidth=Rt+"px",c.style.right=sn+"px"}const se=g(),ne=window.innerHeight-Nr*2,pe=w.scrollHeight,ge=window.getComputedStyle(h),z=parseInt(ge.borderTopWidth,10),K=parseInt(ge.paddingTop,10),U=parseInt(ge.borderBottomWidth,10),I=parseInt(ge.paddingBottom,10),q=z+K+pe+I+U,F=Math.min(v.offsetHeight*5,q),L=window.getComputedStyle(w),W=parseInt(L.paddingTop,10),oe=parseInt(L.paddingBottom,10),Q=D.top+D.height/2-Nr,X=ne-Q,V=v.offsetHeight/2,re=v.offsetTop+V,ue=z+K+re,ce=q-ue;if(ue<=Q){const Pe=se.length>0&&v===se[se.length-1].ref.current;c.style.bottom="0px";const Le=h.clientHeight-w.offsetTop-w.offsetHeight,lt=Math.max(X,V+(Pe?oe:0)+Le+U),Rt=ue+lt;c.style.height=Rt+"px"}else{const Pe=se.length>0&&v===se[0].ref.current;c.style.top="0px";const lt=Math.max(Q,z+w.offsetTop+(Pe?W:0)+V)+ce;c.style.height=lt+"px",w.scrollTop=ue-Q+w.offsetTop}c.style.margin=`${Nr}px 0`,c.style.minHeight=F+"px",c.style.maxHeight=ne+"px",s==null||s(),requestAnimationFrame(()=>y.current=!0)}},[g,i.trigger,i.valueNode,c,h,w,v,k,i.dir,s]);ls(()=>E(),[E]);const[M,P]=b.useState();ls(()=>{h&&P(window.getComputedStyle(h).zIndex)},[h]);const $=b.useCallback(D=>{D&&N.current===!0&&(E(),C==null||C(),N.current=!1)},[E,C]);return r.jsx(_B,{scope:n,contentWrapper:c,shouldExpandOnScrollRef:y,onScrollButtonChange:$,children:r.jsx("div",{ref:u,style:{display:"flex",flexDirection:"column",position:"fixed",zIndex:M},children:r.jsx(ht.div,{...a,ref:m,style:{boxSizing:"border-box",maxHeight:"100%",...a.style}})})})});T4.displayName=DB;var LB="SelectPopperPosition",Kx=b.forwardRef((t,e)=>{const{__scopeSelect:n,align:s="start",collisionPadding:a=Nr,...i}=t,o=lp(n);return r.jsx(NB,{...o,...i,ref:e,align:s,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)"}})});Kx.displayName=LB;var[_B,xy]=lc(Vo,{}),qx="SelectViewport",M4=b.forwardRef((t,e)=>{const{__scopeSelect:n,nonce:s,...a}=t,i=Vi(qx,n),o=xy(qx,n),c=Et(e,i.onViewportChange),u=b.useRef(0);return r.jsxs(r.Fragment,{children:[r.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:s}),r.jsx(ip.Slot,{scope:n,children:r.jsx(ht.div,{"data-radix-select-viewport":"",role:"presentation",...a,ref:c,style:{position:"relative",flex:1,overflow:"hidden auto",...a.style},onScroll:ot(a.onScroll,h=>{const f=h.currentTarget,{contentWrapper:m,shouldExpandOnScrollRef:g}=o;if(g!=null&&g.current&&m){const y=Math.abs(u.current-f.scrollTop);if(y>0){const N=window.innerHeight-Nr*2,w=parseFloat(m.style.minHeight),v=parseFloat(m.style.height),k=Math.max(w,v);if(k0?M:0,m.style.justifyContent="flex-end")}}}u.current=f.scrollTop})})})]})});M4.displayName=qx;var A4="SelectGroup",[zB,$B]=lc(A4),FB=b.forwardRef((t,e)=>{const{__scopeSelect:n,...s}=t,a=ji();return r.jsx(zB,{scope:n,id:a,children:r.jsx(ht.div,{role:"group","aria-labelledby":a,...s,ref:e})})});FB.displayName=A4;var I4="SelectLabel",BB=b.forwardRef((t,e)=>{const{__scopeSelect:n,...s}=t,a=$B(I4,n);return r.jsx(ht.div,{id:a.id,...s,ref:e})});BB.displayName=I4;var Tf="SelectItem",[VB,R4]=lc(Tf),P4=b.forwardRef((t,e)=>{const{__scopeSelect:n,value:s,disabled:a=!1,textValue:i,...o}=t,c=Bi(Tf,n),u=Vi(Tf,n),h=c.value===s,[f,m]=b.useState(i??""),[g,y]=b.useState(!1),N=Et(e,C=>{var E;return(E=u.itemRefCallback)==null?void 0:E.call(u,C,s,a)}),w=ji(),v=b.useRef("touch"),k=()=>{a||(c.onValueChange(s),c.onOpenChange(!1))};if(s==="")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 r.jsx(VB,{scope:n,value:s,disabled:a,textId:w,isSelected:h,onItemTextChange:b.useCallback(C=>{m(E=>E||((C==null?void 0:C.textContent)??"").trim())},[]),children:r.jsx(ip.ItemSlot,{scope:n,value:s,disabled:a,textValue:f,children:r.jsx(ht.div,{role:"option","aria-labelledby":w,"data-highlighted":g?"":void 0,"aria-selected":h&&g,"data-state":h?"checked":"unchecked","aria-disabled":a||void 0,"data-disabled":a?"":void 0,tabIndex:a?void 0:-1,...o,ref:N,onFocus:ot(o.onFocus,()=>y(!0)),onBlur:ot(o.onBlur,()=>y(!1)),onClick:ot(o.onClick,()=>{v.current!=="mouse"&&k()}),onPointerUp:ot(o.onPointerUp,()=>{v.current==="mouse"&&k()}),onPointerDown:ot(o.onPointerDown,C=>{v.current=C.pointerType}),onPointerMove:ot(o.onPointerMove,C=>{var E;v.current=C.pointerType,a?(E=u.onItemLeave)==null||E.call(u):v.current==="mouse"&&C.currentTarget.focus({preventScroll:!0})}),onPointerLeave:ot(o.onPointerLeave,C=>{var E;C.currentTarget===document.activeElement&&((E=u.onItemLeave)==null||E.call(u))}),onKeyDown:ot(o.onKeyDown,C=>{var M;((M=u.searchRef)==null?void 0:M.current)!==""&&C.key===" "||(CB.includes(C.key)&&k(),C.key===" "&&C.preventDefault())})})})})});P4.displayName=Tf;var ed="SelectItemText",O4=b.forwardRef((t,e)=>{const{__scopeSelect:n,className:s,style:a,...i}=t,o=Bi(ed,n),c=Vi(ed,n),u=R4(ed,n),h=AB(ed,n),[f,m]=b.useState(null),g=Et(e,k=>m(k),u.onItemTextChange,k=>{var C;return(C=c.itemTextRefCallback)==null?void 0:C.call(c,k,u.value,u.disabled)}),y=f==null?void 0:f.textContent,N=b.useMemo(()=>r.jsx("option",{value:u.value,disabled:u.disabled,children:y},u.value),[u.disabled,u.value,y]),{onNativeOptionAdd:w,onNativeOptionRemove:v}=h;return ls(()=>(w(N),()=>v(N)),[w,v,N]),r.jsxs(r.Fragment,{children:[r.jsx(ht.span,{id:u.textId,...i,ref:g}),u.isSelected&&o.valueNode&&!o.valueNodeHasChildren?Dd.createPortal(i.children,o.valueNode):null]})});O4.displayName=ed;var D4="SelectItemIndicator",L4=b.forwardRef((t,e)=>{const{__scopeSelect:n,...s}=t;return R4(D4,n).isSelected?r.jsx(ht.span,{"aria-hidden":!0,...s,ref:e}):null});L4.displayName=D4;var Gx="SelectScrollUpButton",_4=b.forwardRef((t,e)=>{const n=Vi(Gx,t.__scopeSelect),s=xy(Gx,t.__scopeSelect),[a,i]=b.useState(!1),o=Et(e,s.onScrollButtonChange);return ls(()=>{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?r.jsx($4,{...t,ref:o,onAutoScroll:()=>{const{viewport:c,selectedItem:u}=n;c&&u&&(c.scrollTop=c.scrollTop-u.offsetHeight)}}):null});_4.displayName=Gx;var Jx="SelectScrollDownButton",z4=b.forwardRef((t,e)=>{const n=Vi(Jx,t.__scopeSelect),s=xy(Jx,t.__scopeSelect),[a,i]=b.useState(!1),o=Et(e,s.onScrollButtonChange);return ls(()=>{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?r.jsx($4,{...t,ref:o,onAutoScroll:()=>{const{viewport:c,selectedItem:u}=n;c&&u&&(c.scrollTop=c.scrollTop+u.offsetHeight)}}):null});z4.displayName=Jx;var $4=b.forwardRef((t,e)=>{const{__scopeSelect:n,onAutoScroll:s,...a}=t,i=Vi("SelectScrollButton",n),o=b.useRef(null),c=op(n),u=b.useCallback(()=>{o.current!==null&&(window.clearInterval(o.current),o.current=null)},[]);return b.useEffect(()=>()=>u(),[u]),ls(()=>{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]),r.jsx(ht.div,{"aria-hidden":!0,...a,ref:e,style:{flexShrink:0,...a.style},onPointerDown:ot(a.onPointerDown,()=>{o.current===null&&(o.current=window.setInterval(s,50))}),onPointerMove:ot(a.onPointerMove,()=>{var h;(h=i.onItemLeave)==null||h.call(i),o.current===null&&(o.current=window.setInterval(s,50))}),onPointerLeave:ot(a.onPointerLeave,()=>{u()})})}),HB="SelectSeparator",WB=b.forwardRef((t,e)=>{const{__scopeSelect:n,...s}=t;return r.jsx(ht.div,{"aria-hidden":!0,...s,ref:e})});WB.displayName=HB;var Yx="SelectArrow",UB=b.forwardRef((t,e)=>{const{__scopeSelect:n,...s}=t,a=lp(n),i=Bi(Yx,n),o=Vi(Yx,n);return i.open&&o.position==="popper"?r.jsx(wB,{...a,...s,ref:e}):null});UB.displayName=Yx;var KB="SelectBubbleInput",F4=b.forwardRef(({__scopeSelect:t,value:e,...n},s)=>{const a=b.useRef(null),i=Et(s,a),o=m0(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]),r.jsx(ht.select,{...n,style:{...x4,...n.style},ref:i,defaultValue:e})});F4.displayName=KB;function B4(t){return t===""||t===void 0}function V4(t){const e=Mi(t),n=b.useRef(""),s=b.useRef(0),a=b.useCallback(o=>{const c=n.current+o;e(c),(function u(h){n.current=h,window.clearTimeout(s.current),h!==""&&(s.current=window.setTimeout(()=>u(""),1e3))})(c)},[e]),i=b.useCallback(()=>{n.current="",window.clearTimeout(s.current)},[]);return b.useEffect(()=>()=>window.clearTimeout(s.current),[]),[n,a,i]}function H4(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=qB(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 qB(t,e){return t.map((n,s)=>t[(e+s)%t.length])}var GB=y4,W4=v4,JB=w4,YB=j4,QB=k4,U4=S4,XB=M4,K4=P4,ZB=O4,eV=L4,tV=_4,nV=z4;const Rl=GB,Pl=JB,xo=b.forwardRef(({className:t,children:e,...n},s)=>r.jsxs(W4,{ref:s,className:Tt("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,r.jsx(YB,{asChild:!0,children:r.jsx(yd,{className:"h-4 w-4 opacity-50"})})]}));xo.displayName=W4.displayName;const yo=b.forwardRef(({className:t,children:e,position:n="popper",...s},a)=>r.jsx(QB,{children:r.jsxs(U4,{ref:a,className:Tt("relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-md",n==="popper"&&"data-[side=bottom]:translate-y-1",t),position:n,...s,children:[r.jsx(tV,{className:"flex cursor-default items-center justify-center py-1",children:r.jsx(tj,{className:"h-4 w-4"})}),r.jsx(XB,{className:"p-1",children:e}),r.jsx(nV,{className:"flex cursor-default items-center justify-center py-1",children:r.jsx(yd,{className:"h-4 w-4"})})]})}));yo.displayName=U4.displayName;const zs=b.forwardRef(({className:t,children:e,...n},s)=>r.jsxs(K4,{ref:s,className:Tt("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:[r.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:r.jsx(eV,{children:r.jsx(If,{className:"h-4 w-4"})})}),r.jsx(ZB,{children:e})]}));zs.displayName=K4.displayName;function sV(){const[t,e]=b.useState([]),[n,s]=b.useState(!0),[a,i]=b.useState(!1),[o,c]=b.useState(null),[u,h]=b.useState({name:"",appId:"",path:"",sort:0}),[f,m]=b.useState(!1);async function g(){s(!0);try{const k=await Re("/api/admin/linked-miniprograms");if(k!=null&&k.success&&Array.isArray(k.data)){const C=[...k.data].sort((E,M)=>(E.sort??0)-(M.sort??0));e(C)}}catch(k){console.error("Load linked miniprograms error:",k),ae.error("加载失败")}finally{s(!1)}}b.useEffect(()=>{g()},[]);function y(){c(null),h({name:"",appId:"",path:"",sort:t.length}),i(!0)}function N(k){c(k),h({name:k.name,appId:k.appId,path:k.path??"",sort:k.sort??0}),i(!0)}async function w(){const k=u.name.trim(),C=u.appId.trim();if(!k||!C){ae.error("请填写小程序名称和 AppID");return}m(!0);try{if(o){const E=await _t("/api/admin/linked-miniprograms",{key:o.key,name:k,appId:C,path:u.path.trim(),sort:u.sort});E!=null&&E.success?(ae.success("已更新"),i(!1),g()):ae.error((E==null?void 0:E.error)??"更新失败")}else{const E=await yt("/api/admin/linked-miniprograms",{name:k,appId:C,path:u.path.trim(),sort:u.sort});E!=null&&E.success?(ae.success("已添加"),i(!1),g()):ae.error((E==null?void 0:E.error)??"添加失败")}}catch{ae.error("操作失败")}finally{m(!1)}}async function v(k){if(confirm(`确定要删除「${k.name}」吗?`))try{const C=await Hr(`/api/admin/linked-miniprograms/${k.key}`);C!=null&&C.success?(ae.success("已删除"),g()):ae.error((C==null?void 0:C.error)??"删除失败")}catch{ae.error("删除失败")}}return r.jsxs("div",{className:"space-y-6",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Ti,{className:"w-5 h-5 text-[#38bdac]"}),"关联小程序管理"]}),r.jsx(Dt,{className:"text-gray-400",children:"添加后生成 32 位密钥,链接标签选择小程序时存密钥;小程序端点击 #标签 时用密钥查 appId 再跳转。需在 app.json 的 navigateToMiniProgramAppIdList 中配置目标 AppID。"})]}),r.jsxs(Ee,{children:[r.jsxs("div",{className:"flex justify-end gap-2 mb-4",children:[r.jsx(Z,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 hover:bg-gray-700/50",onClick:()=>g(),title:"刷新",children:r.jsx(We,{className:"w-4 h-4"})}),r.jsxs(Z,{onClick:y,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"添加关联小程序"]})]}),n?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"名称"}),r.jsx(ke,{className:"text-gray-400",children:"密钥"}),r.jsx(ke,{className:"text-gray-400",children:"AppID"}),r.jsx(ke,{className:"text-gray-400",children:"路径"}),r.jsx(ke,{className:"text-gray-400 w-24",children:"排序"}),r.jsx(ke,{className:"text-gray-400 w-32",children:"操作"})]})}),r.jsxs(us,{children:[t.map(k=>r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(Ne,{className:"text-white",children:k.name}),r.jsx(Ne,{className:"text-gray-300 font-mono text-xs",children:k.key}),r.jsx(Ne,{className:"text-gray-300 font-mono text-sm",children:k.appId}),r.jsx(Ne,{className:"text-gray-400 text-sm",children:k.path||"—"}),r.jsx(Ne,{className:"text-gray-300",children:k.sort??0}),r.jsx(Ne,{children:r.jsxs("div",{className:"flex gap-2",children:[r.jsx(Z,{variant:"ghost",size:"sm",className:"text-[#38bdac] hover:bg-[#38bdac]/20",onClick:()=>N(k),children:r.jsx(Gg,{className:"w-4 h-4"})}),r.jsx(Z,{variant:"ghost",size:"sm",className:"text-red-400 hover:bg-red-500/20",onClick:()=>v(k),children:r.jsx(Jn,{className:"w-4 h-4"})})]})})]},k.key)),t.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:6,className:"text-center py-12 text-gray-500",children:"暂无关联小程序,点击「添加关联小程序」开始配置"})})]})]})]})]}),r.jsx(Mt,{open:a,onOpenChange:i,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md p-4 gap-3",children:[r.jsxs(At,{className:"gap-1",children:[r.jsx(It,{className:"text-base",children:o?"编辑关联小程序":"添加关联小程序"}),r.jsx(vd,{className:"text-gray-400 text-xs",children:"填写目标小程序的名称和 AppID,路径可选(为空则打开首页)"})]}),r.jsxs("div",{className:"space-y-3 py-2",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"小程序名称"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"例如:Soul 创业派对",value:u.name,onChange:k=>h(C=>({...C,name:k.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"AppID"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white font-mono h-8 text-sm",placeholder:"例如:wxb8bbb2b10dec74aa",value:u.appId,onChange:k=>h(C=>({...C,appId:k.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"路径(可选)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"例如:pages/index/index",value:u.path,onChange:k=>h(C=>({...C,path:k.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"排序"}),r.jsx(ie,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm w-20",value:u.sort,onChange:k=>h(C=>({...C,sort:parseInt(k.target.value,10)||0}))})]})]}),r.jsxs(Zt,{className:"gap-2 pt-1",children:[r.jsx(Z,{variant:"outline",onClick:()=>i(!1),className:"border-gray-600",children:"取消"}),r.jsx(Z,{onClick:w,disabled:f,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:f?"保存中...":"保存"})]})]})})]})}const rV=["一","二","三","四","五","六","七","八","九","十"];function Dg(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 aV({parts:t,expandedParts:e,onTogglePart:n,onReorder:s,onReadSection:a,onDeleteSection:i,onAddSectionInPart:o,onAddChapterInPart:c,onDeleteChapter:u,onEditPart:h,onDeletePart:f,onEditChapter:m,selectedSectionIds:g=[],onToggleSectionSelect:y,onShowSectionOrders:N,pinnedSectionIds:w=[]}){const[v,k]=b.useState(null),[C,E]=b.useState(null),M=(_,se)=>(v==null?void 0:v.type)===_&&(v==null?void 0:v.id)===se,P=(_,se)=>(C==null?void 0:C.type)===_&&(C==null?void 0:C.id)===se,$=b.useCallback(()=>{const _=[];for(const se of t)for(const ne of se.chapters)for(const pe of ne.sections)_.push({id:pe.id,partId:se.id,partTitle:se.title,chapterId:ne.id,chapterTitle:ne.title});return _},[t]),D=b.useCallback(async(_,se,ne,pe)=>{var I;_.preventDefault(),_.stopPropagation();const ge=_.dataTransfer.getData("text/plain"),z=Dg(ge);if(!z||z.type===se&&z.id===ne)return;const K=$(),U=new Map(K.map(q=>[q.id,q]));if(z.type==="part"&&se==="part"){const q=t.map(Q=>Q.id),F=q.indexOf(z.id),L=q.indexOf(ne);if(F===-1||L===-1)return;const W=[...q];W.splice(F,1),W.splice(FV.id===Q);if(X)for(const V of X.chapters)for(const re of V.sections){const ue=U.get(re.id);ue&&oe.push(ue)}}await s(oe);return}if(z.type==="chapter"&&(se==="chapter"||se==="section"||se==="part")){const q=t.find(ue=>ue.chapters.some(ce=>ce.id===z.id)),F=q==null?void 0:q.chapters.find(ue=>ue.id===z.id);if(!q||!F)return;let L,W,oe=null;if(se==="section"){const ue=U.get(ne);if(!ue)return;L=ue.partId,W=ue.partTitle,oe=ne}else if(se==="chapter"){const ue=t.find(Pe=>Pe.chapters.some(Le=>Le.id===ne)),ce=ue==null?void 0:ue.chapters.find(Pe=>Pe.id===ne);if(!ue||!ce)return;L=ue.id,W=ue.title;const be=K.filter(Pe=>Pe.chapterId===ne).pop();oe=(be==null?void 0:be.id)??null}else{const ue=t.find(be=>be.id===ne);if(!ue||!ue.chapters[0])return;L=ue.id,W=ue.title;const ce=K.filter(be=>be.partId===ue.id&&be.chapterId===ue.chapters[0].id);oe=((I=ce[ce.length-1])==null?void 0:I.id)??null}const Q=F.sections.map(ue=>ue.id),X=K.filter(ue=>!Q.includes(ue.id));let V=X.length;if(oe){const ue=X.findIndex(ce=>ce.id===oe);ue>=0&&(V=ue+1)}const re=Q.map(ue=>({...U.get(ue),partId:L,partTitle:W,chapterId:F.id,chapterTitle:F.title}));await s([...X.slice(0,V),...re,...X.slice(V)]);return}if(z.type==="section"&&(se==="section"||se==="chapter"||se==="part")){if(!pe)return;const{partId:q,partTitle:F,chapterId:L,chapterTitle:W}=pe;let oe;if(se==="section")oe=K.findIndex(ce=>ce.id===ne);else if(se==="chapter"){const ce=K.filter(be=>be.chapterId===ne).pop();oe=ce?K.findIndex(be=>be.id===ce.id)+1:K.length}else{const ce=t.find(Le=>Le.id===ne);if(!(ce!=null&&ce.chapters[0]))return;const be=K.filter(Le=>Le.partId===ce.id&&Le.chapterId===ce.chapters[0].id),Pe=be[be.length-1];oe=Pe?K.findIndex(Le=>Le.id===Pe.id)+1:0}const Q=K.findIndex(ce=>ce.id===z.id);if(Q===-1)return;const X=K.filter(ce=>ce.id!==z.id),V=Q({onDragEnter:pe=>{pe.preventDefault(),pe.stopPropagation(),pe.dataTransfer.dropEffect="move",E({type:_,id:se})},onDragOver:pe=>{pe.preventDefault(),pe.stopPropagation(),pe.dataTransfer.dropEffect="move",E({type:_,id:se})},onDragLeave:()=>E(null),onDrop:pe=>{E(null);const ge=Dg(pe.dataTransfer.getData("text/plain"));if(ge&&!(_==="section"&&ge.type==="section"&&ge.id===se))if(_==="part")if(ge.type==="part")D(pe,"part",se);else{const z=t.find(U=>U.id===se);(z==null?void 0:z.chapters[0])&&ne&&D(pe,"part",se,ne)}else _==="chapter"&&ne?(ge.type==="section"||ge.type==="chapter")&&D(pe,"chapter",se,ne):_==="section"&&ne&&D(pe,"section",se,ne)}}),O=_=>rV[_]??String(_+1);return r.jsx("div",{className:"space-y-3",children:t.map((_,se)=>{var F,L,W,oe;const ne=_.title==="序言"||_.title.includes("序言"),pe=_.title==="尾声"||_.title.includes("尾声"),ge=_.title==="附录"||_.title.includes("附录"),z=P("part",_.id),K=e.includes(_.id),U=_.chapters.length,I=_.chapters.reduce((Q,X)=>Q+X.sections.length,0);if(ne&&_.chapters.length===1&&_.chapters[0].sections.length===1){const Q=_.chapters[0].sections[0],X=P("section",Q.id),V={partId:_.id,partTitle:_.title,chapterId:_.chapters[0].id,chapterTitle:_.chapters[0].title};return r.jsxs("div",{draggable:!0,onDragStart:re=>{re.stopPropagation(),re.dataTransfer.setData("text/plain","section:"+Q.id),re.dataTransfer.effectAllowed="move",k({type:"section",id:Q.id})},onDragEnd:()=>{k(null),E(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] ${X?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":""} ${M("section",Q.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...R("section",Q.id,V),children:[r.jsxs("div",{className:"flex items-center gap-3 flex-1 min-w-0 select-none",children:[r.jsx(pa,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:re=>re.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(Q.id),onChange:()=>y(Q.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsx("div",{className:"w-8 h-8 rounded-lg bg-gray-600/50 flex items-center justify-center shrink-0",children:r.jsx(Hs,{className:"w-4 h-4 text-gray-400"})}),r.jsxs("span",{className:"font-medium text-gray-200 truncate",children:[_.chapters[0].title," | ",Q.title]}),w.includes(Q.id)&&r.jsx("span",{title:"已置顶",children:r.jsx(Ll,{className:"w-3.5 h-3.5 text-amber-400 fill-amber-400 shrink-0"})})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:re=>re.stopPropagation(),onClick:re=>re.stopPropagation(),children:[Q.price===0||Q.isFree?r.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"免费"}):r.jsxs("span",{className:"text-xs text-gray-500",children:["¥",Q.price]}),r.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",Q.clickCount??0," · 付款 ",Q.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(Q.hotScore??0).toFixed(1)," · 第",Q.hotRank&&Q.hotRank>0?Q.hotRank:"-","名"]}),N&&r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>N(Q),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),r.jsxs("div",{className:"flex gap-1",children:[r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(Q),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(Q),className:"text-gray-500 hover:text-red-400 h-7 px-2",children:r.jsx(Jn,{className:"w-3.5 h-3.5"})})]})]})]},_.id)}if(_.id==="part-2026-daily"){const Q=P("part",_.id);return r.jsxs("div",{className:`rounded-xl border overflow-hidden transition-all duration-200 ${Q?"border-[#38bdac] ring-2 ring-[#38bdac]/40 bg-[#38bdac]/5":"border-gray-700/50 bg-[#1C1C1E]"}`,...R("part",_.id,{partId:_.id,partTitle:_.title,chapterId:((F=_.chapters[0])==null?void 0:F.id)??"",chapterTitle:((L=_.chapters[0])==null?void 0:L.title)??""}),children:[r.jsxs("div",{draggable:!0,onDragStart:X=>{X.stopPropagation(),X.dataTransfer.setData("text/plain","part:"+_.id),X.dataTransfer.effectAllowed="move",k({type:"part",id:_.id})},onDragEnd:()=>{k(null),E(null)},className:`flex items-center justify-between p-4 cursor-grab active:cursor-grabbing select-none transition-all duration-200 ${M("part",_.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":"hover:bg-[#162840]/50"}`,onClick:()=>n(_.id),children:[r.jsxs("div",{className:"flex items-center gap-3 min-w-0",children:[r.jsx(pa,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),r.jsx("div",{className:"w-10 h-10 rounded-xl bg-[#38bdac]/80 flex items-center justify-center text-white font-bold shrink-0",children:"派"}),r.jsxs("div",{children:[r.jsx("h3",{className:"font-bold text-white text-base",children:_.title}),r.jsxs("p",{className:"text-xs text-gray-500 mt-0.5",children:["共 ",I," 节"]})]})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:X=>X.stopPropagation(),onClick:X=>X.stopPropagation(),children:[o&&r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>o(_),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"在本篇下新增章节",children:r.jsx(pn,{className:"w-3.5 h-3.5"})}),h&&r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>h(_),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑篇名",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),f&&r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>f(_),className:"text-gray-500 hover:text-red-400 h-7 px-2",title:"删除本篇",children:r.jsx(Jn,{className:"w-3.5 h-3.5"})}),r.jsxs("span",{className:"text-xs text-gray-500",children:[U,"章"]}),K?r.jsx(yd,{className:"w-5 h-5 text-gray-500"}):r.jsx(Ol,{className:"w-5 h-5 text-gray-500"})]})]}),K&&_.chapters.length>0&&r.jsx("div",{className:"border-t border-gray-700/50 pl-4 pr-4 pb-4 pt-3 space-y-4",children:_.chapters.map(X=>r.jsxs("div",{className:"space-y-2",children:[r.jsxs("div",{className:"flex items-center gap-2 w-full",children:[r.jsx("p",{className:"text-xs text-gray-500 pb-1 flex-1",children:X.title}),r.jsxs("div",{className:"flex gap-0.5 shrink-0",onClick:V=>V.stopPropagation(),children:[m&&r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>m(_,X),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑章节名称",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),c&&r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>c(_),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"新增第X章",children:r.jsx(pn,{className:"w-3.5 h-3.5"})}),u&&r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>u(_,X),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",title:"删除本章",children:r.jsx(Jn,{className:"w-3.5 h-3.5"})})]})]}),r.jsx("div",{className:"space-y-1 pl-2",children:X.sections.map(V=>{const re=P("section",V.id);return r.jsxs("div",{draggable:!0,onDragStart:ue=>{ue.stopPropagation(),ue.dataTransfer.setData("text/plain","section:"+V.id),ue.dataTransfer.effectAllowed="move",k({type:"section",id:V.id})},onDragEnd:()=>{k(null),E(null)},className:`flex items-center justify-between py-2 px-3 rounded-lg min-h-[40px] cursor-grab active:cursor-grabbing select-none transition-all duration-200 ${re?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":"hover:bg-[#162840]/50"} ${M("section",V.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...R("section",V.id,{partId:_.id,partTitle:_.title,chapterId:X.id,chapterTitle:X.title}),children:[r.jsxs("div",{className:"flex items-center gap-2 min-w-0 flex-1",children:[r.jsx(pa,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:ue=>ue.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(V.id),onChange:()=>y(V.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsxs("span",{className:"text-sm text-gray-200 truncate",children:[V.id," ",V.title]}),w.includes(V.id)&&r.jsx("span",{title:"已置顶",children:r.jsx(Ll,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[r.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",V.clickCount??0," · 付款 ",V.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(V.hotScore??0).toFixed(1)," · 第",V.hotRank&&V.hotRank>0?V.hotRank:"-","名"]}),N&&r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>N(V),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(V),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(V),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",children:r.jsx(Jn,{className:"w-3.5 h-3.5"})})]})]},V.id)})})]},X.id))})]},_.id)}if(ge)return r.jsxs("div",{className:"rounded-xl border border-gray-700/50 bg-[#1C1C1E] p-5",children:[r.jsx("h3",{className:"text-sm font-medium text-gray-400 mb-4",children:"附录"}),r.jsx("div",{className:"space-y-3",children:_.chapters.map((Q,X)=>Q.sections.length>0?Q.sections.map(V=>{const re=P("section",V.id);return r.jsxs("div",{draggable:!0,onDragStart:ue=>{ue.stopPropagation(),ue.dataTransfer.setData("text/plain","section:"+V.id),ue.dataTransfer.effectAllowed="move",k({type:"section",id:V.id})},onDragEnd:()=>{k(null),E(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 ${re?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":"hover:bg-[#162840]/50"} ${M("section",V.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...R("section",V.id,{partId:_.id,partTitle:_.title,chapterId:Q.id,chapterTitle:Q.title}),children:[r.jsxs("div",{className:"flex items-center gap-2 min-w-0 flex-1",children:[r.jsx(pa,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:ue=>ue.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(V.id),onChange:()=>y(V.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsxs("span",{className:"text-sm text-gray-300 truncate",children:["附录",X+1," | ",Q.title," | ",V.title]}),w.includes(V.id)&&r.jsx("span",{title:"已置顶",children:r.jsx(Ll,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[r.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",V.clickCount??0," · 付款 ",V.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(V.hotScore??0).toFixed(1)," · 第",V.hotRank&&V.hotRank>0?V.hotRank:"-","名"]}),N&&r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>N(V),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),r.jsxs("div",{className:"flex gap-1 opacity-0 group-hover:opacity-100 transition-opacity",children:[r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>a(V),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>i(V),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",children:r.jsx(Jn,{className:"w-3.5 h-3.5"})})]})]}),r.jsx(Ol,{className:"w-4 h-4 text-gray-500 shrink-0"})]},V.id)}):r.jsxs("div",{className:"flex justify-between items-center py-2 select-none hover:bg-[#162840]/50 rounded px-2 -mx-2",children:[r.jsxs("span",{className:"text-sm text-gray-500",children:["附录",X+1," | ",Q.title,"(空)"]}),r.jsx(Ol,{className:"w-4 h-4 text-gray-500 shrink-0"})]},Q.id))})]},_.id);if(pe&&_.chapters.length===1&&_.chapters[0].sections.length===1){const Q=_.chapters[0].sections[0],X=P("section",Q.id),V={partId:_.id,partTitle:_.title,chapterId:_.chapters[0].id,chapterTitle:_.chapters[0].title};return r.jsxs("div",{draggable:!0,onDragStart:re=>{re.stopPropagation(),re.dataTransfer.setData("text/plain","section:"+Q.id),re.dataTransfer.effectAllowed="move",k({type:"section",id:Q.id})},onDragEnd:()=>{k(null),E(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] ${X?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":""} ${M("section",Q.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...R("section",Q.id,V),children:[r.jsxs("div",{className:"flex items-center gap-3 flex-1 min-w-0 select-none",children:[r.jsx(pa,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:re=>re.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(Q.id),onChange:()=>y(Q.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsx("div",{className:"w-8 h-8 rounded-lg bg-gray-600/50 flex items-center justify-center shrink-0",children:r.jsx(Hs,{className:"w-4 h-4 text-gray-400"})}),r.jsxs("span",{className:"font-medium text-gray-200 truncate",children:[_.chapters[0].title," | ",Q.title]})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:re=>re.stopPropagation(),onClick:re=>re.stopPropagation(),children:[Q.price===0||Q.isFree?r.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"免费"}):r.jsxs("span",{className:"text-xs text-gray-500",children:["¥",Q.price]}),r.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",Q.clickCount??0," · 付款 ",Q.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(Q.hotScore??0).toFixed(1)," · 第",Q.hotRank&&Q.hotRank>0?Q.hotRank:"-","名"]}),N&&r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>N(Q),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),r.jsxs("div",{className:"flex gap-1",children:[r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(Q),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(Q),className:"text-gray-500 hover:text-red-400 h-7 px-2",children:r.jsx(Jn,{className:"w-3.5 h-3.5"})})]})]})]},_.id)}return pe?r.jsxs("div",{className:"rounded-xl border border-gray-700/50 bg-[#1C1C1E] p-5",children:[r.jsx("h3",{className:"text-sm font-medium text-gray-400 mb-4",children:"尾声"}),r.jsx("div",{className:"space-y-3",children:_.chapters.map(Q=>Q.sections.map(X=>{const V=P("section",X.id);return r.jsxs("div",{draggable:!0,onDragStart:re=>{re.stopPropagation(),re.dataTransfer.setData("text/plain","section:"+X.id),re.dataTransfer.effectAllowed="move",k({type:"section",id:X.id})},onDragEnd:()=>{k(null),E(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 ${V?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":"hover:bg-[#162840]/50"} ${M("section",X.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...R("section",X.id,{partId:_.id,partTitle:_.title,chapterId:Q.id,chapterTitle:Q.title}),children:[r.jsxs("div",{className:"flex items-center gap-2 min-w-0 flex-1",children:[r.jsx(pa,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:re=>re.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(X.id),onChange:()=>y(X.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsxs("span",{className:"text-sm text-gray-300",children:[Q.title," | ",X.title]})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[r.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",X.clickCount??0," · 付款 ",X.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(X.hotScore??0).toFixed(1)," · 第",X.hotRank&&X.hotRank>0?X.hotRank:"-","名"]}),N&&r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>N(X),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),r.jsxs("div",{className:"flex gap-1",children:[r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(X),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(X),className:"text-gray-500 hover:text-red-400 h-7 px-2",children:r.jsx(Jn,{className:"w-3.5 h-3.5"})})]})]})]},X.id)}))})]},_.id):r.jsxs("div",{className:`rounded-xl border bg-[#1C1C1E] overflow-hidden transition-all duration-200 ${z?"border-[#38bdac] ring-2 ring-[#38bdac]/40 bg-[#38bdac]/5":"border-gray-700/50"}`,...R("part",_.id,{partId:_.id,partTitle:_.title,chapterId:((W=_.chapters[0])==null?void 0:W.id)??"",chapterTitle:((oe=_.chapters[0])==null?void 0:oe.title)??""}),children:[r.jsxs("div",{draggable:!0,onDragStart:Q=>{Q.stopPropagation(),Q.dataTransfer.setData("text/plain","part:"+_.id),Q.dataTransfer.effectAllowed="move",k({type:"part",id:_.id})},onDragEnd:()=>{k(null),E(null)},className:`flex items-center justify-between p-4 cursor-grab active:cursor-grabbing select-none transition-all duration-200 ${M("part",_.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac] rounded-xl shadow-xl shadow-[#38bdac]/20":"hover:bg-[#162840]/50"}`,onClick:()=>n(_.id),children:[r.jsxs("div",{className:"flex items-center gap-3 min-w-0",children:[r.jsx(pa,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),r.jsx("div",{className:"w-10 h-10 rounded-xl bg-[#38bdac] flex items-center justify-center text-white font-bold shadow-lg shadow-[#38bdac]/30 shrink-0",children:O(se)}),r.jsxs("div",{children:[r.jsx("h3",{className:"font-bold text-white text-base",children:_.title}),r.jsxs("p",{className:"text-xs text-gray-500 mt-0.5",children:["共 ",I," 节"]})]})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:Q=>Q.stopPropagation(),onClick:Q=>Q.stopPropagation(),children:[o&&r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>o(_),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"在本篇下新增章节",children:r.jsx(pn,{className:"w-3.5 h-3.5"})}),h&&r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>h(_),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑篇名",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),f&&r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>f(_),className:"text-gray-500 hover:text-red-400 h-7 px-2",title:"删除本篇",children:r.jsx(Jn,{className:"w-3.5 h-3.5"})}),r.jsxs("span",{className:"text-xs text-gray-500",children:[U,"章"]}),K?r.jsx(yd,{className:"w-5 h-5 text-gray-500"}):r.jsx(Ol,{className:"w-5 h-5 text-gray-500"})]})]}),K&&r.jsx("div",{className:"border-t border-gray-700/50 pl-4 pr-4 pb-4 pt-3 space-y-4",children:_.chapters.map(Q=>{const X=P("chapter",Q.id);return r.jsxs("div",{className:"space-y-2",children:[r.jsxs("div",{className:"flex items-center gap-2 w-full",children:[r.jsxs("div",{draggable:!0,onDragStart:V=>{V.stopPropagation(),V.dataTransfer.setData("text/plain","chapter:"+Q.id),V.dataTransfer.effectAllowed="move",k({type:"chapter",id:Q.id})},onDragEnd:()=>{k(null),E(null)},onDragEnter:V=>{V.preventDefault(),V.stopPropagation(),V.dataTransfer.dropEffect="move",E({type:"chapter",id:Q.id})},onDragOver:V=>{V.preventDefault(),V.stopPropagation(),V.dataTransfer.dropEffect="move",E({type:"chapter",id:Q.id})},onDragLeave:()=>E(null),onDrop:V=>{E(null);const re=Dg(V.dataTransfer.getData("text/plain"));if(!re)return;const ue={partId:_.id,partTitle:_.title,chapterId:Q.id,chapterTitle:Q.title};(re.type==="section"||re.type==="chapter")&&D(V,"chapter",Q.id,ue)},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 ${X?"bg-[#38bdac]/15 ring-1 ring-[#38bdac]/50":""} ${M("chapter",Q.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":"hover:bg-[#162840]/30"}`,children:[r.jsx(pa,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),r.jsx("p",{className:"text-xs text-gray-500 pb-1 flex-1",children:Q.title})]}),r.jsxs("div",{className:"flex gap-0.5 shrink-0",onClick:V=>V.stopPropagation(),children:[m&&r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>m(_,Q),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑章节名称",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),c&&r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>c(_),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"新增第X章",children:r.jsx(pn,{className:"w-3.5 h-3.5"})}),u&&r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>u(_,Q),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",title:"删除本章",children:r.jsx(Jn,{className:"w-3.5 h-3.5"})})]})]}),r.jsx("div",{className:"space-y-1 pl-2",children:Q.sections.map(V=>{const re=P("section",V.id);return r.jsxs("div",{draggable:!0,onDragStart:ue=>{ue.stopPropagation(),ue.dataTransfer.setData("text/plain","section:"+V.id),ue.dataTransfer.effectAllowed="move",k({type:"section",id:V.id})},onDragEnd:()=>{k(null),E(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 ${re?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":""} ${M("section",V.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac] shadow-lg":"hover:bg-[#162840]/50"}`,...R("section",V.id,{partId:_.id,partTitle:_.title,chapterId:Q.id,chapterTitle:Q.title}),children:[r.jsxs("div",{className:"flex items-center gap-3 min-w-0 flex-1",children:[y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:ue=>ue.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(V.id),onChange:()=>y(V.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsx(pa,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),r.jsx("div",{className:`w-2 h-2 rounded-full shrink-0 ${V.price===0||V.isFree?"border-2 border-[#38bdac] bg-transparent":"bg-gray-500"}`}),r.jsxs("span",{className:"text-sm text-gray-200 truncate",children:[V.id," ",V.title]}),w.includes(V.id)&&r.jsx("span",{title:"已置顶",children:r.jsx(Ll,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:ue=>ue.stopPropagation(),onClick:ue=>ue.stopPropagation(),children:[V.isNew&&r.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"NEW"}),V.price===0||V.isFree?r.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"免费"}):r.jsxs("span",{className:"text-xs text-gray-500",children:["¥",V.price]}),r.jsxs("span",{className:"text-[10px] text-gray-500",title:"点击次数 · 付款笔数",children:["点击 ",V.clickCount??0," · 付款 ",V.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(V.hotScore??0).toFixed(1)," · 第",V.hotRank&&V.hotRank>0?V.hotRank:"-","名"]}),N&&r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>N(V),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5 shrink-0",children:"付款记录"}),r.jsxs("div",{className:"flex gap-0.5 opacity-0 group-hover:opacity-100 transition-opacity",children:[r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(V),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑",children:r.jsx(Vt,{className:"w-3.5 h-3.5"})}),r.jsx(Z,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(V),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",children:r.jsx(Jn,{className:"w-3.5 h-3.5"})})]})]})]},V.id)})})]},Q.id)})})]},_.id)})})}function iV(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(),s=n?`/api/admin/ckb/devices?${n}`:"/api/admin/ckb/devices";return Re(s)}function oV(t){return Re(`/api/db/person?personId=${encodeURIComponent(t)}`)}function lV(t){var s;const e=new URLSearchParams;e.set("page",String(t.page)),e.set("limit",String(t.limit)),(s=t==null?void 0:t.keyword)!=null&&s.trim()&&e.set("keyword",t.keyword.trim());const n=e.toString();return Re(n?`/api/admin/ckb/plans?${n}`:"/api/admin/ckb/plans")}const q4=11,Tw={personId:"",name:"",aliases:"",label:"",sceneId:q4,ckbApiKey:"",greeting:"你好,请通过",tips:"请注意消息,稍后加你微信",remarkType:"phone",remarkFormat:"",addFriendInterval:1,startTime:"09:00",endTime:"18:00",deviceGroups:""};function cV({open:t,onOpenChange:e,editingPerson:n,onSubmit:s}){var K;const a=!!n,[i,o]=b.useState(Tw),[c,u]=b.useState(!1),[h,f]=b.useState(!1),[m,g]=b.useState([]),[y,N]=b.useState(!1),[w,v]=b.useState(""),[k,C]=b.useState([]),[E,M]=b.useState(!1),[P,$]=b.useState(""),[D,R]=b.useState(!1),[O,_]=b.useState({});b.useEffect(()=>{t&&(v(""),o(n?{personId:n.personId??n.name??"",name:n.name??"",aliases:n.aliases??"",label:n.label??"",sceneId:q4,ckbApiKey:n.ckbApiKey??"",greeting:"你好,请通过",tips:"请注意消息,稍后加你微信",remarkType:n.remarkType??"phone",remarkFormat:n.remarkFormat??"",addFriendInterval:n.addFriendInterval??1,startTime:n.startTime??"09:00",endTime:n.endTime??"18:00",deviceGroups:n.deviceGroups??""}:{...Tw}),_({}),m.length===0&&se(""),k.length===0&&ne(""))},[t,n]);const se=async U=>{N(!0);try{const I=await iV({page:1,limit:50,keyword:U});I!=null&&I.success&&Array.isArray(I.devices)?g(I.devices):I!=null&&I.error&&ae.error(I.error)}catch(I){ae.error(I instanceof Error?I.message:"加载设备列表失败")}finally{N(!1)}},ne=async U=>{M(!0);try{const I=await lV({page:1,limit:100,keyword:U});I!=null&&I.success&&Array.isArray(I.plans)?C(I.plans):I!=null&&I.error&&ae.error(I.error)}catch{ae.error("加载计划列表失败")}finally{M(!1)}},pe=U=>{const I=Array.isArray(U.deviceGroups)?U.deviceGroups.map(String).join(","):"";o(q=>({...q,ckbApiKey:U.apiKey||"",greeting:U.greeting||q.greeting,tips:U.tips||q.tips,remarkType:U.remarkType||q.remarkType,remarkFormat:U.remarkFormat||q.remarkFormat,addFriendInterval:U.addInterval||q.addFriendInterval,startTime:U.startTime||q.startTime,endTime:U.endTime||q.endTime,deviceGroups:I||q.deviceGroups})),R(!1),ae.success(`已选择计划「${U.name}」,参数已覆盖`)},ge=P.trim()?k.filter(U=>(U.name||"").includes(P.trim())||String(U.id).includes(P.trim())):k,z=async()=>{var F;const U={};(!i.name||!String(i.name).trim())&&(U.name="请填写名称");const I=i.addFriendInterval;if((typeof I!="number"||I<1)&&(U.addFriendInterval="添加间隔至少为 1 分钟"),(((F=i.deviceGroups)==null?void 0:F.split(",").map(L=>L.trim()).filter(Boolean))??[]).length===0&&(U.deviceGroups="请至少选择 1 台设备"),_(U),Object.keys(U).length>0){ae.error(U.name||U.addFriendInterval||U.deviceGroups||"请完善必填项");return}u(!0);try{await s(i),e(!1)}catch(L){ae.error(L instanceof Error?L.message:"保存失败")}finally{u(!1)}};return r.jsx(Mt,{open:t,onOpenChange:e,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-4xl max-h-[90vh] overflow-y-auto",children:[r.jsxs(At,{children:[r.jsx(It,{className:"text-[#38bdac]",children:a?"编辑人物":"添加人物 — 存客宝 API 获客"}),r.jsx(vd,{className:"text-gray-400 text-sm",children:a?"修改后同步到存客宝计划":"添加时自动生成 token,并同步创建存客宝场景获客计划"})]}),r.jsxs("div",{className:"space-y-6 py-2",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-xs font-medium text-gray-400 uppercase tracking-wider mb-3",children:"基础信息"}),r.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[r.jsxs("div",{className:"space-y-1.5",children:[r.jsxs(ee,{className:"text-gray-400 text-xs",children:["名称 ",r.jsx("span",{className:"text-red-400",children:"*"})]}),r.jsx(ie,{className:`bg-[#0a1628] text-white ${O.name?"border-red-500 focus-visible:ring-red-500":"border-gray-700"}`,placeholder:"如 卡若",value:i.name,onChange:U=>{o(I=>({...I,name:U.target.value})),O.name&&_(I=>({...I,name:void 0}))}}),O.name&&r.jsx("p",{className:"text-xs text-red-400",children:O.name})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"人物ID(可选)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"自动生成",value:i.personId,onChange:U=>o(I=>({...I,personId:U.target.value})),disabled:a})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"标签(身份/角色)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 超级个体",value:i.label,onChange:U=>o(I=>({...I,label:U.target.value}))})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"别名(逗号分隔,@ 可匹配)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 卡卡, 若若",value:i.aliases,onChange:U=>o(I=>({...I,aliases:U.target.value}))})]})]})]}),r.jsxs("div",{className:"border-t border-gray-700/50 pt-5",children:[r.jsx("p",{className:"text-xs font-medium text-gray-400 uppercase tracking-wider mb-4",children:"存客宝 API 获客配置"}),r.jsxs("div",{className:"grid grid-cols-2 gap-x-8 gap-y-4",children:[r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-1.5 relative",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"选择存客宝获客计划"}),r.jsxs("div",{className:"flex gap-2",children:[r.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:()=>R(!D),children:i.ckbApiKey?r.jsx("span",{className:"text-white truncate",children:((K=k.find(U=>U.apiKey===i.ckbApiKey))==null?void 0:K.name)||`密钥: ${i.ckbApiKey.slice(0,20)}...`}):r.jsx("span",{className:"text-gray-500",children:"点击选择已有计划 / 新建时自动创建"})}),r.jsx(Z,{type:"button",variant:"outline",size:"sm",className:"border-gray-600 text-gray-200 shrink-0",onClick:()=>{ne(P),R(!0)},disabled:E,children:E?"加载...":"刷新"})]}),D&&r.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:[r.jsx("div",{className:"p-2 border-b border-gray-700/60",children:r.jsx(ie,{className:"bg-[#050c18] border-gray-700 text-white h-8 text-xs",placeholder:"搜索计划名称...",value:P,onChange:U=>$(U.target.value),onKeyDown:U=>{U.key==="Enter"&&ne(P)},autoFocus:!0})}),r.jsx("div",{className:"flex-1 overflow-y-auto",children:ge.length===0?r.jsx("div",{className:"text-center py-4 text-gray-500 text-xs",children:E?"加载中...":"暂无计划"}):ge.map(U=>r.jsxs("div",{className:`px-3 py-2 cursor-pointer hover:bg-[#38bdac]/10 text-sm flex items-center justify-between ${i.ckbApiKey===U.apiKey?"bg-[#38bdac]/20 text-[#38bdac]":"text-white"}`,onClick:()=>pe(U),children:[r.jsxs("div",{className:"truncate",children:[r.jsx("span",{className:"font-medium",children:U.name}),r.jsxs("span",{className:"text-xs text-gray-500 ml-2",children:["ID:",String(U.id)]})]}),U.enabled?r.jsx("span",{className:"text-[10px] text-green-400 bg-green-400/10 px-1.5 rounded shrink-0 ml-2",children:"启用"}):r.jsx("span",{className:"text-[10px] text-gray-500 bg-gray-500/10 px-1.5 rounded shrink-0 ml-2",children:"停用"})]},String(U.id)))}),r.jsx("div",{className:"p-2 border-t border-gray-700/60 flex justify-end",children:r.jsx(Z,{type:"button",size:"sm",variant:"ghost",className:"text-gray-400 h-7 text-xs",onClick:()=>R(!1),children:"关闭"})})]}),r.jsx("p",{className:"text-xs text-gray-500",children:"选择计划后自动覆盖下方参数。新建人物时若不选择则自动创建新计划。"})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsxs(ee,{className:"text-gray-400 text-xs",children:["选择设备 ",r.jsx("span",{className:"text-red-400",children:"*"})]}),r.jsxs("div",{className:`flex gap-2 rounded-md border ${O.deviceGroups?"border-red-500":"border-gray-700"}`,children:[r.jsx(ie,{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)}),r.jsx(Z,{type:"button",variant:"outline",className:"border-0 border-l border-inherit rounded-r-md text-gray-200",onClick:()=>f(!0),children:"选择"})]}),O.deviceGroups?r.jsx("p",{className:"text-xs text-red-400",children:O.deviceGroups}):r.jsx("p",{className:"text-xs text-gray-500",children:"从存客宝设备列表中选择,至少选择 1 台设备参与获客计划。"})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"好友备注"}),r.jsxs(Rl,{value:i.remarkType,onValueChange:U=>o(I=>({...I,remarkType:U})),children:[r.jsx(xo,{className:"bg-[#0a1628] border-gray-700 text-white",children:r.jsx(Pl,{placeholder:"选择备注类型"})}),r.jsxs(yo,{children:[r.jsx(zs,{value:"phone",children:"手机号"}),r.jsx(zs,{value:"nickname",children:"昵称"}),r.jsx(zs,{value:"source",children:"来源"})]})]})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"备注格式"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 手机号+SOUL链接人与事-{名称},留空用默认",value:i.remarkFormat,onChange:U=>o(I=>({...I,remarkFormat:U.target.value}))})]})]}),r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"打招呼语"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"你好,请通过",value:i.greeting,onChange:U=>o(I=>({...I,greeting:U.target.value}))})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"添加间隔(分钟)"}),r.jsx(ie,{type:"number",min:1,className:`bg-[#0a1628] text-white ${O.addFriendInterval?"border-red-500 focus-visible:ring-red-500":"border-gray-700"}`,value:i.addFriendInterval,onChange:U=>{o(I=>({...I,addFriendInterval:Number(U.target.value)||1})),O.addFriendInterval&&_(I=>({...I,addFriendInterval:void 0}))}}),O.addFriendInterval&&r.jsx("p",{className:"text-xs text-red-400",children:O.addFriendInterval})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"允许加人时间段"}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(ie,{type:"time",className:"bg-[#0a1628] border-gray-700 text-white w-24",value:i.startTime,onChange:U=>o(I=>({...I,startTime:U.target.value}))}),r.jsx("span",{className:"text-gray-500 text-sm shrink-0",children:"至"}),r.jsx(ie,{type:"time",className:"bg-[#0a1628] border-gray-700 text-white w-24",value:i.endTime,onChange:U=>o(I=>({...I,endTime:U.target.value}))})]})]})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"获客成功提示"}),r.jsx(sc,{className:"bg-[#0a1628] border-gray-700 text-white min-h-[72px] resize-none",placeholder:"请注意消息,稍后加你微信",value:i.tips,onChange:U=>o(I=>({...I,tips:U.target.value}))})]})]})]})]})]}),r.jsxs(Zt,{className:"gap-3 pt-2",children:[r.jsx(Z,{variant:"outline",onClick:()=>e(!1),className:"border-gray-600 text-gray-300",children:"取消"}),r.jsx(Z,{onClick:z,disabled:c,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:c?"保存中...":a?"保存":"添加"})]}),h&&r.jsx("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-black/60",children:r.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:[r.jsxs("div",{className:"flex items-center justify-between px-5 py-3 border-b border-gray-700/60",children:[r.jsxs("div",{children:[r.jsx("h3",{className:"text-sm font-medium text-white",children:"选择设备"}),r.jsx("p",{className:"text-xs text-gray-400 mt-0.5",children:"勾选需要参与本计划的设备,可多选"})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(ie,{className:"bg-[#050c18] border-gray-700 text-white h-8 w-52",placeholder:"搜索备注/微信号/IMEI",value:w,onChange:U=>v(U.target.value),onKeyDown:U=>{U.key==="Enter"&&se(w)}}),r.jsx(Z,{type:"button",size:"sm",variant:"outline",className:"border-gray-600 text-gray-200 h-8",onClick:()=>se(w),disabled:y,children:"刷新"}),r.jsx(Z,{type:"button",size:"icon",variant:"outline",className:"border-gray-600 text-gray-300 h-8 w-8",onClick:()=>f(!1),children:"✕"})]})]}),r.jsx("div",{className:"flex-1 overflow-y-auto",children:y?r.jsx("div",{className:"flex h-full items-center justify-center text-gray-400 text-sm",children:"正在加载设备列表…"}):m.length===0?r.jsx("div",{className:"flex h-full items-center justify-center text-gray-500 text-sm",children:"暂无设备数据,请检查存客宝账号与开放 API 配置"}):r.jsx("div",{className:"p-4 space-y-2",children:m.map(U=>{const I=String(U.id??""),q=i.deviceGroups?i.deviceGroups.split(",").map(W=>W.trim()).filter(Boolean):[],F=q.includes(I),L=()=>{let W;F?W=q.filter(oe=>oe!==I):W=[...q,I],o(oe=>({...oe,deviceGroups:W.join(",")})),W.length>0&&_(oe=>({...oe,deviceGroups:void 0}))};return r.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:[r.jsx("input",{type:"checkbox",className:"h-4 w-4 accent-[#38bdac]",checked:F,onChange:L}),r.jsxs("div",{className:"flex flex-col min-w-0",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("span",{className:"text-sm text-white truncate max-w-xs",children:U.memo||U.wechatId||`设备 ${I}`}),U.status==="online"&&r.jsx("span",{className:"rounded-full bg-emerald-500/20 text-emerald-400 text-[11px] px-2 py-0.5",children:"在线"}),U.status==="offline"&&r.jsx("span",{className:"rounded-full bg-gray-600/20 text-gray-400 text-[11px] px-2 py-0.5",children:"离线"})]}),r.jsxs("div",{className:"text-[11px] text-gray-400 mt-0.5",children:[r.jsxs("span",{className:"mr-3",children:["ID: ",I]}),U.wechatId&&r.jsxs("span",{className:"mr-3",children:["微信号: ",U.wechatId]}),typeof U.totalFriend=="number"&&r.jsxs("span",{children:["好友数: ",U.totalFriend]})]})]})]},I)})})}),r.jsxs("div",{className:"flex justify-between items-center px-5 py-3 border-t border-gray-700/60",children:[r.jsxs("span",{className:"text-xs text-gray-400",children:["已选择"," ",i.deviceGroups?i.deviceGroups.split(",").filter(Boolean).length:0," ","台设备"]}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx(Z,{type:"button",variant:"outline",className:"border-gray-600 text-gray-200 h-8 px-4",onClick:()=>f(!1),children:"取消"}),r.jsx(Z,{type:"button",className:"bg-[#38bdac] hover:bg-[#2da396] text-white h-8 px-4",onClick:()=>f(!1),children:"确定"})]})]})]})})]})})}function dV(t){const e=new Map;for(const a of t){const i=a.partId||"part-1",o=a.partTitle||"未分类",c=a.chapterId||"chapter-1",u=a.chapterTitle||"未分类";e.has(i)||e.set(i,{id:i,title:o,chapters:new Map});const h=e.get(i);h.chapters.has(c)||h.chapters.set(c,{id:c,title:u,sections:[]}),h.chapters.get(c).sections.push({id:a.id,mid:a.mid,title:a.title,price:a.price??1,filePath:a.filePath,isFree:a.isFree,isNew:a.isNew,clickCount:a.clickCount??0,payCount:a.payCount??0,hotScore:a.hotScore??0,hotRank:a.hotRank??0})}const n=Array.from(e.values()).map(a=>({...a,chapters:Array.from(a.chapters.values())})),s=a=>a.title.includes("序言")?0:a.id==="part-2026-daily"?1.5:a.title.includes("附录")?2:a.title.includes("尾声")?3:1;return n.sort((a,i)=>{const o=s(a),c=s(i);return o!==c?o-c:0})}function uV(){var Zi,xc,es;const[t,e]=b.useState([]),[n,s]=b.useState(!0),[a,i]=b.useState([]),[o,c]=b.useState(null),[u,h]=b.useState(!1),[f,m]=b.useState(!1),[g,y]=b.useState(!1),[N,w]=b.useState(""),[v,k]=b.useState([]),[C,E]=b.useState(!1),[M,P]=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}),[$,D]=b.useState(null),[R,O]=b.useState(!1),[_,se]=b.useState(!1),[ne,pe]=b.useState(null),[ge,z]=b.useState(!1),[K,U]=b.useState([]),[I,q]=b.useState(!1),[F,L]=b.useState(""),[W,oe]=b.useState(""),[Q,X]=b.useState(!1),[V,re]=b.useState(""),[ue,ce]=b.useState(!1),[be,Pe]=b.useState(null),[Le,lt]=b.useState(!1),[Rt,dn]=b.useState(!1),[gt,sn]=b.useState({readWeight:.5,recencyWeight:.3,payWeight:.2}),[Pn,Pt]=b.useState(!1),[Qt,rn]=b.useState(!1),[On,ms]=b.useState(1),[Dn,Wn]=b.useState([]),[J,Ke]=b.useState(!1),[Ge,mt]=b.useState([]),[ct,st]=b.useState(!1),[pt,Lt]=b.useState(20),[yn,gs]=b.useState(!1),[js,Mr]=b.useState(!1),[Ks,Ar]=b.useState([]),[me,ye]=b.useState([]),[Ot,Zn]=b.useState([]),[Ra,Hi]=b.useState(!1),[ks,Pa]=b.useState(1),[qs,Ir]=b.useState(20),[cr,Rr]=b.useState(0),[dr,Ko]=b.useState(1),[Gs,Oa]=b.useState(""),[Da,ur]=b.useState(!1),[qo,Zr]=b.useState(null),[bt,un]=b.useState({tagId:"",label:"",url:"",type:"url",appId:"",pagePath:""}),[La,_a]=b.useState(!1),[Go,ea]=b.useState(!1),[Wi,ta]=b.useState(null),[hr,za]=b.useState(null),[cc,Ut]=b.useState({}),[Jo,na]=b.useState(!1),[$a,sa]=b.useState(""),[Fa,Ui]=b.useState(""),[G,Oe]=b.useState([]),[Be,Qe]=b.useState(0),[Kt,xs]=b.useState(1),[Yo,qt]=b.useState(!1),Un=b.useRef(null),an=dV(t),fr=t.length,Js=10,Ki=Math.max(1,Math.ceil(Dn.length/Js)),Ba=Dn.slice((On-1)*Js,On*Js),En=async()=>{s(!0);try{const T=await Re("/api/db/book?action=list",{cache:"no-store"});e(Array.isArray(T==null?void 0:T.sections)?T.sections:[])}catch(T){console.error(T),e([])}finally{s(!1)}},ra=async()=>{Ke(!0);try{const T=await Re("/api/db/book?action=ranking",{cache:"no-store"}),H=Array.isArray(T==null?void 0:T.sections)?T.sections:[];Wn(H);const he=H.filter(xe=>xe.isPinned).map(xe=>xe.id);mt(he)}catch(T){console.error(T),Wn([])}finally{Ke(!1)}};b.useEffect(()=>{En(),ra()},[]);const qi=T=>{i(H=>H.includes(T)?H.filter(he=>he!==T):[...H,T])},cp=b.useCallback(T=>{const H=t,he=T.flatMap(xe=>{const et=H.find(wt=>wt.id===xe.id);return et?[{...et,partId:xe.partId,partTitle:xe.partTitle,chapterId:xe.chapterId,chapterTitle:xe.chapterTitle}]:[]});return e(he),_t("/api/db/book",{action:"reorder",items:T}).then(xe=>{xe&&xe.success===!1&&(e(H),ae.error("排序失败: "+(xe&&typeof xe=="object"&&"error"in xe?xe.error:"未知错误")))}).catch(xe=>{e(H),console.error("排序失败:",xe),ae.error("排序失败: "+(xe instanceof Error?xe.message:"网络或服务异常"))}),Promise.resolve()},[t]),dc=async T=>{if(confirm(`确定要删除章节「${T.title}」吗?此操作不可恢复。`))try{const H=await Hr(`/api/db/book?id=${encodeURIComponent(T.id)}`);H&&H.success!==!1?(ae.success("已删除"),En(),ra()):ae.error("删除失败: "+(H&&typeof H=="object"&&"error"in H?H.error:"未知错误"))}catch(H){console.error(H),ae.error("删除失败")}},vt=b.useCallback(async()=>{Pt(!0);try{const T=await Re("/api/db/config/full?key=article_ranking_weights",{cache:"no-store"}),H=T&&T.data;H&&typeof H.readWeight=="number"&&typeof H.recencyWeight=="number"&&typeof H.payWeight=="number"&&sn({readWeight:Math.max(0,Math.min(1,H.readWeight)),recencyWeight:Math.max(0,Math.min(1,H.recencyWeight)),payWeight:Math.max(0,Math.min(1,H.payWeight))})}catch{}finally{Pt(!1)}},[]);b.useEffect(()=>{Rt&&vt()},[Rt,vt]);const Wd=async()=>{const{readWeight:T,recencyWeight:H,payWeight:he}=gt,xe=T+H+he;if(Math.abs(xe-1)>.001){ae.error("三个权重之和必须等于 1");return}rn(!0);try{const et=await yt("/api/db/config",{key:"article_ranking_weights",value:{readWeight:T,recencyWeight:H,payWeight:he},description:"文章排名算法权重"});et&&et.success!==!1?(ae.success("排名权重已保存"),dn(!1),En(),ra()):ae.error("保存失败: "+(et&&typeof et=="object"&&"error"in et?et.error:""))}catch(et){console.error(et),ae.error("保存失败")}finally{rn(!1)}},uc=b.useCallback(async()=>{st(!0);try{const T=await Re("/api/db/config/full?key=pinned_section_ids",{cache:"no-store"}),H=T&&T.data;Array.isArray(H)&&mt(H)}catch{}finally{st(!1)}},[]),pr=b.useCallback(async()=>{try{const T=await Re("/api/db/persons");T!=null&&T.success&&T.persons&&Ar(T.persons.map(H=>{const he=H.deviceGroups,xe=Array.isArray(he)?he.join(","):he??"";return{id:H.token??H.personId??"",personId:H.personId,name:H.name,aliases:H.aliases??"",label:H.label??"",ckbApiKey:H.ckbApiKey??"",ckbPlanId:H.ckbPlanId,remarkType:H.remarkType,remarkFormat:H.remarkFormat,addFriendInterval:H.addFriendInterval,startTime:H.startTime,endTime:H.endTime,deviceGroups:xe}}))}catch{}},[]),Pr=b.useCallback(async()=>{try{const T=await Re("/api/db/link-tags");T!=null&&T.success&&T.linkTags&&ye(T.linkTags.map(H=>({id:H.tagId,label:H.label,url:H.url,type:H.type||"url",appId:H.appId||"",pagePath:H.pagePath||""})))}catch{}},[]),hc=b.useCallback(async()=>{try{const T=await Re("/api/db/ckb-person-leads");if(T!=null&&T.success&&T.byPerson){const H={};for(const he of T.byPerson)H[he.token]=he.total;Ut(H)}}catch{}},[]),Qo=b.useCallback(async(T,H,he=1)=>{sa(T),Ui(H),na(!0),xs(he),qt(!0);try{const xe=await Re(`/api/db/ckb-person-leads?token=${encodeURIComponent(T)}&page=${he}&pageSize=20`);xe!=null&&xe.success?(Oe(xe.records||[]),Qe(xe.total||0)):ae.error((xe==null?void 0:xe.error)||"加载获客详情失败")}catch(xe){ae.error(xe instanceof Error?xe.message:"加载获客详情失败")}finally{qt(!1)}},[]),aa=b.useCallback(async()=>{Hi(!0);try{const T=new URLSearchParams({page:String(ks),pageSize:String(qs)}),H=Gs.trim();H&&T.set("search",H);const he=await Re(`/api/db/link-tags?${T.toString()}`);if(he!=null&&he.success){const xe=Array.isArray(he.linkTags)?he.linkTags:[];Zn(xe.map(et=>({id:et.tagId,label:et.label,url:et.url,type:et.type||"url",appId:et.appId||"",pagePath:et.pagePath||""}))),Rr(typeof he.total=="number"?he.total:0),Ko(typeof he.totalPages=="number"&&he.totalPages>0?he.totalPages:1)}}catch(T){console.error(T),ae.error("加载链接标签失败")}finally{Hi(!1)}},[ks,qs,Gs]),[Va,Or]=b.useState([]),[Ss,Cs]=b.useState(""),[Ha,Ys]=b.useState(!1),Dr=b.useRef(null),Ud=b.useCallback(async()=>{try{const T=await Re("/api/admin/linked-miniprograms");T!=null&&T.success&&Array.isArray(T.data)&&Or(T.data.map(H=>({...H,key:H.key})))}catch{}},[]),fc=Va.filter(T=>!Ss.trim()||T.name.toLowerCase().includes(Ss.toLowerCase())||T.key&&T.key.toLowerCase().includes(Ss.toLowerCase())||T.appId.toLowerCase().includes(Ss.toLowerCase())),Wa=async T=>{const H=Ge.includes(T)?Ge.filter(he=>he!==T):[...Ge,T];mt(H);try{await yt("/api/db/config",{key:"pinned_section_ids",value:H,description:"强制置顶章节ID列表(精选推荐/首页最新更新)"}),ra()}catch{mt(Ge)}},Kd=b.useCallback(async()=>{gs(!0);try{const T=await Re("/api/db/config/full?key=unpaid_preview_percent",{cache:"no-store"}),H=T&&T.data;typeof H=="number"&&H>0&&H<=100&&Lt(H)}catch{}finally{gs(!1)}},[]),qd=async()=>{if(pt<1||pt>100){ae.error("预览比例需在 1~100 之间");return}Mr(!0);try{const T=await yt("/api/db/config",{key:"unpaid_preview_percent",value:pt,description:"小程序未付费内容默认预览比例(%)"});T&&T.success!==!1?ae.success("预览比例已保存"):ae.error("保存失败: "+(T.error||""))}catch{ae.error("保存失败")}finally{Mr(!1)}};b.useEffect(()=>{uc(),Kd(),pr(),Pr(),hc(),Ud()},[uc,Kd,pr,Pr,hc,Ud]),b.useEffect(()=>{aa()},[aa]);const Gi=async T=>{Pe({section:T,orders:[]}),lt(!0);try{const H=await Re(`/api/db/book?action=section-orders&id=${encodeURIComponent(T.id)}`),he=H!=null&&H.success&&Array.isArray(H.orders)?H.orders:[];Pe(xe=>xe?{...xe,orders:he}:null)}catch(H){console.error(H),Pe(he=>he?{...he,orders:[]}:null)}finally{lt(!1)}},Xo=async T=>{m(!0);try{const H=T.mid!=null&&T.mid>0?`/api/db/book?action=read&mid=${T.mid}`:`/api/db/book?action=read&id=${encodeURIComponent(T.id)}`,he=await Re(H);if(he!=null&&he.success&&he.section){const xe=he.section,et=xe.editionPremium===!0;c({id:T.id,originalId:T.id,title:he.section.title??T.title,price:he.section.price??T.price,content:he.section.content??"",filePath:T.filePath,isFree:T.isFree||T.price===0,isNew:xe.isNew??T.isNew,isPinned:Ge.includes(T.id),hotScore:T.hotScore??0,editionStandard:et?!1:xe.editionStandard??!0,editionPremium:et})}else c({id:T.id,originalId:T.id,title:T.title,price:T.price,content:"",filePath:T.filePath,isFree:T.isFree,isNew:T.isNew,isPinned:Ge.includes(T.id),hotScore:T.hotScore??0,editionStandard:!0,editionPremium:!1}),he&&!he.success&&ae.error("无法读取文件内容: "+(he.error||"未知错误"))}catch(H){console.error(H),c({id:T.id,title:T.title,price:T.price,content:"",filePath:T.filePath,isFree:T.isFree})}finally{m(!1)}},dp=async()=>{var T;if(o){y(!0);try{let H=o.content||"";const he=[new RegExp(`^#+\\s*${o.id.replace(".","\\.")}\\s+.*$`,"gm"),new RegExp(`^#+\\s*${o.id.replace(".","\\.")}[::].*$`,"gm"),new RegExp(`^#\\s+.*${(T=o.title)==null?void 0:T.slice(0,10).replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}.*$`,"gm")];for(const Ln of he)H=H.replace(Ln,"");H=H.replace(/^\s*\n+/,"").trim();const xe=o.originalId||o.id,et=o.id!==xe,wt=await _t("/api/db/book",{id:xe,...et?{newId:o.id}:{},title:o.title,price:o.isFree?0:o.price,content:H,isFree:o.isFree||o.price===0,isNew:o.isNew,hotScore:o.hotScore,editionStandard:o.editionPremium?!1:o.editionStandard??!0,editionPremium:o.editionPremium??!1,saveToFile:!0},{timeout:Xv}),on=et?o.id:xe;o.isPinned!==Ge.includes(on)&&await Wa(on),wt&&wt.success!==!1?(ae.success(`已保存:${o.title}`),c(null),En(),pr(),Pr()):ae.error("保存失败: "+(wt&&typeof wt=="object"&&"error"in wt?wt.error:"未知错误"))}catch(H){console.error(H);const he=H instanceof Error&&H.name==="AbortError"?"保存超时,请检查网络或稍后重试":"保存失败";ae.error(he)}finally{y(!1)}}},Ji=async()=>{if(!M.id||!M.title){ae.error("请填写章节ID和标题");return}y(!0);try{const T=an.find(xe=>xe.id===M.partId),H=T==null?void 0:T.chapters.find(xe=>xe.id===M.chapterId),he=await _t("/api/db/book",{id:M.id,title:M.title,price:M.isFree?0:M.price,content:M.content||"",partId:M.partId,partTitle:(T==null?void 0:T.title)??"",chapterId:M.chapterId,chapterTitle:(H==null?void 0:H.title)??"",isFree:M.isFree,isNew:M.isNew,editionStandard:M.editionPremium?!1:M.editionStandard??!0,editionPremium:M.editionPremium??!1,hotScore:M.hotScore??0,saveToFile:!1},{timeout:Xv});if(he&&he.success!==!1){if(M.isPinned){const xe=[...Ge,M.id];mt(xe);try{await yt("/api/db/config",{key:"pinned_section_ids",value:xe,description:"强制置顶章节ID列表(精选推荐/首页最新更新)"})}catch{}}ae.success(`章节创建成功:${M.title}`),h(!1),P({id:"",title:"",price:1,partId:"part-1",chapterId:"chapter-1",content:"",editionStandard:!0,editionPremium:!1,isFree:!1,isNew:!1,isPinned:!1,hotScore:0}),En(),pr(),Pr()}else ae.error("创建失败: "+(he&&typeof he=="object"&&"error"in he?he.error:"未知错误"))}catch(T){console.error(T),ae.error("创建失败")}finally{y(!1)}},Yi=T=>{P(H=>{var he;return{...H,partId:T.id,chapterId:((he=T.chapters[0])==null?void 0:he.id)??"chapter-1"}}),h(!0)},Ua=T=>{D({id:T.id,title:T.title})},Zo=async()=>{var T;if((T=$==null?void 0:$.title)!=null&&T.trim()){O(!0);try{const H=t.map(xe=>({id:xe.id,partId:xe.partId||"part-1",partTitle:xe.partId===$.id?$.title.trim():xe.partTitle||"",chapterId:xe.chapterId||"chapter-1",chapterTitle:xe.chapterTitle||""})),he=await _t("/api/db/book",{action:"reorder",items:H});if(he&&he.success!==!1){const xe=$.title.trim();e(et=>et.map(wt=>wt.partId===$.id?{...wt,partTitle:xe}:wt)),D(null),En()}else ae.error("更新篇名失败: "+(he&&typeof he=="object"&&"error"in he?he.error:"未知错误"))}catch(H){console.error(H),ae.error("更新篇名失败")}finally{O(!1)}}},up=T=>{const H=T.chapters.length+1,he=`chapter-${T.id}-${H}-${Date.now()}`;P({id:`${H}.1`,title:"新章节",price:1,partId:T.id,chapterId:he,content:"",editionStandard:!0,editionPremium:!1,isFree:!1,isNew:!1,isPinned:!1,hotScore:0}),h(!0)},hp=(T,H)=>{pe({part:T,chapter:H,title:H.title})},pc=async()=>{var T;if((T=ne==null?void 0:ne.title)!=null&&T.trim()){z(!0);try{const H=t.map(xe=>({id:xe.id,partId:xe.partId||ne.part.id,partTitle:xe.partId===ne.part.id?ne.part.title:xe.partTitle||"",chapterId:xe.chapterId||ne.chapter.id,chapterTitle:xe.partId===ne.part.id&&xe.chapterId===ne.chapter.id?ne.title.trim():xe.chapterTitle||""})),he=await _t("/api/db/book",{action:"reorder",items:H});if(he&&he.success!==!1){const xe=ne.title.trim(),et=ne.part.id,wt=ne.chapter.id;e(on=>on.map(Ln=>Ln.partId===et&&Ln.chapterId===wt?{...Ln,chapterTitle:xe}:Ln)),pe(null),En()}else ae.error("保存失败: "+(he&&typeof he=="object"&&"error"in he?he.error:"未知错误"))}catch(H){console.error(H),ae.error("保存失败")}finally{z(!1)}}},el=async(T,H)=>{const he=H.sections.map(xe=>xe.id);if(he.length===0){ae.info("该章下无小节,无需删除");return}if(confirm(`确定要删除「第${T.chapters.indexOf(H)+1}章 | ${H.title}」吗?将删除共 ${he.length} 节,此操作不可恢复。`))try{for(const xe of he)await Hr(`/api/db/book?id=${encodeURIComponent(xe)}`);En()}catch(xe){console.error(xe),ae.error("删除失败")}},mc=async()=>{if(!V.trim()){ae.error("请输入篇名");return}ce(!0);try{const T=`part-new-${Date.now()}`,H="chapter-1",he=`part-placeholder-${Date.now()}`,xe=await _t("/api/db/book",{id:he,title:"占位节(可编辑)",price:0,content:"",partId:T,partTitle:V.trim(),chapterId:H,chapterTitle:"第1章 | 待编辑",saveToFile:!1});xe&&xe.success!==!1?(ae.success(`篇「${V}」创建成功`),se(!1),re(""),En()):ae.error("创建失败: "+(xe&&typeof xe=="object"&&"error"in xe?xe.error:"未知错误"))}catch(T){console.error(T),ae.error("创建失败")}finally{ce(!1)}},Gd=async()=>{if(K.length===0){ae.error("请先勾选要移动的章节");return}const T=an.find(he=>he.id===F),H=T==null?void 0:T.chapters.find(he=>he.id===W);if(!T||!H||!F||!W){ae.error("请选择目标篇和章");return}X(!0);try{const he=()=>{const on=new Set(K),Ln=t.map(_n=>({id:_n.id,partId:_n.partId||"",partTitle:_n.partTitle||"",chapterId:_n.chapterId||"",chapterTitle:_n.chapterTitle||""})),Jd=Ln.filter(_n=>on.has(_n.id)).map(_n=>({..._n,partId:F,partTitle:T.title||F,chapterId:W,chapterTitle:H.title||W})),eo=Ln.filter(_n=>!on.has(_n.id));let yc=eo.length;for(let _n=eo.length-1;_n>=0;_n-=1){const nl=eo[_n];if(nl.partId===F&&nl.chapterId===W){yc=_n+1;break}}return[...eo.slice(0,yc),...Jd,...eo.slice(yc)]},xe=async()=>{const on=he(),Ln=await _t("/api/db/book",{action:"reorder",items:on});return Ln&&Ln.success!==!1?(ae.success(`已移动 ${K.length} 节到「${T.title}」-「${H.title}」`),q(!1),U([]),await En(),!0):!1},et={action:"move-sections",sectionIds:K,targetPartId:F,targetChapterId:W,targetPartTitle:T.title||F,targetChapterTitle:H.title||W},wt=await _t("/api/db/book",et);if(wt&&wt.success!==!1)ae.success(`已移动 ${wt.count??K.length} 节到「${T.title}」-「${H.title}」`),q(!1),U([]),await En();else{const on=wt&&typeof wt=="object"&&"error"in wt?wt.error||"":"未知错误";if((on.includes("缺少 id")||on.includes("无效的 action"))&&await xe())return;ae.error("移动失败: "+on)}}catch(he){console.error(he),ae.error("移动失败: "+(he instanceof Error?he.message:"网络或服务异常"))}finally{X(!1)}},Lr=T=>{U(H=>H.includes(T)?H.filter(he=>he!==T):[...H,T])},gc=async T=>{const H=t.filter(he=>he.partId===T.id).map(he=>he.id);if(H.length===0){ae.info("该篇下暂无小节可删除");return}if(confirm(`确定要删除「${T.title}」整篇吗?将删除共 ${H.length} 节内容,此操作不可恢复。`))try{for(const he of H)await Hr(`/api/db/book?id=${encodeURIComponent(he)}`);En()}catch(he){console.error(he),ae.error("删除失败")}},Qi=async()=>{var T;if(N.trim()){E(!0);try{const H=await Re(`/api/search?q=${encodeURIComponent(N)}`);H!=null&&H.success&&((T=H.data)!=null&&T.results)?k(H.data.results):(k([]),H&&!H.success&&ae.error("搜索失败: "+H.error))}catch(H){console.error(H),k([]),ae.error("搜索失败")}finally{E(!1)}}},tl=an.find(T=>T.id===M.partId),Xi=(tl==null?void 0:tl.chapters)??[];return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"内容管理"}),r.jsxs("p",{className:"text-gray-400 mt-1",children:["共 ",an.length," 篇 · ",fr," 节内容"]})]}),r.jsxs("div",{className:"flex gap-2",children:[r.jsxs(Z,{onClick:()=>dn(!0),variant:"outline",className:"border-amber-500/50 text-amber-400 hover:bg-amber-500/10 bg-transparent",children:[r.jsx(Wu,{className:"w-4 h-4 mr-2"}),"排名算法"]}),r.jsxs(Z,{onClick:()=>{const T=typeof window<"u"?`${window.location.origin}/api-doc`:"";T&&window.open(T,"_blank","noopener,noreferrer")},variant:"outline",className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(kr,{className:"w-4 h-4 mr-2"}),"API 接口"]})]})]}),r.jsx(Mt,{open:u,onOpenChange:h,children:r.jsxs(kt,{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:[r.jsx(At,{className:"shrink-0 px-6 pt-6 pb-2",children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(pn,{className:"w-5 h-5 text-[#38bdac]"}),"新建章节"]})}),r.jsxs("div",{className:"flex-1 overflow-y-auto min-h-0 px-6 space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"章节ID *"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 9.15",value:M.id,onChange:T=>P({...M,id:T.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"价格 (元)"}),r.jsx(ie,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:M.isFree?0:M.price,onChange:T=>P({...M,price:Number(T.target.value),isFree:Number(T.target.value)===0}),disabled:M.isFree})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"免费"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:M.isFree,onChange:T=>P({...M,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]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"设为免费"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"最新新增"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:M.isNew,onChange:T=>P({...M,isNew:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"标记 NEW"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"小程序直推"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:M.isPinned,onChange:T=>P({...M,isPinned:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-amber-400 focus:ring-amber-400"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"强制置顶到小程序首页"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"文章类型"}),r.jsxs("div",{className:"flex items-center gap-4 h-10",children:[r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"radio",name:"new-edition-type",checked:M.editionPremium!==!0,onChange:()=>P({...M,editionStandard:!0,editionPremium:!1}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"普通版"})]}),r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"radio",name:"new-edition-type",checked:M.editionPremium===!0,onChange:()=>P({...M,editionStandard:!1,editionPremium:!0}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"增值版"})]})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"热度分"}),r.jsx(ie,{type:"number",step:"0.1",min:"0",className:"bg-[#0a1628] border-gray-700 text-white",value:M.hotScore??0,onChange:T=>P({...M,hotScore:Math.max(0,parseFloat(T.target.value)||0)})})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"章节标题 *"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"输入章节标题",value:M.title,onChange:T=>P({...M,title:T.target.value})})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"所属篇"}),r.jsxs(Rl,{value:M.partId,onValueChange:T=>{var he;const H=an.find(xe=>xe.id===T);P({...M,partId:T,chapterId:((he=H==null?void 0:H.chapters[0])==null?void 0:he.id)??"chapter-1"})},children:[r.jsx(xo,{className:"bg-[#0a1628] border-gray-700 text-white",children:r.jsx(Pl,{})}),r.jsxs(yo,{className:"bg-[#0f2137] border-gray-700",children:[an.map(T=>r.jsx(zs,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id)),an.length===0&&r.jsx(zs,{value:"part-1",className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:"默认篇"})]})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"所属章"}),r.jsxs(Rl,{value:M.chapterId,onValueChange:T=>P({...M,chapterId:T}),children:[r.jsx(xo,{className:"bg-[#0a1628] border-gray-700 text-white",children:r.jsx(Pl,{})}),r.jsxs(yo,{className:"bg-[#0f2137] border-gray-700",children:[Xi.map(T=>r.jsx(zs,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id)),Xi.length===0&&r.jsx(zs,{value:"chapter-1",className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:"默认章"})]})]})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"内容(富文本编辑器,支持 @链接AI人物 和 #链接标签)"}),r.jsx(Vx,{content:M.content||"",onChange:T=>P({...M,content:T}),onImageUpload:async T=>{var et;const H=new FormData;H.append("file",T),H.append("folder","book-images");const xe=await(await fetch(Ao("/api/upload"),{method:"POST",body:H,headers:{Authorization:`Bearer ${localStorage.getItem("admin_token")||""}`}})).json();return((et=xe==null?void 0:xe.data)==null?void 0:et.url)||(xe==null?void 0:xe.url)||""},persons:Ks,linkTags:me,placeholder:"开始编辑内容... 输入 @ 可链接AI人物,工具栏可插入 #链接标签"})]})]}),r.jsxs(Zt,{className:"shrink-0 px-6 py-4 border-t border-gray-700/50",children:[r.jsx(Z,{variant:"outline",onClick:()=>h(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsx(Z,{onClick:Ji,disabled:g||!M.id||!M.title,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:g?r.jsxs(r.Fragment,{children:[r.jsx(We,{className:"w-4 h-4 mr-2 animate-spin"}),"创建中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"创建章节"]})})]})]})}),r.jsx(Mt,{open:!!$,onOpenChange:T=>!T&&D(null),children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(Vt,{className:"w-5 h-5 text-[#38bdac]"}),"编辑篇名"]})}),$&&r.jsx("div",{className:"space-y-4 py-4",children:r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"篇名"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:$.title,onChange:T=>D({...$,title:T.target.value}),placeholder:"输入篇名"})]})}),r.jsxs(Zt,{children:[r.jsx(Z,{variant:"outline",onClick:()=>D(null),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsx(Z,{onClick:Zo,disabled:R||!((Zi=$==null?void 0:$.title)!=null&&Zi.trim()),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:R?r.jsxs(r.Fragment,{children:[r.jsx(We,{className:"w-4 h-4 mr-2 animate-spin"}),"保存中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),"保存"]})})]})]})}),r.jsx(Mt,{open:!!ne,onOpenChange:T=>!T&&pe(null),children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(Vt,{className:"w-5 h-5 text-[#38bdac]"}),"编辑章节名称"]})}),ne&&r.jsx("div",{className:"space-y-4 py-4",children:r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"章节名称(如:第8章|底层结构)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:ne.title,onChange:T=>pe({...ne,title:T.target.value}),placeholder:"输入章节名称"})]})}),r.jsxs(Zt,{children:[r.jsx(Z,{variant:"outline",onClick:()=>pe(null),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsx(Z,{onClick:pc,disabled:ge||!((xc=ne==null?void 0:ne.title)!=null&&xc.trim()),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:ge?r.jsxs(r.Fragment,{children:[r.jsx(We,{className:"w-4 h-4 mr-2 animate-spin"}),"保存中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),"保存"]})})]})]})}),r.jsx(Mt,{open:I,onOpenChange:T=>{var H;if(q(T),T&&an.length>0){const he=an[0];L(he.id),oe(((H=he.chapters[0])==null?void 0:H.id)??"")}},children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[r.jsx(At,{children:r.jsx(It,{className:"text-white",children:"批量移动至指定目录"})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("p",{className:"text-gray-400 text-sm",children:["已选 ",r.jsx("span",{className:"text-[#38bdac] font-medium",children:K.length})," 节,请选择目标篇与章。"]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"目标篇"}),r.jsxs(Rl,{value:F,onValueChange:T=>{var he;L(T);const H=an.find(xe=>xe.id===T);oe(((he=H==null?void 0:H.chapters[0])==null?void 0:he.id)??"")},children:[r.jsx(xo,{className:"bg-[#0a1628] border-gray-700 text-white",children:r.jsx(Pl,{placeholder:"选择篇"})}),r.jsx(yo,{className:"bg-[#0f2137] border-gray-700",children:an.map(T=>r.jsx(zs,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id))})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"目标章"}),r.jsxs(Rl,{value:W,onValueChange:oe,children:[r.jsx(xo,{className:"bg-[#0a1628] border-gray-700 text-white",children:r.jsx(Pl,{placeholder:"选择章"})}),r.jsx(yo,{className:"bg-[#0f2137] border-gray-700",children:(((es=an.find(T=>T.id===F))==null?void 0:es.chapters)??[]).map(T=>r.jsx(zs,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id))})]})]})]}),r.jsxs(Zt,{children:[r.jsx(Z,{variant:"outline",onClick:()=>q(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsx(Z,{onClick:Gd,disabled:Q||K.length===0,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:Q?r.jsxs(r.Fragment,{children:[r.jsx(We,{className:"w-4 h-4 mr-2 animate-spin"}),"移动中..."]}):"确认移动"})]})]})}),r.jsx(Mt,{open:!!be,onOpenChange:T=>!T&&Pe(null),children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-3xl max-h-[85vh] overflow-hidden flex flex-col",showCloseButton:!0,children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white",children:["付款记录 — ",(be==null?void 0:be.section.title)??""]})}),r.jsx("div",{className:"flex-1 overflow-y-auto py-2",children:Le?r.jsxs("div",{className:"flex items-center justify-center py-8",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):be&&be.orders.length===0?r.jsx("p",{className:"text-gray-500 text-center py-6",children:"暂无付款记录"}):be?r.jsxs("table",{className:"w-full text-sm border-collapse",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"border-b border-gray-700 text-left text-gray-400",children:[r.jsx("th",{className:"py-2 pr-2",children:"订单号"}),r.jsx("th",{className:"py-2 pr-2",children:"用户ID"}),r.jsx("th",{className:"py-2 pr-2",children:"金额"}),r.jsx("th",{className:"py-2 pr-2",children:"状态"}),r.jsx("th",{className:"py-2 pr-2",children:"支付时间"})]})}),r.jsx("tbody",{children:be.orders.map(T=>r.jsxs("tr",{className:"border-b border-gray-700/50",children:[r.jsx("td",{className:"py-2 pr-2",children:r.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:"-"})}),r.jsx("td",{className:"py-2 pr-2",children:r.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 H=T.userId??T.openId??"-";return H.length>12?H.slice(0,6)+"..."+H.slice(-4):H})()})}),r.jsxs("td",{className:"py-2 pr-2 text-gray-300",children:["¥",T.amount??0]}),r.jsx("td",{className:"py-2 pr-2 text-gray-300",children:T.status??"-"}),r.jsx("td",{className:"py-2 pr-2 text-gray-500",children:T.payTime??T.createdAt??"-"})]},T.id??T.orderSn??""))})]}):null})]})}),r.jsx(Mt,{open:Rt,onOpenChange:dn,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(Wu,{className:"w-5 h-5 text-amber-400"}),"文章排名算法"]})}),r.jsxs("div",{className:"space-y-4 py-2",children:[r.jsx("p",{className:"text-sm text-gray-400",children:"热度积分 = 阅读权重×阅读排名分 + 新度权重×新度排名分 + 付款权重×付款排名分(三权重之和须为 1)"}),Pn?r.jsx("p",{className:"text-gray-500",children:"加载中..."}):r.jsxs(r.Fragment,{children:[r.jsxs("div",{className:"grid grid-cols-3 gap-3",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"阅读权重"}),r.jsx(ie,{type:"number",step:"0.1",min:"0",max:"1",className:"bg-[#0a1628] border-gray-700 text-white",value:gt.readWeight,onChange:T=>sn(H=>({...H,readWeight:Math.max(0,Math.min(1,parseFloat(T.target.value)||0))}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"新度权重"}),r.jsx(ie,{type:"number",step:"0.1",min:"0",max:"1",className:"bg-[#0a1628] border-gray-700 text-white",value:gt.recencyWeight,onChange:T=>sn(H=>({...H,recencyWeight:Math.max(0,Math.min(1,parseFloat(T.target.value)||0))}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"付款权重"}),r.jsx(ie,{type:"number",step:"0.1",min:"0",max:"1",className:"bg-[#0a1628] border-gray-700 text-white",value:gt.payWeight,onChange:T=>sn(H=>({...H,payWeight:Math.max(0,Math.min(1,parseFloat(T.target.value)||0))}))})]})]}),r.jsxs("p",{className:"text-xs text-gray-500",children:["当前之和: ",(gt.readWeight+gt.recencyWeight+gt.payWeight).toFixed(1)]}),r.jsxs("ul",{className:"list-disc list-inside space-y-1 text-xs text-gray-400",children:[r.jsx("li",{children:"阅读量前 20 名:第1名=20分、第2名=19分...第20名=1分"}),r.jsx("li",{children:"最近更新前 30 篇:第1名=30分、第2名=29分...第30名=1分"}),r.jsx("li",{children:"付款数前 20 名:第1名=20分、第2名=19分...第20名=1分"}),r.jsx("li",{children:"热度分可在编辑章节中手动覆盖"})]}),r.jsx(Z,{onClick:Wd,disabled:Qt||Math.abs(gt.readWeight+gt.recencyWeight+gt.payWeight-1)>.001,className:"w-full bg-amber-500 hover:bg-amber-600 text-white",children:Qt?"保存中...":"保存权重"})]})]})]})}),r.jsx(Mt,{open:_,onOpenChange:se,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(pn,{className:"w-5 h-5 text-amber-400"}),"新建篇"]})}),r.jsx("div",{className:"space-y-4 py-4",children:r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"篇名(如:第六篇|真实的社会)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:V,onChange:T=>re(T.target.value),placeholder:"输入篇名"})]})}),r.jsxs(Zt,{children:[r.jsx(Z,{variant:"outline",onClick:()=>{se(!1),re("")},className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsx(Z,{onClick:mc,disabled:ue||!V.trim(),className:"bg-amber-500 hover:bg-amber-600 text-white",children:ue?r.jsxs(r.Fragment,{children:[r.jsx(We,{className:"w-4 h-4 mr-2 animate-spin"}),"创建中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"创建篇"]})})]})]})}),r.jsx(Mt,{open:!!o,onOpenChange:()=>c(null),children:r.jsxs(kt,{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:[r.jsx(At,{className:"shrink-0 px-6 pt-6 pb-2",children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(Vt,{className:"w-5 h-5 text-[#38bdac]"}),"编辑章节"]})}),o&&r.jsxs("div",{className:"flex-1 overflow-y-auto min-h-0 px-6 space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"章节ID"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:o.id,onChange:T=>c({...o,id:T.target.value}),placeholder:"如: 9.15"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"价格 (元)"}),r.jsx(ie,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:o.isFree?0:o.price,onChange:T=>c({...o,price:Number(T.target.value),isFree:Number(T.target.value)===0}),disabled:o.isFree})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"免费"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:o.isFree||o.price===0,onChange:T=>c({...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]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"设为免费"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"最新新增"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:o.isNew??!1,onChange:T=>c({...o,isNew:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"标记 NEW"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"小程序直推"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:o.isPinned??!1,onChange:T=>c({...o,isPinned:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-amber-400 focus:ring-amber-400"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"强制置顶到小程序首页"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"文章类型"}),r.jsxs("div",{className:"flex items-center gap-4 h-10",children:[r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"radio",name:"edition-type",checked:o.editionPremium!==!0,onChange:()=>c({...o,editionStandard:!0,editionPremium:!1}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"普通版"})]}),r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"radio",name:"edition-type",checked:o.editionPremium===!0,onChange:()=>c({...o,editionStandard:!1,editionPremium:!0}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"增值版"})]})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"热度分"}),r.jsx(ie,{type:"number",step:"0.1",min:"0",className:"bg-[#0a1628] border-gray-700 text-white",value:o.hotScore??0,onChange:T=>c({...o,hotScore:Math.max(0,parseFloat(T.target.value)||0)})})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"章节标题"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:o.title,onChange:T=>c({...o,title:T.target.value})})]}),o.filePath&&r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"文件路径"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-gray-400 text-sm",value:o.filePath,disabled:!0})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"内容(富文本编辑器,支持 @链接AI人物 和 #链接标签)"}),f?r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700 rounded-md min-h-[400px] flex items-center justify-center",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsx(Vx,{ref:Un,content:o.content||"",onChange:T=>c({...o,content:T}),onImageUpload:async T=>{var et;const H=new FormData;H.append("file",T),H.append("folder","book-images");const xe=await(await fetch(Ao("/api/upload"),{method:"POST",body:H,headers:{Authorization:`Bearer ${localStorage.getItem("admin_token")||""}`}})).json();return((et=xe==null?void 0:xe.data)==null?void 0:et.url)||(xe==null?void 0:xe.url)||""},persons:Ks,linkTags:me,placeholder:"开始编辑内容... 输入 @ 可链接AI人物,工具栏可插入 #链接标签"})]})]}),r.jsxs(Zt,{className:"shrink-0 px-6 py-4 border-t border-gray-700/50",children:[o&&r.jsxs(Z,{variant:"outline",onClick:()=>Gi({id:o.id,title:o.title,price:o.price}),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent mr-auto",children:[r.jsx(Hs,{className:"w-4 h-4 mr-2"}),"付款记录"]}),r.jsxs(Z,{variant:"outline",onClick:()=>c(null),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(is,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsx(Z,{onClick:dp,disabled:g,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:g?r.jsxs(r.Fragment,{children:[r.jsx(We,{className:"w-4 h-4 mr-2 animate-spin"}),"保存中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),"保存修改"]})})]})]})}),r.jsxs(zd,{defaultValue:"chapters",className:"space-y-6",children:[r.jsxs(nc,{className:"bg-[#0f2137] border border-gray-700/50 p-1",children:[r.jsxs(en,{value:"chapters",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400",children:[r.jsx(Hs,{className:"w-4 h-4 mr-2"}),"章节管理"]}),r.jsxs(en,{value:"ranking",className:"data-[state=active]:bg-amber-500/20 data-[state=active]:text-amber-400 text-gray-400",children:[r.jsx(Yg,{className:"w-4 h-4 mr-2"}),"内容排行榜"]}),r.jsxs(en,{value:"search",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400",children:[r.jsx(ka,{className:"w-4 h-4 mr-2"}),"内容搜索"]}),r.jsxs(en,{value:"link-person",className:"data-[state=active]:bg-purple-500/20 data-[state=active]:text-purple-400 text-gray-400",children:[r.jsx(kr,{className:"w-4 h-4 mr-2"}),"链接人与事"]}),r.jsxs(en,{value:"link-tag",className:"data-[state=active]:bg-amber-500/20 data-[state=active]:text-amber-400 text-gray-400",children:[r.jsx(Yv,{className:"w-4 h-4 mr-2"}),"链接标签"]}),r.jsxs(en,{value:"linkedmp",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400",children:[r.jsx(Ti,{className:"w-4 h-4 mr-2"}),"关联小程序"]})]}),r.jsxs(tn,{value:"chapters",className:"space-y-4",children:[r.jsxs("div",{className:"rounded-2xl border border-gray-700/50 bg-[#1C1C1E] p-4 flex items-center justify-between shadow-sm",children:[r.jsxs("div",{className:"flex items-center gap-4",children:[r.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:r.jsx(Hs,{className:"w-6 h-6"})}),r.jsxs("div",{children:[r.jsx("h2",{className:"font-bold text-base text-white leading-tight mb-1",children:"一场SOUL的创业实验场"}),r.jsx("p",{className:"text-xs text-gray-500",children:"来自Soul派对房的真实商业故事"})]})]}),r.jsxs("div",{className:"text-center shrink-0",children:[r.jsx("span",{className:"block text-2xl font-bold text-[#38bdac]",children:fr}),r.jsx("span",{className:"text-xs text-gray-500",children:"章节"})]})]}),r.jsxs("div",{className:"flex flex-wrap gap-2",children:[r.jsxs(Z,{onClick:()=>h(!0),className:"flex-1 min-w-[120px] bg-[#38bdac]/10 hover:bg-[#38bdac]/20 text-[#38bdac] border border-[#38bdac]/30",children:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"新建章节"]}),r.jsxs(Z,{onClick:()=>se(!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:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"新建篇"]}),r.jsxs(Z,{variant:"outline",onClick:()=>q(!0),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:["批量移动(已选 ",K.length," 节)"]})]}),n?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsx(aV,{parts:an,expandedParts:a,onTogglePart:qi,onReorder:cp,onReadSection:Xo,onDeleteSection:dc,onAddSectionInPart:Yi,onAddChapterInPart:up,onDeleteChapter:el,onEditPart:Ua,onDeletePart:gc,onEditChapter:hp,selectedSectionIds:K,onToggleSectionSelect:Lr,onShowSectionOrders:Gi,pinnedSectionIds:Ge})]}),r.jsx(tn,{value:"search",className:"space-y-4",children:r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"内容搜索"})}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"flex gap-2",children:[r.jsx(ie,{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"&&Qi()}),r.jsx(Z,{onClick:Qi,disabled:C||!N.trim(),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:C?r.jsx(We,{className:"w-4 h-4 animate-spin"}):r.jsx(ka,{className:"w-4 h-4"})})]}),v.length>0&&r.jsxs("div",{className:"space-y-2 mt-4",children:[r.jsxs("p",{className:"text-gray-400 text-sm",children:["找到 ",v.length," 个结果"]}),v.map(T=>r.jsxs("div",{className:"p-3 rounded-lg bg-[#162840] hover:bg-[#1a3050] cursor-pointer transition-colors",onClick:()=>Xo({id:T.id,mid:T.mid,title:T.title,price:T.price??1,filePath:""}),children:[r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("span",{className:"text-[#38bdac] font-mono text-xs",children:T.id}),r.jsx("span",{className:"text-white",children:T.title}),Ge.includes(T.id)&&r.jsx(Ll,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})]}),r.jsx(Ue,{variant:"outline",className:"text-gray-400 border-gray-600 text-xs",children:T.matchType==="title"?"标题匹配":"内容匹配"})]}),T.snippet&&r.jsx("p",{className:"text-gray-500 text-xs mt-2 line-clamp-2",children:T.snippet}),(T.partTitle||T.chapterTitle)&&r.jsxs("p",{className:"text-gray-600 text-xs mt-1",children:[T.partTitle," · ",T.chapterTitle]})]},T.id))]})]})]})}),r.jsxs(tn,{value:"ranking",className:"space-y-4",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white text-base flex items-center gap-2",children:[r.jsx(Wu,{className:"w-4 h-4 text-[#38bdac]"}),"内容显示规则"]})}),r.jsx(Ee,{children:r.jsxs("div",{className:"flex items-center gap-4 flex-wrap",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(ee,{className:"text-gray-400 text-sm whitespace-nowrap",children:"未付费预览比例"}),r.jsx(ie,{type:"number",min:"1",max:"100",className:"bg-[#0a1628] border-gray-700 text-white w-20",value:pt,onChange:T=>Lt(Math.max(1,Math.min(100,Number(T.target.value)||20))),disabled:yn}),r.jsx("span",{className:"text-gray-500 text-sm",children:"%"})]}),r.jsx(Z,{size:"sm",onClick:qd,disabled:js,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:js?"保存中...":"保存"}),r.jsxs("span",{className:"text-xs text-gray-500",children:["小程序未付费用户默认显示文章前 ",pt,"% 内容"]})]})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs(Ye,{className:"text-white text-base flex items-center gap-2",children:[r.jsx(Yg,{className:"w-4 h-4 text-amber-400"}),"内容排行榜",r.jsxs("span",{className:"text-xs text-gray-500 font-normal ml-2",children:["按热度排行 · 共 ",Dn.length," 节"]})]}),r.jsxs("div",{className:"flex items-center gap-1 text-sm",children:[r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>ra(),disabled:J,className:"text-gray-400 hover:text-white h-7 w-7 p-0",title:"刷新排行榜",children:r.jsx(We,{className:`w-4 h-4 ${J?"animate-spin":""}`})}),r.jsx(Z,{variant:"ghost",size:"sm",disabled:On<=1||J,onClick:()=>ms(T=>Math.max(1,T-1)),className:"text-gray-400 hover:text-white h-7 w-7 p-0",children:r.jsx(JT,{className:"w-4 h-4"})}),r.jsxs("span",{className:"text-gray-400 min-w-[60px] text-center",children:[On," / ",Ki]}),r.jsx(Z,{variant:"ghost",size:"sm",disabled:On>=Ki||J,onClick:()=>ms(T=>Math.min(Ki,T+1)),className:"text-gray-400 hover:text-white h-7 w-7 p-0",children:r.jsx(Ol,{className:"w-4 h-4"})})]})]})}),r.jsx(Ee,{children:r.jsxs("div",{className:"space-y-0",children:[r.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:[r.jsx("span",{children:"排名"}),r.jsx("span",{children:"置顶"}),r.jsx("span",{children:"标题"}),r.jsx("span",{className:"text-right",children:"点击量"}),r.jsx("span",{className:"text-right",children:"付款数"}),r.jsx("span",{className:"text-right",children:"热度"}),r.jsx("span",{className:"text-right",children:"编辑"})]}),Ba.map((T,H)=>{const he=(On-1)*Js+H+1,xe=T.isPinned??Ge.includes(T.id);return r.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 ${xe?"bg-amber-500/5":""}`,children:[r.jsx("span",{className:`text-sm font-bold ${he<=3?"text-amber-400":"text-gray-500"}`,children:he<=3?["🥇","🥈","🥉"][he-1]:`#${he}`}),r.jsx(Z,{variant:"ghost",size:"sm",className:`h-6 w-6 p-0 ${xe?"text-amber-400":"text-gray-600 hover:text-amber-400"}`,onClick:()=>Wa(T.id),disabled:ct,title:xe?"取消置顶":"强制置顶(精选推荐/首页最新更新)",children:xe?r.jsx(Ll,{className:"w-3.5 h-3.5 fill-current"}):r.jsx(xA,{className:"w-3.5 h-3.5"})}),r.jsxs("div",{className:"min-w-0",children:[r.jsx("span",{className:"text-white text-sm truncate block",children:T.title}),r.jsxs("span",{className:"text-gray-600 text-xs",children:[T.partTitle," · ",T.chapterTitle]})]}),r.jsx("span",{className:"text-right text-sm text-blue-400 font-mono",children:T.clickCount??0}),r.jsx("span",{className:"text-right text-sm text-green-400 font-mono",children:T.payCount??0}),r.jsx("span",{className:"text-right text-sm text-amber-400 font-mono",children:(T.hotScore??0).toFixed(1)}),r.jsx("div",{className:"text-right",children:r.jsx(Z,{variant:"ghost",size:"sm",className:"text-gray-500 hover:text-[#38bdac] h-6 px-1",onClick:()=>Xo({id:T.id,mid:T.mid,title:T.title,price:T.price,filePath:""}),title:"编辑文章",children:r.jsx(Vt,{className:"w-3 h-3"})})})]},T.id)}),Ba.length===0&&r.jsx("div",{className:"py-8 text-center text-gray-500",children:"暂无数据"})]})})]})]}),r.jsxs(tn,{value:"link-person",className:"space-y-4",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"pb-3",children:[r.jsxs(Ye,{className:"text-white text-base flex items-center gap-2",children:[r.jsx("span",{className:"text-[#38bdac] text-lg font-bold",children:"@"}),"AI列表 — 链接人与事(编辑器内输入 @ 可链接)"]}),r.jsx("p",{className:"text-xs text-gray-500 mt-1",children:"添加时自动生成 32 位 token,文章 @ 时存 token;小程序点击 @ 时用 token 兑换真实密钥后加好友"})]}),r.jsxs(Ee,{className:"space-y-3",children:[r.jsxs("div",{className:"flex justify-between items-center",children:[r.jsx("p",{className:"text-xs text-gray-500",children:"添加人物时同步创建存客宝场景获客计划,配置与存客宝 API 获客一致"}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx(Z,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 hover:bg-gray-700/50",onClick:()=>pr(),title:"刷新",children:r.jsx(We,{className:"w-4 h-4"})}),r.jsxs(Z,{size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",onClick:()=>{ta(null),ea(!0)},children:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"添加"]})]})]}),r.jsx("div",{className:"max-h-[400px] overflow-y-auto",children:Ks.length>0?r.jsxs("table",{className:"w-full text-sm border-collapse",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"text-xs text-gray-500 border-b border-gray-700/50",children:[r.jsx("th",{className:"text-left py-1.5 px-3 w-[280px] font-normal",children:"token"}),r.jsx("th",{className:"text-left py-1.5 px-3 w-24 font-normal",children:"@的人"}),r.jsx("th",{className:"py-1.5 px-3 w-16 font-normal text-center",children:"获客数"}),r.jsx("th",{className:"text-left py-1.5 px-3 font-normal",children:"获客计划活动名"}),r.jsx("th",{className:"text-left py-1.5 px-3 w-20 font-normal",children:"planId"}),r.jsx("th",{className:"text-left py-1.5 px-3 font-normal",children:"apiKey"}),r.jsx("th",{className:"text-left py-1.5 px-2 w-24 font-normal",children:"操作"})]})}),r.jsx("tbody",{children:Ks.map(T=>r.jsxs("tr",{className:"border-b border-gray-700/30 hover:bg-[#0a1628]/80",children:[r.jsx("td",{className:"py-2 px-3 text-gray-400 text-xs font-mono",title:"32位token",children:T.id}),r.jsx("td",{className:"py-2 px-3 text-amber-400 truncate max-w-[96px]",title:"@的人",children:T.name}),(()=>{const H=cc[T.id]||0;return r.jsx("td",{className:`py-2 px-3 shrink-0 w-16 text-center text-xs font-bold ${H>0?"text-green-400":"text-gray-600"}`,title:"获客数",children:H})})(),r.jsxs("td",{className:"py-2 px-3 text-white truncate max-w-[200px]",title:"获客计划活动名",children:["SOUL链接人与事-",T.name]}),r.jsx("td",{className:"py-2 px-3 text-gray-400 text-xs font-mono",title:"存客宝计划ID",children:T.ckbPlanId??"-"}),r.jsx("td",{className:"py-2 px-3 text-gray-400 text-xs font-mono whitespace-nowrap",children:r.jsxs("div",{className:"flex items-center gap-1.5",children:[T.ckbApiKey?r.jsx(Z,{variant:"ghost",size:"sm",className:"h-6 w-6 p-0 text-gray-500 hover:text-[#38bdac] shrink-0",title:"复制 apiKey",onClick:async()=>{await navigator.clipboard.writeText(T.ckbApiKey??""),ae.success("已复制到剪贴板")},children:r.jsx(n0,{className:"w-3.5 h-3.5"})}):null,r.jsx("span",{title:T.ckbApiKey??"",children:T.ckbApiKey??"-"})]})}),r.jsx("td",{className:"py-2 px-2",children:r.jsxs("div",{className:"flex items-center gap-0",children:[r.jsx(Z,{variant:"ghost",size:"sm",className:"text-gray-400 hover:text-[#38bdac] h-6 px-2",title:"编辑",onClick:async()=>{try{const H=await oV(T.personId||"");if(H!=null&&H.success&&H.person){const he=H.person;ta({id:he.token??he.personId,personId:he.personId,name:he.name,label:he.label??"",ckbApiKey:he.ckbApiKey??"",remarkType:he.remarkType,remarkFormat:he.remarkFormat,addFriendInterval:he.addFriendInterval,startTime:he.startTime,endTime:he.endTime,deviceGroups:he.deviceGroups})}else ta(T),H!=null&&H.error&&ae.error(H.error)}catch(H){console.error(H),ta(T),ae.error(H instanceof Error?H.message:"加载人物详情失败")}ea(!0)},children:r.jsx(Gg,{className:"w-3 h-3"})}),r.jsx(Z,{variant:"ghost",size:"sm",className:"text-gray-400 hover:text-green-400 h-6 px-2",title:"查看新客户",onClick:()=>Qo(T.id,T.name),children:r.jsx(Rn,{className:"w-3 h-3"})}),r.jsx(Z,{variant:"ghost",size:"sm",className:"text-gray-400 hover:text-amber-400 h-6 px-2",title:"编辑计划(跳转存客宝)",onClick:()=>{const H=T.ckbPlanId;H?window.open(`https://h5.ckb.quwanzhi.com/#/scenarios/edit/${H}`,"_blank"):ae.info("该人物尚未同步存客宝计划,请先保存后等待同步完成")},children:r.jsx(qr,{className:"w-3 h-3"})}),r.jsx(Z,{variant:"ghost",size:"sm",className:"text-red-400 hover:text-red-300 h-6 px-2",title:"删除(同时删除存客宝对应获客计划)",onClick:()=>za(T),children:r.jsx(is,{className:"w-3 h-3"})})]})})]},T.id))})]}):r.jsx("div",{className:"text-gray-500 text-sm py-4 text-center",children:"暂无AI人物,添加后可在编辑器中 @链接"})})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"pb-3",children:[r.jsxs(Ye,{className:"text-white text-base flex items-center gap-2",children:[r.jsx(Wu,{className:"w-4 h-4 text-green-400"}),"存客宝绑定"]}),r.jsx("p",{className:"text-xs text-gray-500 mt-1",children:"配置存客宝 API 后,文章中 @人物 或 #标签 点击可自动进入存客宝流量池"})]}),r.jsxs(Ee,{className:"space-y-3",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"存客宝 API 地址"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8",placeholder:"https://ckbapi.quwanzhi.com",defaultValue:"https://ckbapi.quwanzhi.com",readOnly:!0})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"绑定计划"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8",placeholder:"创业实验-内容引流",defaultValue:"创业实验-内容引流",readOnly:!0})]})]}),r.jsxs("p",{className:"text-xs text-gray-500",children:["具体存客宝场景配置与接口测试请前往"," ",r.jsx("button",{className:"text-[#38bdac] hover:underline",onClick:()=>window.open("/match","_blank"),children:"找伙伴 → 存客宝工作台"})]})]})]})]}),r.jsxs(tn,{value:"link-tag",className:"space-y-4",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"pb-3",children:[r.jsxs(Ye,{className:"text-white text-base flex items-center gap-2",children:[r.jsx(Yv,{className:"w-4 h-4 text-amber-400"}),"链接标签 — 链接事与物(编辑器内 #标签 可跳转链接/小程序/存客宝)"]}),r.jsx("p",{className:"text-xs text-gray-500 mt-1",children:"小程序端点击 #标签 可直接跳转对应链接,进入流量池"})]}),r.jsxs(Ee,{className:"space-y-3",children:[r.jsxs("div",{className:"flex items-end justify-between gap-3 flex-wrap",children:[r.jsxs("div",{className:"flex items-end gap-2 flex-wrap",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-400 text-xs",children:"搜索"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8 w-48",placeholder:"按标签ID/显示文字搜索",value:Gs,onChange:T=>{Oa(T.target.value),Pa(1)}})]}),r.jsx(Z,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 hover:bg-gray-700/50 h-8",onClick:()=>{Pr(),aa()},title:"刷新",children:r.jsx(We,{className:"w-4 h-4"})})]}),r.jsxs(Z,{size:"sm",className:"bg-amber-500 hover:bg-amber-600 text-white h-8",onClick:()=>{Zr(null),un({tagId:"",label:"",url:"",type:"url",appId:"",pagePath:""}),Cs(""),Ys(!1),ur(!0)},children:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"添加标签"]})]}),r.jsxs("div",{className:"rounded-md border border-gray-700/50 overflow-hidden",children:[r.jsx("div",{className:"max-h-[420px] overflow-y-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{className:"bg-[#0a1628] border-b border-gray-700/50",children:r.jsxs("tr",{children:[r.jsx("th",{className:"text-left px-3 py-2 text-gray-400 w-40",children:"标签"}),r.jsx("th",{className:"text-left px-3 py-2 text-gray-400 w-20",children:"类型"}),r.jsx("th",{className:"text-left px-3 py-2 text-gray-400",children:"目标"}),r.jsx("th",{className:"text-right px-3 py-2 text-gray-400 w-28",children:"操作"})]})}),r.jsx("tbody",{children:Ra?r.jsx("tr",{children:r.jsx("td",{colSpan:4,className:"text-center py-10 text-gray-500",children:"加载中..."})}):Ot.length===0?r.jsx("tr",{children:r.jsx("td",{colSpan:4,className:"text-center py-10 text-gray-500",children:"暂无链接标签,添加后可在编辑器中使用 #标签 跳转"})}):Ot.map(T=>r.jsxs("tr",{className:"border-b border-gray-700/30 hover:bg-white/5",children:[r.jsxs("td",{className:"px-3 py-2",children:[r.jsxs("div",{className:"text-amber-400 font-semibold",children:["#",T.label]}),r.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:["tagId: ",T.id]})]}),r.jsx("td",{className:"px-3 py-2",children:r.jsx(Ue,{variant:"secondary",className:`text-[10px] ${T.type==="ckb"?"bg-green-500/20 text-green-300 border-green-500/30":T.type==="miniprogram"?"bg-[#38bdac]/20 text-[#38bdac] border-[#38bdac]/30":"bg-gray-700 text-gray-300"}`,children:T.type==="url"?"网页":T.type==="ckb"?"存客宝":"小程序"})}),r.jsx("td",{className:"px-3 py-2 text-gray-300",children:T.type==="miniprogram"?r.jsxs("span",{className:"text-xs font-mono",children:[T.appId||"—"," ",T.pagePath?`· ${T.pagePath}`:""]}):T.url?r.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," ",r.jsx(qr,{className:"w-3 h-3 shrink-0"})]}):r.jsx("span",{className:"text-gray-500 text-xs",children:"—"})}),r.jsx("td",{className:"px-3 py-2",children:r.jsxs("div",{className:"flex items-center justify-end gap-1",children:[r.jsx(Z,{variant:"ghost",size:"sm",className:"text-gray-300 hover:text-white h-7 px-2",onClick:()=>{Zr(T),un({tagId:T.id,label:T.label,url:T.url,type:T.type,appId:T.appId??"",pagePath:T.pagePath??""}),Cs(T.appId??""),Ys(!1),ur(!0)},title:"编辑",children:r.jsx(Gg,{className:"w-3 h-3"})}),r.jsx(Z,{variant:"ghost",size:"sm",className:"text-red-400 hover:text-red-300 h-7 px-2",onClick:async()=>{if(confirm(`确定要删除「#${T.label}」吗?`))try{const H=await Hr(`/api/db/link-tags?tagId=${encodeURIComponent(T.id)}`);H!=null&&H.success?(ae.success("已删除"),Pr(),aa()):ae.error((H==null?void 0:H.error)??"删除失败")}catch(H){console.error(H),ae.error("删除失败")}},title:"删除",children:r.jsx(is,{className:"w-3 h-3"})})]})})]},T.id))})]})}),r.jsx(Vs,{page:ks,pageSize:qs,total:cr,totalPages:dr,onPageChange:T=>Pa(T),onPageSizeChange:T=>{Ir(T),Pa(1)}})]})]})]}),r.jsx(Mt,{open:Da,onOpenChange:ur,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg p-4 gap-3",children:[r.jsxs(At,{className:"gap-1",children:[r.jsx(It,{className:"text-base",children:qo?"编辑链接标签":"添加链接标签"}),r.jsx(vd,{className:"text-gray-400 text-xs",children:"配置后可在富文本编辑器中通过 #标签 插入,并在小程序端点击跳转"})]}),r.jsxs("div",{className:"space-y-3 py-2",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"标签ID"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm font-mono",placeholder:"如 team01(英文/数字/_/-)",value:bt.tagId,onChange:T=>un(H=>({...H,tagId:T.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"显示文字"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"如 神仙团队",value:bt.label,onChange:T=>un(H=>({...H,label:T.target.value}))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-3 items-end",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"类型"}),r.jsxs(Rl,{value:bt.type,onValueChange:T=>un(H=>({...H,type:T})),children:[r.jsx(xo,{className:"bg-[#0a1628] border-gray-700 text-white h-8",children:r.jsx(Pl,{})}),r.jsxs(yo,{children:[r.jsx(zs,{value:"url",children:"网页链接"}),r.jsx(zs,{value:"miniprogram",children:"小程序"}),r.jsx(zs,{value:"ckb",children:"存客宝"})]})]})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:bt.type==="url"?"URL地址":bt.type==="ckb"?"存客宝计划URL":"小程序(选密钥)"}),bt.type==="miniprogram"&&Va.length>0?r.jsxs("div",{ref:Dr,className:"relative",children:[r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"搜索名称或密钥",value:Ha?Ss:bt.appId,onChange:T=>{const H=T.target.value;Cs(H),Ys(!0),Va.some(he=>he.key===H)||un(he=>({...he,appId:H}))},onFocus:()=>{Cs(bt.appId),Ys(!0)},onBlur:()=>setTimeout(()=>Ys(!1),150)}),Ha&&r.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:fc.length===0?r.jsx("div",{className:"px-3 py-2 text-gray-500 text-xs",children:"无匹配,可手动输入密钥"}):fc.map(T=>r.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:H=>{H.preventDefault(),un(he=>({...he,appId:T.key,pagePath:T.path||""})),Cs(""),Ys(!1)},children:[r.jsx("span",{children:T.name}),r.jsx("span",{className:"text-xs text-gray-400 font-mono",children:T.key})]},T.key))})]}):r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:bt.type==="url"?"https://...":bt.type==="ckb"?"https://ckbapi.quwanzhi.com/...":"关联小程序的32位密钥",value:bt.type==="url"||bt.type==="ckb"?bt.url:bt.appId,onChange:T=>{bt.type==="url"||bt.type==="ckb"?un(H=>({...H,url:T.target.value})):un(H=>({...H,appId:T.target.value}))}})]})]}),bt.type==="miniprogram"&&r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-300 text-sm",children:"页面路径(可选)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm font-mono",placeholder:"pages/index/index",value:bt.pagePath,onChange:T=>un(H=>({...H,pagePath:T.target.value}))})]})]}),r.jsxs(Zt,{className:"gap-2 pt-1",children:[r.jsx(Z,{variant:"outline",onClick:()=>ur(!1),className:"border-gray-600",children:"取消"}),r.jsx(Z,{onClick:async()=>{const T={tagId:bt.tagId.trim(),label:bt.label.trim(),url:bt.url.trim(),type:bt.type,appId:bt.appId.trim(),pagePath:bt.pagePath.trim()};if(!T.tagId){ae.error("标签ID必填(英文/数字/_/-)");return}if(!/^[A-Za-z0-9_-]+$/.test(T.tagId)){ae.error("标签ID只能包含英文/数字/_/-");return}if(!T.label){ae.error("显示文字必填");return}T.type==="miniprogram"&&(T.url=""),_a(!0);try{const H=await yt("/api/db/link-tags",T);H!=null&&H.success?(ae.success(qo?"已更新":"已添加"),ur(!1),Pr(),aa()):ae.error((H==null?void 0:H.error)??"保存失败")}catch(H){console.error(H),ae.error("保存失败")}finally{_a(!1)}},disabled:La,className:"bg-amber-500 hover:bg-amber-600 text-white",children:La?"保存中...":"保存"})]})]})})]}),r.jsx(tn,{value:"linkedmp",className:"space-y-4",children:r.jsx(sV,{})})]}),r.jsx(cV,{open:Go,onOpenChange:ea,editingPerson:Wi,onSubmit:async T=>{var xe;const H={personId:T.personId||T.name.toLowerCase().replace(/\s+/g,"_")+"_"+Date.now().toString(36),name:T.name,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:(xe=T.deviceGroups)!=null&&xe.trim()?T.deviceGroups.split(",").map(et=>parseInt(et.trim(),10)).filter(et=>!Number.isNaN(et)):void 0},he=await yt("/api/db/persons",H);if(he&&he.success===!1){const et=he;et.ckbResponse&&console.log("存客宝返回",et.ckbResponse);const wt=et.error||"操作失败";throw new Error(wt)}if(pr(),ae.success(Wi?"已保存":"已添加"),he!=null&&he.ckbCreateResult&&Object.keys(he.ckbCreateResult).length>0){const et=he.ckbCreateResult;console.log("存客宝创建结果",et);const wt=et.planId??et.id,on=wt!=null?[`planId: ${wt}`]:[];et.apiKey!=null&&on.push("apiKey: ***"),ae.info(on.length?`存客宝创建结果:${on.join(",")}`:"存客宝创建结果见控制台")}}}),r.jsx(Mt,{open:!!hr,onOpenChange:T=>{T||za(null)},children:r.jsxs(kt,{showCloseButton:!0,className:"bg-[#0f2137] border-gray-700 text-white max-w-md p-4 gap-3",children:[r.jsxs(At,{className:"gap-1",children:[r.jsx(It,{className:"text-white text-base",children:"确认删除"}),r.jsx(vd,{className:"text-gray-400 text-sm leading-relaxed break-words",children:hr&&r.jsxs(r.Fragment,{children:[r.jsxs("p",{children:["确定删除「SOUL链接人与事-",hr.name,"」?将同时删除存客宝对应获客计划。"]}),r.jsxs("p",{className:"mt-1.5",children:["二次确认:删除后无法恢复,文章中的 @",hr.name," 将无法正常跳转。"]})]})})]}),r.jsxs(Zt,{className:"gap-2 sm:gap-2 pt-1",children:[r.jsx(Z,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-300",onClick:()=>za(null),children:"取消"}),r.jsx(Z,{variant:"destructive",size:"sm",className:"bg-red-600 hover:bg-red-700",onClick:async()=>{hr&&(await Hr(`/api/db/persons?personId=${hr.personId}`),za(null),pr(),ae.success("已删除"))},children:"确定删除"})]})]})}),r.jsx(Mt,{open:Jo,onOpenChange:na,children:r.jsxs(kt,{className:"max-w-2xl bg-[#0f2137] border-gray-700",children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[r.jsx(Rn,{className:"w-5 h-5 text-green-400"}),Fa," — 获客详情(共 ",Be," 条)"]})}),r.jsx("div",{className:"max-h-[450px] overflow-y-auto space-y-2",children:Yo?r.jsxs("div",{className:"flex items-center justify-center py-8",children:[r.jsx(We,{className:"w-5 h-5 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):G.length===0?r.jsx("div",{className:"text-gray-500 text-sm py-8 text-center",children:"暂无获客记录"}):r.jsxs(r.Fragment,{children:[r.jsxs("div",{className:"grid grid-cols-[60px_1fr_100px_100px_80px_120px] gap-2 px-3 py-1.5 text-xs text-gray-500 border-b border-gray-700/50",children:[r.jsx("span",{children:"#"}),r.jsx("span",{children:"昵称/姓名"}),r.jsx("span",{children:"手机"}),r.jsx("span",{children:"微信"}),r.jsx("span",{children:"来源"}),r.jsx("span",{children:"时间"})]}),G.map((T,H)=>r.jsxs("div",{className:"grid grid-cols-[60px_1fr_100px_100px_80px_120px] gap-2 px-3 py-2 bg-[#0a1628] rounded text-sm",children:[r.jsx("span",{className:"text-gray-500 text-xs",children:(Kt-1)*20+H+1}),r.jsx("span",{className:"text-white truncate",children:T.nickname||T.name||T.userId||"-"}),r.jsx("span",{className:"text-gray-300 text-xs",children:T.phone||"-"}),r.jsx("span",{className:"text-gray-300 text-xs truncate",children:T.wechatId||"-"}),r.jsx("span",{className:"text-gray-500 text-xs",children:T.source==="article_mention"?"文章@":T.source==="index_lead"?"首页":T.source||"-"}),r.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))]})}),Be>20&&r.jsxs("div",{className:"flex items-center justify-center gap-2 pt-2",children:[r.jsx(Z,{size:"sm",variant:"outline",disabled:Kt<=1,onClick:()=>Qo($a,Fa,Kt-1),className:"border-gray-600 text-gray-300 bg-transparent h-7 px-3",children:"上一页"}),r.jsxs("span",{className:"text-gray-400 text-xs",children:[Kt," / ",Math.ceil(Be/20)]}),r.jsx(Z,{size:"sm",variant:"outline",disabled:Kt>=Math.ceil(Be/20),onClick:()=>Qo($a,Fa,Kt+1),className:"border-gray-600 text-gray-300 bg-transparent h-7 px-3",children:"下一页"})]})]})})]})}const wa={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 Mw(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):wa.stats}function Aw(t){return Array.isArray(t)?t.map(e=>typeof e=="string"?e:String(e??"")).filter(Boolean):wa.highlights}function hV(){const[t,e]=b.useState(wa),[n,s]=b.useState(!0),[a,i]=b.useState(!1),[o,c]=b.useState(!1),u=b.useRef(null);b.useEffect(()=>{Re("/api/admin/author-settings").then(k=>{const C=k==null?void 0:k.data;C&&typeof C=="object"&&e({name:String(C.name??wa.name),avatar:String(C.avatar??wa.avatar),avatarImg:String(C.avatarImg??""),title:String(C.title??wa.title),bio:String(C.bio??wa.bio),stats:Mw(C.stats).length?Mw(C.stats):wa.stats,highlights:Aw(C.highlights).length?Aw(C.highlights):wa.highlights})}).catch(console.error).finally(()=>s(!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(M=>M.label||M.value),highlights:t.highlights.filter(Boolean)},C=await yt("/api/admin/author-settings",k);if(!C||C.success===!1){ae.error("保存失败: "+(C&&typeof C=="object"&&"error"in C?C.error:""));return}i(!1);const E=document.createElement("div");E.className="fixed top-4 right-4 z-50 px-4 py-2 rounded-lg bg-[#38bdac] text-white text-sm shadow-lg",E.textContent="作者设置已保存",document.body.appendChild(E),setTimeout(()=>E.remove(),2e3)}catch(k){console.error(k),ae.error("保存失败: "+(k instanceof Error?k.message:String(k)))}finally{i(!1)}},f=async k=>{var E;const C=(E=k.target.files)==null?void 0:E[0];if(C){c(!0);try{const M=new FormData;M.append("file",C),M.append("folder","avatars");const P=Rf(),$={};P&&($.Authorization=`Bearer ${P}`);const R=await(await fetch(Ao("/api/upload"),{method:"POST",body:M,credentials:"include",headers:$})).json();R!=null&&R.success&&(R!=null&&R.url)?e(O=>({...O,avatarImg:R.url})):ae.error("上传失败: "+((R==null?void 0:R.error)||"未知错误"))}catch(M){console.error(M),ae.error("上传失败")}finally{c(!1),u.current&&(u.current.value="")}}},m=()=>e(k=>({...k,stats:[...k.stats,{label:"",value:""}]})),g=k=>e(C=>({...C,stats:C.stats.filter((E,M)=>M!==k)})),y=(k,C,E)=>e(M=>({...M,stats:M.stats.map((P,$)=>$===k?{...P,[C]:E}:P)})),N=()=>e(k=>({...k,highlights:[...k.highlights,""]})),w=k=>e(C=>({...C,highlights:C.highlights.filter((E,M)=>M!==k)})),v=(k,C)=>e(E=>({...E,highlights:E.highlights.map((M,P)=>P===k?C:M)}));return n?r.jsx("div",{className:"p-8 text-gray-500",children:"加载中..."}):r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(ko,{className:"w-5 h-5 text-[#38bdac]"}),"作者详情"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"配置小程序「关于作者」页展示的作者信息,包括头像、简介、统计数据与亮点标签。"})]}),r.jsxs(Z,{onClick:h,disabled:a||n,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),a?"保存中...":"保存"]})]}),r.jsxs("div",{className:"space-y-6",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"flex items-center gap-2 text-white",children:[r.jsx(ko,{className:"w-4 h-4 text-[#38bdac]"}),"基本信息"]}),r.jsx(Dt,{className:"text-gray-400",children:"作者姓名、头像、头衔与个人简介,将展示在「关于作者」页顶部。"})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"姓名"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:t.name,onChange:k=>e(C=>({...C,name:k.target.value})),placeholder:"卡若"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"首字母占位(无头像时显示)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white w-20",value:t.avatar,onChange:k=>e(C=>({...C,avatar:k.target.value.slice(0,1)||"K"})),placeholder:"K"})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(lj,{className:"w-3 h-3 text-[#38bdac]"}),"头像图片"]}),r.jsxs("div",{className:"flex gap-3 items-center",children:[r.jsx(ie,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:t.avatarImg,onChange:k=>e(C=>({...C,avatarImg:k.target.value})),placeholder:"上传或粘贴 URL,如 /uploads/avatars/xxx.png"}),r.jsx("input",{ref:u,type:"file",accept:"image/*",className:"hidden",onChange:f}),r.jsxs(Z,{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:[r.jsx(Mh,{className:"w-4 h-4 mr-2"}),o?"上传中...":"上传"]})]}),t.avatarImg&&r.jsx("div",{className:"mt-2",children:r.jsx("img",{src:t.avatarImg.startsWith("http")?t.avatarImg:Ao(t.avatarImg),alt:"头像预览",className:"w-20 h-20 rounded-full object-cover border border-gray-600"})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"头衔"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:t.title,onChange:k=>e(C=>({...C,title:k.target.value})),placeholder:"Soul派对房主理人 · 私域运营专家"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"个人简介"}),r.jsx(sc,{className:"bg-[#0a1628] border-gray-700 text-white min-h-[120px]",value:t.bio,onChange:k=>e(C=>({...C,bio:k.target.value})),placeholder:"每天早上6点到9点..."})]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsx(Ye,{className:"text-white",children:"统计数据"}),r.jsx(Dt,{className:"text-gray-400",children:"展示在作者卡片中的数字指标,如「商业案例 62」「连续直播 365天」。第一个「商业案例」的值可由书籍统计自动更新。"})]}),r.jsxs(Ee,{className:"space-y-3",children:[t.stats.map((k,C)=>r.jsxs("div",{className:"flex gap-3 items-center",children:[r.jsx(ie,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:k.label,onChange:E=>y(C,"label",E.target.value),placeholder:"标签"}),r.jsx(ie,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:k.value,onChange:E=>y(C,"value",E.target.value),placeholder:"数值"}),r.jsx(Z,{variant:"ghost",size:"icon",className:"text-gray-400 hover:text-red-400",onClick:()=>g(C),children:r.jsx(is,{className:"w-4 h-4"})})]},C)),r.jsxs(Z,{variant:"outline",size:"sm",onClick:m,className:"border-gray-600 text-gray-400",children:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"添加统计项"]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsx(Ye,{className:"text-white",children:"亮点标签"}),r.jsx(Dt,{className:"text-gray-400",children:"作者优势或成就的简短描述,以标签形式展示。"})]}),r.jsxs(Ee,{className:"space-y-3",children:[t.highlights.map((k,C)=>r.jsxs("div",{className:"flex gap-3 items-center",children:[r.jsx(ie,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:k,onChange:E=>v(C,E.target.value),placeholder:"5年私域运营经验"}),r.jsx(Z,{variant:"ghost",size:"icon",className:"text-gray-400 hover:text-red-400",onClick:()=>w(C),children:r.jsx(is,{className:"w-4 h-4"})})]},C)),r.jsxs(Z,{variant:"outline",size:"sm",onClick:N,className:"border-gray-600 text-gray-400",children:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"添加亮点"]})]})]})]})]})}function fV(){const[t,e]=b.useState([]),[n,s]=b.useState(0),[a,i]=b.useState(1),[o]=b.useState(10),[c,u]=b.useState(0),[h,f]=b.useState(""),m=y0(h,300),[g,y]=b.useState(!0),[N,w]=b.useState(null),[v,k]=b.useState(!1),[C,E]=b.useState(null),[M,P]=b.useState(""),[$,D]=b.useState(""),[R,O]=b.useState(""),[_,se]=b.useState("admin"),[ne,pe]=b.useState("active"),[ge,z]=b.useState(!1);async function K(){var W;y(!0),w(null);try{const oe=new URLSearchParams({page:String(a),pageSize:String(o)});m.trim()&&oe.set("search",m.trim());const Q=await Re(`/api/admin/users?${oe}`);Q!=null&&Q.success?(e(Q.records||[]),s(Q.total??0),u(Q.totalPages??0)):w(Q.error||"加载失败")}catch(oe){const Q=oe;w(Q.status===403?"无权限访问":((W=Q==null?void 0:Q.data)==null?void 0:W.error)||"加载失败"),e([])}finally{y(!1)}}b.useEffect(()=>{K()},[a,o,m]);const U=()=>{E(null),P(""),D(""),O(""),se("admin"),pe("active"),k(!0)},I=W=>{E(W),P(W.username),D(""),O(W.name||""),se(W.role==="super_admin"?"super_admin":"admin"),pe(W.status==="disabled"?"disabled":"active"),k(!0)},q=async()=>{var W;if(!M.trim()){w("用户名不能为空");return}if(!C&&!$){w("新建时密码必填,至少 6 位");return}if($&&$.length<6){w("密码至少 6 位");return}w(null),z(!0);try{if(C){const oe=await _t("/api/admin/users",{id:C.id,password:$||void 0,name:R.trim(),role:_,status:ne});oe!=null&&oe.success?(k(!1),K()):w((oe==null?void 0:oe.error)||"保存失败")}else{const oe=await yt("/api/admin/users",{username:M.trim(),password:$,name:R.trim(),role:_});oe!=null&&oe.success?(k(!1),K()):w((oe==null?void 0:oe.error)||"保存失败")}}catch(oe){const Q=oe;w(((W=Q==null?void 0:Q.data)==null?void 0:W.error)||"保存失败")}finally{z(!1)}},F=async W=>{var oe;if(confirm("确定删除该管理员?"))try{const Q=await Hr(`/api/admin/users?id=${W}`);Q!=null&&Q.success?K():w((Q==null?void 0:Q.error)||"删除失败")}catch(Q){const X=Q;w(((oe=X==null?void 0:X.data)==null?void 0:oe.error)||"删除失败")}},L=W=>{if(!W)return"-";try{const oe=new Date(W);return isNaN(oe.getTime())?W:oe.toLocaleString("zh-CN")}catch{return W}};return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-6",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(nd,{className:"w-5 h-5 text-[#38bdac]"}),"管理员用户"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"后台登录账号管理,仅超级管理员可操作"})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(ie,{placeholder:"搜索用户名/昵称",value:h,onChange:W=>f(W.target.value),className:"w-48 bg-[#0f2137] border-gray-700 text-white placeholder:text-gray-500"}),r.jsx(Z,{variant:"outline",size:"sm",onClick:K,disabled:g,className:"border-gray-600 text-gray-300",children:r.jsx(We,{className:`w-4 h-4 ${g?"animate-spin":""}`})}),r.jsxs(Z,{onClick:U,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"新增管理员"]})]})]}),N&&r.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:[r.jsx("span",{children:N}),r.jsx("button",{type:"button",onClick:()=>w(null),className:"text-red-400 hover:text-red-300",children:"×"})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-0",children:g?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(r.Fragment,{children:[r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"ID"}),r.jsx(ke,{className:"text-gray-400",children:"用户名"}),r.jsx(ke,{className:"text-gray-400",children:"昵称"}),r.jsx(ke,{className:"text-gray-400",children:"角色"}),r.jsx(ke,{className:"text-gray-400",children:"状态"}),r.jsx(ke,{className:"text-gray-400",children:"创建时间"}),r.jsx(ke,{className:"text-right text-gray-400",children:"操作"})]})}),r.jsxs(us,{children:[t.map(W=>r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(Ne,{className:"text-gray-300",children:W.id}),r.jsx(Ne,{className:"text-white font-medium",children:W.username}),r.jsx(Ne,{className:"text-gray-400",children:W.name||"-"}),r.jsx(Ne,{children:r.jsx(Ue,{variant:"outline",className:W.role==="super_admin"?"border-amber-500/50 text-amber-400":"border-gray-600 text-gray-400",children:W.role==="super_admin"?"超级管理员":"管理员"})}),r.jsx(Ne,{children:r.jsx(Ue,{variant:"outline",className:W.status==="active"?"border-[#38bdac]/50 text-[#38bdac]":"border-gray-500 text-gray-500",children:W.status==="active"?"正常":"已禁用"})}),r.jsx(Ne,{className:"text-gray-500 text-sm",children:L(W.createdAt)}),r.jsxs(Ne,{className:"text-right",children:[r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>I(W),className:"text-gray-400 hover:text-[#38bdac]",children:r.jsx(Vt,{className:"w-4 h-4"})}),r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>F(W.id),className:"text-gray-400 hover:text-red-400",children:r.jsx(Jn,{className:"w-4 h-4"})})]})]},W.id)),t.length===0&&!g&&r.jsx(it,{children:r.jsx(Ne,{colSpan:7,className:"text-center py-12 text-gray-500",children:N==="无权限访问"?"仅超级管理员可查看":"暂无管理员"})})]})]}),c>1&&r.jsx("div",{className:"p-4 border-t border-gray-700/50",children:r.jsx(Vs,{page:a,pageSize:o,total:n,totalPages:c,onPageChange:i})})]})})}),r.jsx(Mt,{open:v,onOpenChange:k,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-sm",children:[r.jsx(At,{children:r.jsx(It,{className:"text-white",children:C?"编辑管理员":"新增管理员"})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"用户名"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"登录用户名",value:M,onChange:W=>P(W.target.value),disabled:!!C}),C&&r.jsx("p",{className:"text-xs text-gray-500",children:"用户名不可修改"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:C?"新密码(留空不改)":"密码"}),r.jsx(ie,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:C?"留空表示不修改":"至少 6 位",value:$,onChange:W=>D(W.target.value)})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"昵称"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"显示名称",value:R,onChange:W=>O(W.target.value)})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"角色"}),r.jsxs("select",{value:_,onChange:W=>se(W.target.value),className:"w-full h-10 px-3 rounded-md bg-[#0a1628] border border-gray-700 text-white",children:[r.jsx("option",{value:"admin",children:"管理员"}),r.jsx("option",{value:"super_admin",children:"超级管理员"})]})]}),C&&r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"状态"}),r.jsxs("select",{value:ne,onChange:W=>pe(W.target.value),className:"w-full h-10 px-3 rounded-md bg-[#0a1628] border border-gray-700 text-white",children:[r.jsx("option",{value:"active",children:"正常"}),r.jsx("option",{value:"disabled",children:"禁用"})]})]})]}),r.jsxs(Zt,{children:[r.jsxs(Z,{variant:"outline",onClick:()=>k(!1),className:"border-gray-600 text-gray-300",children:[r.jsx(is,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(Z,{onClick:q,disabled:ge,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),ge?"保存中...":"保存"]})]})]})})]})}function jn({method:t,url:e,desc:n,headers:s,body:a,response:i}){const o=t==="GET"?"text-emerald-400":t==="POST"?"text-amber-400":t==="PUT"?"text-blue-400":t==="DELETE"?"text-rose-400":"text-gray-400";return r.jsxs("div",{className:"rounded-lg bg-[#0a1628]/60 border border-gray-700/50 p-4 space-y-3",children:[r.jsxs("div",{className:"flex items-center gap-2 flex-wrap",children:[r.jsx("span",{className:`font-mono font-semibold ${o}`,children:t}),r.jsx("code",{className:"text-sm text-[#38bdac] break-all",children:e})]}),n&&r.jsx("p",{className:"text-gray-400 text-sm",children:n}),s&&s.length>0&&r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"Headers"}),r.jsx("pre",{className:"text-xs text-gray-300 font-mono overflow-x-auto p-2 rounded bg-black/30",children:s.join(` -`)})]}),a&&r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"Request Body (JSON)"}),r.jsx("pre",{className:"text-xs text-green-400/90 font-mono overflow-x-auto p-2 rounded bg-black/30 whitespace-pre-wrap",children:a})]}),i&&r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"Response Example"}),r.jsx("pre",{className:"text-xs text-amber-200/80 font-mono overflow-x-auto p-2 rounded bg-black/30 whitespace-pre-wrap",children:i})]})]})}function G4(){const t=["Authorization: Bearer {token}","Content-Type: application/json"];return r.jsxs("div",{className:"p-8 w-full bg-[#0a1628] text-white",children:[r.jsxs("div",{className:"mb-8",children:[r.jsx("h1",{className:"text-2xl font-bold text-white",children:"API 接口文档"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"内容管理相关接口 · RESTful · 基础路径 /api · 管理端需 Bearer Token"})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(cj,{className:"w-5 h-5 text-[#38bdac]"}),"1. Authentication"]})}),r.jsx(Ee,{className:"space-y-4",children:r.jsx(jn,{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" -}`})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Hs,{className:"w-5 h-5 text-[#38bdac]"}),"2. 章节管理 (Chapters)"]})}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsx(jn,{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 } - ] -}`}),r.jsx(jn,{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" - } -}`}),r.jsx(jn,{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": "新章节标题", ... } -}`}),r.jsx(jn,{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": "更新后的标题", ... } -}`}),r.jsx(jn,{method:"POST",url:"/api/db/book",desc:"删除章节 (action=delete-section)",headers:t,body:`{ - "action": "delete-section", - "id": "section-1" -}`,response:`{ - "success": true, - "message": "已删除" -}`}),r.jsx(jn,{method:"POST",url:"/api/admin/content/upload",desc:"上传图片(管理端)",headers:t,body:"FormData: file (binary)",response:`{ - "success": true, - "url": "/uploads/images/xxx.jpg", - "data": { "url", "fileName", "size", "type" } -}`})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(ko,{className:"w-5 h-5 text-[#38bdac]"}),"3. 人物管理 (@Mentions)"]})}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsx(jn,{method:"GET",url:"/api/db/persons",desc:"人物列表",headers:t,response:`{ - "success": true, - "data": [ - { "personId": "p1", "label": "张三", "aliases": ["老张"], ... } - ] -}`}),r.jsx(jn,{method:"GET",url:"/api/db/person?personId={id}",desc:"人物详情",headers:t,response:`{ - "success": true, - "data": { - "personId": "p1", - "label": "张三", - "aliases": ["老张"], - "description": "..." - } -}`}),r.jsx(jn,{method:"POST",url:"/api/db/persons",desc:"新增/更新人物(含 aliases 字段)",headers:t,body:`{ - "personId": "p1", - "label": "张三", - "aliases": ["老张", "张三丰"], - "description": "可选描述" -}`,response:`{ - "success": true, - "data": { "personId": "p1", "label": "张三", ... } -}`}),r.jsx(jn,{method:"DELETE",url:"/api/db/persons?personId={id}",desc:"删除人物",headers:t,response:`{ - "success": true, - "message": "已删除" -}`})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(sd,{className:"w-5 h-5 text-[#38bdac]"}),"4. 链接标签 (#LinkTags)"]})}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsx(jn,{method:"GET",url:"/api/db/link-tags",desc:"标签列表",headers:t,response:`{ - "success": true, - "data": [ - { "tagId": "t1", "label": "官网", "aliases": [], "type": "url", "url": "https://..." } - ] -}`}),r.jsx(jn,{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", ... } -}`}),r.jsx(jn,{method:"DELETE",url:"/api/db/link-tags?tagId={id}",desc:"删除标签",headers:t,response:`{ - "success": true, - "message": "已删除" -}`})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(ka,{className:"w-5 h-5 text-[#38bdac]"}),"5. 内容搜索"]})}),r.jsx(Ee,{className:"space-y-4",children:r.jsx(jn,{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": "..." }] - } -}`})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Yg,{className:"w-5 h-5 text-[#38bdac]"}),"6. 内容排行"]})}),r.jsx(Ee,{className:"space-y-4",children:r.jsx(jn,{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 } - ] -}`})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Ti,{className:"w-5 h-5 text-[#38bdac]"}),"7. 小程序接口"]})}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsx(jn,{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 }, ... ] -}`}),r.jsx(jn,{method:"GET",url:"/api/miniprogram/balance?userId={id}",desc:"查余额",headers:["Content-Type: application/json"],response:`{ - "success": true, - "data": { "balance": 100.50, "userId": "xxx" } -}`}),r.jsx(jn,{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 } -}`}),r.jsx(jn,{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 } -}`})]})]}),r.jsx("p",{className:"text-gray-500 text-xs mt-6",children:"管理端仅使用 /api/admin/*、/api/db/*;小程序使用 /api/miniprogram/*。完整实现见 soul-api 源码。"})]})}const pV={appId:"wxb8bbb2b10dec74aa",withdrawSubscribeTmplId:"u3MbZGPRkrZIk-I7QdpwzFxnO_CeQPaCWF2FkiIablE",mchId:"1318592501",minWithdraw:10},mV={name:"卡若",startDate:"2025年10月15日",bio:"连续创业者,私域运营专家,每天早上6-9点在Soul派对房分享真实商业故事",liveTime:"06:00-09:00",platform:"Soul派对房",description:"连续创业者,私域运营专家"},gV={sectionPrice:1,baseBookPrice:9.9,distributorShare:90,authorInfo:{...mV},ckbLeadApiKey:""},xV={matchEnabled:!0,referralEnabled:!0,searchEnabled:!0,aboutEnabled:!0},yV=["system","author","admin","api-docs"];function bV(){const[t,e]=Zw(),n=t.get("tab")??"system",s=yV.includes(n)?n:"system",[a,i]=b.useState(gV),[o,c]=b.useState(xV),[u,h]=b.useState(pV),[f,m]=b.useState({}),[g,y]=b.useState(!1),[N,w]=b.useState(!0),[v,k]=b.useState(!1),[C,E]=b.useState(""),[M,P]=b.useState(""),[$,D]=b.useState(!1),[R,O]=b.useState(!1),_=(I,q,F=!1)=>{E(I),P(q),D(F),k(!0)};b.useEffect(()=>{(async()=>{try{const q=await Re("/api/admin/settings");if(!q||q.success===!1)return;if(q.featureConfig&&Object.keys(q.featureConfig).length&&c(F=>({...F,...q.featureConfig})),q.mpConfig&&typeof q.mpConfig=="object"&&h(F=>({...F,...q.mpConfig})),q.ossConfig&&typeof q.ossConfig=="object"&&m(F=>({...F,...q.ossConfig})),q.siteSettings&&typeof q.siteSettings=="object"){const F=q.siteSettings;i(L=>({...L,...typeof F.sectionPrice=="number"&&{sectionPrice:F.sectionPrice},...typeof F.baseBookPrice=="number"&&{baseBookPrice:F.baseBookPrice},...typeof F.distributorShare=="number"&&{distributorShare:F.distributorShare},...F.authorInfo&&typeof F.authorInfo=="object"&&{authorInfo:{...L.authorInfo,...F.authorInfo}},...typeof F.ckbLeadApiKey=="string"&&{ckbLeadApiKey:F.ckbLeadApiKey}}))}}catch(q){console.error("Load settings error:",q)}finally{w(!1)}})()},[]);const se=async(I,q)=>{O(!0);try{const F=await yt("/api/admin/settings",{featureConfig:I});if(!F||F.success===!1){q(),_("保存失败",(F==null?void 0:F.error)??"未知错误",!0);return}_("已保存","功能开关已更新,相关入口将随之显示或隐藏。")}catch(F){console.error("Save feature config error:",F),q(),_("保存失败",F instanceof Error?F.message:String(F),!0)}finally{O(!1)}},ne=(I,q)=>{const F=o,L={...F,[I]:q};c(L),se(L,()=>c(F))},[pe,ge]=b.useState(!1),z=async I=>{const q=u,F={...q,auditMode:I};h(F),ge(!0);try{const L=await yt("/api/admin/settings",{mpConfig:F});if(!L||L.success===!1){h(q),_("保存失败",(L==null?void 0:L.error)??"未知错误",!0);return}_("已保存",I?"审核模式已开启,小程序将隐藏所有支付入口。":"审核模式已关闭,支付功能已恢复。")}catch(L){h(q),_("保存失败",L instanceof Error?L.message:String(L),!0)}finally{ge(!1)}},K=async()=>{y(!0);try{const I=await yt("/api/admin/settings",{featureConfig:o,siteSettings:{sectionPrice:a.sectionPrice,baseBookPrice:a.baseBookPrice,distributorShare:a.distributorShare,authorInfo:a.authorInfo,ckbLeadApiKey:a.ckbLeadApiKey||void 0},mpConfig:{...u,appId:u.appId||"",withdrawSubscribeTmplId:u.withdrawSubscribeTmplId||"",mchId:u.mchId||"",minWithdraw:typeof u.minWithdraw=="number"?u.minWithdraw:10,auditMode:u.auditMode??!1},ossConfig:Object.keys(f).length?{endpoint:f.endpoint??"",bucket:f.bucket??"",region:f.region??"",accessKeyId:f.accessKeyId??"",accessKeySecret:f.accessKeySecret??""}:void 0});if(!I||I.success===!1){_("保存失败",(I==null?void 0:I.error)??"未知错误",!0);return}_("已保存","设置已保存成功。")}catch(I){console.error("Save settings error:",I),_("保存失败",I instanceof Error?I.message:String(I),!0)}finally{y(!1)}},U=I=>{e(I==="system"?{}:{tab:I})};return N?r.jsx("div",{className:"p-8 text-gray-500",children:"加载中..."}):r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-6",children:[r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"系统设置"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"配置全站基础参数与开关"})]}),s==="system"&&r.jsxs(Z,{onClick:K,disabled:g,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),g?"保存中...":"保存设置"]})]}),r.jsxs(zd,{value:s,onValueChange:U,className:"w-full",children:[r.jsxs(nc,{className:"mb-6 bg-[#0f2137] border border-gray-700/50 p-1",children:[r.jsxs(en,{value:"system",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[r.jsx(jo,{className:"w-4 h-4 mr-2"}),"系统设置"]}),r.jsxs(en,{value:"author",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[r.jsx(Vm,{className:"w-4 h-4 mr-2"}),"作者详情"]}),r.jsxs(en,{value:"admin",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[r.jsx(nd,{className:"w-4 h-4 mr-2"}),"管理员"]}),r.jsxs(en,{value:"api-docs",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[r.jsx(aj,{className:"w-4 h-4 mr-2"}),"API 文档"]})]}),r.jsx(tn,{value:"system",className:"mt-0",children:r.jsxs("div",{className:"space-y-6",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Vm,{className:"w-5 h-5 text-[#38bdac]"}),"关于作者"]}),r.jsx(Dt,{className:"text-gray-400",children:'配置作者信息,将在"关于作者"页面显示'})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{htmlFor:"author-name",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(Vm,{className:"w-3 h-3"}),"主理人名称"]}),r.jsx(ie,{id:"author-name",className:"bg-[#0a1628] border-gray-700 text-white",value:a.authorInfo.name??"",onChange:I=>i(q=>({...q,authorInfo:{...q.authorInfo,name:I.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{htmlFor:"start-date",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(Eh,{className:"w-3 h-3"}),"开播日期"]}),r.jsx(ie,{id:"start-date",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例如: 2025年10月15日",value:a.authorInfo.startDate??"",onChange:I=>i(q=>({...q,authorInfo:{...q.authorInfo,startDate:I.target.value}}))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{htmlFor:"live-time",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(Eh,{className:"w-3 h-3"}),"直播时间"]}),r.jsx(ie,{id:"live-time",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例如: 06:00-09:00",value:a.authorInfo.liveTime??"",onChange:I=>i(q=>({...q,authorInfo:{...q.authorInfo,liveTime:I.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{htmlFor:"platform",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(dj,{className:"w-3 h-3"}),"直播平台"]}),r.jsx(ie,{id:"platform",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例如: Soul派对房",value:a.authorInfo.platform??"",onChange:I=>i(q=>({...q,authorInfo:{...q.authorInfo,platform:I.target.value}}))})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{htmlFor:"description",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(Hs,{className:"w-3 h-3"}),"简介描述"]}),r.jsx(ie,{id:"description",className:"bg-[#0a1628] border-gray-700 text-white",value:a.authorInfo.description??"",onChange:I=>i(q=>({...q,authorInfo:{...q.authorInfo,description:I.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{htmlFor:"bio",className:"text-gray-300",children:"详细介绍"}),r.jsx(sc,{id:"bio",className:"bg-[#0a1628] border-gray-700 text-white min-h-[100px]",placeholder:"输入作者详细介绍...",value:a.authorInfo.bio??"",onChange:I=>i(q=>({...q,authorInfo:{...q.authorInfo,bio:I.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{htmlFor:"ckb-lead-api-key",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(kr,{className:"w-3 h-3"}),"链接卡若存客宝密钥"]}),r.jsx(ie,{id:"ckb-lead-api-key",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 xxxxx-xxxxx-xxxxx-xxxxx(留空则用 .env 默认)",value:a.ckbLeadApiKey??"",onChange:I=>i(q=>({...q,ckbLeadApiKey:I.target.value}))}),r.jsx("p",{className:"text-xs text-gray-500",children:"小程序首页「链接卡若」留资接口使用的存客宝 API Key,优先于 .env 配置"})]}),r.jsxs("div",{className:"mt-4 p-4 rounded-xl bg-[#0a1628] border border-[#38bdac]/30",children:[r.jsx("p",{className:"text-xs text-gray-500 mb-2",children:"预览效果"}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.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:(a.authorInfo.name??"K").charAt(0)}),r.jsxs("div",{children:[r.jsx("p",{className:"text-white font-semibold",children:a.authorInfo.name}),r.jsx("p",{className:"text-gray-400 text-xs",children:a.authorInfo.description}),r.jsxs("p",{className:"text-[#38bdac] text-xs mt-1",children:["每日 ",a.authorInfo.liveTime," · ",a.authorInfo.platform]})]})]})]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Th,{className:"w-5 h-5 text-[#38bdac]"}),"价格设置"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置书籍和章节的定价"})]}),r.jsx(Ee,{className:"space-y-4",children:r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"单节价格 (元)"}),r.jsx(ie,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:a.sectionPrice,onChange:I=>i(q=>({...q,sectionPrice:Number.parseFloat(I.target.value)||1}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"整本价格 (元)"}),r.jsx(ie,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:a.baseBookPrice,onChange:I=>i(q=>({...q,baseBookPrice:Number.parseFloat(I.target.value)||9.9}))})]})]})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Ti,{className:"w-5 h-5 text-[#38bdac]"}),"小程序配置"]}),r.jsx(Dt,{className:"text-gray-400",children:"订阅消息模板、支付商户号等,小程序从 /api/miniprogram/config 读取(API 地址由 app.js baseUrl 控制)"})]}),r.jsx(Ee,{className:"space-y-4",children:r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"小程序 AppID"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"wxb8bbb2b10dec74aa",value:u.appId??"",onChange:I=>h(q=>({...q,appId:I.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"提现订阅模板 ID"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"用户申请提现时需授权",value:u.withdrawSubscribeTmplId??"",onChange:I=>h(q=>({...q,withdrawSubscribeTmplId:I.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"微信支付商户号"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"1318592501",value:u.mchId??"",onChange:I=>h(q=>({...q,mchId:I.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"最低提现金额 (元)"}),r.jsx(ie,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:u.minWithdraw??10,onChange:I=>h(q=>({...q,minWithdraw:Number.parseFloat(I.target.value)||10}))})]})]})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(iM,{className:"w-5 h-5 text-[#38bdac]"}),"OSS 配置(阿里云对象存储)"]}),r.jsx(Dt,{className:"text-gray-400",children:"endpoint、bucket、accessKey 等,用于图片/文件上传"})]}),r.jsx(Ee,{className:"space-y-4",children:r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"Endpoint"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"oss-cn-hangzhou.aliyuncs.com",value:f.endpoint??"",onChange:I=>m(q=>({...q,endpoint:I.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"Bucket"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"bucket 名称",value:f.bucket??"",onChange:I=>m(q=>({...q,bucket:I.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"Region"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"oss-cn-hangzhou",value:f.region??"",onChange:I=>m(q=>({...q,region:I.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"AccessKey ID"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"AccessKey ID",value:f.accessKeyId??"",onChange:I=>m(q=>({...q,accessKeyId:I.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"AccessKey Secret"}),r.jsx(ie,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"AccessKey Secret",value:f.accessKeySecret??"",onChange:I=>m(q=>({...q,accessKeySecret:I.target.value}))})]})]})})]}),r.jsxs(Ce,{className:`bg-[#0f2137] shadow-xl ${u.auditMode?"border-amber-500/50 border-2":"border-gray-700/50"}`,children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(nd,{className:"w-5 h-5 text-amber-400"}),"小程序审核模式"]}),r.jsx(Dt,{className:"text-gray-400",children:"提交微信审核前开启,审核通过后关闭即可恢复支付功能"})]}),r.jsx(Ee,{children:r.jsxs("div",{className:`flex items-center justify-between p-4 rounded-lg border ${u.auditMode?"bg-amber-500/10 border-amber-500/30":"bg-[#0a1628] border-gray-700/50"}`,children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(nd,{className:`w-4 h-4 ${u.auditMode?"text-amber-400":"text-gray-400"}`}),r.jsx(ee,{htmlFor:"audit-mode",className:"text-white font-medium cursor-pointer",children:u.auditMode?"审核模式(已开启)":"审核模式(已关闭)"})]}),r.jsx("p",{className:"text-xs text-gray-400 ml-6",children:u.auditMode?"当前已隐藏所有支付、VIP、充值、收益等入口,审核员看不到任何付费内容":"关闭状态,小程序正常显示所有功能(含支付、VIP 等)"})]}),r.jsx(St,{id:"audit-mode",checked:u.auditMode??!1,disabled:pe,onCheckedChange:z})]})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(jo,{className:"w-5 h-5 text-[#38bdac]"}),"功能开关"]}),r.jsx(Dt,{className:"text-gray-400",children:"控制各个功能模块的显示/隐藏"})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(Rn,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx(ee,{htmlFor:"match-enabled",className:"text-white font-medium cursor-pointer",children:"找伙伴功能"})]}),r.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制小程序和Web端的找伙伴功能显示"})]}),r.jsx(St,{id:"match-enabled",checked:o.matchEnabled,disabled:R,onCheckedChange:I=>ne("matchEnabled",I)})]}),r.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(oj,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx(ee,{htmlFor:"referral-enabled",className:"text-white font-medium cursor-pointer",children:"推广功能"})]}),r.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制推广中心的显示(我的页面入口)"})]}),r.jsx(St,{id:"referral-enabled",checked:o.referralEnabled,disabled:R,onCheckedChange:I=>ne("referralEnabled",I)})]}),r.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(Hs,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx(ee,{htmlFor:"search-enabled",className:"text-white font-medium cursor-pointer",children:"搜索功能"})]}),r.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制首页、目录页搜索栏的显示"})]}),r.jsx(St,{id:"search-enabled",checked:o.searchEnabled,disabled:R,onCheckedChange:I=>ne("searchEnabled",I)})]}),r.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(jo,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx(ee,{htmlFor:"about-enabled",className:"text-white font-medium cursor-pointer",children:"关于页面"})]}),r.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制关于页面的访问"})]}),r.jsx(St,{id:"about-enabled",checked:o.aboutEnabled,disabled:R,onCheckedChange:I=>ne("aboutEnabled",I)})]})]}),r.jsx("div",{className:"p-3 rounded-lg bg-blue-500/10 border border-blue-500/30",children:r.jsx("p",{className:"text-xs text-blue-300",children:"💡 关闭功能后,相关入口会自动隐藏。建议在功能开发完成后再开启。"})})]})]})]})}),r.jsx(tn,{value:"author",className:"mt-0",children:r.jsx(hV,{})}),r.jsx(tn,{value:"admin",className:"mt-0",children:r.jsx(fV,{})}),r.jsx(tn,{value:"api-docs",className:"mt-0",children:r.jsx(G4,{})})]}),r.jsx(Mt,{open:v,onOpenChange:k,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white",showCloseButton:!0,children:[r.jsxs(At,{children:[r.jsx(It,{className:$?"text-red-400":"text-[#38bdac]",children:C}),r.jsx(vd,{className:"text-gray-400 whitespace-pre-wrap pt-2",children:M})]}),r.jsx(Zt,{className:"mt-4",children:r.jsx(Z,{onClick:()=>k(!1),className:$?"bg-gray-600 hover:bg-gray-500":"bg-[#38bdac] hover:bg-[#2da396]",children:"确定"})})]})})]})}const Iw={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 vV(){const[t,e]=b.useState(!1),[n,s]=b.useState(Iw),[a,i]=b.useState(""),o=async()=>{e(!0);try{const k=await Re("/api/config");k!=null&&k.paymentMethods&&s({...Iw,...k.paymentMethods})}catch(k){console.error(k)}finally{e(!1)}};b.useEffect(()=>{o()},[]);const c=async()=>{e(!0);try{await yt("/api/db/config",{key:"payment_methods",value:n,description:"支付方式配置"}),ae.success("配置已保存!")}catch(k){console.error("保存失败:",k),ae.error("保存失败: "+(k instanceof Error?k.message:String(k)))}finally{e(!1)}},u=(k,C)=>{navigator.clipboard.writeText(k),i(C),setTimeout(()=>i(""),2e3)},h=(k,C)=>{s(E=>({...E,wechat:{...E.wechat,[k]:C}}))},f=(k,C)=>{s(E=>({...E,alipay:{...E.alipay,[k]:C}}))},m=(k,C)=>{s(E=>({...E,usdt:{...E.usdt,[k]:C}}))},g=(k,C)=>{s(E=>({...E,paypal:{...E.paypal,[k]:C}}))},y=n.wechat,N=n.alipay,w=n.usdt,v=n.paypal;return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsx("h1",{className:"text-2xl font-bold mb-2 text-white",children:"支付配置"}),r.jsx("p",{className:"text-gray-400",children:"配置微信、支付宝、USDT、PayPal等支付参数"})]}),r.jsxs("div",{className:"flex gap-3",children:[r.jsxs(Z,{variant:"outline",onClick:o,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${t?"animate-spin":""}`}),"同步配置"]}),r.jsxs(Z,{onClick:c,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),"保存配置"]})]})]}),r.jsx("div",{className:"mb-6 bg-[#07C160]/10 border border-[#07C160]/30 rounded-xl p-4",children:r.jsxs("div",{className:"flex items-start gap-3",children:[r.jsx(sj,{className:"w-5 h-5 text-[#07C160] flex-shrink-0 mt-0.5"}),r.jsxs("div",{className:"text-sm",children:[r.jsx("p",{className:"font-medium mb-2 text-[#07C160]",children:"如何获取微信群跳转链接?"}),r.jsxs("ol",{className:"text-[#07C160]/80 space-y-1 list-decimal list-inside",children:[r.jsx("li",{children:"打开微信,进入目标微信群"}),r.jsx("li",{children:'点击右上角"..." → "群二维码"'}),r.jsx("li",{children:'点击右上角"..." → "发送到电脑"'}),r.jsx("li",{children:"在电脑上保存二维码图片,上传到图床获取URL"}),r.jsx("li",{children:"或使用草料二维码等工具解析二维码获取链接"})]}),r.jsx("p",{className:"text-[#07C160]/60 mt-2",children:"提示:微信群二维码7天后失效,建议使用活码工具"})]})]})}),r.jsxs(zd,{defaultValue:"wechat",className:"space-y-6",children:[r.jsxs(nc,{className:"bg-[#0f2137] border border-gray-700/50 p-1 grid grid-cols-4 w-full",children:[r.jsxs(en,{value:"wechat",className:"data-[state=active]:bg-[#07C160]/20 data-[state=active]:text-[#07C160] text-gray-400",children:[r.jsx(Ti,{className:"w-4 h-4 mr-2"}),"微信"]}),r.jsxs(en,{value:"alipay",className:"data-[state=active]:bg-[#1677FF]/20 data-[state=active]:text-[#1677FF] text-gray-400",children:[r.jsx(Jv,{className:"w-4 h-4 mr-2"}),"支付宝"]}),r.jsxs(en,{value:"usdt",className:"data-[state=active]:bg-[#26A17B]/20 data-[state=active]:text-[#26A17B] text-gray-400",children:[r.jsx(qv,{className:"w-4 h-4 mr-2"}),"USDT"]}),r.jsxs(en,{value:"paypal",className:"data-[state=active]:bg-[#003087]/20 data-[state=active]:text-[#169BD7] text-gray-400",children:[r.jsx(Kg,{className:"w-4 h-4 mr-2"}),"PayPal"]})]}),r.jsx(tn,{value:"wechat",className:"space-y-4",children:r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between pb-2",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs(Ye,{className:"text-[#07C160] flex items-center gap-2",children:[r.jsx(Ti,{className:"w-5 h-5"}),"微信支付配置"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置微信支付参数和跳转链接"})]}),r.jsx(St,{checked:!!y.enabled,onCheckedChange:k=>h("enabled",k)})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"网站AppID"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(y.websiteAppId??""),onChange:k=>h("websiteAppId",k.target.value)})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"商户号"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(y.merchantId??""),onChange:k=>h("merchantId",k.target.value)})]})]}),r.jsxs("div",{className:"border-t border-gray-700/50 pt-4 space-y-4",children:[r.jsxs("h4",{className:"text-white font-medium flex items-center gap-2",children:[r.jsx(qr,{className:"w-4 h-4 text-[#38bdac]"}),"跳转链接配置(核心功能)"]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"微信收款码/支付链接"}),r.jsx(ie,{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)}),r.jsx("p",{className:"text-xs text-gray-500",children:"用户点击微信支付后显示的二维码图片URL"})]}),r.jsxs("div",{className:"space-y-2 bg-[#07C160]/5 p-4 rounded-xl border border-[#07C160]/20",children:[r.jsx(ee,{className:"text-[#07C160] font-medium",children:"微信群跳转链接(支付成功后跳转)"}),r.jsx(ie,{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)}),r.jsx("p",{className:"text-xs text-[#07C160]/70",children:"用户支付成功后将自动跳转到此链接,进入指定微信群"})]})]})]})]})}),r.jsx(tn,{value:"alipay",className:"space-y-4",children:r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between pb-2",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs(Ye,{className:"text-[#1677FF] flex items-center gap-2",children:[r.jsx(Jv,{className:"w-5 h-5"}),"支付宝配置"]}),r.jsx(Dt,{className:"text-gray-400",children:"已加载真实支付宝参数"})]}),r.jsx(St,{checked:!!N.enabled,onCheckedChange:k=>f("enabled",k)})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"合作者身份 (PID)"}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(N.partnerId??""),onChange:k=>f("partnerId",k.target.value)}),r.jsx(Z,{size:"icon",variant:"outline",className:"border-gray-700 bg-transparent",onClick:()=>u(String(N.partnerId??""),"pid"),children:a==="pid"?r.jsx(If,{className:"w-4 h-4 text-green-500"}):r.jsx(n0,{className:"w-4 h-4 text-gray-400"})})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"安全校验码 (Key)"}),r.jsx(ie,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(N.securityKey??""),onChange:k=>f("securityKey",k.target.value)})]})]}),r.jsxs("div",{className:"border-t border-gray-700/50 pt-4 space-y-4",children:[r.jsxs("h4",{className:"text-white font-medium flex items-center gap-2",children:[r.jsx(qr,{className:"w-4 h-4 text-[#38bdac]"}),"跳转链接配置"]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"支付宝收款码/跳转链接"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"https://qr.alipay.com/... 或收款码图片URL",value:String(N.qrCode??""),onChange:k=>f("qrCode",k.target.value)}),r.jsx("p",{className:"text-xs text-gray-500",children:"用户点击支付宝支付后显示的二维码"})]})]})]})]})}),r.jsx(tn,{value:"usdt",className:"space-y-4",children:r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between pb-2",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs(Ye,{className:"text-[#26A17B] flex items-center gap-2",children:[r.jsx(qv,{className:"w-5 h-5"}),"USDT配置"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置加密货币收款地址"})]}),r.jsx(St,{checked:!!w.enabled,onCheckedChange:k=>m("enabled",k)})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"网络类型"}),r.jsxs("select",{className:"w-full bg-[#0a1628] border border-gray-700 text-white rounded-md p-2",value:String(w.network??"TRC20"),onChange:k=>m("network",k.target.value),children:[r.jsx("option",{value:"TRC20",children:"TRC20 (波场)"}),r.jsx("option",{value:"ERC20",children:"ERC20 (以太坊)"}),r.jsx("option",{value:"BEP20",children:"BEP20 (币安链)"})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"收款地址"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",placeholder:"T... (TRC20地址)",value:String(w.address??""),onChange:k=>m("address",k.target.value)})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"汇率 (1 USD = ? CNY)"}),r.jsx(ie,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:Number(w.exchangeRate)??7.2,onChange:k=>m("exchangeRate",Number.parseFloat(k.target.value)||7.2)})]})]})]})}),r.jsx(tn,{value:"paypal",className:"space-y-4",children:r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between pb-2",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs(Ye,{className:"text-[#169BD7] flex items-center gap-2",children:[r.jsx(Kg,{className:"w-5 h-5"}),"PayPal配置"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置PayPal收款账户"})]}),r.jsx(St,{checked:!!v.enabled,onCheckedChange:k=>g("enabled",k)})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"PayPal邮箱"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"your@email.com",value:String(v.email??""),onChange:k=>g("email",k.target.value)})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"汇率 (1 USD = ? CNY)"}),r.jsx(ie,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:Number(v.exchangeRate)??7.2,onChange:k=>g("exchangeRate",Number(k.target.value)||7.2)})]})]})]})})]})]})}const NV={siteName:"卡若日记",siteTitle:"一场SOUL的创业实验场",siteDescription:"来自Soul派对房的真实商业故事",logo:"/logo.png",favicon:"/favicon.ico",primaryColor:"#00CED1"},wV={home:{enabled:!0,label:"首页"},chapters:{enabled:!0,label:"目录"},match:{enabled:!0,label:"匹配"},my:{enabled:!0,label:"我的"}},jV={homeTitle:"一场SOUL的创业实验场",homeSubtitle:"来自Soul派对房的真实商业故事",chaptersTitle:"我要看",matchTitle:"语音匹配",myTitle:"我的",aboutTitle:"关于作者"};function kV(){const[t,e]=b.useState({siteConfig:{...NV},menuConfig:{...wV},pageConfig:{...jV}}),[n,s]=b.useState(!1),[a,i]=b.useState(!1);b.useEffect(()=>{Re("/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 yt("/api/db/config",{key:"site_config",value:t.siteConfig,description:"网站基础配置"}),await yt("/api/db/config",{key:"menu_config",value:t.menuConfig,description:"底部菜单配置"}),await yt("/api/db/config",{key:"page_config",value:t.pageConfig,description:"页面标题配置"}),s(!0),setTimeout(()=>s(!1),2e3),ae.success("配置已保存")}catch(f){console.error(f),ae.error("保存失败: "+(f instanceof Error?f.message:String(f)))}finally{i(!1)}},c=t.siteConfig,u=t.menuConfig,h=t.pageConfig;return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"网站配置"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"配置网站名称、图标、菜单和页面标题"})]}),r.jsxs(Z,{onClick:o,disabled:a,className:`${n?"bg-green-500":"bg-[#00CED1]"} hover:bg-[#20B2AA] text-white transition-colors`,children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),a?"保存中...":n?"已保存":"保存设置"]})]}),r.jsxs("div",{className:"space-y-6",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Kg,{className:"w-5 h-5 text-[#00CED1]"}),"网站基础信息"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置网站名称、标题和描述"})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{htmlFor:"site-name",className:"text-gray-300",children:"网站名称"}),r.jsx(ie,{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}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{htmlFor:"site-title",className:"text-gray-300",children:"网站标题"}),r.jsx(ie,{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}}))})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{htmlFor:"site-desc",className:"text-gray-300",children:"网站描述"}),r.jsx(ie,{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}}))})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{htmlFor:"logo",className:"text-gray-300",children:"Logo地址"}),r.jsx(ie,{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}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{htmlFor:"favicon",className:"text-gray-300",children:"Favicon地址"}),r.jsx(ie,{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}}))})]})]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(cA,{className:"w-5 h-5 text-[#00CED1]"}),"主题颜色"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置网站主题色"})]}),r.jsx(Ee,{children:r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsxs("div",{className:"space-y-2 flex-1",children:[r.jsx(ee,{htmlFor:"primary-color",className:"text-gray-300",children:"主色调"}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(ie,{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}}))}),r.jsx(ie,{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}}))})]})]}),r.jsx("div",{className:"w-24 h-24 rounded-xl flex items-center justify-center text-white font-bold",style:{backgroundColor:c.primaryColor??"#00CED1"},children:"预览"})]})})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(nA,{className:"w-5 h-5 text-[#00CED1]"}),"底部菜单配置"]}),r.jsx(Dt,{className:"text-gray-400",children:"控制底部导航栏菜单的显示和名称"})]}),r.jsx(Ee,{className:"space-y-4",children:Object.entries(u).map(([f,m])=>r.jsxs("div",{className:"flex items-center justify-between p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center gap-4 flex-1",children:[r.jsx(St,{checked:(m==null?void 0:m.enabled)??!0,onCheckedChange:g=>e(y=>({...y,menuConfig:{...y.menuConfig,[f]:{...m,enabled:g}}}))}),r.jsx("span",{className:"text-gray-300 w-16 capitalize",children:f}),r.jsx(ie,{className:"bg-[#0f2137] border-gray-700 text-white max-w-[200px]",value:(m==null?void 0:m.label)??"",onChange:g=>e(y=>({...y,menuConfig:{...y.menuConfig,[f]:{...m,label:g.target.value}}}))})]}),r.jsx("span",{className:`text-sm ${m!=null&&m.enabled?"text-green-400":"text-gray-500"}`,children:m!=null&&m.enabled?"显示":"隐藏"})]},f))})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(aj,{className:"w-5 h-5 text-[#00CED1]"}),"页面标题配置"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置各个页面的标题和副标题"})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"首页标题"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.homeTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,homeTitle:f.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"首页副标题"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.homeSubtitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,homeSubtitle:f.target.value}}))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"目录页标题"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.chaptersTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,chaptersTitle:f.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"匹配页标题"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.matchTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,matchTitle:f.target.value}}))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"我的页标题"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.myTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,myTitle:f.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"关于作者标题"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.aboutTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,aboutTitle:f.target.value}}))})]})]})]})]})]})]})}function SV(){const[t,e]=b.useState(""),[n,s]=b.useState(""),[a,i]=b.useState(""),[o,c]=b.useState({}),u=async()=>{var y,N,w,v;try{const k=await Re("/api/config"),C=(N=(y=k==null?void 0:k.liveQRCodes)==null?void 0:y[0])==null?void 0:N.urls;Array.isArray(C)&&e(C.join(` -`));const E=(v=(w=k==null?void 0:k.paymentMethods)==null?void 0:w.wechat)==null?void 0:v.groupQrCode;E&&s(E),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,N)=>{navigator.clipboard.writeText(y),i(N),setTimeout(()=>i(""),2e3)},f=async()=>{try{const y=t.split(` -`).map(w=>w.trim()).filter(Boolean),N=[...o.liveQRCodes||[]];N[0]?N[0].urls=y:N.push({id:"live-1",name:"微信群活码",urls:y,clickCount:0}),await yt("/api/db/config",{key:"live_qr_codes",value:N,description:"群活码配置"}),ae.success("群活码配置已保存!"),await u()}catch(y){console.error(y),ae.error("保存失败: "+(y instanceof Error?y.message:String(y)))}},m=async()=>{var y;try{await yt("/api/db/config",{key:"payment_methods",value:{...o.paymentMethods||{},wechat:{...((y=o.paymentMethods)==null?void 0:y.wechat)||{},groupQrCode:n}},description:"支付方式配置"}),ae.success("微信群链接已保存!用户支付成功后将自动跳转"),await u()}catch(N){console.error(N),ae.error("保存失败: "+(N instanceof Error?N.message:String(N)))}},g=()=>{n?window.open(n,"_blank"):ae.error("请先配置微信群链接")};return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"mb-8",children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"微信群活码管理"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"配置微信群跳转链接,用户支付后自动跳转加群"})]}),r.jsx("div",{className:"mb-6 bg-[#07C160]/10 border border-[#07C160]/30 rounded-xl p-4",children:r.jsxs("div",{className:"flex items-start gap-3",children:[r.jsx(sj,{className:"w-5 h-5 text-[#07C160] flex-shrink-0 mt-0.5"}),r.jsxs("div",{className:"text-sm",children:[r.jsx("p",{className:"font-medium mb-2 text-[#07C160]",children:"微信群活码配置指南"}),r.jsxs("div",{className:"text-[#07C160]/80 space-y-2",children:[r.jsx("p",{className:"font-medium",children:"方法一:使用草料活码(推荐)"}),r.jsxs("ol",{className:"list-decimal list-inside space-y-1 pl-2",children:[r.jsx("li",{children:"访问草料二维码创建活码"}),r.jsx("li",{children:"上传微信群二维码图片,生成永久链接"}),r.jsx("li",{children:"复制生成的短链接填入下方配置"}),r.jsx("li",{children:"群满后可直接在草料后台更换新群码,链接不变"})]}),r.jsx("p",{className:"font-medium mt-3",children:"方法二:直接使用微信群链接"}),r.jsxs("ol",{className:"list-decimal list-inside space-y-1 pl-2",children:[r.jsx("li",{children:'微信打开目标群 → 右上角"..." → 群二维码'}),r.jsx("li",{children:"长按二维码 → 识别二维码 → 复制链接"})]}),r.jsx("p",{className:"text-[#07C160]/60 mt-2",children:"注意:微信原生群二维码7天后失效,建议使用草料活码"})]})]})]})}),r.jsxs("div",{className:"grid gap-6 md:grid-cols-2",children:[r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl md:col-span-2",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-[#07C160] flex items-center gap-2",children:[r.jsx(Qv,{className:"w-5 h-5"}),"支付成功跳转链接(核心配置)"]}),r.jsx(Dt,{className:"text-gray-400",children:"用户支付完成后自动跳转到此链接,进入指定微信群"})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(qg,{className:"w-4 h-4"}),"微信群链接 / 活码链接"]}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx(ie,{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=>s(y.target.value)}),r.jsx(Z,{variant:"outline",size:"icon",className:"border-gray-700 bg-transparent hover:bg-gray-700/50",onClick:()=>h(n,"group"),children:a==="group"?r.jsx(If,{className:"w-4 h-4 text-green-500"}):r.jsx(n0,{className:"w-4 h-4 text-gray-400"})})]}),r.jsxs("p",{className:"text-xs text-gray-500 flex items-center gap-1",children:[r.jsx(qr,{className:"w-3 h-3"}),"支持格式:草料短链、微信群链接(https://weixin.qq.com/g/...)、企业微信链接等"]})]}),r.jsxs("div",{className:"flex gap-3",children:[r.jsxs(Z,{onClick:m,className:"flex-1 bg-[#07C160] hover:bg-[#06AD51] text-white",children:[r.jsx(Mh,{className:"w-4 h-4 mr-2"}),"保存配置"]}),r.jsxs(Z,{onClick:g,variant:"outline",className:"border-[#07C160] text-[#07C160] hover:bg-[#07C160]/10 bg-transparent",children:[r.jsx(qr,{className:"w-4 h-4 mr-2"}),"测试跳转"]})]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl md:col-span-2",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Qv,{className:"w-5 h-5 text-[#38bdac]"}),"多群轮换(高级配置)"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置多个群链接,系统自动轮换分配,避免单群满员"})]}),r.jsxs(Ee,{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsxs(ee,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(qg,{className:"w-4 h-4"}),"多个群链接(每行一个)"]}),r.jsx(sc,{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)}),r.jsx("p",{className:"text-xs text-gray-500",children:"每行填写一个群链接,系统将按顺序或随机分配"})]}),r.jsxs("div",{className:"flex items-center justify-between p-3 bg-[#0a1628] rounded-lg border border-gray-700/50",children:[r.jsx("span",{className:"text-sm text-gray-400",children:"已配置群数量"}),r.jsxs("span",{className:"font-bold text-[#38bdac]",children:[t.split(` -`).filter(Boolean).length," 个"]})]}),r.jsxs(Z,{onClick:f,className:"w-full bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(Mh,{className:"w-4 h-4 mr-2"}),"保存多群配置"]})]})]})]}),r.jsxs("div",{className:"mt-6 bg-[#0f2137] rounded-xl p-4 border border-gray-700/50",children:[r.jsx("h4",{className:"text-white font-medium mb-3",children:"常见问题"}),r.jsxs("div",{className:"space-y-3 text-sm",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-[#38bdac]",children:"Q: 为什么推荐使用草料活码?"}),r.jsx("p",{className:"text-gray-400",children:"A: 草料活码是永久链接,群满后可直接在后台更换新群码,无需修改网站配置。微信原生群码7天失效。"})]}),r.jsxs("div",{children:[r.jsx("p",{className:"text-[#38bdac]",children:"Q: 支付后没有跳转怎么办?"}),r.jsx("p",{className:"text-gray-400",children:"A: 1) 检查链接是否正确填写 2) 部分浏览器可能拦截弹窗,用户需手动允许 3) 建议使用https开头的链接"})]})]})]})]})}const Rw={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}},CV=["⭐","👥","❤️","🎮","💼","🚀","💡","🎯","🔥","✨"];function EV(){const[t,e]=b.useState(Rw),[n,s]=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}),g=async()=>{s(!0);try{const E=await Re("/api/db/config/full?key=match_config"),M=(E==null?void 0:E.data)??(E==null?void 0:E.config);M&&e({...Rw,...M})}catch(E){console.error("加载匹配配置失败:",E)}finally{s(!1)}};b.useEffect(()=>{g()},[]);const y=async()=>{i(!0);try{const E=await yt("/api/db/config",{key:"match_config",value:t,description:"匹配功能配置"});E&&E.success!==!1?ae.success("配置保存成功!"):ae.error("保存失败: "+(E&&typeof E=="object"&&"error"in E?E.error:"未知错误"))}catch(E){console.error("保存配置失败:",E),ae.error("保存失败")}finally{i(!1)}},N=E=>{h(E),m({id:E.id,label:E.label,matchLabel:E.matchLabel,icon:E.icon,matchFromDB:E.matchFromDB,showJoinAfterMatch:E.showJoinAfterMatch,price:E.price,enabled:E.enabled}),c(!0)},w=()=>{h(null),m({id:"",label:"",matchLabel:"",icon:"⭐",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}),c(!0)},v=()=>{if(!f.id||!f.label){ae.error("请填写类型ID和名称");return}const E=[...t.matchTypes];if(u){const M=E.findIndex(P=>P.id===u.id);M!==-1&&(E[M]={...f})}else{if(E.some(M=>M.id===f.id)){ae.error("类型ID已存在");return}E.push({...f})}e({...t,matchTypes:E}),c(!1)},k=E=>{confirm("确定要删除这个匹配类型吗?")&&e({...t,matchTypes:t.matchTypes.filter(M=>M.id!==E)})},C=E=>{e({...t,matchTypes:t.matchTypes.map(M=>M.id===E?{...M,enabled:!M.enabled}:M)})};return r.jsxs("div",{className:"p-8 w-full space-y-6",children:[r.jsxs("div",{className:"flex justify-between items-center",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(jo,{className:"w-6 h-6 text-[#38bdac]"}),"匹配功能配置"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"管理找伙伴功能的匹配类型和价格"})]}),r.jsxs("div",{className:"flex gap-3",children:[r.jsxs(Z,{variant:"outline",onClick:g,disabled:n,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${n?"animate-spin":""}`}),"刷新"]}),r.jsxs(Z,{onClick:y,disabled:a,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),a?"保存中...":"保存配置"]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(yi,{className:"w-5 h-5 text-yellow-400"}),"基础设置"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置免费匹配次数和付费规则"})]}),r.jsxs(Ee,{className:"space-y-6",children:[r.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-6",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"每日免费匹配次数"}),r.jsx(ie,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:t.freeMatchLimit,onChange:E=>e({...t,freeMatchLimit:parseInt(E.target.value,10)||0})}),r.jsx("p",{className:"text-xs text-gray-500",children:"用户每天可免费匹配的次数"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"付费匹配价格(元)"}),r.jsx(ie,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:t.matchPrice,onChange:E=>e({...t,matchPrice:parseFloat(E.target.value)||1})}),r.jsx("p",{className:"text-xs text-gray-500",children:"免费次数用完后的单次匹配价格"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"每日最大匹配次数"}),r.jsx(ie,{type:"number",min:1,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:t.settings.maxMatchesPerDay,onChange:E=>e({...t,settings:{...t.settings,maxMatchesPerDay:parseInt(E.target.value,10)||10}})}),r.jsx("p",{className:"text-xs text-gray-500",children:"包含免费和付费的总次数"})]})]}),r.jsxs("div",{className:"flex gap-8 pt-4 border-t border-gray-700/50",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(St,{checked:t.settings.enableFreeMatches,onCheckedChange:E=>e({...t,settings:{...t.settings,enableFreeMatches:E}})}),r.jsx(ee,{className:"text-gray-300",children:"启用免费匹配"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(St,{checked:t.settings.enablePaidMatches,onCheckedChange:E=>e({...t,settings:{...t.settings,enablePaidMatches:E}})}),r.jsx(ee,{className:"text-gray-300",children:"启用付费匹配"})]})]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between",children:[r.jsxs("div",{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Rn,{className:"w-5 h-5 text-[#38bdac]"}),"匹配类型管理"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置不同的匹配类型及其价格"})]}),r.jsxs(Z,{onClick:w,size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(pn,{className:"w-4 h-4 mr-1"}),"添加类型"]})]}),r.jsx(Ee,{children:r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"图标"}),r.jsx(ke,{className:"text-gray-400",children:"类型ID"}),r.jsx(ke,{className:"text-gray-400",children:"显示名称"}),r.jsx(ke,{className:"text-gray-400",children:"匹配标签"}),r.jsx(ke,{className:"text-gray-400",children:"价格"}),r.jsx(ke,{className:"text-gray-400",children:"数据库匹配"}),r.jsx(ke,{className:"text-gray-400",children:"状态"}),r.jsx(ke,{className:"text-right text-gray-400",children:"操作"})]})}),r.jsx(us,{children:t.matchTypes.map(E=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(Ne,{children:r.jsx("span",{className:"text-2xl",children:E.icon})}),r.jsx(Ne,{className:"font-mono text-gray-300",children:E.id}),r.jsx(Ne,{className:"text-white font-medium",children:E.label}),r.jsx(Ne,{className:"text-gray-300",children:E.matchLabel}),r.jsx(Ne,{children:r.jsxs(Ue,{className:"bg-yellow-500/20 text-yellow-400 hover:bg-yellow-500/20 border-0",children:["¥",E.price]})}),r.jsx(Ne,{children:E.matchFromDB?r.jsx(Ue,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"是"}):r.jsx(Ue,{variant:"outline",className:"text-gray-500 border-gray-600",children:"否"})}),r.jsx(Ne,{children:r.jsx(St,{checked:E.enabled,onCheckedChange:()=>C(E.id)})}),r.jsx(Ne,{className:"text-right",children:r.jsxs("div",{className:"flex items-center justify-end gap-1",children:[r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>N(E),className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",children:r.jsx(Vt,{className:"w-4 h-4"})}),r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>k(E.id),className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",children:r.jsx(Jn,{className:"w-4 h-4"})})]})})]},E.id))})]})})]}),r.jsx(Mt,{open:o,onOpenChange:c,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",showCloseButton:!0,children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[u?r.jsx(Vt,{className:"w-5 h-5 text-[#38bdac]"}):r.jsx(pn,{className:"w-5 h-5 text-[#38bdac]"}),u?"编辑匹配类型":"添加匹配类型"]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"类型ID(英文)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: partner",value:f.id,onChange:E=>m({...f,id:E.target.value}),disabled:!!u})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"图标"}),r.jsx("div",{className:"flex gap-1 flex-wrap",children:CV.map(E=>r.jsx("button",{type:"button",className:`w-8 h-8 text-lg rounded ${f.icon===E?"bg-[#38bdac]/30 ring-1 ring-[#38bdac]":"bg-[#0a1628]"}`,onClick:()=>m({...f,icon:E}),children:E},E))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"显示名称"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 创业合伙",value:f.label,onChange:E=>m({...f,label:E.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"匹配标签"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 创业伙伴",value:f.matchLabel,onChange:E=>m({...f,matchLabel:E.target.value})})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"单次匹配价格(元)"}),r.jsx(ie,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:f.price,onChange:E=>m({...f,price:parseFloat(E.target.value)||1})})]}),r.jsxs("div",{className:"flex gap-6 pt-2",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(St,{checked:f.matchFromDB,onCheckedChange:E=>m({...f,matchFromDB:E})}),r.jsx(ee,{className:"text-gray-300 text-sm",children:"从数据库匹配"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(St,{checked:f.showJoinAfterMatch,onCheckedChange:E=>m({...f,showJoinAfterMatch:E})}),r.jsx(ee,{className:"text-gray-300 text-sm",children:"匹配后显示加入"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(St,{checked:f.enabled,onCheckedChange:E=>m({...f,enabled:E})}),r.jsx(ee,{className:"text-gray-300 text-sm",children:"启用"})]})]})]}),r.jsxs(Zt,{children:[r.jsx(Z,{variant:"outline",onClick:()=>c(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsxs(Z,{onClick:v,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),"保存"]})]})]})})]})}const Pw={partner:"找伙伴",investor:"资源对接",mentor:"导师顾问",team:"团队招募"};function TV(){const[t,e]=b.useState([]),[n,s]=b.useState(0),[a,i]=b.useState(1),[o,c]=b.useState(10),[u,h]=b.useState(""),[f,m]=b.useState(!0),[g,y]=b.useState(null);async function N(){m(!0),y(null);try{const v=new URLSearchParams({page:String(a),pageSize:String(o)});u&&v.set("matchType",u);const k=await Re(`/api/db/match-records?${v}`);k!=null&&k.success?(e(k.records||[]),s(k.total??0)):y("加载匹配记录失败")}catch(v){console.error("加载匹配记录失败",v),y("加载失败,请检查网络后重试")}finally{m(!1)}}b.useEffect(()=>{N()},[a,u]);const w=Math.ceil(n/o)||1;return r.jsxs("div",{className:"p-8 w-full",children:[g&&r.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:[r.jsx("span",{children:g}),r.jsx("button",{type:"button",onClick:()=>y(null),className:"hover:text-red-300",children:"×"})]}),r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"匹配记录"}),r.jsxs("p",{className:"text-gray-400 mt-1",children:["找伙伴匹配统计,共 ",n," 条记录"]})]}),r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsxs("select",{value:u,onChange:v=>{h(v.target.value),i(1)},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:[r.jsx("option",{value:"",children:"全部类型"}),Object.entries(Pw).map(([v,k])=>r.jsx("option",{value:v,children:k},v))]}),r.jsxs("button",{type:"button",onClick:N,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:[r.jsx(We,{className:`w-4 h-4 ${f?"animate-spin":""}`}),"刷新"]})]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Ee,{className:"p-0",children:f?r.jsxs("div",{className:"flex justify-center py-12",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"发起人"}),r.jsx(ke,{className:"text-gray-400",children:"匹配到"}),r.jsx(ke,{className:"text-gray-400",children:"类型"}),r.jsx(ke,{className:"text-gray-400",children:"联系方式"}),r.jsx(ke,{className:"text-gray-400",children:"匹配时间"})]})}),r.jsxs(us,{children:[t.map(v=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(Ne,{children:r.jsxs("div",{className:"flex items-center gap-3",children:[r.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:[v.userAvatar?r.jsx("img",{src:v.userAvatar,alt:"",className:"w-full h-full object-cover",onError:k=>{k.currentTarget.style.display="none";const C=k.currentTarget.nextElementSibling;C&&C.classList.remove("hidden")}}):null,r.jsx("span",{className:v.userAvatar?"hidden":"",children:(v.userNickname||v.userId||"?").charAt(0)})]}),r.jsxs("div",{children:[r.jsx("div",{className:"text-white",children:v.userNickname||v.userId}),r.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:[v.userId.slice(0,16),"..."]})]})]})}),r.jsx(Ne,{children:r.jsxs("div",{className:"flex items-center gap-3",children:[r.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:[v.matchedUserAvatar?r.jsx("img",{src:v.matchedUserAvatar,alt:"",className:"w-full h-full object-cover",onError:k=>{k.currentTarget.style.display="none";const C=k.currentTarget.nextElementSibling;C&&C.classList.remove("hidden")}}):null,r.jsx("span",{className:v.matchedUserAvatar?"hidden":"",children:(v.matchedNickname||v.matchedUserId||"?").charAt(0)})]}),r.jsxs("div",{children:[r.jsx("div",{className:"text-white",children:v.matchedNickname||v.matchedUserId}),r.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:[v.matchedUserId.slice(0,16),"..."]})]})]})}),r.jsx(Ne,{children:r.jsx(Ue,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0",children:Pw[v.matchType]||v.matchType})}),r.jsxs(Ne,{className:"text-gray-400 text-sm",children:[v.phone&&r.jsxs("div",{children:["📱 ",v.phone]}),v.wechatId&&r.jsxs("div",{children:["💬 ",v.wechatId]}),!v.phone&&!v.wechatId&&"-"]}),r.jsx(Ne,{className:"text-gray-400",children:v.createdAt?new Date(v.createdAt).toLocaleString():"-"})]},v.id)),t.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:5,className:"text-center py-12 text-gray-500",children:"暂无匹配记录"})})]})]}),r.jsx(Vs,{page:a,totalPages:w,total:n,pageSize:o,onPageChange:i,onPageSizeChange:v=>{c(v),i(1)}})]})})})]})}function MV(){const[t,e]=b.useState([]),[n,s]=b.useState(!0);async function a(){s(!0);try{const i=await Re("/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),ae.error("加载 VIP 成员失败")}finally{s(!1)}}return b.useEffect(()=>{a()},[]),r.jsxs("div",{className:"p-8 w-full",children:[r.jsx("div",{className:"flex justify-between items-center mb-8",children:r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(zl,{className:"w-5 h-5 text-amber-400"}),"用户管理 / 超级个体列表"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"这里展示所有有效超级个体用户,仅用于查看其基本信息与排序值。"})]})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-0",children:n?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400 w-20",children:"序号"}),r.jsx(ke,{className:"text-gray-400",children:"成员"}),r.jsx(ke,{className:"text-gray-400 w-40",children:"超级个体"}),r.jsx(ke,{className:"text-gray-400 w-28",children:"排序值"})]})}),r.jsxs(us,{children:[t.map((i,o)=>{var c;return r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(Ne,{className:"text-gray-300",children:o+1}),r.jsx(Ne,{children:r.jsxs("div",{className:"flex items-center gap-3",children:[i.avatar?r.jsx("img",{src:i.avatar,className:"w-8 h-8 rounded-full object-cover border border-amber-400/60"}):r.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])||"创"}),r.jsx("div",{className:"min-w-0",children:r.jsx("div",{className:"text-white text-sm truncate",children:i.name})})]})}),r.jsx(Ne,{className:"text-gray-300",children:i.vipRole||r.jsx("span",{className:"text-gray-500",children:"(未设置超级个体)"})}),r.jsx(Ne,{className:"text-gray-300",children:i.vipSort??o+1})]},i.id)}),t.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:5,className:"text-center py-12 text-gray-500",children:"当前没有有效的超级个体用户。"})})]})]})})})]})}function J4(t){const[e,n]=b.useState([]),[s,a]=b.useState(!0),[i,o]=b.useState(!1),[c,u]=b.useState(null),[h,f]=b.useState({name:"",avatar:"",intro:"",tags:"",priceSingle:"",priceHalfYear:"",priceYear:"",quote:"",whyFind:"",offering:"",judgmentStyle:"",sort:0,enabled:!0}),[m,g]=b.useState(!1),[y,N]=b.useState(!1),w=b.useRef(null),v=async R=>{var _;const O=(_=R.target.files)==null?void 0:_[0];if(O){N(!0);try{const se=new FormData;se.append("file",O),se.append("folder","mentors");const ne=Rf(),pe={};ne&&(pe.Authorization=`Bearer ${ne}`);const z=await(await fetch(Ao("/api/upload"),{method:"POST",body:se,credentials:"include",headers:pe})).json();z!=null&&z.success&&(z!=null&&z.url)?f(K=>({...K,avatar:z.url})):ae.error("上传失败: "+((z==null?void 0:z.error)||"未知错误"))}catch(se){console.error(se),ae.error("上传失败")}finally{N(!1),w.current&&(w.current.value="")}}};async function k(){a(!0);try{const R=await Re("/api/db/mentors");R!=null&&R.success&&R.data&&n(R.data)}catch(R){console.error("Load mentors error:",R)}finally{a(!1)}}b.useEffect(()=>{k()},[]);const C=()=>{f({name:"",avatar:"",intro:"",tags:"",priceSingle:"",priceHalfYear:"",priceYear:"",quote:"",whyFind:"",offering:"",judgmentStyle:"",sort:e.length>0?Math.max(...e.map(R=>R.sort))+1:0,enabled:!0})},E=()=>{u(null),C(),o(!0)},M=R=>{u(R),f({name:R.name,avatar:R.avatar||"",intro:R.intro||"",tags:R.tags||"",priceSingle:R.priceSingle!=null?String(R.priceSingle):"",priceHalfYear:R.priceHalfYear!=null?String(R.priceHalfYear):"",priceYear:R.priceYear!=null?String(R.priceYear):"",quote:R.quote||"",whyFind:R.whyFind||"",offering:R.offering||"",judgmentStyle:R.judgmentStyle||"",sort:R.sort,enabled:R.enabled??!0}),o(!0)},P=async()=>{if(!h.name.trim()){ae.error("导师姓名不能为空");return}g(!0);try{const R=_=>_===""?void 0:parseFloat(_),O={name:h.name.trim(),avatar:h.avatar.trim()||void 0,intro:h.intro.trim()||void 0,tags:h.tags.trim()||void 0,priceSingle:R(h.priceSingle),priceHalfYear:R(h.priceHalfYear),priceYear:R(h.priceYear),quote:h.quote.trim()||void 0,whyFind:h.whyFind.trim()||void 0,offering:h.offering.trim()||void 0,judgmentStyle:h.judgmentStyle.trim()||void 0,sort:h.sort,enabled:h.enabled};if(c){const _=await _t("/api/db/mentors",{id:c.id,...O});_!=null&&_.success?(o(!1),k()):ae.error("更新失败: "+(_==null?void 0:_.error))}else{const _=await yt("/api/db/mentors",O);_!=null&&_.success?(o(!1),k()):ae.error("新增失败: "+(_==null?void 0:_.error))}}catch(R){console.error("Save error:",R),ae.error("保存失败")}finally{g(!1)}},$=async R=>{if(confirm("确定删除该导师?"))try{const O=await Hr(`/api/db/mentors?id=${R}`);O!=null&&O.success?k():ae.error("删除失败: "+(O==null?void 0:O.error))}catch(O){console.error("Delete error:",O),ae.error("删除失败")}},D=R=>R!=null?`¥${R}`:"-";return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(Rn,{className:"w-5 h-5 text-[#38bdac]"}),"导师管理"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"stitch_soul 导师列表,支持每个导师独立配置单次/半年/年度价格"})]}),r.jsxs(Z,{onClick:E,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(pn,{className:"w-4 h-4 mr-2"}),"新增导师"]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-0",children:s?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"ID"}),r.jsx(ke,{className:"text-gray-400",children:"姓名"}),r.jsx(ke,{className:"text-gray-400",children:"简介"}),r.jsx(ke,{className:"text-gray-400",children:"单次"}),r.jsx(ke,{className:"text-gray-400",children:"半年"}),r.jsx(ke,{className:"text-gray-400",children:"年度"}),r.jsx(ke,{className:"text-gray-400",children:"排序"}),r.jsx(ke,{className:"text-right text-gray-400",children:"操作"})]})}),r.jsxs(us,{children:[e.map(R=>r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(Ne,{className:"text-gray-300",children:R.id}),r.jsx(Ne,{className:"text-white",children:R.name}),r.jsx(Ne,{className:"text-gray-400 max-w-[200px] truncate",children:R.intro||"-"}),r.jsx(Ne,{className:"text-gray-400",children:D(R.priceSingle)}),r.jsx(Ne,{className:"text-gray-400",children:D(R.priceHalfYear)}),r.jsx(Ne,{className:"text-gray-400",children:D(R.priceYear)}),r.jsx(Ne,{className:"text-gray-400",children:R.sort}),r.jsxs(Ne,{className:"text-right",children:[r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>M(R),className:"text-gray-400 hover:text-[#38bdac]",children:r.jsx(Vt,{className:"w-4 h-4"})}),r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>$(R.id),className:"text-gray-400 hover:text-red-400",children:r.jsx(Jn,{className:"w-4 h-4"})})]})]},R.id)),e.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:8,className:"text-center py-12 text-gray-500",children:"暂无导师,点击「新增导师」添加"})})]})]})})}),r.jsx(Mt,{open:i,onOpenChange:o,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg max-h-[90vh] overflow-y-auto",children:[r.jsx(At,{children:r.jsx(It,{className:"text-white",children:c?"编辑导师":"新增导师"})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"姓名 *"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:卡若",value:h.name,onChange:R=>f(O=>({...O,name:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"排序"}),r.jsx(ie,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:h.sort,onChange:R=>f(O=>({...O,sort:parseInt(R.target.value,10)||0}))})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"头像"}),r.jsxs("div",{className:"flex gap-3 items-center",children:[r.jsx(ie,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:h.avatar,onChange:R=>f(O=>({...O,avatar:R.target.value})),placeholder:"点击上传或粘贴图片地址"}),r.jsx("input",{ref:w,type:"file",accept:"image/*",className:"hidden",onChange:v}),r.jsxs(Z,{type:"button",variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 shrink-0",disabled:y,onClick:()=>{var R;return(R=w.current)==null?void 0:R.click()},children:[r.jsx(Mh,{className:"w-4 h-4 mr-2"}),y?"上传中...":"上传"]})]}),h.avatar&&r.jsx("div",{className:"mt-2",children:r.jsx("img",{src:h.avatar.startsWith("http")?h.avatar:Ao(h.avatar),alt:"头像预览",className:"w-20 h-20 rounded-full object-cover border border-gray-600"})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"简介"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:结构判断型咨询 · Decision > Execution",value:h.intro,onChange:R=>f(O=>({...O,intro:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"技能标签(逗号分隔)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:项目结构判断、风险止损、人×项目匹配",value:h.tags,onChange:R=>f(O=>({...O,tags:R.target.value}))})]}),r.jsxs("div",{className:"border-t border-gray-700 pt-4",children:[r.jsx(ee,{className:"text-gray-300 block mb-2",children:"价格配置(每个导师独立)"}),r.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"单次咨询 ¥"}),r.jsx(ie,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"980",value:h.priceSingle,onChange:R=>f(O=>({...O,priceSingle:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"半年咨询 ¥"}),r.jsx(ie,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"19800",value:h.priceHalfYear,onChange:R=>f(O=>({...O,priceHalfYear:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"年度咨询 ¥"}),r.jsx(ie,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"29800",value:h.priceYear,onChange:R=>f(O=>({...O,priceYear:R.target.value}))})]})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"引言"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:大多数人失败,不是因为不努力...",value:h.quote,onChange:R=>f(O=>({...O,quote:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"为什么找(文本)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"",value:h.whyFind,onChange:R=>f(O=>({...O,whyFind:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"提供什么(文本)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"",value:h.offering,onChange:R=>f(O=>({...O,offering:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"判断风格(逗号分隔)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:冷静、克制、偏风险视角",value:h.judgmentStyle,onChange:R=>f(O=>({...O,judgmentStyle:R.target.value}))})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("input",{type:"checkbox",id:"enabled",checked:h.enabled,onChange:R=>f(O=>({...O,enabled:R.target.checked})),className:"rounded border-gray-600 bg-[#0a1628]"}),r.jsx(ee,{htmlFor:"enabled",className:"text-gray-300 cursor-pointer",children:"上架(小程序可见)"})]})]}),r.jsxs(Zt,{children:[r.jsxs(Z,{variant:"outline",onClick:()=>o(!1),className:"border-gray-600 text-gray-300",children:[r.jsx(is,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(Z,{onClick:P,disabled:m,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"}),m?"保存中...":"保存"]})]})]})})]})}function AV(){const[t,e]=b.useState([]),[n,s]=b.useState(!0),[a,i]=b.useState("");async function o(){s(!0);try{const h=a?`/api/db/mentor-consultations?status=${a}`:"/api/db/mentor-consultations",f=await Re(h);f!=null&&f.success&&f.data&&e(f.data)}catch(h){console.error("Load consultations error:",h)}finally{s(!1)}}b.useEffect(()=>{o()},[a]);const c={created:"已创建",pending_pay:"待支付",paid:"已支付",completed:"已完成",cancelled:"已取消"},u={single:"单次",half_year:"半年",year:"年度"};return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(Eh,{className:"w-5 h-5 text-[#38bdac]"}),"导师预约列表"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"stitch_soul 导师咨询预约记录"})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.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:[r.jsx("option",{value:"",children:"全部状态"}),Object.entries(c).map(([h,f])=>r.jsx("option",{value:h,children:f},h))]}),r.jsxs(Z,{onClick:o,disabled:n,variant:"outline",className:"border-gray-600 text-gray-300",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${n?"animate-spin":""}`}),"刷新"]})]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-0",children:n?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"ID"}),r.jsx(ke,{className:"text-gray-400",children:"用户ID"}),r.jsx(ke,{className:"text-gray-400",children:"导师ID"}),r.jsx(ke,{className:"text-gray-400",children:"类型"}),r.jsx(ke,{className:"text-gray-400",children:"金额"}),r.jsx(ke,{className:"text-gray-400",children:"状态"}),r.jsx(ke,{className:"text-gray-400",children:"创建时间"})]})}),r.jsxs(us,{children:[t.map(h=>r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(Ne,{className:"text-gray-300",children:h.id}),r.jsx(Ne,{className:"text-gray-400",children:h.userId}),r.jsx(Ne,{className:"text-gray-400",children:h.mentorId}),r.jsx(Ne,{className:"text-gray-400",children:u[h.consultationType]||h.consultationType}),r.jsxs(Ne,{className:"text-white",children:["¥",h.amount]}),r.jsx(Ne,{className:"text-gray-400",children:c[h.status]||h.status}),r.jsx(Ne,{className:"text-gray-500 text-sm",children:h.createdAt})]},h.id)),t.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:7,className:"text-center py-12 text-gray-500",children:"暂无预约记录"})})]})]})})})]})}const td={poolSource:["vip"],requirePhone:!0,requireNickname:!0,requireAvatar:!1,requireBusiness:!1},Ow={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:td},IV=["⭐","👥","❤️","🎮","💼","🚀","💡","🎯","🔥","✨"];function RV(){const t=Li(),[e,n]=b.useState(Ow),[s,a]=b.useState(!0),[i,o]=b.useState(!1),[c,u]=b.useState(!1),[h,f]=b.useState(null),[m,g]=b.useState({id:"",label:"",matchLabel:"",icon:"⭐",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}),[y,N]=b.useState(null),[w,v]=b.useState(!1),k=async()=>{v(!0);try{const O=await Re("/api/db/match-pool-counts");O!=null&&O.success&&O.data&&N(O.data)}catch(O){console.error("加载池子人数失败:",O)}finally{v(!1)}},C=async()=>{a(!0);try{const O=await Re("/api/db/config/full?key=match_config"),_=(O==null?void 0:O.data)??(O==null?void 0:O.config);if(_){let se=_.poolSettings??td;se.poolSource&&!Array.isArray(se.poolSource)&&(se={...se,poolSource:[se.poolSource]}),n({...Ow,..._,poolSettings:se})}}catch(O){console.error("加载匹配配置失败:",O)}finally{a(!1)}};b.useEffect(()=>{C(),k()},[]);const E=async()=>{o(!0);try{const O=await yt("/api/db/config",{key:"match_config",value:e,description:"匹配功能配置"});ae.error((O==null?void 0:O.success)!==!1?"配置保存成功!":"保存失败: "+((O==null?void 0:O.error)||"未知错误"))}catch(O){console.error(O),ae.error("保存失败")}finally{o(!1)}},M=O=>{f(O),g({...O}),u(!0)},P=()=>{f(null),g({id:"",label:"",matchLabel:"",icon:"⭐",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}),u(!0)},$=()=>{if(!m.id||!m.label){ae.error("请填写类型ID和名称");return}const O=[...e.matchTypes];if(h){const _=O.findIndex(se=>se.id===h.id);_!==-1&&(O[_]={...m})}else{if(O.some(_=>_.id===m.id)){ae.error("类型ID已存在");return}O.push({...m})}n({...e,matchTypes:O}),u(!1)},D=O=>{confirm("确定要删除这个匹配类型吗?")&&n({...e,matchTypes:e.matchTypes.filter(_=>_.id!==O)})},R=O=>{n({...e,matchTypes:e.matchTypes.map(_=>_.id===O?{..._,enabled:!_.enabled}:_)})};return r.jsxs("div",{className:"space-y-6",children:[r.jsxs("div",{className:"flex justify-end gap-3",children:[r.jsxs(Z,{variant:"outline",onClick:C,disabled:s,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${s?"animate-spin":""}`})," 刷新"]}),r.jsxs(Z,{onClick:E,disabled:i,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"})," ",i?"保存中...":"保存配置"]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(ij,{className:"w-5 h-5 text-blue-400"})," 匹配池选择"]}),r.jsx(Dt,{className:"text-gray-400",children:"选择匹配的用户池和完善程度要求,只有满足条件的用户才可被匹配到"})]}),r.jsxs(Ee,{className:"space-y-6",children:[r.jsxs("div",{className:"space-y-3",children:[r.jsx(ee,{className:"text-gray-300",children:"匹配来源池"}),r.jsx("p",{className:"text-gray-500 text-xs",children:"可同时勾选多个池子(取并集匹配)"}),r.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(O=>{const _=e.poolSettings??td,ne=(Array.isArray(_.poolSource)?_.poolSource:[_.poolSource]).includes(O.value),pe=y==null?void 0:y[O.countKey],ge=()=>{const z=Array.isArray(_.poolSource)?[..._.poolSource]:[_.poolSource],K=ne?z.filter(U=>U!==O.value):[...z,O.value];K.length===0&&K.push(O.value),n({...e,poolSettings:{..._,poolSource:K}})};return r.jsxs("button",{type:"button",onClick:ge,className:`p-4 rounded-lg border text-left transition-all ${ne?"border-[#38bdac] bg-[#38bdac]/10":"border-gray-700 bg-[#0a1628] hover:border-gray-600"}`,children:[r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("div",{className:`w-5 h-5 rounded border-2 flex items-center justify-center text-xs ${ne?"border-[#38bdac] bg-[#38bdac] text-white":"border-gray-600"}`,children:ne&&"✓"}),r.jsx("span",{className:"text-xl",children:O.icon}),r.jsx("span",{className:`text-sm font-medium ${ne?"text-[#38bdac]":"text-gray-300"}`,children:O.label})]}),r.jsxs("span",{className:"text-lg font-bold text-white",children:[w?"...":pe??"-",r.jsx("span",{className:"text-xs text-gray-500 font-normal ml-1",children:"人"})]})]}),r.jsx("p",{className:"text-gray-500 text-xs mt-2",children:O.desc}),r.jsx("span",{role:"link",tabIndex:0,onClick:z=>{z.stopPropagation(),t(`/users?pool=${O.value}`)},onKeyDown:z=>{z.key==="Enter"&&(z.stopPropagation(),t(`/users?pool=${O.value}`))},className:"text-[#38bdac] text-xs mt-2 inline-block hover:underline cursor-pointer",children:"查看用户列表 →"})]},O.value)})})]}),r.jsxs("div",{className:"space-y-3 pt-4 border-t border-gray-700/50",children:[r.jsx(ee,{className:"text-gray-300",children:"用户资料完善要求(被匹配用户必须满足以下条件)"}),r.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(O=>{const se=(e.poolSettings??td)[O.key];return r.jsxs("div",{className:"flex items-center gap-3 bg-[#0a1628] rounded-lg p-3",children:[r.jsx(St,{checked:se,onCheckedChange:ne=>n({...e,poolSettings:{...e.poolSettings??td,[O.key]:ne}})}),r.jsxs("div",{className:"flex items-center gap-1.5",children:[r.jsx("span",{children:O.icon}),r.jsx(ee,{className:"text-gray-300 text-sm",children:O.label})]})]},O.key)})})]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(yi,{className:"w-5 h-5 text-yellow-400"})," 基础设置"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置免费匹配次数和付费规则"})]}),r.jsxs(Ee,{className:"space-y-6",children:[r.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-6",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"每日免费匹配次数"}),r.jsx(ie,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.freeMatchLimit,onChange:O=>n({...e,freeMatchLimit:parseInt(O.target.value,10)||0})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"付费匹配价格(元)"}),r.jsx(ie,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:e.matchPrice,onChange:O=>n({...e,matchPrice:parseFloat(O.target.value)||1})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"每日最大匹配次数"}),r.jsx(ie,{type:"number",min:1,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.settings.maxMatchesPerDay,onChange:O=>n({...e,settings:{...e.settings,maxMatchesPerDay:parseInt(O.target.value,10)||10}})})]})]}),r.jsxs("div",{className:"flex gap-8 pt-4 border-t border-gray-700/50",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(St,{checked:e.settings.enableFreeMatches,onCheckedChange:O=>n({...e,settings:{...e.settings,enableFreeMatches:O}})}),r.jsx(ee,{className:"text-gray-300",children:"启用免费匹配"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(St,{checked:e.settings.enablePaidMatches,onCheckedChange:O=>n({...e,settings:{...e.settings,enablePaidMatches:O}})}),r.jsx(ee,{className:"text-gray-300",children:"启用付费匹配"})]})]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between",children:[r.jsxs("div",{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Rn,{className:"w-5 h-5 text-[#38bdac]"})," 匹配类型管理"]}),r.jsx(Dt,{className:"text-gray-400",children:"配置不同的匹配类型及其价格"})]}),r.jsxs(Z,{onClick:P,size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(pn,{className:"w-4 h-4 mr-1"})," 添加类型"]})]}),r.jsx(Ee,{children:r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"图标"}),r.jsx(ke,{className:"text-gray-400",children:"类型ID"}),r.jsx(ke,{className:"text-gray-400",children:"显示名称"}),r.jsx(ke,{className:"text-gray-400",children:"匹配标签"}),r.jsx(ke,{className:"text-gray-400",children:"价格"}),r.jsx(ke,{className:"text-gray-400",children:"数据库匹配"}),r.jsx(ke,{className:"text-gray-400",children:"状态"}),r.jsx(ke,{className:"text-right text-gray-400",children:"操作"})]})}),r.jsx(us,{children:e.matchTypes.map(O=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(Ne,{children:r.jsx("span",{className:"text-2xl",children:O.icon})}),r.jsx(Ne,{className:"font-mono text-gray-300",children:O.id}),r.jsx(Ne,{className:"text-white font-medium",children:O.label}),r.jsx(Ne,{className:"text-gray-300",children:O.matchLabel}),r.jsx(Ne,{children:r.jsxs(Ue,{className:"bg-yellow-500/20 text-yellow-400 hover:bg-yellow-500/20 border-0",children:["¥",O.price]})}),r.jsx(Ne,{children:O.matchFromDB?r.jsx(Ue,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"是"}):r.jsx(Ue,{variant:"outline",className:"text-gray-500 border-gray-600",children:"否"})}),r.jsx(Ne,{children:r.jsx(St,{checked:O.enabled,onCheckedChange:()=>R(O.id)})}),r.jsx(Ne,{className:"text-right",children:r.jsxs("div",{className:"flex items-center justify-end gap-1",children:[r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>M(O),className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",children:r.jsx(Vt,{className:"w-4 h-4"})}),r.jsx(Z,{variant:"ghost",size:"sm",onClick:()=>D(O.id),className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",children:r.jsx(Jn,{className:"w-4 h-4"})})]})})]},O.id))})]})})]}),r.jsx(Mt,{open:c,onOpenChange:u,children:r.jsxs(kt,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",showCloseButton:!0,children:[r.jsx(At,{children:r.jsxs(It,{className:"text-white flex items-center gap-2",children:[h?r.jsx(Vt,{className:"w-5 h-5 text-[#38bdac]"}):r.jsx(pn,{className:"w-5 h-5 text-[#38bdac]"}),h?"编辑匹配类型":"添加匹配类型"]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"类型ID(英文)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: partner",value:m.id,onChange:O=>g({...m,id:O.target.value}),disabled:!!h})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"图标"}),r.jsx("div",{className:"flex gap-1 flex-wrap",children:IV.map(O=>r.jsx("button",{type:"button",className:`w-8 h-8 text-lg rounded ${m.icon===O?"bg-[#38bdac]/30 ring-1 ring-[#38bdac]":"bg-[#0a1628]"}`,onClick:()=>g({...m,icon:O}),children:O},O))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"显示名称"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 超级个体",value:m.label,onChange:O=>g({...m,label:O.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"匹配标签"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 超级个体",value:m.matchLabel,onChange:O=>g({...m,matchLabel:O.target.value})})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(ee,{className:"text-gray-300",children:"单次匹配价格(元)"}),r.jsx(ie,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:m.price,onChange:O=>g({...m,price:parseFloat(O.target.value)||1})})]}),r.jsxs("div",{className:"flex gap-6 pt-2",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(St,{checked:m.matchFromDB,onCheckedChange:O=>g({...m,matchFromDB:O})}),r.jsx(ee,{className:"text-gray-300 text-sm",children:"从数据库匹配"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(St,{checked:m.showJoinAfterMatch,onCheckedChange:O=>g({...m,showJoinAfterMatch:O})}),r.jsx(ee,{className:"text-gray-300 text-sm",children:"匹配后显示加入"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(St,{checked:m.enabled,onCheckedChange:O=>g({...m,enabled:O})}),r.jsx(ee,{className:"text-gray-300 text-sm",children:"启用"})]})]})]}),r.jsxs(Zt,{children:[r.jsx(Z,{variant:"outline",onClick:()=>u(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsxs(Z,{onClick:$,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-4 h-4 mr-2"})," 保存"]})]})]})})]})}const Dw={partner:"找伙伴",investor:"资源对接",mentor:"导师顾问",team:"团队招募"};function PV(){const[t,e]=b.useState([]),[n,s]=b.useState(0),[a,i]=b.useState(1),[o,c]=b.useState(10),[u,h]=b.useState(""),[f,m]=b.useState(!0),[g,y]=b.useState(null),[N,w]=b.useState(null);async function v(){m(!0),y(null);try{const E=new URLSearchParams({page:String(a),pageSize:String(o)});u&&E.set("matchType",u);const M=await Re(`/api/db/match-records?${E}`);M!=null&&M.success?(e(M.records||[]),s(M.total??0)):y("加载匹配记录失败")}catch{y("加载失败,请检查网络后重试")}finally{m(!1)}}b.useEffect(()=>{v()},[a,u]);const k=Math.ceil(n/o)||1,C=({userId:E,nickname:M,avatar:P})=>r.jsxs("div",{className:"flex items-center gap-3 cursor-pointer group",onClick:()=>w(E),children:[r.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:[P?r.jsx("img",{src:P,alt:"",className:"w-full h-full object-cover",onError:$=>{$.currentTarget.style.display="none"}}):null,r.jsx("span",{className:P?"hidden":"",children:(M||E||"?").charAt(0)})]}),r.jsxs("div",{children:[r.jsx("div",{className:"text-white group-hover:text-[#38bdac] transition-colors",children:M||E}),r.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:[E==null?void 0:E.slice(0,16),(E==null?void 0:E.length)>16?"...":""]})]})]});return r.jsxs("div",{children:[g&&r.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:[r.jsx("span",{children:g}),r.jsx("button",{type:"button",onClick:()=>y(null),className:"hover:text-red-300",children:"×"})]}),r.jsxs("div",{className:"flex justify-between items-center mb-4",children:[r.jsxs("p",{className:"text-gray-400",children:["共 ",n," 条匹配记录 · 点击用户名查看详情"]}),r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsxs("select",{value:u,onChange:E=>{h(E.target.value),i(1)},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:[r.jsx("option",{value:"",children:"全部类型"}),Object.entries(Dw).map(([E,M])=>r.jsx("option",{value:E,children:M},E))]}),r.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:[r.jsx(We,{className:`w-4 h-4 ${f?"animate-spin":""}`})," 刷新"]})]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Ee,{className:"p-0",children:f?r.jsxs("div",{className:"flex justify-center py-12",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"发起人"}),r.jsx(ke,{className:"text-gray-400",children:"匹配到"}),r.jsx(ke,{className:"text-gray-400",children:"类型"}),r.jsx(ke,{className:"text-gray-400",children:"联系方式"}),r.jsx(ke,{className:"text-gray-400",children:"匹配时间"})]})}),r.jsxs(us,{children:[t.map(E=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(Ne,{children:r.jsx(C,{userId:E.userId,nickname:E.userNickname,avatar:E.userAvatar})}),r.jsx(Ne,{children:E.matchedUserId?r.jsx(C,{userId:E.matchedUserId,nickname:E.matchedNickname,avatar:E.matchedUserAvatar}):r.jsx("span",{className:"text-gray-500",children:"—"})}),r.jsx(Ne,{children:r.jsx(Ue,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0",children:Dw[E.matchType]||E.matchType})}),r.jsxs(Ne,{className:"text-sm",children:[E.phone&&r.jsxs("div",{className:"text-green-400",children:["📱 ",E.phone]}),E.wechatId&&r.jsxs("div",{className:"text-blue-400",children:["💬 ",E.wechatId]}),!E.phone&&!E.wechatId&&r.jsx("span",{className:"text-gray-600",children:"-"})]}),r.jsx(Ne,{className:"text-gray-400",children:E.createdAt?new Date(E.createdAt).toLocaleString():"-"})]},E.id)),t.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:5,className:"text-center py-12 text-gray-500",children:"暂无匹配记录"})})]})]}),r.jsx(Vs,{page:a,totalPages:k,total:n,pageSize:o,onPageChange:i,onPageSizeChange:E=>{c(E),i(1)}})]})})}),r.jsx(x0,{open:!!N,onClose:()=>w(null),userId:N,onUserUpdated:v})]})}function OV(){const[t,e]=b.useState("records");return r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex gap-2",children:[r.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:"匹配记录"}),r.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"&&r.jsx(PV,{}),t==="pool"&&r.jsx(RV,{})]})}const Lw={investor:"资源对接",mentor:"导师顾问",team:"团队招募"};function DV(){const[t,e]=b.useState([]),[n,s]=b.useState(0),[a,i]=b.useState(1),[o,c]=b.useState(10),[u,h]=b.useState(!0),[f,m]=b.useState("investor"),[g,y]=b.useState(null);async function N(){h(!0);try{const C=new URLSearchParams({page:String(a),pageSize:String(o),matchType:f}),E=await Re(`/api/db/match-records?${C}`);E!=null&&E.success&&(e(E.records||[]),s(E.total??0))}catch(C){console.error(C)}finally{h(!1)}}b.useEffect(()=>{N()},[a,f]);const w=async C=>{if(!C.phone&&!C.wechatId){ae.info("该记录无联系方式,无法推送到存客宝");return}y(C.id);try{const E=await yt("/api/ckb/join",{type:C.matchType||"investor",phone:C.phone||"",wechat:C.wechatId||"",userId:C.userId,name:C.userNickname||""});ae.error((E==null?void 0:E.message)||(E!=null&&E.success?"推送成功":"推送失败"))}catch(E){ae.error("推送失败: "+(E instanceof Error?E.message:"网络错误"))}finally{y(null)}},v=Math.ceil(n/o)||1,k=C=>!!(C.phone||C.wechatId);return r.jsxs("div",{children:[r.jsxs("div",{className:"flex justify-between items-center mb-4",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400",children:"点击获客:有人填写手机号/微信号的直接显示,可一键推送到存客宝"}),r.jsxs("p",{className:"text-gray-500 text-xs mt-1",children:["共 ",n," 条记录 — 有联系方式的可触发存客宝添加好友"]})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("select",{value:f,onChange:C=>{m(C.target.value),i(1)},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:Object.entries(Lw).map(([C,E])=>r.jsx("option",{value:C,children:E},C))}),r.jsxs(Z,{onClick:N,disabled:u,variant:"outline",className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${u?"animate-spin":""}`})," 刷新"]})]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Ee,{className:"p-0",children:u?r.jsxs("div",{className:"flex justify-center py-12",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"发起人"}),r.jsx(ke,{className:"text-gray-400",children:"匹配到"}),r.jsx(ke,{className:"text-gray-400",children:"类型"}),r.jsx(ke,{className:"text-gray-400",children:"联系方式"}),r.jsx(ke,{className:"text-gray-400",children:"时间"}),r.jsx(ke,{className:"text-gray-400 text-right",children:"操作"})]})}),r.jsxs(us,{children:[t.map(C=>{var E,M;return r.jsxs(it,{className:`border-gray-700/50 ${k(C)?"hover:bg-[#0a1628]":"opacity-60"}`,children:[r.jsx(Ne,{className:"text-white",children:C.userNickname||((E=C.userId)==null?void 0:E.slice(0,12))}),r.jsx(Ne,{className:"text-white",children:C.matchedNickname||((M=C.matchedUserId)==null?void 0:M.slice(0,12))}),r.jsx(Ne,{children:r.jsx(Ue,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0",children:Lw[C.matchType]||C.matchType})}),r.jsxs(Ne,{className:"text-sm",children:[C.phone&&r.jsxs("div",{className:"text-green-400",children:["📱 ",C.phone]}),C.wechatId&&r.jsxs("div",{className:"text-blue-400",children:["💬 ",C.wechatId]}),!C.phone&&!C.wechatId&&r.jsx("span",{className:"text-gray-600",children:"无联系方式"})]}),r.jsx(Ne,{className:"text-gray-400 text-sm",children:C.createdAt?new Date(C.createdAt).toLocaleString():"-"}),r.jsx(Ne,{className:"text-right",children:k(C)?r.jsxs(Z,{size:"sm",onClick:()=>w(C),disabled:g===C.id,className:"bg-[#38bdac] hover:bg-[#2da396] text-white text-xs h-7 px-3",children:[r.jsx(TA,{className:"w-3 h-3 mr-1"}),g===C.id?"推送中...":"推送CKB"]}):r.jsx("span",{className:"text-gray-600 text-xs",children:"—"})})]},C.id)}),t.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:6,className:"text-center py-12 text-gray-500",children:"暂无记录"})})]})]}),r.jsx(Vs,{page:a,totalPages:v,total:n,pageSize:o,onPageChange:i,onPageSizeChange:C=>{c(C),i(1)}})]})})})]})}const _w={created:"已创建",pending_pay:"待支付",paid:"已支付",completed:"已完成",cancelled:"已取消"},LV={single:"单次",half_year:"半年",year:"年度"};function _V(){const[t,e]=b.useState([]),[n,s]=b.useState(!0),[a,i]=b.useState("");async function o(){s(!0);try{const c=a?`/api/db/mentor-consultations?status=${a}`:"/api/db/mentor-consultations",u=await Re(c);u!=null&&u.success&&u.data&&e(u.data)}catch(c){console.error(c)}finally{s(!1)}}return b.useEffect(()=>{o()},[a]),r.jsxs("div",{children:[r.jsxs("div",{className:"flex justify-between items-center mb-4",children:[r.jsx("p",{className:"text-gray-400",children:"导师咨询预约记录"}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.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:[r.jsx("option",{value:"",children:"全部状态"}),Object.entries(_w).map(([c,u])=>r.jsx("option",{value:c,children:u},c))]}),r.jsxs(Z,{onClick:o,disabled:n,variant:"outline",className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-4 h-4 mr-2 ${n?"animate-spin":""}`})," 刷新"]})]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Ee,{className:"p-0",children:n?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"ID"}),r.jsx(ke,{className:"text-gray-400",children:"用户ID"}),r.jsx(ke,{className:"text-gray-400",children:"导师ID"}),r.jsx(ke,{className:"text-gray-400",children:"类型"}),r.jsx(ke,{className:"text-gray-400",children:"金额"}),r.jsx(ke,{className:"text-gray-400",children:"状态"}),r.jsx(ke,{className:"text-gray-400",children:"创建时间"})]})}),r.jsxs(us,{children:[t.map(c=>r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(Ne,{className:"text-gray-300",children:c.id}),r.jsx(Ne,{className:"text-gray-400",children:c.userId}),r.jsx(Ne,{className:"text-gray-400",children:c.mentorId}),r.jsx(Ne,{className:"text-gray-400",children:LV[c.consultationType]||c.consultationType}),r.jsxs(Ne,{className:"text-white",children:["¥",c.amount]}),r.jsx(Ne,{className:"text-gray-400",children:_w[c.status]||c.status}),r.jsx(Ne,{className:"text-gray-500 text-sm",children:c.createdAt?new Date(c.createdAt).toLocaleString():"-"})]},c.id)),t.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:7,className:"text-center py-12 text-gray-500",children:"暂无预约记录"})})]})]})})})]})}function zV(){const[t,e]=b.useState("booking");return r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex gap-2",children:[r.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:"预约记录"}),r.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"&&r.jsx(_V,{}),t==="manage"&&r.jsx("div",{className:"-mx-8",children:r.jsx(J4,{embedded:!0})})]})}function $V(){const[t,e]=b.useState([]),[n,s]=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 g=new URLSearchParams({page:String(a),pageSize:String(o),matchType:"team"}),y=await Re(`/api/db/match-records?${g}`);y!=null&&y.success&&(e(y.records||[]),s(y.total??0))}catch(g){console.error(g)}finally{h(!1)}}b.useEffect(()=>{f()},[a]);const m=Math.ceil(n/o)||1;return r.jsxs("div",{children:[r.jsxs("div",{className:"flex justify-between items-center mb-4",children:[r.jsxs("div",{children:[r.jsxs("p",{className:"text-gray-400",children:["团队招募匹配记录,共 ",n," 条"]}),r.jsx("p",{className:"text-gray-500 text-xs mt-1",children:"用户通过「团队招募」提交联系方式到存客宝"})]}),r.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:[r.jsx(We,{className:`w-4 h-4 ${u?"animate-spin":""}`})," 刷新"]})]}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Ee,{className:"p-0",children:u?r.jsxs("div",{className:"flex justify-center py-12",children:[r.jsx(We,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[r.jsxs(cs,{children:[r.jsx(ds,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(ke,{className:"text-gray-400",children:"发起人"}),r.jsx(ke,{className:"text-gray-400",children:"匹配到"}),r.jsx(ke,{className:"text-gray-400",children:"联系方式"}),r.jsx(ke,{className:"text-gray-400",children:"时间"})]})}),r.jsxs(us,{children:[t.map(g=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(Ne,{className:"text-white",children:g.userNickname||g.userId}),r.jsx(Ne,{className:"text-white",children:g.matchedNickname||g.matchedUserId}),r.jsxs(Ne,{className:"text-gray-400 text-sm",children:[g.phone&&r.jsxs("div",{children:["📱 ",g.phone]}),g.wechatId&&r.jsxs("div",{children:["💬 ",g.wechatId]}),!g.phone&&!g.wechatId&&"-"]}),r.jsx(Ne,{className:"text-gray-400",children:g.createdAt?new Date(g.createdAt).toLocaleString():"-"})]},g.id)),t.length===0&&r.jsx(it,{children:r.jsx(Ne,{colSpan:4,className:"text-center py-12 text-gray-500",children:"暂无团队招募记录"})})]})]}),r.jsx(Vs,{page:a,totalPages:m,total:n,pageSize:o,onPageChange:i,onPageSizeChange:g=>{c(g),i(1)}})]})})})]})}const zw={partner:"找伙伴",investor:"资源对接",mentor:"导师顾问",team:"团队招募"},$w={partner:"⭐",investor:"👥",mentor:"❤️",team:"🎮"};function FV({onSwitchTab:t,onOpenCKB:e}={}){const n=Li(),[s,a]=b.useState(null),[i,o]=b.useState(null),[c,u]=b.useState(!0),h=b.useCallback(async()=>{var m,g;u(!0);try{const[y,N]=await Promise.allSettled([Re("/api/db/match-records?stats=true"),Re("/api/db/ckb-plan-stats")]);if(y.status==="fulfilled"&&((m=y.value)!=null&&m.success)&&y.value.data){let w=y.value.data;if(w.totalMatches>0&&(!w.uniqueUsers||w.uniqueUsers===0))try{const v=await Re("/api/db/match-records?page=1&pageSize=200");if(v!=null&&v.success&&v.records){const k=new Set(v.records.map(C=>C.userId).filter(Boolean));w={...w,uniqueUsers:k.size}}}catch{}a(w)}N.status==="fulfilled"&&((g=N.value)!=null&&g.success)&&N.value.data&&o(N.value.data)}catch(y){console.error("加载统计失败:",y)}finally{u(!1)}},[]);b.useEffect(()=>{h()},[h]);const f=m=>c?"—":String(m??0);return r.jsxs("div",{className:"space-y-8",children:[r.jsxs("div",{children:[r.jsxs("h3",{className:"text-lg font-semibold text-white mb-4 flex items-center gap-2",children:[r.jsx(Rn,{className:"w-5 h-5 text-[#38bdac]"})," 找伙伴数据"]}),r.jsxs("div",{className:"grid grid-cols-2 lg:grid-cols-3 gap-5",children:[r.jsx(Ce,{className:"bg-gradient-to-br from-[#0f2137] to-[#162d4a] border-gray-700/40 cursor-pointer hover:border-[#38bdac]/60 transition-all",onClick:()=>t==null?void 0:t("partner"),children:r.jsxs(Ee,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"总匹配次数"}),r.jsx("p",{className:"text-4xl font-bold text-white",children:f(s==null?void 0:s.totalMatches)}),r.jsxs("p",{className:"text-[#38bdac] text-xs mt-3 flex items-center gap-1",children:[r.jsx(qr,{className:"w-3 h-3"})," 查看匹配记录"]})]})}),r.jsx(Ce,{className:"bg-gradient-to-br from-[#0f2137] to-[#162d4a] border-gray-700/40 cursor-pointer hover:border-yellow-500/60 transition-all",onClick:()=>t==null?void 0:t("partner"),children:r.jsxs(Ee,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"今日匹配"}),r.jsx("p",{className:"text-4xl font-bold text-white",children:f(s==null?void 0:s.todayMatches)}),r.jsxs("p",{className:"text-yellow-400/60 text-xs mt-3 flex items-center gap-1",children:[r.jsx(yi,{className:"w-3 h-3"})," 今日实时"]})]})}),r.jsx(Ce,{className:"bg-gradient-to-br from-[#0f2137] to-[#162d4a] border-gray-700/40 cursor-pointer hover:border-blue-500/60 transition-all",onClick:()=>n("/users"),children:r.jsxs(Ee,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"匹配用户数"}),r.jsx("p",{className:"text-4xl font-bold text-white",children:f(s==null?void 0:s.uniqueUsers)}),r.jsxs("p",{className:"text-blue-400/60 text-xs mt-3 flex items-center gap-1",children:[r.jsx(qr,{className:"w-3 h-3"})," 查看用户管理"]})]})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/40",children:r.jsxs(Ee,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"人均匹配"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:c?"—":s!=null&&s.uniqueUsers?(s.totalMatches/s.uniqueUsers).toFixed(1):"0"})]})}),r.jsx(Ce,{className:"bg-[#0f2137] border-gray-700/40",children:r.jsxs(Ee,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"付费匹配次数"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:f(s==null?void 0:s.paidMatchCount)})]})})]})]}),(s==null?void 0:s.byType)&&s.byType.length>0&&r.jsxs("div",{children:[r.jsx("h3",{className:"text-lg font-semibold text-white mb-4",children:"各类型匹配分布"}),r.jsx("div",{className:"grid grid-cols-2 lg:grid-cols-4 gap-4",children:s.byType.map(m=>{const g=s.totalMatches>0?m.count/s.totalMatches*100:0;return r.jsxs("div",{className:"bg-[#0f2137] border border-gray-700/40 rounded-xl p-5",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx("span",{className:"text-2xl",children:$w[m.matchType]||"📊"}),r.jsx("span",{className:"text-gray-300 font-medium",children:zw[m.matchType]||m.matchType})]}),r.jsx("p",{className:"text-3xl font-bold text-white mb-2",children:m.count}),r.jsx("div",{className:"w-full h-2 bg-gray-700/50 rounded-full overflow-hidden",children:r.jsx("div",{className:"h-full bg-[#38bdac] rounded-full transition-all",style:{width:`${Math.min(g,100)}%`}})}),r.jsxs("p",{className:"text-gray-500 text-xs mt-1.5",children:[g.toFixed(1),"%"]})]},m.matchType)})})]}),r.jsxs("div",{children:[r.jsxs("h3",{className:"text-lg font-semibold text-white mb-4 flex items-center gap-2",children:[r.jsx(kr,{className:"w-5 h-5 text-orange-400"})," AI 获客数据"]}),r.jsxs("div",{className:"grid grid-cols-2 lg:grid-cols-3 gap-5 mb-6",children:[r.jsx(Ce,{className:"bg-[#0f2137] border-orange-500/20 cursor-pointer hover:border-orange-500/50 transition-colors",onClick:()=>e==null?void 0:e("submitted"),children:r.jsxs(Ee,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"已提交线索"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:c?"—":(i==null?void 0:i.ckbTotal)??0}),r.jsx("p",{className:"text-orange-400/60 text-xs mt-2",children:"点击查看明细 →"})]})}),r.jsx(Ce,{className:"bg-[#0f2137] border-orange-500/20 cursor-pointer hover:border-orange-500/50 transition-colors",onClick:()=>e==null?void 0:e("contact"),children:r.jsxs(Ee,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"有联系方式"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:c?"—":(i==null?void 0:i.withContact)??0}),r.jsx("p",{className:"text-orange-400/60 text-xs mt-2",children:"点击查看明细 →"})]})}),r.jsx(Ce,{className:"bg-[#0f2137] border-orange-500/20 cursor-pointer hover:border-orange-500/50 transition-colors",onClick:()=>e==null?void 0:e("test"),children:r.jsxs(Ee,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"AI 添加进度"}),r.jsx("p",{className:"text-xl font-bold text-orange-400",children:"查看详情 →"}),r.jsx("p",{className:"text-gray-500 text-xs mt-2",children:"添加成功率 · 回复率 · API 文档"})]})})]}),(i==null?void 0:i.byType)&&i.byType.length>0&&r.jsx("div",{className:"grid grid-cols-2 lg:grid-cols-4 gap-3 mb-6",children:i.byType.map(m=>r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-lg p-4 flex items-center gap-3",children:[r.jsx("span",{className:"text-xl",children:$w[m.matchType]||"📋"}),r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-xs",children:zw[m.matchType]||m.matchType}),r.jsx("p",{className:"text-xl font-bold text-white",children:m.total})]})]},m.matchType))})]})]})}const BV=["partner","investor","mentor","team"],Lg=[{key:"join_partner",label:"找伙伴场景"},{key:"join_investor",label:"资源对接场景"},{key:"join_mentor",label:"导师顾问场景"},{key:"join_team",label:"团队招募场景"},{key:"match",label:"匹配上报"},{key:"lead",label:"链接卡若"}],Fw=`# 场景获客接口摘要 -- 地址:POST /v1/api/scenarios -- 必填:apiKey、sign、timestamp -- 主标识:phone 或 wechatId 至少一项 -- 可选:name、source、remark、tags、siteTags、portrait -- 签名:排除 sign/apiKey/portrait,键名升序拼接值后双重 MD5 -- 成功:code=200,message=新增成功 或 已存在`;function VV({initialTab:t="overview"}){const[e,n]=b.useState(t),[s,a]=b.useState("13800000000"),[i,o]=b.useState(""),[c,u]=b.useState(""),[h,f]=b.useState(Fw),[m,g]=b.useState(!1),[y,N]=b.useState(!1),[w,v]=b.useState([]),[k,C]=b.useState([]),[E,M]=b.useState({}),[P,$]=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"}]),D=b.useMemo(()=>{const z={};return Lg.forEach(K=>{z[K.key]=E[K.key]||{apiUrl:"https://ckbapi.quwanzhi.com/v1/api/scenarios",apiKey:"fyngh-ecy9h-qkdae-epwd5-rz6kd",source:"",tags:"",siteTags:"创业实验APP",notes:""}}),z},[E]),R=z=>{const K=s.trim(),U=i.trim();return z<=3?{type:BV[z],phone:K||void 0,wechat:U||void 0,userId:"admin_test",name:"后台测试"}:z===4?{matchType:"partner",phone:K||void 0,wechat:U||void 0,userId:"admin_test",nickname:"后台测试",matchedUser:{id:"test",nickname:"测试",matchScore:88}}:z===5?{phone:K||void 0,wechatId:U||void 0,userId:"admin_test",name:"后台测试"}:{}};async function O(){N(!0);try{const[z,K,U]=await Promise.all([Re("/api/db/config/full?key=ckb_config"),Re("/api/db/ckb-leads?mode=submitted&page=1&pageSize=50"),Re("/api/db/ckb-leads?mode=contact&page=1&pageSize=50")]),I=z==null?void 0:z.data;I!=null&&I.routes&&M(I.routes),I!=null&&I.docNotes&&u(I.docNotes),I!=null&&I.docContent&&f(I.docContent),K!=null&&K.success&&v(K.records||[]),U!=null&&U.success&&C(U.records||[])}finally{N(!1)}}b.useEffect(()=>{n(t)},[t]),b.useEffect(()=>{O()},[]);async function _(){g(!0);try{const z=await yt("/api/db/config",{key:"ckb_config",value:{routes:D,docNotes:c,docContent:h},description:"存客宝接口配置"});ae.error((z==null?void 0:z.success)!==!1?"存客宝配置已保存":`保存失败: ${(z==null?void 0:z.error)||"未知错误"}`)}catch(z){ae.error(`保存失败: ${z instanceof Error?z.message:"网络错误"}`)}finally{g(!1)}}const se=(z,K)=>{M(U=>({...U,[z]:{...D[z],...K}}))},ne=async z=>{const K=P[z];if(K.method==="POST"&&!s.trim()&&!i.trim()){ae.error("请填写测试手机号");return}const U=[...P];U[z]={...K,status:"testing",message:void 0,responseTime:void 0},$(U);const I=performance.now();try{const q=K.method==="GET"?await Re(K.endpoint):await yt(K.endpoint,R(z)),F=Math.round(performance.now()-I),L=(q==null?void 0:q.message)||"",W=(q==null?void 0:q.success)===!0||L.includes("已存在")||L.includes("已加入")||L.includes("已提交"),oe=[...P];oe[z]={...K,status:W?"success":"error",message:L||(W?"正常":"异常"),responseTime:F},$(oe),await O()}catch(q){const F=Math.round(performance.now()-I),L=[...P];L[z]={...K,status:"error",message:q instanceof Error?q.message:"失败",responseTime:F},$(L)}},pe=async()=>{if(!s.trim()&&!i.trim()){ae.error("请填写测试手机号");return}for(let z=0;zr.jsx("div",{className:"overflow-auto rounded-lg border border-gray-700/30",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{className:"bg-[#0a1628] text-gray-400",children:r.jsxs("tr",{children:[r.jsx("th",{className:"text-left px-4 py-3",children:"发起人"}),r.jsx("th",{className:"text-left px-4 py-3",children:"类型"}),r.jsx("th",{className:"text-left px-4 py-3",children:"手机号"}),r.jsx("th",{className:"text-left px-4 py-3",children:"微信号"}),r.jsx("th",{className:"text-left px-4 py-3",children:"时间"})]})}),r.jsx("tbody",{children:z.length===0?r.jsx("tr",{children:r.jsx("td",{colSpan:5,className:"text-center py-10 text-gray-500",children:K})}):z.map(U=>r.jsxs("tr",{className:"border-t border-gray-700/30",children:[r.jsx("td",{className:"px-4 py-3 text-white",children:U.userNickname||U.userId}),r.jsx("td",{className:"px-4 py-3 text-gray-300",children:U.matchType}),r.jsx("td",{className:"px-4 py-3 text-green-400",children:U.phone||"—"}),r.jsx("td",{className:"px-4 py-3 text-blue-400",children:U.wechatId||"—"}),r.jsx("td",{className:"px-4 py-3 text-gray-400",children:U.createdAt?new Date(U.createdAt).toLocaleString():"—"})]},U.id))})]})});return r.jsx(Ce,{className:"bg-[#0f2137] border-orange-500/30 mb-6",children:r.jsxs(Ee,{className:"p-5",children:[r.jsxs("div",{className:"flex items-center justify-between mb-4",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx("h3",{className:"text-white font-semibold",children:"存客宝工作台"}),r.jsx(Ue,{className:"bg-orange-500/20 text-orange-400 border-0 text-xs",children:"CKB"}),r.jsxs("button",{type:"button",onClick:()=>n("doc"),className:"text-orange-400/60 text-xs hover:text-orange-400 flex items-center gap-1",children:[r.jsx(qr,{className:"w-3 h-3"})," API 文档"]})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsxs(Z,{onClick:()=>O(),variant:"outline",size:"sm",className:"border-gray-700 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(We,{className:`w-3.5 h-3.5 mr-1 ${y?"animate-spin":""}`})," 刷新"]}),r.jsxs(Z,{onClick:_,disabled:m,size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(vn,{className:"w-3.5 h-3.5 mr-1"})," ",m?"保存中...":"保存配置"]})]})]}),r.jsx("div",{className:"flex flex-wrap gap-2 mb-5",children:[["overview","概览"],["submitted","已提交线索"],["contact","有联系方式"],["config","场景配置"],["test","接口测试"],["doc","API 文档"]].map(([z,K])=>r.jsx("button",{type:"button",onClick:()=>n(z),className:`px-4 py-2 rounded-lg text-sm transition-colors ${e===z?"bg-orange-500 text-white":"bg-[#0a1628] text-gray-400 hover:text-white"}`,children:K},z))}),e==="overview"&&r.jsxs("div",{className:"grid grid-cols-2 lg:grid-cols-4 gap-4",children:[r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[r.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"已提交线索"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:w.length})]}),r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[r.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"有联系方式"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:k.length})]}),r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[r.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"场景配置数"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:Lg.length})]}),r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[r.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"文档备注"}),r.jsx("p",{className:"text-sm text-gray-300 line-clamp-3",children:c||"未填写"})]})]}),e==="submitted"&&ge(w,"暂无已提交线索"),e==="contact"&&ge(k,"暂无有联系方式线索"),e==="config"&&r.jsx("div",{className:"space-y-4",children:Lg.map(z=>r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-4",children:[r.jsxs("div",{className:"flex items-center justify-between mb-3",children:[r.jsx("h4",{className:"text-white font-medium",children:z.label}),r.jsx(Ue,{className:"bg-orange-500/20 text-orange-300 border-0 text-xs",children:z.key})]}),r.jsxs("div",{className:"grid grid-cols-1 xl:grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"API 地址"}),r.jsx(ie,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:D[z.key].apiUrl,onChange:K=>se(z.key,{apiUrl:K.target.value})})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"API Key"}),r.jsx(ie,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:D[z.key].apiKey,onChange:K=>se(z.key,{apiKey:K.target.value})})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"Source"}),r.jsx(ie,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:D[z.key].source,onChange:K=>se(z.key,{source:K.target.value})})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"Tags"}),r.jsx(ie,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:D[z.key].tags,onChange:K=>se(z.key,{tags:K.target.value})})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"SiteTags"}),r.jsx(ie,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:D[z.key].siteTags,onChange:K=>se(z.key,{siteTags:K.target.value})})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"说明备注"}),r.jsx(ie,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:D[z.key].notes,onChange:K=>se(z.key,{notes:K.target.value})})]})]})]},z.key))}),e==="test"&&r.jsxs(r.Fragment,{children:[r.jsxs("div",{className:"flex gap-3 mb-4",children:[r.jsxs("div",{className:"flex items-center gap-2 flex-1",children:[r.jsx(Ti,{className:"w-4 h-4 text-gray-500 shrink-0"}),r.jsxs("div",{className:"flex-1",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"测试手机号"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm mt-0.5",value:s,onChange:z=>a(z.target.value)})]})]}),r.jsxs("div",{className:"flex items-center gap-2 flex-1",children:[r.jsx("span",{className:"text-gray-500 text-sm shrink-0",children:"💬"}),r.jsxs("div",{className:"flex-1",children:[r.jsx(ee,{className:"text-gray-500 text-xs",children:"微信号(可选)"}),r.jsx(ie,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm mt-0.5",value:i,onChange:z=>o(z.target.value)})]})]}),r.jsx("div",{className:"flex items-end",children:r.jsxs(Z,{onClick:pe,className:"bg-orange-500 hover:bg-orange-600 text-white",children:[r.jsx(yi,{className:"w-3.5 h-3.5 mr-1"})," 全部测试"]})})]}),r.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-2",children:P.map((z,K)=>r.jsxs("div",{className:"flex items-center justify-between bg-[#0a1628] rounded-lg px-3 py-2 border border-gray-700/30",children:[r.jsxs("div",{className:"flex items-center gap-2 min-w-0",children:[z.status==="idle"&&r.jsx("div",{className:"w-2 h-2 rounded-full bg-gray-600 shrink-0"}),z.status==="testing"&&r.jsx(We,{className:"w-3 h-3 text-yellow-400 animate-spin shrink-0"}),z.status==="success"&&r.jsx(Hg,{className:"w-3 h-3 text-green-400 shrink-0"}),z.status==="error"&&r.jsx(rj,{className:"w-3 h-3 text-red-400 shrink-0"}),r.jsx("span",{className:"text-white text-xs truncate",children:z.label})]}),r.jsxs("div",{className:"flex items-center gap-1.5 shrink-0",children:[z.responseTime!==void 0&&r.jsxs("span",{className:"text-gray-600 text-[10px]",children:[z.responseTime,"ms"]}),r.jsx("button",{type:"button",onClick:()=>ne(K),disabled:z.status==="testing",className:"text-orange-400/60 hover:text-orange-400 text-[10px] disabled:opacity-50",children:"测试"})]})]},`${z.endpoint}-${K}`))})]}),e==="doc"&&r.jsxs("div",{className:"grid grid-cols-1 xl:grid-cols-2 gap-4",children:[r.jsxs("div",{className:"bg-[#0a1628] rounded-lg border border-gray-700/30 p-4",children:[r.jsxs("div",{className:"flex items-center justify-between mb-3",children:[r.jsx("h4",{className:"text-white text-sm font-medium",children:"场景获客 API 摘要"}),r.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:[r.jsx(qr,{className:"w-3 h-3"})," 打开外链"]})]}),r.jsx("pre",{className:"whitespace-pre-wrap text-xs text-gray-400 leading-6",children:h||Fw})]}),r.jsxs("div",{className:"bg-[#0a1628] rounded-lg border border-gray-700/30 p-4",children:[r.jsx("h4",{className:"text-white text-sm font-medium mb-3",children:"说明备注(可编辑)"}),r.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:z=>u(z.target.value),placeholder:"记录 Token、入口差异、回复率统计规则、对接约定等。"})]})]})]})})}const HV=[{id:"stats",label:"数据统计",icon:Vg},{id:"partner",label:"找伙伴",icon:Rn},{id:"resource",label:"资源对接",icon:EM},{id:"mentor",label:"导师预约",icon:kM},{id:"team",label:"团队招募",icon:Qg}];function WV(){const[t,e]=b.useState("stats"),[n,s]=b.useState(!1),[a,i]=b.useState("overview");return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"mb-6 flex items-start justify-between gap-4",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(Rn,{className:"w-6 h-6 text-[#38bdac]"}),"找伙伴"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"数据统计、匹配池与记录、资源对接、导师预约、团队招募"})]}),r.jsxs(Z,{type:"button",variant:"outline",onClick:()=>s(o=>!o),className:"border-orange-500/40 text-orange-300 hover:bg-orange-500/10 bg-transparent",children:[r.jsx(kr,{className:"w-4 h-4 mr-2"}),"存客宝"]})]}),n&&r.jsx(VV,{initialTab:a}),r.jsx("div",{className:"flex flex-wrap gap-1 mb-6 bg-[#0f2137] rounded-lg p-1 border border-gray-700/50",children:HV.map(o=>{const c=t===o.id;return r.jsxs("button",{type:"button",onClick:()=>e(o.id),className:`flex items-center gap-2 px-5 py-2.5 rounded-md text-sm font-medium transition-all ${c?"bg-[#38bdac] text-white shadow-lg":"text-gray-400 hover:text-white hover:bg-gray-700/50"}`,children:[r.jsx(o.icon,{className:"w-4 h-4"}),o.label]},o.id)})}),t==="stats"&&r.jsx(FV,{onSwitchTab:o=>e(o),onOpenCKB:o=>{i(o||"overview"),s(!0)}}),t==="partner"&&r.jsx(OV,{}),t==="resource"&&r.jsx(DV,{}),t==="mentor"&&r.jsx(zV,{}),t==="team"&&r.jsx($V,{})]})}function UV(){return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-8",children:[r.jsx(kr,{className:"w-8 h-8 text-[#38bdac]"}),r.jsx("h1",{className:"text-2xl font-bold text-white",children:"API 接口文档"})]}),r.jsx("p",{className:"text-gray-400 mb-6",children:"API 风格:RESTful · 版本 v1.0 · 基础路径 /api · 简单、清晰、易用。"}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"1. 接口总览"})}),r.jsxs(Ee,{className:"space-y-4 text-sm",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 mb-2",children:"接口分类"}),r.jsxs("ul",{className:"space-y-1 text-gray-300 font-mono",children:[r.jsx("li",{children:"/api/book — 书籍内容(章节列表、内容获取、同步)"}),r.jsx("li",{children:"/api/payment — 支付系统(订单创建、回调、状态查询)"}),r.jsx("li",{children:"/api/referral — 分销系统(邀请码、收益、提现)"}),r.jsx("li",{children:"/api/user — 用户系统(登录、注册、信息更新)"}),r.jsx("li",{children:"/api/match — 匹配系统(寻找匹配、匹配历史)"}),r.jsx("li",{children:"/api/admin — 管理后台(内容/订单/用户/分销管理)"}),r.jsx("li",{children:"/api/config — 配置系统"})]})]}),r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 mb-2",children:"认证方式"}),r.jsx("p",{className:"text-gray-300",children:"用户:Cookie session_id(可选)"}),r.jsx("p",{className:"text-gray-300",children:"管理端:Authorization: Bearer admin-token-secret"})]})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"2. 书籍内容"})}),r.jsxs(Ee,{className:"space-y-2 text-sm text-gray-300 font-mono",children:[r.jsx("p",{children:"GET /api/book/all-chapters — 获取所有章节"}),r.jsx("p",{children:"GET /api/book/chapter/:id — 获取单章内容"}),r.jsx("p",{children:"POST /api/book/sync — 同步章节(需管理员认证)"})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"3. 支付"})}),r.jsxs(Ee,{className:"space-y-2 text-sm text-gray-300 font-mono",children:[r.jsx("p",{children:"POST /api/payment/create-order — 创建订单"}),r.jsx("p",{children:"POST /api/payment/alipay/notify — 支付宝回调"}),r.jsx("p",{children:"POST /api/payment/wechat/notify — 微信回调"})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"4. 分销与用户"})}),r.jsxs(Ee,{className:"space-y-2 text-sm text-gray-300 font-mono",children:[r.jsx("p",{children:"/api/referral/* — 邀请码、收益查询、提现"}),r.jsx("p",{children:"/api/user/* — 登录、注册、信息更新"}),r.jsx("p",{children:"/api/match/* — 匹配、匹配历史"})]})]}),r.jsxs(Ce,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"5. 管理后台"})}),r.jsxs(Ee,{className:"space-y-2 text-sm text-gray-300 font-mono",children:[r.jsx("p",{children:"GET/POST /api/admin/referral-settings — 推广/分销设置(含 VIP 配置)"}),r.jsx("p",{children:"GET /api/db/users、/api/db/book — 用户与章节数据"}),r.jsx("p",{children:"GET /api/admin/orders — 订单列表"})]})]}),r.jsx("p",{className:"text-gray-500 text-xs",children:"完整说明见项目内 开发文档/5、接口/API接口完整文档.md"})]})}function KV(){const t=Di();return r.jsx("div",{className:"min-h-screen bg-[#0a1628] flex items-center justify-center p-8",children:r.jsxs("div",{className:"text-center max-w-md",children:[r.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:r.jsx(nj,{className:"w-10 h-10"})}),r.jsx("h1",{className:"text-4xl font-bold text-white mb-2",children:"404"}),r.jsx("p",{className:"text-gray-400 mb-1",children:"页面不存在"}),r.jsx("p",{className:"text-sm text-gray-500 font-mono mb-8 break-all",children:t.pathname}),r.jsx(Z,{asChild:!0,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:r.jsxs(Bg,{to:"/",children:[r.jsx(LM,{className:"w-4 h-4 mr-2"}),"返回首页"]})})]})})}function qV(){return r.jsxs(wT,{children:[r.jsx(Bt,{path:"/login",element:r.jsx(nI,{})}),r.jsxs(Bt,{path:"/",element:r.jsx(a5,{}),children:[r.jsx(Bt,{index:!0,element:r.jsx(Fm,{to:"/dashboard",replace:!0})}),r.jsx(Bt,{path:"dashboard",element:r.jsx(hP,{})}),r.jsx(Bt,{path:"orders",element:r.jsx(fP,{})}),r.jsx(Bt,{path:"users",element:r.jsx(pP,{})}),r.jsx(Bt,{path:"distribution",element:r.jsx(LP,{})}),r.jsx(Bt,{path:"withdrawals",element:r.jsx(_P,{})}),r.jsx(Bt,{path:"content",element:r.jsx(uV,{})}),r.jsx(Bt,{path:"referral-settings",element:r.jsx(Kk,{})}),r.jsx(Bt,{path:"author-settings",element:r.jsx(Fm,{to:"/settings?tab=author",replace:!0})}),r.jsx(Bt,{path:"vip-roles",element:r.jsx(MV,{})}),r.jsx(Bt,{path:"mentors",element:r.jsx(J4,{})}),r.jsx(Bt,{path:"mentor-consultations",element:r.jsx(AV,{})}),r.jsx(Bt,{path:"admin-users",element:r.jsx(Fm,{to:"/settings?tab=admin",replace:!0})}),r.jsx(Bt,{path:"settings",element:r.jsx(bV,{})}),r.jsx(Bt,{path:"payment",element:r.jsx(vV,{})}),r.jsx(Bt,{path:"site",element:r.jsx(kV,{})}),r.jsx(Bt,{path:"qrcodes",element:r.jsx(SV,{})}),r.jsx(Bt,{path:"find-partner",element:r.jsx(WV,{})}),r.jsx(Bt,{path:"match",element:r.jsx(EV,{})}),r.jsx(Bt,{path:"match-records",element:r.jsx(TV,{})}),r.jsx(Bt,{path:"api-doc",element:r.jsx(UV,{})}),r.jsx(Bt,{path:"api-docs",element:r.jsx(G4,{})})]}),r.jsx(Bt,{path:"*",element:r.jsx(KV,{})})]})}EE.createRoot(document.getElementById("root")).render(r.jsx(b.StrictMode,{children:r.jsx(AT,{future:{v7_startTransition:!0,v7_relativeSplatPath:!0},children:r.jsx(qV,{})})})); diff --git a/soul-admin/dist/assets/index-B7tt33mg.css b/soul-admin/dist/assets/index-B7tt33mg.css deleted file mode 100644 index 37e4c00c..00000000 --- a/soul-admin/dist/assets/index-B7tt33mg.css +++ /dev/null @@ -1 +0,0 @@ -.rich-editor-wrapper{border:1px solid #374151;border-radius:.5rem;background:#0a1628;overflow:hidden}.rich-editor-toolbar{display:flex;align-items:center;gap:2px;padding:6px 8px;border-bottom:1px solid #374151;background:#0f1d32;flex-wrap:wrap}.toolbar-group{display:flex;align-items:center;gap:1px}.toolbar-divider{width:1px;height:20px;background:#374151;margin:0 4px}.rich-editor-toolbar button{display:flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:4px;border:none;background:transparent;color:#9ca3af;cursor:pointer;transition:all .15s}.rich-editor-toolbar button:hover{background:#1f2937;color:#d1d5db}.rich-editor-toolbar button.is-active{background:#38bdac33;color:#38bdac}.rich-editor-toolbar button:disabled{opacity:.3;cursor:not-allowed}.link-tag-select{background:#0a1628;border:1px solid #374151;color:#d1d5db;font-size:12px;padding:2px 6px;border-radius:4px;cursor:pointer;max-width:160px}.link-input-bar{display:flex;align-items:center;gap:4px;padding:4px 8px;border-bottom:1px solid #374151;background:#0f1d32}.link-input{flex:1;background:#0a1628;border:1px solid #374151;color:#fff;padding:4px 8px;border-radius:4px;font-size:13px}.link-confirm,.link-remove{padding:4px 10px;border-radius:4px;border:none;font-size:12px;cursor:pointer}.link-confirm{background:#38bdac;color:#fff}.link-remove{background:#374151;color:#9ca3af}.rich-editor-content{min-height:450px;max-height:720px;overflow-y:auto;padding:12px 16px;color:#e5e7eb;font-size:14px;line-height:1.7}.rich-editor-content:focus{outline:none}.rich-editor-content h1{font-size:1.5em;font-weight:700;margin:.8em 0 .4em;color:#fff}.rich-editor-content h2{font-size:1.3em;font-weight:600;margin:.7em 0 .3em;color:#fff}.rich-editor-content h3{font-size:1.15em;font-weight:600;margin:.6em 0 .3em;color:#fff}.rich-editor-content p{margin:.4em 0}.rich-editor-content strong{color:#fff}.rich-editor-content code{background:#1f2937;padding:2px 6px;border-radius:3px;font-size:.9em;color:#38bdac}.rich-editor-content pre{background:#1f2937;padding:12px;border-radius:6px;overflow-x:auto;margin:.6em 0}.rich-editor-content blockquote{border-left:3px solid #38bdac;padding-left:12px;margin:.6em 0;color:#9ca3af}.rich-editor-content ul,.rich-editor-content ol{padding-left:1.5em;margin:.4em 0}.rich-editor-content li{margin:.2em 0}.rich-editor-content hr{border:none;border-top:1px solid #374151;margin:1em 0}.rich-editor-content img{max-width:100%;border-radius:6px;margin:.5em 0}.rich-editor-content a,.rich-link{color:#38bdac;text-decoration:underline;cursor:pointer}.rich-editor-content table{border-collapse:collapse;width:100%;margin:.5em 0}.rich-editor-content th,.rich-editor-content td{border:1px solid #374151;padding:6px 10px;text-align:left}.rich-editor-content th{background:#1f2937;font-weight:600}.rich-editor-content .ProseMirror-placeholder:before{content:attr(data-placeholder);color:#6b7280;float:left;height:0;pointer-events:none}.mention-tag{background:#38bdac26;color:#38bdac;border-radius:4px;padding:1px 4px;font-weight:500}.link-tag-node{background:#ffd7001f;color:gold;border-radius:4px;padding:1px 4px;font-weight:500;cursor:default;-webkit-user-select:all;user-select:all}.mention-popup{position:fixed;z-index:9999;background:#1a2638;border:1px solid #374151;border-radius:8px;padding:4px;min-width:180px;max-height:240px;overflow-y:auto;box-shadow:0 4px 20px #0006}.mention-item{display:flex;align-items:center;justify-content:space-between;padding:6px 10px;border-radius:4px;cursor:pointer;color:#d1d5db;font-size:13px}.mention-item:hover,.mention-item.is-selected{background:#38bdac26;color:#38bdac}.mention-name{font-weight:500}.mention-id{font-size:11px;color:#6b7280}.bubble-menu{display:flex;gap:2px;background:#1a2638;border:1px solid #374151;border-radius:6px;padding:4px;box-shadow:0 4px 12px #0000004d}.bubble-menu button{display:flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:4px;border:none;background:transparent;color:#9ca3af;cursor:pointer}.bubble-menu button:hover{background:#1f2937;color:#d1d5db}.bubble-menu button.is-active{color:#38bdac}/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-pan-x:initial;--tw-pan-y:initial;--tw-pinch-zoom:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-divide-x-reverse:0;--tw-border-style:solid;--tw-divide-y-reverse:0;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial}}}@layer theme{:root,:host{--font-sans:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-100:oklch(93.6% .032 17.717);--color-red-300:oklch(80.8% .114 19.571);--color-red-400:oklch(70.4% .191 22.216);--color-red-500:oklch(63.7% .237 25.331);--color-red-600:oklch(57.7% .245 27.325);--color-red-700:oklch(50.5% .213 27.518);--color-red-800:oklch(44.4% .177 26.899);--color-red-900:oklch(39.6% .141 25.723);--color-orange-300:oklch(83.7% .128 66.29);--color-orange-400:oklch(75% .183 55.934);--color-orange-500:oklch(70.5% .213 47.604);--color-orange-600:oklch(64.6% .222 41.116);--color-amber-200:oklch(92.4% .12 95.746);--color-amber-300:oklch(87.9% .169 91.605);--color-amber-400:oklch(82.8% .189 84.429);--color-amber-500:oklch(76.9% .188 70.08);--color-amber-600:oklch(66.6% .179 58.318);--color-yellow-400:oklch(85.2% .199 91.936);--color-yellow-500:oklch(79.5% .184 86.047);--color-green-300:oklch(87.1% .15 154.449);--color-green-400:oklch(79.2% .209 151.711);--color-green-500:oklch(72.3% .219 149.579);--color-green-600:oklch(62.7% .194 149.214);--color-green-700:oklch(52.7% .154 150.069);--color-emerald-400:oklch(76.5% .177 163.223);--color-emerald-500:oklch(69.6% .17 162.48);--color-cyan-400:oklch(78.9% .154 211.53);--color-cyan-500:oklch(71.5% .143 215.221);--color-sky-200:oklch(90.1% .058 230.902);--color-sky-300:oklch(82.8% .111 230.318);--color-blue-300:oklch(80.9% .105 251.813);--color-blue-400:oklch(70.7% .165 254.624);--color-blue-500:oklch(62.3% .214 259.815);--color-purple-400:oklch(71.4% .203 305.504);--color-purple-500:oklch(62.7% .265 303.9);--color-rose-400:oklch(71.2% .194 13.428);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--container-sm:24rem;--container-md:28rem;--container-lg:32rem;--container-2xl:42rem;--container-3xl:48rem;--container-4xl:56rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-tight:-.025em;--tracking-wider:.05em;--leading-tight:1.25;--leading-relaxed:1.625;--radius-sm:.25rem;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--animate-spin:spin 1s linear infinite;--blur-xl:24px;--blur-3xl:64px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.not-sr-only{clip-path:none;white-space:normal;width:auto;height:auto;margin:0;padding:0;position:static;overflow:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.-top-2\.5{top:calc(var(--spacing)*-2.5)}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-1\/4{top:25%}.top-4{top:calc(var(--spacing)*4)}.top-16{top:calc(var(--spacing)*16)}.top-\[50\%\]{top:50%}.top-full{top:100%}.right-0{right:calc(var(--spacing)*0)}.right-1{right:calc(var(--spacing)*1)}.right-1\/4{right:25%}.right-4{right:calc(var(--spacing)*4)}.bottom-1\/4{bottom:25%}.-left-2\.5{left:calc(var(--spacing)*-2.5)}.left-0{left:calc(var(--spacing)*0)}.left-1\/4{left:25%}.left-2{left:calc(var(--spacing)*2)}.left-3{left:calc(var(--spacing)*3)}.left-\[50\%\]{left:50%}.isolate{isolation:isolate}.isolation-auto{isolation:auto}.z-10{z-index:10}.z-50{z-index:50}.col-span-2{grid-column:span 2/span 2}.container{width:100%}@media(min-width:40rem){.container{max-width:40rem}}@media(min-width:48rem){.container{max-width:48rem}}@media(min-width:64rem){.container{max-width:64rem}}@media(min-width:80rem){.container{max-width:80rem}}@media(min-width:96rem){.container{max-width:96rem}}.-mx-2{margin-inline:calc(var(--spacing)*-2)}.-mx-8{margin-inline:calc(var(--spacing)*-8)}.mx-20{margin-inline:calc(var(--spacing)*20)}.mx-auto{margin-inline:auto}.-mt-6{margin-top:calc(var(--spacing)*-6)}.mt-0{margin-top:calc(var(--spacing)*0)}.mt-0\.5{margin-top:calc(var(--spacing)*.5)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-1\.5{margin-top:calc(var(--spacing)*1.5)}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-6{margin-top:calc(var(--spacing)*6)}.mt-8{margin-top:calc(var(--spacing)*8)}.mr-1{margin-right:calc(var(--spacing)*1)}.mr-2{margin-right:calc(var(--spacing)*2)}.mr-3{margin-right:calc(var(--spacing)*3)}.mr-auto{margin-right:auto}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-1\.5{margin-bottom:calc(var(--spacing)*1.5)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-5{margin-bottom:calc(var(--spacing)*5)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-2{margin-left:calc(var(--spacing)*2)}.ml-4{margin-left:calc(var(--spacing)*4)}.ml-6{margin-left:calc(var(--spacing)*6)}.ml-auto{margin-left:auto}.line-clamp-2{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-3{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.block{display:block}.contents{display:contents}.flex{display:flex}.flow-root{display:flow-root}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline\!{display:inline!important}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.inline-grid{display:inline-grid}.inline-table{display:inline-table}.list-item{display:list-item}.table{display:table}.table\!{display:table!important}.table-caption{display:table-caption}.table-cell{display:table-cell}.table-column{display:table-column}.table-column-group{display:table-column-group}.table-footer-group{display:table-footer-group}.table-header-group{display:table-header-group}.table-row{display:table-row}.table-row-group{display:table-row-group}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-8{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.size-9{width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.size-10{width:calc(var(--spacing)*10);height:calc(var(--spacing)*10)}.h-0\.5{height:calc(var(--spacing)*.5)}.h-1\.5{height:calc(var(--spacing)*1.5)}.h-2{height:calc(var(--spacing)*2)}.h-3{height:calc(var(--spacing)*3)}.h-3\.5{height:calc(var(--spacing)*3.5)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-7{height:calc(var(--spacing)*7)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-12{height:calc(var(--spacing)*12)}.h-16{height:calc(var(--spacing)*16)}.h-20{height:calc(var(--spacing)*20)}.h-24{height:calc(var(--spacing)*24)}.h-96{height:calc(var(--spacing)*96)}.h-\[75vh\]{height:75vh}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.max-h-48{max-height:calc(var(--spacing)*48)}.max-h-64{max-height:calc(var(--spacing)*64)}.max-h-96{max-height:calc(var(--spacing)*96)}.max-h-\[80vh\]{max-height:80vh}.max-h-\[85vh\]{max-height:85vh}.max-h-\[90vh\]{max-height:90vh}.max-h-\[250px\]{max-height:250px}.max-h-\[300px\]{max-height:300px}.max-h-\[400px\]{max-height:400px}.max-h-\[420px\]{max-height:420px}.max-h-\[450px\]{max-height:450px}.max-h-none{max-height:none}.min-h-0{min-height:calc(var(--spacing)*0)}.min-h-8{min-height:calc(var(--spacing)*8)}.min-h-\[32px\]{min-height:32px}.min-h-\[40px\]{min-height:40px}.min-h-\[60vh\]{min-height:60vh}.min-h-\[72px\]{min-height:72px}.min-h-\[80px\]{min-height:80px}.min-h-\[100px\]{min-height:100px}.min-h-\[120px\]{min-height:120px}.min-h-\[260px\]{min-height:260px}.min-h-\[400px\]{min-height:400px}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-0\.5{width:calc(var(--spacing)*.5)}.w-2{width:calc(var(--spacing)*2)}.w-3{width:calc(var(--spacing)*3)}.w-3\.5{width:calc(var(--spacing)*3.5)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-6{width:calc(var(--spacing)*6)}.w-7{width:calc(var(--spacing)*7)}.w-8{width:calc(var(--spacing)*8)}.w-9{width:calc(var(--spacing)*9)}.w-10{width:calc(var(--spacing)*10)}.w-12{width:calc(var(--spacing)*12)}.w-16{width:calc(var(--spacing)*16)}.w-20{width:calc(var(--spacing)*20)}.w-24{width:calc(var(--spacing)*24)}.w-28{width:calc(var(--spacing)*28)}.w-32{width:calc(var(--spacing)*32)}.w-36{width:calc(var(--spacing)*36)}.w-40{width:calc(var(--spacing)*40)}.w-44{width:calc(var(--spacing)*44)}.w-48{width:calc(var(--spacing)*48)}.w-52{width:calc(var(--spacing)*52)}.w-56{width:calc(var(--spacing)*56)}.w-64{width:calc(var(--spacing)*64)}.w-96{width:calc(var(--spacing)*96)}.w-\[280px\]{width:280px}.w-fit{width:fit-content}.w-full{width:100%}.w-screen{width:100vw}.max-w-2xl{max-width:var(--container-2xl)}.max-w-3xl{max-width:var(--container-3xl)}.max-w-4xl{max-width:var(--container-4xl)}.max-w-\[96px\]{max-width:96px}.max-w-\[100px\]{max-width:100px}.max-w-\[120px\]{max-width:120px}.max-w-\[140px\]{max-width:140px}.max-w-\[180px\]{max-width:180px}.max-w-\[200px\]{max-width:200px}.max-w-\[250px\]{max-width:250px}.max-w-\[420px\]{max-width:420px}.max-w-\[calc\(100\%-2rem\)\]{max-width:calc(100% - 2rem)}.max-w-lg{max-width:var(--container-lg)}.max-w-md{max-width:var(--container-md)}.max-w-none{max-width:none}.max-w-sm{max-width:var(--container-sm)}.max-w-xs{max-width:var(--container-xs)}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-48{min-width:calc(var(--spacing)*48)}.min-w-\[8rem\]{min-width:8rem}.min-w-\[60px\]{min-width:60px}.min-w-\[120px\]{min-width:120px}.min-w-\[1024px\]{min-width:1024px}.flex-1{flex:1}.flex-shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.caption-bottom{caption-side:bottom}.border-collapse{border-collapse:collapse}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-0{--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-1\/2{--tw-translate-x: 50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-0{--tw-translate-y:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-none{translate:none}.scale-3d{scale:var(--tw-scale-x)var(--tw-scale-y)var(--tw-scale-z)}.scale-\[0\.98\]{scale:.98}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-spin{animation:var(--animate-spin)}.cursor-default{cursor:default}.cursor-grab{cursor:grab}.cursor-pointer{cursor:pointer}.touch-pinch-zoom{--tw-pinch-zoom:pinch-zoom;touch-action:var(--tw-pan-x,)var(--tw-pan-y,)var(--tw-pinch-zoom,)}.touch-none{touch-action:none}.resize{resize:both}.resize-none{resize:none}.resize-y{resize:vertical}.list-inside{list-style-position:inside}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-\[40px_40px_1fr_80px_80px_80px_60px\]{grid-template-columns:40px 40px 1fr 80px 80px 80px 60px}.grid-cols-\[60px_1fr_100px_100px_80px_120px\]{grid-template-columns:60px 1fr 100px 100px 80px 120px}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-0{gap:calc(var(--spacing)*0)}.gap-0\.5{gap:calc(var(--spacing)*.5)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-5{gap:calc(var(--spacing)*5)}.gap-6{gap:calc(var(--spacing)*6)}.gap-8{gap:calc(var(--spacing)*8)}:where(.space-y-0>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*0)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*0)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-8>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*8)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*8)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-reverse>:not(:last-child)){--tw-space-y-reverse:1}.gap-x-8{column-gap:calc(var(--spacing)*8)}:where(.space-x-reverse>:not(:last-child)){--tw-space-x-reverse:1}.gap-y-4{row-gap:calc(var(--spacing)*4)}:where(.divide-x>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)))}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)))}:where(.divide-y-reverse>:not(:last-child)){--tw-divide-y-reverse:1}:where(.divide-gray-700\/50>:not(:last-child)){border-color:#36415380}@supports (color:color-mix(in lab,red,red)){:where(.divide-gray-700\/50>:not(:last-child)){border-color:color-mix(in oklab,var(--color-gray-700)50%,transparent)}}:where(.divide-white\/5>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){:where(.divide-white\/5>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-none{border-radius:0}.rounded-sm{border-radius:var(--radius-sm)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-s{border-start-start-radius:.25rem;border-end-start-radius:.25rem}.rounded-ss{border-start-start-radius:.25rem}.rounded-e{border-start-end-radius:.25rem;border-end-end-radius:.25rem}.rounded-se{border-start-end-radius:.25rem}.rounded-ee{border-end-end-radius:.25rem}.rounded-es{border-end-start-radius:.25rem}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-l{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-tl{border-top-left-radius:.25rem}.rounded-r{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.rounded-r-md{border-top-right-radius:var(--radius-md);border-bottom-right-radius:var(--radius-md)}.rounded-tr{border-top-right-radius:.25rem}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-br{border-bottom-right-radius:.25rem}.rounded-bl{border-bottom-left-radius:.25rem}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.border-y{border-block-style:var(--tw-border-style);border-block-width:1px}.border-s{border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.border-e{border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-\[\#07C160\]{border-color:#07c160}.border-\[\#07C160\]\/20{border-color:#07c16033}.border-\[\#07C160\]\/30{border-color:#07c1604d}.border-\[\#38bdac\]{border-color:#38bdac}.border-\[\#38bdac\]\/20{border-color:#38bdac33}.border-\[\#38bdac\]\/30{border-color:#38bdac4d}.border-\[\#38bdac\]\/40{border-color:#38bdac66}.border-\[\#38bdac\]\/50{border-color:#38bdac80}.border-amber-400\/60{border-color:#fcbb0099}@supports (color:color-mix(in lab,red,red)){.border-amber-400\/60{border-color:color-mix(in oklab,var(--color-amber-400)60%,transparent)}}.border-amber-500\/20{border-color:#f99c0033}@supports (color:color-mix(in lab,red,red)){.border-amber-500\/20{border-color:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.border-amber-500\/30{border-color:#f99c004d}@supports (color:color-mix(in lab,red,red)){.border-amber-500\/30{border-color:color-mix(in oklab,var(--color-amber-500)30%,transparent)}}.border-amber-500\/40{border-color:#f99c0066}@supports (color:color-mix(in lab,red,red)){.border-amber-500\/40{border-color:color-mix(in oklab,var(--color-amber-500)40%,transparent)}}.border-amber-500\/50{border-color:#f99c0080}@supports (color:color-mix(in lab,red,red)){.border-amber-500\/50{border-color:color-mix(in oklab,var(--color-amber-500)50%,transparent)}}.border-blue-500\/30{border-color:#3080ff4d}@supports (color:color-mix(in lab,red,red)){.border-blue-500\/30{border-color:color-mix(in oklab,var(--color-blue-500)30%,transparent)}}.border-blue-500\/40{border-color:#3080ff66}@supports (color:color-mix(in lab,red,red)){.border-blue-500\/40{border-color:color-mix(in oklab,var(--color-blue-500)40%,transparent)}}.border-blue-500\/50{border-color:#3080ff80}@supports (color:color-mix(in lab,red,red)){.border-blue-500\/50{border-color:color-mix(in oklab,var(--color-blue-500)50%,transparent)}}.border-cyan-500\/30{border-color:#00b7d74d}@supports (color:color-mix(in lab,red,red)){.border-cyan-500\/30{border-color:color-mix(in oklab,var(--color-cyan-500)30%,transparent)}}.border-cyan-500\/40{border-color:#00b7d766}@supports (color:color-mix(in lab,red,red)){.border-cyan-500\/40{border-color:color-mix(in oklab,var(--color-cyan-500)40%,transparent)}}.border-gray-500{border-color:var(--color-gray-500)}.border-gray-600{border-color:var(--color-gray-600)}.border-gray-700{border-color:var(--color-gray-700)}.border-gray-700\/30{border-color:#3641534d}@supports (color:color-mix(in lab,red,red)){.border-gray-700\/30{border-color:color-mix(in oklab,var(--color-gray-700)30%,transparent)}}.border-gray-700\/40{border-color:#36415366}@supports (color:color-mix(in lab,red,red)){.border-gray-700\/40{border-color:color-mix(in oklab,var(--color-gray-700)40%,transparent)}}.border-gray-700\/50{border-color:#36415380}@supports (color:color-mix(in lab,red,red)){.border-gray-700\/50{border-color:color-mix(in oklab,var(--color-gray-700)50%,transparent)}}.border-gray-700\/60{border-color:#36415399}@supports (color:color-mix(in lab,red,red)){.border-gray-700\/60{border-color:color-mix(in oklab,var(--color-gray-700)60%,transparent)}}.border-green-500\/30{border-color:#00c7584d}@supports (color:color-mix(in lab,red,red)){.border-green-500\/30{border-color:color-mix(in oklab,var(--color-green-500)30%,transparent)}}.border-green-500\/40{border-color:#00c75866}@supports (color:color-mix(in lab,red,red)){.border-green-500\/40{border-color:color-mix(in oklab,var(--color-green-500)40%,transparent)}}.border-inherit{border-color:inherit}.border-orange-500\/20{border-color:#fe6e0033}@supports (color:color-mix(in lab,red,red)){.border-orange-500\/20{border-color:color-mix(in oklab,var(--color-orange-500)20%,transparent)}}.border-orange-500\/30{border-color:#fe6e004d}@supports (color:color-mix(in lab,red,red)){.border-orange-500\/30{border-color:color-mix(in oklab,var(--color-orange-500)30%,transparent)}}.border-orange-500\/40{border-color:#fe6e0066}@supports (color:color-mix(in lab,red,red)){.border-orange-500\/40{border-color:color-mix(in oklab,var(--color-orange-500)40%,transparent)}}.border-orange-500\/50{border-color:#fe6e0080}@supports (color:color-mix(in lab,red,red)){.border-orange-500\/50{border-color:color-mix(in oklab,var(--color-orange-500)50%,transparent)}}.border-purple-500\/20{border-color:#ac4bff33}@supports (color:color-mix(in lab,red,red)){.border-purple-500\/20{border-color:color-mix(in oklab,var(--color-purple-500)20%,transparent)}}.border-purple-500\/30{border-color:#ac4bff4d}@supports (color:color-mix(in lab,red,red)){.border-purple-500\/30{border-color:color-mix(in oklab,var(--color-purple-500)30%,transparent)}}.border-purple-500\/40{border-color:#ac4bff66}@supports (color:color-mix(in lab,red,red)){.border-purple-500\/40{border-color:color-mix(in oklab,var(--color-purple-500)40%,transparent)}}.border-red-500{border-color:var(--color-red-500)}.border-red-500\/20{border-color:#fb2c3633}@supports (color:color-mix(in lab,red,red)){.border-red-500\/20{border-color:color-mix(in oklab,var(--color-red-500)20%,transparent)}}.border-red-500\/30{border-color:#fb2c364d}@supports (color:color-mix(in lab,red,red)){.border-red-500\/30{border-color:color-mix(in oklab,var(--color-red-500)30%,transparent)}}.border-red-500\/50{border-color:#fb2c3680}@supports (color:color-mix(in lab,red,red)){.border-red-500\/50{border-color:color-mix(in oklab,var(--color-red-500)50%,transparent)}}.border-red-600\/50{border-color:#e4001480}@supports (color:color-mix(in lab,red,red)){.border-red-600\/50{border-color:color-mix(in oklab,var(--color-red-600)50%,transparent)}}.border-transparent{border-color:#0000}.border-white\/5{border-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.border-white\/5{border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.border-white\/10{border-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.border-white\/10{border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.border-white\/20{border-color:#fff3}@supports (color:color-mix(in lab,red,red)){.border-white\/20{border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.border-yellow-500\/30{border-color:#edb2004d}@supports (color:color-mix(in lab,red,red)){.border-yellow-500\/30{border-color:color-mix(in oklab,var(--color-yellow-500)30%,transparent)}}.border-yellow-500\/40{border-color:#edb20066}@supports (color:color-mix(in lab,red,red)){.border-yellow-500\/40{border-color:color-mix(in oklab,var(--color-yellow-500)40%,transparent)}}.bg-\[\#0a1628\]{background-color:#0a1628}.bg-\[\#0a1628\]\/50{background-color:#0a162880}.bg-\[\#0a1628\]\/60{background-color:#0a162899}.bg-\[\#0b1828\]{background-color:#0b1828}.bg-\[\#0f2137\]{background-color:#0f2137}.bg-\[\#00CED1\]{background-color:#00ced1}.bg-\[\#1C1C1E\]{background-color:#1c1c1e}.bg-\[\#07C160\]{background-color:#07c160}.bg-\[\#07C160\]\/5{background-color:#07c1600d}.bg-\[\#07C160\]\/10{background-color:#07c1601a}.bg-\[\#38bdac\]{background-color:#38bdac}.bg-\[\#38bdac\]\/5{background-color:#38bdac0d}.bg-\[\#38bdac\]\/10{background-color:#38bdac1a}.bg-\[\#38bdac\]\/15{background-color:#38bdac26}.bg-\[\#38bdac\]\/20{background-color:#38bdac33}.bg-\[\#38bdac\]\/30{background-color:#38bdac4d}.bg-\[\#38bdac\]\/60{background-color:#38bdac99}.bg-\[\#38bdac\]\/80{background-color:#38bdaccc}.bg-\[\#050c18\]{background-color:#050c18}.bg-\[\#162840\]{background-color:#162840}.bg-amber-500{background-color:var(--color-amber-500)}.bg-amber-500\/5{background-color:#f99c000d}@supports (color:color-mix(in lab,red,red)){.bg-amber-500\/5{background-color:color-mix(in oklab,var(--color-amber-500)5%,transparent)}}.bg-amber-500\/10{background-color:#f99c001a}@supports (color:color-mix(in lab,red,red)){.bg-amber-500\/10{background-color:color-mix(in oklab,var(--color-amber-500)10%,transparent)}}.bg-amber-500\/20{background-color:#f99c0033}@supports (color:color-mix(in lab,red,red)){.bg-amber-500\/20{background-color:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.bg-black{background-color:var(--color-black)}.bg-black\/30{background-color:#0000004d}@supports (color:color-mix(in lab,red,red)){.bg-black\/30{background-color:color-mix(in oklab,var(--color-black)30%,transparent)}}.bg-black\/50{background-color:#00000080}@supports (color:color-mix(in lab,red,red)){.bg-black\/50{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}}.bg-black\/60{background-color:#0009}@supports (color:color-mix(in lab,red,red)){.bg-black\/60{background-color:color-mix(in oklab,var(--color-black)60%,transparent)}}.bg-black\/90{background-color:#000000e6}@supports (color:color-mix(in lab,red,red)){.bg-black\/90{background-color:color-mix(in oklab,var(--color-black)90%,transparent)}}.bg-blue-500\/5{background-color:#3080ff0d}@supports (color:color-mix(in lab,red,red)){.bg-blue-500\/5{background-color:color-mix(in oklab,var(--color-blue-500)5%,transparent)}}.bg-blue-500\/10{background-color:#3080ff1a}@supports (color:color-mix(in lab,red,red)){.bg-blue-500\/10{background-color:color-mix(in oklab,var(--color-blue-500)10%,transparent)}}.bg-blue-500\/20{background-color:#3080ff33}@supports (color:color-mix(in lab,red,red)){.bg-blue-500\/20{background-color:color-mix(in oklab,var(--color-blue-500)20%,transparent)}}.bg-cyan-500{background-color:var(--color-cyan-500)}.bg-cyan-500\/20{background-color:#00b7d733}@supports (color:color-mix(in lab,red,red)){.bg-cyan-500\/20{background-color:color-mix(in oklab,var(--color-cyan-500)20%,transparent)}}.bg-emerald-500\/20{background-color:#00bb7f33}@supports (color:color-mix(in lab,red,red)){.bg-emerald-500\/20{background-color:color-mix(in oklab,var(--color-emerald-500)20%,transparent)}}.bg-gray-500{background-color:var(--color-gray-500)}.bg-gray-500\/10{background-color:#6a72821a}@supports (color:color-mix(in lab,red,red)){.bg-gray-500\/10{background-color:color-mix(in oklab,var(--color-gray-500)10%,transparent)}}.bg-gray-500\/20{background-color:#6a728233}@supports (color:color-mix(in lab,red,red)){.bg-gray-500\/20{background-color:color-mix(in oklab,var(--color-gray-500)20%,transparent)}}.bg-gray-600{background-color:var(--color-gray-600)}.bg-gray-600\/20{background-color:#4a556533}@supports (color:color-mix(in lab,red,red)){.bg-gray-600\/20{background-color:color-mix(in oklab,var(--color-gray-600)20%,transparent)}}.bg-gray-600\/50{background-color:#4a556580}@supports (color:color-mix(in lab,red,red)){.bg-gray-600\/50{background-color:color-mix(in oklab,var(--color-gray-600)50%,transparent)}}.bg-gray-700{background-color:var(--color-gray-700)}.bg-gray-700\/50{background-color:#36415380}@supports (color:color-mix(in lab,red,red)){.bg-gray-700\/50{background-color:color-mix(in oklab,var(--color-gray-700)50%,transparent)}}.bg-green-400\/10{background-color:#05df721a}@supports (color:color-mix(in lab,red,red)){.bg-green-400\/10{background-color:color-mix(in oklab,var(--color-green-400)10%,transparent)}}.bg-green-500{background-color:var(--color-green-500)}.bg-green-500\/20{background-color:#00c75833}@supports (color:color-mix(in lab,red,red)){.bg-green-500\/20{background-color:color-mix(in oklab,var(--color-green-500)20%,transparent)}}.bg-green-600{background-color:var(--color-green-600)}.bg-orange-500{background-color:var(--color-orange-500)}.bg-orange-500\/10{background-color:#fe6e001a}@supports (color:color-mix(in lab,red,red)){.bg-orange-500\/10{background-color:color-mix(in oklab,var(--color-orange-500)10%,transparent)}}.bg-orange-500\/20{background-color:#fe6e0033}@supports (color:color-mix(in lab,red,red)){.bg-orange-500\/20{background-color:color-mix(in oklab,var(--color-orange-500)20%,transparent)}}.bg-purple-500\/20{background-color:#ac4bff33}@supports (color:color-mix(in lab,red,red)){.bg-purple-500\/20{background-color:color-mix(in oklab,var(--color-purple-500)20%,transparent)}}.bg-red-500\/10{background-color:#fb2c361a}@supports (color:color-mix(in lab,red,red)){.bg-red-500\/10{background-color:color-mix(in oklab,var(--color-red-500)10%,transparent)}}.bg-red-500\/20{background-color:#fb2c3633}@supports (color:color-mix(in lab,red,red)){.bg-red-500\/20{background-color:color-mix(in oklab,var(--color-red-500)20%,transparent)}}.bg-red-600{background-color:var(--color-red-600)}.bg-red-900\/80{background-color:#82181acc}@supports (color:color-mix(in lab,red,red)){.bg-red-900\/80{background-color:color-mix(in oklab,var(--color-red-900)80%,transparent)}}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.bg-white\/5{background-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.bg-white\/5{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.bg-white\/10{background-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.bg-white\/10{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.bg-white\/20{background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.bg-white\/20{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.bg-yellow-500\/20{background-color:#edb20033}@supports (color:color-mix(in lab,red,red)){.bg-yellow-500\/20{background-color:color-mix(in oklab,var(--color-yellow-500)20%,transparent)}}.bg-gradient-to-br{--tw-gradient-position:to bottom right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-\[\#0f2137\]{--tw-gradient-from:#0f2137;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-\[\#00CED1\]{--tw-gradient-from:#00ced1;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-\[\#38bdac\]\/10{--tw-gradient-from:oklab(72.378% -.11483 -.0053193/.1);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-blue-500\/20{--tw-gradient-from:#3080ff33}@supports (color:color-mix(in lab,red,red)){.from-blue-500\/20{--tw-gradient-from:color-mix(in oklab,var(--color-blue-500)20%,transparent)}}.from-blue-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-cyan-500\/20{--tw-gradient-from:#00b7d733}@supports (color:color-mix(in lab,red,red)){.from-cyan-500\/20{--tw-gradient-from:color-mix(in oklab,var(--color-cyan-500)20%,transparent)}}.from-cyan-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-green-500\/20{--tw-gradient-from:#00c75833}@supports (color:color-mix(in lab,red,red)){.from-green-500\/20{--tw-gradient-from:color-mix(in oklab,var(--color-green-500)20%,transparent)}}.from-green-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-purple-500\/20{--tw-gradient-from:#ac4bff33}@supports (color:color-mix(in lab,red,red)){.from-purple-500\/20{--tw-gradient-from:color-mix(in oklab,var(--color-purple-500)20%,transparent)}}.from-purple-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-yellow-500\/20{--tw-gradient-from:#edb20033}@supports (color:color-mix(in lab,red,red)){.from-yellow-500\/20{--tw-gradient-from:color-mix(in oklab,var(--color-yellow-500)20%,transparent)}}.from-yellow-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.via-\[\#38bdac\]\/30{--tw-gradient-via:oklab(72.378% -.11483 -.0053193/.3);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.to-\[\#0f2137\]{--tw-gradient-to:#0f2137;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-\[\#20B2AA\]{--tw-gradient-to:#20b2aa;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-\[\#162d4a\]{--tw-gradient-to:#162d4a;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-amber-500\/20{--tw-gradient-to:#f99c0033}@supports (color:color-mix(in lab,red,red)){.to-amber-500\/20{--tw-gradient-to:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.to-amber-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-cyan-500\/5{--tw-gradient-to:#00b7d70d}@supports (color:color-mix(in lab,red,red)){.to-cyan-500\/5{--tw-gradient-to:color-mix(in oklab,var(--color-cyan-500)5%,transparent)}}.to-cyan-500\/5{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-green-500\/5{--tw-gradient-to:#00c7580d}@supports (color:color-mix(in lab,red,red)){.to-green-500\/5{--tw-gradient-to:color-mix(in oklab,var(--color-green-500)5%,transparent)}}.to-green-500\/5{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-purple-500\/5{--tw-gradient-to:#ac4bff0d}@supports (color:color-mix(in lab,red,red)){.to-purple-500\/5{--tw-gradient-to:color-mix(in oklab,var(--color-purple-500)5%,transparent)}}.to-purple-500\/5{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-yellow-500\/5{--tw-gradient-to:#edb2000d}@supports (color:color-mix(in lab,red,red)){.to-yellow-500\/5{--tw-gradient-to:color-mix(in oklab,var(--color-yellow-500)5%,transparent)}}.to-yellow-500\/5{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.bg-repeat{background-repeat:repeat}.mask-no-clip{-webkit-mask-clip:no-clip;mask-clip:no-clip}.mask-repeat{-webkit-mask-repeat:repeat;mask-repeat:repeat}.fill-amber-400{fill:var(--color-amber-400)}.fill-current{fill:currentColor}.object-cover{object-fit:cover}.p-0{padding:calc(var(--spacing)*0)}.p-1{padding:calc(var(--spacing)*1)}.p-2{padding:calc(var(--spacing)*2)}.p-2\.5{padding:calc(var(--spacing)*2.5)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.p-5{padding:calc(var(--spacing)*5)}.p-6{padding:calc(var(--spacing)*6)}.p-8{padding:calc(var(--spacing)*8)}.px-0{padding-inline:calc(var(--spacing)*0)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-1\.5{padding-inline:calc(var(--spacing)*1.5)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-2\.5{padding-block:calc(var(--spacing)*2.5)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.py-5{padding-block:calc(var(--spacing)*5)}.py-6{padding-block:calc(var(--spacing)*6)}.py-8{padding-block:calc(var(--spacing)*8)}.py-10{padding-block:calc(var(--spacing)*10)}.py-12{padding-block:calc(var(--spacing)*12)}.py-16{padding-block:calc(var(--spacing)*16)}.py-20{padding-block:calc(var(--spacing)*20)}.pt-0{padding-top:calc(var(--spacing)*0)}.pt-1{padding-top:calc(var(--spacing)*1)}.pt-2{padding-top:calc(var(--spacing)*2)}.pt-3{padding-top:calc(var(--spacing)*3)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-5{padding-top:calc(var(--spacing)*5)}.pt-6{padding-top:calc(var(--spacing)*6)}.pr-1{padding-right:calc(var(--spacing)*1)}.pr-2{padding-right:calc(var(--spacing)*2)}.pr-4{padding-right:calc(var(--spacing)*4)}.pb-1{padding-bottom:calc(var(--spacing)*1)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-3{padding-bottom:calc(var(--spacing)*3)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pl-2{padding-left:calc(var(--spacing)*2)}.pl-4{padding-left:calc(var(--spacing)*4)}.pl-8{padding-left:calc(var(--spacing)*8)}.pl-10{padding-left:calc(var(--spacing)*10)}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.align-middle{vertical-align:middle}.font-mono{font-family:var(--font-mono)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.leading-6{--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6)}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.text-wrap{text-wrap:wrap}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.text-clip{text-overflow:clip}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-\[\#00CED1\]{color:#00ced1}.text-\[\#07C160\]{color:#07c160}.text-\[\#07C160\]\/60{color:#07c16099}.text-\[\#07C160\]\/70{color:#07c160b3}.text-\[\#07C160\]\/80{color:#07c160cc}.text-\[\#26A17B\]{color:#26a17b}.text-\[\#38bdac\]{color:#38bdac}.text-\[\#38bdac\]\/30{color:#38bdac4d}.text-\[\#38bdac\]\/40{color:#38bdac66}.text-\[\#169BD7\]{color:#169bd7}.text-\[\#1677FF\]{color:#1677ff}.text-\[\#FFD700\]{color:gold}.text-amber-200{color:var(--color-amber-200)}.text-amber-200\/80{color:#fee685cc}@supports (color:color-mix(in lab,red,red)){.text-amber-200\/80{color:color-mix(in oklab,var(--color-amber-200)80%,transparent)}}.text-amber-300{color:var(--color-amber-300)}.text-amber-400{color:var(--color-amber-400)}.text-amber-400\/30{color:#fcbb004d}@supports (color:color-mix(in lab,red,red)){.text-amber-400\/30{color:color-mix(in oklab,var(--color-amber-400)30%,transparent)}}.text-amber-400\/80{color:#fcbb00cc}@supports (color:color-mix(in lab,red,red)){.text-amber-400\/80{color:color-mix(in oklab,var(--color-amber-400)80%,transparent)}}.text-amber-400\/90{color:#fcbb00e6}@supports (color:color-mix(in lab,red,red)){.text-amber-400\/90{color:color-mix(in oklab,var(--color-amber-400)90%,transparent)}}.text-black{color:var(--color-black)}.text-blue-300{color:var(--color-blue-300)}.text-blue-300\/60{color:#90c5ff99}@supports (color:color-mix(in lab,red,red)){.text-blue-300\/60{color:color-mix(in oklab,var(--color-blue-300)60%,transparent)}}.text-blue-400{color:var(--color-blue-400)}.text-blue-400\/60{color:#54a2ff99}@supports (color:color-mix(in lab,red,red)){.text-blue-400\/60{color:color-mix(in oklab,var(--color-blue-400)60%,transparent)}}.text-cyan-400{color:var(--color-cyan-400)}.text-emerald-400{color:var(--color-emerald-400)}.text-gray-200{color:var(--color-gray-200)}.text-gray-300{color:var(--color-gray-300)}.text-gray-400{color:var(--color-gray-400)}.text-gray-500{color:var(--color-gray-500)}.text-gray-600{color:var(--color-gray-600)}.text-gray-700{color:var(--color-gray-700)}.text-green-300{color:var(--color-green-300)}.text-green-400{color:var(--color-green-400)}.text-green-400\/90{color:#05df72e6}@supports (color:color-mix(in lab,red,red)){.text-green-400\/90{color:color-mix(in oklab,var(--color-green-400)90%,transparent)}}.text-green-500{color:var(--color-green-500)}.text-orange-300{color:var(--color-orange-300)}.text-orange-300\/60{color:#ffb96d99}@supports (color:color-mix(in lab,red,red)){.text-orange-300\/60{color:color-mix(in oklab,var(--color-orange-300)60%,transparent)}}.text-orange-400{color:var(--color-orange-400)}.text-orange-400\/60{color:#ff8b1a99}@supports (color:color-mix(in lab,red,red)){.text-orange-400\/60{color:color-mix(in oklab,var(--color-orange-400)60%,transparent)}}.text-orange-400\/70{color:#ff8b1ab3}@supports (color:color-mix(in lab,red,red)){.text-orange-400\/70{color:color-mix(in oklab,var(--color-orange-400)70%,transparent)}}.text-orange-400\/80{color:#ff8b1acc}@supports (color:color-mix(in lab,red,red)){.text-orange-400\/80{color:color-mix(in oklab,var(--color-orange-400)80%,transparent)}}.text-purple-400{color:var(--color-purple-400)}.text-red-100{color:var(--color-red-100)}.text-red-300{color:var(--color-red-300)}.text-red-400{color:var(--color-red-400)}.text-rose-400{color:var(--color-rose-400)}.text-sky-300{color:var(--color-sky-300)}.text-white{color:var(--color-white)}.text-white\/40{color:#fff6}@supports (color:color-mix(in lab,red,red)){.text-white\/40{color:color-mix(in oklab,var(--color-white)40%,transparent)}}.text-white\/60{color:#fff9}@supports (color:color-mix(in lab,red,red)){.text-white\/60{color:color-mix(in oklab,var(--color-white)60%,transparent)}}.text-white\/70{color:#ffffffb3}@supports (color:color-mix(in lab,red,red)){.text-white\/70{color:color-mix(in oklab,var(--color-white)70%,transparent)}}.text-white\/80{color:#fffc}@supports (color:color-mix(in lab,red,red)){.text-white\/80{color:color-mix(in oklab,var(--color-white)80%,transparent)}}.text-yellow-400{color:var(--color-yellow-400)}.text-yellow-400\/60{color:#fac80099}@supports (color:color-mix(in lab,red,red)){.text-yellow-400\/60{color:color-mix(in oklab,var(--color-yellow-400)60%,transparent)}}.text-yellow-500\/70{color:#edb200b3}@supports (color:color-mix(in lab,red,red)){.text-yellow-500\/70{color:color-mix(in oklab,var(--color-yellow-500)70%,transparent)}}.capitalize{text-transform:capitalize}.lowercase{text-transform:lowercase}.normal-case{text-transform:none}.uppercase{text-transform:uppercase}.italic{font-style:italic}.italic\!{font-style:italic!important}.not-italic{font-style:normal}.diagonal-fractions{--tw-numeric-fraction:diagonal-fractions;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.lining-nums{--tw-numeric-figure:lining-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.oldstyle-nums{--tw-numeric-figure:oldstyle-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.ordinal{--tw-ordinal:ordinal;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.proportional-nums{--tw-numeric-spacing:proportional-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.slashed-zero{--tw-slashed-zero:slashed-zero;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.stacked-fractions{--tw-numeric-fraction:stacked-fractions;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.normal-nums{font-variant-numeric:normal}.line-through{text-decoration-line:line-through}.no-underline{text-decoration-line:none}.overline{text-decoration-line:overline}.underline{text-decoration-line:underline}.underline\!{text-decoration-line:underline!important}.underline-offset-4{text-underline-offset:4px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.accent-\[\#38bdac\]{accent-color:#38bdac}.opacity-0{opacity:0}.opacity-50{opacity:.5}.opacity-55{opacity:.55}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-0{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-1{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-2{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.inset-ring{--tw-inset-ring-shadow:inset 0 0 0 1px var(--tw-inset-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[\#38bdac\]\/20{--tw-shadow-color:#38bdac33}@supports (color:color-mix(in lab,red,red)){.shadow-\[\#38bdac\]\/20{--tw-shadow-color:color-mix(in oklab,oklab(72.378% -.11483 -.0053193/.2) var(--tw-shadow-alpha),transparent)}}.shadow-\[\#38bdac\]\/30{--tw-shadow-color:#38bdac4d}@supports (color:color-mix(in lab,red,red)){.shadow-\[\#38bdac\]\/30{--tw-shadow-color:color-mix(in oklab,oklab(72.378% -.11483 -.0053193/.3) var(--tw-shadow-alpha),transparent)}}.ring-\[\#38bdac\]{--tw-ring-color:#38bdac}.ring-\[\#38bdac\]\/40{--tw-ring-color:oklab(72.378% -.11483 -.0053193/.4)}.ring-\[\#38bdac\]\/50{--tw-ring-color:oklab(72.378% -.11483 -.0053193/.5)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-3xl{--tw-blur:blur(var(--blur-3xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow{--tw-drop-shadow-size:drop-shadow(0 1px 2px var(--tw-drop-shadow-color,#0000001a))drop-shadow(0 1px 1px var(--tw-drop-shadow-color,#0000000f));--tw-drop-shadow:drop-shadow(0 1px 2px #0000001a)drop-shadow(0 1px 1px #0000000f);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter\!{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)!important}.backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-xl{--tw-backdrop-blur:blur(var(--blur-xl));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-grayscale{--tw-backdrop-grayscale:grayscale(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-invert{--tw-backdrop-invert:invert(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-sepia{--tw-backdrop-sepia:sepia(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition\!{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events!important;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function))!important;transition-duration:var(--tw-duration,var(--default-transition-duration))!important}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-200{--tw-duration:.2s;transition-duration:.2s}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}:where(.divide-x-reverse>:not(:last-child)){--tw-divide-x-reverse:1}.ring-inset{--tw-ring-inset:inset}@media(hover:hover){.group-hover\:text-\[\#38bdac\]:is(:where(.group):hover *){color:#38bdac}.group-hover\:text-gray-400:is(:where(.group):hover *){color:var(--color-gray-400)}.group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}}.peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled~*){cursor:not-allowed}.peer-disabled\:opacity-70:is(:where(.peer):disabled~*){opacity:.7}.placeholder\:text-gray-500::placeholder{color:var(--color-gray-500)}.last\:border-b-0:last-child{border-bottom-style:var(--tw-border-style);border-bottom-width:0}@media(hover:hover){.hover\:border-\[\#38bdac\]\/30:hover{border-color:#38bdac4d}.hover\:border-\[\#38bdac\]\/50:hover{border-color:#38bdac80}.hover\:border-\[\#38bdac\]\/60:hover{border-color:#38bdac99}.hover\:border-\[\#38bdac\]\/70:hover{border-color:#38bdacb3}.hover\:border-blue-500\/60:hover{border-color:#3080ff99}@supports (color:color-mix(in lab,red,red)){.hover\:border-blue-500\/60:hover{border-color:color-mix(in oklab,var(--color-blue-500)60%,transparent)}}.hover\:border-gray-500:hover{border-color:var(--color-gray-500)}.hover\:border-gray-600:hover{border-color:var(--color-gray-600)}.hover\:border-orange-500\/50:hover{border-color:#fe6e0080}@supports (color:color-mix(in lab,red,red)){.hover\:border-orange-500\/50:hover{border-color:color-mix(in oklab,var(--color-orange-500)50%,transparent)}}.hover\:border-yellow-500\/60:hover{border-color:#edb20099}@supports (color:color-mix(in lab,red,red)){.hover\:border-yellow-500\/60:hover{border-color:color-mix(in oklab,var(--color-yellow-500)60%,transparent)}}.hover\:bg-\[\#0a1628\]:hover{background-color:#0a1628}.hover\:bg-\[\#0a1628\]\/80:hover{background-color:#0a1628cc}.hover\:bg-\[\#1a3050\]:hover{background-color:#1a3050}.hover\:bg-\[\#2da396\]:hover{background-color:#2da396}.hover\:bg-\[\#06AD51\]:hover{background-color:#06ad51}.hover\:bg-\[\#07C160\]\/10:hover{background-color:#07c1601a}.hover\:bg-\[\#20B2AA\]:hover{background-color:#20b2aa}.hover\:bg-\[\#38bdac\]\/10:hover{background-color:#38bdac1a}.hover\:bg-\[\#38bdac\]\/20:hover{background-color:#38bdac33}.hover\:bg-\[\#162840\]:hover{background-color:#162840}.hover\:bg-\[\#162840\]\/30:hover{background-color:#1628404d}.hover\:bg-\[\#162840\]\/50:hover{background-color:#16284080}.hover\:bg-amber-500\/10:hover{background-color:#f99c001a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-amber-500\/10:hover{background-color:color-mix(in oklab,var(--color-amber-500)10%,transparent)}}.hover\:bg-amber-500\/20:hover{background-color:#f99c0033}@supports (color:color-mix(in lab,red,red)){.hover\:bg-amber-500\/20:hover{background-color:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.hover\:bg-amber-600:hover{background-color:var(--color-amber-600)}.hover\:bg-blue-400\/10:hover{background-color:#54a2ff1a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-blue-400\/10:hover{background-color:color-mix(in oklab,var(--color-blue-400)10%,transparent)}}.hover\:bg-blue-500\/20:hover{background-color:#3080ff33}@supports (color:color-mix(in lab,red,red)){.hover\:bg-blue-500\/20:hover{background-color:color-mix(in oklab,var(--color-blue-500)20%,transparent)}}.hover\:bg-emerald-500\/20:hover{background-color:#00bb7f33}@supports (color:color-mix(in lab,red,red)){.hover\:bg-emerald-500\/20:hover{background-color:color-mix(in oklab,var(--color-emerald-500)20%,transparent)}}.hover\:bg-gray-500:hover{background-color:var(--color-gray-500)}.hover\:bg-gray-500\/20:hover{background-color:#6a728233}@supports (color:color-mix(in lab,red,red)){.hover\:bg-gray-500\/20:hover{background-color:color-mix(in oklab,var(--color-gray-500)20%,transparent)}}.hover\:bg-gray-700:hover{background-color:var(--color-gray-700)}.hover\:bg-gray-700\/50:hover{background-color:#36415380}@supports (color:color-mix(in lab,red,red)){.hover\:bg-gray-700\/50:hover{background-color:color-mix(in oklab,var(--color-gray-700)50%,transparent)}}.hover\:bg-gray-800:hover{background-color:var(--color-gray-800)}.hover\:bg-green-500\/20:hover{background-color:#00c75833}@supports (color:color-mix(in lab,red,red)){.hover\:bg-green-500\/20:hover{background-color:color-mix(in oklab,var(--color-green-500)20%,transparent)}}.hover\:bg-green-700:hover{background-color:var(--color-green-700)}.hover\:bg-orange-500\/10:hover{background-color:#fe6e001a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-orange-500\/10:hover{background-color:color-mix(in oklab,var(--color-orange-500)10%,transparent)}}.hover\:bg-orange-500\/20:hover{background-color:#fe6e0033}@supports (color:color-mix(in lab,red,red)){.hover\:bg-orange-500\/20:hover{background-color:color-mix(in oklab,var(--color-orange-500)20%,transparent)}}.hover\:bg-orange-600:hover{background-color:var(--color-orange-600)}.hover\:bg-purple-500\/10:hover{background-color:#ac4bff1a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-purple-500\/10:hover{background-color:color-mix(in oklab,var(--color-purple-500)10%,transparent)}}.hover\:bg-purple-500\/20:hover{background-color:#ac4bff33}@supports (color:color-mix(in lab,red,red)){.hover\:bg-purple-500\/20:hover{background-color:color-mix(in oklab,var(--color-purple-500)20%,transparent)}}.hover\:bg-purple-500\/30:hover{background-color:#ac4bff4d}@supports (color:color-mix(in lab,red,red)){.hover\:bg-purple-500\/30:hover{background-color:color-mix(in oklab,var(--color-purple-500)30%,transparent)}}.hover\:bg-red-500\/10:hover{background-color:#fb2c361a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-red-500\/10:hover{background-color:color-mix(in oklab,var(--color-red-500)10%,transparent)}}.hover\:bg-red-500\/20:hover{background-color:#fb2c3633}@supports (color:color-mix(in lab,red,red)){.hover\:bg-red-500\/20:hover{background-color:color-mix(in oklab,var(--color-red-500)20%,transparent)}}.hover\:bg-red-700:hover{background-color:var(--color-red-700)}.hover\:bg-red-800\/50:hover{background-color:#9f071280}@supports (color:color-mix(in lab,red,red)){.hover\:bg-red-800\/50:hover{background-color:color-mix(in oklab,var(--color-red-800)50%,transparent)}}.hover\:bg-white\/5:hover{background-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.hover\:bg-white\/5:hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.hover\:bg-white\/20:hover{background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.hover\:bg-white\/20:hover{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.hover\:bg-yellow-500\/20:hover{background-color:#edb20033}@supports (color:color-mix(in lab,red,red)){.hover\:bg-yellow-500\/20:hover{background-color:color-mix(in oklab,var(--color-yellow-500)20%,transparent)}}.hover\:bg-yellow-500\/30:hover{background-color:#edb2004d}@supports (color:color-mix(in lab,red,red)){.hover\:bg-yellow-500\/30:hover{background-color:color-mix(in oklab,var(--color-yellow-500)30%,transparent)}}.hover\:text-\[\#2da396\]:hover{color:#2da396}.hover\:text-\[\#5fe0cd\]:hover{color:#5fe0cd}.hover\:text-\[\#38bdac\]:hover{color:#38bdac}.hover\:text-amber-200:hover{color:var(--color-amber-200)}.hover\:text-amber-300:hover{color:var(--color-amber-300)}.hover\:text-amber-400:hover{color:var(--color-amber-400)}.hover\:text-blue-300:hover{color:var(--color-blue-300)}.hover\:text-blue-400:hover{color:var(--color-blue-400)}.hover\:text-gray-300:hover{color:var(--color-gray-300)}.hover\:text-green-400:hover{color:var(--color-green-400)}.hover\:text-orange-400:hover{color:var(--color-orange-400)}.hover\:text-red-300:hover{color:var(--color-red-300)}.hover\:text-red-400:hover{color:var(--color-red-400)}.hover\:text-sky-200:hover{color:var(--color-sky-200)}.hover\:text-white:hover{color:var(--color-white)}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}}.focus\:border-\[\#38bdac\]:focus{border-color:#38bdac}.focus\:border-orange-500\/50:focus{border-color:#fe6e0080}@supports (color:color-mix(in lab,red,red)){.focus\:border-orange-500\/50:focus{border-color:color-mix(in oklab,var(--color-orange-500)50%,transparent)}}.focus\:bg-\[\#38bdac\]\/20:focus{background-color:#38bdac33}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-\[\#38bdac\]:focus{--tw-ring-color:#38bdac}.focus\:ring-amber-400:focus{--tw-ring-color:var(--color-amber-400)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-0:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-\[3px\]:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-\[\#38bdac\]:focus-visible{--tw-ring-color:#38bdac}.focus-visible\:ring-red-500:focus-visible{--tw-ring-color:var(--color-red-500)}.focus-visible\:ring-offset-0:focus-visible{--tw-ring-offset-width:0px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus-visible\:ring-offset-\[\#0a1628\]:focus-visible{--tw-ring-offset-color:#0a1628}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.active\:cursor-grabbing:active{cursor:grabbing}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-40:disabled{opacity:.4}.disabled\:opacity-50:disabled{opacity:.5}.has-\[\>svg\]\:px-2\.5:has(>svg){padding-inline:calc(var(--spacing)*2.5)}.has-\[\>svg\]\:px-3:has(>svg){padding-inline:calc(var(--spacing)*3)}.has-\[\>svg\]\:px-4:has(>svg){padding-inline:calc(var(--spacing)*4)}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--tw-translate-y:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[state\=active\]\:bg-\[\#07C160\]\/20[data-state=active]{background-color:#07c16033}.data-\[state\=active\]\:bg-\[\#26A17B\]\/20[data-state=active]{background-color:#26a17b33}.data-\[state\=active\]\:bg-\[\#38bdac\]\/20[data-state=active]{background-color:#38bdac33}.data-\[state\=active\]\:bg-\[\#1677FF\]\/20[data-state=active]{background-color:#1677ff33}.data-\[state\=active\]\:bg-\[\#003087\]\/20[data-state=active]{background-color:#00308733}.data-\[state\=active\]\:bg-amber-500\/20[data-state=active]{background-color:#f99c0033}@supports (color:color-mix(in lab,red,red)){.data-\[state\=active\]\:bg-amber-500\/20[data-state=active]{background-color:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.data-\[state\=active\]\:bg-purple-500\/20[data-state=active]{background-color:#ac4bff33}@supports (color:color-mix(in lab,red,red)){.data-\[state\=active\]\:bg-purple-500\/20[data-state=active]{background-color:color-mix(in oklab,var(--color-purple-500)20%,transparent)}}.data-\[state\=active\]\:font-medium[data-state=active]{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.data-\[state\=active\]\:text-\[\#07C160\][data-state=active]{color:#07c160}.data-\[state\=active\]\:text-\[\#26A17B\][data-state=active]{color:#26a17b}.data-\[state\=active\]\:text-\[\#38bdac\][data-state=active]{color:#38bdac}.data-\[state\=active\]\:text-\[\#169BD7\][data-state=active]{color:#169bd7}.data-\[state\=active\]\:text-\[\#1677FF\][data-state=active]{color:#1677ff}.data-\[state\=active\]\:text-amber-400[data-state=active]{color:var(--color-amber-400)}.data-\[state\=active\]\:text-purple-400[data-state=active]{color:var(--color-purple-400)}.data-\[state\=active\]\:shadow[data-state=active]{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.data-\[state\=checked\]\:translate-x-4[data-state=checked]{--tw-translate-x:calc(var(--spacing)*4);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[state\=checked\]\:bg-\[\#38bdac\][data-state=checked]{background-color:#38bdac}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked]{--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[state\=unchecked\]\:bg-gray-600[data-state=unchecked]{background-color:var(--color-gray-600)}@media(min-width:40rem){.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:justify-end{justify-content:flex-end}.sm\:gap-2{gap:calc(var(--spacing)*2)}.sm\:text-left{text-align:left}}@media(min-width:48rem){.md\:col-span-2{grid-column:span 2/span 2}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}}@media(min-width:64rem){.lg\:block{display:block}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}}@media(min-width:80rem){.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]){width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\[\&_tr\]\:border-b tr{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.\[\&_tr\:last-child\]\:border-0 tr:last-child{border-style:var(--tw-border-style);border-width:0}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){padding-right:calc(var(--spacing)*0)}.\[\&\>span\]\:line-clamp-1>span{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}}:root{--background:oklch(14.5% 0 0);--foreground:oklch(98.5% 0 0);--card:oklch(20% .02 240);--card-foreground:oklch(98.5% 0 0);--popover:oklch(20% .02 240);--popover-foreground:oklch(98.5% 0 0);--primary:oklch(65% .15 180);--primary-foreground:oklch(20% 0 0);--secondary:oklch(27% 0 0);--secondary-foreground:oklch(98.5% 0 0);--muted:oklch(27% 0 0);--muted-foreground:oklch(65% 0 0);--accent:oklch(27% 0 0);--accent-foreground:oklch(98.5% 0 0);--destructive:oklch(55% .2 25);--destructive-foreground:oklch(98.5% 0 0);--border:oklch(35% 0 0);--input:oklch(35% 0 0);--ring:oklch(65% .15 180);--radius:.625rem}body{font-family:var(--font-sans);color:var(--foreground);background:#0a1628}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-pan-x{syntax:"*";inherits:false}@property --tw-pan-y{syntax:"*";inherits:false}@property --tw-pinch-zoom{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-ordinal{syntax:"*";inherits:false}@property --tw-slashed-zero{syntax:"*";inherits:false}@property --tw-numeric-figure{syntax:"*";inherits:false}@property --tw-numeric-spacing{syntax:"*";inherits:false}@property --tw-numeric-fraction{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}} diff --git a/soul-admin/dist/assets/index-DCoaVA6V.js b/soul-admin/dist/assets/index-DCoaVA6V.js new file mode 100644 index 00000000..4a4997d0 --- /dev/null +++ b/soul-admin/dist/assets/index-DCoaVA6V.js @@ -0,0 +1,914 @@ +function vE(t,e){for(var n=0;ns[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"]'))s(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"&&s(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 s(a){if(a.ep)return;a.ep=!0;const i=n(a);fetch(a.href,i)}})();function Hw(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Lm={exports:{}},Gc={},_m={exports:{}},gt={};/** + * @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 Mv;function NE(){if(Mv)return gt;Mv=1;var t=Symbol.for("react.element"),e=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),s=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 g(D){return D===null||typeof D!="object"?null:(D=m&&D[m]||D["@@iterator"],typeof D=="function"?D:null)}var y={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},N=Object.assign,j={};function v(D,W,le){this.props=D,this.context=W,this.refs=j,this.updater=le||y}v.prototype.isReactComponent={},v.prototype.setState=function(D,W){if(typeof D!="object"&&typeof D!="function"&&D!=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,D,W,"setState")},v.prototype.forceUpdate=function(D){this.updater.enqueueForceUpdate(this,D,"forceUpdate")};function k(){}k.prototype=v.prototype;function C(D,W,le){this.props=D,this.context=W,this.refs=j,this.updater=le||y}var E=C.prototype=new k;E.constructor=C,N(E,v.prototype),E.isPureReactComponent=!0;var M=Array.isArray,P=Object.prototype.hasOwnProperty,H={current:null},L={key:!0,ref:!0,__self:!0,__source:!0};function R(D,W,le){var ye,Ae={},ne=null,K=null;if(W!=null)for(ye in W.ref!==void 0&&(K=W.ref),W.key!==void 0&&(ne=""+W.key),W)P.call(W,ye)&&!L.hasOwnProperty(ye)&&(Ae[ye]=W[ye]);var J=arguments.length-2;if(J===1)Ae.children=le;else if(1>>1,W=A[D];if(0>>1;Da(Ae,U))nea(K,Ae)?(A[D]=K,A[ne]=U,D=ne):(A[D]=Ae,A[ye]=U,D=ye);else if(nea(K,U))A[D]=K,A[ne]=U,D=ne;else break e}}return Y}function a(A,Y){var U=A.sortIndex-Y.sortIndex;return U!==0?U:A.id-Y.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,g=3,y=!1,N=!1,j=!1,v=typeof setTimeout=="function"?setTimeout:null,k=typeof clearTimeout=="function"?clearTimeout:null,C=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function E(A){for(var Y=n(h);Y!==null;){if(Y.callback===null)s(h);else if(Y.startTime<=A)s(h),Y.sortIndex=Y.expirationTime,e(u,Y);else break;Y=n(h)}}function M(A){if(j=!1,E(A),!N)if(n(u)!==null)N=!0,G(P);else{var Y=n(h);Y!==null&&$(M,Y.startTime-A)}}function P(A,Y){N=!1,j&&(j=!1,k(R),R=-1),y=!0;var U=g;try{for(E(Y),m=n(u);m!==null&&(!(m.expirationTime>Y)||A&&!ie());){var D=m.callback;if(typeof D=="function"){m.callback=null,g=m.priorityLevel;var W=D(m.expirationTime<=Y);Y=t.unstable_now(),typeof W=="function"?m.callback=W:m===n(u)&&s(u),E(Y)}else s(u);m=n(u)}if(m!==null)var le=!0;else{var ye=n(h);ye!==null&&$(M,ye.startTime-Y),le=!1}return le}finally{m=null,g=U,y=!1}}var H=!1,L=null,R=-1,O=5,se=-1;function ie(){return!(t.unstable_now()-seA||125D?(A.sortIndex=U,e(h,A),n(u)===null&&A===n(h)&&(j?(k(R),R=-1):j=!0,$(M,U-D))):(A.sortIndex=W,e(u,A),N||y||(N=!0,G(P))),A},t.unstable_shouldYield=ie,t.unstable_wrapCallback=function(A){var Y=g;return function(){var U=g;g=Y;try{return A.apply(this,arguments)}finally{g=U}}}})($m)),$m}var Ov;function SE(){return Ov||(Ov=1,Fm.exports=kE()),Fm.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 Dv;function CE(){if(Dv)return _s;Dv=1;var t=$d(),e=SE();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 g(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,x){if(p!==null&&p.type===0)return!1;switch(typeof d){case"function":case"symbol":return!0;case"boolean":return x?!1:p!==null?!p.acceptsBooleans:(l=l.toLowerCase().slice(0,5),l!=="data-"&&l!=="aria-");default:return!1}}function N(l,d,p,x){if(d===null||typeof d>"u"||y(l,d,p,x))return!0;if(x)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 j(l,d,p,x,w,S,I){this.acceptsBooleans=d===2||d===3||d===4,this.attributeName=x,this.attributeNamespace=w,this.mustUseProperty=p,this.propertyName=l,this.type=d,this.sanitizeURL=S,this.removeEmptyString=I}var v={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(l){v[l]=new j(l,0,!1,l,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(l){var d=l[0];v[d]=new j(d,1,!1,l[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(l){v[l]=new j(l,2,!1,l.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(l){v[l]=new j(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){v[l]=new j(l,3,!1,l.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(l){v[l]=new j(l,3,!0,l,null,!1,!1)}),["capture","download"].forEach(function(l){v[l]=new j(l,4,!1,l,null,!1,!1)}),["cols","rows","size","span"].forEach(function(l){v[l]=new j(l,6,!1,l,null,!1,!1)}),["rowSpan","start"].forEach(function(l){v[l]=new j(l,5,!1,l.toLowerCase(),null,!1,!1)});var k=/[\-:]([a-z])/g;function C(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,C);v[d]=new j(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,C);v[d]=new j(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,C);v[d]=new j(d,1,!1,l,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(l){v[l]=new j(l,1,!1,l.toLowerCase(),null,!1,!1)}),v.xlinkHref=new j("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(l){v[l]=new j(l,1,!1,l.toLowerCase(),null,!0,!0)});function E(l,d,p,x){var w=v.hasOwnProperty(d)?v[d]:null;(w!==null?w.type!==0:x||!(2V||w[I]!==S[V]){var Q=` +`+w[I].replace(" at new "," at ");return l.displayName&&Q.includes("")&&(Q=Q.replace("",l.displayName)),Q}while(1<=I&&0<=V);break}}}finally{le=!1,Error.prepareStackTrace=p}return(l=l?l.displayName||l.name:"")?W(l):""}function Ae(l){switch(l.tag){case 5:return W(l.type);case 16:return W("Lazy");case 13:return W("Suspense");case 19:return W("SuspenseList");case 0:case 2:case 15:return l=ye(l.type,!1),l;case 11:return l=ye(l.type.render,!1),l;case 1:return l=ye(l.type,!0),l;default:return""}}function ne(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 L:return"Fragment";case H:return"Portal";case O:return"Profiler";case R:return"StrictMode";case ce:return"Suspense";case me:return"SuspenseList"}if(typeof l=="object")switch(l.$$typeof){case ie:return(l.displayName||"Context")+".Consumer";case se:return(l._context.displayName||"Context")+".Provider";case z:var d=l.render;return l=l.displayName,l||(l=d.displayName||d.name||"",l=l!==""?"ForwardRef("+l+")":"ForwardRef"),l;case _:return d=l.displayName||null,d!==null?d:ne(l.type)||"Memo";case G:d=l._payload,l=l._init;try{return ne(l(d))}catch{}}return null}function K(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 ne(d);case 8:return d===R?"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 J(l){switch(typeof l){case"boolean":case"number":case"string":case"undefined":return l;case"object":return l;default:return""}}function ge(l){var d=l.type;return(l=l.nodeName)&&l.toLowerCase()==="input"&&(d==="checkbox"||d==="radio")}function ae(l){var d=ge(l)?"checked":"value",p=Object.getOwnPropertyDescriptor(l.constructor.prototype,d),x=""+l[d];if(!l.hasOwnProperty(d)&&typeof p<"u"&&typeof p.get=="function"&&typeof p.set=="function"){var w=p.get,S=p.set;return Object.defineProperty(l,d,{configurable:!0,get:function(){return w.call(this)},set:function(I){x=""+I,S.call(this,I)}}),Object.defineProperty(l,d,{enumerable:p.enumerable}),{getValue:function(){return x},setValue:function(I){x=""+I},stopTracking:function(){l._valueTracker=null,delete l[d]}}}}function pe(l){l._valueTracker||(l._valueTracker=ae(l))}function Se(l){if(!l)return!1;var d=l._valueTracker;if(!d)return!0;var p=d.getValue(),x="";return l&&(x=ge(l)?l.checked?"true":"false":l.value),l=x,l!==p?(d.setValue(l),!0):!1}function tt(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 at(l,d){var p=d.checked;return U({},d,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:p??l._wrapperState.initialChecked})}function Dt(l,d){var p=d.defaultValue==null?"":d.defaultValue,x=d.checked!=null?d.checked:d.defaultChecked;p=J(d.value!=null?d.value:p),l._wrapperState={initialChecked:x,initialValue:p,controlled:d.type==="checkbox"||d.type==="radio"?d.checked!=null:d.value!=null}}function kt(l,d){d=d.checked,d!=null&&E(l,"checked",d,!1)}function At(l,d){kt(l,d);var p=J(d.value),x=d.type;if(p!=null)x==="number"?(p===0&&l.value===""||l.value!=p)&&(l.value=""+p):l.value!==""+p&&(l.value=""+p);else if(x==="submit"||x==="reset"){l.removeAttribute("value");return}d.hasOwnProperty("value")?In(l,d.type,p):d.hasOwnProperty("defaultValue")&&In(l,d.type,J(d.defaultValue)),d.checked==null&&d.defaultChecked!=null&&(l.defaultChecked=!!d.defaultChecked)}function Gt(l,d,p){if(d.hasOwnProperty("value")||d.hasOwnProperty("defaultValue")){var x=d.type;if(!(x!=="submit"&&x!=="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 In(l,d,p){(d!=="number"||tt(l.ownerDocument)!==l)&&(p==null?l.defaultValue=""+l._wrapperState.initialValue:l.defaultValue!==""+p&&(l.defaultValue=""+p))}var Lt=Array.isArray;function xn(l,d,p,x){if(l=l.options,d){d={};for(var w=0;w"+d.valueOf().toString()+"",d=_t.firstChild;l.firstChild;)l.removeChild(l.firstChild);for(;d.firstChild;)l.appendChild(d.firstChild)}});function zn(l,d){if(d){var p=l.firstChild;if(p&&p===l.lastChild&&p.nodeType===3){p.nodeValue=d;return}}l.textContent=d}var ls={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},q=["Webkit","ms","Moz","O"];Object.keys(ls).forEach(function(l){q.forEach(function(d){d=d+l.charAt(0).toUpperCase()+l.substring(1),ls[d]=ls[l]})});function He(l,d,p){return d==null||typeof d=="boolean"||d===""?"":p||typeof d!="number"||d===0||ls.hasOwnProperty(l)&&ls[l]?(""+d).trim():d+"px"}function mt(l,d){l=l.style;for(var p in d)if(d.hasOwnProperty(p)){var x=p.indexOf("--")===0,w=He(p,d[p],x);p==="float"&&(p="cssFloat"),x?l.setProperty(p,w):l[p]=w}}var $t=U({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 ut(l,d){if(d){if($t[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 ot(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 xt=null;function tn(l){return l=l.target||l.srcElement||window,l.correspondingUseElement&&(l=l.correspondingUseElement),l.nodeType===3?l.parentNode:l}var he=null,xe=null,zt=null;function Rn(l){if(l=Pc(l)){if(typeof he!="function")throw Error(n(280));var d=l.stateNode;d&&(d=iu(d),he(l.stateNode,l.type,d))}}function da(l){xe?zt?zt.push(l):zt=[l]:xe=l}function ua(){if(xe){var l=xe,d=zt;if(zt=xe=null,Rn(l),d)for(l=0;l>>=0,l===0?32:31-(Vr(l)/fc|0)|0}var xa=64,ya=4194304;function Hr(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 bn(l,d){var p=l.pendingLanes;if(p===0)return 0;var x=0,w=l.suspendedLanes,S=l.pingedLanes,I=p&268435455;if(I!==0){var V=I&~w;V!==0?x=Hr(V):(S&=I,S!==0&&(x=Hr(S)))}else I=p&~w,I!==0?x=Hr(I):S!==0&&(x=Hr(S));if(x===0)return 0;if(d!==0&&d!==x&&(d&w)===0&&(w=x&-x,S=d&-d,w>=S||w===16&&(S&4194240)!==0))return d;if((x&4)!==0&&(x|=p&16),d=l.entangledLanes,d!==0)for(l=l.entanglements,d&=x;0p;p++)d.push(l);return d}function _e(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 lt(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 x=l.eventTimes;for(l=l.expirationTimes;0=kc),wy=" ",jy=!1;function ky(l,d){switch(l){case"keyup":return m3.indexOf(d.keyCode)!==-1;case"keydown":return d.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Sy(l){return l=l.detail,typeof l=="object"&&"data"in l?l.data:null}var rl=!1;function x3(l,d){switch(l){case"compositionend":return Sy(d);case"keypress":return d.which!==32?null:(jy=!0,wy);case"textInput":return l=d.data,l===wy&&jy?null:l;default:return null}}function y3(l,d){if(rl)return l==="compositionend"||!gp&&ky(l,d)?(l=wc(),sl=Nc=Kr=null,rl=!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=x}e:{for(;p;){if(p.nextSibling){p=p.nextSibling;break e}p=p.parentNode}p=void 0}p=Ry(p)}}function Oy(l,d){return l&&d?l===d?!0:l&&l.nodeType===3?!1:d&&d.nodeType===3?Oy(l,d.parentNode):"contains"in l?l.contains(d):l.compareDocumentPosition?!!(l.compareDocumentPosition(d)&16):!1:!1}function Dy(){for(var l=window,d=tt();d instanceof l.HTMLIFrameElement;){try{var p=typeof d.contentWindow.location.href=="string"}catch{p=!1}if(p)l=d.contentWindow;else break;d=tt(l.document)}return d}function bp(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 E3(l){var d=Dy(),p=l.focusedElem,x=l.selectionRange;if(d!==p&&p&&p.ownerDocument&&Oy(p.ownerDocument.documentElement,p)){if(x!==null&&bp(p)){if(d=x.start,l=x.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 w=p.textContent.length,S=Math.min(x.start,w);x=x.end===void 0?S:Math.min(x.end,w),!l.extend&&S>x&&(w=x,x=S,S=w),w=Py(p,S);var I=Py(p,x);w&&I&&(l.rangeCount!==1||l.anchorNode!==w.node||l.anchorOffset!==w.offset||l.focusNode!==I.node||l.focusOffset!==I.offset)&&(d=d.createRange(),d.setStart(w.node,w.offset),l.removeAllRanges(),S>x?(l.addRange(d),l.extend(I.node,I.offset)):(d.setEnd(I.node,I.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,al=null,vp=null,Tc=null,Np=!1;function Ly(l,d,p){var x=p.window===p?p.document:p.nodeType===9?p:p.ownerDocument;Np||al==null||al!==tt(x)||(x=al,"selectionStart"in x&&bp(x)?x={start:x.selectionStart,end:x.selectionEnd}:(x=(x.ownerDocument&&x.ownerDocument.defaultView||window).getSelection(),x={anchorNode:x.anchorNode,anchorOffset:x.anchorOffset,focusNode:x.focusNode,focusOffset:x.focusOffset}),Tc&&Ec(Tc,x)||(Tc=x,x=su(vp,"onSelect"),0dl||(l.current=Pp[dl],Pp[dl]=null,dl--)}function Ht(l,d){dl++,Pp[dl]=l.current,l.current=d}var ii={},us=ai(ii),Rs=ai(!1),lo=ii;function ul(l,d){var p=l.type.contextTypes;if(!p)return ii;var x=l.stateNode;if(x&&x.__reactInternalMemoizedUnmaskedChildContext===d)return x.__reactInternalMemoizedMaskedChildContext;var w={},S;for(S in p)w[S]=d[S];return x&&(l=l.stateNode,l.__reactInternalMemoizedUnmaskedChildContext=d,l.__reactInternalMemoizedMaskedChildContext=w),w}function Ps(l){return l=l.childContextTypes,l!=null}function ou(){Qt(Rs),Qt(us)}function Qy(l,d,p){if(us.current!==ii)throw Error(n(168));Ht(us,d),Ht(Rs,p)}function Xy(l,d,p){var x=l.stateNode;if(d=d.childContextTypes,typeof x.getChildContext!="function")return p;x=x.getChildContext();for(var w in x)if(!(w in d))throw Error(n(108,K(l)||"Unknown",w));return U({},p,x)}function lu(l){return l=(l=l.stateNode)&&l.__reactInternalMemoizedMergedChildContext||ii,lo=us.current,Ht(us,l),Ht(Rs,Rs.current),!0}function Zy(l,d,p){var x=l.stateNode;if(!x)throw Error(n(169));p?(l=Xy(l,d,lo),x.__reactInternalMemoizedMergedChildContext=l,Qt(Rs),Qt(us),Ht(us,l)):Qt(Rs),Ht(Rs,p)}var ja=null,cu=!1,Op=!1;function eb(l){ja===null?ja=[l]:ja.push(l)}function F3(l){cu=!0,eb(l)}function oi(){if(!Op&&ja!==null){Op=!0;var l=0,d=ct;try{var p=ja;for(ct=1;l>=I,w-=I,ka=1<<32-ws(d)+w|p<rt?(Bn=et,et=null):Bn=et.sibling;var wt=je(oe,et,ue[rt],Re);if(wt===null){et===null&&(et=Bn);break}l&&et&&wt.alternate===null&&d(oe,et),ee=S(wt,ee,rt),Ze===null?Ue=wt:Ze.sibling=wt,Ze=wt,et=Bn}if(rt===ue.length)return p(oe,et),nn&&uo(oe,rt),Ue;if(et===null){for(;rtrt?(Bn=et,et=null):Bn=et.sibling;var gi=je(oe,et,wt.value,Re);if(gi===null){et===null&&(et=Bn);break}l&&et&&gi.alternate===null&&d(oe,et),ee=S(gi,ee,rt),Ze===null?Ue=gi:Ze.sibling=gi,Ze=gi,et=Bn}if(wt.done)return p(oe,et),nn&&uo(oe,rt),Ue;if(et===null){for(;!wt.done;rt++,wt=ue.next())wt=Ce(oe,wt.value,Re),wt!==null&&(ee=S(wt,ee,rt),Ze===null?Ue=wt:Ze.sibling=wt,Ze=wt);return nn&&uo(oe,rt),Ue}for(et=x(oe,et);!wt.done;rt++,wt=ue.next())wt=Le(et,oe,rt,wt.value,Re),wt!==null&&(l&&wt.alternate!==null&&et.delete(wt.key===null?rt:wt.key),ee=S(wt,ee,rt),Ze===null?Ue=wt:Ze.sibling=wt,Ze=wt);return l&&et.forEach(function(bE){return d(oe,bE)}),nn&&uo(oe,rt),Ue}function Nn(oe,ee,ue,Re){if(typeof ue=="object"&&ue!==null&&ue.type===L&&ue.key===null&&(ue=ue.props.children),typeof ue=="object"&&ue!==null){switch(ue.$$typeof){case P:e:{for(var Ue=ue.key,Ze=ee;Ze!==null;){if(Ze.key===Ue){if(Ue=ue.type,Ue===L){if(Ze.tag===7){p(oe,Ze.sibling),ee=w(Ze,ue.props.children),ee.return=oe,oe=ee;break e}}else if(Ze.elementType===Ue||typeof Ue=="object"&&Ue!==null&&Ue.$$typeof===G&&ib(Ue)===Ze.type){p(oe,Ze.sibling),ee=w(Ze,ue.props),ee.ref=Oc(oe,Ze,ue),ee.return=oe,oe=ee;break e}p(oe,Ze);break}else d(oe,Ze);Ze=Ze.sibling}ue.type===L?(ee=bo(ue.props.children,oe.mode,Re,ue.key),ee.return=oe,oe=ee):(Re=_u(ue.type,ue.key,ue.props,null,oe.mode,Re),Re.ref=Oc(oe,ee,ue),Re.return=oe,oe=Re)}return I(oe);case H:e:{for(Ze=ue.key;ee!==null;){if(ee.key===Ze)if(ee.tag===4&&ee.stateNode.containerInfo===ue.containerInfo&&ee.stateNode.implementation===ue.implementation){p(oe,ee.sibling),ee=w(ee,ue.children||[]),ee.return=oe,oe=ee;break e}else{p(oe,ee);break}else d(oe,ee);ee=ee.sibling}ee=Im(ue,oe.mode,Re),ee.return=oe,oe=ee}return I(oe);case G:return Ze=ue._init,Nn(oe,ee,Ze(ue._payload),Re)}if(Lt(ue))return $e(oe,ee,ue,Re);if(Y(ue))return We(oe,ee,ue,Re);fu(oe,ue)}return typeof ue=="string"&&ue!==""||typeof ue=="number"?(ue=""+ue,ee!==null&&ee.tag===6?(p(oe,ee.sibling),ee=w(ee,ue),ee.return=oe,oe=ee):(p(oe,ee),ee=Am(ue,oe.mode,Re),ee.return=oe,oe=ee),I(oe)):p(oe,ee)}return Nn}var ml=ob(!0),lb=ob(!1),pu=ai(null),mu=null,gl=null,$p=null;function Bp(){$p=gl=mu=null}function Vp(l){var d=pu.current;Qt(pu),l._currentValue=d}function Hp(l,d,p){for(;l!==null;){var x=l.alternate;if((l.childLanes&d)!==d?(l.childLanes|=d,x!==null&&(x.childLanes|=d)):x!==null&&(x.childLanes&d)!==d&&(x.childLanes|=d),l===p)break;l=l.return}}function xl(l,d){mu=l,$p=gl=null,l=l.dependencies,l!==null&&l.firstContext!==null&&((l.lanes&d)!==0&&(Os=!0),l.firstContext=null)}function ar(l){var d=l._currentValue;if($p!==l)if(l={context:l,memoizedValue:d,next:null},gl===null){if(mu===null)throw Error(n(308));gl=l,mu.dependencies={lanes:0,firstContext:l}}else gl=gl.next=l;return d}var ho=null;function Wp(l){ho===null?ho=[l]:ho.push(l)}function cb(l,d,p,x){var w=d.interleaved;return w===null?(p.next=p,Wp(d)):(p.next=w.next,w.next=p),d.interleaved=p,Ca(l,x)}function Ca(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 li=!1;function Up(l){l.updateQueue={baseState:l.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function db(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 Ea(l,d){return{eventTime:l,lane:d,tag:0,payload:null,callback:null,next:null}}function ci(l,d,p){var x=l.updateQueue;if(x===null)return null;if(x=x.shared,(vt&2)!==0){var w=x.pending;return w===null?d.next=d:(d.next=w.next,w.next=d),x.pending=d,Ca(l,p)}return w=x.interleaved,w===null?(d.next=d,Wp(x)):(d.next=w.next,w.next=d),x.interleaved=d,Ca(l,p)}function gu(l,d,p){if(d=d.updateQueue,d!==null&&(d=d.shared,(p&4194240)!==0)){var x=d.lanes;x&=l.pendingLanes,p|=x,d.lanes=p,cn(l,p)}}function ub(l,d){var p=l.updateQueue,x=l.alternate;if(x!==null&&(x=x.updateQueue,p===x)){var w=null,S=null;if(p=p.firstBaseUpdate,p!==null){do{var I={eventTime:p.eventTime,lane:p.lane,tag:p.tag,payload:p.payload,callback:p.callback,next:null};S===null?w=S=I:S=S.next=I,p=p.next}while(p!==null);S===null?w=S=d:S=S.next=d}else w=S=d;p={baseState:x.baseState,firstBaseUpdate:w,lastBaseUpdate:S,shared:x.shared,effects:x.effects},l.updateQueue=p;return}l=p.lastBaseUpdate,l===null?p.firstBaseUpdate=d:l.next=d,p.lastBaseUpdate=d}function xu(l,d,p,x){var w=l.updateQueue;li=!1;var S=w.firstBaseUpdate,I=w.lastBaseUpdate,V=w.shared.pending;if(V!==null){w.shared.pending=null;var Q=V,fe=Q.next;Q.next=null,I===null?S=fe:I.next=fe,I=Q;var ke=l.alternate;ke!==null&&(ke=ke.updateQueue,V=ke.lastBaseUpdate,V!==I&&(V===null?ke.firstBaseUpdate=fe:V.next=fe,ke.lastBaseUpdate=Q))}if(S!==null){var Ce=w.baseState;I=0,ke=fe=Q=null,V=S;do{var je=V.lane,Le=V.eventTime;if((x&je)===je){ke!==null&&(ke=ke.next={eventTime:Le,lane:0,tag:V.tag,payload:V.payload,callback:V.callback,next:null});e:{var $e=l,We=V;switch(je=d,Le=p,We.tag){case 1:if($e=We.payload,typeof $e=="function"){Ce=$e.call(Le,Ce,je);break e}Ce=$e;break e;case 3:$e.flags=$e.flags&-65537|128;case 0:if($e=We.payload,je=typeof $e=="function"?$e.call(Le,Ce,je):$e,je==null)break e;Ce=U({},Ce,je);break e;case 2:li=!0}}V.callback!==null&&V.lane!==0&&(l.flags|=64,je=w.effects,je===null?w.effects=[V]:je.push(V))}else Le={eventTime:Le,lane:je,tag:V.tag,payload:V.payload,callback:V.callback,next:null},ke===null?(fe=ke=Le,Q=Ce):ke=ke.next=Le,I|=je;if(V=V.next,V===null){if(V=w.shared.pending,V===null)break;je=V,V=je.next,je.next=null,w.lastBaseUpdate=je,w.shared.pending=null}}while(!0);if(ke===null&&(Q=Ce),w.baseState=Q,w.firstBaseUpdate=fe,w.lastBaseUpdate=ke,d=w.shared.interleaved,d!==null){w=d;do I|=w.lane,w=w.next;while(w!==d)}else S===null&&(w.shared.lanes=0);mo|=I,l.lanes=I,l.memoizedState=Ce}}function hb(l,d,p){if(l=d.effects,d.effects=null,l!==null)for(d=0;dp?p:4,l(!0);var x=Yp.transition;Yp.transition={};try{l(!1),d()}finally{ct=p,Yp.transition=x}}function Ib(){return ir().memoizedState}function H3(l,d,p){var x=fi(l);if(p={lane:x,action:p,hasEagerState:!1,eagerState:null,next:null},Rb(l))Pb(d,p);else if(p=cb(l,d,p,x),p!==null){var w=Ss();Tr(p,l,x,w),Ob(p,d,x)}}function W3(l,d,p){var x=fi(l),w={lane:x,action:p,hasEagerState:!1,eagerState:null,next:null};if(Rb(l))Pb(d,w);else{var S=l.alternate;if(l.lanes===0&&(S===null||S.lanes===0)&&(S=d.lastRenderedReducer,S!==null))try{var I=d.lastRenderedState,V=S(I,p);if(w.hasEagerState=!0,w.eagerState=V,jr(V,I)){var Q=d.interleaved;Q===null?(w.next=w,Wp(d)):(w.next=Q.next,Q.next=w),d.interleaved=w;return}}catch{}finally{}p=cb(l,d,w,x),p!==null&&(w=Ss(),Tr(p,l,x,w),Ob(p,d,x))}}function Rb(l){var d=l.alternate;return l===on||d!==null&&d===on}function Pb(l,d){zc=vu=!0;var p=l.pending;p===null?d.next=d:(d.next=p.next,p.next=d),l.pending=d}function Ob(l,d,p){if((p&4194240)!==0){var x=d.lanes;x&=l.pendingLanes,p|=x,d.lanes=p,cn(l,p)}}var ju={readContext:ar,useCallback:hs,useContext:hs,useEffect:hs,useImperativeHandle:hs,useInsertionEffect:hs,useLayoutEffect:hs,useMemo:hs,useReducer:hs,useRef:hs,useState:hs,useDebugValue:hs,useDeferredValue:hs,useTransition:hs,useMutableSource:hs,useSyncExternalStore:hs,useId:hs,unstable_isNewReconciler:!1},U3={readContext:ar,useCallback:function(l,d){return Yr().memoizedState=[l,d===void 0?null:d],l},useContext:ar,useEffect:jb,useImperativeHandle:function(l,d,p){return p=p!=null?p.concat([l]):null,Nu(4194308,4,Cb.bind(null,d,l),p)},useLayoutEffect:function(l,d){return Nu(4194308,4,l,d)},useInsertionEffect:function(l,d){return Nu(4,2,l,d)},useMemo:function(l,d){var p=Yr();return d=d===void 0?null:d,l=l(),p.memoizedState=[l,d],l},useReducer:function(l,d,p){var x=Yr();return d=p!==void 0?p(d):d,x.memoizedState=x.baseState=d,l={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:l,lastRenderedState:d},x.queue=l,l=l.dispatch=H3.bind(null,on,l),[x.memoizedState,l]},useRef:function(l){var d=Yr();return l={current:l},d.memoizedState=l},useState:Nb,useDebugValue:sm,useDeferredValue:function(l){return Yr().memoizedState=l},useTransition:function(){var l=Nb(!1),d=l[0];return l=V3.bind(null,l[1]),Yr().memoizedState=l,[d,l]},useMutableSource:function(){},useSyncExternalStore:function(l,d,p){var x=on,w=Yr();if(nn){if(p===void 0)throw Error(n(407));p=p()}else{if(p=d(),$n===null)throw Error(n(349));(po&30)!==0||gb(x,d,p)}w.memoizedState=p;var S={value:p,getSnapshot:d};return w.queue=S,jb(yb.bind(null,x,S,l),[l]),x.flags|=2048,Bc(9,xb.bind(null,x,S,p,d),void 0,null),p},useId:function(){var l=Yr(),d=$n.identifierPrefix;if(nn){var p=Sa,x=ka;p=(x&~(1<<32-ws(x)-1)).toString(32)+p,d=":"+d+"R"+p,p=Fc++,0<\/script>",l=l.removeChild(l.firstChild)):typeof x.is=="string"?l=I.createElement(p,{is:x.is}):(l=I.createElement(p),p==="select"&&(I=l,x.multiple?I.multiple=!0:x.size&&(I.size=x.size))):l=I.createElementNS(l,p),l[Gr]=d,l[Rc]=x,ev(l,d,!1,!1),d.stateNode=l;e:{switch(I=ot(p,x),p){case"dialog":Yt("cancel",l),Yt("close",l),w=x;break;case"iframe":case"object":case"embed":Yt("load",l),w=x;break;case"video":case"audio":for(w=0;wwl&&(d.flags|=128,x=!0,Vc(S,!1),d.lanes=4194304)}else{if(!x)if(l=yu(I),l!==null){if(d.flags|=128,x=!0,p=l.updateQueue,p!==null&&(d.updateQueue=p,d.flags|=4),Vc(S,!0),S.tail===null&&S.tailMode==="hidden"&&!I.alternate&&!nn)return fs(d),null}else 2*Jt()-S.renderingStartTime>wl&&p!==1073741824&&(d.flags|=128,x=!0,Vc(S,!1),d.lanes=4194304);S.isBackwards?(I.sibling=d.child,d.child=I):(p=S.last,p!==null?p.sibling=I:d.child=I,S.last=I)}return S.tail!==null?(d=S.tail,S.rendering=d,S.tail=d.sibling,S.renderingStartTime=Jt(),d.sibling=null,p=an.current,Ht(an,x?p&1|2:p&1),d):(fs(d),null);case 22:case 23:return Em(),x=d.memoizedState!==null,l!==null&&l.memoizedState!==null!==x&&(d.flags|=8192),x&&(d.mode&1)!==0?(Us&1073741824)!==0&&(fs(d),d.subtreeFlags&6&&(d.flags|=8192)):fs(d),null;case 24:return null;case 25:return null}throw Error(n(156,d.tag))}function Z3(l,d){switch(Lp(d),d.tag){case 1:return Ps(d.type)&&ou(),l=d.flags,l&65536?(d.flags=l&-65537|128,d):null;case 3:return yl(),Qt(Rs),Qt(us),Jp(),l=d.flags,(l&65536)!==0&&(l&128)===0?(d.flags=l&-65537|128,d):null;case 5:return qp(d),null;case 13:if(Qt(an),l=d.memoizedState,l!==null&&l.dehydrated!==null){if(d.alternate===null)throw Error(n(340));pl()}return l=d.flags,l&65536?(d.flags=l&-65537|128,d):null;case 19:return Qt(an),null;case 4:return yl(),null;case 10:return Vp(d.type._context),null;case 22:case 23:return Em(),null;case 24:return null;default:return null}}var Eu=!1,ps=!1,eE=typeof WeakSet=="function"?WeakSet:Set,ze=null;function vl(l,d){var p=l.ref;if(p!==null)if(typeof p=="function")try{p(null)}catch(x){un(l,d,x)}else p.current=null}function mm(l,d,p){try{p()}catch(x){un(l,d,x)}}var sv=!1;function tE(l,d){if(Ep=tl,l=Dy(),bp(l)){if("selectionStart"in l)var p={start:l.selectionStart,end:l.selectionEnd};else e:{p=(p=l.ownerDocument)&&p.defaultView||window;var x=p.getSelection&&p.getSelection();if(x&&x.rangeCount!==0){p=x.anchorNode;var w=x.anchorOffset,S=x.focusNode;x=x.focusOffset;try{p.nodeType,S.nodeType}catch{p=null;break e}var I=0,V=-1,Q=-1,fe=0,ke=0,Ce=l,je=null;t:for(;;){for(var Le;Ce!==p||w!==0&&Ce.nodeType!==3||(V=I+w),Ce!==S||x!==0&&Ce.nodeType!==3||(Q=I+x),Ce.nodeType===3&&(I+=Ce.nodeValue.length),(Le=Ce.firstChild)!==null;)je=Ce,Ce=Le;for(;;){if(Ce===l)break t;if(je===p&&++fe===w&&(V=I),je===S&&++ke===x&&(Q=I),(Le=Ce.nextSibling)!==null)break;Ce=je,je=Ce.parentNode}Ce=Le}p=V===-1||Q===-1?null:{start:V,end:Q}}else p=null}p=p||{start:0,end:0}}else p=null;for(Tp={focusedElem:l,selectionRange:p},tl=!1,ze=d;ze!==null;)if(d=ze,l=d.child,(d.subtreeFlags&1028)!==0&&l!==null)l.return=d,ze=l;else for(;ze!==null;){d=ze;try{var $e=d.alternate;if((d.flags&1024)!==0)switch(d.tag){case 0:case 11:case 15:break;case 1:if($e!==null){var We=$e.memoizedProps,Nn=$e.memoizedState,oe=d.stateNode,ee=oe.getSnapshotBeforeUpdate(d.elementType===d.type?We:Sr(d.type,We),Nn);oe.__reactInternalSnapshotBeforeUpdate=ee}break;case 3:var ue=d.stateNode.containerInfo;ue.nodeType===1?ue.textContent="":ue.nodeType===9&&ue.documentElement&&ue.removeChild(ue.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(n(163))}}catch(Re){un(d,d.return,Re)}if(l=d.sibling,l!==null){l.return=d.return,ze=l;break}ze=d.return}return $e=sv,sv=!1,$e}function Hc(l,d,p){var x=d.updateQueue;if(x=x!==null?x.lastEffect:null,x!==null){var w=x=x.next;do{if((w.tag&l)===l){var S=w.destroy;w.destroy=void 0,S!==void 0&&mm(d,p,S)}w=w.next}while(w!==x)}}function Tu(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 x=p.create;p.destroy=x()}p=p.next}while(p!==d)}}function gm(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 rv(l){var d=l.alternate;d!==null&&(l.alternate=null,rv(d)),l.child=null,l.deletions=null,l.sibling=null,l.tag===5&&(d=l.stateNode,d!==null&&(delete d[Gr],delete d[Rc],delete d[Rp],delete d[_3],delete d[z3])),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 av(l){return l.tag===5||l.tag===3||l.tag===4}function iv(l){e:for(;;){for(;l.sibling===null;){if(l.return===null||av(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 xm(l,d,p){var x=l.tag;if(x===5||x===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=au));else if(x!==4&&(l=l.child,l!==null))for(xm(l,d,p),l=l.sibling;l!==null;)xm(l,d,p),l=l.sibling}function ym(l,d,p){var x=l.tag;if(x===5||x===6)l=l.stateNode,d?p.insertBefore(l,d):p.appendChild(l);else if(x!==4&&(l=l.child,l!==null))for(ym(l,d,p),l=l.sibling;l!==null;)ym(l,d,p),l=l.sibling}var Yn=null,Cr=!1;function di(l,d,p){for(p=p.child;p!==null;)ov(l,d,p),p=p.sibling}function ov(l,d,p){if(Ns&&typeof Ns.onCommitFiberUnmount=="function")try{Ns.onCommitFiberUnmount(Br,p)}catch{}switch(p.tag){case 5:ps||vl(p,d);case 6:var x=Yn,w=Cr;Yn=null,di(l,d,p),Yn=x,Cr=w,Yn!==null&&(Cr?(l=Yn,p=p.stateNode,l.nodeType===8?l.parentNode.removeChild(p):l.removeChild(p)):Yn.removeChild(p.stateNode));break;case 18:Yn!==null&&(Cr?(l=Yn,p=p.stateNode,l.nodeType===8?Ip(l.parentNode,p):l.nodeType===1&&Ip(l,p),ao(l)):Ip(Yn,p.stateNode));break;case 4:x=Yn,w=Cr,Yn=p.stateNode.containerInfo,Cr=!0,di(l,d,p),Yn=x,Cr=w;break;case 0:case 11:case 14:case 15:if(!ps&&(x=p.updateQueue,x!==null&&(x=x.lastEffect,x!==null))){w=x=x.next;do{var S=w,I=S.destroy;S=S.tag,I!==void 0&&((S&2)!==0||(S&4)!==0)&&mm(p,d,I),w=w.next}while(w!==x)}di(l,d,p);break;case 1:if(!ps&&(vl(p,d),x=p.stateNode,typeof x.componentWillUnmount=="function"))try{x.props=p.memoizedProps,x.state=p.memoizedState,x.componentWillUnmount()}catch(V){un(p,d,V)}di(l,d,p);break;case 21:di(l,d,p);break;case 22:p.mode&1?(ps=(x=ps)||p.memoizedState!==null,di(l,d,p),ps=x):di(l,d,p);break;default:di(l,d,p)}}function lv(l){var d=l.updateQueue;if(d!==null){l.updateQueue=null;var p=l.stateNode;p===null&&(p=l.stateNode=new eE),d.forEach(function(x){var w=dE.bind(null,l,x);p.has(x)||(p.add(x),x.then(w,w))})}}function Er(l,d){var p=d.deletions;if(p!==null)for(var x=0;xw&&(w=I),x&=~S}if(x=w,x=Jt()-x,x=(120>x?120:480>x?480:1080>x?1080:1920>x?1920:3e3>x?3e3:4320>x?4320:1960*sE(x/1960))-x,10l?16:l,hi===null)var x=!1;else{if(l=hi,hi=null,Pu=0,(vt&6)!==0)throw Error(n(331));var w=vt;for(vt|=4,ze=l.current;ze!==null;){var S=ze,I=S.child;if((ze.flags&16)!==0){var V=S.deletions;if(V!==null){for(var Q=0;QJt()-Nm?xo(l,0):vm|=p),Ls(l,d)}function Nv(l,d){d===0&&((l.mode&1)===0?d=1:(d=ya,ya<<=1,(ya&130023424)===0&&(ya=4194304)));var p=Ss();l=Ca(l,d),l!==null&&(_e(l,d,p),Ls(l,p))}function cE(l){var d=l.memoizedState,p=0;d!==null&&(p=d.retryLane),Nv(l,p)}function dE(l,d){var p=0;switch(l.tag){case 13:var x=l.stateNode,w=l.memoizedState;w!==null&&(p=w.retryLane);break;case 19:x=l.stateNode;break;default:throw Error(n(314))}x!==null&&x.delete(d),Nv(l,p)}var wv;wv=function(l,d,p){if(l!==null)if(l.memoizedProps!==d.pendingProps||Rs.current)Os=!0;else{if((l.lanes&p)===0&&(d.flags&128)===0)return Os=!1,Q3(l,d,p);Os=(l.flags&131072)!==0}else Os=!1,nn&&(d.flags&1048576)!==0&&tb(d,uu,d.index);switch(d.lanes=0,d.tag){case 2:var x=d.type;Cu(l,d),l=d.pendingProps;var w=ul(d,us.current);xl(d,p),w=Xp(null,d,x,l,w,p);var S=Zp();return d.flags|=1,typeof w=="object"&&w!==null&&typeof w.render=="function"&&w.$$typeof===void 0?(d.tag=1,d.memoizedState=null,d.updateQueue=null,Ps(x)?(S=!0,lu(d)):S=!1,d.memoizedState=w.state!==null&&w.state!==void 0?w.state:null,Up(d),w.updater=ku,d.stateNode=w,w._reactInternals=d,am(d,x,l,p),d=cm(null,d,x,!0,S,p)):(d.tag=0,nn&&S&&Dp(d),ks(null,d,w,p),d=d.child),d;case 16:x=d.elementType;e:{switch(Cu(l,d),l=d.pendingProps,w=x._init,x=w(x._payload),d.type=x,w=d.tag=hE(x),l=Sr(x,l),w){case 0:d=lm(null,d,x,l,p);break e;case 1:d=Gb(null,d,x,l,p);break e;case 11:d=Hb(null,d,x,l,p);break e;case 14:d=Wb(null,d,x,Sr(x.type,l),p);break e}throw Error(n(306,x,""))}return d;case 0:return x=d.type,w=d.pendingProps,w=d.elementType===x?w:Sr(x,w),lm(l,d,x,w,p);case 1:return x=d.type,w=d.pendingProps,w=d.elementType===x?w:Sr(x,w),Gb(l,d,x,w,p);case 3:e:{if(Jb(d),l===null)throw Error(n(387));x=d.pendingProps,S=d.memoizedState,w=S.element,db(l,d),xu(d,x,null,p);var I=d.memoizedState;if(x=I.element,S.isDehydrated)if(S={element:x,isDehydrated:!1,cache:I.cache,pendingSuspenseBoundaries:I.pendingSuspenseBoundaries,transitions:I.transitions},d.updateQueue.baseState=S,d.memoizedState=S,d.flags&256){w=bl(Error(n(423)),d),d=Yb(l,d,x,p,w);break e}else if(x!==w){w=bl(Error(n(424)),d),d=Yb(l,d,x,p,w);break e}else for(Ws=ri(d.stateNode.containerInfo.firstChild),Hs=d,nn=!0,kr=null,p=lb(d,null,x,p),d.child=p;p;)p.flags=p.flags&-3|4096,p=p.sibling;else{if(pl(),x===w){d=Ta(l,d,p);break e}ks(l,d,x,p)}d=d.child}return d;case 5:return fb(d),l===null&&zp(d),x=d.type,w=d.pendingProps,S=l!==null?l.memoizedProps:null,I=w.children,Mp(x,w)?I=null:S!==null&&Mp(x,S)&&(d.flags|=32),qb(l,d),ks(l,d,I,p),d.child;case 6:return l===null&&zp(d),null;case 13:return Qb(l,d,p);case 4:return Kp(d,d.stateNode.containerInfo),x=d.pendingProps,l===null?d.child=ml(d,null,x,p):ks(l,d,x,p),d.child;case 11:return x=d.type,w=d.pendingProps,w=d.elementType===x?w:Sr(x,w),Hb(l,d,x,w,p);case 7:return ks(l,d,d.pendingProps,p),d.child;case 8:return ks(l,d,d.pendingProps.children,p),d.child;case 12:return ks(l,d,d.pendingProps.children,p),d.child;case 10:e:{if(x=d.type._context,w=d.pendingProps,S=d.memoizedProps,I=w.value,Ht(pu,x._currentValue),x._currentValue=I,S!==null)if(jr(S.value,I)){if(S.children===w.children&&!Rs.current){d=Ta(l,d,p);break e}}else for(S=d.child,S!==null&&(S.return=d);S!==null;){var V=S.dependencies;if(V!==null){I=S.child;for(var Q=V.firstContext;Q!==null;){if(Q.context===x){if(S.tag===1){Q=Ea(-1,p&-p),Q.tag=2;var fe=S.updateQueue;if(fe!==null){fe=fe.shared;var ke=fe.pending;ke===null?Q.next=Q:(Q.next=ke.next,ke.next=Q),fe.pending=Q}}S.lanes|=p,Q=S.alternate,Q!==null&&(Q.lanes|=p),Hp(S.return,p,d),V.lanes|=p;break}Q=Q.next}}else if(S.tag===10)I=S.type===d.type?null:S.child;else if(S.tag===18){if(I=S.return,I===null)throw Error(n(341));I.lanes|=p,V=I.alternate,V!==null&&(V.lanes|=p),Hp(I,p,d),I=S.sibling}else I=S.child;if(I!==null)I.return=S;else for(I=S;I!==null;){if(I===d){I=null;break}if(S=I.sibling,S!==null){S.return=I.return,I=S;break}I=I.return}S=I}ks(l,d,w.children,p),d=d.child}return d;case 9:return w=d.type,x=d.pendingProps.children,xl(d,p),w=ar(w),x=x(w),d.flags|=1,ks(l,d,x,p),d.child;case 14:return x=d.type,w=Sr(x,d.pendingProps),w=Sr(x.type,w),Wb(l,d,x,w,p);case 15:return Ub(l,d,d.type,d.pendingProps,p);case 17:return x=d.type,w=d.pendingProps,w=d.elementType===x?w:Sr(x,w),Cu(l,d),d.tag=1,Ps(x)?(l=!0,lu(d)):l=!1,xl(d,p),Lb(d,x,w),am(d,x,w,p),cm(null,d,x,!0,l,p);case 19:return Zb(l,d,p);case 22:return Kb(l,d,p)}throw Error(n(156,d.tag))};function jv(l,d){return Fr(l,d)}function uE(l,d,p,x){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=x,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function lr(l,d,p,x){return new uE(l,d,p,x)}function Mm(l){return l=l.prototype,!(!l||!l.isReactComponent)}function hE(l){if(typeof l=="function")return Mm(l)?1:0;if(l!=null){if(l=l.$$typeof,l===z)return 11;if(l===_)return 14}return 2}function mi(l,d){var p=l.alternate;return p===null?(p=lr(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 _u(l,d,p,x,w,S){var I=2;if(x=l,typeof l=="function")Mm(l)&&(I=1);else if(typeof l=="string")I=5;else e:switch(l){case L:return bo(p.children,w,S,d);case R:I=8,w|=8;break;case O:return l=lr(12,p,d,w|2),l.elementType=O,l.lanes=S,l;case ce:return l=lr(13,p,d,w),l.elementType=ce,l.lanes=S,l;case me:return l=lr(19,p,d,w),l.elementType=me,l.lanes=S,l;case $:return zu(p,w,S,d);default:if(typeof l=="object"&&l!==null)switch(l.$$typeof){case se:I=10;break e;case ie:I=9;break e;case z:I=11;break e;case _:I=14;break e;case G:I=16,x=null;break e}throw Error(n(130,l==null?l:typeof l,""))}return d=lr(I,p,d,w),d.elementType=l,d.type=x,d.lanes=S,d}function bo(l,d,p,x){return l=lr(7,l,x,d),l.lanes=p,l}function zu(l,d,p,x){return l=lr(22,l,x,d),l.elementType=$,l.lanes=p,l.stateNode={isHidden:!1},l}function Am(l,d,p){return l=lr(6,l,null,d),l.lanes=p,l}function Im(l,d,p){return d=lr(4,l.children!==null?l.children:[],l.key,d),d.lanes=p,d.stateNode={containerInfo:l.containerInfo,pendingChildren:null,implementation:l.implementation},d}function fE(l,d,p,x,w){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=Pe(0),this.expirationTimes=Pe(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Pe(0),this.identifierPrefix=x,this.onRecoverableError=w,this.mutableSourceEagerHydrationData=null}function Rm(l,d,p,x,w,S,I,V,Q){return l=new fE(l,d,p,V,Q),d===1?(d=1,S===!0&&(d|=8)):d=0,S=lr(3,null,null,d),l.current=S,S.stateNode=l,S.memoizedState={element:x,isDehydrated:p,cache:null,transitions:null,pendingSuspenseBoundaries:null},Up(S),l}function pE(l,d,p){var x=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(e){console.error(e)}}return t(),zm.exports=CE(),zm.exports}var _v;function EE(){if(_v)return Uu;_v=1;var t=Ww();return Uu.createRoot=t.createRoot,Uu.hydrateRoot=t.hydrateRoot,Uu}var TE=EE(),Bd=Ww();const Uw=Hw(Bd);/** + * @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 wd(){return wd=Object.assign?Object.assign.bind():function(t){for(var e=1;e"u")throw new Error(e)}function Xx(t,e){if(!t){typeof console<"u"&&console.warn(e);try{throw new Error(e)}catch{}}}function AE(){return Math.random().toString(36).substr(2,8)}function Fv(t,e){return{usr:t.state,key:t.key,idx:e}}function Fg(t,e,n,s){return n===void 0&&(n=null),wd({pathname:typeof t=="string"?t:t.pathname,search:"",hash:""},typeof e=="string"?Zl(e):e,{state:n,key:e&&e.key||s||AE()})}function Mh(t){let{pathname:e="/",search:n="",hash:s=""}=t;return n&&n!=="?"&&(e+=n.charAt(0)==="?"?n:"?"+n),s&&s!=="#"&&(e+=s.charAt(0)==="#"?s:"#"+s),e}function Zl(t){let e={};if(t){let n=t.indexOf("#");n>=0&&(e.hash=t.substr(n),t=t.substr(0,n));let s=t.indexOf("?");s>=0&&(e.search=t.substr(s),t=t.substr(0,s)),t&&(e.pathname=t)}return e}function IE(t,e,n,s){s===void 0&&(s={});let{window:a=document.defaultView,v5Compat:i=!1}=s,o=a.history,c=Ti.Pop,u=null,h=f();h==null&&(h=0,o.replaceState(wd({},o.state,{idx:h}),""));function f(){return(o.state||{idx:null}).idx}function m(){c=Ti.Pop;let v=f(),k=v==null?null:v-h;h=v,u&&u({action:c,location:j.location,delta:k})}function g(v,k){c=Ti.Push;let C=Fg(j.location,v,k);h=f()+1;let E=Fv(C,h),M=j.createHref(C);try{o.pushState(E,"",M)}catch(P){if(P instanceof DOMException&&P.name==="DataCloneError")throw P;a.location.assign(M)}i&&u&&u({action:c,location:j.location,delta:1})}function y(v,k){c=Ti.Replace;let C=Fg(j.location,v,k);h=f();let E=Fv(C,h),M=j.createHref(C);o.replaceState(E,"",M),i&&u&&u({action:c,location:j.location,delta:0})}function N(v){let k=a.location.origin!=="null"?a.location.origin:a.location.href,C=typeof v=="string"?v:Mh(v);return C=C.replace(/ $/,"%20"),jn(k,"No window.location.(origin|href) available to create URL for href: "+C),new URL(C,k)}let j={get action(){return c},get location(){return t(a,o)},listen(v){if(u)throw new Error("A history only accepts one active listener");return a.addEventListener(zv,m),u=v,()=>{a.removeEventListener(zv,m),u=null}},createHref(v){return e(a,v)},createURL:N,encodeLocation(v){let k=N(v);return{pathname:k.pathname,search:k.search,hash:k.hash}},push:g,replace:y,go(v){return o.go(v)}};return j}var $v;(function(t){t.data="data",t.deferred="deferred",t.redirect="redirect",t.error="error"})($v||($v={}));function RE(t,e,n){return n===void 0&&(n="/"),PE(t,e,n)}function PE(t,e,n,s){let a=typeof e=="string"?Zl(e):e,i=Zx(a.pathname||"/",n);if(i==null)return null;let o=Kw(t);OE(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("/")&&(jn(u.relativePath.startsWith(s),'Absolute route path "'+u.relativePath+'" nested under path '+('"'+s+'" is not valid. An absolute child route path ')+"must start with the combined path of all its parent routes."),u.relativePath=u.relativePath.slice(s.length));let h=Ri([s,u.relativePath]),f=n.concat(u);i.children&&i.children.length>0&&(jn(i.index!==!0,"Index routes must not have child routes. Please remove "+('all child routes from route path "'+h+'".')),Kw(i.children,e,f,h)),!(i.path==null&&!i.index)&&e.push({path:h,score:BE(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 qw(i.path))a(i,o,u)}),e}function qw(t){let e=t.split("/");if(e.length===0)return[];let[n,...s]=e,a=n.endsWith("?"),i=n.replace(/\?$/,"");if(s.length===0)return a?[i,""]:[i];let o=qw(s.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 OE(t){t.sort((e,n)=>e.score!==n.score?n.score-e.score:VE(e.routesMeta.map(s=>s.childrenIndex),n.routesMeta.map(s=>s.childrenIndex)))}const DE=/^:[\w-]+$/,LE=3,_E=2,zE=1,FE=10,$E=-2,Bv=t=>t==="*";function BE(t,e){let n=t.split("/"),s=n.length;return n.some(Bv)&&(s+=$E),e&&(s+=_E),n.filter(a=>!Bv(a)).reduce((a,i)=>a+(DE.test(i)?LE:i===""?zE:FE),s)}function VE(t,e){return t.length===e.length&&t.slice(0,-1).every((s,a)=>s===e[a])?t[t.length-1]-e[e.length-1]:0}function HE(t,e,n){let{routesMeta:s}=t,a={},i="/",o=[];for(let c=0;c{let{paramName:g,isOptional:y}=f;if(g==="*"){let j=c[m]||"";o=i.slice(0,i.length-j.length).replace(/(.)\/+$/,"$1")}const N=c[m];return y&&!N?h[g]=void 0:h[g]=(N||"").replace(/%2F/g,"/"),h},{}),pathname:i,pathnameBase:o,pattern:t}}function UE(t,e,n){e===void 0&&(e=!1),n===void 0&&(n=!0),Xx(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 s=[],a="^"+t.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^${}|()[\]]/g,"\\$&").replace(/\/:([\w-]+)(\?)?/g,(o,c,u)=>(s.push({paramName:c,isOptional:u!=null}),u?"/?([^\\/]+)?":"/([^\\/]+)"));return t.endsWith("*")?(s.push({paramName:"*"}),a+=t==="*"||t==="/*"?"(.*)$":"(?:\\/(.+)|\\/*)$"):n?a+="\\/*$":t!==""&&t!=="/"&&(a+="(?:(?=\\/|$))"),[new RegExp(a,e?void 0:"i"),s]}function KE(t){try{return t.split("/").map(e=>decodeURIComponent(e).replace(/\//g,"%2F")).join("/")}catch(e){return Xx(!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 Zx(t,e){if(e==="/")return t;if(!t.toLowerCase().startsWith(e.toLowerCase()))return null;let n=e.endsWith("/")?e.length-1:e.length,s=t.charAt(n);return s&&s!=="/"?null:t.slice(n)||"/"}const qE=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,GE=t=>qE.test(t);function JE(t,e){e===void 0&&(e="/");let{pathname:n,search:s="",hash:a=""}=typeof t=="string"?Zl(t):t,i;if(n)if(GE(n))i=n;else{if(n.includes("//")){let o=n;n=n.replace(/\/\/+/g,"/"),Xx(!1,"Pathnames cannot have embedded double slashes - normalizing "+(o+" -> "+n))}n.startsWith("/")?i=Vv(n.substring(1),"/"):i=Vv(n,e)}else i=e;return{pathname:i,search:XE(s),hash:ZE(a)}}function Vv(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 Bm(t,e,n,s){return"Cannot include a '"+t+"' character in a manually specified "+("`to."+e+"` field ["+JSON.stringify(s)+"]. 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 YE(t){return t.filter((e,n)=>n===0||e.route.path&&e.route.path.length>0)}function e0(t,e){let n=YE(t);return e?n.map((s,a)=>a===n.length-1?s.pathname:s.pathnameBase):n.map(s=>s.pathnameBase)}function t0(t,e,n,s){s===void 0&&(s=!1);let a;typeof t=="string"?a=Zl(t):(a=wd({},t),jn(!a.pathname||!a.pathname.includes("?"),Bm("?","pathname","search",a)),jn(!a.pathname||!a.pathname.includes("#"),Bm("#","pathname","hash",a)),jn(!a.search||!a.search.includes("#"),Bm("#","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(!s&&o.startsWith("..")){let g=o.split("/");for(;g[0]==="..";)g.shift(),m-=1;a.pathname=g.join("/")}c=m>=0?e[m]:"/"}let u=JE(a,c),h=o&&o!=="/"&&o.endsWith("/"),f=(i||o===".")&&n.endsWith("/");return!u.pathname.endsWith("/")&&(h||f)&&(u.pathname+="/"),u}const Ri=t=>t.join("/").replace(/\/\/+/g,"/"),QE=t=>t.replace(/\/+$/,"").replace(/^\/*/,"/"),XE=t=>!t||t==="?"?"":t.startsWith("?")?t:"?"+t,ZE=t=>!t||t==="#"?"":t.startsWith("#")?t:"#"+t;function eT(t){return t!=null&&typeof t.status=="number"&&typeof t.statusText=="string"&&typeof t.internal=="boolean"&&"data"in t}const Gw=["post","put","patch","delete"];new Set(Gw);const tT=["get",...Gw];new Set(tT);/** + * 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"){s.go(h);return}let m=t0(h,JSON.parse(o),i,f.relative==="path");t==null&&e!=="/"&&(m.pathname=m.pathname==="/"?e:Ri([e,m.pathname])),(f.replace?s.replace:s.push)(m,f.state,f)},[e,s,o,i,t])}const aT=b.createContext(null);function iT(t){let e=b.useContext(qa).outlet;return e&&b.createElement(aT.Provider,{value:t},e)}function Qw(t,e){let{relative:n}=e===void 0?{}:e,{future:s}=b.useContext(Wi),{matches:a}=b.useContext(qa),{pathname:i}=Ui(),o=JSON.stringify(e0(a,s.v7_relativeSplatPath));return b.useMemo(()=>t0(t,JSON.parse(o),i,n==="path"),[t,o,i,n])}function oT(t,e){return lT(t,e)}function lT(t,e,n,s){ec()||jn(!1);let{navigator:a}=b.useContext(Wi),{matches:i}=b.useContext(qa),o=i[i.length-1],c=o?o.params:{};o&&o.pathname;let u=o?o.pathnameBase:"/";o&&o.route;let h=Ui(),f;if(e){var m;let v=typeof e=="string"?Zl(e):e;u==="/"||(m=v.pathname)!=null&&m.startsWith(u)||jn(!1),f=v}else f=h;let g=f.pathname||"/",y=g;if(u!=="/"){let v=u.replace(/^\//,"").split("/");y="/"+g.replace(/^\//,"").split("/").slice(v.length).join("/")}let N=RE(t,{pathname:y}),j=fT(N&&N.map(v=>Object.assign({},v,{params:Object.assign({},c,v.params),pathname:Ri([u,a.encodeLocation?a.encodeLocation(v.pathname).pathname:v.pathname]),pathnameBase:v.pathnameBase==="/"?u:Ri([u,a.encodeLocation?a.encodeLocation(v.pathnameBase).pathname:v.pathnameBase])})),i,n,s);return e&&j?b.createElement(Pf.Provider,{value:{location:jd({pathname:"/",search:"",hash:"",state:null,key:"default"},f),navigationType:Ti.Pop}},j):j}function cT(){let t=xT(),e=eT(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 dT=b.createElement(cT,null);class uT 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(qa.Provider,{value:this.props.routeContext},b.createElement(Jw.Provider,{value:this.state.error,children:this.props.component})):this.props.children}}function hT(t){let{routeContext:e,match:n,children:s}=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(qa.Provider,{value:e},s)}function fT(t,e,n,s){var a;if(e===void 0&&(e=[]),n===void 0&&(n=null),s===void 0&&(s=null),t==null){var i;if(!n)return null;if(n.errors)t=n.matches;else if((i=s)!=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||jn(!1),o=o.slice(0,Math.min(o.length,f+1))}let u=!1,h=-1;if(n&&s&&s.v7_partialHydration)for(let f=0;f=0?o=o.slice(0,h+1):o=[o[0]];break}}}return o.reduceRight((f,m,g)=>{let y,N=!1,j=null,v=null;n&&(y=c&&m.route.id?c[m.route.id]:void 0,j=m.route.errorElement||dT,u&&(h<0&&g===0?(bT("route-fallback"),N=!0,v=null):h===g&&(N=!0,v=m.route.hydrateFallbackElement||null)));let k=e.concat(o.slice(0,g+1)),C=()=>{let E;return y?E=j:N?E=v:m.route.Component?E=b.createElement(m.route.Component,null):m.route.element?E=m.route.element:E=f,b.createElement(hT,{match:m,routeContext:{outlet:f,matches:k,isDataRoute:n!=null},children:E})};return n&&(m.route.ErrorBoundary||m.route.errorElement||g===0)?b.createElement(uT,{location:n.location,revalidation:n.revalidation,component:j,error:y,children:C(),routeContext:{outlet:null,matches:k,isDataRoute:!0}}):C()},null)}var Xw=(function(t){return t.UseBlocker="useBlocker",t.UseRevalidator="useRevalidator",t.UseNavigateStable="useNavigate",t})(Xw||{}),Zw=(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})(Zw||{});function pT(t){let e=b.useContext(n0);return e||jn(!1),e}function mT(t){let e=b.useContext(nT);return e||jn(!1),e}function gT(t){let e=b.useContext(qa);return e||jn(!1),e}function ej(t){let e=gT(),n=e.matches[e.matches.length-1];return n.route.id||jn(!1),n.route.id}function xT(){var t;let e=b.useContext(Jw),n=mT(),s=ej();return e!==void 0?e:(t=n.errors)==null?void 0:t[s]}function yT(){let{router:t}=pT(Xw.UseNavigateStable),e=ej(Zw.UseNavigateStable),n=b.useRef(!1);return Yw(()=>{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 Hv={};function bT(t,e,n){Hv[t]||(Hv[t]=!0)}function vT(t,e){t==null||t.v7_startTransition,t==null||t.v7_relativeSplatPath}function Vm(t){let{to:e,replace:n,state:s,relative:a}=t;ec()||jn(!1);let{future:i,static:o}=b.useContext(Wi),{matches:c}=b.useContext(qa),{pathname:u}=Ui(),h=Ki(),f=t0(e,e0(c,i.v7_relativeSplatPath),u,a==="path"),m=JSON.stringify(f);return b.useEffect(()=>h(JSON.parse(m),{replace:n,state:s,relative:a}),[h,m,a,n,s]),null}function NT(t){return iT(t.context)}function Wt(t){jn(!1)}function wT(t){let{basename:e="/",children:n=null,location:s,navigationType:a=Ti.Pop,navigator:i,static:o=!1,future:c}=t;ec()&&jn(!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 s=="string"&&(s=Zl(s));let{pathname:f="/",search:m="",hash:g="",state:y=null,key:N="default"}=s,j=b.useMemo(()=>{let v=Zx(f,u);return v==null?null:{location:{pathname:v,search:m,hash:g,state:y,key:N},navigationType:a}},[u,f,m,g,y,N,a]);return j==null?null:b.createElement(Wi.Provider,{value:h},b.createElement(Pf.Provider,{children:n,value:j}))}function jT(t){let{children:e,location:n}=t;return oT($g(e),n)}new Promise(()=>{});function $g(t,e){e===void 0&&(e=[]);let n=[];return b.Children.forEach(t,(s,a)=>{if(!b.isValidElement(s))return;let i=[...e,a];if(s.type===b.Fragment){n.push.apply(n,$g(s.props.children,i));return}s.type!==Wt&&jn(!1),!s.props.index||!s.props.children||jn(!1);let o={id:s.props.id||i.join("-"),caseSensitive:s.props.caseSensitive,element:s.props.element,Component:s.props.Component,index:s.props.index,path:s.props.path,loader:s.props.loader,action:s.props.action,errorElement:s.props.errorElement,ErrorBoundary:s.props.ErrorBoundary,hasErrorBoundary:s.props.ErrorBoundary!=null||s.props.errorElement!=null,shouldRevalidate:s.props.shouldRevalidate,handle:s.props.handle,lazy:s.props.lazy};s.props.children&&(o.children=$g(s.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 Bg(){return Bg=Object.assign?Object.assign.bind():function(t){for(var e=1;e=0)&&(n[a]=t[a]);return n}function ST(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}function CT(t,e){return t.button===0&&(!e||e==="_self")&&!ST(t)}function Vg(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 s=t[n];return e.concat(Array.isArray(s)?s.map(a=>[n,a]):[[n,s]])},[]))}function ET(t,e){let n=Vg(t);return e&&e.forEach((s,a)=>{n.has(a)||e.getAll(a).forEach(i=>{n.append(a,i)})}),n}const TT=["onClick","relative","reloadDocument","replace","state","target","to","preventScrollReset","viewTransition"],MT="6";try{window.__reactRouterVersion=MT}catch{}const AT="startTransition",Wv=Rf[AT];function IT(t){let{basename:e,children:n,future:s,window:a}=t,i=b.useRef();i.current==null&&(i.current=ME({window:a,v5Compat:!0}));let o=i.current,[c,u]=b.useState({action:o.action,location:o.location}),{v7_startTransition:h}=s||{},f=b.useCallback(m=>{h&&Wv?Wv(()=>u(m)):u(m)},[u,h]);return b.useLayoutEffect(()=>o.listen(f),[o,f]),b.useEffect(()=>vT(s),[s]),b.createElement(wT,{basename:e,children:n,location:c.location,navigationType:c.action,navigator:o,future:s})}const RT=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",PT=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,Hg=b.forwardRef(function(e,n){let{onClick:s,relative:a,reloadDocument:i,replace:o,state:c,target:u,to:h,preventScrollReset:f,viewTransition:m}=e,g=kT(e,TT),{basename:y}=b.useContext(Wi),N,j=!1;if(typeof h=="string"&&PT.test(h)&&(N=h,RT))try{let E=new URL(window.location.href),M=h.startsWith("//")?new URL(E.protocol+h):new URL(h),P=Zx(M.pathname,y);M.origin===E.origin&&P!=null?h=P+M.search+M.hash:j=!0}catch{}let v=sT(h,{relative:a}),k=OT(h,{replace:o,state:c,target:u,preventScrollReset:f,relative:a,viewTransition:m});function C(E){s&&s(E),E.defaultPrevented||k(E)}return b.createElement("a",Bg({},g,{href:N||v,onClick:j||i?s:C,ref:n,target:u}))});var Uv;(function(t){t.UseScrollRestoration="useScrollRestoration",t.UseSubmit="useSubmit",t.UseSubmitFetcher="useSubmitFetcher",t.UseFetcher="useFetcher",t.useViewTransitionState="useViewTransitionState"})(Uv||(Uv={}));var Kv;(function(t){t.UseFetcher="useFetcher",t.UseFetchers="useFetchers",t.UseScrollRestoration="useScrollRestoration"})(Kv||(Kv={}));function OT(t,e){let{target:n,replace:s,state:a,preventScrollReset:i,relative:o,viewTransition:c}=e===void 0?{}:e,u=Ki(),h=Ui(),f=Qw(t,{relative:o});return b.useCallback(m=>{if(CT(m,n)){m.preventDefault();let g=s!==void 0?s:Mh(h)===Mh(f);u(t,{replace:g,state:a,preventScrollReset:i,relative:o,viewTransition:c})}},[h,u,f,s,a,n,t,i,o,c])}function tj(t){let e=b.useRef(Vg(t)),n=b.useRef(!1),s=Ui(),a=b.useMemo(()=>ET(s.search,n.current?null:e.current),[s.search]),i=Ki(),o=b.useCallback((c,u)=>{const h=Vg(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 DT=t=>t.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),LT=t=>t.replace(/^([A-Z])|[\s-_]+(\w)/g,(e,n,s)=>s?s.toUpperCase():n.toLowerCase()),qv=t=>{const e=LT(t);return e.charAt(0).toUpperCase()+e.slice(1)},nj=(...t)=>t.filter((e,n,s)=>!!e&&e.trim()!==""&&s.indexOf(e)===n).join(" ").trim(),_T=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 zT={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 FT=b.forwardRef(({color:t="currentColor",size:e=24,strokeWidth:n=2,absoluteStrokeWidth:s,className:a="",children:i,iconNode:o,...c},u)=>b.createElement("svg",{ref:u,...zT,width:e,height:e,stroke:t,strokeWidth:s?Number(n)*24/Number(e):n,className:nj("lucide",a),...!i&&!_T(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 Ie=(t,e)=>{const n=b.forwardRef(({className:s,...a},i)=>b.createElement(FT,{ref:i,iconNode:e,className:nj(`lucide-${DT(qv(t))}`,`lucide-${t}`,s),...a}));return n.displayName=qv(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 $T=[["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"}]],Hm=Ie("arrow-up-down",$T);/** + * @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 BT=[["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"}]],Gv=Ie("bitcoin",BT);/** + * @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 VT=[["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"}]],HT=Ie("bold",VT);/** + * @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 WT=[["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"}]],Ys=Ie("book-open",WT);/** + * @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 UT=[["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"}]],Ah=Ie("calendar",UT);/** + * @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 KT=[["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"}]],Wg=Ie("chart-column",KT);/** + * @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 qT=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],Of=Ie("check",qT);/** + * @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 GT=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],kd=Ie("chevron-down",GT);/** + * @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 JT=[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]],YT=Ie("chevron-left",JT);/** + * @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 QT=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],Dl=Ie("chevron-right",QT);/** + * @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 XT=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],sj=Ie("chevron-up",XT);/** + * @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 ZT=[["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"}]],rj=Ie("circle-alert",ZT);/** + * @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=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]],Jv=Ie("circle-check-big",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:"m9 12 2 2 4-4",key:"dzmm74"}]],Ug=Ie("circle-check",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=[["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"}]],aj=Ie("circle-question-mark",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 sM=[["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"}]],Wm=Ie("circle-user",sM);/** + * @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=[["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"}]],ij=Ie("circle-x",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=[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],Kg=Ie("clock",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 iM=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]],oM=Ie("cloud",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 lM=[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]],cM=Ie("code",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=[["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"}]],s0=Ie("copy",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=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2",key:"ynyp8z"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10",key:"1b3vmo"}]],Yv=Ie("credit-card",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 hM=[["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"}]],Fl=Ie("crown",hM);/** + * @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=[["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"}]],Ih=Ie("dollar-sign",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 pM=[["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"}]],mM=Ie("download",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 gM=[["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"}]],ra=Ie("external-link",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 xM=[["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"}]],qg=Ie("eye",xM);/** + * @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=[["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"}]],oj=Ie("file-text",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 bM=[["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"}]],lj=Ie("funnel",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=[["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"}]],cj=Ie("gift",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 NM=[["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"}]],wM=Ie("git-merge",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 jM=[["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"}]],Gg=Ie("globe",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 kM=[["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"}]],SM=Ie("graduation-cap",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=[["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"}]],Aa=Ie("grip-vertical",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 EM=[["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"}]],TM=Ie("handshake",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 MM=[["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"}]],Qv=Ie("hash",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 AM=[["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"}]],IM=Ie("heading-1",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 RM=[["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"}]],PM=Ie("heading-2",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 OM=[["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"}]],DM=Ie("heading-3",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 LM=[["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"}]],_M=Ie("house",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 zM=[["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"}]],dj=Ie("image",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 FM=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]],Ku=Ie("info",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 $M=[["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"}]],BM=Ie("italic",$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 VM=[["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"}]],uj=Ie("key",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 HM=[["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"}]],WM=Ie("layout-dashboard",HM);/** + * @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:"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"}]],Rr=Ie("link-2",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 KM=[["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"}]],Jg=Ie("link",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:"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"}]],GM=Ie("list-ordered",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:"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"}]],YM=Ie("list",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=[["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=Ie("lock",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 ZM=[["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"}]],e5=Ie("log-out",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 t5=[["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"}]],hj=Ie("map-pin",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 n5=[["path",{d:"M4 5h16",key:"1tepv9"}],["path",{d:"M4 12h16",key:"1lakjw"}],["path",{d:"M4 19h16",key:"1djgab"}]],s5=Ie("menu",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 r5=[["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"}]],a5=Ie("message-circle",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 i5=[["path",{d:"M5 12h14",key:"1ays0h"}]],o5=Ie("minus",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 l5=[["polygon",{points:"3 11 22 2 13 21 11 13 3 11",key:"1ltx0t"}]],Ll=Ie("navigation",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:"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"}]],d5=Ie("palette",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 u5=[["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"}]],Ut=Ie("pen-line",u5);/** + * @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:"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"}]],Yg=Ie("pencil",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=[["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"}]],p5=Ie("percent",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 m5=[["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"}]],g5=Ie("phone",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=[["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"}]],y5=Ie("pin",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 b5=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],fn=Ie("plus",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=[["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"}]],Xv=Ie("qr-code",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:"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"}]],w5=Ie("quote",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 j5=[["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"}]],k5=Ie("redo",j5);/** + * @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:"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"}]],Fe=Ie("refresh-cw",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:"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"}]],wn=Ie("save",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 E5=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],Ba=Ie("search",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 T5=[["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"}]],M5=Ie("send",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 A5=[["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=Ie("settings",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:"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"}]],qu=Ie("settings-2",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:"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"}]],od=Ie("shield-check",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 P5=[["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"}]],Qg=Ie("shopping-bag",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 O5=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12 18h.01",key:"mhygvu"}]],zi=Ie("smartphone",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 D5=[["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"}]],_l=Ie("star",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 L5=[["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"}]],_5=Ie("strikethrough",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 z5=[["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"}]],F5=Ie("table",z5);/** + * @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=[["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"}]],ld=Ie("tag",$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 B5=[["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"}]],Zn=Ie("trash-2",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:"M16 7h6v6",key:"box55l"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17",key:"1t1m79"}]],cd=Ie("trending-up",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:"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"}]],Xg=Ie("trophy",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=[["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"}]],fj=Ie("undo-2",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 U5=[["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"}]],K5=Ie("undo",U5);/** + * @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:"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"}]],Rh=Ie("upload",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 G5=[["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"}]],dd=Ie("user-plus",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 J5=[["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"}]],Ao=Ie("user",J5);/** + * @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=[["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=Ie("users",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 Q5=[["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"}]],Wl=Ie("wallet",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:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],gs=Ie("x",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 Z5=[["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"}]],Fa=Ie("zap",Z5),r0="admin_token";function Df(){try{return localStorage.getItem(r0)}catch{return null}}function eA(t){try{localStorage.setItem(r0,t)}catch{}}function Um(){try{localStorage.removeItem(r0)}catch{}}const tA="https://soulapi.quwanzhi.com",nA=15e3,Zv=6e4,sA=()=>{const t="https://soulapi.quwanzhi.com";return t.length>0?t.replace(/\/$/,""):tA};function Lo(t){const e=sA(),n=t.startsWith("/")?t:`/${t}`;return e?`${e}${n}`:n}async function Lf(t,e={}){const{data:n,...s}=e,a=Lo(t),i=new Headers(s.headers),o=Df();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):s.body,u=s.timeout??nA,h=new AbortController,f=setTimeout(()=>h.abort(),u),m=await fetch(a,{...s,headers:i,body:c,credentials:"include",signal:h.signal}).finally(()=>clearTimeout(f)),y=(m.headers.get("Content-Type")||"").includes("application/json")?await m.json():m,N=j=>{const v=j,k=((v==null?void 0:v.message)||(v==null?void 0:v.error)||"").toString();(k.includes("可提现金额不足")||k.includes("可提现不足")||k.includes("余额不足"))&&window.dispatchEvent(new CustomEvent("recharge-alert",{detail:k}))};if(!m.ok){N(y);const j=new Error((y==null?void 0:y.error)||`HTTP ${m.status}`);throw j.status=m.status,j.data=y,j}return N(y),y}function De(t,e){return Lf(t,{...e,method:"GET"})}function Nt(t,e,n){return Lf(t,{...n,method:"POST",data:e})}function Ot(t,e,n){return Lf(t,{...n,method:"PUT",data:e})}function ea(t,e){return Lf(t,{...e,method:"DELETE"})}function rA(){const[t,e]=b.useState(!1),[n,s]=b.useState("");return b.useEffect(()=>{const a=i=>{const o=i.detail;s(o||"可提现/余额不足,请及时充值商户号"),e(!0)};return window.addEventListener("recharge-alert",a),()=>window.removeEventListener("recharge-alert",a)},[]),t?r.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:[r.jsxs("div",{className:"flex items-center gap-3 min-w-0",children:[r.jsx(rj,{className:"w-5 h-5 shrink-0 text-red-400"}),r.jsxs("span",{className:"text-sm font-medium",children:[n,r.jsx("span",{className:"ml-2 text-red-300",children:"请及时充值商户号或核对账户后重试。"})]})]}),r.jsx("button",{type:"button",onClick:()=>e(!1),className:"shrink-0 p-1 rounded hover:bg-red-800/50 transition-colors","aria-label":"关闭告警",children:r.jsx(gs,{className:"w-4 h-4"})})]}):null}const aA=[{icon:WM,label:"数据概览",href:"/dashboard"},{icon:Ys,label:"内容管理",href:"/content"},{icon:_n,label:"用户管理",href:"/users"},{icon:wM,label:"找伙伴",href:"/find-partner"},{icon:Wl,label:"推广中心",href:"/distribution"}];function iA(){const t=Ui(),e=Ki(),[n,s]=b.useState(!1),[a,i]=b.useState(!1);b.useEffect(()=>{s(!0)},[]),b.useEffect(()=>{if(!n)return;i(!1);let c=!1;if(!Df()){e("/login",{replace:!0});return}return De("/api/admin").then(u=>{c||(u&&u.success!==!1?i(!0):(Um(),e("/login",{replace:!0,state:{from:t.pathname}})))}).catch(()=>{c||(Um(),e("/login",{replace:!0,state:{from:t.pathname}}))}),()=>{c=!0}},[t.pathname,n,e]);const o=async()=>{Um();try{await Nt("/api/admin/logout",{})}catch{}e("/login",{replace:!0})};return!n||!a?r.jsxs("div",{className:"flex min-h-screen bg-[#0a1628]",children:[r.jsx("div",{className:"w-64 bg-[#0f2137] border-r border-gray-700/50"}),r.jsx("div",{className:"flex-1 flex items-center justify-center",children:r.jsx("div",{className:"text-[#38bdac]",children:"加载中..."})})]}):r.jsxs("div",{className:"flex min-h-screen bg-[#0a1628]",children:[r.jsxs("div",{className:"w-64 bg-[#0f2137] flex flex-col border-r border-gray-700/50 shadow-xl",children:[r.jsxs("div",{className:"p-6 border-b border-gray-700/50",children:[r.jsx("h1",{className:"text-xl font-bold text-[#38bdac]",children:"管理后台"}),r.jsx("p",{className:"text-xs text-gray-400 mt-1",children:"Soul创业派对"})]}),r.jsxs("nav",{className:"flex-1 p-4 space-y-1 overflow-y-auto",children:[aA.map(c=>{const u=t.pathname===c.href;return r.jsxs(Hg,{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:[r.jsx(c.icon,{className:"w-5 h-5 shrink-0"}),r.jsx("span",{className:"text-sm",children:c.label})]},c.href)}),r.jsx("div",{className:"pt-4 mt-4 border-t border-gray-700/50",children:r.jsxs(Hg,{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:[r.jsx(Mo,{className:"w-5 h-5 shrink-0"}),r.jsx("span",{className:"text-sm",children:"系统设置"})]})})]}),r.jsx("div",{className:"p-4 border-t border-gray-700/50 space-y-1",children:r.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:[r.jsx(e5,{className:"w-5 h-5"}),r.jsx("span",{className:"text-sm",children:"退出登录"})]})})]}),r.jsxs("div",{className:"flex-1 overflow-auto bg-[#0a1628] min-w-0 flex flex-col",children:[r.jsx(rA,{}),r.jsx("div",{className:"w-full min-w-[1024px] min-h-full flex-1",children:r.jsx(NT,{})})]})]})}function e1(t,e){if(typeof t=="function")return t(e);t!=null&&(t.current=e)}function a0(...t){return e=>{let n=!1;const s=t.map(a=>{const i=e1(a,e);return!n&&typeof i=="function"&&(n=!0),i});if(n)return()=>{for(let a=0;a{let{children:i,...o}=s;pj(i)&&typeof Ph=="function"&&(i=Ph(i._payload));const c=b.Children.toArray(i),u=c.find(uA);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 r.jsx(e,{...o,ref:a,children:b.isValidElement(h)?b.cloneElement(h,void 0,f):null})}return r.jsx(e,{...o,ref:a,children:i})});return n.displayName=`${t}.Slot`,n}var gj=mj("Slot");function cA(t){const e=b.forwardRef((n,s)=>{let{children:a,...i}=n;if(pj(a)&&typeof Ph=="function"&&(a=Ph(a._payload)),b.isValidElement(a)){const o=fA(a),c=hA(i,a.props);return a.type!==b.Fragment&&(c.ref=s?a0(s,o):o),b.cloneElement(a,c)}return b.Children.count(a)>1?b.Children.only(null):null});return e.displayName=`${t}.SlotClone`,e}var dA=Symbol("radix.slottable");function uA(t){return b.isValidElement(t)&&typeof t.type=="function"&&"__radixId"in t.type&&t.type.__radixId===dA}function hA(t,e){const n={...e};for(const s in e){const a=t[s],i=e[s];/^on[A-Z]/.test(s)?a&&i?n[s]=(...c)=>{const u=i(...c);return a(...c),u}:a&&(n[s]=a):s==="style"?n[s]={...a,...i}:s==="className"&&(n[s]=[a,i].filter(Boolean).join(" "))}return{...t,...n}}function fA(t){var s,a;let e=(s=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:s.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 xj(t){var e,n,s="";if(typeof t=="string"||typeof t=="number")s+=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,n1=yj,bj=(t,e)=>n=>{var s;if((e==null?void 0:e.variants)==null)return n1(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 g=t1(f)||t1(m);return a[h][g]}),c=n&&Object.entries(n).reduce((h,f)=>{let[m,g]=f;return g===void 0||(h[m]=g),h},{}),u=e==null||(s=e.compoundVariants)===null||s===void 0?void 0:s.reduce((h,f)=>{let{class:m,className:g,...y}=f;return Object.entries(y).every(N=>{let[j,v]=N;return Array.isArray(v)?v.includes({...i,...c}[j]):{...i,...c}[j]===v})?[...h,m,g]:h},[]);return n1(t,o,u,n==null?void 0:n.class,n==null?void 0:n.className)},pA=(t,e)=>{const n=new Array(t.length+e.length);for(let s=0;s({classGroupId:t,validator:e}),vj=(t=new Map,e=null,n)=>({nextPart:t,validators:e,classGroupId:n}),Oh="-",s1=[],gA="arbitrary..",xA=t=>{const e=bA(t),{conflictingClassGroups:n,conflictingClassGroupModifiers:s}=t;return{getClassGroupId:o=>{if(o.startsWith("[")&&o.endsWith("]"))return yA(o);const c=o.split(Oh),u=c[0]===""&&c.length>1?1:0;return Nj(c,u,e)},getConflictingClassGroupIds:(o,c)=>{if(c){const u=s[o],h=n[o];return u?h?pA(h,u):u:h||s1}return n[o]||s1}}},Nj=(t,e,n)=>{if(t.length-e===0)return n.classGroupId;const a=t[e],i=n.nextPart.get(a);if(i){const h=Nj(t,e+1,i);if(h)return h}const o=n.validators;if(o===null)return;const c=e===0?t.join(Oh):t.slice(e).join(Oh),u=o.length;for(let h=0;ht.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const e=t.slice(1,-1),n=e.indexOf(":"),s=e.slice(0,n);return s?gA+s:void 0})(),bA=t=>{const{theme:e,classGroups:n}=t;return vA(n,e)},vA=(t,e)=>{const n=vj();for(const s in t){const a=t[s];i0(a,n,s,e)}return n},i0=(t,e,n,s)=>{const a=t.length;for(let i=0;i{if(typeof t=="string"){wA(t,e,n);return}if(typeof t=="function"){jA(t,e,n,s);return}kA(t,e,n,s)},wA=(t,e,n)=>{const s=t===""?e:wj(e,t);s.classGroupId=n},jA=(t,e,n,s)=>{if(SA(t)){i0(t(s),e,n,s);return}e.validators===null&&(e.validators=[]),e.validators.push(mA(n,t))},kA=(t,e,n,s)=>{const a=Object.entries(t),i=a.length;for(let o=0;o{let n=t;const s=e.split(Oh),a=s.length;for(let i=0;i"isThemeGetter"in t&&t.isThemeGetter===!0,CA=t=>{if(t<1)return{get:()=>{},set:()=>{}};let e=0,n=Object.create(null),s=Object.create(null);const a=(i,o)=>{n[i]=o,e++,e>t&&(e=0,s=n,n=Object.create(null))};return{get(i){let o=n[i];if(o!==void 0)return o;if((o=s[i])!==void 0)return a(i,o),o},set(i,o){i in n?n[i]=o:a(i,o)}}},Zg="!",r1=":",EA=[],a1=(t,e,n,s,a)=>({modifiers:t,hasImportantModifier:e,baseClassName:n,maybePostfixModifierPosition:s,isExternal:a}),TA=t=>{const{prefix:e,experimentalParseClassName:n}=t;let s=a=>{const i=[];let o=0,c=0,u=0,h;const f=a.length;for(let j=0;ju?h-u:void 0;return a1(i,y,g,N)};if(e){const a=e+r1,i=s;s=o=>o.startsWith(a)?i(o.slice(a.length)):a1(EA,!1,o,void 0,!0)}if(n){const a=s;s=i=>n({className:i,parseClassName:a})}return s},MA=t=>{const e=new Map;return t.orderSensitiveModifiers.forEach((n,s)=>{e.set(n,1e6+s)}),n=>{const s=[];let a=[];for(let i=0;i0&&(a.sort(),s.push(...a),a=[]),s.push(o)):a.push(o)}return a.length>0&&(a.sort(),s.push(...a)),s}},AA=t=>({cache:CA(t.cacheSize),parseClassName:TA(t),sortModifiers:MA(t),...xA(t)}),IA=/\s+/,RA=(t,e)=>{const{parseClassName:n,getClassGroupId:s,getConflictingClassGroupIds:a,sortModifiers:i}=e,o=[],c=t.trim().split(IA);let u="";for(let h=c.length-1;h>=0;h-=1){const f=c[h],{isExternal:m,modifiers:g,hasImportantModifier:y,baseClassName:N,maybePostfixModifierPosition:j}=n(f);if(m){u=f+(u.length>0?" "+u:u);continue}let v=!!j,k=s(v?N.substring(0,j):N);if(!k){if(!v){u=f+(u.length>0?" "+u:u);continue}if(k=s(N),!k){u=f+(u.length>0?" "+u:u);continue}v=!1}const C=g.length===0?"":g.length===1?g[0]:i(g).join(":"),E=y?C+Zg:C,M=E+k;if(o.indexOf(M)>-1)continue;o.push(M);const P=a(k,v);for(let H=0;H0?" "+u:u)}return u},PA=(...t)=>{let e=0,n,s,a="";for(;e{if(typeof t=="string")return t;let e,n="";for(let s=0;s{let n,s,a,i;const o=u=>{const h=e.reduce((f,m)=>m(f),t());return n=AA(h),s=n.cache.get,a=n.cache.set,i=c,c(u)},c=u=>{const h=s(u);if(h)return h;const f=RA(u,n);return a(u,f),f};return i=o,(...u)=>i(PA(...u))},DA=[],Dn=t=>{const e=n=>n[t]||DA;return e.isThemeGetter=!0,e},kj=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,Sj=/^\((?:(\w[\w-]*):)?(.+)\)$/i,LA=/^\d+\/\d+$/,_A=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,zA=/\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$/,FA=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,$A=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,BA=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,kl=t=>LA.test(t),ft=t=>!!t&&!Number.isNaN(Number(t)),xi=t=>!!t&&Number.isInteger(Number(t)),Km=t=>t.endsWith("%")&&ft(t.slice(0,-1)),Ia=t=>_A.test(t),VA=()=>!0,HA=t=>zA.test(t)&&!FA.test(t),Cj=()=>!1,WA=t=>$A.test(t),UA=t=>BA.test(t),KA=t=>!Be(t)&&!Ve(t),qA=t=>tc(t,Mj,Cj),Be=t=>kj.test(t),vo=t=>tc(t,Aj,HA),qm=t=>tc(t,XA,ft),i1=t=>tc(t,Ej,Cj),GA=t=>tc(t,Tj,UA),Gu=t=>tc(t,Ij,WA),Ve=t=>Sj.test(t),Jc=t=>nc(t,Aj),JA=t=>nc(t,ZA),o1=t=>nc(t,Ej),YA=t=>nc(t,Mj),QA=t=>nc(t,Tj),Ju=t=>nc(t,Ij,!0),tc=(t,e,n)=>{const s=kj.exec(t);return s?s[1]?e(s[1]):n(s[2]):!1},nc=(t,e,n=!1)=>{const s=Sj.exec(t);return s?s[1]?e(s[1]):n:!1},Ej=t=>t==="position"||t==="percentage",Tj=t=>t==="image"||t==="url",Mj=t=>t==="length"||t==="size"||t==="bg-size",Aj=t=>t==="length",XA=t=>t==="number",ZA=t=>t==="family-name",Ij=t=>t==="shadow",eI=()=>{const t=Dn("color"),e=Dn("font"),n=Dn("text"),s=Dn("font-weight"),a=Dn("tracking"),i=Dn("leading"),o=Dn("breakpoint"),c=Dn("container"),u=Dn("spacing"),h=Dn("radius"),f=Dn("shadow"),m=Dn("inset-shadow"),g=Dn("text-shadow"),y=Dn("drop-shadow"),N=Dn("blur"),j=Dn("perspective"),v=Dn("aspect"),k=Dn("ease"),C=Dn("animate"),E=()=>["auto","avoid","all","avoid-page","page","left","right","column"],M=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],P=()=>[...M(),Ve,Be],H=()=>["auto","hidden","clip","visible","scroll"],L=()=>["auto","contain","none"],R=()=>[Ve,Be,u],O=()=>[kl,"full","auto",...R()],se=()=>[xi,"none","subgrid",Ve,Be],ie=()=>["auto",{span:["full",xi,Ve,Be]},xi,Ve,Be],z=()=>[xi,"auto",Ve,Be],ce=()=>["auto","min","max","fr",Ve,Be],me=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],_=()=>["start","end","center","stretch","center-safe","end-safe"],G=()=>["auto",...R()],$=()=>[kl,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...R()],A=()=>[t,Ve,Be],Y=()=>[...M(),o1,i1,{position:[Ve,Be]}],U=()=>["no-repeat",{repeat:["","x","y","space","round"]}],D=()=>["auto","cover","contain",YA,qA,{size:[Ve,Be]}],W=()=>[Km,Jc,vo],le=()=>["","none","full",h,Ve,Be],ye=()=>["",ft,Jc,vo],Ae=()=>["solid","dashed","dotted","double"],ne=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],K=()=>[ft,Km,o1,i1],J=()=>["","none",N,Ve,Be],ge=()=>["none",ft,Ve,Be],ae=()=>["none",ft,Ve,Be],pe=()=>[ft,Ve,Be],Se=()=>[kl,"full",...R()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[Ia],breakpoint:[Ia],color:[VA],container:[Ia],"drop-shadow":[Ia],ease:["in","out","in-out"],font:[KA],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[Ia],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[Ia],shadow:[Ia],spacing:["px",ft],text:[Ia],"text-shadow":[Ia],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",kl,Be,Ve,v]}],container:["container"],columns:[{columns:[ft,Be,Ve,c]}],"break-after":[{"break-after":E()}],"break-before":[{"break-before":E()}],"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:P()}],overflow:[{overflow:H()}],"overflow-x":[{"overflow-x":H()}],"overflow-y":[{"overflow-y":H()}],overscroll:[{overscroll:L()}],"overscroll-x":[{"overscroll-x":L()}],"overscroll-y":[{"overscroll-y":L()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:O()}],"inset-x":[{"inset-x":O()}],"inset-y":[{"inset-y":O()}],start:[{start:O()}],end:[{end:O()}],top:[{top:O()}],right:[{right:O()}],bottom:[{bottom:O()}],left:[{left:O()}],visibility:["visible","invisible","collapse"],z:[{z:[xi,"auto",Ve,Be]}],basis:[{basis:[kl,"full","auto",c,...R()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[ft,kl,"auto","initial","none",Be]}],grow:[{grow:["",ft,Ve,Be]}],shrink:[{shrink:["",ft,Ve,Be]}],order:[{order:[xi,"first","last","none",Ve,Be]}],"grid-cols":[{"grid-cols":se()}],"col-start-end":[{col:ie()}],"col-start":[{"col-start":z()}],"col-end":[{"col-end":z()}],"grid-rows":[{"grid-rows":se()}],"row-start-end":[{row:ie()}],"row-start":[{"row-start":z()}],"row-end":[{"row-end":z()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":ce()}],"auto-rows":[{"auto-rows":ce()}],gap:[{gap:R()}],"gap-x":[{"gap-x":R()}],"gap-y":[{"gap-y":R()}],"justify-content":[{justify:[...me(),"normal"]}],"justify-items":[{"justify-items":[..._(),"normal"]}],"justify-self":[{"justify-self":["auto",..._()]}],"align-content":[{content:["normal",...me()]}],"align-items":[{items:[..._(),{baseline:["","last"]}]}],"align-self":[{self:["auto",..._(),{baseline:["","last"]}]}],"place-content":[{"place-content":me()}],"place-items":[{"place-items":[..._(),"baseline"]}],"place-self":[{"place-self":["auto",..._()]}],p:[{p:R()}],px:[{px:R()}],py:[{py:R()}],ps:[{ps:R()}],pe:[{pe:R()}],pt:[{pt:R()}],pr:[{pr:R()}],pb:[{pb:R()}],pl:[{pl:R()}],m:[{m:G()}],mx:[{mx:G()}],my:[{my:G()}],ms:[{ms:G()}],me:[{me:G()}],mt:[{mt:G()}],mr:[{mr:G()}],mb:[{mb:G()}],ml:[{ml:G()}],"space-x":[{"space-x":R()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":R()}],"space-y-reverse":["space-y-reverse"],size:[{size:$()}],w:[{w:[c,"screen",...$()]}],"min-w":[{"min-w":[c,"screen","none",...$()]}],"max-w":[{"max-w":[c,"screen","none","prose",{screen:[o]},...$()]}],h:[{h:["screen","lh",...$()]}],"min-h":[{"min-h":["screen","lh","none",...$()]}],"max-h":[{"max-h":["screen","lh",...$()]}],"font-size":[{text:["base",n,Jc,vo]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[s,Ve,qm]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",Km,Be]}],"font-family":[{font:[JA,Be,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,Ve,Be]}],"line-clamp":[{"line-clamp":[ft,"none",Ve,qm]}],leading:[{leading:[i,...R()]}],"list-image":[{"list-image":["none",Ve,Be]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",Ve,Be]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:A()}],"text-color":[{text:A()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...Ae(),"wavy"]}],"text-decoration-thickness":[{decoration:[ft,"from-font","auto",Ve,vo]}],"text-decoration-color":[{decoration:A()}],"underline-offset":[{"underline-offset":[ft,"auto",Ve,Be]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:R()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",Ve,Be]}],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",Ve,Be]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:Y()}],"bg-repeat":[{bg:U()}],"bg-size":[{bg:D()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},xi,Ve,Be],radial:["",Ve,Be],conic:[xi,Ve,Be]},QA,GA]}],"bg-color":[{bg:A()}],"gradient-from-pos":[{from:W()}],"gradient-via-pos":[{via:W()}],"gradient-to-pos":[{to:W()}],"gradient-from":[{from:A()}],"gradient-via":[{via:A()}],"gradient-to":[{to:A()}],rounded:[{rounded:le()}],"rounded-s":[{"rounded-s":le()}],"rounded-e":[{"rounded-e":le()}],"rounded-t":[{"rounded-t":le()}],"rounded-r":[{"rounded-r":le()}],"rounded-b":[{"rounded-b":le()}],"rounded-l":[{"rounded-l":le()}],"rounded-ss":[{"rounded-ss":le()}],"rounded-se":[{"rounded-se":le()}],"rounded-ee":[{"rounded-ee":le()}],"rounded-es":[{"rounded-es":le()}],"rounded-tl":[{"rounded-tl":le()}],"rounded-tr":[{"rounded-tr":le()}],"rounded-br":[{"rounded-br":le()}],"rounded-bl":[{"rounded-bl":le()}],"border-w":[{border:ye()}],"border-w-x":[{"border-x":ye()}],"border-w-y":[{"border-y":ye()}],"border-w-s":[{"border-s":ye()}],"border-w-e":[{"border-e":ye()}],"border-w-t":[{"border-t":ye()}],"border-w-r":[{"border-r":ye()}],"border-w-b":[{"border-b":ye()}],"border-w-l":[{"border-l":ye()}],"divide-x":[{"divide-x":ye()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":ye()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...Ae(),"hidden","none"]}],"divide-style":[{divide:[...Ae(),"hidden","none"]}],"border-color":[{border:A()}],"border-color-x":[{"border-x":A()}],"border-color-y":[{"border-y":A()}],"border-color-s":[{"border-s":A()}],"border-color-e":[{"border-e":A()}],"border-color-t":[{"border-t":A()}],"border-color-r":[{"border-r":A()}],"border-color-b":[{"border-b":A()}],"border-color-l":[{"border-l":A()}],"divide-color":[{divide:A()}],"outline-style":[{outline:[...Ae(),"none","hidden"]}],"outline-offset":[{"outline-offset":[ft,Ve,Be]}],"outline-w":[{outline:["",ft,Jc,vo]}],"outline-color":[{outline:A()}],shadow:[{shadow:["","none",f,Ju,Gu]}],"shadow-color":[{shadow:A()}],"inset-shadow":[{"inset-shadow":["none",m,Ju,Gu]}],"inset-shadow-color":[{"inset-shadow":A()}],"ring-w":[{ring:ye()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:A()}],"ring-offset-w":[{"ring-offset":[ft,vo]}],"ring-offset-color":[{"ring-offset":A()}],"inset-ring-w":[{"inset-ring":ye()}],"inset-ring-color":[{"inset-ring":A()}],"text-shadow":[{"text-shadow":["none",g,Ju,Gu]}],"text-shadow-color":[{"text-shadow":A()}],opacity:[{opacity:[ft,Ve,Be]}],"mix-blend":[{"mix-blend":[...ne(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":ne()}],"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":[ft]}],"mask-image-linear-from-pos":[{"mask-linear-from":K()}],"mask-image-linear-to-pos":[{"mask-linear-to":K()}],"mask-image-linear-from-color":[{"mask-linear-from":A()}],"mask-image-linear-to-color":[{"mask-linear-to":A()}],"mask-image-t-from-pos":[{"mask-t-from":K()}],"mask-image-t-to-pos":[{"mask-t-to":K()}],"mask-image-t-from-color":[{"mask-t-from":A()}],"mask-image-t-to-color":[{"mask-t-to":A()}],"mask-image-r-from-pos":[{"mask-r-from":K()}],"mask-image-r-to-pos":[{"mask-r-to":K()}],"mask-image-r-from-color":[{"mask-r-from":A()}],"mask-image-r-to-color":[{"mask-r-to":A()}],"mask-image-b-from-pos":[{"mask-b-from":K()}],"mask-image-b-to-pos":[{"mask-b-to":K()}],"mask-image-b-from-color":[{"mask-b-from":A()}],"mask-image-b-to-color":[{"mask-b-to":A()}],"mask-image-l-from-pos":[{"mask-l-from":K()}],"mask-image-l-to-pos":[{"mask-l-to":K()}],"mask-image-l-from-color":[{"mask-l-from":A()}],"mask-image-l-to-color":[{"mask-l-to":A()}],"mask-image-x-from-pos":[{"mask-x-from":K()}],"mask-image-x-to-pos":[{"mask-x-to":K()}],"mask-image-x-from-color":[{"mask-x-from":A()}],"mask-image-x-to-color":[{"mask-x-to":A()}],"mask-image-y-from-pos":[{"mask-y-from":K()}],"mask-image-y-to-pos":[{"mask-y-to":K()}],"mask-image-y-from-color":[{"mask-y-from":A()}],"mask-image-y-to-color":[{"mask-y-to":A()}],"mask-image-radial":[{"mask-radial":[Ve,Be]}],"mask-image-radial-from-pos":[{"mask-radial-from":K()}],"mask-image-radial-to-pos":[{"mask-radial-to":K()}],"mask-image-radial-from-color":[{"mask-radial-from":A()}],"mask-image-radial-to-color":[{"mask-radial-to":A()}],"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":M()}],"mask-image-conic-pos":[{"mask-conic":[ft]}],"mask-image-conic-from-pos":[{"mask-conic-from":K()}],"mask-image-conic-to-pos":[{"mask-conic-to":K()}],"mask-image-conic-from-color":[{"mask-conic-from":A()}],"mask-image-conic-to-color":[{"mask-conic-to":A()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:Y()}],"mask-repeat":[{mask:U()}],"mask-size":[{mask:D()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",Ve,Be]}],filter:[{filter:["","none",Ve,Be]}],blur:[{blur:J()}],brightness:[{brightness:[ft,Ve,Be]}],contrast:[{contrast:[ft,Ve,Be]}],"drop-shadow":[{"drop-shadow":["","none",y,Ju,Gu]}],"drop-shadow-color":[{"drop-shadow":A()}],grayscale:[{grayscale:["",ft,Ve,Be]}],"hue-rotate":[{"hue-rotate":[ft,Ve,Be]}],invert:[{invert:["",ft,Ve,Be]}],saturate:[{saturate:[ft,Ve,Be]}],sepia:[{sepia:["",ft,Ve,Be]}],"backdrop-filter":[{"backdrop-filter":["","none",Ve,Be]}],"backdrop-blur":[{"backdrop-blur":J()}],"backdrop-brightness":[{"backdrop-brightness":[ft,Ve,Be]}],"backdrop-contrast":[{"backdrop-contrast":[ft,Ve,Be]}],"backdrop-grayscale":[{"backdrop-grayscale":["",ft,Ve,Be]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[ft,Ve,Be]}],"backdrop-invert":[{"backdrop-invert":["",ft,Ve,Be]}],"backdrop-opacity":[{"backdrop-opacity":[ft,Ve,Be]}],"backdrop-saturate":[{"backdrop-saturate":[ft,Ve,Be]}],"backdrop-sepia":[{"backdrop-sepia":["",ft,Ve,Be]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":R()}],"border-spacing-x":[{"border-spacing-x":R()}],"border-spacing-y":[{"border-spacing-y":R()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",Ve,Be]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[ft,"initial",Ve,Be]}],ease:[{ease:["linear","initial",k,Ve,Be]}],delay:[{delay:[ft,Ve,Be]}],animate:[{animate:["none",C,Ve,Be]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[j,Ve,Be]}],"perspective-origin":[{"perspective-origin":P()}],rotate:[{rotate:ge()}],"rotate-x":[{"rotate-x":ge()}],"rotate-y":[{"rotate-y":ge()}],"rotate-z":[{"rotate-z":ge()}],scale:[{scale:ae()}],"scale-x":[{"scale-x":ae()}],"scale-y":[{"scale-y":ae()}],"scale-z":[{"scale-z":ae()}],"scale-3d":["scale-3d"],skew:[{skew:pe()}],"skew-x":[{"skew-x":pe()}],"skew-y":[{"skew-y":pe()}],transform:[{transform:[Ve,Be,"","none","gpu","cpu"]}],"transform-origin":[{origin:P()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:Se()}],"translate-x":[{"translate-x":Se()}],"translate-y":[{"translate-y":Se()}],"translate-z":[{"translate-z":Se()}],"translate-none":["translate-none"],accent:[{accent:A()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:A()}],"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",Ve,Be]}],"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":R()}],"scroll-mx":[{"scroll-mx":R()}],"scroll-my":[{"scroll-my":R()}],"scroll-ms":[{"scroll-ms":R()}],"scroll-me":[{"scroll-me":R()}],"scroll-mt":[{"scroll-mt":R()}],"scroll-mr":[{"scroll-mr":R()}],"scroll-mb":[{"scroll-mb":R()}],"scroll-ml":[{"scroll-ml":R()}],"scroll-p":[{"scroll-p":R()}],"scroll-px":[{"scroll-px":R()}],"scroll-py":[{"scroll-py":R()}],"scroll-ps":[{"scroll-ps":R()}],"scroll-pe":[{"scroll-pe":R()}],"scroll-pt":[{"scroll-pt":R()}],"scroll-pr":[{"scroll-pr":R()}],"scroll-pb":[{"scroll-pb":R()}],"scroll-pl":[{"scroll-pl":R()}],"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",Ve,Be]}],fill:[{fill:["none",...A()]}],"stroke-w":[{stroke:[ft,Jc,vo,qm]}],stroke:[{stroke:["none",...A()]}],"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"]}},tI=OA(eI);function Mt(...t){return tI(yj(t))}const nI=bj("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 X({className:t,variant:e,size:n,asChild:s=!1,...a}){const i=s?gj:"button";return r.jsx(i,{"data-slot":"button",className:Mt(nI({variant:e,size:n,className:t})),...a})}function re({className:t,type:e,...n}){return r.jsx("input",{type:e,"data-slot":"input",className:Mt("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 sI(){const t=Ki(),[e,n]=b.useState(""),[s,a]=b.useState(""),[i,o]=b.useState(""),[c,u]=b.useState(!1),h=async()=>{o(""),u(!0);try{const f=await Nt("/api/admin",{username:e.trim(),password:s});if((f==null?void 0:f.success)!==!1&&(f!=null&&f.token)){eA(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 r.jsxs("div",{className:"min-h-screen bg-[#0a1628] flex items-center justify-center p-4",children:[r.jsxs("div",{className:"absolute inset-0 overflow-hidden",children:[r.jsx("div",{className:"absolute top-1/4 left-1/4 w-96 h-96 bg-[#38bdac]/5 rounded-full blur-3xl"}),r.jsx("div",{className:"absolute bottom-1/4 right-1/4 w-96 h-96 bg-blue-500/5 rounded-full blur-3xl"})]}),r.jsxs("div",{className:"w-full max-w-md relative z-10",children:[r.jsxs("div",{className:"text-center mb-8",children:[r.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:r.jsx(od,{className:"w-8 h-8 text-[#38bdac]"})}),r.jsx("h1",{className:"text-2xl font-bold text-white mb-2",children:"管理后台"}),r.jsx("p",{className:"text-gray-400",children:"一场SOUL的创业实验场"})]}),r.jsxs("div",{className:"bg-[#0f2137] rounded-2xl p-8 shadow-xl border border-gray-700/50 backdrop-blur-xl",children:[r.jsx("h2",{className:"text-xl font-semibold text-white mb-6 text-center",children:"管理员登录"}),r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{children:[r.jsx("label",{className:"block text-gray-400 text-sm mb-2",children:"用户名"}),r.jsxs("div",{className:"relative",children:[r.jsx(Ao,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-gray-500"}),r.jsx(re,{type:"text",value:e,onChange:f=>n(f.target.value),placeholder:"请输入用户名",className:"pl-10 bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500 focus:border-[#38bdac]"})]})]}),r.jsxs("div",{children:[r.jsx("label",{className:"block text-gray-400 text-sm mb-2",children:"密码"}),r.jsxs("div",{className:"relative",children:[r.jsx(XM,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-5 h-5 text-gray-500"}),r.jsx(re,{type:"password",value:s,onChange:f=>a(f.target.value),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&&r.jsx("div",{className:"bg-red-500/10 text-red-400 text-sm p-3 rounded-lg border border-red-500/20",children:i}),r.jsx(X,{onClick:h,disabled:c,className:"w-full bg-[#38bdac] hover:bg-[#2da396] text-white py-5 disabled:opacity-50",children:c?"登录中...":"登录"})]})]}),r.jsx("p",{className:"text-center text-gray-500 text-xs mt-6",children:"Soul创业实验场 · 后台管理系统"})]})]})}const Ee=b.forwardRef(({className:t,...e},n)=>r.jsx("div",{ref:n,className:Mt("rounded-xl border bg-card text-card-foreground shadow",t),...e}));Ee.displayName="Card";const Je=b.forwardRef(({className:t,...e},n)=>r.jsx("div",{ref:n,className:Mt("flex flex-col space-y-1.5 p-6",t),...e}));Je.displayName="CardHeader";const Ye=b.forwardRef(({className:t,...e},n)=>r.jsx("h3",{ref:n,className:Mt("font-semibold leading-none tracking-tight",t),...e}));Ye.displayName="CardTitle";const Ft=b.forwardRef(({className:t,...e},n)=>r.jsx("p",{ref:n,className:Mt("text-sm text-muted-foreground",t),...e}));Ft.displayName="CardDescription";const Te=b.forwardRef(({className:t,...e},n)=>r.jsx("div",{ref:n,className:Mt("p-6 pt-0",t),...e}));Te.displayName="CardContent";const rI=b.forwardRef(({className:t,...e},n)=>r.jsx("div",{ref:n,className:Mt("flex items-center p-6 pt-0",t),...e}));rI.displayName="CardFooter";const aI={success:{bg:"#f0fdf4",border:"#22c55e",icon:"✓"},error:{bg:"#fef2f2",border:"#ef4444",icon:"✕"},info:{bg:"#eff6ff",border:"#3b82f6",icon:"ℹ"}};function Gm(t,e="info",n=3e3){const s=`toast-${Date.now()}`,a=aI[e],i=document.createElement("div");i.id=s,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(s),n);function h(f){clearTimeout(u);const m=document.getElementById(f);m&&(m.style.opacity="0",m.style.transform="translateY(-8px)",setTimeout(()=>{var g;return(g=m.parentNode)==null?void 0:g.removeChild(m)},250))}}const te={success:(t,e)=>Gm(t,"success",e),error:(t,e)=>Gm(t,"error",e),info:(t,e)=>Gm(t,"info",e)};function dt(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 iI(t,e){const n=b.createContext(e),s=i=>{const{children:o,...c}=i,u=b.useMemo(()=>c,Object.values(c));return r.jsx(n.Provider,{value:u,children:o})};s.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[s,a]}function qi(t,e=[]){let n=[];function s(i,o){const c=b.createContext(o),u=n.length;n=[...n,o];const h=m=>{var k;const{scope:g,children:y,...N}=m,j=((k=g==null?void 0:g[t])==null?void 0:k[u])||c,v=b.useMemo(()=>N,Object.values(N));return r.jsx(j.Provider,{value:v,children:y})};h.displayName=i+"Provider";function f(m,g){var j;const y=((j=g==null?void 0:g[t])==null?void 0:j[u])||c,N=b.useContext(y);if(N)return N;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,[s,oI(a,...e)]}function oI(...t){const e=t[0];if(t.length===1)return e;const n=()=>{const s=t.map(a=>({useScope:a(),scopeName:a.scopeName}));return function(i){const o=s.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 xs=globalThis!=null&&globalThis.document?b.useLayoutEffect:()=>{},lI=Rf[" useId ".trim().toString()]||(()=>{}),cI=0;function Pi(t){const[e,n]=b.useState(lI());return xs(()=>{n(s=>s??String(cI++))},[t]),e?`radix-${e}`:""}var dI=Rf[" useInsertionEffect ".trim().toString()]||xs;function _o({prop:t,defaultProp:e,onChange:n=()=>{},caller:s}){const[a,i,o]=uI({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(`${s} 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,s])}const h=b.useCallback(f=>{var m;if(c){const g=hI(f)?f(t):f;g!==t&&((m=o.current)==null||m.call(o,g))}else i(f)},[c,t,i,o]);return[u,h]}function uI({defaultProp:t,onChange:e}){const[n,s]=b.useState(t),a=b.useRef(n),i=b.useRef(e);return dI(()=>{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,s,i]}function hI(t){return typeof t=="function"}function Sd(t){const e=fI(t),n=b.forwardRef((s,a)=>{const{children:i,...o}=s,c=b.Children.toArray(i),u=c.find(mI);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 r.jsx(e,{...o,ref:a,children:b.isValidElement(h)?b.cloneElement(h,void 0,f):null})}return r.jsx(e,{...o,ref:a,children:i})});return n.displayName=`${t}.Slot`,n}function fI(t){const e=b.forwardRef((n,s)=>{const{children:a,...i}=n;if(b.isValidElement(a)){const o=xI(a),c=gI(i,a.props);return a.type!==b.Fragment&&(c.ref=s?a0(s,o):o),b.cloneElement(a,c)}return b.Children.count(a)>1?b.Children.only(null):null});return e.displayName=`${t}.SlotClone`,e}var pI=Symbol("radix.slottable");function mI(t){return b.isValidElement(t)&&typeof t.type=="function"&&"__radixId"in t.type&&t.type.__radixId===pI}function gI(t,e){const n={...e};for(const s in e){const a=t[s],i=e[s];/^on[A-Z]/.test(s)?a&&i?n[s]=(...c)=>{const u=i(...c);return a(...c),u}:a&&(n[s]=a):s==="style"?n[s]={...a,...i}:s==="className"&&(n[s]=[a,i].filter(Boolean).join(" "))}return{...t,...n}}function xI(t){var s,a;let e=(s=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:s.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 yI=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],pt=yI.reduce((t,e)=>{const n=Sd(`Primitive.${e}`),s=b.forwardRef((a,i)=>{const{asChild:o,...c}=a,u=o?n:e;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),r.jsx(u,{...c,ref:i})});return s.displayName=`Primitive.${e}`,{...t,[e]:s}},{});function bI(t,e){t&&Bd.flushSync(()=>t.dispatchEvent(e))}function Fi(t){const e=b.useRef(t);return b.useEffect(()=>{e.current=t}),b.useMemo(()=>(...n)=>{var s;return(s=e.current)==null?void 0:s.call(e,...n)},[])}function vI(t,e=globalThis==null?void 0:globalThis.document){const n=Fi(t);b.useEffect(()=>{const s=a=>{a.key==="Escape"&&n(a)};return e.addEventListener("keydown",s,{capture:!0}),()=>e.removeEventListener("keydown",s,{capture:!0})},[n,e])}var NI="DismissableLayer",ex="dismissableLayer.update",wI="dismissableLayer.pointerDownOutside",jI="dismissableLayer.focusOutside",l1,Rj=b.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),o0=b.forwardRef((t,e)=>{const{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:s,onPointerDownOutside:a,onFocusOutside:i,onInteractOutside:o,onDismiss:c,...u}=t,h=b.useContext(Rj),[f,m]=b.useState(null),g=(f==null?void 0:f.ownerDocument)??(globalThis==null?void 0:globalThis.document),[,y]=b.useState({}),N=Tt(e,L=>m(L)),j=Array.from(h.layers),[v]=[...h.layersWithOutsidePointerEventsDisabled].slice(-1),k=j.indexOf(v),C=f?j.indexOf(f):-1,E=h.layersWithOutsidePointerEventsDisabled.size>0,M=C>=k,P=CI(L=>{const R=L.target,O=[...h.branches].some(se=>se.contains(R));!M||O||(a==null||a(L),o==null||o(L),L.defaultPrevented||c==null||c())},g),H=EI(L=>{const R=L.target;[...h.branches].some(se=>se.contains(R))||(i==null||i(L),o==null||o(L),L.defaultPrevented||c==null||c())},g);return vI(L=>{C===h.layers.size-1&&(s==null||s(L),!L.defaultPrevented&&c&&(L.preventDefault(),c()))},g),b.useEffect(()=>{if(f)return n&&(h.layersWithOutsidePointerEventsDisabled.size===0&&(l1=g.body.style.pointerEvents,g.body.style.pointerEvents="none"),h.layersWithOutsidePointerEventsDisabled.add(f)),h.layers.add(f),c1(),()=>{n&&h.layersWithOutsidePointerEventsDisabled.size===1&&(g.body.style.pointerEvents=l1)}},[f,g,n,h]),b.useEffect(()=>()=>{f&&(h.layers.delete(f),h.layersWithOutsidePointerEventsDisabled.delete(f),c1())},[f,h]),b.useEffect(()=>{const L=()=>y({});return document.addEventListener(ex,L),()=>document.removeEventListener(ex,L)},[]),r.jsx(pt.div,{...u,ref:N,style:{pointerEvents:E?M?"auto":"none":void 0,...t.style},onFocusCapture:dt(t.onFocusCapture,H.onFocusCapture),onBlurCapture:dt(t.onBlurCapture,H.onBlurCapture),onPointerDownCapture:dt(t.onPointerDownCapture,P.onPointerDownCapture)})});o0.displayName=NI;var kI="DismissableLayerBranch",SI=b.forwardRef((t,e)=>{const n=b.useContext(Rj),s=b.useRef(null),a=Tt(e,s);return b.useEffect(()=>{const i=s.current;if(i)return n.branches.add(i),()=>{n.branches.delete(i)}},[n.branches]),r.jsx(pt.div,{...t,ref:a})});SI.displayName=kI;function CI(t,e=globalThis==null?void 0:globalThis.document){const n=Fi(t),s=b.useRef(!1),a=b.useRef(()=>{});return b.useEffect(()=>{const i=c=>{if(c.target&&!s.current){let u=function(){Pj(wI,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);s.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:()=>s.current=!0}}function EI(t,e=globalThis==null?void 0:globalThis.document){const n=Fi(t),s=b.useRef(!1);return b.useEffect(()=>{const a=i=>{i.target&&!s.current&&Pj(jI,n,{originalEvent:i},{discrete:!1})};return e.addEventListener("focusin",a),()=>e.removeEventListener("focusin",a)},[e,n]),{onFocusCapture:()=>s.current=!0,onBlurCapture:()=>s.current=!1}}function c1(){const t=new CustomEvent(ex);document.dispatchEvent(t)}function Pj(t,e,n,{discrete:s}){const a=n.originalEvent.target,i=new CustomEvent(t,{bubbles:!1,cancelable:!0,detail:n});e&&a.addEventListener(t,e,{once:!0}),s?bI(a,i):a.dispatchEvent(i)}var Jm="focusScope.autoFocusOnMount",Ym="focusScope.autoFocusOnUnmount",d1={bubbles:!1,cancelable:!0},TI="FocusScope",l0=b.forwardRef((t,e)=>{const{loop:n=!1,trapped:s=!1,onMountAutoFocus:a,onUnmountAutoFocus:i,...o}=t,[c,u]=b.useState(null),h=Fi(a),f=Fi(i),m=b.useRef(null),g=Tt(e,j=>u(j)),y=b.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;b.useEffect(()=>{if(s){let j=function(E){if(y.paused||!c)return;const M=E.target;c.contains(M)?m.current=M:vi(m.current,{select:!0})},v=function(E){if(y.paused||!c)return;const M=E.relatedTarget;M!==null&&(c.contains(M)||vi(m.current,{select:!0}))},k=function(E){if(document.activeElement===document.body)for(const P of E)P.removedNodes.length>0&&vi(c)};document.addEventListener("focusin",j),document.addEventListener("focusout",v);const C=new MutationObserver(k);return c&&C.observe(c,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",j),document.removeEventListener("focusout",v),C.disconnect()}}},[s,c,y.paused]),b.useEffect(()=>{if(c){h1.add(y);const j=document.activeElement;if(!c.contains(j)){const k=new CustomEvent(Jm,d1);c.addEventListener(Jm,h),c.dispatchEvent(k),k.defaultPrevented||(MI(OI(Oj(c)),{select:!0}),document.activeElement===j&&vi(c))}return()=>{c.removeEventListener(Jm,h),setTimeout(()=>{const k=new CustomEvent(Ym,d1);c.addEventListener(Ym,f),c.dispatchEvent(k),k.defaultPrevented||vi(j??document.body,{select:!0}),c.removeEventListener(Ym,f),h1.remove(y)},0)}}},[c,h,f,y]);const N=b.useCallback(j=>{if(!n&&!s||y.paused)return;const v=j.key==="Tab"&&!j.altKey&&!j.ctrlKey&&!j.metaKey,k=document.activeElement;if(v&&k){const C=j.currentTarget,[E,M]=AI(C);E&&M?!j.shiftKey&&k===M?(j.preventDefault(),n&&vi(E,{select:!0})):j.shiftKey&&k===E&&(j.preventDefault(),n&&vi(M,{select:!0})):k===C&&j.preventDefault()}},[n,s,y.paused]);return r.jsx(pt.div,{tabIndex:-1,...o,ref:g,onKeyDown:N})});l0.displayName=TI;function MI(t,{select:e=!1}={}){const n=document.activeElement;for(const s of t)if(vi(s,{select:e}),document.activeElement!==n)return}function AI(t){const e=Oj(t),n=u1(e,t),s=u1(e.reverse(),t);return[n,s]}function Oj(t){const e=[],n=document.createTreeWalker(t,NodeFilter.SHOW_ELEMENT,{acceptNode:s=>{const a=s.tagName==="INPUT"&&s.type==="hidden";return s.disabled||s.hidden||a?NodeFilter.FILTER_SKIP:s.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)e.push(n.currentNode);return e}function u1(t,e){for(const n of t)if(!II(n,{upTo:e}))return n}function II(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 RI(t){return t instanceof HTMLInputElement&&"select"in t}function vi(t,{select:e=!1}={}){if(t&&t.focus){const n=document.activeElement;t.focus({preventScroll:!0}),t!==n&&RI(t)&&e&&t.select()}}var h1=PI();function PI(){let t=[];return{add(e){const n=t[0];e!==n&&(n==null||n.pause()),t=f1(t,e),t.unshift(e)},remove(e){var n;t=f1(t,e),(n=t[0])==null||n.resume()}}}function f1(t,e){const n=[...t],s=n.indexOf(e);return s!==-1&&n.splice(s,1),n}function OI(t){return t.filter(e=>e.tagName!=="A")}var DI="Portal",c0=b.forwardRef((t,e)=>{var c;const{container:n,...s}=t,[a,i]=b.useState(!1);xs(()=>i(!0),[]);const o=n||a&&((c=globalThis==null?void 0:globalThis.document)==null?void 0:c.body);return o?Uw.createPortal(r.jsx(pt.div,{...s,ref:e}),o):null});c0.displayName=DI;function LI(t,e){return b.useReducer((n,s)=>e[n][s]??n,t)}var Vd=t=>{const{present:e,children:n}=t,s=_I(e),a=typeof n=="function"?n({present:s.isPresent}):b.Children.only(n),i=Tt(s.ref,zI(a));return typeof n=="function"||s.isPresent?b.cloneElement(a,{ref:i}):null};Vd.displayName="Presence";function _I(t){const[e,n]=b.useState(),s=b.useRef(null),a=b.useRef(t),i=b.useRef("none"),o=t?"mounted":"unmounted",[c,u]=LI(o,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return b.useEffect(()=>{const h=Yu(s.current);i.current=c==="mounted"?h:"none"},[c]),xs(()=>{const h=s.current,f=a.current;if(f!==t){const g=i.current,y=Yu(h);t?u("MOUNT"):y==="none"||(h==null?void 0:h.display)==="none"?u("UNMOUNT"):u(f&&g!==y?"ANIMATION_OUT":"UNMOUNT"),a.current=t}},[t,u]),xs(()=>{if(e){let h;const f=e.ownerDocument.defaultView??window,m=y=>{const j=Yu(s.current).includes(CSS.escape(y.animationName));if(y.target===e&&j&&(u("ANIMATION_END"),!a.current)){const v=e.style.animationFillMode;e.style.animationFillMode="forwards",h=f.setTimeout(()=>{e.style.animationFillMode==="forwards"&&(e.style.animationFillMode=v)})}},g=y=>{y.target===e&&(i.current=Yu(s.current))};return e.addEventListener("animationstart",g),e.addEventListener("animationcancel",m),e.addEventListener("animationend",m),()=>{f.clearTimeout(h),e.removeEventListener("animationstart",g),e.removeEventListener("animationcancel",m),e.removeEventListener("animationend",m)}}else u("ANIMATION_END")},[e,u]),{isPresent:["mounted","unmountSuspended"].includes(c),ref:b.useCallback(h=>{s.current=h?getComputedStyle(h):null,n(h)},[])}}function Yu(t){return(t==null?void 0:t.animationName)||"none"}function zI(t){var s,a;let e=(s=Object.getOwnPropertyDescriptor(t.props,"ref"))==null?void 0:s.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 Qm=0;function Dj(){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()),Qm++,()=>{Qm===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(e=>e.remove()),Qm--}},[])}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,s=1,a=arguments.length;s"u")return tR;var e=nR(t),n=document.documentElement.clientWidth,s=window.innerWidth;return{left:e[0],top:e[1],right:e[2],gap:Math.max(0,s-n+e[2]-e[0])}},rR=Fj(),$l="data-scroll-locked",aR=function(t,e,n,s){var a=t.left,i=t.top,o=t.right,c=t.gap;return n===void 0&&(n="margin"),` + .`.concat($I,` { + overflow: hidden `).concat(s,`; + padding-right: `).concat(c,"px ").concat(s,`; + } + body[`).concat($l,`] { + overflow: hidden `).concat(s,`; + overscroll-behavior: contain; + `).concat([e&&"position: relative ".concat(s,";"),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(s,`; + `),n==="padding"&&"padding-right: ".concat(c,"px ").concat(s,";")].filter(Boolean).join(""),` + } + + .`).concat(bh,` { + right: `).concat(c,"px ").concat(s,`; + } + + .`).concat(vh,` { + margin-right: `).concat(c,"px ").concat(s,`; + } + + .`).concat(bh," .").concat(bh,` { + right: 0 `).concat(s,`; + } + + .`).concat(vh," .").concat(vh,` { + margin-right: 0 `).concat(s,`; + } + + body[`).concat($l,`] { + `).concat(BI,": ").concat(c,`px; + } +`)},g1=function(){var t=parseInt(document.body.getAttribute($l)||"0",10);return isFinite(t)?t:0},iR=function(){b.useEffect(function(){return document.body.setAttribute($l,(g1()+1).toString()),function(){var t=g1()-1;t<=0?document.body.removeAttribute($l):document.body.setAttribute($l,t.toString())}},[])},oR=function(t){var e=t.noRelative,n=t.noImportant,s=t.gapMode,a=s===void 0?"margin":s;iR();var i=b.useMemo(function(){return sR(a)},[a]);return b.createElement(rR,{styles:aR(i,!e,a,n?"":"!important")})},tx=!1;if(typeof window<"u")try{var Qu=Object.defineProperty({},"passive",{get:function(){return tx=!0,!0}});window.addEventListener("test",Qu,Qu),window.removeEventListener("test",Qu,Qu)}catch{tx=!1}var Sl=tx?{passive:!1}:!1,lR=function(t){return t.tagName==="TEXTAREA"},$j=function(t,e){if(!(t instanceof Element))return!1;var n=window.getComputedStyle(t);return n[e]!=="hidden"&&!(n.overflowY===n.overflowX&&!lR(t)&&n[e]==="visible")},cR=function(t){return $j(t,"overflowY")},dR=function(t){return $j(t,"overflowX")},x1=function(t,e){var n=e.ownerDocument,s=e;do{typeof ShadowRoot<"u"&&s instanceof ShadowRoot&&(s=s.host);var a=Bj(t,s);if(a){var i=Vj(t,s),o=i[1],c=i[2];if(o>c)return!0}s=s.parentNode}while(s&&s!==n.body);return!1},uR=function(t){var e=t.scrollTop,n=t.scrollHeight,s=t.clientHeight;return[e,n,s]},hR=function(t){var e=t.scrollLeft,n=t.scrollWidth,s=t.clientWidth;return[e,n,s]},Bj=function(t,e){return t==="v"?cR(e):dR(e)},Vj=function(t,e){return t==="v"?uR(e):hR(e)},fR=function(t,e){return t==="h"&&e==="rtl"?-1:1},pR=function(t,e,n,s,a){var i=fR(t,window.getComputedStyle(e).direction),o=i*s,c=n.target,u=e.contains(c),h=!1,f=o>0,m=0,g=0;do{if(!c)break;var y=Vj(t,c),N=y[0],j=y[1],v=y[2],k=j-v-i*N;(N||k)&&Bj(t,c)&&(m+=k,g+=N);var C=c.parentNode;c=C&&C.nodeType===Node.DOCUMENT_FRAGMENT_NODE?C.host:C}while(!u&&c!==document.body||u&&(e.contains(c)||e===c));return(f&&Math.abs(m)<1||!f&&Math.abs(g)<1)&&(h=!0),h},Xu=function(t){return"changedTouches"in t?[t.changedTouches[0].clientX,t.changedTouches[0].clientY]:[0,0]},y1=function(t){return[t.deltaX,t.deltaY]},b1=function(t){return t&&"current"in t?t.current:t},mR=function(t,e){return t[0]===e[0]&&t[1]===e[1]},gR=function(t){return` + .block-interactivity-`.concat(t,` {pointer-events: none;} + .allow-interactivity-`).concat(t,` {pointer-events: all;} +`)},xR=0,Cl=[];function yR(t){var e=b.useRef([]),n=b.useRef([0,0]),s=b.useRef(),a=b.useState(xR++)[0],i=b.useState(Fj)[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 j=FI([t.lockRef.current],(t.shards||[]).map(b1),!0).filter(Boolean);return j.forEach(function(v){return v.classList.add("allow-interactivity-".concat(a))}),function(){document.body.classList.remove("block-interactivity-".concat(a)),j.forEach(function(v){return v.classList.remove("allow-interactivity-".concat(a))})}}},[t.inert,t.lockRef.current,t.shards]);var c=b.useCallback(function(j,v){if("touches"in j&&j.touches.length===2||j.type==="wheel"&&j.ctrlKey)return!o.current.allowPinchZoom;var k=Xu(j),C=n.current,E="deltaX"in j?j.deltaX:C[0]-k[0],M="deltaY"in j?j.deltaY:C[1]-k[1],P,H=j.target,L=Math.abs(E)>Math.abs(M)?"h":"v";if("touches"in j&&L==="h"&&H.type==="range")return!1;var R=window.getSelection(),O=R&&R.anchorNode,se=O?O===H||O.contains(H):!1;if(se)return!1;var ie=x1(L,H);if(!ie)return!0;if(ie?P=L:(P=L==="v"?"h":"v",ie=x1(L,H)),!ie)return!1;if(!s.current&&"changedTouches"in j&&(E||M)&&(s.current=P),!P)return!0;var z=s.current||P;return pR(z,v,j,z==="h"?E:M)},[]),u=b.useCallback(function(j){var v=j;if(!(!Cl.length||Cl[Cl.length-1]!==i)){var k="deltaY"in v?y1(v):Xu(v),C=e.current.filter(function(P){return P.name===v.type&&(P.target===v.target||v.target===P.shadowParent)&&mR(P.delta,k)})[0];if(C&&C.should){v.cancelable&&v.preventDefault();return}if(!C){var E=(o.current.shards||[]).map(b1).filter(Boolean).filter(function(P){return P.contains(v.target)}),M=E.length>0?c(v,E[0]):!o.current.noIsolation;M&&v.cancelable&&v.preventDefault()}}},[]),h=b.useCallback(function(j,v,k,C){var E={name:j,delta:v,target:k,should:C,shadowParent:bR(k)};e.current.push(E),setTimeout(function(){e.current=e.current.filter(function(M){return M!==E})},1)},[]),f=b.useCallback(function(j){n.current=Xu(j),s.current=void 0},[]),m=b.useCallback(function(j){h(j.type,y1(j),j.target,c(j,t.lockRef.current))},[]),g=b.useCallback(function(j){h(j.type,Xu(j),j.target,c(j,t.lockRef.current))},[]);b.useEffect(function(){return Cl.push(i),t.setCallbacks({onScrollCapture:m,onWheelCapture:m,onTouchMoveCapture:g}),document.addEventListener("wheel",u,Sl),document.addEventListener("touchmove",u,Sl),document.addEventListener("touchstart",f,Sl),function(){Cl=Cl.filter(function(j){return j!==i}),document.removeEventListener("wheel",u,Sl),document.removeEventListener("touchmove",u,Sl),document.removeEventListener("touchstart",f,Sl)}},[]);var y=t.removeScrollBar,N=t.inert;return b.createElement(b.Fragment,null,N?b.createElement(i,{styles:gR(a)}):null,y?b.createElement(oR,{noRelative:t.noRelative,gapMode:t.gapMode}):null)}function bR(t){for(var e=null;t!==null;)t instanceof ShadowRoot&&(e=t.host,t=t.host),t=t.parentNode;return e}const vR=GI(zj,yR);var d0=b.forwardRef(function(t,e){return b.createElement(_f,ta({},t,{ref:e,sideCar:vR}))});d0.classNames=_f.classNames;var NR=function(t){if(typeof document>"u")return null;var e=Array.isArray(t)?t[0]:t;return e.ownerDocument.body},El=new WeakMap,Zu=new WeakMap,eh={},tg=0,Hj=function(t){return t&&(t.host||Hj(t.parentNode))},wR=function(t,e){return e.map(function(n){if(t.contains(n))return n;var s=Hj(n);return s&&t.contains(s)?s:(console.error("aria-hidden",n,"in not contained inside",t,". Doing nothing"),null)}).filter(function(n){return!!n})},jR=function(t,e,n,s){var a=wR(e,Array.isArray(t)?t:[t]);eh[n]||(eh[n]=new WeakMap);var i=eh[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(g){if(c.has(g))f(g);else try{var y=g.getAttribute(s),N=y!==null&&y!=="false",j=(El.get(g)||0)+1,v=(i.get(g)||0)+1;El.set(g,j),i.set(g,v),o.push(g),j===1&&N&&Zu.set(g,!0),v===1&&g.setAttribute(n,"true"),N||g.setAttribute(s,"true")}catch(k){console.error("aria-hidden: cannot operate on ",g,k)}})};return f(e),c.clear(),tg++,function(){o.forEach(function(m){var g=El.get(m)-1,y=i.get(m)-1;El.set(m,g),i.set(m,y),g||(Zu.has(m)||m.removeAttribute(s),Zu.delete(m)),y||m.removeAttribute(n)}),tg--,tg||(El=new WeakMap,El=new WeakMap,Zu=new WeakMap,eh={})}},Wj=function(t,e,n){n===void 0&&(n="data-aria-hidden");var s=Array.from(Array.isArray(t)?t:[t]),a=NR(t);return a?(s.push.apply(s,Array.from(a.querySelectorAll("[aria-live], script"))),jR(s,a,n,"aria-hidden")):function(){return null}},zf="Dialog",[Uj]=qi(zf),[kR,Dr]=Uj(zf),Kj=t=>{const{__scopeDialog:e,children:n,open:s,defaultOpen:a,onOpenChange:i,modal:o=!0}=t,c=b.useRef(null),u=b.useRef(null),[h,f]=_o({prop:s,defaultProp:a??!1,onChange:i,caller:zf});return r.jsx(kR,{scope:e,triggerRef:c,contentRef:u,contentId:Pi(),titleId:Pi(),descriptionId:Pi(),open:h,onOpenChange:f,onOpenToggle:b.useCallback(()=>f(m=>!m),[f]),modal:o,children:n})};Kj.displayName=zf;var qj="DialogTrigger",SR=b.forwardRef((t,e)=>{const{__scopeDialog:n,...s}=t,a=Dr(qj,n),i=Tt(e,a.triggerRef);return r.jsx(pt.button,{type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":f0(a.open),...s,ref:i,onClick:dt(t.onClick,a.onOpenToggle)})});SR.displayName=qj;var u0="DialogPortal",[CR,Gj]=Uj(u0,{forceMount:void 0}),Jj=t=>{const{__scopeDialog:e,forceMount:n,children:s,container:a}=t,i=Dr(u0,e);return r.jsx(CR,{scope:e,forceMount:n,children:b.Children.map(s,o=>r.jsx(Vd,{present:n||i.open,children:r.jsx(c0,{asChild:!0,container:a,children:o})}))})};Jj.displayName=u0;var Dh="DialogOverlay",Yj=b.forwardRef((t,e)=>{const n=Gj(Dh,t.__scopeDialog),{forceMount:s=n.forceMount,...a}=t,i=Dr(Dh,t.__scopeDialog);return i.modal?r.jsx(Vd,{present:s||i.open,children:r.jsx(TR,{...a,ref:e})}):null});Yj.displayName=Dh;var ER=Sd("DialogOverlay.RemoveScroll"),TR=b.forwardRef((t,e)=>{const{__scopeDialog:n,...s}=t,a=Dr(Dh,n);return r.jsx(d0,{as:ER,allowPinchZoom:!0,shards:[a.contentRef],children:r.jsx(pt.div,{"data-state":f0(a.open),...s,ref:e,style:{pointerEvents:"auto",...s.style}})})}),zo="DialogContent",Qj=b.forwardRef((t,e)=>{const n=Gj(zo,t.__scopeDialog),{forceMount:s=n.forceMount,...a}=t,i=Dr(zo,t.__scopeDialog);return r.jsx(Vd,{present:s||i.open,children:i.modal?r.jsx(MR,{...a,ref:e}):r.jsx(AR,{...a,ref:e})})});Qj.displayName=zo;var MR=b.forwardRef((t,e)=>{const n=Dr(zo,t.__scopeDialog),s=b.useRef(null),a=Tt(e,n.contentRef,s);return b.useEffect(()=>{const i=s.current;if(i)return Wj(i)},[]),r.jsx(Xj,{...t,ref:a,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:dt(t.onCloseAutoFocus,i=>{var o;i.preventDefault(),(o=n.triggerRef.current)==null||o.focus()}),onPointerDownOutside:dt(t.onPointerDownOutside,i=>{const o=i.detail.originalEvent,c=o.button===0&&o.ctrlKey===!0;(o.button===2||c)&&i.preventDefault()}),onFocusOutside:dt(t.onFocusOutside,i=>i.preventDefault())})}),AR=b.forwardRef((t,e)=>{const n=Dr(zo,t.__scopeDialog),s=b.useRef(!1),a=b.useRef(!1);return r.jsx(Xj,{...t,ref:e,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:i=>{var o,c;(o=t.onCloseAutoFocus)==null||o.call(t,i),i.defaultPrevented||(s.current||(c=n.triggerRef.current)==null||c.focus(),i.preventDefault()),s.current=!1,a.current=!1},onInteractOutside:i=>{var u,h;(u=t.onInteractOutside)==null||u.call(t,i),i.defaultPrevented||(s.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()}})}),Xj=b.forwardRef((t,e)=>{const{__scopeDialog:n,trapFocus:s,onOpenAutoFocus:a,onCloseAutoFocus:i,...o}=t,c=Dr(zo,n),u=b.useRef(null),h=Tt(e,u);return Dj(),r.jsxs(r.Fragment,{children:[r.jsx(l0,{asChild:!0,loop:!0,trapped:s,onMountAutoFocus:a,onUnmountAutoFocus:i,children:r.jsx(o0,{role:"dialog",id:c.contentId,"aria-describedby":c.descriptionId,"aria-labelledby":c.titleId,"data-state":f0(c.open),...o,ref:h,onDismiss:()=>c.onOpenChange(!1)})}),r.jsxs(r.Fragment,{children:[r.jsx(IR,{titleId:c.titleId}),r.jsx(PR,{contentRef:u,descriptionId:c.descriptionId})]})]})}),h0="DialogTitle",Zj=b.forwardRef((t,e)=>{const{__scopeDialog:n,...s}=t,a=Dr(h0,n);return r.jsx(pt.h2,{id:a.titleId,...s,ref:e})});Zj.displayName=h0;var ek="DialogDescription",tk=b.forwardRef((t,e)=>{const{__scopeDialog:n,...s}=t,a=Dr(ek,n);return r.jsx(pt.p,{id:a.descriptionId,...s,ref:e})});tk.displayName=ek;var nk="DialogClose",sk=b.forwardRef((t,e)=>{const{__scopeDialog:n,...s}=t,a=Dr(nk,n);return r.jsx(pt.button,{type:"button",...s,ref:e,onClick:dt(t.onClick,()=>a.onOpenChange(!1))})});sk.displayName=nk;function f0(t){return t?"open":"closed"}var rk="DialogTitleWarning",[YV,ak]=iI(rk,{contentName:zo,titleName:h0,docsSlug:"dialog"}),IR=({titleId:t})=>{const e=ak(rk),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},RR="DialogDescriptionWarning",PR=({contentRef:t,descriptionId:e})=>{const s=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${ak(RR).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(s))},[s,t,e]),null},OR=Kj,DR=Jj,LR=Yj,_R=Qj,zR=Zj,FR=tk,$R=sk;function It(t){return r.jsx(OR,{"data-slot":"dialog",...t})}function BR(t){return r.jsx(DR,{...t})}const ik=b.forwardRef(({className:t,...e},n)=>r.jsx(LR,{ref:n,className:Mt("fixed inset-0 z-50 bg-black/50",t),...e}));ik.displayName="DialogOverlay";const Ct=b.forwardRef(({className:t,children:e,showCloseButton:n=!0,...s},a)=>r.jsxs(BR,{children:[r.jsx(ik,{}),r.jsxs(_R,{ref:a,"aria-describedby":void 0,className:Mt("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),...s,children:[e,n&&r.jsxs($R,{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:[r.jsx(gs,{className:"h-4 w-4"}),r.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));Ct.displayName="DialogContent";function Rt({className:t,...e}){return r.jsx("div",{className:Mt("flex flex-col gap-2 text-center sm:text-left",t),...e})}function sn({className:t,...e}){return r.jsx("div",{className:Mt("flex flex-col-reverse gap-2 sm:flex-row sm:justify-end",t),...e})}function Pt(t){return r.jsx(zR,{className:"text-lg font-semibold leading-none",...t})}function Cd(t){return r.jsx(FR,{className:"text-sm text-muted-foreground",...t})}const VR=bj("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 Ke({className:t,variant:e,asChild:n=!1,...s}){const a=n?gj:"span";return r.jsx(a,{className:Mt(VR({variant:e}),t),...s})}var HR=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],WR=HR.reduce((t,e)=>{const n=mj(`Primitive.${e}`),s=b.forwardRef((a,i)=>{const{asChild:o,...c}=a,u=o?n:e;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),r.jsx(u,{...c,ref:i})});return s.displayName=`Primitive.${e}`,{...t,[e]:s}},{}),UR="Label",ok=b.forwardRef((t,e)=>r.jsx(WR.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())}}));ok.displayName=UR;var lk=ok;const Z=b.forwardRef(({className:t,...e},n)=>r.jsx(lk,{ref:n,className:Mt("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",t),...e}));Z.displayName=lk.displayName;function p0(t){const e=t+"CollectionProvider",[n,s]=qi(e),[a,i]=n(e,{collectionRef:{current:null},itemMap:new Map}),o=j=>{const{scope:v,children:k}=j,C=Cs.useRef(null),E=Cs.useRef(new Map).current;return r.jsx(a,{scope:v,itemMap:E,collectionRef:C,children:k})};o.displayName=e;const c=t+"CollectionSlot",u=Sd(c),h=Cs.forwardRef((j,v)=>{const{scope:k,children:C}=j,E=i(c,k),M=Tt(v,E.collectionRef);return r.jsx(u,{ref:M,children:C})});h.displayName=c;const f=t+"CollectionItemSlot",m="data-radix-collection-item",g=Sd(f),y=Cs.forwardRef((j,v)=>{const{scope:k,children:C,...E}=j,M=Cs.useRef(null),P=Tt(v,M),H=i(f,k);return Cs.useEffect(()=>(H.itemMap.set(M,{ref:M,...E}),()=>void H.itemMap.delete(M))),r.jsx(g,{[m]:"",ref:P,children:C})});y.displayName=f;function N(j){const v=i(t+"CollectionConsumer",j);return Cs.useCallback(()=>{const C=v.collectionRef.current;if(!C)return[];const E=Array.from(C.querySelectorAll(`[${m}]`));return Array.from(v.itemMap.values()).sort((H,L)=>E.indexOf(H.ref.current)-E.indexOf(L.ref.current))},[v.collectionRef,v.itemMap])}return[{Provider:o,Slot:h,ItemSlot:y},N,s]}var KR=b.createContext(void 0);function Ff(t){const e=b.useContext(KR);return t||e||"ltr"}var ng="rovingFocusGroup.onEntryFocus",qR={bubbles:!1,cancelable:!0},Hd="RovingFocusGroup",[nx,ck,GR]=p0(Hd),[JR,dk]=qi(Hd,[GR]),[YR,QR]=JR(Hd),uk=b.forwardRef((t,e)=>r.jsx(nx.Provider,{scope:t.__scopeRovingFocusGroup,children:r.jsx(nx.Slot,{scope:t.__scopeRovingFocusGroup,children:r.jsx(XR,{...t,ref:e})})}));uk.displayName=Hd;var XR=b.forwardRef((t,e)=>{const{__scopeRovingFocusGroup:n,orientation:s,loop:a=!1,dir:i,currentTabStopId:o,defaultCurrentTabStopId:c,onCurrentTabStopIdChange:u,onEntryFocus:h,preventScrollOnEntryFocus:f=!1,...m}=t,g=b.useRef(null),y=Tt(e,g),N=Ff(i),[j,v]=_o({prop:o,defaultProp:c??null,onChange:u,caller:Hd}),[k,C]=b.useState(!1),E=Fi(h),M=ck(n),P=b.useRef(!1),[H,L]=b.useState(0);return b.useEffect(()=>{const R=g.current;if(R)return R.addEventListener(ng,E),()=>R.removeEventListener(ng,E)},[E]),r.jsx(YR,{scope:n,orientation:s,dir:N,loop:a,currentTabStopId:j,onItemFocus:b.useCallback(R=>v(R),[v]),onItemShiftTab:b.useCallback(()=>C(!0),[]),onFocusableItemAdd:b.useCallback(()=>L(R=>R+1),[]),onFocusableItemRemove:b.useCallback(()=>L(R=>R-1),[]),children:r.jsx(pt.div,{tabIndex:k||H===0?-1:0,"data-orientation":s,...m,ref:y,style:{outline:"none",...t.style},onMouseDown:dt(t.onMouseDown,()=>{P.current=!0}),onFocus:dt(t.onFocus,R=>{const O=!P.current;if(R.target===R.currentTarget&&O&&!k){const se=new CustomEvent(ng,qR);if(R.currentTarget.dispatchEvent(se),!se.defaultPrevented){const ie=M().filter(G=>G.focusable),z=ie.find(G=>G.active),ce=ie.find(G=>G.id===j),_=[z,ce,...ie].filter(Boolean).map(G=>G.ref.current);pk(_,f)}}P.current=!1}),onBlur:dt(t.onBlur,()=>C(!1))})})}),hk="RovingFocusGroupItem",fk=b.forwardRef((t,e)=>{const{__scopeRovingFocusGroup:n,focusable:s=!0,active:a=!1,tabStopId:i,children:o,...c}=t,u=Pi(),h=i||u,f=QR(hk,n),m=f.currentTabStopId===h,g=ck(n),{onFocusableItemAdd:y,onFocusableItemRemove:N,currentTabStopId:j}=f;return b.useEffect(()=>{if(s)return y(),()=>N()},[s,y,N]),r.jsx(nx.ItemSlot,{scope:n,id:h,focusable:s,active:a,children:r.jsx(pt.span,{tabIndex:m?0:-1,"data-orientation":f.orientation,...c,ref:e,onMouseDown:dt(t.onMouseDown,v=>{s?f.onItemFocus(h):v.preventDefault()}),onFocus:dt(t.onFocus,()=>f.onItemFocus(h)),onKeyDown:dt(t.onKeyDown,v=>{if(v.key==="Tab"&&v.shiftKey){f.onItemShiftTab();return}if(v.target!==v.currentTarget)return;const k=tP(v,f.orientation,f.dir);if(k!==void 0){if(v.metaKey||v.ctrlKey||v.altKey||v.shiftKey)return;v.preventDefault();let E=g().filter(M=>M.focusable).map(M=>M.ref.current);if(k==="last")E.reverse();else if(k==="prev"||k==="next"){k==="prev"&&E.reverse();const M=E.indexOf(v.currentTarget);E=f.loop?nP(E,M+1):E.slice(M+1)}setTimeout(()=>pk(E))}}),children:typeof o=="function"?o({isCurrentTabStop:m,hasTabStop:j!=null}):o})})});fk.displayName=hk;var ZR={ArrowLeft:"prev",ArrowUp:"prev",ArrowRight:"next",ArrowDown:"next",PageUp:"first",Home:"first",PageDown:"last",End:"last"};function eP(t,e){return e!=="rtl"?t:t==="ArrowLeft"?"ArrowRight":t==="ArrowRight"?"ArrowLeft":t}function tP(t,e,n){const s=eP(t.key,n);if(!(e==="vertical"&&["ArrowLeft","ArrowRight"].includes(s))&&!(e==="horizontal"&&["ArrowUp","ArrowDown"].includes(s)))return ZR[s]}function pk(t,e=!1){const n=document.activeElement;for(const s of t)if(s===n||(s.focus({preventScroll:e}),document.activeElement!==n))return}function nP(t,e){return t.map((n,s)=>t[(e+s)%t.length])}var sP=uk,rP=fk,$f="Tabs",[aP]=qi($f,[dk]),mk=dk(),[iP,m0]=aP($f),gk=b.forwardRef((t,e)=>{const{__scopeTabs:n,value:s,onValueChange:a,defaultValue:i,orientation:o="horizontal",dir:c,activationMode:u="automatic",...h}=t,f=Ff(c),[m,g]=_o({prop:s,onChange:a,defaultProp:i??"",caller:$f});return r.jsx(iP,{scope:n,baseId:Pi(),value:m,onValueChange:g,orientation:o,dir:f,activationMode:u,children:r.jsx(pt.div,{dir:f,"data-orientation":o,...h,ref:e})})});gk.displayName=$f;var xk="TabsList",yk=b.forwardRef((t,e)=>{const{__scopeTabs:n,loop:s=!0,...a}=t,i=m0(xk,n),o=mk(n);return r.jsx(sP,{asChild:!0,...o,orientation:i.orientation,dir:i.dir,loop:s,children:r.jsx(pt.div,{role:"tablist","aria-orientation":i.orientation,...a,ref:e})})});yk.displayName=xk;var bk="TabsTrigger",vk=b.forwardRef((t,e)=>{const{__scopeTabs:n,value:s,disabled:a=!1,...i}=t,o=m0(bk,n),c=mk(n),u=jk(o.baseId,s),h=kk(o.baseId,s),f=s===o.value;return r.jsx(rP,{asChild:!0,...c,focusable:!a,active:f,children:r.jsx(pt.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:dt(t.onMouseDown,m=>{!a&&m.button===0&&m.ctrlKey===!1?o.onValueChange(s):m.preventDefault()}),onKeyDown:dt(t.onKeyDown,m=>{[" ","Enter"].includes(m.key)&&o.onValueChange(s)}),onFocus:dt(t.onFocus,()=>{const m=o.activationMode!=="manual";!f&&!a&&m&&o.onValueChange(s)})})})});vk.displayName=bk;var Nk="TabsContent",wk=b.forwardRef((t,e)=>{const{__scopeTabs:n,value:s,forceMount:a,children:i,...o}=t,c=m0(Nk,n),u=jk(c.baseId,s),h=kk(c.baseId,s),f=s===c.value,m=b.useRef(f);return b.useEffect(()=>{const g=requestAnimationFrame(()=>m.current=!1);return()=>cancelAnimationFrame(g)},[]),r.jsx(Vd,{present:a||f,children:({present:g})=>r.jsx(pt.div,{"data-state":f?"active":"inactive","data-orientation":c.orientation,role:"tabpanel","aria-labelledby":u,hidden:!g,id:h,tabIndex:0,...o,ref:e,style:{...t.style,animationDuration:m.current?"0s":void 0},children:g&&i})})});wk.displayName=Nk;function jk(t,e){return`${t}-trigger-${e}`}function kk(t,e){return`${t}-content-${e}`}var oP=gk,Sk=yk,Ck=vk,Ek=wk;const Wd=oP,sc=b.forwardRef(({className:t,...e},n)=>r.jsx(Sk,{ref:n,className:Mt("inline-flex h-9 items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground",t),...e}));sc.displayName=Sk.displayName;const Zt=b.forwardRef(({className:t,...e},n)=>r.jsx(Ck,{ref:n,className:Mt("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}));Zt.displayName=Ck.displayName;const en=b.forwardRef(({className:t,...e},n)=>r.jsx(Ek,{ref:n,className:Mt("mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",t),...e}));en.displayName=Ek.displayName;function g0(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 x0(t){const[e,n]=b.useState(void 0);return xs(()=>{if(t){n({width:t.offsetWidth,height:t.offsetHeight});const s=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 s.observe(t,{box:"border-box"}),()=>s.unobserve(t)}else n(void 0)},[t]),e}var Bf="Switch",[lP]=qi(Bf),[cP,dP]=lP(Bf),Tk=b.forwardRef((t,e)=>{const{__scopeSwitch:n,name:s,checked:a,defaultChecked:i,required:o,disabled:c,value:u="on",onCheckedChange:h,form:f,...m}=t,[g,y]=b.useState(null),N=Tt(e,E=>y(E)),j=b.useRef(!1),v=g?f||!!g.closest("form"):!0,[k,C]=_o({prop:a,defaultProp:i??!1,onChange:h,caller:Bf});return r.jsxs(cP,{scope:n,checked:k,disabled:c,children:[r.jsx(pt.button,{type:"button",role:"switch","aria-checked":k,"aria-required":o,"data-state":Rk(k),"data-disabled":c?"":void 0,disabled:c,value:u,...m,ref:N,onClick:dt(t.onClick,E=>{C(M=>!M),v&&(j.current=E.isPropagationStopped(),j.current||E.stopPropagation())})}),v&&r.jsx(Ik,{control:g,bubbles:!j.current,name:s,value:u,checked:k,required:o,disabled:c,form:f,style:{transform:"translateX(-100%)"}})]})});Tk.displayName=Bf;var Mk="SwitchThumb",Ak=b.forwardRef((t,e)=>{const{__scopeSwitch:n,...s}=t,a=dP(Mk,n);return r.jsx(pt.span,{"data-state":Rk(a.checked),"data-disabled":a.disabled?"":void 0,...s,ref:e})});Ak.displayName=Mk;var uP="SwitchBubbleInput",Ik=b.forwardRef(({__scopeSwitch:t,control:e,checked:n,bubbles:s=!0,...a},i)=>{const o=b.useRef(null),c=Tt(o,i),u=g0(n),h=x0(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 N=new Event("click",{bubbles:s});y.call(f,n),f.dispatchEvent(N)}},[u,n,s]),r.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}})});Ik.displayName=uP;function Rk(t){return t?"checked":"unchecked"}var Pk=Tk,hP=Ak;const jt=b.forwardRef(({className:t,...e},n)=>r.jsx(Pk,{className:Mt("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:r.jsx(hP,{className:Mt("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")})}));jt.displayName=Pk.displayName;function y0({open:t,onClose:e,userId:n,onUserUpdated:s}){var tn;const[a,i]=b.useState(null),[o,c]=b.useState([]),[u,h]=b.useState([]),[f,m]=b.useState(null),[g,y]=b.useState(!1),[N,j]=b.useState(!1),[v,k]=b.useState(!1),[C,E]=b.useState("info"),[M,P]=b.useState(""),[H,L]=b.useState(""),[R,O]=b.useState([]),[se,ie]=b.useState(""),[z,ce]=b.useState(""),[me,_]=b.useState(""),[G,$]=b.useState(!1),[A,Y]=b.useState({isVip:!1,vipExpireDate:"",vipRole:"",vipName:"",vipProject:"",vipContact:"",vipBio:""}),[U,D]=b.useState([]),[W,le]=b.useState(!1),[ye,Ae]=b.useState(""),[ne,K]=b.useState(""),[J,ge]=b.useState(!1),[ae,pe]=b.useState(!1),[Se,tt]=b.useState(null),[at,Dt]=b.useState(null),[kt,At]=b.useState(""),[Gt,In]=b.useState(""),[Lt,xn]=b.useState(""),[ln,Bs]=b.useState(!1),[yn,is]=b.useState(null),[Un,Kn]=b.useState("");b.useEffect(()=>{t&&n&&(E("info"),tt(null),Dt(null),is(null),Kn(""),ce(""),_(""),_t(),De("/api/db/vip-roles").then(he=>{he!=null&&he.success&&he.data&&D(he.data)}).catch(()=>{}))},[t,n]);async function _t(){if(n){y(!0);try{const he=await De(`/api/db/users?id=${encodeURIComponent(n)}`);if(he!=null&&he.success&&he.user){const xe=he.user;i(xe),P(xe.phone||""),L(xe.nickname||""),At(xe.phone||""),In(xe.wechatId||""),xn(xe.openId||"");try{O(typeof xe.tags=="string"?JSON.parse(xe.tags||"[]"):[])}catch{O([])}Y({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 De(`/api/admin/user/track?userId=${encodeURIComponent(n)}&limit=50`);xe!=null&&xe.success&&xe.tracks&&c(xe.tracks)}catch{c([])}try{const xe=await De(`/api/db/users/referrals?userId=${encodeURIComponent(n)}`);xe!=null&&xe.success&&xe.referrals&&h(xe.referrals)}catch{h([])}try{const xe=await De(`/api/admin/users/${encodeURIComponent(n)}/balance`);xe!=null&&xe.success&&xe.data?m(xe.data):m(null)}catch{m(null)}}catch(he){console.error("Load user detail error:",he)}finally{y(!1)}}}async function qn(){if(!(a!=null&&a.phone)){te.info("用户未绑定手机号,无法同步");return}j(!0);try{const he=await Nt("/api/ckb/sync",{action:"full_sync",phone:a.phone,userId:a.id});he!=null&&he.success?(te.success("同步成功"),_t()):te.error("同步失败: "+(he==null?void 0:he.error))}catch(he){console.error("Sync CKB error:",he),te.error("同步失败")}finally{j(!1)}}async function zn(){if(a){if(A.isVip&&!A.vipExpireDate.trim()){te.error("开启 VIP 请填写有效到期日");return}k(!0);try{const he={id:a.id,phone:M||void 0,nickname:H||void 0,tags:JSON.stringify(R),isVip:A.isVip,vipExpireDate:A.isVip?A.vipExpireDate:void 0,vipRole:A.vipRole||void 0,vipName:A.vipName||void 0,vipProject:A.vipProject||void 0,vipContact:A.vipContact||void 0,vipBio:A.vipBio||void 0},xe=await Ot("/api/db/users",he);xe!=null&&xe.success?(te.success("保存成功"),_t(),s==null||s()):te.error("保存失败: "+(xe==null?void 0:xe.error))}catch(he){console.error("Save user error:",he),te.error("保存失败")}finally{k(!1)}}}const ls=()=>{se&&!R.includes(se)&&(O([...R,se]),ie(""))},q=he=>O(R.filter(xe=>xe!==he));async function He(){if(a){if(!z){te.error("请输入新密码");return}if(z!==me){te.error("两次密码不一致");return}if(z.length<6){te.error("密码至少 6 位");return}$(!0);try{const he=await Ot("/api/db/users",{id:a.id,password:z});he!=null&&he.success?(te.success("修改成功"),ce(""),_("")):te.error("修改失败: "+((he==null?void 0:he.error)||""))}catch{te.error("修改失败")}finally{$(!1)}}}async function mt(){if(!a)return;const he=parseFloat(ye);if(Number.isNaN(he)||he===0){te.error("请输入有效金额(正数增加、负数扣减)");return}ge(!0);try{const xe=await Nt(`/api/admin/users/${a.id}/balance/adjust`,{amount:he,remark:ne||void 0});xe!=null&&xe.success?(te.success("余额已调整"),le(!1),Ae(""),K(""),_t(),s==null||s()):te.error("调整失败: "+((xe==null?void 0:xe.error)||""))}catch{te.error("调整失败")}finally{ge(!1)}}async function $t(){if(!kt&&!Lt&&!Gt){Dt("请至少输入手机号、微信号或 OpenID 中的一项");return}pe(!0),Dt(null),tt(null);try{const he=new URLSearchParams;kt&&he.set("phone",kt),Lt&&he.set("openId",Lt),Gt&&he.set("wechatId",Gt);const xe=await De(`/api/admin/shensheshou/query?${he}`);xe!=null&&xe.success&&xe.data?(tt(xe.data),a&&await ut(xe.data)):Dt((xe==null?void 0:xe.error)||"未查询到数据,该用户可能未在神射手收录")}catch(he){console.error("SSS query error:",he),Dt("请求失败,请检查神射手接口配置")}finally{pe(!1)}}async function ut(he){if(a)try{await Nt("/api/admin/shensheshou/enrich",{userId:a.id,phone:kt||a.phone||"",openId:Lt||a.openId||"",wechatId:Gt||a.wechatId||""}),_t()}catch(xe){console.error("SSS enrich error:",xe)}}async function ot(){if(a){Bs(!0),is(null);try{const he={users:[{phone:a.phone||"",name:a.nickname||"",openId:a.openId||"",tags:R}]},xe=await Nt("/api/admin/shensheshou/ingest",he);xe!=null&&xe.success&&xe.data?is(xe.data):is({error:(xe==null?void 0:xe.error)||"推送失败"})}catch(he){console.error("SSS ingest error:",he),is({error:"请求失败"})}finally{Bs(!1)}}}const xt=he=>{const zt={view_chapter:Ys,purchase:Qg,match:_n,login:Ao,register:Ao,share:Rr,bind_phone:g5,bind_wechat:a5,fill_profile:ld,visit_page:Ll}[he]||Kg;return r.jsx(zt,{className:"w-4 h-4"})};return t?r.jsxs(r.Fragment,{children:[r.jsx(It,{open:t,onOpenChange:()=>e(),children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-4xl max-h-[90vh] overflow-hidden",children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(Ao,{className:"w-5 h-5 text-[#38bdac]"}),"用户详情",(a==null?void 0:a.phone)&&r.jsx(Ke,{className:"bg-green-500/20 text-green-400 border-0 ml-2",children:"已绑定手机"}),(a==null?void 0:a.isVip)&&r.jsx(Ke,{className:"bg-amber-500/20 text-amber-400 border-0",children:"VIP"})]})}),g?r.jsxs("div",{className:"flex items-center justify-center py-20",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):a?r.jsxs("div",{className:"flex flex-col h-[75vh]",children:[r.jsxs("div",{className:"flex items-center gap-4 p-4 bg-[#0a1628] rounded-lg mb-3",children:[r.jsx("div",{className:"w-16 h-16 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-2xl text-[#38bdac] shrink-0",children:a.avatar?r.jsx("img",{src:a.avatar,className:"w-full h-full rounded-full object-cover",alt:""}):((tn=a.nickname)==null?void 0:tn.charAt(0))||"?"}),r.jsxs("div",{className:"flex-1 min-w-0",children:[r.jsxs("div",{className:"flex items-center gap-2 flex-wrap",children:[r.jsx("h3",{className:"text-lg font-bold text-white",children:a.nickname}),a.isAdmin&&r.jsx(Ke,{className:"bg-purple-500/20 text-purple-400 border-0",children:"管理员"}),a.hasFullBook&&r.jsx(Ke,{className:"bg-green-500/20 text-green-400 border-0",children:"全书已购"}),a.vipRole&&r.jsx(Ke,{className:"bg-amber-500/20 text-amber-400 border-0",children:a.vipRole})]}),r.jsxs("p",{className:"text-gray-400 text-sm mt-1",children:[a.phone?`📱 ${a.phone}`:"未绑定手机",a.wechatId&&` · 💬 ${a.wechatId}`,a.mbti&&` · ${a.mbti}`]}),r.jsxs("div",{className:"flex items-center gap-4 mt-1",children:[r.jsxs("p",{className:"text-gray-600 text-xs",children:["ID: ",a.id.slice(0,16),"…"]}),a.referralCode&&r.jsxs("p",{className:"text-xs",children:[r.jsx("span",{className:"text-gray-500",children:"推广码:"}),r.jsx("code",{className:"text-[#38bdac] bg-[#38bdac]/10 px-1.5 py-0.5 rounded",children:a.referralCode})]})]})]}),r.jsxs("div",{className:"text-right shrink-0",children:[r.jsxs("p",{className:"text-[#38bdac] font-bold text-lg",children:["¥",(a.earnings||0).toFixed(2)]}),r.jsx("p",{className:"text-gray-500 text-xs",children:"累计收益"})]})]}),r.jsxs(Wd,{value:C,onValueChange:E,className:"flex-1 flex flex-col overflow-hidden",children:[r.jsxs(sc,{className:"bg-[#0a1628] border border-gray-700/50 p-1 mb-3 flex-wrap h-auto gap-1",children:[r.jsx(Zt,{value:"info",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-xs",children:"基础信息"}),r.jsx(Zt,{value:"tags",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-xs",children:"标签体系"}),r.jsxs(Zt,{value:"journey",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-xs",children:[r.jsx(Ll,{className:"w-3 h-3 mr-1"}),"用户旅程"]}),r.jsx(Zt,{value:"relations",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-xs",children:"关系链路"}),r.jsxs(Zt,{value:"shensheshou",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-xs",children:[r.jsx(Fa,{className:"w-3 h-3 mr-1"}),"用户资料完善"]})]}),r.jsxs(en,{value:"info",className:"flex-1 overflow-auto space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"手机号"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"输入手机号",value:M,onChange:he=>P(he.target.value),disabled:!!(a!=null&&a.phone)}),(a==null?void 0:a.phone)&&r.jsx("p",{className:"text-xs text-gray-500",children:"编辑时手机号不可修改"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"昵称"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"输入昵称",value:H,onChange:he=>L(he.target.value)})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-3 text-sm",children:[a.openId&&r.jsxs("div",{className:"p-3 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"微信 OpenID"}),r.jsx("p",{className:"text-gray-300 font-mono text-xs break-all",children:a.openId})]}),a.region&&r.jsxs("div",{className:"p-3 bg-[#0a1628] rounded-lg flex items-center gap-2",children:[r.jsx(hj,{className:"w-4 h-4 text-gray-500"}),r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-500 text-xs",children:"地区"}),r.jsx("p",{className:"text-white",children:a.region})]})]}),a.industry&&r.jsxs("div",{className:"p-3 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"行业"}),r.jsx("p",{className:"text-white",children:a.industry})]}),a.position&&r.jsxs("div",{className:"p-3 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"职位"}),r.jsx("p",{className:"text-white",children:a.position})]})]}),r.jsxs("div",{className:"grid grid-cols-2 sm:grid-cols-4 gap-4",children:[r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"推荐人数"}),r.jsx("p",{className:"text-2xl font-bold text-white",children:a.referralCount??0})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"待提现"}),r.jsxs("p",{className:"text-2xl font-bold text-yellow-400",children:["¥",(a.pendingEarnings??0).toFixed(2)]})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg flex flex-col justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"当前余额"}),r.jsxs("p",{className:"text-2xl font-bold text-[#38bdac]",children:["¥",((f==null?void 0:f.balance)??0).toFixed(2)]})]}),r.jsx(X,{size:"sm",variant:"outline",className:"mt-2 border-[#38bdac]/50 text-[#38bdac] hover:bg-[#38bdac]/10 text-xs",onClick:()=>{Ae(""),K(""),le(!0)},children:"调整余额"})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"创建时间"}),r.jsx("p",{className:"text-sm text-white",children:a.createdAt?new Date(a.createdAt).toLocaleDateString():"-"})]})]}),r.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-4",children:[r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg border border-gray-700/50",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(uj,{className:"w-4 h-4 text-yellow-400"}),r.jsx("span",{className:"text-white font-medium",children:"修改密码"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(re,{type:"password",className:"bg-[#162840] border-gray-700 text-white",placeholder:"新密码(至少6位)",value:z,onChange:he=>ce(he.target.value)}),r.jsx(re,{type:"password",className:"bg-[#162840] border-gray-700 text-white",placeholder:"确认密码",value:me,onChange:he=>_(he.target.value)}),r.jsx(X,{size:"sm",onClick:He,disabled:G||!z||!me,className:"bg-yellow-500/20 hover:bg-yellow-500/30 text-yellow-400 border border-yellow-500/40",children:G?"保存中...":"确认修改"})]})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg border border-amber-500/20",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(Fl,{className:"w-4 h-4 text-amber-400"}),r.jsx("span",{className:"text-white font-medium",children:"设成超级个体"})]}),r.jsxs("div",{className:"space-y-3",children:[r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsx(Z,{className:"text-gray-400 text-sm",children:"VIP 会员"}),r.jsx(jt,{checked:A.isVip,onCheckedChange:he=>Y(xe=>({...xe,isVip:he}))})]}),A.isVip&&r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"到期日"}),r.jsx(re,{type:"date",className:"bg-[#162840] border-gray-700 text-white text-sm",value:A.vipExpireDate,onChange:he=>Y(xe=>({...xe,vipExpireDate:he.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"角色"}),r.jsxs("select",{className:"w-full bg-[#162840] border border-gray-700 text-white rounded px-2 py-1.5 text-sm",value:A.vipRole,onChange:he=>Y(xe=>({...xe,vipRole:he.target.value})),children:[r.jsx("option",{value:"",children:"请选择"}),U.map(he=>r.jsx("option",{value:he.name,children:he.name},he.id))]})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"展示名"}),r.jsx(re,{className:"bg-[#162840] border-gray-700 text-white text-sm",placeholder:"创业老板排行展示名",value:A.vipName,onChange:he=>Y(xe=>({...xe,vipName:he.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"项目"}),r.jsx(re,{className:"bg-[#162840] border-gray-700 text-white text-sm",placeholder:"如:某某科技",value:A.vipProject,onChange:he=>Y(xe=>({...xe,vipProject:he.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"联系方式"}),r.jsx(re,{className:"bg-[#162840] border-gray-700 text-white text-sm",placeholder:"微信/手机等",value:A.vipContact,onChange:he=>Y(xe=>({...xe,vipContact:he.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"简介"}),r.jsx(re,{className:"bg-[#162840] border-gray-700 text-white text-sm",placeholder:"简短介绍",value:A.vipBio,onChange:he=>Y(xe=>({...xe,vipBio:he.target.value}))})]})]})]})]}),a.isVip&&r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg border border-amber-500/20",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(Fl,{className:"w-4 h-4 text-amber-400"}),r.jsx("span",{className:"text-white font-medium",children:"VIP 信息"}),r.jsx(Ke,{className:"bg-amber-500/20 text-amber-400 border-0 text-xs",children:a.vipRole||"VIP"})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-3 text-sm",children:[a.vipName&&r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"展示名:"}),r.jsx("span",{className:"text-white",children:a.vipName})]}),a.vipProject&&r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"项目:"}),r.jsx("span",{className:"text-white",children:a.vipProject})]}),a.vipContact&&r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"联系方式:"}),r.jsx("span",{className:"text-white",children:a.vipContact})]}),a.vipExpireDate&&r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"到期时间:"}),r.jsx("span",{className:"text-white",children:new Date(a.vipExpireDate).toLocaleDateString()})]})]}),a.vipBio&&r.jsx("p",{className:"text-gray-400 text-sm mt-2",children:a.vipBio})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg border border-purple-500/20",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(zi,{className:"w-4 h-4 text-purple-400"}),r.jsx("span",{className:"text-white font-medium",children:"微信归属"}),r.jsx("span",{className:"text-gray-500 text-xs",children:"该用户归属在哪个微信号下"})]}),r.jsxs("div",{className:"flex gap-2 items-center",children:[r.jsx(re,{className:"bg-[#162840] border-gray-700 text-white flex-1",placeholder:"输入归属微信号(如 wxid_xxxx)",value:Un,onChange:he=>Kn(he.target.value)}),r.jsxs(X,{size:"sm",onClick:async()=>{if(!(!Un||!a))try{await Ot("/api/db/users",{id:a.id,wechatId:Un}),te.success("已保存微信归属"),_t()}catch{te.error("保存失败")}},className:"bg-purple-500/20 hover:bg-purple-500/30 text-purple-400 border border-purple-500/30 shrink-0",children:[r.jsx(wn,{className:"w-4 h-4 mr-1"})," 保存"]})]}),a.wechatId&&r.jsxs("p",{className:"text-gray-500 text-xs mt-2",children:["当前归属:",r.jsx("span",{className:"text-purple-400",children:a.wechatId})]})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center justify-between mb-3",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(Rr,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx("span",{className:"text-white font-medium",children:"存客宝同步"})]}),r.jsx(X,{size:"sm",onClick:qn,disabled:N||!a.phone,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:N?r.jsxs(r.Fragment,{children:[r.jsx(Fe,{className:"w-4 h-4 mr-1 animate-spin"})," 同步中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(Fe,{className:"w-4 h-4 mr-1"})," 同步数据"]})})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4 text-sm",children:[r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"同步状态:"}),a.ckbSyncedAt?r.jsx(Ke,{className:"bg-green-500/20 text-green-400 border-0 ml-1",children:"已同步"}):r.jsx(Ke,{className:"bg-gray-500/20 text-gray-400 border-0 ml-1",children:"未同步"})]}),r.jsxs("div",{children:[r.jsx("span",{className:"text-gray-500",children:"最后同步:"}),r.jsx("span",{className:"text-gray-300 ml-1",children:a.ckbSyncedAt?new Date(a.ckbSyncedAt).toLocaleString():"-"})]})]})]})]}),r.jsxs(en,{value:"tags",className:"flex-1 overflow-auto space-y-4",children:[r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(ld,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx("span",{className:"text-white font-medium",children:"用户标签"}),r.jsx("span",{className:"text-gray-500 text-xs",children:"基于《一场 Soul 的创业实验》维度打标"})]}),r.jsxs("div",{className:"mb-3 p-2.5 bg-[#38bdac]/5 border border-[#38bdac]/20 rounded-lg flex items-center gap-2 text-xs text-gray-400",children:[r.jsx(Ug,{className:"w-3.5 h-3.5 text-[#38bdac] shrink-0"}),"命中的标签自动高亮 · 系统根据行为轨迹和填写资料自动打标 · 手动点击补充或取消"]}),r.jsx("div",{className:"mb-4 space-y-3",children:[{category:"身份类型",tags:["创业者","打工人","自由职业","学生","投资人","合伙人"]},{category:"行业背景",tags:["电商","内容","传统行业","科技/AI","金融","教育","餐饮"]},{category:"痛点标签",tags:["找资源","找方向","找合伙人","想赚钱","想学习","找情感出口"]},{category:"付费意愿",tags:["高意向","已付费","观望中","薅羊毛"]},{category:"MBTI",tags:["ENTJ","INTJ","ENFP","INFP","ENTP","INTP","ESTJ","ISFJ"]}].map(he=>r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1.5",children:he.category}),r.jsx("div",{className:"flex flex-wrap gap-1.5",children:he.tags.map(xe=>r.jsxs("button",{type:"button",onClick:()=>{R.includes(xe)?q(xe):O([...R,xe])},className:`px-2 py-0.5 rounded text-xs border transition-all ${R.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:[R.includes(xe)?"✓ ":"",xe]},xe))})]},he.category))}),r.jsxs("div",{className:"border-t border-gray-700/50 pt-3",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-2",children:"已选标签"}),r.jsxs("div",{className:"flex flex-wrap gap-2 mb-3 min-h-[32px]",children:[R.map((he,xe)=>r.jsxs(Ke,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0 pr-1",children:[he,r.jsx("button",{type:"button",onClick:()=>q(he),className:"ml-1 hover:text-red-400",children:r.jsx(gs,{className:"w-3 h-3"})})]},xe)),R.length===0&&r.jsx("span",{className:"text-gray-600 text-sm",children:"暂未选择标签"})]}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx(re,{className:"bg-[#162840] border-gray-700 text-white flex-1",placeholder:"自定义标签(回车添加)",value:se,onChange:he=>ie(he.target.value),onKeyDown:he=>he.key==="Enter"&&ls()}),r.jsx(X,{onClick:ls,className:"bg-[#38bdac] hover:bg-[#2da396]",children:"添加"})]})]})]}),(()=>{const he=a.tags||a.ckbTags||"";let xe=[];try{const Rn=typeof he=="string"?JSON.parse(he||"[]"):[];xe=Array.isArray(Rn)?Rn:typeof he=="string"?he.split(","):[]}catch{xe=typeof he=="string"?he.split(","):[]}const zt=xe.map(Rn=>String(Rn).trim()).filter(Boolean);return zt.length===0?null:r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-2",children:[r.jsx(ld,{className:"w-4 h-4 text-purple-400"}),r.jsx("span",{className:"text-white font-medium",children:"存客宝标签"})]}),r.jsx("div",{className:"flex flex-wrap gap-2",children:zt.map((Rn,da)=>r.jsx(Ke,{className:"bg-purple-500/20 text-purple-400 border-0",children:Rn},da))})]})})()]}),r.jsxs(en,{value:"journey",className:"flex-1 overflow-auto",children:[r.jsxs("div",{className:"mb-3 p-3 bg-[#0a1628] rounded-lg flex items-center gap-2",children:[r.jsx(Ll,{className:"w-4 h-4 text-[#38bdac]"}),r.jsxs("span",{className:"text-gray-400 text-sm",children:["记录用户从注册到付费的完整行动路径,共 ",o.length," 条记录"]})]}),r.jsx("div",{className:"space-y-2",children:o.length>0?o.map((he,xe)=>r.jsxs("div",{className:"flex items-start gap-3 p-3 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex flex-col items-center",children:[r.jsx("div",{className:"w-8 h-8 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-[#38bdac]",children:xt(he.action)}),xe0?u.map((he,xe)=>{var Rn;const zt=he;return r.jsxs("div",{className:"flex items-center justify-between p-2 bg-[#162840] rounded",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("div",{className:"w-6 h-6 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-xs text-[#38bdac]",children:((Rn=zt.nickname)==null?void 0:Rn.charAt(0))||"?"}),r.jsx("span",{className:"text-white text-sm",children:zt.nickname})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[zt.status==="vip"&&r.jsx(Ke,{className:"bg-green-500/20 text-green-400 border-0 text-xs",children:"已购"}),r.jsx("span",{className:"text-gray-500 text-xs",children:zt.createdAt?new Date(zt.createdAt).toLocaleDateString():""})]})]},zt.id||xe)}):r.jsx("p",{className:"text-gray-500 text-sm text-center py-4",children:"暂无推荐用户"})})]})}),r.jsxs(en,{value:"shensheshou",className:"flex-1 overflow-auto space-y-4",children:[r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(Fa,{className:"w-5 h-5 text-[#38bdac]"}),r.jsx("span",{className:"text-white font-medium",children:"用户资料完善"}),r.jsx("span",{className:"text-gray-500 text-xs",children:"通过多维度查询神射手数据,自动回填用户基础信息"})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-2 mb-3",children:[r.jsxs("div",{children:[r.jsx(Z,{className:"text-gray-500 text-xs mb-1 block",children:"手机号"}),r.jsx(re,{className:"bg-[#162840] border-gray-700 text-white",placeholder:"11位手机号",value:kt,onChange:he=>At(he.target.value)})]}),r.jsxs("div",{children:[r.jsx(Z,{className:"text-gray-500 text-xs mb-1 block",children:"微信号"}),r.jsx(re,{className:"bg-[#162840] border-gray-700 text-white",placeholder:"微信 ID",value:Gt,onChange:he=>In(he.target.value)})]}),r.jsxs("div",{className:"col-span-2",children:[r.jsx(Z,{className:"text-gray-500 text-xs mb-1 block",children:"微信 OpenID"}),r.jsx(re,{className:"bg-[#162840] border-gray-700 text-white",placeholder:"openid_xxxx(自动填入)",value:Lt,onChange:he=>xn(he.target.value)})]})]}),r.jsx(X,{onClick:$t,disabled:ae,className:"w-full bg-[#38bdac] hover:bg-[#2da396] text-white",children:ae?r.jsxs(r.Fragment,{children:[r.jsx(Fe,{className:"w-4 h-4 mr-1 animate-spin"})," 查询并自动回填中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(Ba,{className:"w-4 h-4 mr-1"})," 查询并自动完善用户资料"]})}),r.jsx("p",{className:"text-gray-600 text-xs mt-2",children:"查询成功后,神射手返回的标签将自动同步到该用户"}),at&&r.jsx("div",{className:"mt-3 p-3 bg-red-500/10 border border-red-500/30 rounded-lg text-red-400 text-sm",children:at}),Se&&r.jsxs("div",{className:"mt-3 space-y-3",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[r.jsxs("div",{className:"p-3 bg-[#162840] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"神射手 RFM 分"}),r.jsx("p",{className:"text-2xl font-bold text-[#38bdac]",children:Se.rfm_score??"-"})]}),r.jsxs("div",{className:"p-3 bg-[#162840] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"用户等级"}),r.jsx("p",{className:"text-2xl font-bold text-white",children:Se.user_level??"-"})]})]}),Se.tags&&Se.tags.length>0&&r.jsxs("div",{className:"p-3 bg-[#162840] rounded-lg",children:[r.jsx("p",{className:"text-gray-500 text-xs mb-2",children:"神射手标签"}),r.jsx("div",{className:"flex flex-wrap gap-2",children:Se.tags.map((he,xe)=>r.jsx(Ke,{className:"bg-[#38bdac]/10 text-[#38bdac] border border-[#38bdac]/20",children:he},xe))})]}),Se.last_active&&r.jsxs("div",{className:"text-sm text-gray-500",children:["最近活跃:",Se.last_active]})]})]}),r.jsxs("div",{className:"p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center justify-between mb-3",children:[r.jsxs("div",{children:[r.jsxs("div",{className:"flex items-center gap-2 mb-1",children:[r.jsx(Fa,{className:"w-4 h-4 text-purple-400"}),r.jsx("span",{className:"text-white font-medium",children:"推送用户数据到神射手"})]}),r.jsx("p",{className:"text-gray-500 text-xs",children:"将本用户信息(手机号、昵称、标签等)同步至神射手,自动完善用户画像"})]}),r.jsx(X,{onClick:ot,disabled:ln||!a.phone,variant:"outline",className:"border-purple-500/40 text-purple-400 hover:bg-purple-500/10 bg-transparent shrink-0 ml-4",children:ln?r.jsxs(r.Fragment,{children:[r.jsx(Fe,{className:"w-4 h-4 mr-1 animate-spin"})," 推送中"]}):r.jsxs(r.Fragment,{children:[r.jsx(Fa,{className:"w-4 h-4 mr-1"})," 推送"]})})]}),!a.phone&&r.jsx("p",{className:"text-yellow-500/70 text-xs",children:"⚠ 用户未绑定手机号,无法推送"}),yn&&r.jsx("div",{className:"mt-3 p-3 bg-[#162840] rounded-lg text-sm",children:yn.error?r.jsx("p",{className:"text-red-400",children:String(yn.error)}):r.jsxs("div",{className:"space-y-1",children:[r.jsxs("p",{className:"text-green-400 flex items-center gap-1",children:[r.jsx(Ug,{className:"w-4 h-4"})," 推送成功"]}),yn.enriched!==void 0&&r.jsxs("p",{className:"text-gray-400",children:["自动补全标签数:",String(yn.new_tags_added??0)]})]})})]})]})]}),r.jsxs("div",{className:"flex justify-end gap-2 pt-3 border-t border-gray-700 mt-3",children:[r.jsxs(X,{variant:"outline",onClick:e,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(gs,{className:"w-4 h-4 mr-2"}),"关闭"]}),r.jsxs(X,{onClick:zn,disabled:v,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),v?"保存中...":"保存修改"]})]})]}):r.jsx("div",{className:"text-center py-12 text-gray-500",children:"用户不存在"})]})}),r.jsx(It,{open:W,onOpenChange:le,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white",showCloseButton:!0,children:[r.jsx(Rt,{children:r.jsx(Pt,{children:"调整余额"})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"调整金额(元)"}),r.jsx(re,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white mt-1",placeholder:"正数增加,负数扣减,如 10 或 -5",value:ye,onChange:he=>Ae(he.target.value)})]}),r.jsxs("div",{children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"备注(可选)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white mt-1",placeholder:"如:活动补偿",value:ne,onChange:he=>K(he.target.value)})]})]}),r.jsxs("div",{className:"flex justify-end gap-2",children:[r.jsx(X,{variant:"outline",onClick:()=>le(!1),className:"border-gray-600 text-gray-300",children:"取消"}),r.jsx(X,{onClick:mt,disabled:J,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:J?"提交中...":"确认调整"})]})]})})]}):null}function fP(){const t=Ki(),[e,n]=b.useState(!0),[s,a]=b.useState(!0),[i,o]=b.useState(!0),[c,u]=b.useState([]),[h,f]=b.useState([]),[m,g]=b.useState(0),[y,N]=b.useState(0),[j,v]=b.useState(0),[k,C]=b.useState(0),[E,M]=b.useState(null),[P,H]=b.useState(null),[L,R]=b.useState(!1),[O,se]=b.useState(0),[ie,z]=b.useState(!1),[ce,me]=b.useState(null),[_,G]=b.useState("week"),[$,A]=b.useState(null),[Y,U]=b.useState(!1),D=K=>{const J=K;if((J==null?void 0:J.status)===401)M("登录已过期,请重新登录");else{if((J==null?void 0:J.name)==="AbortError")return;M("加载失败,请检查网络或联系管理员")}};async function W(K){const J=K?{signal:K}:void 0;n(!0),M(null);try{const pe=await De("/api/admin/dashboard/stats",J);pe!=null&&pe.success&&(g(pe.totalUsers??0),N(pe.paidOrderCount??0),v(pe.totalRevenue??0),C(pe.conversionRate??0))}catch(pe){if((pe==null?void 0:pe.name)!=="AbortError"){console.error("stats 失败,尝试 overview 降级",pe);try{const Se=await De("/api/admin/dashboard/overview",J);Se!=null&&Se.success&&(g(Se.totalUsers??0),N(Se.paidOrderCount??0),v(Se.totalRevenue??0),C(Se.conversionRate??0))}catch(Se){D(Se)}}}finally{n(!1)}try{const pe=await De("/api/admin/balance/summary",J);pe!=null&&pe.success&&pe.data&&se(pe.data.totalGifted??0)}catch{}try{const pe=await De("/api/db/ckb-plan-stats",J);pe!=null&&pe.success&&pe.data?me({ckbTotal:pe.data.ckbTotal??0,withContact:pe.data.withContact??0}):me(null)}catch{me(null)}a(!0),o(!0);const ge=async()=>{try{const pe=await De("/api/admin/dashboard/recent-orders?limit=10",J);if(pe!=null&&pe.success&&pe.recentOrders)f(pe.recentOrders);else throw new Error("no data")}catch(pe){if((pe==null?void 0:pe.name)!=="AbortError")try{const Se=await De("/api/admin/orders?page=1&pageSize=20&status=paid",J),at=((Se==null?void 0:Se.orders)??[]).filter(Dt=>["paid","completed","success"].includes(Dt.status||""));f(at.slice(0,5))}catch{f([])}}finally{a(!1)}},ae=async()=>{try{const pe=await De("/api/admin/dashboard/new-users",J);if(pe!=null&&pe.success&&pe.newUsers)u(pe.newUsers);else throw new Error("no data")}catch(pe){if((pe==null?void 0:pe.name)!=="AbortError")try{const Se=await De("/api/db/users?page=1&pageSize=10",J);u((Se==null?void 0:Se.users)??[])}catch{u([])}}finally{o(!1)}};await Promise.all([ge(),ae()])}async function le(K){const J=K||_;U(!0);try{const ge=await De(`/api/admin/track/stats?period=${J}`);ge!=null&&ge.success&&A({total:ge.total??0,byModule:ge.byModule??{}})}catch{A(null)}finally{U(!1)}}b.useEffect(()=>{const K=new AbortController;W(K.signal),le();const J=setInterval(()=>{W(),le()},3e4);return()=>{K.abort(),clearInterval(J)}},[]);const ye=m,Ae=K=>{const J=K.productType||"",ge=K.description||"";if(J==="balance_recharge")return{title:`余额充值 ¥${typeof K.amount=="number"?K.amount.toFixed(2):parseFloat(String(K.amount||"0")).toFixed(2)}`,subtitle:"余额充值"};if(J==="gift_pay")return{title:`代付 ¥${typeof K.amount=="number"?K.amount.toFixed(2):parseFloat(String(K.amount||"0")).toFixed(2)}`,subtitle:"好友代付"};if(J==="gift_pay_batch"){const ae=typeof K.amount=="number"?K.amount.toFixed(2):parseFloat(String(K.amount||"0")).toFixed(2);return{title:ge||`代付分享 ¥${ae}`,subtitle:"代付分享"}}if(J==="section"&&ge.includes("代付领取"))return{title:ge.replace("代付领取 - ",""),subtitle:"代付领取"};if(ge){if(J==="section"&&ge.includes("章节")){if(ge.includes("-")){const ae=ge.split("-");if(ae.length>=3)return{title:`第${ae[1]}章 第${ae[2]}节`,subtitle:"《一场Soul的创业实验》"}}return{title:ge,subtitle:"章节购买"}}return J==="fullbook"||ge.includes("全书")?{title:"《一场Soul的创业实验》",subtitle:"全书购买"}:J==="vip"||ge.includes("VIP")?{title:"超级个体开通费用",subtitle:"超级个体"}:J==="match"||ge.includes("伙伴")?{title:"找伙伴匹配",subtitle:"功能服务"}:{title:ge,subtitle:J==="section"?"单章":J==="fullbook"?"全书":"其他"}}return J==="section"?{title:`章节 ${K.productId||""}`,subtitle:"单章购买"}:J==="fullbook"?{title:"《一场Soul的创业实验》",subtitle:"全书购买"}:J==="vip"?{title:"超级个体开通费用",subtitle:"超级个体"}:J==="match"?{title:"找伙伴匹配",subtitle:"功能服务"}:{title:"未知商品",subtitle:J||"其他"}},ne=[{title:"总用户数",value:e?null:ye,sub:null,icon:_n,color:"text-blue-400",bg:"bg-blue-500/20",link:"/users"},{title:"总收入",value:e?null:`¥${(j??0).toFixed(2)}`,sub:O>0?`含代付 ¥${O.toFixed(2)}`:null,icon:cd,color:"text-[#38bdac]",bg:"bg-[#38bdac]/20",link:"/orders"},{title:"订单数",value:e?null:y,sub:null,icon:Qg,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:Ys,color:"text-orange-400",bg:"bg-orange-500/20",link:"/distribution"},{title:"存客宝获客",value:ce?ce.ckbTotal??0:null,sub:(ce==null?void 0:ce.withContact)!=null?`含联系方式 ${ce.withContact} 人`:null,icon:dd,color:"text-cyan-400",bg:"bg-cyan-500/20",link:"/users?tab=leads"}];return r.jsxs("div",{className:"p-8 w-full",children:[r.jsx("h1",{className:"text-2xl font-bold mb-8 text-white",children:"数据概览"}),E&&r.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:[r.jsx("span",{children:E}),r.jsx("button",{type:"button",onClick:()=>W(),className:"text-amber-400 hover:text-amber-300 underline",children:"重试"})]}),r.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8",children:ne.map((K,J)=>r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl cursor-pointer hover:border-[#38bdac]/50 transition-colors group",onClick:()=>K.link&&t(K.link),children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between pb-2",children:[r.jsx(Ye,{className:"text-sm font-medium text-gray-400",children:K.title}),r.jsx("div",{className:`p-2 rounded-lg ${K.bg}`,children:r.jsx(K.icon,{className:`w-4 h-4 ${K.color}`})})]}),r.jsx(Te,{children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("div",{className:"text-2xl font-bold text-white min-h-8 flex items-center",children:K.value!=null?K.value:r.jsxs("span",{className:"inline-flex items-center gap-2 text-gray-500",children:[r.jsx(Fe,{className:"w-4 h-4 animate-spin"}),"加载中"]})}),K.sub&&r.jsx("p",{className:"text-xs text-gray-500 mt-1",children:K.sub})]}),r.jsx(Dl,{className:"w-5 h-5 text-gray-600 group-hover:text-[#38bdac] transition-colors"})]})})]},J))}),r.jsxs("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-8",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between",children:[r.jsx(Ye,{className:"text-white",children:"最近订单"}),r.jsxs("button",{type:"button",onClick:()=>W(),disabled:s||i,className:"text-xs text-gray-400 hover:text-[#38bdac] flex items-center gap-1 disabled:opacity-50",title:"刷新",children:[s||i?r.jsx(Fe,{className:"w-3.5 h-3.5 animate-spin"}):r.jsx(Fe,{className:"w-3.5 h-3.5"}),"刷新(每 30 秒自动更新)"]})]}),r.jsx(Te,{children:r.jsx("div",{className:"space-y-3",children:s&&h.length===0?r.jsxs("div",{className:"flex flex-col items-center justify-center py-12 text-gray-500",children:[r.jsx(Fe,{className:"w-8 h-8 animate-spin mb-2"}),r.jsx("span",{className:"text-sm",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[h.slice(0,ie?10:4).map(K=>{var Se;const J=K.referrerId?c.find(tt=>tt.id===K.referrerId):void 0,ge=K.referralCode||(J==null?void 0:J.referralCode)||(J==null?void 0:J.nickname)||(K.referrerId?String(K.referrerId).slice(0,8):""),ae=Ae(K),pe=K.userNickname||((Se=c.find(tt=>tt.id===K.userId))==null?void 0:Se.nickname)||"匿名用户";return r.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:[r.jsxs("div",{className:"flex items-start gap-3 flex-1",children:[K.userAvatar?r.jsx("img",{src:K.userAvatar,alt:pe,className:"w-9 h-9 rounded-full object-cover flex-shrink-0 mt-0.5",onError:tt=>{tt.currentTarget.style.display="none";const at=tt.currentTarget.nextElementSibling;at&&at.classList.remove("hidden")}}):null,r.jsx("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 mt-0.5 ${K.userAvatar?"hidden":""}`,children:pe.charAt(0)}),r.jsxs("div",{className:"flex-1 min-w-0",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-1",children:[r.jsx("button",{type:"button",onClick:()=>{K.userId&&(H(K.userId),R(!0))},className:"text-sm text-[#38bdac] hover:text-[#2da396] hover:underline text-left",children:pe}),r.jsx("span",{className:"text-gray-600",children:"·"}),r.jsx("span",{className:"text-sm font-medium text-white truncate",children:ae.title})]}),r.jsxs("div",{className:"flex items-center gap-2 text-xs text-gray-500",children:[ae.subtitle&&ae.subtitle!=="章节购买"&&r.jsx("span",{className:"px-1.5 py-0.5 bg-gray-700/50 rounded",children:ae.subtitle}),r.jsx("span",{children:new Date(K.createdAt||0).toLocaleString("zh-CN",{month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"})})]}),ge&&r.jsxs("p",{className:"text-xs text-gray-600 mt-1",children:["推荐: ",ge]})]})]}),r.jsxs("div",{className:"text-right ml-4 flex-shrink-0",children:[r.jsxs("p",{className:"text-sm font-bold text-[#38bdac]",children:["+¥",Number(K.amount).toFixed(2)]}),r.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:K.paymentMethod||"微信"})]})]},K.id)}),h.length>4&&!ie&&r.jsx("button",{type:"button",onClick:()=>z(!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&&!s&&r.jsxs("div",{className:"text-center py-12",children:[r.jsx(Qg,{className:"w-12 h-12 text-gray-600 mx-auto mb-3"}),r.jsx("p",{className:"text-gray-500",children:"暂无订单数据"})]})]})})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"新注册用户"})}),r.jsx(Te,{children:r.jsx("div",{className:"space-y-3",children:i&&c.length===0?r.jsxs("div",{className:"flex flex-col items-center justify-center py-12 text-gray-500",children:[r.jsx(Fe,{className:"w-8 h-8 animate-spin mb-2"}),r.jsx("span",{className:"text-sm",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[c.slice(0,5).map(K=>{var J;return r.jsxs("div",{className:"flex items-center justify-between p-4 bg-[#0a1628] rounded-lg border border-gray-700/30",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx("div",{className:"w-10 h-10 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm font-medium text-[#38bdac]",children:((J=K.nickname)==null?void 0:J.charAt(0))||"?"}),r.jsxs("div",{children:[r.jsx("button",{type:"button",onClick:()=>{H(K.id),R(!0)},className:"text-sm font-medium text-[#38bdac] hover:text-[#2da396] hover:underline text-left",children:K.nickname||"匿名用户"}),r.jsx("p",{className:"text-xs text-gray-500",children:K.phone||"-"})]})]}),r.jsx("p",{className:"text-xs text-gray-400",children:K.createdAt?new Date(K.createdAt).toLocaleDateString():"-"})]},K.id)}),c.length===0&&!i&&r.jsx("p",{className:"text-gray-500 text-center py-8",children:"暂无用户数据"})]})})})]})]}),r.jsxs(Ee,{className:"mt-8 bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between",children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Wg,{className:"w-5 h-5 text-[#38bdac]"}),"分类标签点击统计"]}),r.jsx("div",{className:"flex items-center gap-2",children:["today","week","month","all"].map(K=>r.jsx("button",{type:"button",onClick:()=>{G(K),le(K)},className:`px-3 py-1 text-xs rounded-full transition-colors ${_===K?"bg-[#38bdac] text-white":"bg-gray-700/50 text-gray-400 hover:bg-gray-700"}`,children:{today:"今日",week:"本周",month:"本月",all:"全部"}[K]},K))})]}),r.jsx(Te,{children:Y&&!$?r.jsxs("div",{className:"flex items-center justify-center py-12 text-gray-500",children:[r.jsx(Fe,{className:"w-6 h-6 animate-spin mr-2"}),r.jsx("span",{children:"加载中..."})]}):$&&Object.keys($.byModule).length>0?r.jsxs("div",{className:"space-y-6",children:[r.jsxs("p",{className:"text-sm text-gray-400",children:["总点击 ",r.jsx("span",{className:"text-white font-bold text-lg",children:$.total})," 次"]}),r.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",children:Object.entries($.byModule).sort((K,J)=>J[1].reduce((ge,ae)=>ge+ae.count,0)-K[1].reduce((ge,ae)=>ge+ae.count,0)).map(([K,J])=>{const ge=J.reduce((pe,Se)=>pe+Se.count,0),ae={home:"首页",chapters:"目录",read:"阅读",my:"我的",vip:"VIP",wallet:"钱包",match:"找伙伴",referral:"推广",search:"搜索",settings:"设置",about:"关于",other:"其他"};return r.jsxs("div",{className:"bg-[#0a1628] rounded-lg border border-gray-700/30 p-4",children:[r.jsxs("div",{className:"flex items-center justify-between mb-3",children:[r.jsx("span",{className:"text-sm font-medium text-[#38bdac]",children:ae[K]||K}),r.jsxs("span",{className:"text-xs text-gray-500",children:[ge," 次"]})]}),r.jsx("div",{className:"space-y-2",children:J.sort((pe,Se)=>Se.count-pe.count).slice(0,8).map((pe,Se)=>{const tt={开始匹配:"开始匹配",mentor:"导师顾问",team:"团队招募",investor:"资源对接",充值:"充值",退款:"退款",wallet:"钱包",设置:"设置",VIP:"VIP会员",推广:"推广中心",目录:"目录",搜索:"搜索",匹配:"找伙伴",settings:"设置",expired:"已过期",active:"活跃",converted:"已转化",fill_profile:"完善资料",register:"注册",purchase:"购买",btn_click:"按钮点击",nav_click:"导航点击",card_click:"卡片点击",tab_click:"标签切换",rule_trigger:"规则触发",view_chapter:"浏览章节",链接卡若:"链接卡若",更多分享:"更多分享",分享朋友圈文案:"分享朋友圈",选择金额10:"选择金额10元"},at={btn_click:"按钮点击",nav_click:"导航点击",card_click:"卡片点击",tab_click:"标签切换",purchase:"购买",register:"注册",rule_trigger:"规则触发",view_chapter:"浏览章节"},Dt=tt[pe.target]||pe.target||at[pe.action]||pe.action;return r.jsxs("div",{className:"flex items-center justify-between text-xs",children:[r.jsx("span",{className:"text-gray-300 truncate mr-2",title:`${pe.action}: ${pe.target}`,children:Dt}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[r.jsx("div",{className:"w-16 h-1.5 bg-gray-700 rounded-full overflow-hidden",children:r.jsx("div",{className:"h-full bg-[#38bdac] rounded-full",style:{width:`${ge>0?pe.count/ge*100:0}%`}})}),r.jsx("span",{className:"text-gray-400 w-8 text-right",children:pe.count})]})]},Se)})})]},K)})})]}):r.jsxs("div",{className:"text-center py-12",children:[r.jsx(Wg,{className:"w-12 h-12 text-gray-600 mx-auto mb-3"}),r.jsx("p",{className:"text-gray-500",children:"暂无点击数据"}),r.jsx("p",{className:"text-gray-600 text-xs mt-1",children:"小程序端接入埋点后,数据将在此实时展示"})]})})]}),r.jsx(y0,{open:L,onClose:()=>{R(!1),H(null)},userId:P,onUserUpdated:()=>W()})]})}const ss=b.forwardRef(({className:t,...e},n)=>r.jsx("div",{className:"relative w-full overflow-auto",children:r.jsx("table",{ref:n,className:Mt("w-full caption-bottom text-sm",t),...e})}));ss.displayName="Table";const rs=b.forwardRef(({className:t,...e},n)=>r.jsx("thead",{ref:n,className:Mt("[&_tr]:border-b",t),...e}));rs.displayName="TableHeader";const as=b.forwardRef(({className:t,...e},n)=>r.jsx("tbody",{ref:n,className:Mt("[&_tr:last-child]:border-0",t),...e}));as.displayName="TableBody";const it=b.forwardRef(({className:t,...e},n)=>r.jsx("tr",{ref:n,className:Mt("border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",t),...e}));it.displayName="TableRow";const we=b.forwardRef(({className:t,...e},n)=>r.jsx("th",{ref:n,className:Mt("h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",t),...e}));we.displayName="TableHead";const ve=b.forwardRef(({className:t,...e},n)=>r.jsx("td",{ref:n,className:Mt("p-4 align-middle [&:has([role=checkbox])]:pr-0",t),...e}));ve.displayName="TableCell";function b0(t,e){const[n,s]=b.useState(t);return b.useEffect(()=>{const a=setTimeout(()=>s(t),e);return()=>clearTimeout(a)},[t,e]),n}function Fs({page:t,totalPages:e,total:n,pageSize:s,onPageChange:a,onPageSizeChange:i,pageSizeOptions:o=[10,20,50,100]}){return e<=1&&!i?null:r.jsxs("div",{className:"flex items-center justify-between gap-4 py-4 px-5 border-t border-gray-700/50",children:[r.jsxs("div",{className:"flex items-center gap-2 text-sm text-gray-400",children:[r.jsxs("span",{children:["共 ",n," 条"]}),i&&r.jsx("select",{value:s,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=>r.jsxs("option",{value:c,children:[c," 条/页"]},c))})]}),e>1&&r.jsxs("div",{className:"flex items-center gap-2",children:[r.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:"首页"}),r.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:"上一页"}),r.jsxs("span",{className:"px-3 py-1 text-gray-400 text-sm",children:[t," / ",e]}),r.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:"下一页"}),r.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 pP(){const[t,e]=b.useState([]),[n,s]=b.useState([]),[a,i]=b.useState(0),[o,c]=b.useState(0),[u,h]=b.useState(0),[f,m]=b.useState(1),[g,y]=b.useState(10),[N,j]=b.useState(""),v=b0(N,300),[k,C]=b.useState("all"),[E,M]=b.useState(!0),[P,H]=b.useState(null),[L,R]=b.useState(null),[O,se]=b.useState(""),[ie,z]=b.useState(!1);async function ce(){M(!0),H(null);try{const U=k==="all"?"":k==="completed"?"completed":k,D=new URLSearchParams({page:String(f),pageSize:String(g),...U&&{status:U},...v&&{search:v}}),[W,le]=await Promise.all([De(`/api/admin/orders?${D}`),De("/api/db/users?page=1&pageSize=500")]);W!=null&&W.success&&(e(W.orders||[]),i(W.total??0),c(W.totalRevenue??0),h(W.todayRevenue??0)),le!=null&&le.success&&le.users&&s(le.users)}catch(U){console.error("加载订单失败",U),H("加载订单失败,请检查网络后重试")}finally{M(!1)}}b.useEffect(()=>{m(1)},[v,k]),b.useEffect(()=>{ce()},[f,g,v,k]);const me=U=>{var D;return U.userNickname||((D=n.find(W=>W.id===U.userId))==null?void 0:D.nickname)||"匿名用户"},_=U=>{var D;return((D=n.find(W=>W.id===U))==null?void 0:D.phone)||"-"},G=U=>{const D=U.productType||U.type||"",W=U.description||"";if(D==="balance_recharge")return{name:`余额充值 ¥${Number(U.amount||0).toFixed(2)}`,type:"余额充值"};if(W){if(D==="section"&&(W.includes("章节")||W.includes("代付领取"))){if(W.includes("代付领取"))return{name:W.replace("代付领取 - ",""),type:"代付领取"};if(W.includes("-")){const le=W.split("-");if(le.length>=3)return{name:`第${le[1]}章 第${le[2]}节`,type:"《一场Soul的创业实验》"}}return{name:W,type:"章节购买"}}return D==="fullbook"||W.includes("全书")?{name:"《一场Soul的创业实验》",type:"全书购买"}:D==="vip"||W.includes("VIP")?{name:"超级个体开通费用",type:"超级个体"}:D==="match"||W.includes("伙伴")?{name:"找伙伴匹配",type:"功能服务"}:{name:W,type:"其他"}}return D==="section"?{name:`章节 ${U.productId||U.sectionId||""}`,type:"单章"}:D==="fullbook"?{name:"《一场Soul的创业实验》",type:"全书"}:D==="vip"?{name:"超级个体开通费用",type:"超级个体"}:D==="match"?{name:"找伙伴匹配",type:"功能"}:{name:"未知商品",type:D||"其他"}},$=Math.ceil(a/g)||1;async function A(){var U;if(!(!(L!=null&&L.orderSn)&&!(L!=null&&L.id))){z(!0),H(null);try{const D=await Ot("/api/admin/orders/refund",{orderSn:L.orderSn||L.id,reason:O||void 0});D!=null&&D.success?(R(null),se(""),ce()):H((D==null?void 0:D.error)||"退款失败")}catch(D){const W=D;H(((U=W==null?void 0:W.data)==null?void 0:U.error)||"退款失败,请检查网络后重试")}finally{z(!1)}}}function Y(){if(t.length===0){te.info("暂无数据可导出");return}const U=["订单号","用户","手机号","商品","金额","支付方式","状态","退款原因","分销佣金","下单时间"],D=t.map(ne=>{const K=G(ne);return[ne.orderSn||ne.id||"",me(ne),_(ne.userId),K.name,Number(ne.amount||0).toFixed(2),ne.paymentMethod==="wechat"?"微信支付":ne.paymentMethod==="balance"?"余额支付":ne.paymentMethod==="alipay"?"支付宝":ne.paymentMethod||"微信支付",ne.status==="refunded"?"已退款":ne.status==="paid"||ne.status==="completed"?"已完成":ne.status==="pending"||ne.status==="created"?"待支付":"已失败",ne.status==="refunded"&&ne.refundReason?ne.refundReason:"-",ne.referrerEarnings?Number(ne.referrerEarnings).toFixed(2):"-",ne.createdAt?new Date(ne.createdAt).toLocaleString("zh-CN"):""].join(",")}),W="\uFEFF"+[U.join(","),...D].join(` +`),le=new Blob([W],{type:"text/csv;charset=utf-8"}),ye=URL.createObjectURL(le),Ae=document.createElement("a");Ae.href=ye,Ae.download=`订单列表_${new Date().toISOString().slice(0,10)}.csv`,Ae.click(),URL.revokeObjectURL(ye)}return r.jsxs("div",{className:"p-8 w-full",children:[P&&r.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:[r.jsx("span",{children:P}),r.jsx("button",{type:"button",onClick:()=>H(null),className:"hover:text-red-300",children:"×"})]}),r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"订单管理"}),r.jsxs("p",{className:"text-gray-400 mt-1",children:["共 ",t.length," 笔订单"]})]}),r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsxs(X,{variant:"outline",onClick:ce,disabled:E,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${E?"animate-spin":""}`}),"刷新"]}),r.jsxs("div",{className:"flex items-center gap-2 text-sm",children:[r.jsx("span",{className:"text-gray-400",children:"总收入:"}),r.jsxs("span",{className:"text-[#38bdac] font-bold",children:["¥",o.toFixed(2)]}),r.jsx("span",{className:"text-gray-600",children:"|"}),r.jsx("span",{className:"text-gray-400",children:"今日:"}),r.jsxs("span",{className:"text-[#FFD700] font-bold",children:["¥",u.toFixed(2)]})]})]})]}),r.jsxs("div",{className:"flex items-center gap-4 mb-6",children:[r.jsxs("div",{className:"relative flex-1 max-w-md",children:[r.jsx(Ba,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-500"}),r.jsx(re,{type:"text",placeholder:"搜索订单号/用户/章节...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white placeholder:text-gray-500",value:N,onChange:U=>j(U.target.value)})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(lj,{className:"w-4 h-4 text-gray-400"}),r.jsxs("select",{value:k,onChange:U=>C(U.target.value),className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:[r.jsx("option",{value:"all",children:"全部状态"}),r.jsx("option",{value:"completed",children:"已完成"}),r.jsx("option",{value:"pending",children:"待支付"}),r.jsx("option",{value:"created",children:"已创建"}),r.jsx("option",{value:"failed",children:"已失败"}),r.jsx("option",{value:"refunded",children:"已退款"})]})]}),r.jsxs(X,{variant:"outline",onClick:Y,disabled:t.length===0,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(mM,{className:"w-4 h-4 mr-2"}),"导出 CSV"]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Te,{className:"p-0",children:E?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs("div",{children:[r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"订单号"}),r.jsx(we,{className:"text-gray-400",children:"用户"}),r.jsx(we,{className:"text-gray-400",children:"商品"}),r.jsx(we,{className:"text-gray-400",children:"金额"}),r.jsx(we,{className:"text-gray-400",children:"支付方式"}),r.jsx(we,{className:"text-gray-400",children:"状态"}),r.jsx(we,{className:"text-gray-400",children:"退款原因"}),r.jsx(we,{className:"text-gray-400",children:"分销佣金"}),r.jsx(we,{className:"text-gray-400",children:"下单时间"}),r.jsx(we,{className:"text-gray-400",children:"操作"})]})}),r.jsxs(as,{children:[t.map(U=>{const D=G(U);return r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsxs(ve,{className:"font-mono text-xs text-gray-400",children:[(U.orderSn||U.id||"").slice(0,12),"..."]}),r.jsx(ve,{children:r.jsxs("div",{children:[r.jsxs("p",{className:"text-white text-sm flex items-center gap-2",children:[me(U),U.paymentMethod==="gift_pay"&&r.jsx(Ke,{className:"bg-emerald-500/20 text-emerald-400 hover:bg-emerald-500/20 border-0 text-xs",children:"代付领取"}),U.payerUserId&&U.paymentMethod!=="gift_pay"&&r.jsx(Ke,{className:"bg-amber-500/20 text-amber-400 hover:bg-amber-500/20 border-0 text-xs",children:"代付"})]}),r.jsx("p",{className:"text-gray-500 text-xs",children:_(U.userId)}),U.payerUserId&&U.payerNickname&&r.jsxs("p",{className:"text-amber-400/80 text-xs mt-0.5",children:[U.paymentMethod==="gift_pay"?"赠送人:":"代付人:",U.payerNickname]})]})}),r.jsx(ve,{children:r.jsxs("div",{children:[r.jsxs("p",{className:"text-white text-sm flex items-center gap-2",children:[D.name,(U.productType||U.type)==="vip"&&r.jsx(Ke,{className:"bg-amber-500/20 text-amber-400 hover:bg-amber-500/20 border-0 text-xs",children:"超级个体"})]}),r.jsx("p",{className:"text-gray-500 text-xs",children:D.type})]})}),r.jsxs(ve,{className:"text-[#38bdac] font-bold",children:["¥",Number(U.amount||0).toFixed(2)]}),r.jsx(ve,{className:"text-gray-300",children:U.paymentMethod==="wechat"?"微信支付":U.paymentMethod==="balance"?"余额支付":U.paymentMethod==="alipay"?"支付宝":U.paymentMethod||"微信支付"}),r.jsx(ve,{children:U.status==="refunded"?r.jsx(Ke,{className:"bg-gray-500/20 text-gray-400 hover:bg-gray-500/20 border-0",children:"已退款"}):U.status==="paid"||U.status==="completed"?r.jsx(Ke,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"已完成"}):U.status==="pending"||U.status==="created"?r.jsx(Ke,{className:"bg-yellow-500/20 text-yellow-400 hover:bg-yellow-500/20 border-0",children:"待支付"}):r.jsx(Ke,{className:"bg-red-500/20 text-red-400 hover:bg-red-500/20 border-0",children:"已失败"})}),r.jsx(ve,{className:"text-gray-400 text-sm max-w-[120px] truncate",title:U.refundReason,children:U.status==="refunded"&&U.refundReason?U.refundReason:"-"}),r.jsx(ve,{className:"text-[#FFD700]",children:U.referrerEarnings?`¥${Number(U.referrerEarnings).toFixed(2)}`:"-"}),r.jsx(ve,{className:"text-gray-400 text-sm",children:new Date(U.createdAt).toLocaleString("zh-CN")}),r.jsx(ve,{children:(U.status==="paid"||U.status==="completed")&&U.paymentMethod!=="balance"&&r.jsxs(X,{variant:"outline",size:"sm",className:"border-orange-500/50 text-orange-400 hover:bg-orange-500/20",onClick:()=>{R(U),se("")},children:[r.jsx(fj,{className:"w-3 h-3 mr-1"}),"退款"]})})]},U.id)}),t.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:10,className:"text-center py-12 text-gray-500",children:"暂无订单数据"})})]})]}),r.jsx(Fs,{page:f,totalPages:$,total:a,pageSize:g,onPageChange:m,onPageSizeChange:U=>{y(U),m(1)}})]})})}),r.jsx(It,{open:!!L,onOpenChange:U=>!U&&R(null),children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[r.jsx(Rt,{children:r.jsx(Pt,{className:"text-white",children:"订单退款"})}),L&&r.jsxs("div",{className:"space-y-4",children:[r.jsxs("p",{className:"text-gray-400 text-sm",children:["订单号:",L.orderSn||L.id]}),r.jsxs("p",{className:"text-gray-400 text-sm",children:["退款金额:¥",Number(L.amount||0).toFixed(2)]}),r.jsxs("div",{children:[r.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"退款原因(选填)"}),r.jsx("div",{className:"form-input",children:r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"如:用户申请退款",value:O,onChange:U=>se(U.target.value)})})]}),r.jsx("p",{className:"text-orange-400/80 text-xs",children:"退款将原路退回至用户微信,且无法撤销,请确认后再操作。"})]}),r.jsxs(sn,{children:[r.jsx(X,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:()=>R(null),disabled:ie,children:"取消"}),r.jsx(X,{className:"bg-orange-500 hover:bg-orange-600 text-white",onClick:A,disabled:ie,children:ie?"退款中...":"确认退款"})]})]})})]})}const rc=b.forwardRef(({className:t,...e},n)=>r.jsx("textarea",{className:Mt("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}));rc.displayName="Textarea";const th=[{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 mP(){var Hr,bn,so,ba,Wr;const[t,e]=tj(),n=t.get("pool"),s=t.get("tab")||"users",[a,i]=b.useState([]),[o,c]=b.useState(0),[u,h]=b.useState(1),[f,m]=b.useState(10),[g,y]=b.useState(""),N=b0(g,300),j=n==="vip"?"vip":n==="complete"?"complete":"all",[v,k]=b.useState(j),[C,E]=b.useState(!0),[M,P]=b.useState(!1),[H,L]=b.useState(null),[R,O]=b.useState(!1),[se,ie]=b.useState("desc");b.useEffect(()=>{n==="vip"?k("vip"):n==="complete"?k("complete"):n==="all"&&k("all")},[n]);const[z,ce]=b.useState(!1),[me,_]=b.useState(null),[G,$]=b.useState(!1),[A,Y]=b.useState(!1),[U,D]=b.useState({referrals:[],stats:{}}),[W,le]=b.useState(!1),[ye,Ae]=b.useState(null),[ne,K]=b.useState(!1),[J,ge]=b.useState(null),[ae,pe]=b.useState({phone:"",nickname:"",password:"",isAdmin:!1,hasFullBook:!1}),[Se,tt]=b.useState([]),[at,Dt]=b.useState(!1),[kt,At]=b.useState(!1),[Gt,In]=b.useState(null),[Lt,xn]=b.useState({title:"",description:"",trigger:"",sort:0,enabled:!0}),[ln,Bs]=b.useState([]),[yn,is]=b.useState(!1),[Un,Kn]=b.useState(null),[_t,qn]=b.useState(null),[zn,ls]=b.useState({}),[q,He]=b.useState(!1),[mt,$t]=b.useState([]),[ut,ot]=b.useState(0),[xt,tn]=b.useState(1),[he]=b.useState(20),[xe,zt]=b.useState(!1),Rn=b.useCallback(async()=>{zt(!0);try{const F=await De(`/api/db/ckb-leads?mode=contact&page=${xt}&pageSize=${he}`);F!=null&&F.success&&($t(F.records||[]),ot(F.total??0))}catch{$t([]),ot(0)}finally{zt(!1)}},[xt,he]);b.useEffect(()=>{t.get("tab")==="leads"&&Rn()},[t.get("tab"),xt,Rn]);const[da,ua]=b.useState(null),_r=b.useCallback(async()=>{try{const F=await De("/api/admin/users/online-stats");F!=null&&F.success&&typeof F.onlineCount=="number"?ua(F.onlineCount):ua(0)}catch{ua(null)}},[]);b.useEffect(()=>{_r();const F=setInterval(_r,1e4);return()=>clearInterval(F)},[_r]);async function Zs(F=!1){var Pe;E(!0),F&&P(!0),L(null);try{if(R){const _e=new URLSearchParams({search:N,limit:String(f*5)}),lt=await De(`/api/db/users/rfm?${_e}`);if(lt!=null&<.success){let cn=lt.users||[];se==="asc"&&(cn=[...cn].reverse());const ct=(u-1)*f;i(cn.slice(ct,ct+f)),c(((Pe=lt.users)==null?void 0:Pe.length)??0),cn.length===0&&(O(!1),L("暂无订单数据,RFM 排序需要用户有购买记录后才能生效"))}else O(!1),L((lt==null?void 0:lt.error)||"RFM 加载失败,已切回普通模式")}else{const _e=new URLSearchParams({page:String(u),pageSize:String(f),search:N,...v==="vip"&&{vip:"true"},...v==="complete"&&{pool:"complete"}}),lt=await De(`/api/db/users?${_e}`);lt!=null&<.success?(i(lt.users||[]),c(lt.total??0)):L((lt==null?void 0:lt.error)||"加载失败")}}catch(_e){console.error("Load users error:",_e),L("网络错误")}finally{E(!1),F&&P(!1)}}b.useEffect(()=>{h(1)},[N,v,R]),b.useEffect(()=>{Zs()},[u,f,N,v,R,se]);const ha=Math.ceil(o/f)||1,Xo=()=>{R?se==="desc"?ie("asc"):(O(!1),ie("desc")):(O(!0),ie("desc"))},fa=F=>({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"})[F||""]||"bg-gray-500/20 text-gray-400";async function Zi(F){var Pe;if(confirm("确定要删除这个用户吗?"))try{const _e=await ea(`/api/db/users?id=${encodeURIComponent(F)}`);_e!=null&&_e.success?(te.success("已删除"),Zs()):te.error("删除失败: "+((_e==null?void 0:_e.error)||"未知错误"))}catch(_e){const lt=_e,cn=((Pe=lt==null?void 0:lt.data)==null?void 0:Pe.error)||(lt==null?void 0:lt.message)||"网络错误";te.error("删除失败: "+cn)}}const pa=F=>{_(F),pe({phone:F.phone||"",nickname:F.nickname||"",password:"",isAdmin:!!(F.isAdmin??!1),hasFullBook:!!(F.hasFullBook??!1)}),ce(!0)},dc=()=>{_(null),pe({phone:"",nickname:"",password:"",isAdmin:!1,hasFullBook:!1}),ce(!0)};async function mr(){if(!ae.phone||!ae.nickname){te.error("请填写手机号和昵称");return}$(!0);try{if(me){const F=await Ot("/api/db/users",{id:me.id,phone:ae.phone||void 0,nickname:ae.nickname,isAdmin:ae.isAdmin,hasFullBook:ae.hasFullBook,...ae.password&&{password:ae.password}});if(!(F!=null&&F.success)){te.error("更新失败: "+((F==null?void 0:F.error)||""));return}}else{const F=await Nt("/api/db/users",{phone:ae.phone,nickname:ae.nickname,password:ae.password,isAdmin:ae.isAdmin});if(!(F!=null&&F.success)){te.error("创建失败: "+((F==null?void 0:F.error)||""));return}}ce(!1),Zs()}catch{te.error("保存失败")}finally{$(!1)}}async function ma(F){Ae(F),Y(!0),le(!0);try{const Pe=await De(`/api/db/users/referrals?userId=${encodeURIComponent(F.id)}`);Pe!=null&&Pe.success?D({referrals:Pe.referrals||[],stats:Pe.stats||{}}):D({referrals:[],stats:{}})}catch{D({referrals:[],stats:{}})}finally{le(!1)}}const Vs=b.useCallback(async()=>{Dt(!0);try{const F=await De("/api/db/user-rules");F!=null&&F.success&&tt(F.rules||[])}catch{}finally{Dt(!1)}},[]);async function gr(){if(!Lt.title){te.error("请填写规则标题");return}$(!0);try{if(Gt){const F=await Ot("/api/db/user-rules",{id:Gt.id,...Lt});if(!(F!=null&&F.success)){te.error("更新失败: "+((F==null?void 0:F.error)||""));return}}else{const F=await Nt("/api/db/user-rules",Lt);if(!(F!=null&&F.success)){te.error("创建失败: "+((F==null?void 0:F.error)||""));return}}At(!1),Vs()}catch{te.error("保存失败")}finally{$(!1)}}async function eo(F){if(confirm("确定删除?"))try{const Pe=await ea(`/api/db/user-rules?id=${F}`);Pe!=null&&Pe.success&&Vs()}catch{}}async function Zo(F){try{await Ot("/api/db/user-rules",{id:F.id,enabled:!F.enabled}),Vs()}catch{}}const yt=b.useCallback(async()=>{is(!0);try{const F=await De("/api/db/vip-members?limit=500");if(F!=null&&F.success&&F.data){const Pe=[...F.data].map((_e,lt)=>({..._e,vipSort:typeof _e.vipSort=="number"?_e.vipSort:lt+1}));Pe.sort((_e,lt)=>(_e.vipSort??999999)-(lt.vipSort??999999)),Bs(Pe)}else F&&F.error&&te.error(F.error)}catch{te.error("加载超级个体列表失败")}finally{is(!1)}},[]),[kn,zr]=b.useState(!1),[xr,to]=b.useState(null),[yr,ga]=b.useState(""),[Fr,er]=b.useState(!1),Ja=["创业者","资源整合者","技术达人","投资人","产品经理","流量操盘手"],uc=F=>{to(F),ga(F.vipRole||""),zr(!0)},Jt=async F=>{const Pe=F.trim();if(xr){if(!Pe){te.error("请选择或输入标签");return}er(!0);try{const _e=await Ot("/api/db/users",{id:xr.id,vipRole:Pe});if(!(_e!=null&&_e.success)){te.error((_e==null?void 0:_e.error)||"更新超级个体标签失败");return}te.success("已更新超级个体标签"),zr(!1),to(null),await yt()}catch{te.error("更新超级个体标签失败")}finally{er(!1)}}},[hc,br]=b.useState(!1),[vr,$r]=b.useState(null),[Ya,no]=b.useState(""),[Br,Ns]=b.useState(!1),Qa=F=>{$r(F),no(F.vipSort!=null?String(F.vipSort):""),br(!0)},ws=async()=>{if(!vr)return;const F=Number(Ya);if(!Number.isFinite(F)){te.error("请输入有效的数字序号");return}Ns(!0);try{const Pe=await Ot("/api/db/users",{id:vr.id,vipSort:F});if(!(Pe!=null&&Pe.success)){te.error((Pe==null?void 0:Pe.error)||"更新排序序号失败");return}te.success("已更新排序序号"),br(!1),$r(null),await yt()}catch{te.error("更新排序序号失败")}finally{Ns(!1)}},Vr=(F,Pe)=>{F.dataTransfer.effectAllowed="move",F.dataTransfer.setData("text/plain",Pe),Kn(Pe)},fc=(F,Pe)=>{F.preventDefault(),_t!==Pe&&qn(Pe)},pc=()=>{Kn(null),qn(null)},xa=async(F,Pe)=>{F.preventDefault();const _e=F.dataTransfer.getData("text/plain")||Un;if(Kn(null),qn(null),!_e||_e===Pe)return;const lt=ln.find(dn=>dn.id===_e),cn=ln.find(dn=>dn.id===Pe);if(!lt||!cn)return;const ct=lt.vipSort??ln.findIndex(dn=>dn.id===_e)+1,Xa=cn.vipSort??ln.findIndex(dn=>dn.id===Pe)+1;Bs(dn=>{const Gn=[...dn],Ms=Gn.findIndex(cs=>cs.id===_e),As=Gn.findIndex(cs=>cs.id===Pe);if(Ms===-1||As===-1)return dn;const Nr=[...Gn],[va,tr]=[Nr[Ms],Nr[As]];return Nr[Ms]={...tr,vipSort:ct},Nr[As]={...va,vipSort:Xa},Nr});try{const[dn,Gn]=await Promise.all([Ot("/api/db/users",{id:_e,vipSort:Xa}),Ot("/api/db/users",{id:Pe,vipSort:ct})]);if(!(dn!=null&&dn.success)||!(Gn!=null&&Gn.success)){te.error((dn==null?void 0:dn.error)||(Gn==null?void 0:Gn.error)||"更新排序失败"),await yt();return}te.success("已更新排序"),await yt()}catch{te.error("更新排序失败"),await yt()}},ya=b.useCallback(async()=>{He(!0);try{const F=await De("/api/db/users/journey-stats");F!=null&&F.success&&F.stats&&ls(F.stats)}catch{}finally{He(!1)}},[]);return r.jsxs("div",{className:"p-8 w-full",children:[H&&r.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:[r.jsx("span",{children:H}),r.jsx("button",{type:"button",onClick:()=>L(null),children:"×"})]}),r.jsx("div",{className:"flex justify-between items-center mb-6",children:r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"用户管理"}),r.jsxs("p",{className:"text-gray-400 mt-1 text-sm",children:["共 ",o," 位注册用户",da!==null&&r.jsxs("span",{className:"text-[#38bdac] ml-1",children:["· 在线 ",da," 人"]}),R&&" · RFM 排序中"]})]})}),r.jsxs(Wd,{value:s,onValueChange:F=>{const Pe=new URLSearchParams(t);F==="users"?Pe.delete("tab"):Pe.set("tab",F),e(Pe)},className:"w-full",children:[r.jsxs(sc,{className:"bg-[#0a1628] border border-gray-700/50 p-1 mb-6 flex-wrap h-auto gap-1",children:[r.jsxs(Zt,{value:"users",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",children:[r.jsx(_n,{className:"w-4 h-4"})," 用户列表"]}),r.jsxs(Zt,{value:"leads",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:()=>Rn(),children:[r.jsx(dd,{className:"w-4 h-4"})," 获客列表"]}),r.jsxs(Zt,{value:"journey",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:ya,children:[r.jsx(Ll,{className:"w-4 h-4"})," 用户旅程总览"]}),r.jsxs(Zt,{value:"rules",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:Vs,children:[r.jsx(Mo,{className:"w-4 h-4"})," 规则配置"]}),r.jsxs(Zt,{value:"vip-roles",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] flex items-center gap-1.5",onClick:yt,children:[r.jsx(Fl,{className:"w-4 h-4"})," 超级个体列表"]})]}),r.jsxs(en,{value:"users",children:[r.jsxs("div",{className:"flex items-center gap-3 mb-4 justify-end flex-wrap",children:[r.jsxs(X,{variant:"outline",onClick:()=>Zs(!0),disabled:M,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${M?"animate-spin":""}`})," 刷新"]}),r.jsxs("select",{value:v,onChange:F=>{const Pe=F.target.value;k(Pe),h(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:R,children:[r.jsx("option",{value:"all",children:"全部用户"}),r.jsx("option",{value:"vip",children:"VIP会员(超级个体)"}),r.jsx("option",{value:"complete",children:"完善资料用户"})]}),r.jsxs("div",{className:"relative",children:[r.jsx(Ba,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-500"}),r.jsx(re,{type:"text",placeholder:"搜索用户...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white placeholder:text-gray-500 w-56",value:g,onChange:F=>y(F.target.value)})]}),r.jsxs(X,{onClick:dc,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(dd,{className:"w-4 h-4 mr-2"})," 添加用户"]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Te,{className:"p-0",children:C?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs("div",{children:[r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"用户信息"}),r.jsx(we,{className:"text-gray-400",children:"绑定信息"}),r.jsx(we,{className:"text-gray-400",children:"购买状态"}),r.jsx(we,{className:"text-gray-400",children:"分销收益"}),r.jsxs(we,{className:"text-gray-400 cursor-pointer select-none",onClick:Xo,children:[r.jsxs("div",{className:"flex items-center gap-1 group",children:[r.jsx(cd,{className:"w-3.5 h-3.5"}),r.jsx("span",{children:"RFM分值"}),R?se==="desc"?r.jsx(kd,{className:"w-3.5 h-3.5 text-[#38bdac]"}):r.jsx(sj,{className:"w-3.5 h-3.5 text-[#38bdac]"}):r.jsx(Hm,{className:"w-3.5 h-3.5 text-gray-600 group-hover:text-gray-400"})]}),R&&r.jsx("div",{className:"text-[10px] text-[#38bdac] font-normal mt-0.5",children:"点击切换方向/关闭"})]}),r.jsx(we,{className:"text-gray-400",children:"注册时间"}),r.jsx(we,{className:"text-right text-gray-400",children:"操作"})]})}),r.jsxs(as,{children:[a.map(F=>{var Pe,_e,lt;return r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(ve,{children:r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx("div",{className:"w-10 h-10 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm font-medium text-[#38bdac]",children:F.avatar?r.jsx("img",{src:F.avatar,className:"w-full h-full rounded-full object-cover",alt:""}):((Pe=F.nickname)==null?void 0:Pe.charAt(0))||"?"}),r.jsxs("div",{children:[r.jsxs("div",{className:"flex items-center gap-1.5",children:[r.jsx("button",{type:"button",onClick:()=>{ge(F.id),K(!0)},className:"font-medium text-[#38bdac] hover:text-[#2da396] hover:underline text-left",children:F.nickname}),F.isAdmin&&r.jsx(Ke,{className:"bg-purple-500/20 text-purple-400 hover:bg-purple-500/20 border-0 text-xs",children:"管理员"}),F.openId&&!((_e=F.id)!=null&&_e.startsWith("user_"))&&r.jsx(Ke,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0 text-xs",children:"微信"})]}),r.jsx("p",{className:"text-xs text-gray-500 font-mono",children:F.openId?F.openId.slice(0,12)+"...":(lt=F.id)==null?void 0:lt.slice(0,12)})]})]})}),r.jsx(ve,{children:r.jsxs("div",{className:"space-y-1",children:[F.phone&&r.jsxs("div",{className:"flex items-center gap-1 text-xs",children:[r.jsx("span",{className:"text-gray-500",children:"📱"}),r.jsx("span",{className:"text-gray-300",children:F.phone})]}),F.wechatId&&r.jsxs("div",{className:"flex items-center gap-1 text-xs",children:[r.jsx("span",{className:"text-gray-500",children:"💬"}),r.jsx("span",{className:"text-gray-300",children:F.wechatId})]}),F.openId&&r.jsxs("div",{className:"flex items-center gap-1 text-xs",children:[r.jsx("span",{className:"text-gray-500",children:"🔗"}),r.jsxs("span",{className:"text-gray-500 truncate max-w-[100px]",title:F.openId,children:[F.openId.slice(0,12),"..."]})]}),!F.phone&&!F.wechatId&&!F.openId&&r.jsx("span",{className:"text-gray-600 text-xs",children:"未绑定"})]})}),r.jsx(ve,{children:F.hasFullBook?r.jsx(Ke,{className:"bg-amber-500/20 text-amber-400 hover:bg-amber-500/20 border-0",children:"VIP"}):r.jsx(Ke,{variant:"outline",className:"text-gray-500 border-gray-600",children:"未购买"})}),r.jsx(ve,{children:r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"text-white font-medium",children:["¥",parseFloat(String(F.earnings||0)).toFixed(2)]}),parseFloat(String(F.pendingEarnings||0))>0&&r.jsxs("div",{className:"text-xs text-yellow-400",children:["待提现: ¥",parseFloat(String(F.pendingEarnings||0)).toFixed(2)]}),r.jsxs("div",{className:"text-xs text-[#38bdac] cursor-pointer hover:underline flex items-center gap-1",onClick:()=>ma(F),role:"button",tabIndex:0,onKeyDown:cn=>cn.key==="Enter"&&ma(F),children:[r.jsx(_n,{className:"w-3 h-3"})," 绑定",F.referralCount||0,"人"]})]})}),r.jsx(ve,{children:F.rfmScore!==void 0?r.jsx("div",{className:"flex flex-col gap-1",children:r.jsxs("div",{className:"flex items-center gap-1.5",children:[r.jsx("span",{className:"text-white font-bold text-base",children:F.rfmScore}),r.jsx(Ke,{className:`border-0 text-xs ${fa(F.rfmLevel)}`,children:F.rfmLevel})]})}):r.jsxs("span",{className:"text-gray-600 text-sm",children:["— ",r.jsx("span",{className:"text-xs text-gray-700",children:"点列头排序"})]})}),r.jsx(ve,{className:"text-gray-400",children:F.createdAt?new Date(F.createdAt).toLocaleDateString():"-"}),r.jsx(ve,{className:"text-right",children:r.jsxs("div",{className:"flex items-center justify-end gap-1",children:[r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>{ge(F.id),K(!0)},className:"text-gray-400 hover:text-blue-400 hover:bg-blue-400/10",title:"用户详情",children:r.jsx(qg,{className:"w-4 h-4"})}),r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>pa(F),className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",title:"编辑用户",children:r.jsx(Ut,{className:"w-4 h-4"})}),r.jsx(X,{variant:"ghost",size:"sm",className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",onClick:()=>Zi(F.id),title:"删除",children:r.jsx(Zn,{className:"w-4 h-4"})})]})})]},F.id)}),a.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:7,className:"text-center py-12 text-gray-500",children:"暂无用户数据"})})]})]}),r.jsx(Fs,{page:u,totalPages:ha,total:o,pageSize:f,onPageChange:h,onPageSizeChange:F=>{m(F),h(1)}})]})})})]}),r.jsxs(en,{value:"leads",children:[r.jsx("div",{className:"flex items-center justify-end mb-4",children:r.jsxs(X,{variant:"outline",onClick:Rn,disabled:xe,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${xe?"animate-spin":""}`})," 刷新"]})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Te,{className:"p-0",children:xe?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs("div",{children:[r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"昵称"}),r.jsx(we,{className:"text-gray-400",children:"手机号"}),r.jsx(we,{className:"text-gray-400",children:"微信号"}),r.jsx(we,{className:"text-gray-400",children:"对应 @人"}),r.jsx(we,{className:"text-gray-400",children:"获客计划"}),r.jsx(we,{className:"text-gray-400",children:"来源"}),r.jsx(we,{className:"text-gray-400",children:"时间"})]})}),r.jsxs(as,{children:[mt.map(F=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(ve,{className:"text-gray-300",children:F.userNickname||F.name||"-"}),r.jsx(ve,{className:"text-gray-300",children:F.phone||"-"}),r.jsx(ve,{className:"text-gray-300",children:F.wechatId||"-"}),r.jsx(ve,{className:"text-[#38bdac]",children:F.personName||"-"}),r.jsx(ve,{className:"text-gray-400",children:F.ckbPlanId?`#${F.ckbPlanId}`:"-"}),r.jsx(ve,{className:"text-gray-400",children:F.source||"-"}),r.jsx(ve,{className:"text-gray-400",children:F.createdAt?new Date(F.createdAt).toLocaleString():"-"})]},F.id)),mt.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:7,className:"text-center py-12 text-gray-500",children:"暂无获客数据"})})]})]}),r.jsx(Fs,{page:xt,totalPages:Math.ceil(ut/he)||1,total:ut,pageSize:he,onPageChange:tn,onPageSizeChange:()=>{}})]})})})]}),r.jsxs(en,{value:"journey",children:[r.jsxs("div",{className:"flex items-center justify-between mb-5",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"用户从注册到 VIP 的完整行动路径,点击各阶段查看用户动态"}),r.jsxs(X,{variant:"outline",onClick:ya,disabled:q,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${q?"animate-spin":""}`})," 刷新数据"]})]}),r.jsxs("div",{className:"relative mb-8",children:[r.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"}),r.jsx("div",{className:"grid grid-cols-4 gap-4 lg:grid-cols-8",children:th.map((F,Pe)=>r.jsxs("div",{className:"relative flex flex-col items-center",children:[r.jsxs("div",{className:`relative w-full p-3 rounded-xl border ${F.color} text-center cursor-default`,children:[r.jsx("div",{className:"text-2xl mb-1",children:F.icon}),r.jsx("div",{className:`text-xs font-medium ${F.color.split(" ").find(_e=>_e.startsWith("text-"))}`,children:F.label}),zn[F.id]!==void 0&&r.jsxs("div",{className:"mt-1.5 text-xs text-gray-400",children:[r.jsx("span",{className:"font-bold text-white",children:zn[F.id]})," 人"]}),r.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:Pe+1})]}),Per.jsxs("div",{className:"flex items-start gap-3 p-2 bg-[#0a1628] rounded",children:[r.jsx("span",{className:"text-[#38bdac] font-mono text-xs shrink-0 mt-0.5",children:F.step}),r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-300",children:F.action}),r.jsxs("p",{className:"text-gray-600 text-xs",children:["→ ",F.next]})]})]},F.step))})]}),r.jsxs("div",{className:"bg-[#0f2137] border border-gray-700/50 rounded-lg p-4",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx(Ys,{className:"w-4 h-4 text-purple-400"}),r.jsx("span",{className:"text-white font-medium",children:"行为锚点统计"}),r.jsx("span",{className:"text-gray-500 text-xs ml-auto",children:"实时更新"})]}),q?r.jsx("div",{className:"flex items-center justify-center py-8",children:r.jsx(Fe,{className:"w-5 h-5 text-[#38bdac] animate-spin"})}):Object.keys(zn).length>0?r.jsx("div",{className:"space-y-2",children:th.map(F=>{const Pe=zn[F.id]||0,_e=Math.max(...th.map(cn=>zn[cn.id]||0),1),lt=Math.round(Pe/_e*100);return r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsxs("span",{className:"text-gray-500 text-xs w-20 shrink-0",children:[F.icon," ",F.label]}),r.jsx("div",{className:"flex-1 h-2 bg-[#0a1628] rounded-full overflow-hidden",children:r.jsx("div",{className:"h-full bg-[#38bdac]/60 rounded-full transition-all",style:{width:`${lt}%`}})}),r.jsx("span",{className:"text-gray-400 text-xs w-10 text-right",children:Pe})]},F.id)})}):r.jsx("div",{className:"text-center py-8",children:r.jsx("p",{className:"text-gray-500 text-sm",children:"点击「刷新数据」加载统计"})})]})]})]}),r.jsxs(en,{value:"rules",children:[r.jsxs("div",{className:"mb-4 flex items-center justify-between",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"用户旅程引导规则,定义各行为节点的触发条件与引导内容"}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsxs(X,{variant:"outline",onClick:Vs,disabled:at,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${at?"animate-spin":""}`})," 刷新"]}),r.jsxs(X,{onClick:()=>{In(null),xn({title:"",description:"",trigger:"",sort:0,enabled:!0}),At(!0)},className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(fn,{className:"w-4 h-4 mr-2"})," 添加规则"]})]})]}),at?r.jsx("div",{className:"flex items-center justify-center py-12",children:r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"})}):Se.length===0?r.jsxs("div",{className:"text-center py-16 bg-[#0f2137] rounded-lg border border-gray-700/50",children:[r.jsx(Ys,{className:"w-12 h-12 text-[#38bdac]/30 mx-auto mb-4"}),r.jsx("p",{className:"text-gray-400 mb-4",children:"暂无规则(重启服务将自动写入10条默认规则)"}),r.jsxs(X,{onClick:Vs,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(Fe,{className:"w-4 h-4 mr-2"})," 重新加载"]})]}):r.jsx("div",{className:"space-y-2",children:Se.map(F=>r.jsx("div",{className:`p-4 rounded-lg border transition-all ${F.enabled?"bg-[#0f2137] border-gray-700/50":"bg-[#0a1628]/50 border-gray-700/30 opacity-55"}`,children:r.jsxs("div",{className:"flex items-start justify-between",children:[r.jsxs("div",{className:"flex-1",children:[r.jsxs("div",{className:"flex items-center gap-2 flex-wrap mb-1",children:[r.jsx(Ut,{className:"w-4 h-4 text-[#38bdac] shrink-0"}),r.jsx("span",{className:"text-white font-medium",children:F.title}),F.trigger&&r.jsxs(Ke,{className:"bg-[#38bdac]/10 text-[#38bdac] border border-[#38bdac]/30 text-xs",children:["触发:",F.trigger]}),r.jsx(Ke,{className:`text-xs border-0 ${F.enabled?"bg-green-500/20 text-green-400":"bg-gray-500/20 text-gray-400"}`,children:F.enabled?"启用":"禁用"})]}),F.description&&r.jsx("p",{className:"text-gray-400 text-sm ml-6",children:F.description})]}),r.jsxs("div",{className:"flex items-center gap-2 ml-4 shrink-0",children:[r.jsx(jt,{checked:F.enabled,onCheckedChange:()=>Zo(F)}),r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>{In(F),xn({title:F.title,description:F.description,trigger:F.trigger,sort:F.sort,enabled:F.enabled}),At(!0)},className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",children:r.jsx(Ut,{className:"w-4 h-4"})}),r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>eo(F.id),className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",children:r.jsx(Zn,{className:"w-4 h-4"})})]})]})},F.id))})]}),r.jsxs(en,{value:"vip-roles",children:[r.jsxs("div",{className:"mb-4 flex items-center justify-between",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"展示当前所有有效的超级个体(VIP 用户),用于检查会员信息与排序值。"}),r.jsx("p",{className:"text-xs text-[#38bdac]",children:"提示:按住任意一行即可拖拽排序,释放后将同步更新小程序展示顺序。"})]}),r.jsx("div",{className:"flex items-center gap-2",children:r.jsxs(X,{variant:"outline",onClick:yt,disabled:yn,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${yn?"animate-spin":""}`})," ","刷新"]})})]}),yn?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):ln.length===0?r.jsxs("div",{className:"text-center py-16 bg-[#0f2137] rounded-lg border border-gray-700/50",children:[r.jsx(Fl,{className:"w-12 h-12 text-amber-400/30 mx-auto mb-4"}),r.jsx("p",{className:"text-gray-400 mb-4",children:"当前没有有效的超级个体用户。"})]}):r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Te,{className:"p-0",children:r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400 w-16",children:"序号"}),r.jsx(we,{className:"text-gray-400",children:"成员"}),r.jsx(we,{className:"text-gray-400 min-w-48",children:"超级个体标签"}),r.jsx(we,{className:"text-gray-400 w-24",children:"排序值"}),r.jsx(we,{className:"text-gray-400 w-40 text-right",children:"操作"})]})}),r.jsx(as,{children:ln.map((F,Pe)=>{var cn;const _e=Un===F.id,lt=_t===F.id;return r.jsxs(it,{draggable:!0,onDragStart:ct=>Vr(ct,F.id),onDragOver:ct=>fc(ct,F.id),onDrop:ct=>xa(ct,F.id),onDragEnd:pc,className:`border-gray-700/50 cursor-grab active:cursor-grabbing select-none ${_e?"opacity-60":""} ${lt?"bg-[#38bdac]/10":""}`,children:[r.jsx(ve,{className:"text-gray-300",children:Pe+1}),r.jsx(ve,{children:r.jsxs("div",{className:"flex items-center gap-3",children:[F.avatar?r.jsx("img",{src:F.avatar,className:"w-8 h-8 rounded-full object-cover border border-amber-400/60"}):r.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:((cn=F.name)==null?void 0:cn[0])||"创"}),r.jsx("div",{className:"min-w-0",children:r.jsx("div",{className:"text-white text-sm truncate",children:F.name})})]})}),r.jsx(ve,{className:"text-gray-300 whitespace-nowrap",children:F.vipRole||r.jsx("span",{className:"text-gray-500",children:"(未设置超级个体标签)"})}),r.jsx(ve,{className:"text-gray-300",children:F.vipSort??Pe+1}),r.jsx(ve,{className:"text-right text-xs text-gray-300",children:r.jsxs("div",{className:"inline-flex items-center gap-1.5",children:[r.jsx(X,{variant:"ghost",size:"sm",className:"h-7 w-7 px-0 text-amber-300 hover:text-amber-200",onClick:()=>uc(F),title:"设置超级个体标签",children:r.jsx(ld,{className:"w-3.5 h-3.5"})}),r.jsx(X,{variant:"ghost",size:"sm",className:"h-7 w-7 px-0 text-[#38bdac] hover:text-[#5fe0cd]",onClick:()=>{ge(F.id),K(!0)},title:"编辑资料",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),r.jsx(X,{variant:"ghost",size:"sm",className:"h-7 w-7 px-0 text-sky-300 hover:text-sky-200",onClick:()=>Qa(F),title:"设置排序序号",children:r.jsx(Hm,{className:"w-3.5 h-3.5"})})]})})]},F.id)})})]})})})]})]}),r.jsx(It,{open:hc,onOpenChange:F=>{br(F),F||$r(null)},children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-sm",children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(Hm,{className:"w-5 h-5 text-[#38bdac]"}),"设置排序 — ",vr==null?void 0:vr.name]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"排序序号(数字越小越靠前)"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:1",value:Ya,onChange:F=>no(F.target.value)})]}),r.jsxs(sn,{children:[r.jsxs(X,{variant:"outline",onClick:()=>br(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(gs,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(X,{onClick:ws,disabled:Br,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),Br?"保存中...":"保存"]})]})]})}),r.jsx(It,{open:kn,onOpenChange:F=>{zr(F),F||to(null)},children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(Fl,{className:"w-5 h-5 text-amber-400"}),"设置超级个体标签 — ",xr==null?void 0:xr.name]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"选择或输入标签"}),r.jsx("div",{className:"flex flex-wrap gap-2",children:Ja.map(F=>r.jsx(X,{variant:yr===F?"default":"outline",size:"sm",className:yr===F?"bg-[#38bdac] hover:bg-[#2da396] text-white":"border-gray-600 text-gray-300 hover:bg-gray-700/50",onClick:()=>ga(F),children:F},F))}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"或手动输入"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:创业者、资源整合者等",value:yr,onChange:F=>ga(F.target.value)})]})]}),r.jsxs(sn,{children:[r.jsxs(X,{variant:"outline",onClick:()=>zr(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(gs,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(X,{onClick:()=>Jt(yr),disabled:Fr,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),Fr?"保存中...":"保存"]})]})]})}),r.jsx(It,{open:z,onOpenChange:ce,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[me?r.jsx(Ut,{className:"w-5 h-5 text-[#38bdac]"}):r.jsx(dd,{className:"w-5 h-5 text-[#38bdac]"}),me?"编辑用户":"添加用户"]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"手机号"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"请输入手机号",value:ae.phone,onChange:F=>pe({...ae,phone:F.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"昵称"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"请输入昵称",value:ae.nickname,onChange:F=>pe({...ae,nickname:F.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:me?"新密码 (留空则不修改)":"密码"}),r.jsx(re,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:me?"留空则不修改":"请输入密码",value:ae.password,onChange:F=>pe({...ae,password:F.target.value})})]}),r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsx(Z,{className:"text-gray-300",children:"管理员权限"}),r.jsx(jt,{checked:ae.isAdmin,onCheckedChange:F=>pe({...ae,isAdmin:F})})]}),r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsx(Z,{className:"text-gray-300",children:"已购全书"}),r.jsx(jt,{checked:ae.hasFullBook,onCheckedChange:F=>pe({...ae,hasFullBook:F})})]})]}),r.jsxs(sn,{children:[r.jsxs(X,{variant:"outline",onClick:()=>ce(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(gs,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(X,{onClick:mr,disabled:G,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),G?"保存中...":"保存"]})]})]})}),r.jsx(It,{open:kt,onOpenChange:At,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(Ut,{className:"w-5 h-5 text-[#38bdac]"}),Gt?"编辑规则":"添加规则"]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"规则标题 *"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例:匹配后填写头像、付款1980需填写信息",value:Lt.title,onChange:F=>xn({...Lt,title:F.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"规则描述"}),r.jsx(rc,{className:"bg-[#0a1628] border-gray-700 text-white min-h-[80px] resize-none",placeholder:"详细说明规则内容...",value:Lt.description,onChange:F=>xn({...Lt,description:F.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"触发条件"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例:完成匹配、付款后、注册时",value:Lt.trigger,onChange:F=>xn({...Lt,trigger:F.target.value})})]}),r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsx("div",{children:r.jsx(Z,{className:"text-gray-300",children:"启用状态"})}),r.jsx(jt,{checked:Lt.enabled,onCheckedChange:F=>xn({...Lt,enabled:F})})]})]}),r.jsxs(sn,{children:[r.jsxs(X,{variant:"outline",onClick:()=>At(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(gs,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(X,{onClick:gr,disabled:G,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),G?"保存中...":"保存"]})]})]})}),r.jsx(It,{open:A,onOpenChange:Y,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-2xl max-h-[80vh] overflow-auto",children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"}),"绑定关系 - ",ye==null?void 0:ye.nickname]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-4 gap-3",children:[r.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[r.jsx("div",{className:"text-2xl font-bold text-[#38bdac]",children:((Hr=U.stats)==null?void 0:Hr.total)||0}),r.jsx("div",{className:"text-xs text-gray-400",children:"绑定总数"})]}),r.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[r.jsx("div",{className:"text-2xl font-bold text-green-400",children:((bn=U.stats)==null?void 0:bn.purchased)||0}),r.jsx("div",{className:"text-xs text-gray-400",children:"已付费"})]}),r.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[r.jsxs("div",{className:"text-2xl font-bold text-yellow-400",children:["¥",(((so=U.stats)==null?void 0:so.earnings)||0).toFixed(2)]}),r.jsx("div",{className:"text-xs text-gray-400",children:"累计收益"})]}),r.jsxs("div",{className:"bg-[#0a1628] rounded-lg p-3 text-center",children:[r.jsxs("div",{className:"text-2xl font-bold text-orange-400",children:["¥",(((ba=U.stats)==null?void 0:ba.pendingEarnings)||0).toFixed(2)]}),r.jsx("div",{className:"text-xs text-gray-400",children:"待提现"})]})]}),W?r.jsxs("div",{className:"flex items-center justify-center py-8",children:[r.jsx(Fe,{className:"w-5 h-5 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):(((Wr=U.referrals)==null?void 0:Wr.length)??0)>0?r.jsx("div",{className:"space-y-2 max-h-[300px] overflow-y-auto",children:(U.referrals??[]).map((F,Pe)=>{var lt;const _e=F;return r.jsxs("div",{className:"flex items-center justify-between bg-[#0a1628] rounded-lg p-3",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx("div",{className:"w-8 h-8 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm text-[#38bdac]",children:((lt=_e.nickname)==null?void 0:lt.charAt(0))||"?"}),r.jsxs("div",{children:[r.jsx("div",{className:"text-white text-sm",children:_e.nickname}),r.jsx("div",{className:"text-xs text-gray-500",children:_e.phone||(_e.hasOpenId?"微信用户":"未绑定")})]})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[_e.status==="vip"&&r.jsx(Ke,{className:"bg-green-500/20 text-green-400 border-0 text-xs",children:"全书已购"}),_e.status==="paid"&&r.jsxs(Ke,{className:"bg-blue-500/20 text-blue-400 border-0 text-xs",children:["已付费",_e.purchasedSections,"章"]}),_e.status==="free"&&r.jsx(Ke,{className:"bg-gray-500/20 text-gray-400 border-0 text-xs",children:"未付费"}),r.jsx("span",{className:"text-xs text-gray-500",children:_e.createdAt?new Date(_e.createdAt).toLocaleDateString():""})]})]},_e.id||Pe)})}):r.jsx("div",{className:"text-center py-8 text-gray-500",children:"暂无绑定用户"})]}),r.jsx(sn,{children:r.jsx(X,{variant:"outline",onClick:()=>Y(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"关闭"})})]})}),r.jsx(y0,{open:ne,onClose:()=>K(!1),userId:J,onUserUpdated:Zs})]})}function Lh(t,[e,n]){return Math.min(n,Math.max(e,t))}var Ok=["PageUp","PageDown"],Dk=["ArrowUp","ArrowDown","ArrowLeft","ArrowRight"],Lk={"from-left":["Home","PageDown","ArrowDown","ArrowLeft"],"from-right":["Home","PageDown","ArrowDown","ArrowRight"],"from-bottom":["Home","PageDown","ArrowDown","ArrowLeft"],"from-top":["Home","PageDown","ArrowUp","ArrowLeft"]},ac="Slider",[sx,gP,xP]=p0(ac),[_k]=qi(ac,[xP]),[yP,Vf]=_k(ac),zk=b.forwardRef((t,e)=>{const{name:n,min:s=0,max:a=100,step:i=1,orientation:o="horizontal",disabled:c=!1,minStepsBetweenThumbs:u=0,defaultValue:h=[s],value:f,onValueChange:m=()=>{},onValueCommit:g=()=>{},inverted:y=!1,form:N,...j}=t,v=b.useRef(new Set),k=b.useRef(0),E=o==="horizontal"?bP:vP,[M=[],P]=_o({prop:f,defaultProp:h,onChange:ie=>{var ce;(ce=[...v.current][k.current])==null||ce.focus(),m(ie)}}),H=b.useRef(M);function L(ie){const z=SP(M,ie);se(ie,z)}function R(ie){se(ie,k.current)}function O(){const ie=H.current[k.current];M[k.current]!==ie&&g(M)}function se(ie,z,{commit:ce}={commit:!1}){const me=MP(i),_=AP(Math.round((ie-s)/i)*i+s,me),G=Lh(_,[s,a]);P(($=[])=>{const A=jP($,G,z);if(TP(A,u*i)){k.current=A.indexOf(G);const Y=String(A)!==String($);return Y&&ce&&g(A),Y?A:$}else return $})}return r.jsx(yP,{scope:t.__scopeSlider,name:n,disabled:c,min:s,max:a,valueIndexToChangeRef:k,thumbs:v.current,values:M,orientation:o,form:N,children:r.jsx(sx.Provider,{scope:t.__scopeSlider,children:r.jsx(sx.Slot,{scope:t.__scopeSlider,children:r.jsx(E,{"aria-disabled":c,"data-disabled":c?"":void 0,...j,ref:e,onPointerDown:dt(j.onPointerDown,()=>{c||(H.current=M)}),min:s,max:a,inverted:y,onSlideStart:c?void 0:L,onSlideMove:c?void 0:R,onSlideEnd:c?void 0:O,onHomeKeyDown:()=>!c&&se(s,0,{commit:!0}),onEndKeyDown:()=>!c&&se(a,M.length-1,{commit:!0}),onStepKeyDown:({event:ie,direction:z})=>{if(!c){const _=Ok.includes(ie.key)||ie.shiftKey&&Dk.includes(ie.key)?10:1,G=k.current,$=M[G],A=i*_*z;se($+A,G,{commit:!0})}}})})})})});zk.displayName=ac;var[Fk,$k]=_k(ac,{startEdge:"left",endEdge:"right",size:"width",direction:1}),bP=b.forwardRef((t,e)=>{const{min:n,max:s,dir:a,inverted:i,onSlideStart:o,onSlideMove:c,onSlideEnd:u,onStepKeyDown:h,...f}=t,[m,g]=b.useState(null),y=Tt(e,E=>g(E)),N=b.useRef(void 0),j=Ff(a),v=j==="ltr",k=v&&!i||!v&&i;function C(E){const M=N.current||m.getBoundingClientRect(),P=[0,M.width],L=v0(P,k?[n,s]:[s,n]);return N.current=M,L(E-M.left)}return r.jsx(Fk,{scope:t.__scopeSlider,startEdge:k?"left":"right",endEdge:k?"right":"left",direction:k?1:-1,size:"width",children:r.jsx(Bk,{dir:j,"data-orientation":"horizontal",...f,ref:y,style:{...f.style,"--radix-slider-thumb-transform":"translateX(-50%)"},onSlideStart:E=>{const M=C(E.clientX);o==null||o(M)},onSlideMove:E=>{const M=C(E.clientX);c==null||c(M)},onSlideEnd:()=>{N.current=void 0,u==null||u()},onStepKeyDown:E=>{const P=Lk[k?"from-left":"from-right"].includes(E.key);h==null||h({event:E,direction:P?-1:1})}})})}),vP=b.forwardRef((t,e)=>{const{min:n,max:s,inverted:a,onSlideStart:i,onSlideMove:o,onSlideEnd:c,onStepKeyDown:u,...h}=t,f=b.useRef(null),m=Tt(e,f),g=b.useRef(void 0),y=!a;function N(j){const v=g.current||f.current.getBoundingClientRect(),k=[0,v.height],E=v0(k,y?[s,n]:[n,s]);return g.current=v,E(j-v.top)}return r.jsx(Fk,{scope:t.__scopeSlider,startEdge:y?"bottom":"top",endEdge:y?"top":"bottom",size:"height",direction:y?1:-1,children:r.jsx(Bk,{"data-orientation":"vertical",...h,ref:m,style:{...h.style,"--radix-slider-thumb-transform":"translateY(50%)"},onSlideStart:j=>{const v=N(j.clientY);i==null||i(v)},onSlideMove:j=>{const v=N(j.clientY);o==null||o(v)},onSlideEnd:()=>{g.current=void 0,c==null||c()},onStepKeyDown:j=>{const k=Lk[y?"from-bottom":"from-top"].includes(j.key);u==null||u({event:j,direction:k?-1:1})}})})}),Bk=b.forwardRef((t,e)=>{const{__scopeSlider:n,onSlideStart:s,onSlideMove:a,onSlideEnd:i,onHomeKeyDown:o,onEndKeyDown:c,onStepKeyDown:u,...h}=t,f=Vf(ac,n);return r.jsx(pt.span,{...h,ref:e,onKeyDown:dt(t.onKeyDown,m=>{m.key==="Home"?(o(m),m.preventDefault()):m.key==="End"?(c(m),m.preventDefault()):Ok.concat(Dk).includes(m.key)&&(u(m),m.preventDefault())}),onPointerDown:dt(t.onPointerDown,m=>{const g=m.target;g.setPointerCapture(m.pointerId),m.preventDefault(),f.thumbs.has(g)?g.focus():s(m)}),onPointerMove:dt(t.onPointerMove,m=>{m.target.hasPointerCapture(m.pointerId)&&a(m)}),onPointerUp:dt(t.onPointerUp,m=>{const g=m.target;g.hasPointerCapture(m.pointerId)&&(g.releasePointerCapture(m.pointerId),i(m))})})}),Vk="SliderTrack",Hk=b.forwardRef((t,e)=>{const{__scopeSlider:n,...s}=t,a=Vf(Vk,n);return r.jsx(pt.span,{"data-disabled":a.disabled?"":void 0,"data-orientation":a.orientation,...s,ref:e})});Hk.displayName=Vk;var rx="SliderRange",Wk=b.forwardRef((t,e)=>{const{__scopeSlider:n,...s}=t,a=Vf(rx,n),i=$k(rx,n),o=b.useRef(null),c=Tt(e,o),u=a.values.length,h=a.values.map(g=>qk(g,a.min,a.max)),f=u>1?Math.min(...h):0,m=100-Math.max(...h);return r.jsx(pt.span,{"data-orientation":a.orientation,"data-disabled":a.disabled?"":void 0,...s,ref:c,style:{...t.style,[i.startEdge]:f+"%",[i.endEdge]:m+"%"}})});Wk.displayName=rx;var ax="SliderThumb",Uk=b.forwardRef((t,e)=>{const n=gP(t.__scopeSlider),[s,a]=b.useState(null),i=Tt(e,c=>a(c)),o=b.useMemo(()=>s?n().findIndex(c=>c.ref.current===s):-1,[n,s]);return r.jsx(NP,{...t,ref:i,index:o})}),NP=b.forwardRef((t,e)=>{const{__scopeSlider:n,index:s,name:a,...i}=t,o=Vf(ax,n),c=$k(ax,n),[u,h]=b.useState(null),f=Tt(e,C=>h(C)),m=u?o.form||!!u.closest("form"):!0,g=x0(u),y=o.values[s],N=y===void 0?0:qk(y,o.min,o.max),j=kP(s,o.values.length),v=g==null?void 0:g[c.size],k=v?CP(v,N,c.direction):0;return b.useEffect(()=>{if(u)return o.thumbs.add(u),()=>{o.thumbs.delete(u)}},[u,o.thumbs]),r.jsxs("span",{style:{transform:"var(--radix-slider-thumb-transform)",position:"absolute",[c.startEdge]:`calc(${N}% + ${k}px)`},children:[r.jsx(sx.ItemSlot,{scope:t.__scopeSlider,children:r.jsx(pt.span,{role:"slider","aria-label":t["aria-label"]||j,"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:dt(t.onFocus,()=>{o.valueIndexToChangeRef.current=s})})}),m&&r.jsx(Kk,{name:a??(o.name?o.name+(o.values.length>1?"[]":""):void 0),form:o.form,value:y},s)]})});Uk.displayName=ax;var wP="RadioBubbleInput",Kk=b.forwardRef(({__scopeSlider:t,value:e,...n},s)=>{const a=b.useRef(null),i=Tt(a,s),o=g0(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]),r.jsx(pt.input,{style:{display:"none"},...n,ref:i,defaultValue:e})});Kk.displayName=wP;function jP(t=[],e,n){const s=[...t];return s[n]=e,s.sort((a,i)=>a-i)}function qk(t,e,n){const i=100/(n-e)*(t-e);return Lh(i,[0,100])}function kP(t,e){return e>2?`Value ${t+1} of ${e}`:e===2?["Minimum","Maximum"][t]:void 0}function SP(t,e){if(t.length===1)return 0;const n=t.map(a=>Math.abs(a-e)),s=Math.min(...n);return n.indexOf(s)}function CP(t,e,n){const s=t/2,i=v0([0,50],[0,s]);return(s-i(e)*n)*n}function EP(t){return t.slice(0,-1).map((e,n)=>t[n+1]-e)}function TP(t,e){if(e>0){const n=EP(t);return Math.min(...n)>=e}return!0}function v0(t,e){return n=>{if(t[0]===t[1]||e[0]===e[1])return e[0];const s=(e[1]-e[0])/(t[1]-t[0]);return e[0]+s*(n-t[0])}}function MP(t){return(String(t).split(".")[1]||"").length}function AP(t,e){const n=Math.pow(10,e);return Math.round(t*n)/n}var IP=zk,RP=Hk,PP=Wk,OP=Uk;function DP({className:t,defaultValue:e,value:n,min:s=0,max:a=100,...i}){const o=b.useMemo(()=>Array.isArray(n)?n:Array.isArray(e)?e:[s,a],[n,e,s,a]);return r.jsxs(IP,{defaultValue:e,value:n,min:s,max:a,className:Mt("relative flex w-full touch-none items-center select-none data-[disabled]:opacity-50",t),...i,children:[r.jsx(RP,{className:"bg-gray-600 relative grow overflow-hidden rounded-full h-1.5 w-full",children:r.jsx(PP,{className:"bg-[#38bdac] absolute h-full rounded-full"})}),Array.from({length:o.length},(c,u)=>r.jsx(OP,{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 LP={distributorShare:90,minWithdrawAmount:10,bindingDays:30,userDiscount:5,withdrawFee:5,enableAutoWithdraw:!1,vipOrderShareVip:20,vipOrderShareNonVip:10};function Gk(t){const[e,n]=b.useState(LP),[s,a]=b.useState(!0),[i,o]=b.useState(!1);b.useEffect(()=>{De("/api/admin/referral-settings").then(h=>{const f=h==null?void 0:h.data;f&&typeof f=="object"&&n({distributorShare:f.distributorShare??90,minWithdrawAmount:f.minWithdrawAmount??10,bindingDays:f.bindingDays??30,userDiscount:f.userDiscount??5,withdrawFee:f.withdrawFee??5,enableAutoWithdraw:f.enableAutoWithdraw??!1,vipOrderShareVip:f.vipOrderShareVip??20,vipOrderShareNonVip:f.vipOrderShareNonVip??10})}).catch(console.error).finally(()=>a(!1))},[]);const c=async()=>{o(!0);try{const h={distributorShare:Number(e.distributorShare)||0,minWithdrawAmount:Number(e.minWithdrawAmount)||0,bindingDays:Number(e.bindingDays)||0,userDiscount:Number(e.userDiscount)||0,withdrawFee:Number(e.withdrawFee)??5,enableAutoWithdraw:!!e.enableAutoWithdraw,vipOrderShareVip:Number(e.vipOrderShareVip)||20,vipOrderShareNonVip:Number(e.vipOrderShareNonVip)||10},f=await Nt("/api/admin/referral-settings",h);if(!f||f.success===!1){te.error("保存失败: "+(f&&typeof f=="object"&&"error"in f?f.error:""));return}te.success(`✅ 分销配置已保存成功! + +• 小程序与网站的推广规则会一起生效 +• 绑定关系会使用新的天数配置 +• 佣金比例会立即应用到新订单 + +如有缓存,请刷新前台/小程序页面。`)}catch(h){console.error(h),te.error("保存失败: "+(h instanceof Error?h.message:String(h)))}finally{o(!1)}},u=h=>f=>{const m=parseFloat(f.target.value||"0");n(g=>({...g,[h]:isNaN(m)?0:m}))};return s?r.jsx("div",{className:"p-8 text-gray-500",children:"加载中..."}):r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(Wl,{className:"w-5 h-5 text-[#38bdac]"}),"推广 / 分销设置"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"统一管理「好友优惠」「你得 90% 收益」「绑定期 30 天」「提现门槛」等规则,小程序和 Web 共用这套配置。"})]}),r.jsxs(X,{onClick:c,disabled:i||s,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),i?"保存中...":"保存配置"]})]}),r.jsxs("div",{className:"space-y-6",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"flex items-center gap-2 text-white",children:[r.jsx(p5,{className:"w-4 h-4 text-[#38bdac]"}),"推广规则"]}),r.jsx(Ft,{className:"text-gray-400",children:"这三项会直接体现在小程序「推广规则」卡片上,同时影响实收佣金计算。"})]}),r.jsx(Te,{className:"space-y-6",children:r.jsxs("div",{className:"grid grid-cols-3 gap-6",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(Ku,{className:"w-3 h-3 text-[#38bdac]"}),"好友优惠(%)"]}),r.jsx(re,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.userDiscount,onChange:u("userDiscount")}),r.jsx("p",{className:"text-xs text-gray-500",children:"例如 5 表示好友立减 5%(在价格配置基础上生效)。"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(_n,{className:"w-3 h-3 text-[#38bdac]"}),"推广者分成(%)"]}),r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsx(DP,{className:"flex-1",min:10,max:100,step:1,value:[e.distributorShare],onValueChange:([h])=>n(f=>({...f,distributorShare:h}))}),r.jsx(re,{type:"number",min:0,max:100,className:"w-20 bg-[#0a1628] border-gray-700 text-white text-center",value:e.distributorShare,onChange:u("distributorShare")})]}),r.jsxs("p",{className:"text-xs text-gray-500",children:["内容订单佣金 = 订单金额 ×"," ",r.jsxs("span",{className:"text-[#38bdac] font-mono",children:[e.distributorShare,"%"]}),";会员订单见下方。"]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(Ku,{className:"w-3 h-3 text-[#38bdac]"}),"会员订单分润(推广者是会员 %)"]}),r.jsx(re,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.vipOrderShareVip,onChange:u("vipOrderShareVip")}),r.jsx("p",{className:"text-xs text-gray-500",children:"推广者已是会员时,会员订单佣金比例,默认 20%。"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(Ku,{className:"w-3 h-3 text-[#38bdac]"}),"会员订单分润(推广者非会员 %)"]}),r.jsx(re,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.vipOrderShareNonVip,onChange:u("vipOrderShareNonVip")}),r.jsx("p",{className:"text-xs text-gray-500",children:"推广者非会员时,会员订单佣金比例,默认 10%。"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(_n,{className:"w-3 h-3 text-[#38bdac]"}),"绑定有效期(天)"]}),r.jsx(re,{type:"number",min:1,max:365,className:"bg-[#0a1628] border-gray-700 text-white",value:e.bindingDays,onChange:u("bindingDays")}),r.jsx("p",{className:"text-xs text-gray-500",children:"好友通过你的链接进来并登录后,绑定在你名下的天数。"})]})]})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"flex items-center gap-2 text-white",children:[r.jsx(Wl,{className:"w-4 h-4 text-[#38bdac]"}),"提现规则"]}),r.jsx(Ft,{className:"text-gray-400",children:"与「提现中心」「自动提现」相关的参数,影响推广者看到的可提现金额和最低门槛。"})]}),r.jsx(Te,{className:"space-y-6",children:r.jsxs("div",{className:"grid grid-cols-2 gap-6",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"最低提现金额(元)"}),r.jsx(re,{type:"number",min:0,step:1,className:"bg-[#0a1628] border-gray-700 text-white",value:e.minWithdrawAmount,onChange:u("minWithdrawAmount")}),r.jsx("p",{className:"text-xs text-gray-500",children:"小程序「满 X 元可提现」展示的门槛,同时用于后端接口校验。"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"提现手续费(%)"}),r.jsx(re,{type:"number",min:0,max:100,step:.5,className:"bg-[#0a1628] border-gray-700 text-white",value:e.withdrawFee,onChange:u("withdrawFee")}),r.jsx("p",{className:"text-xs text-gray-500",children:"批准提现时按此比例扣除后打款,如 5 表示申请 100 元实际到账 95 元。"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{className:"text-gray-300 flex items-center gap-2",children:["自动提现开关",r.jsx(Ke,{variant:"outline",className:"border-[#38bdac]/40 text-[#38bdac] text-[10px]",children:"预留"})]}),r.jsxs("div",{className:"flex items-center gap-3 mt-1",children:[r.jsx(jt,{checked:e.enableAutoWithdraw,onCheckedChange:h=>n(f=>({...f,enableAutoWithdraw:h}))}),r.jsx("span",{className:"text-sm text-gray-400",children:"开启后,可结合定时任务实现「收益自动打款到微信零钱」。"})]})]})]})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs(Ye,{className:"flex items-center gap-2 text-gray-200 text-sm",children:[r.jsx(Ku,{className:"w-4 h-4 text-[#38bdac]"}),"使用说明"]})}),r.jsxs(Te,{className:"space-y-2 text-xs text-gray-400 leading-relaxed",children:[r.jsxs("p",{children:["1. 以上配置会写入"," ",r.jsx("code",{className:"font-mono text-[11px] text-[#38bdac]",children:"system_config.referral_config"}),",小程序「推广中心」、Web 推广页以及支付回调都会读取同一份配置。"]}),r.jsx("p",{children:"2. 修改后新订单立即生效;旧订单的历史佣金不会自动重算,只影响之后产生的订单。"}),r.jsx("p",{children:"3. 如遇前端展示与实际结算不一致,优先以此处配置为准,再排查缓存和小程序版本。"})]})]})]})]})}function _P(){var ls;const[t,e]=b.useState("overview"),[n,s]=b.useState([]),[a,i]=b.useState(null),[o,c]=b.useState([]),[u,h]=b.useState([]),[f,m]=b.useState([]),[g,y]=b.useState(!0),[N,j]=b.useState(null),[v,k]=b.useState(""),[C,E]=b.useState("all"),[M,P]=b.useState(1),[H,L]=b.useState(10),[R,O]=b.useState(0),[se,ie]=b.useState(new Set),[z,ce]=b.useState(null),[me,_]=b.useState(""),[G,$]=b.useState(!1),[A,Y]=b.useState(null),[U,D]=b.useState(""),[W,le]=b.useState(!1),[ye,Ae]=b.useState(!1),[ne,K]=b.useState(!1),[J,ge]=b.useState([]),[ae,pe]=b.useState(1),[Se,tt]=b.useState(0),[at,Dt]=b.useState("");b.useEffect(()=>{kt()},[]),b.useEffect(()=>{P(1)},[t,C]),b.useEffect(()=>{At(t)},[t]),b.useEffect(()=>{["orders","bindings","withdrawals"].includes(t)&&At(t,!0),t==="giftPay"&&At("giftPay",!0)},[M,H,C,v,ae,at]),b.useEffect(()=>{t==="withdrawals"&&ln()},[t]);async function kt(){j(null);try{const q=await De("/api/admin/distribution/overview");q!=null&&q.success&&q.overview&&i(q.overview)}catch(q){console.error("[Admin] 概览接口异常:",q),j("加载概览失败")}try{const q=await De("/api/db/users");m((q==null?void 0:q.users)||[])}catch(q){console.error("[Admin] 用户数据加载失败:",q)}}async function At(q,He=!1){var mt;if(!(!He&&se.has(q))){y(!0);try{const $t=f;switch(q){case"overview":break;case"orders":{try{const ut=new URLSearchParams({page:String(M),pageSize:String(H),...C!=="all"&&{status:C},...v&&{search:v}}),ot=await De(`/api/admin/orders?${ut}`);if(ot!=null&&ot.success&&ot.orders){const xt=ot.orders.map(tn=>{const he=$t.find(zt=>zt.id===tn.userId),xe=tn.referrerId?$t.find(zt=>zt.id===tn.referrerId):null;return{...tn,amount:parseFloat(String(tn.amount))||0,userNickname:(he==null?void 0:he.nickname)||tn.userNickname||"未知用户",userPhone:(he==null?void 0:he.phone)||tn.userPhone||"-",referrerNickname:(xe==null?void 0:xe.nickname)||null,referrerCode:(xe==null?void 0:xe.referralCode)??null,type:tn.productType||tn.type}});s(xt),O(ot.total??xt.length)}else s([]),O(0)}catch(ut){console.error(ut),j("加载订单失败"),s([])}break}case"bindings":{try{const ut=new URLSearchParams({page:String(M),pageSize:String(H),...C!=="all"&&{status:C}}),ot=await De(`/api/db/distribution?${ut}`);c((ot==null?void 0:ot.bindings)||[]),O((ot==null?void 0:ot.total)??((mt=ot==null?void 0:ot.bindings)==null?void 0:mt.length)??0)}catch(ut){console.error(ut),j("加载绑定数据失败"),c([])}break}case"withdrawals":{try{const ut=C==="completed"?"success":C==="rejected"?"failed":C,ot=new URLSearchParams({...ut&&ut!=="all"&&{status:ut},page:String(M),pageSize:String(H)}),xt=await De(`/api/admin/withdrawals?${ot}`);if(xt!=null&&xt.success&&xt.withdrawals){const tn=xt.withdrawals.map(he=>({...he,account:he.account??"未绑定微信号",status:he.status==="success"?"completed":he.status==="failed"?"rejected":he.status}));h(tn),O((xt==null?void 0:xt.total)??tn.length)}else xt!=null&&xt.success||j(`获取提现记录失败: ${(xt==null?void 0:xt.error)||"未知错误"}`),h([])}catch(ut){console.error(ut),j("加载提现数据失败"),h([])}break}case"giftPay":{try{const ut=new URLSearchParams({page:String(ae),pageSize:"20",...at&&{status:at}}),ot=await De(`/api/admin/gift-pay-requests?${ut}`);ot!=null&&ot.success&&ot.data?(ge(ot.data),tt(ot.total??ot.data.length)):(ge([]),tt(0))}catch(ut){console.error(ut),j("加载代付请求失败"),ge([])}break}}ie(ut=>new Set(ut).add(q))}catch($t){console.error($t)}finally{y(!1)}}}async function Gt(){j(null),ie(q=>{const He=new Set(q);return He.delete(t),He}),t==="overview"&&kt(),await At(t,!0)}async function In(q){if(confirm("确认审核通过并打款?"))try{const He=await Ot("/api/admin/withdrawals",{id:q,action:"approve"});if(!(He!=null&&He.success)){const mt=(He==null?void 0:He.message)||(He==null?void 0:He.error)||"操作失败";te.error(mt);return}await Gt()}catch(He){console.error(He),te.error("操作失败")}}function Lt(q){Y(q),D("")}async function xn(){const q=A;if(!q)return;const He=U.trim();if(!He){te.error("请填写拒绝原因");return}le(!0);try{const mt=await Ot("/api/admin/withdrawals",{id:q,action:"reject",errorMessage:He});if(!(mt!=null&&mt.success)){te.error((mt==null?void 0:mt.error)||"操作失败");return}te.success("已拒绝该提现申请"),Y(null),D(""),await Gt()}catch(mt){console.error(mt),te.error("操作失败")}finally{le(!1)}}async function ln(){try{const q=await De("/api/admin/withdrawals/auto-approve");q!=null&&q.success&&typeof q.enableAutoApprove=="boolean"&&Ae(q.enableAutoApprove)}catch{}}async function Bs(q){K(!0);try{const He=await Ot("/api/admin/withdrawals/auto-approve",{enableAutoApprove:q});He!=null&&He.success?(Ae(q),te.success(q?"已开启自动审批,新提现将自动打款":"已关闭自动审批")):te.error("更新失败: "+((He==null?void 0:He.error)??""))}catch{te.error("更新失败")}finally{K(!1)}}function yn(){A&&te.info("已取消操作"),Y(null),D("")}async function is(){var q;if(!(!(z!=null&&z.orderSn)&&!(z!=null&&z.id))){$(!0),j(null);try{const He=await Ot("/api/admin/orders/refund",{orderSn:z.orderSn||z.id,reason:me||void 0});He!=null&&He.success?(ce(null),_(""),await At("orders",!0)):j((He==null?void 0:He.error)||"退款失败")}catch(He){const mt=He;j(((q=mt==null?void 0:mt.data)==null?void 0:q.error)||"退款失败,请检查网络后重试")}finally{$(!1)}}}function Un(q){const He={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"},mt={active:"有效",converted:"已转化",expired:"已过期",cancelled:"已取消",pending:"待审核",pending_confirm:"待用户确认",processing:"处理中",completed:"已完成",rejected:"已拒绝"};return r.jsx(Ke,{className:`${He[q]||"bg-gray-500/20 text-gray-400"} border-0`,children:mt[q]||q})}const Kn=Math.ceil(R/H)||1,_t=n,qn=o.filter(q=>{var mt,$t,ut,ot;if(!v)return!0;const He=v.toLowerCase();return((mt=q.refereeNickname)==null?void 0:mt.toLowerCase().includes(He))||(($t=q.refereePhone)==null?void 0:$t.includes(He))||((ut=q.referrerName)==null?void 0:ut.toLowerCase().includes(He))||((ot=q.referrerCode)==null?void 0:ot.toLowerCase().includes(He))}),zn=u.filter(q=>{var mt;if(!v)return!0;const He=v.toLowerCase();return((mt=q.userName)==null?void 0:mt.toLowerCase().includes(He))||q.account&&q.account.toLowerCase().includes(He)});return r.jsxs("div",{className:"p-8 w-full",children:[N&&r.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:[r.jsx("span",{children:N}),r.jsx("button",{type:"button",onClick:()=>j(null),className:"hover:text-red-300",children:"×"})]}),r.jsxs("div",{className:"flex items-center justify-between mb-8",children:[r.jsxs("div",{children:[r.jsx("h1",{className:"text-2xl font-bold text-white",children:"推广中心"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"统一管理:订单、分销绑定、提现审核"})]}),r.jsxs(X,{onClick:Gt,disabled:g,variant:"outline",className:"border-gray-700 text-gray-300 hover:bg-gray-800",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${g?"animate-spin":""}`}),"刷新数据"]})]}),r.jsx("div",{className:"flex gap-2 mb-6 border-b border-gray-700 pb-4 flex-wrap",children:[{key:"overview",label:"数据概览",icon:cd},{key:"orders",label:"订单管理",icon:Ih},{key:"bindings",label:"绑定管理",icon:Rr},{key:"withdrawals",label:"提现审核",icon:Wl},{key:"giftPay",label:"代付请求",icon:cj},{key:"settings",label:"推广设置",icon:Mo}].map(q=>r.jsxs("button",{type:"button",onClick:()=>{e(q.key),E("all"),k(""),q.key==="giftPay"&&(Dt(""),pe(1))},className:`flex items-center gap-2 px-4 py-2 rounded-lg text-sm font-medium transition-colors ${t===q.key?"bg-[#38bdac] text-white":"text-gray-400 hover:text-white hover:bg-gray-800"}`,children:[r.jsx(q.icon,{className:"w-4 h-4"}),q.label]},q.key))}),g?r.jsxs("div",{className:"flex items-center justify-center py-20",children:[r.jsx(Fe,{className:"w-8 h-8 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[t==="overview"&&a&&r.jsxs("div",{className:"space-y-6",children:[r.jsxs("div",{className:"grid grid-cols-4 gap-4",children:[r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日点击"}),r.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:a.todayClicks}),r.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:"总点击次数(实时)"})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-blue-500/20 flex items-center justify-center",children:r.jsx(qg,{className:"w-6 h-6 text-blue-400"})})]})})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日独立用户"}),r.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:a.todayUniqueVisitors??0}),r.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:"去重访客数(实时)"})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-cyan-500/20 flex items-center justify-center",children:r.jsx(_n,{className:"w-6 h-6 text-cyan-400"})})]})})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日总文章点击率"}),r.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:(a.todayClickRate??0).toFixed(2)}),r.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:"人均点击(总点击/独立用户)"})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-amber-500/20 flex items-center justify-center",children:r.jsx(cd,{className:"w-6 h-6 text-amber-400"})})]})})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日绑定"}),r.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:a.todayBindings})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-green-500/20 flex items-center justify-center",children:r.jsx(Rr,{className:"w-6 h-6 text-green-400"})})]})})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日转化"}),r.jsx("p",{className:"text-2xl font-bold text-white mt-1",children:a.todayConversions})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-purple-500/20 flex items-center justify-center",children:r.jsx(Jv,{className:"w-6 h-6 text-purple-400"})})]})})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-6",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"今日佣金"}),r.jsxs("p",{className:"text-2xl font-bold text-[#38bdac] mt-1",children:["¥",a.todayEarnings.toFixed(2)]})]}),r.jsx("div",{className:"w-12 h-12 rounded-xl bg-[#38bdac]/20 flex items-center justify-center",children:r.jsx(Ih,{className:"w-6 h-6 text-[#38bdac]"})})]})})})]}),(((ls=a.todayClicksByPage)==null?void 0:ls.length)??0)>0&&r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs("div",{className:"flex flex-wrap items-start justify-between gap-4",children:[r.jsxs("div",{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(qg,{className:"w-5 h-5 text-[#38bdac]"}),"每篇文章今日点击(按来源页/文章统计)"]}),r.jsx("p",{className:"text-gray-400 text-sm mt-1",children:"实际用户与实际文章的点击均计入;今日总点击与上表一致"})]}),r.jsxs(X,{type:"button",size:"sm",variant:"outline",onClick:()=>void Gt(),disabled:g,className:"border-gray-600 text-gray-300 shrink-0",children:[r.jsx(Fe,{className:`w-4 h-4 mr-1 ${g?"animate-spin":""}`}),"刷新"]})]})}),r.jsx(Te,{children:r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"border-b border-gray-700 text-left text-gray-400",children:[r.jsx("th",{className:"pb-3 pr-4",children:"来源页/文章"}),r.jsx("th",{className:"pb-3 pr-4 text-right",children:"今日点击"}),r.jsx("th",{className:"pb-3 text-right",children:"占比"})]})}),r.jsx("tbody",{children:[...a.todayClicksByPage??[]].sort((q,He)=>He.clicks-q.clicks).map((q,He)=>r.jsxs("tr",{className:"border-b border-gray-700/50",children:[r.jsx("td",{className:"py-2 pr-4 text-white font-mono",children:q.page||"(未区分)"}),r.jsx("td",{className:"py-2 pr-4 text-right text-white",children:q.clicks}),r.jsxs("td",{className:"py-2 text-right text-gray-400",children:[a.todayClicks>0?(q.clicks/a.todayClicks*100).toFixed(1):0,"%"]})]},He))})]})})})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsx(Ee,{className:"bg-orange-500/10 border-orange-500/30",children:r.jsx(Te,{className:"p-6",children:r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsx("div",{className:"w-12 h-12 rounded-xl bg-orange-500/20 flex items-center justify-center",children:r.jsx(Kg,{className:"w-6 h-6 text-orange-400"})}),r.jsxs("div",{className:"flex-1",children:[r.jsx("p",{className:"text-orange-300 font-medium",children:"即将过期绑定"}),r.jsxs("p",{className:"text-2xl font-bold text-white",children:[a.expiringBindings," 个"]}),r.jsx("p",{className:"text-orange-300/60 text-sm",children:"7天内到期,需关注转化"})]})]})})}),r.jsx(Ee,{className:"bg-blue-500/10 border-blue-500/30",children:r.jsx(Te,{className:"p-6",children:r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsx("div",{className:"w-12 h-12 rounded-xl bg-blue-500/20 flex items-center justify-center",children:r.jsx(Wl,{className:"w-6 h-6 text-blue-400"})}),r.jsxs("div",{className:"flex-1",children:[r.jsx("p",{className:"text-blue-300 font-medium",children:"待审核提现"}),r.jsxs("p",{className:"text-2xl font-bold text-white",children:[a.pendingWithdrawals," 笔"]}),r.jsxs("p",{className:"text-blue-300/60 text-sm",children:["共 ¥",a.pendingWithdrawAmount.toFixed(2)]})]}),r.jsx(X,{onClick:()=>e("withdrawals"),variant:"outline",className:"border-blue-500/50 text-blue-400 hover:bg-blue-500/20",children:"去审核"})]})})})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-6",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Ah,{className:"w-5 h-5 text-[#38bdac]"}),"本月统计"]})}),r.jsx(Te,{children:r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"点击量"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.monthClicks})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"绑定数"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.monthBindings})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"转化数"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.monthConversions})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"佣金"}),r.jsxs("p",{className:"text-xl font-bold text-[#38bdac]",children:["¥",a.monthEarnings.toFixed(2)]})]})]})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(cd,{className:"w-5 h-5 text-[#38bdac]"}),"累计统计"]})}),r.jsxs(Te,{children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"总点击"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.totalClicks.toLocaleString()})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"总绑定"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.totalBindings.toLocaleString()})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"总转化"}),r.jsx("p",{className:"text-xl font-bold text-white",children:a.totalConversions})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"总佣金"}),r.jsxs("p",{className:"text-xl font-bold text-[#38bdac]",children:["¥",a.totalEarnings.toFixed(2)]})]})]}),r.jsxs("div",{className:"mt-4 p-4 bg-[#38bdac]/10 rounded-lg flex items-center justify-between",children:[r.jsx("span",{className:"text-gray-300",children:"点击转化率"}),r.jsxs("span",{className:"text-[#38bdac] font-bold text-xl",children:[a.conversionRate,"%"]})]})]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"}),"推广统计"]})}),r.jsx(Te,{children:r.jsxs("div",{className:"grid grid-cols-4 gap-4",children:[r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg text-center",children:[r.jsx("p",{className:"text-3xl font-bold text-white",children:a.totalDistributors}),r.jsx("p",{className:"text-gray-400 text-sm mt-1",children:"推广用户数"})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg text-center",children:[r.jsx("p",{className:"text-3xl font-bold text-green-400",children:a.activeDistributors}),r.jsx("p",{className:"text-gray-400 text-sm mt-1",children:"有收益用户"})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg text-center",children:[r.jsx("p",{className:"text-3xl font-bold text-[#38bdac]",children:"90%"}),r.jsx("p",{className:"text-gray-400 text-sm mt-1",children:"佣金比例"})]}),r.jsxs("div",{className:"p-4 bg-white/5 rounded-lg text-center",children:[r.jsx("p",{className:"text-3xl font-bold text-orange-400",children:"30天"}),r.jsx("p",{className:"text-gray-400 text-sm mt-1",children:"绑定有效期"})]})]})})]})]}),t==="orders"&&r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex flex-wrap gap-4 items-center",children:[r.jsxs("div",{className:"relative flex-1 min-w-[200px]",children:[r.jsx(Ba,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),r.jsx(re,{value:v,onChange:q=>k(q.target.value),placeholder:"搜索订单号、用户名、手机号...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white"})]}),r.jsxs("select",{value:C,onChange:q=>E(q.target.value),className:"px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white shrink-0",children:[r.jsx("option",{value:"all",children:"全部状态"}),r.jsx("option",{value:"completed",children:"已完成"}),r.jsx("option",{value:"pending",children:"待支付"}),r.jsx("option",{value:"failed",children:"已失败"}),r.jsx("option",{value:"refunded",children:"已退款"})]}),r.jsxs(X,{type:"button",variant:"outline",onClick:()=>void Gt(),disabled:g,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent shrink-0",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${g?"animate-spin":""}`}),"刷新"]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Te,{className:"p-0",children:[n.length===0?r.jsx("div",{className:"py-12 text-center text-gray-500",children:"暂无订单数据"}):r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[r.jsx("th",{className:"p-4 text-left font-medium",children:"订单号"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"用户"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"商品"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"金额"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"支付方式"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"退款原因"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"推荐人/邀请码"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"分销佣金"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"下单时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"操作"})]})}),r.jsx("tbody",{className:"divide-y divide-gray-700/50",children:_t.map(q=>{var He,mt;return r.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[r.jsxs("td",{className:"p-4 font-mono text-xs text-gray-400",children:[(He=q.id)==null?void 0:He.slice(0,12),"..."]}),r.jsx("td",{className:"p-4",children:r.jsxs("div",{children:[r.jsx("p",{className:"text-white text-sm",children:q.userNickname}),r.jsx("p",{className:"text-gray-500 text-xs",children:q.userPhone})]})}),r.jsx("td",{className:"p-4",children:r.jsxs("div",{children:[r.jsx("p",{className:"text-white text-sm",children:(()=>{const $t=q.productType||q.type,ut=q.description||"",ot=String(q.productId||q.sectionId||""),xt=$t==="vip"||ut.includes("VIP")||ut.toLowerCase().includes("vip")||ot.toLowerCase().includes("vip");return $t==="balance_recharge"?`余额充值 ¥${typeof q.amount=="number"?q.amount.toFixed(2):parseFloat(String(q.amount||"0")).toFixed(2)}`:xt?"超级个体开通费用":$t==="fullbook"?`${q.bookName||"《底层逻辑》"} - 全本`:$t==="match"?"匹配次数购买":`${q.bookName||"《底层逻辑》"} - ${q.sectionTitle||q.chapterTitle||`章节${q.productId||q.sectionId||""}`}`})()}),r.jsx("p",{className:"text-gray-500 text-xs",children:(()=>{const $t=q.productType||q.type,ut=q.description||"",ot=String(q.productId||q.sectionId||""),xt=$t==="vip"||ut.includes("VIP")||ut.toLowerCase().includes("vip")||ot.toLowerCase().includes("vip");return $t==="balance_recharge"?"余额充值":xt?"超级个体":$t==="fullbook"?"全书解锁":$t==="match"?"功能权益":q.chapterTitle||"单章购买"})()})]})}),r.jsxs("td",{className:"p-4 text-[#38bdac] font-bold",children:["¥",typeof q.amount=="number"?q.amount.toFixed(2):parseFloat(String(q.amount||"0")).toFixed(2)]}),r.jsx("td",{className:"p-4 text-gray-300",children:q.paymentMethod==="wechat"?"微信支付":q.paymentMethod==="balance"?"余额支付":q.paymentMethod==="alipay"?"支付宝":q.paymentMethod||"微信支付"}),r.jsx("td",{className:"p-4",children:q.status==="refunded"?r.jsx(Ke,{className:"bg-gray-500/20 text-gray-400 border-0",children:"已退款"}):q.status==="completed"||q.status==="paid"?r.jsx(Ke,{className:"bg-green-500/20 text-green-400 border-0",children:"已完成"}):q.status==="pending"||q.status==="created"?r.jsx(Ke,{className:"bg-yellow-500/20 text-yellow-400 border-0",children:"待支付"}):r.jsx(Ke,{className:"bg-red-500/20 text-red-400 border-0",children:"已失败"})}),r.jsx("td",{className:"p-4 text-gray-400 text-sm max-w-[120px]",title:q.refundReason,children:q.status==="refunded"&&q.refundReason?q.refundReason:"-"}),r.jsx("td",{className:"p-4 text-gray-300 text-sm",children:q.referrerId||q.referralCode?r.jsxs("span",{title:q.referralCode||q.referrerCode||q.referrerId||"",children:[q.referrerNickname||q.referralCode||q.referrerCode||((mt=q.referrerId)==null?void 0:mt.slice(0,8)),(q.referralCode||q.referrerCode)&&` (${q.referralCode||q.referrerCode})`]}):"-"}),r.jsx("td",{className:"p-4 text-[#FFD700]",children:q.referrerEarnings?`¥${(typeof q.referrerEarnings=="number"?q.referrerEarnings:parseFloat(String(q.referrerEarnings))).toFixed(2)}`:"-"}),r.jsx("td",{className:"p-4 text-gray-400 text-sm",children:q.createdAt?new Date(q.createdAt).toLocaleString("zh-CN"):"-"}),r.jsx("td",{className:"p-4",children:(q.status==="paid"||q.status==="completed")&&r.jsxs(X,{variant:"outline",size:"sm",className:"border-orange-500/50 text-orange-400 hover:bg-orange-500/20",onClick:()=>{ce(q),_("")},children:[r.jsx(fj,{className:"w-3 h-3 mr-1"}),"退款"]})})]},q.id)})})]})}),t==="orders"&&r.jsx(Fs,{page:M,totalPages:Kn,total:R,pageSize:H,onPageChange:P,onPageSizeChange:q=>{L(q),P(1)}})]})})]}),t==="bindings"&&r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex flex-wrap gap-4 items-center",children:[r.jsxs("div",{className:"relative flex-1 min-w-[200px]",children:[r.jsx(Ba,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),r.jsx(re,{value:v,onChange:q=>k(q.target.value),placeholder:"搜索用户昵称、手机号、推广码...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white"})]}),r.jsxs("select",{value:C,onChange:q=>E(q.target.value),className:"px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white shrink-0",children:[r.jsx("option",{value:"all",children:"全部状态"}),r.jsx("option",{value:"active",children:"有效"}),r.jsx("option",{value:"converted",children:"已转化"}),r.jsx("option",{value:"expired",children:"已过期"})]}),r.jsxs(X,{type:"button",variant:"outline",onClick:()=>void Gt(),disabled:g,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent shrink-0",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${g?"animate-spin":""}`}),"刷新"]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Te,{className:"p-0",children:[qn.length===0?r.jsx("div",{className:"py-12 text-center text-gray-500",children:"暂无绑定数据"}):r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[r.jsx("th",{className:"p-4 text-left font-medium",children:"访客"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"分销商"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"绑定时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"到期时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"佣金"})]})}),r.jsx("tbody",{className:"divide-y divide-gray-700/50",children:qn.map(q=>r.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[r.jsx("td",{className:"p-4",children:r.jsxs("div",{children:[r.jsx("p",{className:"text-white font-medium",children:q.refereeNickname||"匿名用户"}),r.jsx("p",{className:"text-gray-500 text-xs",children:q.refereePhone})]})}),r.jsx("td",{className:"p-4",children:r.jsxs("div",{children:[r.jsx("p",{className:"text-white",children:q.referrerName||"-"}),r.jsx("p",{className:"text-gray-500 text-xs font-mono",children:q.referrerCode})]})}),r.jsx("td",{className:"p-4 text-gray-400",children:q.boundAt?new Date(q.boundAt).toLocaleDateString("zh-CN"):"-"}),r.jsx("td",{className:"p-4 text-gray-400",children:q.expiresAt?new Date(q.expiresAt).toLocaleDateString("zh-CN"):"-"}),r.jsx("td",{className:"p-4",children:Un(q.status)}),r.jsx("td",{className:"p-4",children:q.commission?r.jsxs("span",{className:"text-[#38bdac] font-medium",children:["¥",q.commission.toFixed(2)]}):r.jsx("span",{className:"text-gray-500",children:"-"})})]},q.id))})]})}),t==="bindings"&&r.jsx(Fs,{page:M,totalPages:Kn,total:R,pageSize:H,onPageChange:P,onPageSizeChange:q=>{L(q),P(1)}})]})})]}),t==="withdrawals"&&r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex flex-wrap gap-4 items-center",children:[r.jsxs("div",{className:"relative flex-1 min-w-[200px]",children:[r.jsx(Ba,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),r.jsx(re,{value:v,onChange:q=>k(q.target.value),placeholder:"搜索用户名称、账号...",className:"pl-10 bg-[#0f2137] border-gray-700 text-white"})]}),r.jsxs("select",{value:C,onChange:q=>E(q.target.value),className:"px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white shrink-0",children:[r.jsx("option",{value:"all",children:"全部状态"}),r.jsx("option",{value:"pending",children:"待审核"}),r.jsx("option",{value:"completed",children:"已完成"}),r.jsx("option",{value:"rejected",children:"已拒绝"})]}),r.jsxs("div",{className:"flex items-center gap-2 px-4 py-2 rounded-lg bg-[#0f2137] border border-gray-700/50 shrink-0",children:[r.jsx(Fa,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx("span",{className:"text-sm text-gray-300",children:"自动审批"}),r.jsx(jt,{checked:ye,onCheckedChange:Bs,disabled:ne,className:"data-[state=checked]:bg-[#38bdac]"})]}),r.jsxs(X,{type:"button",variant:"outline",onClick:()=>void Gt(),disabled:g,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent shrink-0",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${g?"animate-spin":""}`}),"刷新"]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Te,{className:"p-0",children:[zn.length===0?r.jsx("div",{className:"py-12 text-center text-gray-500",children:"暂无提现记录"}):r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[r.jsx("th",{className:"p-4 text-left font-medium",children:"申请人"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"金额"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"收款方式"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"收款账号"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"申请时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"备注"}),r.jsx("th",{className:"p-4 text-right font-medium",children:"操作"})]})}),r.jsx("tbody",{className:"divide-y divide-gray-700/50",children:zn.map(q=>r.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[r.jsx("td",{className:"p-4",children:r.jsxs("div",{className:"flex items-center gap-2",children:[q.userAvatar?r.jsx("img",{src:q.userAvatar,alt:"",className:"w-8 h-8 rounded-full object-cover"}):r.jsx("div",{className:"w-8 h-8 rounded-full bg-gray-600 flex items-center justify-center text-white text-sm font-medium",children:(q.userName||q.name||"?").slice(0,1)}),r.jsx("p",{className:"text-white font-medium",children:q.userName||q.name})]})}),r.jsx("td",{className:"p-4",children:r.jsxs("span",{className:"text-[#38bdac] font-bold",children:["¥",q.amount.toFixed(2)]})}),r.jsx("td",{className:"p-4",children:r.jsx(Ke,{className:q.method==="wechat"?"bg-green-500/20 text-green-400 border-0":"bg-blue-500/20 text-blue-400 border-0",children:q.method==="wechat"?"微信":"支付宝"})}),r.jsx("td",{className:"p-4",children:r.jsxs("div",{children:[r.jsx("p",{className:"text-white font-mono text-xs",children:q.account}),r.jsx("p",{className:"text-gray-500 text-xs",children:q.name})]})}),r.jsx("td",{className:"p-4 text-gray-400",children:q.createdAt?new Date(q.createdAt).toLocaleString("zh-CN"):"-"}),r.jsx("td",{className:"p-4",children:Un(q.status)}),r.jsx("td",{className:"p-4 max-w-[160px]",children:r.jsx("span",{className:`text-xs ${q.status==="rejected"||q.status==="failed"?"text-red-400":"text-gray-400"}`,title:q.remark,children:q.remark||"-"})}),r.jsx("td",{className:"p-4 text-right",children:q.status==="pending"&&r.jsxs("div",{className:"flex gap-2 justify-end",children:[r.jsxs(X,{size:"sm",onClick:()=>In(q.id),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(Jv,{className:"w-4 h-4 mr-1"}),"通过"]}),r.jsxs(X,{size:"sm",variant:"outline",onClick:()=>Lt(q.id),className:"border-red-500/50 text-red-400 hover:bg-red-500/20",children:[r.jsx(ij,{className:"w-4 h-4 mr-1"}),"拒绝"]})]})})]},q.id))})]})}),t==="withdrawals"&&r.jsx(Fs,{page:M,totalPages:Kn,total:R,pageSize:H,onPageChange:P,onPageSizeChange:q=>{L(q),P(1)}})]})})]}),t==="giftPay"&&r.jsx("div",{className:"space-y-4",children:r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsx(Je,{children:r.jsxs("div",{className:"flex flex-wrap items-center justify-between gap-4",children:[r.jsx(Ye,{className:"text-white",children:"代付请求列表"}),r.jsxs("div",{className:"flex gap-2 items-center",children:[r.jsxs("select",{className:"bg-[#0a1628] border border-gray-700 text-white rounded px-3 py-1.5 text-sm",value:at,onChange:q=>{Dt(q.target.value),pe(1)},children:[r.jsx("option",{value:"",children:"全部状态"}),r.jsx("option",{value:"pending",children:"待支付(旧)"}),r.jsx("option",{value:"pending_pay",children:"待发起人支付"}),r.jsx("option",{value:"paid",children:"已支付"}),r.jsx("option",{value:"refunded",children:"已退款"}),r.jsx("option",{value:"cancelled",children:"已取消"}),r.jsx("option",{value:"expired",children:"已过期"})]}),r.jsxs(X,{size:"sm",variant:"outline",onClick:()=>void Gt(),disabled:g,className:"border-gray-600 text-gray-300",children:[r.jsx(Fe,{className:`w-4 h-4 mr-1 ${g?"animate-spin":""}`}),"刷新"]})]})]})}),r.jsxs(Te,{children:[r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"border-b border-gray-700/50",children:[r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"请求号"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"发起人"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"商品/金额"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"份数/已领"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"付款人"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"状态"}),r.jsx("th",{className:"p-4 text-left font-medium text-gray-400",children:"创建时间"})]})}),r.jsx("tbody",{className:"divide-y divide-gray-700/50",children:J.map(q=>r.jsxs("tr",{className:"hover:bg-[#0a1628]",children:[r.jsx("td",{className:"p-4 font-mono text-xs text-gray-400",children:q.requestSn}),r.jsx("td",{className:"p-4",children:r.jsx("p",{className:"text-white text-sm",children:q.initiatorNick||q.initiatorUserId})}),r.jsxs("td",{className:"p-4",children:[r.jsxs("p",{className:"text-white",children:[q.productType," · ¥",q.amount.toFixed(2)]}),q.description&&r.jsx("p",{className:"text-gray-500 text-xs",children:q.description})]}),r.jsx("td",{className:"p-4 text-gray-400",children:(q.quantity??1)>1?`${q.quantity}份 / 已领${q.redeemedCount??0}`:"-"}),r.jsx("td",{className:"p-4 text-gray-400",children:q.payerNick||(q.payerUserId?q.payerUserId:"-")}),r.jsx("td",{className:"p-4",children:r.jsx(Ke,{className:q.status==="paid"?"bg-green-500/20 text-green-400 border-0":q.status==="pending"||q.status==="pending_pay"?"bg-amber-500/20 text-amber-400 border-0":q.status==="refunded"?"bg-red-500/20 text-red-400 border-0":"bg-gray-500/20 text-gray-400 border-0",children:q.status==="paid"?"已支付":q.status==="pending"||q.status==="pending_pay"?"待支付":q.status==="refunded"?"已退款":q.status==="cancelled"?"已取消":"已过期"})}),r.jsx("td",{className:"p-4 text-gray-400 text-sm",children:q.createdAt?new Date(q.createdAt).toLocaleString("zh-CN"):"-"})]},q.id))})]})}),J.length===0&&!g&&r.jsx("p",{className:"text-center py-8 text-gray-500",children:"暂无代付请求"}),Se>20&&r.jsx("div",{className:"mt-4 flex justify-center",children:r.jsx(Fs,{page:ae,totalPages:Math.ceil(Se/20),total:Se,pageSize:20,onPageChange:pe,onPageSizeChange:()=>{}})})]})]})})]}),r.jsx(It,{open:!!z,onOpenChange:q=>!q&&ce(null),children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[r.jsx(Rt,{children:r.jsx(Pt,{className:"text-white",children:"订单退款"})}),z&&r.jsxs("div",{className:"space-y-4",children:[r.jsxs("p",{className:"text-gray-400 text-sm",children:["订单号:",z.orderSn||z.id]}),r.jsxs("p",{className:"text-gray-400 text-sm",children:["退款金额:¥",typeof z.amount=="number"?z.amount.toFixed(2):parseFloat(String(z.amount||"0")).toFixed(2)]}),r.jsxs("div",{children:[r.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"退款原因(选填)"}),r.jsx("div",{className:"form-input",children:r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"如:用户申请退款",value:me,onChange:q=>_(q.target.value)})})]}),r.jsx("p",{className:"text-orange-400/80 text-xs",children:"退款将原路退回至用户微信,且无法撤销,请确认后再操作。"})]}),r.jsxs(sn,{children:[r.jsx(X,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:()=>ce(null),disabled:G,children:"取消"}),r.jsx(X,{className:"bg-orange-500 hover:bg-orange-600 text-white",onClick:is,disabled:G,children:G?"退款中...":"确认退款"})]})]})}),r.jsx(It,{open:!!A,onOpenChange:q=>!q&&yn(),children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[r.jsx(Rt,{children:r.jsx(Pt,{className:"text-white",children:"拒绝提现"})}),r.jsxs("div",{className:"space-y-4",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"拒绝后该笔提现金额将返还用户余额。"}),r.jsxs("div",{children:[r.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"拒绝原因(必填)"}),r.jsx("div",{className:"form-input",children:r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"请输入拒绝原因",value:U,onChange:q=>D(q.target.value)})})]})]}),r.jsxs(sn,{children:[r.jsx(X,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:yn,disabled:W,children:"取消"}),r.jsx(X,{className:"bg-red-600 hover:bg-red-700 text-white",onClick:xn,disabled:W||!U.trim(),children:W?"提交中...":"确认拒绝"})]})]})}),t==="settings"&&r.jsx("div",{className:"-mx-8 -mt-6",children:r.jsx(Gk,{embedded:!0})})]})}function zP(){const[t,e]=b.useState([]),[n,s]=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),[g,y]=b.useState(10),[N,j]=b.useState(0),[v,k]=b.useState(null),[C,E]=b.useState(null),[M,P]=b.useState(""),[H,L]=b.useState(!1);async function R(){var _,G,$,A,Y,U,D;i(!0),c(null);try{const W=new URLSearchParams({status:u,page:String(f),pageSize:String(g)}),le=await De(`/api/admin/withdrawals?${W}`);if(le!=null&&le.success){const ye=le.withdrawals||[];e(ye),j(le.total??((_=le.stats)==null?void 0:_.total)??ye.length),s({total:((G=le.stats)==null?void 0:G.total)??le.total??ye.length,pendingCount:(($=le.stats)==null?void 0:$.pendingCount)??0,pendingAmount:((A=le.stats)==null?void 0:A.pendingAmount)??0,successCount:((Y=le.stats)==null?void 0:Y.successCount)??0,successAmount:((U=le.stats)==null?void 0:U.successAmount)??0,failedCount:((D=le.stats)==null?void 0:D.failedCount)??0})}else c("加载提现记录失败")}catch(W){console.error("Load withdrawals error:",W),c("加载失败,请检查网络后重试")}finally{i(!1)}}b.useEffect(()=>{m(1)},[u]),b.useEffect(()=>{R()},[u,f,g]);const O=Math.ceil(N/g)||1;async function se(_){const G=t.find($=>$.id===_);if(G!=null&&G.userCommissionInfo&&G.userCommissionInfo.availableAfterThis<0){if(!confirm(`⚠️ 风险警告:该用户审核后余额为负数(¥${G.userCommissionInfo.availableAfterThis.toFixed(2)}),可能存在超额提现。 + +确认已核实用户账户并完成打款?`))return}else if(!confirm("确认已完成打款?批准后将更新用户提现记录。"))return;k(_);try{const $=await Ot("/api/admin/withdrawals",{id:_,action:"approve"});$!=null&&$.success?R():te.error("操作失败: "+(($==null?void 0:$.error)??""))}catch{te.error("操作失败")}finally{k(null)}}function ie(_){E(_),P("")}async function z(){const _=C;if(!_)return;const G=M.trim();if(!G){te.error("请填写拒绝原因");return}L(!0);try{const $=await Ot("/api/admin/withdrawals",{id:_,action:"reject",errorMessage:G});$!=null&&$.success?(te.success("已拒绝该提现申请"),E(null),P(""),R()):te.error("操作失败: "+(($==null?void 0:$.error)??""))}catch{te.error("操作失败")}finally{L(!1)}}function ce(){C&&te.info("已取消操作"),E(null),P("")}function me(_){switch(_){case"pending":return r.jsx(Ke,{className:"bg-orange-500/20 text-orange-400 hover:bg-orange-500/20 border-0",children:"待处理"});case"pending_confirm":return r.jsx(Ke,{className:"bg-orange-500/20 text-orange-400 hover:bg-orange-500/20 border-0",children:"待用户确认"});case"processing":return r.jsx(Ke,{className:"bg-blue-500/20 text-blue-400 hover:bg-blue-500/20 border-0",children:"已审批等待打款"});case"success":case"completed":return r.jsx(Ke,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"已完成"});case"failed":case"rejected":return r.jsx(Ke,{className:"bg-red-500/20 text-red-400 hover:bg-red-500/20 border-0",children:"已拒绝"});default:return r.jsx(Ke,{className:"bg-gray-500/20 text-gray-400 border-0",children:_})}}return r.jsxs("div",{className:"p-8 w-full",children:[o&&r.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:[r.jsx("span",{children:o}),r.jsx("button",{type:"button",onClick:()=>c(null),className:"hover:text-red-300",children:"×"})]}),r.jsxs("div",{className:"flex justify-between items-start mb-8",children:[r.jsxs("div",{children:[r.jsx("h1",{className:"text-2xl font-bold text-white",children:"分账提现管理"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"管理用户分销收益的提现申请"})]}),r.jsxs(X,{variant:"outline",onClick:R,disabled:a,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${a?"animate-spin":""}`}),"刷新"]})]}),r.jsx(Ee,{className:"bg-gradient-to-r from-[#38bdac]/10 to-[#0f2137] border-[#38bdac]/30 mb-6",children:r.jsx(Te,{className:"p-4",children:r.jsxs("div",{className:"flex items-start gap-3",children:[r.jsx(Ih,{className:"w-5 h-5 text-[#38bdac] mt-0.5"}),r.jsxs("div",{children:[r.jsx("h3",{className:"text-white font-medium mb-2",children:"自动分账规则"}),r.jsxs("div",{className:"text-sm text-gray-400 space-y-1",children:[r.jsxs("p",{children:["• ",r.jsx("span",{className:"text-[#38bdac]",children:"分销比例"}),":推广者获得订单金额的"," ",r.jsx("span",{className:"text-white font-medium",children:"90%"})]}),r.jsxs("p",{children:["• ",r.jsx("span",{className:"text-[#38bdac]",children:"结算方式"}),":用户付款后,分销收益自动计入推广者账户"]}),r.jsxs("p",{children:["• ",r.jsx("span",{className:"text-[#38bdac]",children:"提现方式"}),":用户在小程序端点击提现,系统自动转账到微信零钱"]}),r.jsxs("p",{children:["• ",r.jsx("span",{className:"text-[#38bdac]",children:"审批流程"}),":待处理的提现需管理员手动确认打款后批准(自动审批开关在推广中心-提现审核)"]})]})]})]})})}),r.jsxs("div",{className:"grid grid-cols-4 gap-4 mb-6",children:[r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Te,{className:"p-4 text-center",children:[r.jsx("div",{className:"text-3xl font-bold text-[#38bdac]",children:n.total}),r.jsx("div",{className:"text-sm text-gray-400",children:"总申请"})]})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Te,{className:"p-4 text-center",children:[r.jsx("div",{className:"text-3xl font-bold text-orange-400",children:n.pendingCount}),r.jsx("div",{className:"text-sm text-gray-400",children:"待处理"}),r.jsxs("div",{className:"text-xs text-orange-400 mt-1",children:["¥",n.pendingAmount.toFixed(2)]})]})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Te,{className:"p-4 text-center",children:[r.jsx("div",{className:"text-3xl font-bold text-green-400",children:n.successCount}),r.jsx("div",{className:"text-sm text-gray-400",children:"已完成"}),r.jsxs("div",{className:"text-xs text-green-400 mt-1",children:["¥",n.successAmount.toFixed(2)]})]})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsxs(Te,{className:"p-4 text-center",children:[r.jsx("div",{className:"text-3xl font-bold text-red-400",children:n.failedCount}),r.jsx("div",{className:"text-sm text-gray-400",children:"已拒绝"})]})})]}),r.jsx("div",{className:"flex gap-2 mb-4",children:["all","pending","success","failed"].map(_=>r.jsx(X,{variant:u===_?"default":"outline",size:"sm",onClick:()=>h(_),className:u===_?"bg-[#38bdac] hover:bg-[#2da396] text-white":"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:_==="all"?"全部":_==="pending"?"待处理":_==="success"?"已完成":"已拒绝"},_))}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Te,{className:"p-0",children:a?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):t.length===0?r.jsxs("div",{className:"text-center py-12",children:[r.jsx(Wl,{className:"w-12 h-12 text-gray-600 mx-auto mb-3"}),r.jsx("p",{className:"text-gray-500",children:"暂无提现记录"})]}):r.jsxs(r.Fragment,{children:[r.jsx("div",{className:"overflow-x-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"bg-[#0a1628] text-gray-400",children:[r.jsx("th",{className:"p-4 text-left font-medium",children:"申请时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"用户"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"提现金额"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"用户佣金信息"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"状态"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"备注"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"处理时间"}),r.jsx("th",{className:"p-4 text-left font-medium",children:"确认收款"}),r.jsx("th",{className:"p-4 text-right font-medium",children:"操作"})]})}),r.jsx("tbody",{className:"divide-y divide-gray-700/50",children:t.map(_=>r.jsxs("tr",{className:"hover:bg-[#0a1628] transition-colors",children:[r.jsx("td",{className:"p-4 text-gray-400",children:new Date(_.createdAt??"").toLocaleString()}),r.jsx("td",{className:"p-4",children:r.jsxs("div",{className:"flex items-center gap-2",children:[_.userAvatar?r.jsx("img",{src:_.userAvatar,alt:_.userName??"",className:"w-8 h-8 rounded-full object-cover"}):r.jsx("div",{className:"w-8 h-8 rounded-full bg-[#38bdac]/20 flex items-center justify-center text-sm text-[#38bdac]",children:(_.userName??"?").charAt(0)}),r.jsxs("div",{children:[r.jsx("p",{className:"font-medium text-white",children:_.userName??"未知"}),r.jsx("p",{className:"text-xs text-gray-500",children:_.userPhone??_.referralCode??(_.userId??"").slice(0,10)})]})]})}),r.jsx("td",{className:"p-4",children:r.jsxs("span",{className:"font-bold text-orange-400",children:["¥",Number(_.amount).toFixed(2)]})}),r.jsx("td",{className:"p-4",children:_.userCommissionInfo?r.jsxs("div",{className:"text-xs space-y-1",children:[r.jsxs("div",{className:"flex justify-between gap-4",children:[r.jsx("span",{className:"text-gray-500",children:"累计佣金:"}),r.jsxs("span",{className:"text-[#38bdac] font-medium",children:["¥",_.userCommissionInfo.totalCommission.toFixed(2)]})]}),r.jsxs("div",{className:"flex justify-between gap-4",children:[r.jsx("span",{className:"text-gray-500",children:"已提现:"}),r.jsxs("span",{className:"text-gray-400",children:["¥",_.userCommissionInfo.withdrawnEarnings.toFixed(2)]})]}),r.jsxs("div",{className:"flex justify-between gap-4",children:[r.jsx("span",{className:"text-gray-500",children:"待审核:"}),r.jsxs("span",{className:"text-orange-400",children:["¥",_.userCommissionInfo.pendingWithdrawals.toFixed(2)]})]}),r.jsxs("div",{className:"flex justify-between gap-4 pt-1 border-t border-gray-700/30",children:[r.jsx("span",{className:"text-gray-500",children:"审核后余额:"}),r.jsxs("span",{className:_.userCommissionInfo.availableAfterThis>=0?"text-green-400 font-medium":"text-red-400 font-medium",children:["¥",_.userCommissionInfo.availableAfterThis.toFixed(2)]})]})]}):r.jsx("span",{className:"text-gray-500 text-xs",children:"暂无数据"})}),r.jsx("td",{className:"p-4",children:me(_.status)}),r.jsx("td",{className:"p-4 max-w-[180px]",children:r.jsx("span",{className:`text-xs ${_.status==="rejected"||_.status==="failed"?"text-red-400":"text-gray-400"}`,title:_.remark,children:_.remark||"-"})}),r.jsx("td",{className:"p-4 text-gray-400",children:_.processedAt?new Date(_.processedAt).toLocaleString():"-"}),r.jsx("td",{className:"p-4 text-gray-400",children:_.userConfirmedAt?r.jsxs("span",{className:"text-green-400",title:_.userConfirmedAt,children:["已确认 ",new Date(_.userConfirmedAt).toLocaleString()]}):"-"}),r.jsxs("td",{className:"p-4 text-right",children:[(_.status==="pending"||_.status==="pending_confirm")&&r.jsxs("div",{className:"flex items-center justify-end gap-2",children:[r.jsxs(X,{size:"sm",onClick:()=>se(_.id),disabled:v===_.id,className:"bg-green-600 hover:bg-green-700 text-white",children:[r.jsx(Of,{className:"w-4 h-4 mr-1"}),"批准"]}),r.jsxs(X,{size:"sm",variant:"outline",onClick:()=>ie(_.id),disabled:v===_.id,className:"border-red-500/50 text-red-400 hover:bg-red-500/10 bg-transparent",children:[r.jsx(gs,{className:"w-4 h-4 mr-1"}),"拒绝"]})]}),(_.status==="success"||_.status==="completed")&&_.transactionId&&r.jsx("span",{className:"text-xs text-gray-500 font-mono",children:_.transactionId})]})]},_.id))})]})}),r.jsx(Fs,{page:f,totalPages:O,total:N,pageSize:g,onPageChange:m,onPageSizeChange:_=>{y(_),m(1)}})]})})}),r.jsx(It,{open:!!C,onOpenChange:_=>!_&&ce(),children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",children:[r.jsx(Rt,{children:r.jsx(Pt,{className:"text-white",children:"拒绝提现"})}),r.jsxs("div",{className:"space-y-4",children:[r.jsx("p",{className:"text-gray-400 text-sm",children:"拒绝后该笔提现金额将返还用户余额。"}),r.jsxs("div",{children:[r.jsx("label",{className:"text-sm text-gray-400 block mb-2",children:"拒绝原因(必填)"}),r.jsx("div",{className:"form-input",children:r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"请输入拒绝原因",value:M,onChange:_=>P(_.target.value)})})]})]}),r.jsxs(sn,{children:[r.jsx(X,{variant:"outline",className:"border-gray-600 text-gray-300",onClick:ce,disabled:H,children:"取消"}),r.jsx(X,{className:"bg-red-600 hover:bg-red-700 text-white",onClick:z,disabled:H||!M.trim(),children:H?"提交中...":"确认拒绝"})]})]})})]})}var sg={exports:{}},rg={};/** + * @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 v1;function FP(){if(v1)return rg;v1=1;var t=$d();function e(m,g){return m===g&&(m!==0||1/m===1/g)||m!==m&&g!==g}var n=typeof Object.is=="function"?Object.is:e,s=t.useState,a=t.useEffect,i=t.useLayoutEffect,o=t.useDebugValue;function c(m,g){var y=g(),N=s({inst:{value:y,getSnapshot:g}}),j=N[0].inst,v=N[1];return i(function(){j.value=y,j.getSnapshot=g,u(j)&&v({inst:j})},[m,y,g]),a(function(){return u(j)&&v({inst:j}),m(function(){u(j)&&v({inst:j})})},[m]),o(y),y}function u(m){var g=m.getSnapshot;m=m.value;try{var y=g();return!n(m,y)}catch{return!0}}function h(m,g){return g()}var f=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?h:c;return rg.useSyncExternalStore=t.useSyncExternalStore!==void 0?t.useSyncExternalStore:f,rg}var N1;function Jk(){return N1||(N1=1,sg.exports=FP()),sg.exports}var Yk=Jk();function Xn(t){this.content=t}Xn.prototype={constructor:Xn,find:function(t){for(var e=0;e>1}};Xn.from=function(t){if(t instanceof Xn)return t;var e=[];if(t)for(var n in t)e.push(n,t[n]);return new Xn(e)};function Qk(t,e,n){for(let s=0;;s++){if(s==t.childCount||s==e.childCount)return t.childCount==e.childCount?null:n;let a=t.child(s),i=e.child(s);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=Qk(a.content,i.content,n+1);if(o!=null)return o}n+=a.nodeSize}}function Xk(t,e,n,s){for(let a=t.childCount,i=e.childCount;;){if(a==0||i==0)return a==i?null:{a:n,b:s};let o=t.child(--a),c=e.child(--i),u=o.nodeSize;if(o==c){n-=u,s-=u;continue}if(!o.sameMarkup(c))return{a:n,b:s};if(o.isText&&o.text!=c.text){let h=0,f=Math.min(o.text.length,c.text.length);for(;he&&s(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),s,a+f)}c=h}}descendants(e){this.nodesBetween(0,this.size,e)}textBetween(e,n,s,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)&&s&&(o?o=!1:i+=s),i+=h},0),i}append(e){if(!e.size)return this;if(!this.size)return e;let n=this.lastChild,s=e.firstChild,a=this.content.slice(),i=0;for(n.isText&&n.sameMarkup(s)&&(a[a.length-1]=n.withText(n.text+s.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))),s.push(c),a+=c.nodeSize),o=u}return new Ne(s,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 s=this.content[e];if(s==n)return this;let a=this.content.slice(),i=this.size+n.nodeSize-s.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,s=0;;n++){let a=this.child(n),i=s+a.nodeSize;if(i>=e)return i==e?nh(n+1,i):nh(n,s);s=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,s=0;for(let a=0;athis.type.rank&&(n||(n=e.slice(0,a)),n.push(this),s=!0),n&&n.push(i)}}return n||(n=e.slice()),s||n.push(this),n}removeFromSet(e){for(let n=0;ns.type.rank-a.type.rank),n}};Vt.none=[];class zh extends Error{}class Oe{constructor(e,n,s){this.content=e,this.openStart=n,this.openEnd=s}get size(){return this.content.size-this.openStart-this.openEnd}insertAt(e,n){let s=eS(this.content,e+this.openStart,n);return s&&new Oe(s,this.openStart,this.openEnd)}removeBetween(e,n){return new Oe(Zk(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 Oe.empty;let s=n.openStart||0,a=n.openEnd||0;if(typeof s!="number"||typeof a!="number")throw new RangeError("Invalid input for Slice.fromJSON");return new Oe(Ne.fromJSON(e,n.content),s,a)}static maxOpen(e,n=!0){let s=0,a=0;for(let i=e.firstChild;i&&!i.isLeaf&&(n||!i.type.spec.isolating);i=i.firstChild)s++;for(let i=e.lastChild;i&&!i.isLeaf&&(n||!i.type.spec.isolating);i=i.lastChild)a++;return new Oe(e,s,a)}}Oe.empty=new Oe(Ne.empty,0,0);function Zk(t,e,n){let{index:s,offset:a}=t.findIndex(e),i=t.maybeChild(s),{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(s!=o)throw new RangeError("Removing non-flat range");return t.replaceChild(s,i.copy(Zk(i.content,e-a-1,n-a-1)))}function eS(t,e,n,s){let{index:a,offset:i}=t.findIndex(e),o=t.maybeChild(a);if(i==e||o.isText)return s&&!s.canReplace(a,a,n)?null:t.cut(0,e).append(n).append(t.cut(e));let c=eS(o.content,e-i-1,n,o);return c&&t.replaceChild(a,o.copy(c))}function $P(t,e,n){if(n.openStart>t.depth)throw new zh("Inserted content deeper than insertion position");if(t.depth-n.openStart!=e.depth-n.openEnd)throw new zh("Inconsistent open depths");return tS(t,e,n,0)}function tS(t,e,n,s){let a=t.index(s),i=t.node(s);if(a==e.index(s)&&s=0&&t.isText&&t.sameMarkup(e[n])?e[n]=t.withText(e[n].text+t.text):e.push(t)}function ud(t,e,n,s){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&&(Io(t.nodeAfter,s),i++));for(let c=i;ca&&ox(t,e,a+1),o=s.depth>a&&ox(n,s,a+1),c=[];return ud(null,t,a,c),i&&o&&e.index(a)==n.index(a)?(nS(i,o),Io(Ro(i,sS(t,e,n,s,a+1)),c)):(i&&Io(Ro(i,Fh(t,e,a+1)),c),ud(e,n,a,c),o&&Io(Ro(o,Fh(n,s,a+1)),c)),ud(s,null,a,c),new Ne(c)}function Fh(t,e,n){let s=[];if(ud(null,t,n,s),t.depth>n){let a=ox(t,e,n+1);Io(Ro(a,Fh(t,e,n+1)),s)}return ud(e,null,n,s),new Ne(s)}function BP(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 Ed{constructor(e,n,s){this.pos=e,this.path=n,this.parentOffset=s,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 s=this.pos-this.path[this.path.length-1],a=e.child(n);return s?e.child(n).cut(s):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 s=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;s--)if(e.pos<=this.end(s)&&(!n||n(this.node(s))))return new $h(this,e,s);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 s=[],a=0,i=n;for(let o=e;;){let{index:c,offset:u}=o.content.findIndex(i),h=i-u;if(s.push(o,c,a+u),!h||(o=o.child(c),o.isText))break;i=h-1,a+=u+1}return new Ed(n,s,i)}static resolveCached(e,n){let s=w1.get(e);if(s)for(let i=0;ie&&this.nodesBetween(e,n,i=>(s.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()+")"),rS(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,s=Ne.empty,a=0,i=s.childCount){let o=this.contentMatchAt(e).matchFragment(s,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 s;if(n.marks){if(!Array.isArray(n.marks))throw new RangeError("Invalid mark data for Node.fromJSON");s=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,s)}let a=Ne.fromJSON(e,n.content),i=e.nodeType(n.type).create(n.attrs,a,s);return i.type.checkAttrs(i.attrs),i}};Va.prototype.text=void 0;class Bh extends Va{constructor(e,n,s,a){if(super(e,n,null,a),!s)throw new RangeError("Empty text nodes are not allowed");this.text=s}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):rS(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 Bh(this.type,this.attrs,this.text,e)}withText(e){return e==this.text?this:new Bh(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 rS(t,e){for(let n=t.length-1;n>=0;n--)e=t[n].type.name+"("+e+")";return e}class Fo{constructor(e){this.validEnd=e,this.next=[],this.wrapCache=[]}static parse(e,n){let s=new UP(e,n);if(s.next==null)return Fo.empty;let a=aS(s);s.next&&s.err("Unexpected trailing text");let i=XP(QP(a));return ZP(i,s),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(s){e.push(s);for(let a=0;a{let i=a+(s.validEnd?"*":" ")+" ";for(let o=0;o"+e.indexOf(s.next[o].next);return i}).join(` +`)}}Fo.empty=new Fo(!0);class UP{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 aS(t){let e=[];do e.push(KP(t));while(t.eat("|"));return e.length==1?e[0]:{type:"choice",exprs:e}}function KP(t){let e=[];do e.push(qP(t));while(t.next&&t.next!=")"&&t.next!="|");return e.length==1?e[0]:{type:"seq",exprs:e}}function qP(t){let e=YP(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=GP(t,e);else break;return e}function j1(t){/\D/.test(t.next)&&t.err("Expected number, got '"+t.next+"'");let e=Number(t.next);return t.pos++,e}function GP(t,e){let n=j1(t),s=n;return t.eat(",")&&(t.next!="}"?s=j1(t):s=-1),t.eat("}")||t.err("Unclosed braced range"),{type:"range",min:n,max:s,expr:e}}function JP(t,e){let n=t.nodeTypes,s=n[e];if(s)return[s];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 YP(t){if(t.eat("(")){let e=aS(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=JP(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 QP(t){let e=[[]];return a(i(t,0),n()),e;function n(){return e.push([])-1}function s(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 s(c,u),a(i(o.expr,u),u),[s(u)]}else if(o.type=="plus"){let u=n();return a(i(o.expr,c),u),a(i(o.expr,u),u),[s(u)]}else{if(o.type=="opt")return[s(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[s.join(",")]=new Fo(s.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:lS(this.attrs,e)}create(e=null,n,s){if(this.isText)throw new Error("NodeType.create can't construct text nodes");return new Va(this,this.computeAttrs(e),Ne.from(n),Vt.setFrom(s))}createChecked(e=null,n,s){return n=Ne.from(n),this.checkContent(n),new Va(this,this.computeAttrs(e),n,Vt.setFrom(s))}createAndFill(e=null,n,s){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 Va(this,e,n.append(i),Vt.setFrom(s)):null}validContent(e){let n=this.contentMatch.matchFragment(e);if(!n||!n.validEnd)return!1;for(let s=0;s-1}allowsMarks(e){if(this.markSet==null)return!0;for(let n=0;ns[i]=new uS(i,n,o));let a=n.spec.topNode||"doc";if(!s[a])throw new RangeError("Schema is missing its top node type ('"+a+"')");if(!s.text)throw new RangeError("Every schema needs a 'text' type");for(let i in s.text.attrs)throw new RangeError("The text node type should not have attributes");return s}};function eO(t,e,n){let s=n.split("|");return a=>{let i=a===null?"null":typeof a;if(s.indexOf(i)<0)throw new RangeError(`Expected value of type ${s} for attribute ${e} on type ${t}, got ${i}`)}}class tO{constructor(e,n,s){this.hasDefault=Object.prototype.hasOwnProperty.call(s,"default"),this.default=s.default,this.validate=typeof s.validate=="string"?eO(e,n,s.validate):s.validate}get isRequired(){return!this.hasDefault}}class Hf{constructor(e,n,s,a){this.name=e,this.rank=n,this.schema=s,this.spec=a,this.attrs=dS(e,a.attrs),this.excluded=null;let i=oS(this.attrs);this.instance=i?new Vt(this,i):null}create(e=null){return!e&&this.instance?this.instance:new Vt(this,lS(this.attrs,e))}static compile(e,n){let s=Object.create(null),a=0;return e.forEach((i,o)=>s[i]=new Hf(i,a++,n,o)),s}removeFromSet(e){for(var n=0;n-1}}class hS{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=Xn.from(e.nodes),n.marks=Xn.from(e.marks||{}),this.nodes=S1.compile(this.spec.nodes,this),this.marks=Hf.compile(this.spec.marks,this);let s=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=s[o]||(s[o]=Fo.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?C1(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==""?[]:C1(this,o.split(" "))}this.nodeFromJSON=a=>Va.fromJSON(this,a),this.markFromJSON=a=>Vt.fromJSON(this,a),this.topNodeType=this.nodes[this.spec.topNode||"doc"],this.cached.wrappings=Object.create(null)}node(e,n=null,s,a){if(typeof e=="string")e=this.nodeType(e);else if(e instanceof S1){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,s,a)}text(e,n){let s=this.nodes.text;return new Bh(s,s.defaultAttrs,e,Vt.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 C1(t,e){let n=[];for(let s=0;s-1)&&n.push(o=u)}if(!o)throw new SyntaxError("Unknown mark type: '"+e[s]+"'")}return n}function nO(t){return t.tag!=null}function sO(t){return t.style!=null}class Oi{constructor(e,n){this.schema=e,this.rules=n,this.tags=[],this.styles=[];let s=this.matchedStyles=[];n.forEach(a=>{if(nO(a))this.tags.push(a);else if(sO(a)){let i=/[^=]*/.exec(a.style)[0];s.indexOf(i)<0&&s.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 s=new T1(this,n,!1);return s.addAll(e,Vt.none,n.from,n.to),s.finish()}parseSlice(e,n={}){let s=new T1(this,n,!0);return s.addAll(e,Vt.none,n.from,n.to),Oe.maxOpen(s.finish())}matchTag(e,n,s){for(let a=s?this.tags.indexOf(s)+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 s(a){let i=a.priority==null?50:a.priority,o=0;for(;o{s(o=M1(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=>{s(o=M1(o)),o.node||o.ignore||o.mark||(o.node=a)})}return n}static fromSchema(e){return e.cached.domParser||(e.cached.domParser=new Oi(e,Oi.schemaRules(e)))}}const fS={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},rO={head:!0,noscript:!0,object:!0,script:!0,style:!0,title:!0},pS={ol:!0,ul:!0},Td=1,cx=2,hd=4;function E1(t,e,n){return e!=null?(e?Td:0)|(e==="full"?cx:0):t&&t.whitespace=="pre"?Td|cx:n&~hd}class sh{constructor(e,n,s,a,i,o){this.type=e,this.attrs=n,this.marks=s,this.solid=a,this.options=o,this.content=[],this.activeMarks=Vt.none,this.match=i||(o&hd?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 s=this.type.contentMatch,a;return(a=s.findWrapping(e.type))?(this.match=s,a):null}}return this.match.findWrapping(e.type)}finish(e){if(!(this.options&Td)){let s=this.content[this.content.length-1],a;if(s&&s.isText&&(a=/[ \t\r\n\u000c]+$/.exec(s.text))){let i=s;s.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&&!fS.hasOwnProperty(e.parentNode.nodeName.toLowerCase())}}class T1{constructor(e,n,s){this.parser=e,this.options=n,this.isOpen=s,this.open=0,this.localPreserveWS=!1;let a=n.topNode,i,o=E1(null,n.preserveWhitespace,0)|(s?hd:0);a?i=new sh(a.type,a.attrs,Vt.none,!0,n.topMatch||a.type.contentMatch,o):s?i=new sh(null,null,Vt.none,!0,null,o):i=new sh(e.schema.topNodeType,null,Vt.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 s=e.nodeValue,a=this.top,i=a.options&cx?"full":this.localPreserveWS||(a.options&Td)>0,{schema:o}=this.parser;if(i==="full"||a.inlineContext(e)||/[^ \t\r\n\u000c]/.test(s)){if(i)if(i==="full")s=s.replace(/\r\n?/g,` +`);else if(o.linebreakReplacement&&/[\r\n]/.test(s)&&this.top.findWrapping(o.linebreakReplacement.create())){let c=s.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,s,a){let i,o;if(n.node)if(o=this.parser.schema.nodes[n.node],o.isLeaf)this.insertNode(o.create(n.attrs),s,e.nodeName=="BR")||this.leafFallback(e,s);else{let u=this.enter(o,n.attrs||null,s,n.preserveWhitespace);u&&(i=!0,s=u)}else{let u=this.parser.schema.marks[n.mark];s=s.concat(u.create(n.attrs))}let c=this.top;if(o&&o.isLeaf)this.findInside(e);else if(a)this.addElement(e,s,a);else if(n.getContent)this.findInside(e),n.getContent(e,this.parser.schema).forEach(u=>this.insertNode(u,s,!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,s),this.findAround(e,u,!1)}i&&this.sync(c)&&this.open--}addAll(e,n,s,a){let i=s||0;for(let o=s?e.childNodes[s]: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,s){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(s)break;c+=2}}if(!a)return null;this.sync(i);for(let o=0;o(o.type?o.type.allowsMarkType(h.type):A1(h.type,e))?(u=h.addToSet(u),!1):!0),this.nodes.push(new sh(e,n,u,a,null,c)),this.open++,s}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|=Td)}return!1}get currentPos(){this.closeExtra();let e=0;for(let n=this.open;n>=0;n--){let s=this.nodes[n].content;for(let a=s.length-1;a>=0;a--)e+=s[a].nodeSize;n&&e++}return e}findAtPoint(e,n){if(this.find)for(let s=0;s-1)return e.split(/\s*\|\s*/).some(this.matchesContext,this);let n=e.split("/"),s=this.options.context,a=!this.isOpen&&(!s||s.parent.type==this.nodes[0].type),i=-(s?s.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:s&&u>=i?s.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 s=e.node(n).contentMatchAt(e.indexAfter(n)).defaultType;if(s&&s.isTextblock&&s.defaultAttrs)return s}for(let n in this.parser.schema.nodes){let s=this.parser.schema.nodes[n];if(s.isTextblock&&s.defaultAttrs)return s}}}function aO(t){for(let e=t.firstChild,n=null;e;e=e.nextSibling){let s=e.nodeType==1?e.nodeName.toLowerCase():null;s&&pS.hasOwnProperty(s)&&n?(n.appendChild(e),e=n):s=="li"?n=e:s&&(n=null)}}function iO(t,e){return(t.matches||t.msMatchesSelector||t.webkitMatchesSelector||t.mozMatchesSelector).call(t,e)}function M1(t){let e={};for(let n in t)e[n]=t[n];return e}function A1(t,e){let n=e.schema.nodes;for(let s in n){let a=n[s];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(s),s=i.dom)}return s}serializeMark(e,n,s={}){let a=this.marks[e.type.name];return a&&Nh(ig(s),a(e,n),null,e.attrs)}static renderSpec(e,n,s=null,a){return Nh(e,n,s,a)}static fromSchema(e){return e.cached.domSerializer||(e.cached.domSerializer=new Jo(this.nodesFromSchema(e),this.marksFromSchema(e)))}static nodesFromSchema(e){let n=I1(e.nodes);return n.text||(n.text=s=>s.text),n}static marksFromSchema(e){return I1(e.marks)}}function I1(t){let e={};for(let n in t){let s=t[n].spec.toDOM;s&&(e[n]=s)}return e}function ig(t){return t.document||window.document}const R1=new WeakMap;function oO(t){let e=R1.get(t);return e===void 0&&R1.set(t,e=lO(t)),e}function lO(t){let e=null;function n(s){if(s&&typeof s=="object")if(Array.isArray(s))if(typeof s[0]=="string")e||(e=[]),e.push(s);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 g=m.indexOf(" ");g>0?u.setAttributeNS(m.slice(0,g),m.slice(g+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:N}=Nh(t,g,n,s);if(u.appendChild(y),N){if(c)throw new RangeError("Multiple content holes");c=N}}}return{dom:u,contentDOM:c}}const mS=65535,gS=Math.pow(2,16);function cO(t,e){return t+e*gS}function P1(t){return t&mS}function dO(t){return(t-(t&mS))/gS}const xS=1,yS=2,wh=4,bS=8;class dx{constructor(e,n,s){this.pos=e,this.delInfo=n,this.recover=s}get deleted(){return(this.delInfo&bS)>0}get deletedBefore(){return(this.delInfo&(xS|wh))>0}get deletedAfter(){return(this.delInfo&(yS|wh))>0}get deletedAcross(){return(this.delInfo&wh)>0}}class Gs{constructor(e,n=!1){if(this.ranges=e,this.inverted=n,!e.length&&Gs.empty)return Gs.empty}recover(e){let n=0,s=P1(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 g=h?e==u?-1:e==m?1:n:n,y=u+a+(g<0?0:f);if(s)return y;let N=e==(n<0?u:m)?null:cO(c/3,e-u),j=e==u?yS:e==m?xS:wh;return(n<0?e!=u:e!=m)&&(j|=bS),new dx(y,j,N)}a+=f-h}return s?e+a:new dx(e+a,0,null)}touches(e,n){let s=0,a=P1(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;s+=this.ranges[c+o]-h}return!1}forEach(e){let n=this.inverted?2:1,s=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?s-a-1:void 0)}}invert(){let e=new Md;return e.appendMappingInverted(this),e}map(e,n=1){if(this.mirror)return this._map(e,n,!0);for(let s=this.from;si&&u!o.isAtom||!c.type.allowsMarkType(this.mark.type)?o:o.mark(this.mark.addToSet(o.marks)),a),n.openStart,n.openEnd);return Tn.fromReplace(e,this.from,this.to,i)}invert(){return new Ir(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),s=e.mapResult(this.to,-1);return n.deleted&&s.deleted||n.pos>=s.pos?null:new Mi(n.pos,s.pos,this.mark)}merge(e){return e instanceof Mi&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new Mi(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 Mi(n.from,n.to,e.markFromJSON(n.mark))}}vs.jsonID("addMark",Mi);class Ir extends vs{constructor(e,n,s){super(),this.from=e,this.to=n,this.mark=s}apply(e){let n=e.slice(this.from,this.to),s=new Oe(N0(n.content,a=>a.mark(this.mark.removeFromSet(a.marks)),e),n.openStart,n.openEnd);return Tn.fromReplace(e,this.from,this.to,s)}invert(){return new Mi(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),s=e.mapResult(this.to,-1);return n.deleted&&s.deleted||n.pos>=s.pos?null:new Ir(n.pos,s.pos,this.mark)}merge(e){return e instanceof Ir&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new Ir(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 Ir(n.from,n.to,e.markFromJSON(n.mark))}}vs.jsonID("removeMark",Ir);class Ai extends vs{constructor(e,n){super(),this.pos=e,this.mark=n}apply(e){let n=e.nodeAt(this.pos);if(!n)return Tn.fail("No node at mark step's position");let s=n.type.create(n.attrs,null,this.mark.addToSet(n.marks));return Tn.fromReplace(e,this.pos,this.pos+1,new Oe(Ne.from(s),0,n.isLeaf?0:1))}invert(e){let n=e.nodeAt(this.pos);if(n){let s=this.mark.addToSet(n.marks);if(s.length==n.marks.length){for(let a=0;as.pos?null:new Hn(n.pos,s.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 Hn(n.from,n.to,n.gapFrom,n.gapTo,Oe.fromJSON(e,n.slice),n.insert,!!n.structure)}}vs.jsonID("replaceAround",Hn);function ux(t,e,n){let s=t.resolve(e),a=n-e,i=s.depth;for(;a>0&&i>0&&s.indexAfter(i)==s.node(i).childCount;)i--,a--;if(a>0){let o=s.node(i).maybeChild(s.indexAfter(i));for(;a>0;){if(!o||o.isLeaf)return!0;o=o.firstChild,a--}}return!1}function uO(t,e,n,s){let a=[],i=[],o,c;t.doc.nodesBetween(e,n,(u,h,f)=>{if(!u.isInline)return;let m=u.marks;if(!s.isInSet(m)&&f.type.allowsMarkType(s.type)){let g=Math.max(h,e),y=Math.min(h+u.nodeSize,n),N=s.addToSet(m);for(let j=0;jt.step(u)),i.forEach(u=>t.step(u))}function hO(t,e,n,s){let a=[],i=0;t.doc.nodesBetween(e,n,(o,c)=>{if(!o.isInline)return;i++;let u=null;if(s instanceof Hf){let h=o.marks,f;for(;f=s.isInSet(h);)(u||(u=[])).push(f),h=f.removeFromSet(h)}else s?s.isInSet(o.marks)&&(u=[s]):u=o.marks;if(u&&u.length){let h=Math.min(c+o.nodeSize,n);for(let f=0;ft.step(new Ir(o.from,o.to,o.style)))}function w0(t,e,n,s=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 fO(t,e,n){return(e==0||t.canReplace(e,t.childCount))&&(n==t.childCount||t.canReplace(0,n))}function ic(t){let n=t.parent.content.cutByIndex(t.startIndex,t.endIndex);for(let s=t.depth,a=0,i=0;;--s){let o=t.$from.node(s),c=t.$from.index(s)+a,u=t.$to.indexAfter(s)-i;if(sn;N--)j||s.index(N)>0?(j=!0,f=Ne.from(s.node(N).copy(f)),m++):u--;let g=Ne.empty,y=0;for(let N=i,j=!1;N>n;N--)j||a.after(N+1)=0;o--){if(s.size){let c=n[o].type.contentMatch.matchFragment(s);if(!c||!c.validEnd)throw new RangeError("Wrapper type given to Transform.wrap does not form valid content of its parent wrapper")}s=Ne.from(n[o].type.create(n[o].attrs,s))}let a=e.start,i=e.end;t.step(new Hn(a,i,a,i,new Oe(s,0,0),n.length,!0))}function yO(t,e,n,s,a){if(!s.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(s,u)&&bO(t.doc,t.mapping.slice(i).map(c),s)){let h=null;if(s.schema.linebreakReplacement){let y=s.whitespace=="pre",N=!!s.contentMatch.matchType(s.schema.linebreakReplacement);y&&!N?h=!1:!y&&N&&(h=!0)}h===!1&&NS(t,o,c,i),w0(t,t.mapping.slice(i).map(c,1),s,void 0,h===null);let f=t.mapping.slice(i),m=f.map(c,1),g=f.map(c+o.nodeSize,1);return t.step(new Hn(m,g,m+1,g-1,new Oe(Ne.from(s.create(u,null,o.marks)),0,0),1,!0)),h===!0&&vS(t,o,c,i),!1}})}function vS(t,e,n,s){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(s).map(n+1+i+o.index);t.replaceWith(u,u+1,e.type.schema.linebreakReplacement.create())}}})}function NS(t,e,n,s){e.forEach((a,i)=>{if(a.type==a.type.schema.linebreakReplacement){let o=t.mapping.slice(s).map(n+1+i);t.replaceWith(o,o+1,e.type.schema.text(` +`))}})}function bO(t,e,n){let s=t.resolve(e),a=s.index();return s.parent.canReplaceWith(a,a+1,n)}function vO(t,e,n,s,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(s,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 Hn(e,e+i.nodeSize,e+1,e+i.nodeSize-1,new Oe(Ne.from(o),0,0),1,!0))}function Ha(t,e,n=1,s){let a=t.resolve(e),i=a.depth-n,o=s&&s[s.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),g=a.index(h);if(m.type.spec.isolating)return!1;let y=m.content.cutByIndex(g,m.childCount),N=s&&s[f+1];N&&(y=y.replaceChild(0,N.type.create(N.attrs)));let j=s&&s[f]||m;if(!m.canReplace(g+1,m.childCount)||!j.type.validContent(y))return!1}let c=a.indexAfter(i),u=s&&s[0];return a.node(i).canReplaceWith(c,c,u?u.type:a.node(i+1).type)}function NO(t,e,n=1,s){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=s&&s[h];o=Ne.from(f?f.type.create(f.attrs,o):a.node(c).copy(o))}t.step(new Vn(e,e,new Oe(i.append(o),n,n),!0))}function Gi(t,e){let n=t.resolve(e),s=n.index();return wS(n.nodeBefore,n.nodeAfter)&&n.parent.canReplace(s,s+1)}function wO(t,e){e.content.size||t.type.compatibleContent(e.type);let n=t.contentMatchAt(t.childCount),{linebreakReplacement:s}=t.type.schema;for(let a=0;a0?(i=s.node(a+1),c++,o=s.node(a).maybeChild(c)):(i=s.node(a).maybeChild(c-1),o=s.node(a+1)),i&&!i.isTextblock&&wS(i,o)&&s.node(a).canReplace(c,c+1))return e;if(a==0)break;e=n<0?s.before(a):s.after(a)}}function jO(t,e,n){let s=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?s=!1:!f&&m&&(s=!0)}let c=t.steps.length;if(s===!1){let f=t.doc.resolve(e+n);NS(t,f.node(),f.before(),c)}o.inlineContent&&w0(t,e+n-1,o,i.node().contentMatchAt(i.index()),s==null);let u=t.mapping.slice(c),h=u.map(e-n);if(t.step(new Vn(h,u.map(e+n,-1),Oe.empty,!0)),s===!0){let f=t.doc.resolve(h);vS(t,f.node(),f.before(),t.steps.length)}return t}function kO(t,e,n){let s=t.resolve(e);if(s.parent.canReplaceWith(s.index(),s.index(),n))return e;if(s.parentOffset==0)for(let a=s.depth-1;a>=0;a--){let i=s.index(a);if(s.node(a).canReplaceWith(i,i,n))return s.before(a+1);if(i>0)return null}if(s.parentOffset==s.parent.content.size)for(let a=s.depth-1;a>=0;a--){let i=s.indexAfter(a);if(s.node(a).canReplaceWith(i,i,n))return s.after(a+1);if(i=0;o--){let c=o==s.depth?0:s.pos<=(s.start(o+1)+s.end(o+1))/2?-1:1,u=s.index(o)+(c>0?1:0),h=s.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?s.pos:c<0?s.before(o+1):s.after(o+1)}return null}function Uf(t,e,n=e,s=Oe.empty){if(e==n&&!s.size)return null;let a=t.resolve(e),i=t.resolve(n);return kS(a,i,s)?new Vn(e,n,s):new SO(a,i,s).fit()}function kS(t,e,n){return!n.openStart&&!n.openEnd&&t.start()==e.start()&&t.parent.canReplace(t.index(),e.index(),n.content)}class SO{constructor(e,n,s){this.$from=e,this.$to=n,this.unplaced=s,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,s=this.$from,a=this.close(e<0?this.$to:s.doc.resolve(e));if(!a)return null;let i=this.placed,o=s.depth,c=a.depth;for(;o&&c&&i.childCount==1;)i=i.firstChild.content,o--,c--;let u=new Oe(i,o,c);return e>-1?new Hn(s.pos,e,this.$to.pos,this.$to.end(),u,n):u.size||s.pos!=this.$to.pos?new Vn(s.pos,a.pos,u):null}findFittable(){let e=this.unplaced.openStart;for(let n=this.unplaced.content,s=0,a=this.unplaced.openEnd;s1&&(a=0),i.type.spec.isolating&&a<=s){e=s;break}n=i.content}for(let n=1;n<=2;n++)for(let s=n==1?e:this.unplaced.openStart;s>=0;s--){let a,i=null;s?(i=lg(this.unplaced.content,s-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:s,frontierDepth:c,parent:i,inject:m};if(n==2&&o&&(f=h.findWrapping(o.type)))return{sliceDepth:s,frontierDepth:c,parent:i,wrap:f};if(i&&h.matchType(i.type))break}}}openMore(){let{content:e,openStart:n,openEnd:s}=this.unplaced,a=lg(e,n);return!a.childCount||a.firstChild.isLeaf?!1:(this.unplaced=new Oe(e,n+1,Math.max(s,a.size+n>=e.size-s?n+1:0)),!0)}dropNode(){let{content:e,openStart:n,openEnd:s}=this.unplaced,a=lg(e,n);if(a.childCount<=1&&n>0){let i=e.size-n<=n+a.size;this.unplaced=new Oe(ed(e,n-1,1),n-1,i?n-1:s)}else this.unplaced=new Oe(ed(e,n,1),n,s)}placeNodes({sliceDepth:e,frontierDepth:n,parent:s,inject:a,wrap:i}){for(;this.depth>n;)this.closeFrontierNode();if(i)for(let j=0;j1||u==0||j.content.size)&&(m=v,f.push(SS(j.mark(g.allowedMarks(j.marks)),h==1?u:0,h==c.childCount?y:-1)))}let N=h==c.childCount;N||(y=-1),this.placed=td(this.placed,n,Ne.from(f)),this.frontier[n].match=m,N&&y<0&&s&&s.type==this.frontier[this.depth].type&&this.frontier.length>1&&this.closeFrontierNode();for(let j=0,v=c;j1&&a==this.$to.end(--s);)++a;return a}findCloseLevel(e){e:for(let n=Math.min(this.depth,e.depth);n>=0;n--){let{match:s,type:a}=this.frontier[n],i=n=0;c--){let{match:u,type:h}=this.frontier[c],f=cg(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=td(this.placed,n.depth,n.fit)),e=n.move;for(let s=n.depth+1;s<=e.depth;s++){let a=e.node(s),i=a.type.contentMatch.fillBefore(a.content,!0,e.index(s));this.openFrontierNode(a.type,a.attrs,i)}return e}openFrontierNode(e,n=null,s){let a=this.frontier[this.depth];a.match=a.match.matchType(e),this.placed=td(this.placed,this.depth,Ne.from(e.create(n,s))),this.frontier.push({type:e,match:e.contentMatch})}closeFrontierNode(){let n=this.frontier.pop().match.fillBefore(Ne.empty,!0);n.childCount&&(this.placed=td(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 td(t,e,n){return e==0?t.append(n):t.replaceChild(t.childCount-1,t.lastChild.copy(td(t.lastChild.content,e-1,n)))}function lg(t,e){for(let n=0;n1&&(s=s.replaceChild(0,SS(s.firstChild,e-1,s.childCount==1?n-1:0))),e>0&&(s=t.type.contentMatch.fillBefore(s).append(s),n<=0&&(s=s.append(t.type.contentMatch.matchFragment(s).fillBefore(Ne.empty,!0)))),t.copy(s)}function cg(t,e,n,s,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=s.fillBefore(i.content,!0,o);return c&&!CO(n,i.content,o)?c:null}function CO(t,e,n){for(let s=n;s0;g--,y--){let N=a.node(g).type.spec;if(N.defining||N.definingAsContext||N.isolating)break;o.indexOf(g)>-1?c=g:a.before(g)==y&&o.splice(1,0,-g)}let u=o.indexOf(c),h=[],f=s.openStart;for(let g=s.content,y=0;;y++){let N=g.firstChild;if(h.push(N),y==s.openStart)break;g=N.content}for(let g=f-1;g>=0;g--){let y=h[g],N=EO(y.type);if(N&&!y.sameMarkup(a.node(Math.abs(c)-1)))f=g;else if(N||!y.type.isTextblock)break}for(let g=s.openStart;g>=0;g--){let y=(g+f+1)%(s.openStart+1),N=h[y];if(N)for(let j=0;j=0&&(t.replace(e,n,s),!(t.steps.length>m));g--){let y=o[g];y<0||(e=a.before(y),n=i.after(y))}}function CS(t,e,n,s,a){if(es){let i=a.contentMatchAt(0),o=i.fillBefore(t).append(t);t=o.append(i.matchFragment(o).fillBefore(Ne.empty,!0))}return t}function MO(t,e,n,s){if(!s.isInline&&e==n&&t.doc.resolve(e).parent.content.size){let a=kO(t.doc,e,s.type);a!=null&&(e=n=a)}t.replaceRange(e,n,new Oe(Ne.from(s),0,0))}function AO(t,e,n){let s=t.doc.resolve(e),a=t.doc.resolve(n),i=ES(s,a);for(let o=0;o0&&(u||s.node(c-1).canReplace(s.index(c-1),a.indexAfter(c-1))))return t.delete(s.before(c),a.after(c))}for(let o=1;o<=s.depth&&o<=a.depth;o++)if(e-s.start(o)==s.depth-o&&n>s.end(o)&&a.end(o)-n!=a.depth-o&&s.start(o-1)==a.start(o-1)&&s.node(o-1).canReplace(s.index(o-1),a.index(o-1)))return t.delete(s.before(o),n);t.delete(e,n)}function ES(t,e){let n=[],s=Math.min(t.depth,e.depth);for(let a=s;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 Bl extends vs{constructor(e,n,s){super(),this.pos=e,this.attr=n,this.value=s}apply(e){let n=e.nodeAt(this.pos);if(!n)return Tn.fail("No node at attribute step's position");let s=Object.create(null);for(let i in n.attrs)s[i]=n.attrs[i];s[this.attr]=this.value;let a=n.type.create(s,null,n.marks);return Tn.fromReplace(e,this.pos,this.pos+1,new Oe(Ne.from(a),0,n.isLeaf?0:1))}getMap(){return Gs.empty}invert(e){return new Bl(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 Bl(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 Bl(n.pos,n.attr,n.value)}}vs.jsonID("attr",Bl);class Ad extends vs{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 s=e.type.create(n,e.content,e.marks);return Tn.ok(s)}getMap(){return Gs.empty}invert(e){return new Ad(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 Ad(n.attr,n.value)}}vs.jsonID("docAttr",Ad);let Ul=class extends Error{};Ul=function t(e){let n=Error.call(this,e);return n.__proto__=t.prototype,n};Ul.prototype=Object.create(Error.prototype);Ul.prototype.constructor=Ul;Ul.prototype.name="TransformError";class k0{constructor(e){this.doc=e,this.steps=[],this.docs=[],this.mapping=new Md}get before(){return this.docs.length?this.docs[0]:this.doc}step(e){let n=this.maybeStep(e);if(n.failed)throw new Ul(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 s=0;s{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,s=Oe.empty){let a=Uf(this.doc,e,n,s);return a&&this.step(a),this}replaceWith(e,n,s){return this.replace(e,n,new Oe(Ne.from(s),0,0))}delete(e,n){return this.replace(e,n,Oe.empty)}insert(e,n){return this.replaceWith(e,e,n)}replaceRange(e,n,s){return TO(this,e,n,s),this}replaceRangeWith(e,n,s){return MO(this,e,n,s),this}deleteRange(e,n){return AO(this,e,n),this}lift(e,n){return pO(this,e,n),this}join(e,n=1){return jO(this,e,n),this}wrap(e,n){return xO(this,e,n),this}setBlockType(e,n=e,s,a=null){return yO(this,e,n,s,a),this}setNodeMarkup(e,n,s=null,a){return vO(this,e,n,s,a),this}setNodeAttribute(e,n,s){return this.step(new Bl(e,n,s)),this}setDocAttribute(e,n){return this.step(new Ad(e,n)),this}addNodeMark(e,n){return this.step(new Ai(e,n)),this}removeNodeMark(e,n){let s=this.doc.nodeAt(e);if(!s)throw new RangeError("No node at position "+e);if(n instanceof Vt)n.isInSet(s.marks)&&this.step(new $o(e,n));else{let a=s.marks,i,o=[];for(;i=n.isInSet(a);)o.push(new $o(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,s){return NO(this,e,n,s),this}addMark(e,n,s){return uO(this,e,n,s),this}removeMark(e,n,s){return hO(this,e,n,s),this}clearIncompatible(e,n,s){return w0(this,e,n,s),this}}const dg=Object.create(null);class nt{constructor(e,n,s){this.$anchor=e,this.$head=n,this.ranges=s||[new TS(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?Al(e.node(0),e.node(i),e.before(i+1),e.index(i),n,s):Al(e.node(0),e.node(i),e.after(i+1),e.index(i)+1,n,s);if(o)return o}return null}static near(e,n=1){return this.findFrom(e,n)||this.findFrom(e,-n)||new Qs(e.node(0))}static atStart(e){return Al(e,e,0,0,1)||new Qs(e)}static atEnd(e){return Al(e,e,e.content.size,e.childCount,-1)||new Qs(e)}static fromJSON(e,n){if(!n||!n.type)throw new RangeError("Invalid input for Selection.fromJSON");let s=dg[n.type];if(!s)throw new RangeError(`No selection type ${n.type} defined`);return s.fromJSON(e,n)}static jsonID(e,n){if(e in dg)throw new RangeError("Duplicate use of selection JSON ID "+e);return dg[e]=n,n.prototype.jsonID=e,n}getBookmark(){return Xe.between(this.$anchor,this.$head).getBookmark()}}nt.prototype.visible=!0;class TS{constructor(e,n){this.$from=e,this.$to=n}}let D1=!1;function L1(t){!D1&&!t.parent.inlineContent&&(D1=!0,console.warn("TextSelection endpoint not pointing into a node with inline content ("+t.parent.type.name+")"))}class Xe extends nt{constructor(e,n=e){L1(e),L1(n),super(e,n)}get $cursor(){return this.$anchor.pos==this.$head.pos?this.$head:null}map(e,n){let s=e.resolve(n.map(this.head));if(!s.parent.inlineContent)return nt.near(s);let a=e.resolve(n.map(this.anchor));return new Xe(a.parent.inlineContent?a:s,s)}replace(e,n=Oe.empty){if(super.replace(e,n),n==Oe.empty){let s=this.$from.marksAcross(this.$to);s&&e.ensureMarks(s)}}eq(e){return e instanceof Xe&&e.anchor==this.anchor&&e.head==this.head}getBookmark(){return new Kf(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 Xe(e.resolve(n.anchor),e.resolve(n.head))}static create(e,n,s=n){let a=e.resolve(n);return new this(a,s==n?a:e.resolve(s))}static between(e,n,s){let a=e.pos-n.pos;if((!s||a)&&(s=a>=0?1:-1),!n.parent.inlineContent){let i=nt.findFrom(n,s,!0)||nt.findFrom(n,-s,!0);if(i)n=i.$head;else return nt.near(n,s)}return e.parent.inlineContent||(a==0?e=n:(e=(nt.findFrom(e,-s,!0)||nt.findFrom(e,s,!0)).$anchor,e.pos0?0:1);a>0?o=0;o+=a){let c=e.child(o);if(c.isAtom){if(!i&&Qe.isSelectable(c))return Qe.create(t,n-(a<0?c.nodeSize:0))}else{let u=Al(t,c,n+a,a<0?c.childCount:0,a,i);if(u)return u}n+=c.nodeSize*a}return null}function _1(t,e,n){let s=t.steps.length-1;if(s{o==null&&(o=f)}),t.setSelection(nt.near(t.doc.resolve(o),n))}const z1=1,rh=2,F1=4;class RO extends k0{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|=rh,this}ensureMarks(e){return Vt.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&rh)>0}addStep(e,n){super.addStep(e,n),this.updated=this.updated&~rh,this.storedMarks=null}setTime(e){return this.time=e,this}replaceSelection(e){return this.selection.replace(this,e),this}replaceSelectionWith(e,n=!0){let s=this.selection;return n&&(e=e.mark(this.storedMarks||(s.empty?s.$from.marks():s.$from.marksAcross(s.$to)||Vt.none))),s.replaceWith(this,e),this}deleteSelection(){return this.selection.replace(this),this}insertText(e,n,s){let a=this.doc.type.schema;if(n==null)return e?this.replaceSelectionWith(a.text(e),!0):this.deleteSelection();{if(s==null&&(s=n),!e)return this.deleteRange(n,s);let i=this.storedMarks;if(!i){let o=this.doc.resolve(n);i=s==n?o.marks():o.marksAcross(this.doc.resolve(s))}return this.replaceRangeWith(n,s,a.text(e,i)),!this.selection.empty&&this.selection.to==n+e.length&&this.setSelection(nt.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|=F1,this}get scrolledIntoView(){return(this.updated&F1)>0}}function $1(t,e){return!e||!t?t:t.bind(e)}class nd{constructor(e,n,s){this.name=e,this.init=$1(n.init,s),this.apply=$1(n.apply,s)}}const PO=[new nd("doc",{init(t){return t.doc||t.schema.topNodeType.createAndFill()},apply(t){return t.doc}}),new nd("selection",{init(t,e){return t.selection||nt.atStart(e.doc)},apply(t){return t.selection}}),new nd("storedMarks",{init(t){return t.storedMarks||null},apply(t,e,n,s){return s.selection.$cursor?t.storedMarks:null}}),new nd("scrollToSelection",{init(){return 0},apply(t,e){return t.scrolledIntoView?e+1:e}})];class ug{constructor(e,n){this.schema=e,this.plugins=[],this.pluginsByKey=Object.create(null),this.fields=PO.slice(),n&&n.forEach(s=>{if(this.pluginsByKey[s.key])throw new RangeError("Adding different instances of a keyed plugin ("+s.key+")");this.plugins.push(s),this.pluginsByKey[s.key]=s,s.spec.state&&this.fields.push(new nd(s.key,s.spec.state,s))})}}class zl{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 s=0;ss.toJSON())),e&&typeof e=="object")for(let s in e){if(s=="doc"||s=="selection")throw new RangeError("The JSON fields `doc` and `selection` are reserved");let a=e[s],i=a.spec.state;i&&i.toJSON&&(n[s]=i.toJSON.call(a,this[a.key]))}return n}static fromJSON(e,n,s){if(!n)throw new RangeError("Invalid input for EditorState.fromJSON");if(!e.schema)throw new RangeError("Required config field 'schema' missing");let a=new ug(e.schema,e.plugins),i=new zl(a);return a.fields.forEach(o=>{if(o.name=="doc")i.doc=Va.fromJSON(e.schema,n.doc);else if(o.name=="selection")i.selection=nt.fromJSON(i.doc,n.selection);else if(o.name=="storedMarks")n.storedMarks&&(i.storedMarks=n.storedMarks.map(e.schema.markFromJSON));else{if(s)for(let c in s){let u=s[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 MS(t,e,n){for(let s in t){let a=t[s];a instanceof Function?a=a.bind(e):s=="handleDOMEvents"&&(a=MS(a,e,{})),n[s]=a}return n}class qt{constructor(e){this.spec=e,this.props={},e.props&&MS(e.props,this,this.props),this.key=e.key?e.key.key:AS("plugin")}getState(e){return e[this.key]}}const hg=Object.create(null);function AS(t){return t in hg?t+"$"+ ++hg[t]:(hg[t]=0,t+"$")}class rn{constructor(e="key"){this.key=AS(e)}get(e){return e.config.pluginsByKey[this.key]}getState(e){return e[this.key]}}const C0=(t,e)=>t.selection.empty?!1:(e&&e(t.tr.deleteSelection().scrollIntoView()),!0);function IS(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("backward",t):n.parentOffset>0)?null:n}const RS=(t,e,n)=>{let s=IS(t,n);if(!s)return!1;let a=E0(s);if(!a){let o=s.blockRange(),c=o&&ic(o);return c==null?!1:(e&&e(t.tr.lift(o,c).scrollIntoView()),!0)}let i=a.nodeBefore;if(BS(t,a,e,-1))return!0;if(s.parent.content.size==0&&(Kl(i,"end")||Qe.isSelectable(i)))for(let o=s.depth;;o--){let c=Uf(t.doc,s.before(o),s.after(o),Oe.empty);if(c&&c.slice.size1)break}return i.isAtom&&a.depth==s.depth-1?(e&&e(t.tr.delete(a.pos-i.nodeSize,a.pos).scrollIntoView()),!0):!1},OO=(t,e,n)=>{let s=IS(t,n);if(!s)return!1;let a=E0(s);return a?PS(t,a,e):!1},DO=(t,e,n)=>{let s=DS(t,n);if(!s)return!1;let a=T0(s);return a?PS(t,a,e):!1};function PS(t,e,n){let s=e.nodeBefore,a=s,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=Uf(t.doc,i,u,Oe.empty);if(!h||h.from!=i||h instanceof Vn&&h.slice.size>=u-i)return!1;if(n){let f=t.tr.step(h);f.setSelection(Xe.create(f.doc,i)),n(f.scrollIntoView())}return!0}function Kl(t,e,n=!1){for(let s=t;s;s=e=="start"?s.firstChild:s.lastChild){if(s.isTextblock)return!0;if(n&&s.childCount!=1)return!1}return!1}const OS=(t,e,n)=>{let{$head:s,empty:a}=t.selection,i=s;if(!a)return!1;if(s.parent.isTextblock){if(n?!n.endOfTextblock("backward",t):s.parentOffset>0)return!1;i=E0(s)}let o=i&&i.nodeBefore;return!o||!Qe.isSelectable(o)?!1:(e&&e(t.tr.setSelection(Qe.create(t.doc,i.pos-o.nodeSize)).scrollIntoView()),!0)};function E0(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 DS(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("forward",t):n.parentOffset{let s=DS(t,n);if(!s)return!1;let a=T0(s);if(!a)return!1;let i=a.nodeAfter;if(BS(t,a,e,1))return!0;if(s.parent.content.size==0&&(Kl(i,"start")||Qe.isSelectable(i))){let o=Uf(t.doc,s.before(),s.after(),Oe.empty);if(o&&o.slice.size{let{$head:s,empty:a}=t.selection,i=s;if(!a)return!1;if(s.parent.isTextblock){if(n?!n.endOfTextblock("forward",t):s.parentOffset=0;e--){let n=t.node(e);if(t.index(e)+1{let n=t.selection,s=n instanceof Qe,a;if(s){if(n.node.isTextblock||!Gi(t.doc,n.from))return!1;a=n.from}else if(a=Wf(t.doc,n.from,-1),a==null)return!1;if(e){let i=t.tr.join(a);s&&i.setSelection(Qe.create(i.doc,a-t.doc.resolve(a).nodeBefore.nodeSize)),e(i.scrollIntoView())}return!0},_O=(t,e)=>{let n=t.selection,s;if(n instanceof Qe){if(n.node.isTextblock||!Gi(t.doc,n.to))return!1;s=n.to}else if(s=Wf(t.doc,n.to,1),s==null)return!1;return e&&e(t.tr.join(s).scrollIntoView()),!0},zO=(t,e)=>{let{$from:n,$to:s}=t.selection,a=n.blockRange(s),i=a&&ic(a);return i==null?!1:(e&&e(t.tr.lift(a,i).scrollIntoView()),!0)},zS=(t,e)=>{let{$head:n,$anchor:s}=t.selection;return!n.parent.type.spec.code||!n.sameParent(s)?!1:(e&&e(t.tr.insertText(` +`).scrollIntoView()),!0)};function M0(t){for(let e=0;e{let{$head:n,$anchor:s}=t.selection;if(!n.parent.type.spec.code||!n.sameParent(s))return!1;let a=n.node(-1),i=n.indexAfter(-1),o=M0(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(nt.near(u.doc.resolve(c),1)),e(u.scrollIntoView())}return!0},FS=(t,e)=>{let n=t.selection,{$from:s,$to:a}=n;if(n instanceof Qs||s.parent.inlineContent||a.parent.inlineContent)return!1;let i=M0(a.parent.contentMatchAt(a.indexAfter()));if(!i||!i.isTextblock)return!1;if(e){let o=(!s.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(Ha(t.doc,i))return e&&e(t.tr.split(i).scrollIntoView()),!0}let s=n.blockRange(),a=s&&ic(s);return a==null?!1:(e&&e(t.tr.lift(s,a).scrollIntoView()),!0)};function $O(t){return(e,n)=>{let{$from:s,$to:a}=e.selection;if(e.selection instanceof Qe&&e.selection.node.isBlock)return!s.parentOffset||!Ha(e.doc,s.pos)?!1:(n&&n(e.tr.split(s.pos).scrollIntoView()),!0);if(!s.depth)return!1;let i=[],o,c,u=!1,h=!1;for(let y=s.depth;;y--)if(s.node(y).isBlock){u=s.end(y)==s.pos+(s.depth-y),h=s.start(y)==s.pos-(s.depth-y),c=M0(s.node(y-1).contentMatchAt(s.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 Xe||e.selection instanceof Qs)&&f.deleteSelection();let m=f.mapping.map(s.pos),g=Ha(f.doc,m,i.length,i);if(g||(i[0]=c?{type:c}:null,g=Ha(f.doc,m,i.length,i)),!g)return!1;if(f.split(m,i.length,i),!u&&h&&s.node(o).type!=c){let y=f.mapping.map(s.before(o)),N=f.doc.resolve(y);c&&s.node(o-1).canReplaceWith(N.index(),N.index()+1,c)&&f.setNodeMarkup(f.mapping.map(s.before(o)),c)}return n&&n(f.scrollIntoView()),!0}}const BO=$O(),VO=(t,e)=>{let{$from:n,to:s}=t.selection,a,i=n.sharedDepth(s);return i==0?!1:(a=n.before(i),e&&e(t.tr.setSelection(Qe.create(t.doc,a))),!0)};function HO(t,e,n){let s=e.nodeBefore,a=e.nodeAfter,i=e.index();return!s||!a||!s.type.compatibleContent(a.type)?!1:!s.content.size&&e.parent.canReplace(i-1,i)?(n&&n(t.tr.delete(e.pos-s.nodeSize,e.pos).scrollIntoView()),!0):!e.parent.canReplace(i,i+1)||!(a.isTextblock||Gi(t.doc,e.pos))?!1:(n&&n(t.tr.join(e.pos).scrollIntoView()),!0)}function BS(t,e,n,s){let a=e.nodeBefore,i=e.nodeAfter,o,c,u=a.type.spec.isolating||i.type.spec.isolating;if(!u&&HO(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,N=Ne.empty;for(let k=o.length-1;k>=0;k--)N=Ne.from(o[k].create(null,N));N=Ne.from(a.copy(N));let j=t.tr.step(new Hn(e.pos-1,y,e.pos,y,new Oe(N,1,0),o.length,!0)),v=j.doc.resolve(y+2*o.length);v.nodeAfter&&v.nodeAfter.type==a.type&&Gi(j.doc,v.pos)&&j.join(v.pos),n(j.scrollIntoView())}return!0}let f=i.type.spec.isolating||s>0&&u?null:nt.findFrom(e,1),m=f&&f.$from.blockRange(f.$to),g=m&&ic(m);if(g!=null&&g>=e.depth)return n&&n(t.tr.lift(m,g).scrollIntoView()),!0;if(h&&Kl(i,"start",!0)&&Kl(a,"end")){let y=a,N=[];for(;N.push(y),!y.isTextblock;)y=y.lastChild;let j=i,v=1;for(;!j.isTextblock;j=j.firstChild)v++;if(y.canReplace(y.childCount,y.childCount,j.content)){if(n){let k=Ne.empty;for(let E=N.length-1;E>=0;E--)k=Ne.from(N[E].copy(k));let C=t.tr.step(new Hn(e.pos-N.length,e.pos+i.nodeSize,e.pos+v,e.pos+i.nodeSize-v,new Oe(k,N.length,0),0,!0));n(C.scrollIntoView())}return!0}}return!1}function VS(t){return function(e,n){let s=e.selection,a=t<0?s.$from:s.$to,i=a.depth;for(;a.node(i).isInline;){if(!i)return!1;i--}return a.node(i).isTextblock?(n&&n(e.tr.setSelection(Xe.create(e.doc,t<0?a.start(i):a.end(i)))),!0):!1}}const WO=VS(-1),UO=VS(1);function KO(t,e=null){return function(n,s){let{$from:a,$to:i}=n.selection,o=a.blockRange(i),c=o&&j0(o,t,e);return c?(s&&s(n.tr.wrap(o,c).scrollIntoView()),!0):!1}}function B1(t,e=null){return function(n,s){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(s){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 $h(u,u,e.depth),e.endIndex=0;f--)i=Ne.from(n[f].type.create(n[f].attrs,i));t.step(new Hn(e.start-(s?2:0),e.end,e.start,e.end,new Oe(i,0,0),n.length,!0));let o=0;for(let f=0;fo.childCount>0&&o.firstChild.type==t);return i?n?s.node(i.depth-1).type==t?QO(e,n,t,i):XO(e,n,i):!0:!1}}function QO(t,e,n,s){let a=t.tr,i=s.end,o=s.$to.end(s.depth);ij;N--)y-=a.child(N).nodeSize,s.delete(y-1,y+1);let i=s.doc.resolve(n.start),o=i.nodeAfter;if(s.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,g=m+o.nodeSize;return s.step(new Hn(m-(c?1:0),g+(u?1:0),m+1,g-1,new Oe((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(s.scrollIntoView()),!0}function ZO(t){return function(e,n){let{$from:s,$to:a}=e.selection,i=s.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 Oe(Ne.from(t.create(null,Ne.from(c.type.create(null,f)))),h?3:1,0),g=i.start,y=i.end;n(e.tr.step(new Hn(g-(h?3:1),y,g,y,m,1,!0)).scrollIntoView())}return!0}}const es=function(t){for(var e=0;;e++)if(t=t.previousSibling,!t)return e},ql=function(t){let e=t.assignedSlot||t.parentNode;return e&&e.nodeType==11?e.host:e};let hx=null;const _a=function(t,e,n){let s=hx||(hx=document.createRange());return s.setEnd(t,n??t.nodeValue.length),s.setStart(t,e||0),s},eD=function(){hx=null},Bo=function(t,e,n,s){return n&&(V1(t,e,n,s,-1)||V1(t,e,n,s,1))},tD=/^(img|br|input|textarea|hr)$/i;function V1(t,e,n,s,a){for(var i;;){if(t==n&&e==s)return!0;if(e==(a<0?0:hr(t))){let o=t.parentNode;if(!o||o.nodeType!=1||Ud(t)||tD.test(t.nodeName)||t.contentEditable=="false")return!1;e=es(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?hr(t):0}else return!1}}function hr(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function nD(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=hr(t)}else if(t.parentNode&&!Ud(t))e=es(t),t=t.parentNode;else return null}}function sD(t,e){for(;;){if(t.nodeType==3&&e2),ur=Gl||(aa?/Mac/.test(aa.platform):!1),US=aa?/Win/.test(aa.platform):!1,$a=/Android \d/.test(Ji),Kd=!!H1&&"webkitFontSmoothing"in H1.documentElement.style,oD=Kd?+(/\bAppleWebKit\/(\d+)/.exec(navigator.userAgent)||[0,0])[1]:0;function lD(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 Ra(t,e){return typeof t=="number"?t:t[e]}function cD(t){let e=t.getBoundingClientRect(),n=e.width/t.offsetWidth||1,s=e.height/t.offsetHeight||1;return{left:e.left,right:e.left+t.clientWidth*n,top:e.top,bottom:e.top+t.clientHeight*s}}function W1(t,e,n){let s=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=ql(o);continue}let c=o,u=c==i.body,h=u?lD(i):cD(c),f=0,m=0;if(e.toph.bottom-Ra(s,"bottom")&&(m=e.bottom-e.top>h.bottom-h.top?e.top+Ra(a,"top")-h.top:e.bottom-h.bottom+Ra(a,"bottom")),e.lefth.right-Ra(s,"right")&&(f=e.right-h.right+Ra(a,"right")),f||m)if(u)i.defaultView.scrollBy(f,m);else{let y=c.scrollLeft,N=c.scrollTop;m&&(c.scrollTop+=m),f&&(c.scrollLeft+=f);let j=c.scrollLeft-y,v=c.scrollTop-N;e={left:e.left-j,top:e.top-v,right:e.right-j,bottom:e.bottom-v}}let g=u?"fixed":getComputedStyle(o).position;if(/^(fixed|sticky)$/.test(g))break;o=g=="absolute"?o.offsetParent:ql(o)}}function dD(t){let e=t.dom.getBoundingClientRect(),n=Math.max(0,e.top),s,a;for(let i=(e.left+e.right)/2,o=n+1;o=n-20){s=c,a=u.top;break}}return{refDOM:s,refTop:a,stack:KS(t.dom)}}function KS(t){let e=[],n=t.ownerDocument;for(let s=t;s&&(e.push({dom:s,top:s.scrollTop,left:s.scrollLeft}),t!=n);s=ql(s));return e}function uD({refDOM:t,refTop:e,stack:n}){let s=t?t.getBoundingClientRect().top:0;qS(n,s==0?0:s-e)}function qS(t,e){for(let n=0;n=c){o=Math.max(N.bottom,o),c=Math.min(N.top,c);let j=N.left>e.left?N.left-e.left:N.right=(N.left+N.right)/2?1:0));continue}}else N.top>e.top&&!u&&N.left<=e.left&&N.right>=e.left&&(u=f,h={left:Math.max(N.left,Math.min(N.right,e.left)),top:N.top});!n&&(e.left>=N.right&&e.top>=N.top||e.left>=N.left&&e.top>=N.bottom)&&(i=m+1)}}return!n&&u&&(n=u,a=h,s=0),n&&n.nodeType==3?fD(n,a):!n||s&&n.nodeType==1?{node:t,offset:i}:GS(n,a)}function fD(t,e){let n=t.nodeValue.length,s=document.createRange(),a;for(let i=0;i=(o.left+o.right)/2?1:0)};break}}return s.detach(),a||{node:t,offset:0}}function I0(t,e){return t.left>=e.left-1&&t.left<=e.right+1&&t.top>=e.top-1&&t.top<=e.bottom+1}function pD(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(s,a,i)}function gD(t,e,n,s){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>s.left||u.top>s.top?a=c.posBefore:(!o&&u.right-1?a:t.docView.posFromDOM(e,n,-1)}function JS(t,e,n){let s=t.childNodes.length;if(s&&n.tope.top&&a++}let h;Kd&&a&&s.nodeType==1&&(h=s.childNodes[a-1]).nodeType==1&&h.contentEditable=="false"&&h.getBoundingClientRect().top>=e.top&&a--,s==t.dom&&a==s.childNodes.length-1&&s.lastChild.nodeType==1&&e.top>s.lastChild.getBoundingClientRect().bottom?c=t.state.doc.content.size:(a==0||s.nodeType!=1||s.childNodes[a-1].nodeName!="BR")&&(c=gD(t,s,a,e))}c==null&&(c=mD(t,o,e));let u=t.docView.nearestDesc(o,!0);return{pos:c,inside:u?u.posAtStart-u.border:-1}}function U1(t){return t.top=0&&a==s.nodeValue.length?(u--,f=1):n<0?u--:h++,Yc(Ni(_a(s,u,h),f),f<0)}if(!t.state.doc.resolve(e-(i||0)).parent.inlineContent){if(i==null&&a&&(n<0||a==hr(s))){let u=s.childNodes[a-1];if(u.nodeType==1)return fg(u.getBoundingClientRect(),!1)}if(i==null&&a=0)}if(i==null&&a&&(n<0||a==hr(s))){let u=s.childNodes[a-1],h=u.nodeType==3?_a(u,hr(u)-(o?0:1)):u.nodeType==1&&(u.nodeName!="BR"||!u.nextSibling)?u:null;if(h)return Yc(Ni(h,1),!1)}if(i==null&&a=0)}function Yc(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 fg(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 QS(t,e,n){let s=t.state,a=t.root.activeElement;s!=e&&t.updateState(e),a!=t.dom&&t.focus();try{return n()}finally{s!=e&&t.updateState(s),a!=t.dom&&a&&a.focus()}}function bD(t,e,n){let s=e.selection,a=n=="up"?s.$from:s.$to;return QS(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=YS(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=_a(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 vD=/[\u0590-\u08ac]/;function ND(t,e,n){let{$head:s}=e.selection;if(!s.parent.isTextblock)return!1;let a=s.parentOffset,i=!a,o=a==s.parent.content.size,c=t.domSelection();return c?!vD.test(s.parent.textContent)||!c.modify?n=="left"||n=="backward"?i:o:QS(t,e,()=>{let{focusNode:u,focusOffset:h,anchorNode:f,anchorOffset:m}=t.domSelectionRange(),g=c.caretBidiLevel;c.modify("move",n,"character");let y=s.depth?t.docView.domAfterPos(s.before()):t.dom,{focusNode:N,focusOffset:j}=t.domSelectionRange(),v=N&&!y.contains(N.nodeType==1?N:N.parentNode)||u==N&&h==j;try{c.collapse(f,m),u&&(u!=f||h!=m)&&c.extend&&c.extend(u,h)}catch{}return g!=null&&(c.caretBidiLevel=g),v}):s.pos==s.start()||s.pos==s.end()}let K1=null,q1=null,G1=!1;function wD(t,e,n){return K1==e&&q1==n?G1:(K1=e,q1=n,G1=n=="up"||n=="down"?bD(t,e,n):ND(t,e,n))}const pr=0,J1=1,So=2,ia=3;class qd{constructor(e,n,s,a){this.parent=e,this.children=n,this.dom=s,this.contentDOM=a,this.dirty=pr,s.pmViewDesc=this}matchesWidget(e){return!1}matchesMark(e){return!1}matchesNode(e,n,s){return!1}matchesHack(e){return!1}parseRule(){return null}stopEvent(e){return!1}get size(){let e=0;for(let n=0;nes(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??s>0?this.posAtEnd:this.posAtStart}nearestDesc(e,n=!1){for(let s=!0,a=e;a;a=a.parentNode){let i=this.getDesc(a),o;if(i&&(!n||i.node))if(s&&(o=i.nodeDOM)&&!(o.nodeType==1?o.contains(e.nodeType==1?e:e.parentNode):o==e))s=!1;else return i}}getDesc(e){let n=e.pmViewDesc;for(let s=n;s;s=s.parent)if(s==this)return n}posFromDOM(e,n,s){for(let a=e;a;a=a.parentNode){let i=this.getDesc(a);if(i)return i.localPosFromDOM(e,n,s)}return-1}descAt(e){for(let n=0,s=0;ne||o instanceof ZS){a=e-i;break}i=c}if(a)return this.children[s].domFromPos(a-this.children[s].border,n);for(let i;s&&!(i=this.children[s-1]).size&&i instanceof XS&&i.side>=0;s--);if(n<=0){let i,o=!0;for(;i=s?this.children[s-1]:null,!(!i||i.dom.parentNode==this.contentDOM);s--,o=!1);return i&&n&&o&&!i.border&&!i.domAtom?i.domFromPos(i.size,n):{node:this.contentDOM,offset:i?es(i.dom)+1:0}}else{let i,o=!0;for(;i=s=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 g=this.children[m-1];if(g.size&&g.dom.parentNode==this.contentDOM&&!g.emptyChildAt(1)){a=es(g.dom)+1;break}e-=g.size}a==-1&&(a=0)}if(a>-1&&(h>n||c==this.children.length-1)){n=h;for(let f=c+1;fN&&on){let N=c;c=u,u=N}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 s=0,a=0;a=s:es){let c=s+i.border,u=o-i.border;if(e>=c&&n<=u){this.dirty=e==s||n==o?So:J1,e==c&&n==u&&(i.contentLost||i.dom.parentNode!=this.contentDOM)?i.dirty=ia:i.markDirty(e-c,n-c);return}else i.dirty=i.dom==i.contentDOM&&i.dom.parentNode==this.contentDOM&&!i.children.length?So:ia}s=o}this.dirty=So}markParentsDirty(){let e=1;for(let n=this.parent;n;n=n.parent,e++){let s=e==1?So:J1;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==pr&&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 jD extends qd{constructor(e,n,s,a){super(e,[],n,null),this.textDOM=s,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 Vo extends qd{constructor(e,n,s,a,i){super(e,[],s,a),this.mark=n,this.spec=i}static create(e,n,s,a){let i=a.nodeViews[n.type.name],o=i&&i(n,a,s);return(!o||!o.dom)&&(o=Jo.renderSpec(document,n.type.spec.toDOM(n,s),null,n.attrs)),new Vo(e,n,o.dom,o.contentDOM||o.dom,o)}parseRule(){return this.dirty&ia||this.mark.type.spec.reparseInView?null:{mark:this.mark.type.name,attrs:this.mark.attrs,contentElement:this.contentDOM}}matchesMark(e){return this.dirty!=ia&&this.mark.eq(e)}markDirty(e,n){if(super.markDirty(e,n),this.dirty!=pr){let s=this.parent;for(;!s.node;)s=s.parent;s.dirty0&&(i=xx(i,0,e,s));for(let c=0;c{if(!u)return o;if(u.parent)return u.parent.posBeforeChild(u)},s,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}=Jo.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 g=f;return f=n2(f,s,n),h?u=new kD(e,n,s,a,f,m||null,g,h,i,o+1):n.isText?new Gf(e,n,s,a,f,g,i):new Li(e,n,s,a,f,m||null,g,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 s=this.children[n];if(this.dom.contains(s.dom.parentNode)){e.contentElement=s.dom.parentNode;break}}e.contentElement||(e.getContent=()=>Ne.empty)}return e}matchesNode(e,n,s){return this.dirty==pr&&e.eq(this.node)&&Vh(n,this.outerDeco)&&s.eq(this.innerDeco)}get size(){return this.node.nodeSize}get border(){return this.node.isLeaf?0:1}updateChildren(e,n){let s=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 CD(this,o&&o.node,e);MD(this.node,this.innerDeco,(h,f,m)=>{h.spec.marks?u.syncToMarks(h.spec.marks,s,e,f):h.type.side>=0&&!m&&u.syncToMarks(f==this.node.childCount?Vt.none:this.node.child(f).marks,s,e,f),u.placeWidget(h,e,a)},(h,f,m,g)=>{u.syncToMarks(h.marks,s,e,g);let y;u.findNodeMatch(h,f,m,g)||c&&e.state.selection.from>a&&e.state.selection.to-1&&u.updateNodeAt(h,f,m,y,e)||u.updateNextNode(h,f,m,e,g,a)||u.addNode(h,f,m,e,a),a+=h.nodeSize}),u.syncToMarks([],s,e,0),this.node.isTextblock&&u.addTextblockHacks(),u.destroyRest(),(u.changed||this.dirty==So)&&(o&&this.protectLocalComposition(e,o),e2(this.contentDOM,this.children,e),Gl&&AD(this.dom))}localCompositionInfo(e,n){let{from:s,to:a}=e.state.selection;if(!(e.state.selection instanceof Xe)||sn+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=ID(this.node.content,o,s-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:s,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 jD(this,i,n,a);e.input.compositionNodes.push(o),this.children=xx(this.children,s,s+a.length,e,o)}update(e,n,s,a){return this.dirty==ia||!e.sameMarkup(this.node)?!1:(this.updateInner(e,n,s,a),!0)}updateInner(e,n,s,a){this.updateOuterDeco(n),this.node=e,this.innerDeco=s,this.contentDOM&&this.updateChildren(a,this.posAtStart),this.dirty=pr}updateOuterDeco(e){if(Vh(e,this.outerDeco))return;let n=this.nodeDOM.nodeType!=1,s=this.dom;this.dom=t2(this.dom,this.nodeDOM,gx(this.outerDeco,this.node,n),gx(e,this.node,n)),this.dom!=s&&(s.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 Y1(t,e,n,s,a){n2(s,e,t);let i=new Li(void 0,t,e,n,s,s,s,a,0);return i.contentDOM&&i.updateChildren(a,0),i}class Gf extends Li{constructor(e,n,s,a,i,o,c){super(e,n,s,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,s,a){return this.dirty==ia||this.dirty!=pr&&!this.inParent()||!e.sameMarkup(this.node)?!1:(this.updateOuterDeco(n),(this.dirty!=pr||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=pr,!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,s){return e==this.nodeDOM?this.posAtStart+Math.min(n,this.node.text.length):super.localPosFromDOM(e,n,s)}ignoreMutation(e){return e.type!="characterData"&&e.type!="selection"}slice(e,n,s){let a=this.node.cut(e,n),i=document.createTextNode(a.text);return new Gf(this.parent,a,this.outerDeco,this.innerDeco,i,i,s)}markDirty(e,n){super.markDirty(e,n),this.dom!=this.nodeDOM&&(e==0||n==this.nodeDOM.nodeValue.length)&&(this.dirty=ia)}get domAtom(){return!1}isText(e){return this.node.text==e}}class ZS extends qd{parseRule(){return{ignore:!0}}matchesHack(e){return this.dirty==pr&&this.dom.nodeName==e}get domAtom(){return!0}get ignoreForCoords(){return this.dom.nodeName=="IMG"}}class kD extends Li{constructor(e,n,s,a,i,o,c,u,h,f){super(e,n,s,a,i,o,c,h,f),this.spec=u}update(e,n,s,a){if(this.dirty==ia)return!1;if(this.spec.update&&(this.node.type==e.type||this.spec.multiType)){let i=this.spec.update(e,n,s);return i&&this.updateInner(e,n,s,a),i}else return!this.contentDOM&&!e.isLeaf?!1:super.update(e,n,s,a)}selectNode(){this.spec.selectNode?this.spec.selectNode():super.selectNode()}deselectNode(){this.spec.deselectNode?this.spec.deselectNode():super.deselectNode()}setSelection(e,n,s,a){this.spec.setSelection?this.spec.setSelection(e,n,s.root):super.setSelection(e,n,s,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 e2(t,e,n){let s=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=Vo.create(this.top,e[o],n,s);this.top.children.splice(this.index,0,f),this.top=f,this.changed=!0}this.index=0,o++}}findNodeMatch(e,n,s,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,s))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(s){let h=n.children[s-1];if(h instanceof Vo)n=h,s=h.children.length;else{c=h,s--;break}}else{if(n==e)break e;s=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 TD(t,e){return t.type.side-e.type.side}function MD(t,e,n,s){let a=e.locals(t),i=0;if(a.length==0){for(let h=0;hi;)c.push(a[o++]);let N=i+g.nodeSize;if(g.isText){let v=N;o!v.inline):c.slice();s(g,j,e.forChild(i,g),y),i=N}}function AD(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 ID(t,e,n,s){for(let a=0,i=0;a=n){if(i>=s&&u.slice(s-e.length-c,s-c)==e)return s-e.length;let h=c=0&&h+e.length+c>=n)return c+h;if(n==s&&u.length>=s+e.length-c&&u.slice(s-c,s-c+e.length)==e)return s}}return-1}function xx(t,e,n,s,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,s)))}return i}function R0(t,e=null){let n=t.domSelectionRange(),s=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=s.resolve(o),u,h;if(qf(n)){for(u=o;a&&!a.node;)a=a.parent;let m=a.node;if(a&&m.isAtom&&Qe.isSelectable(m)&&a.parent&&!(m.isInline&&rD(n.focusNode,n.focusOffset,a.dom))){let g=a.posBefore;h=new Qe(o==g?c:s.resolve(g))}}else{if(n instanceof t.dom.ownerDocument.defaultView.Selection&&n.rangeCount>1){let m=o,g=o;for(let y=0;y{(n.anchorNode!=s||n.anchorOffset!=a)&&(e.removeEventListener("selectionchange",t.input.hideSelectionGuard),setTimeout(()=>{(!s2(t)||t.state.selection.visible)&&t.dom.classList.remove("ProseMirror-hideselection")},20))})}function PD(t){let e=t.domSelection();if(!e)return;let n=t.cursorWrapper.dom,s=n.nodeName=="IMG";s?e.collapse(n.parentNode,es(n)+1):e.collapse(n,0),!s&&!t.state.selection.visible&&$s&&Di<=11&&(n.disabled=!0,n.disabled=!1)}function r2(t,e){if(e instanceof Qe){let n=t.docView.descAt(e.from);n!=t.lastSelectedViewDesc&&(tN(t),n&&n.selectNode(),t.lastSelectedViewDesc=n)}else tN(t)}function tN(t){t.lastSelectedViewDesc&&(t.lastSelectedViewDesc.parent&&t.lastSelectedViewDesc.deselectNode(),t.lastSelectedViewDesc=void 0)}function P0(t,e,n,s){return t.someProp("createSelectionBetween",a=>a(t,e,n))||Xe.between(e,n,s)}function nN(t){return t.editable&&!t.hasFocus()?!1:a2(t)}function a2(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 OD(t){let e=t.docView.domFromPos(t.state.selection.anchor,0),n=t.domSelectionRange();return Bo(e.node,e.offset,n.anchorNode,n.anchorOffset)}function yx(t,e){let{$anchor:n,$head:s}=t.selection,a=e>0?n.max(s):n.min(s),i=a.parent.inlineContent?a.depth?t.doc.resolve(e>0?a.after():a.before()):null:a;return i&&nt.findFrom(i,e)}function wi(t,e){return t.dispatch(t.state.tr.setSelection(e).scrollIntoView()),!0}function sN(t,e,n){let s=t.state.selection;if(s instanceof Xe)if(n.indexOf("s")>-1){let{$head:a}=s,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 wi(t,new Xe(s.$anchor,o))}else if(s.empty){if(t.endOfTextblock(e>0?"forward":"backward")){let a=yx(t.state,e);return a&&a instanceof Qe?wi(t,a):!1}else if(!(ur&&n.indexOf("m")>-1)){let a=s.$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?Qe.isSelectable(i)?wi(t,new Qe(e<0?t.state.doc.resolve(a.pos-i.nodeSize):a)):Kd?wi(t,new Xe(t.state.doc.resolve(e<0?c:c+i.nodeSize))):!1:!1}}else return!1;else{if(s instanceof Qe&&s.node.isInline)return wi(t,new Xe(e>0?s.$to:s.$from));{let a=yx(t.state,e);return a?wi(t,a):!1}}}function Hh(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function pd(t,e){let n=t.pmViewDesc;return n&&n.size==0&&(e<0||t.nextSibling||t.nodeName!="BR")}function Ml(t,e){return e<0?DD(t):LD(t)}function DD(t){let e=t.domSelectionRange(),n=e.focusNode,s=e.focusOffset;if(!n)return;let a,i,o=!1;for(fr&&n.nodeType==1&&s0){if(n.nodeType!=1)break;{let c=n.childNodes[s-1];if(pd(c,-1))a=n,i=--s;else if(c.nodeType==3)n=c,s=n.nodeValue.length;else break}}else{if(i2(n))break;{let c=n.previousSibling;for(;c&&pd(c,-1);)a=n.parentNode,i=es(c),c=c.previousSibling;if(c)n=c,s=Hh(n);else{if(n=n.parentNode,n==t.dom)break;s=0}}}o?bx(t,n,s):a&&bx(t,a,i)}function LD(t){let e=t.domSelectionRange(),n=e.focusNode,s=e.focusOffset;if(!n)return;let a=Hh(n),i,o;for(;;)if(s{t.state==a&&Wa(t)},50)}function rN(t,e){let n=t.state.doc.resolve(e);if(!(ns||US)&&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 aN(t,e,n){let s=t.state.selection;if(s instanceof Xe&&!s.empty||n.indexOf("s")>-1||ur&&n.indexOf("m")>-1)return!1;let{$from:a,$to:i}=s;if(!a.parent.inlineContent||t.endOfTextblock(e<0?"up":"down")){let o=yx(t.state,e);if(o&&o instanceof Qe)return wi(t,o)}if(!a.parent.inlineContent){let o=e<0?a:i,c=s instanceof Qs?nt.near(o,e):nt.findFrom(o,e);return c?wi(t,c):!1}return!1}function iN(t,e){if(!(t.state.selection instanceof Xe))return!0;let{$head:n,$anchor:s,empty:a}=t.state.selection;if(!n.sameParent(s))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 oN(t,e,n){t.domObserver.stop(),e.contentEditable=n,t.domObserver.start()}function FD(t){if(!ys||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 s=e.firstChild;oN(t,s,"true"),setTimeout(()=>oN(t,s,"false"),20)}return!1}function $D(t){let e="";return t.ctrlKey&&(e+="c"),t.metaKey&&(e+="m"),t.altKey&&(e+="a"),t.shiftKey&&(e+="s"),e}function BD(t,e){let n=e.keyCode,s=$D(e);if(n==8||ur&&n==72&&s=="c")return iN(t,-1)||Ml(t,-1);if(n==46&&!e.shiftKey||ur&&n==68&&s=="c")return iN(t,1)||Ml(t,1);if(n==13||n==27)return!0;if(n==37||ur&&n==66&&s=="c"){let a=n==37?rN(t,t.state.selection.from)=="ltr"?-1:1:-1;return sN(t,a,s)||Ml(t,a)}else if(n==39||ur&&n==70&&s=="c"){let a=n==39?rN(t,t.state.selection.from)=="ltr"?1:-1:1;return sN(t,a,s)||Ml(t,a)}else{if(n==38||ur&&n==80&&s=="c")return aN(t,-1,s)||Ml(t,-1);if(n==40||ur&&n==78&&s=="c")return FD(t)||aN(t,1,s)||Ml(t,1);if(s==(ur?"m":"c")&&(n==66||n==73||n==89||n==90))return!0}return!1}function O0(t,e){t.someProp("transformCopied",y=>{e=y(e,t)});let n=[],{content:s,openStart:a,openEnd:i}=e;for(;a>1&&i>1&&s.childCount==1&&s.firstChild.childCount==1;){a--,i--;let y=s.firstChild;n.push(y.type.name,y.attrs!=y.type.defaultAttrs?y.attrs:null),s=y.content}let o=t.someProp("clipboardSerializer")||Jo.fromSchema(t.state.schema),c=h2(),u=c.createElement("div");u.appendChild(o.serializeFragment(s,{document:c}));let h=u.firstChild,f,m=0;for(;h&&h.nodeType==1&&(f=u2[h.nodeName.toLowerCase()]);){for(let y=f.length-1;y>=0;y--){let N=c.createElement(f[y]);for(;u.firstChild;)N.appendChild(u.firstChild);u.appendChild(N),m++}h=u.firstChild}h&&h.nodeType==1&&h.setAttribute("data-pm-slice",`${a} ${i}${m?` -${m}`:""} ${JSON.stringify(n)}`);let g=t.someProp("clipboardTextSerializer",y=>y(e,t))||e.content.textBetween(0,e.content.size,` + +`);return{dom:u,text:g,slice:e}}function o2(t,e,n,s,a){let i=a.parent.type.spec.code,o,c;if(!n&&!e)return null;let u=!!e&&(s||i||!n);if(u){if(t.someProp("transformPastedText",g=>{e=g(e,i||s,t)}),i)return c=new Oe(Ne.from(t.state.schema.text(e.replace(/\r\n?/g,` +`))),0,0),t.someProp("transformPasted",g=>{c=g(c,t,!0)}),c;let m=t.someProp("clipboardTextParser",g=>g(e,a,s,t));if(m)c=m;else{let g=a.marks(),{schema:y}=t.state,N=Jo.fromSchema(y);o=document.createElement("div"),e.split(/(?:\r\n?|\n)+/).forEach(j=>{let v=o.appendChild(document.createElement("p"));j&&v.appendChild(N.serializeNode(y.text(j,g)))})}}else t.someProp("transformPastedHTML",m=>{n=m(n,t)}),o=UD(n),Kd&&KD(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 g=o.firstChild;for(;g&&g.nodeType!=1;)g=g.nextSibling;if(!g)break;o=g}if(c||(c=(t.someProp("clipboardParser")||t.someProp("domParser")||Oi.fromSchema(t.state.schema)).parseSlice(o,{preserveWhitespace:!!(u||f),context:a,ruleFromNode(g){return g.nodeName=="BR"&&!g.nextSibling&&g.parentNode&&!VD.test(g.parentNode.nodeName)?{ignore:!0}:null}})),f)c=qD(lN(c,+f[1],+f[2]),f[4]);else if(c=Oe.maxOpen(HD(c.content,a),!0),c.openStart||c.openEnd){let m=0,g=0;for(let y=c.content.firstChild;m{c=m(c,t,u)}),c}const VD=/^(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 HD(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&&c2(u,i,c,o[o.length-1],0))o[o.length-1]=h;else{o.length&&(o[o.length-1]=d2(o[o.length-1],i.length));let f=l2(c,u);o.push(f),a=a.matchType(f.type),i=u}}),o)return Ne.from(o)}return t}function l2(t,e,n=0){for(let s=e.length-1;s>=n;s--)t=e[s].create(null,Ne.from(t));return t}function c2(t,e,n,s,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 lN(t,e,n){return en})),mg.createHTML(t)):t}function UD(t){let e=/^(\s*]*>)*/.exec(t);e&&(t=t.slice(e[0].length));let n=h2().createElement("div"),s=/<([a-z][^>\s]+)/i.exec(t),a;if((a=s&&u2[s[1].toLowerCase()])&&(t=a.map(i=>"<"+i+">").join("")+t+a.map(i=>"").reverse().join("")),n.innerHTML=WD(t),a)for(let i=0;i=0;c-=2){let u=n.nodes[s[c]];if(!u||u.hasRequiredAttrs())break;a=Ne.from(u.create(s[c+1],a)),i++,o++}return new Oe(a,i,o)}const Es={},Ts={},GD={touchstart:!0,touchmove:!0};class JD{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 YD(t){for(let e in Es){let n=Es[e];t.dom.addEventListener(e,t.input.eventHandlers[e]=s=>{XD(t,s)&&!D0(t,s)&&(t.editable||!(s.type in Ts))&&n(t,s)},GD[e]?{passive:!0}:void 0)}ys&&t.dom.addEventListener("input",()=>null),Nx(t)}function Ii(t,e){t.input.lastSelectionOrigin=e,t.input.lastSelectionTime=Date.now()}function QD(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 Nx(t){t.someProp("handleDOMEvents",e=>{for(let n in e)t.input.eventHandlers[n]||t.dom.addEventListener(n,t.input.eventHandlers[n]=s=>D0(t,s))})}function D0(t,e){return t.someProp("handleDOMEvents",n=>{let s=n[e.type];return s?s(t,e)||e.defaultPrevented:!1})}function XD(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 ZD(t,e){!D0(t,e)&&Es[e.type]&&(t.editable||!(e.type in Ts))&&Es[e.type](t,e)}Ts.keydown=(t,e)=>{let n=e;if(t.input.shiftKey=n.keyCode==16||n.shiftKey,!p2(t,n)&&(t.input.lastKeyCode=n.keyCode,t.input.lastKeyCodeTime=Date.now(),!($a&&ns&&n.keyCode==13)))if(n.keyCode!=229&&t.domObserver.forceFlush(),Gl&&n.keyCode==13&&!n.ctrlKey&&!n.altKey&&!n.metaKey){let s=Date.now();t.input.lastIOSEnter=s,t.input.lastIOSEnterFallbackTimeout=setTimeout(()=>{t.input.lastIOSEnter==s&&(t.someProp("handleKeyDown",a=>a(t,wo(13,"Enter"))),t.input.lastIOSEnter=0)},200)}else t.someProp("handleKeyDown",s=>s(t,n))||BD(t,n)?n.preventDefault():Ii(t,"key")};Ts.keyup=(t,e)=>{e.keyCode==16&&(t.input.shiftKey=!1)};Ts.keypress=(t,e)=>{let n=e;if(p2(t,n)||!n.charCode||n.ctrlKey&&!n.altKey||ur&&n.metaKey)return;if(t.someProp("handleKeyPress",a=>a(t,n))){n.preventDefault();return}let s=t.state.selection;if(!(s instanceof Xe)||!s.$from.sameParent(s.$to)){let a=String.fromCharCode(n.charCode),i=()=>t.state.tr.insertText(a).scrollIntoView();!/[\r\n]/.test(a)&&!t.someProp("handleTextInput",o=>o(t,s.$from.pos,s.$to.pos,a,i))&&t.dispatch(i()),n.preventDefault()}};function Jf(t){return{left:t.clientX,top:t.clientY}}function eL(t,e){let n=e.x-t.clientX,s=e.y-t.clientY;return n*n+s*s<100}function L0(t,e,n,s,a){if(s==-1)return!1;let i=t.state.doc.resolve(s);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 Vl(t,e,n){if(t.focused||t.focus(),t.state.selection.eq(e))return;let s=t.state.tr.setSelection(e);s.setMeta("pointer",!0),t.dispatch(s)}function tL(t,e){if(e==-1)return!1;let n=t.state.doc.resolve(e),s=n.nodeAfter;return s&&s.isAtom&&Qe.isSelectable(s)?(Vl(t,new Qe(n)),!0):!1}function nL(t,e){if(e==-1)return!1;let n=t.state.selection,s,a;n instanceof Qe&&(s=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(Qe.isSelectable(c)){s&&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?(Vl(t,Qe.create(t.state.doc,a)),!0):!1}function sL(t,e,n,s,a){return L0(t,"handleClickOn",e,n,s)||t.someProp("handleClick",i=>i(t,e,s))||(a?nL(t,n):tL(t,n))}function rL(t,e,n,s){return L0(t,"handleDoubleClickOn",e,n,s)||t.someProp("handleDoubleClick",a=>a(t,e,s))}function aL(t,e,n,s){return L0(t,"handleTripleClickOn",e,n,s)||t.someProp("handleTripleClick",a=>a(t,e,s))||iL(t,n,s)}function iL(t,e,n){if(n.button!=0)return!1;let s=t.state.doc;if(e==-1)return s.inlineContent?(Vl(t,Xe.create(s,0,s.content.size)),!0):!1;let a=s.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)Vl(t,Xe.create(s,c+1,c+1+o.content.size));else if(Qe.isSelectable(o))Vl(t,Qe.create(s,c));else continue;return!0}}function _0(t){return Wh(t)}const f2=ur?"metaKey":"ctrlKey";Es.mousedown=(t,e)=>{let n=e;t.input.shiftKey=n.shiftKey;let s=_0(t),a=Date.now(),i="singleClick";a-t.input.lastClick.time<500&&eL(n,t.input.lastClick)&&!n[f2]&&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(Jf(n));o&&(i=="singleClick"?(t.input.mouseDown&&t.input.mouseDown.done(),t.input.mouseDown=new oL(t,o,n,!!s)):(i=="doubleClick"?rL:aL)(t,o.pos,o.inside,n)?n.preventDefault():Ii(t,"pointer"))};class oL{constructor(e,n,s,a){this.view=e,this.pos=n,this.event=s,this.flushed=a,this.delayedSelectionSync=!1,this.mightDrag=null,this.startDoc=e.state.doc,this.selectNode=!!s[f2],this.allowDefault=s.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:s.target,u=c?e.docView.nearestDesc(c,!0):null;this.target=u&&u.nodeDOM.nodeType==1?u.nodeDOM:null;let{selection:h}=e.state;(s.button==0&&i.type.spec.draggable&&i.type.spec.selectable!==!1||h instanceof Qe&&h.from<=o&&h.to>o)&&(this.mightDrag={node:i,pos:o,addAttr:!!(this.target&&!this.target.draggable),setUneditable:!!(this.target&&fr&&!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)),Ii(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(()=>Wa(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(Jf(e))),this.updateAllowDefault(e),this.allowDefault||!n?Ii(this.view,"pointer"):sL(this.view,n.pos,n.inside,e,this.selectNode)?e.preventDefault():e.button==0&&(this.flushed||ys&&this.mightDrag&&!this.mightDrag.node.isAtom||ns&&!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)?(Vl(this.view,nt.near(this.view.state.doc.resolve(n.pos))),e.preventDefault()):Ii(this.view,"pointer")}move(e){this.updateAllowDefault(e),Ii(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)}}Es.touchstart=t=>{t.input.lastTouch=Date.now(),_0(t),Ii(t,"pointer")};Es.touchmove=t=>{t.input.lastTouch=Date.now(),Ii(t,"pointer")};Es.contextmenu=t=>_0(t);function p2(t,e){return t.composing?!0:ys&&Math.abs(e.timeStamp-t.input.compositionEndedAt)<500?(t.input.compositionEndedAt=-2e8,!0):!1}const lL=$a?5e3:-1;Ts.compositionstart=Ts.compositionupdate=t=>{if(!t.composing){t.domObserver.flush();let{state:e}=t,n=e.selection.$to;if(e.selection instanceof Xe&&(e.storedMarks||!n.textOffset&&n.parentOffset&&n.nodeBefore.marks.some(s=>s.type.spec.inclusive===!1)||ns&&US&&cL(t)))t.markCursor=t.state.storedMarks||n.marks(),Wh(t,!0),t.markCursor=null;else if(Wh(t,!e.selection.empty),fr&&e.selection.empty&&n.parentOffset&&!n.textOffset&&n.nodeBefore.marks.length){let s=t.domSelectionRange();for(let a=s.focusNode,i=s.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}m2(t,lL)};function cL(t){let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(!e||e.nodeType!=1||n>=e.childNodes.length)return!1;let s=e.childNodes[n];return s.nodeType==1&&s.contentEditable=="false"}Ts.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++,m2(t,20))};function m2(t,e){clearTimeout(t.input.composingTimeout),e>-1&&(t.input.composingTimeout=setTimeout(()=>Wh(t),e))}function g2(t){for(t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=uL());t.input.compositionNodes.length>0;)t.input.compositionNodes.pop().markParentsDirty()}function dL(t){let e=t.domSelectionRange();if(!e.focusNode)return null;let n=nD(e.focusNode,e.focusOffset),s=sD(e.focusNode,e.focusOffset);if(n&&s&&n!=s){let a=s.pmViewDesc,i=t.domObserver.lastChangedTextNode;if(n==i||s==i)return i;if(!a||!a.isText(s.nodeValue))return s;if(t.input.compositionNode==s){let o=n.pmViewDesc;if(!(!o||!o.isText(n.nodeValue)))return s}}return n||s}function uL(){let t=document.createEvent("Event");return t.initEvent("event",!0,!0),t.timeStamp}function Wh(t,e=!1){if(!($a&&t.domObserver.flushingSoon>=0)){if(t.domObserver.forceFlush(),g2(t),e||t.docView&&t.docView.dirty){let n=R0(t),s=t.state.selection;return n&&!n.eq(s)?t.dispatch(t.state.tr.setSelection(n)):(t.markCursor||e)&&!s.$from.node(s.$from.sharedDepth(s.to)).inlineContent?t.dispatch(t.state.tr.deleteSelection()):t.updateState(t.state),!0}return!1}}function hL(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 s=getSelection(),a=document.createRange();a.selectNodeContents(e),t.dom.blur(),s.removeAllRanges(),s.addRange(a),setTimeout(()=>{n.parentNode&&n.parentNode.removeChild(n),t.focus()},50)}const Id=$s&&Di<15||Gl&&oD<604;Es.copy=Ts.cut=(t,e)=>{let n=e,s=t.state.selection,a=n.type=="cut";if(s.empty)return;let i=Id?null:n.clipboardData,o=s.content(),{dom:c,text:u}=O0(t,o);i?(n.preventDefault(),i.clearData(),i.setData("text/html",c.innerHTML),i.setData("text/plain",u)):hL(t,c),a&&t.dispatch(t.state.tr.deleteSelection().scrollIntoView().setMeta("uiEvent","cut"))};function fL(t){return t.openStart==0&&t.openEnd==0&&t.content.childCount==1?t.content.firstChild:null}function pL(t,e){if(!t.dom.parentNode)return;let n=t.input.shiftKey||t.state.selection.$from.parent.type.spec.code,s=t.dom.parentNode.appendChild(document.createElement(n?"textarea":"div"));n||(s.contentEditable="true"),s.style.cssText="position: fixed; left: -10000px; top: 10px",s.focus();let a=t.input.shiftKey&&t.input.lastKeyCode!=45;setTimeout(()=>{t.focus(),s.parentNode&&s.parentNode.removeChild(s),n?Rd(t,s.value,null,a,e):Rd(t,s.textContent,s.innerHTML,a,e)},50)}function Rd(t,e,n,s,a){let i=o2(t,e,n,s,t.state.selection.$from);if(t.someProp("handlePaste",u=>u(t,a,i||Oe.empty)))return!0;if(!i)return!1;let o=fL(i),c=o?t.state.tr.replaceSelectionWith(o,s):t.state.tr.replaceSelection(i);return t.dispatch(c.scrollIntoView().setMeta("paste",!0).setMeta("uiEvent","paste")),!0}function x2(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," "):""}Ts.paste=(t,e)=>{let n=e;if(t.composing&&!$a)return;let s=Id?null:n.clipboardData,a=t.input.shiftKey&&t.input.lastKeyCode!=45;s&&Rd(t,x2(s),s.getData("text/html"),a,n)?n.preventDefault():pL(t,n)};class y2{constructor(e,n,s){this.slice=e,this.move=n,this.node=s}}const mL=ur?"altKey":"ctrlKey";function b2(t,e){let n=t.someProp("dragCopies",s=>!s(e));return n??!e[mL]}Es.dragstart=(t,e)=>{let n=e,s=t.input.mouseDown;if(s&&s.done(),!n.dataTransfer)return;let a=t.state.selection,i=a.empty?null:t.posAtCoords(Jf(n)),o;if(!(i&&i.pos>=a.from&&i.pos<=(a instanceof Qe?a.to-1:a.to))){if(s&&s.mightDrag)o=Qe.create(t.state.doc,s.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=Qe.create(t.state.doc,m.posBefore))}}let c=(o||t.state.selection).content(),{dom:u,text:h,slice:f}=O0(t,c);(!n.dataTransfer.files.length||!ns||WS>120)&&n.dataTransfer.clearData(),n.dataTransfer.setData(Id?"Text":"text/html",u.innerHTML),n.dataTransfer.effectAllowed="copyMove",Id||n.dataTransfer.setData("text/plain",h),t.dragging=new y2(f,b2(t,n),o)};Es.dragend=t=>{let e=t.dragging;window.setTimeout(()=>{t.dragging==e&&(t.dragging=null)},50)};Ts.dragover=Ts.dragenter=(t,e)=>e.preventDefault();Ts.drop=(t,e)=>{try{gL(t,e,t.dragging)}finally{t.dragging=null}};function gL(t,e,n){if(!e.dataTransfer)return;let s=t.posAtCoords(Jf(e));if(!s)return;let a=t.state.doc.resolve(s.pos),i=n&&n.slice;i?t.someProp("transformPasted",y=>{i=y(i,t,!1)}):i=o2(t,x2(e.dataTransfer),Id?null:e.dataTransfer.getData("text/html"),!1,a);let o=!!(n&&b2(t,e));if(t.someProp("handleDrop",y=>y(t,e,i||Oe.empty,o))){e.preventDefault();return}if(!i)return;e.preventDefault();let c=i?jS(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 g=u.doc.resolve(h);if(f&&Qe.isSelectable(i.content.firstChild)&&g.nodeAfter&&g.nodeAfter.sameMarkup(i.content.firstChild))u.setSelection(new Qe(g));else{let y=u.mapping.map(c);u.mapping.maps[u.mapping.maps.length-1].forEach((N,j,v,k)=>y=k),u.setSelection(P0(t,g,u.doc.resolve(y)))}t.focus(),t.dispatch(u.setMeta("uiEvent","drop"))}Es.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())&&Wa(t)},20))};Es.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)};Es.beforeinput=(t,e)=>{if(ns&&$a&&e.inputType=="deleteContentBackward"){t.domObserver.flushSoon();let{domChangeCount:s}=t.input;setTimeout(()=>{if(t.input.domChangeCount!=s||(t.dom.blur(),t.focus(),t.someProp("handleKeyDown",i=>i(t,wo(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 Ts)Es[t]=Ts[t];function Pd(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 Uh{constructor(e,n){this.toDOM=e,this.spec=n||Po,this.side=this.spec.side||0}map(e,n,s,a){let{pos:i,deleted:o}=e.mapResult(n.from+a,this.side<0?-1:1);return o?null:new Ln(i-s,i-s,this)}valid(){return!0}eq(e){return this==e||e instanceof Uh&&(this.spec.key&&this.spec.key==e.spec.key||this.toDOM==e.toDOM&&Pd(this.spec,e.spec))}destroy(e){this.spec.destroy&&this.spec.destroy(e)}}class _i{constructor(e,n){this.attrs=e,this.spec=n||Po}map(e,n,s,a){let i=e.map(n.from+a,this.spec.inclusiveStart?-1:1)-s,o=e.map(n.to+a,this.spec.inclusiveEnd?1:-1)-s;return i>=o?null:new Ln(i,o,this)}valid(e,n){return n.from=e&&(!i||i(c.spec))&&s.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,s,a+c,i)}}map(e,n,s){return this==ms||e.maps.length==0?this:this.mapInner(e,n,0,0,s||Po)}mapInner(e,n,s,a,i){let o;for(let c=0;c{let h=u+s,f;if(f=N2(n,c,h)){for(a||(a=this.children.slice());ic&&m.to=e){this.children[c]==e&&(s=this.children[c+2]);break}let i=e+1,o=i+n.content.size;for(let c=0;ci&&u.type instanceof _i){let h=Math.max(i,u.from)-i,f=Math.min(o,u.to)-i;ha.map(e,n,Po));return Si.from(s)}forChild(e,n){if(n.isLeaf)return Bt.empty;let s=[];for(let a=0;an instanceof Bt)?e:e.reduce((n,s)=>n.concat(s instanceof Bt?s:s.members),[]))}}forEachSet(e){for(let n=0;n{let v=j-N-(y-g);for(let k=0;kC+f-m)continue;let E=c[k]+f-m;y>=E?c[k+1]=g<=E?-2:-1:g>=f&&v&&(c[k]+=v,c[k+1]+=v)}m+=v}),f=n.maps[h].map(f,-1)}let u=!1;for(let h=0;h=s.content.size){u=!0;continue}let g=n.map(t[h+1]+i,-1),y=g-a,{index:N,offset:j}=s.content.findIndex(m),v=s.maybeChild(N);if(v&&j==m&&j+v.nodeSize==y){let k=c[h+2].mapInner(n,v,f+1,t[h]+i+1,o);k!=ms?(c[h]=m,c[h+1]=y,c[h+2]=k):(c[h+1]=-2,u=!0)}else u=!0}if(u){let h=yL(c,t,e,n,a,i,o),f=Kh(h,s,0,o);e=f.local;for(let m=0;mn&&o.to{let h=N2(t,c,u+n);if(h){i=!0;let f=Kh(h,c,n+u+1,s);f!=ms&&a.push(u,u+c.nodeSize,f)}});let o=v2(i?w2(t):t,-n).sort(Oo);for(let c=0;c0;)e++;t.splice(e,0,n)}function gg(t){let e=[];return t.someProp("decorations",n=>{let s=n(t.state);s&&s!=ms&&e.push(s)}),t.cursorWrapper&&e.push(Bt.create(t.state.doc,[t.cursorWrapper.deco])),Si.from(e)}const bL={childList:!0,characterData:!0,characterDataOldValue:!0,attributes:!0,attributeOldValue:!0,subtree:!0},vL=$s&&Di<=11;class NL{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 wL{constructor(e,n){this.view=e,this.handleDOMChange=n,this.queue=[],this.flushingSoon=-1,this.observer=null,this.currentSelection=new NL,this.onCharData=null,this.suppressingSelectionUpdates=!1,this.lastChangedTextNode=null,this.observer=window.MutationObserver&&new window.MutationObserver(s=>{for(let a=0;aa.type=="childList"&&a.removedNodes.length||a.type=="characterData"&&a.oldValue.length>a.target.nodeValue.length)?this.flushSoon():ys&&e.composing&&s.some(a=>a.type=="childList"&&a.target.nodeName=="TR")?(e.input.badSafariComposition=!0,this.flushSoon()):this.flush()}),vL&&(this.onCharData=s=>{this.queue.push({target:s.target,type:"characterData",oldValue:s.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,bL)),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(nN(this.view)){if(this.suppressingSelectionUpdates)return Wa(this.view);if($s&&Di<=11&&!this.view.state.selection.empty){let e=this.view.domSelectionRange();if(e.focusNode&&Bo(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,s;for(let i=e.focusNode;i;i=ql(i))n.add(i);for(let i=e.anchorNode;i;i=ql(i))if(n.has(i)){s=i;break}let a=s&&this.view.docView.nearestDesc(s);if(a&&a.ignoreMutation({type:"selection",target:s.nodeType==3?s.parentNode:s}))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 s=e.domSelectionRange(),a=!this.suppressingSelectionUpdates&&!this.currentSelection.eq(s)&&nN(e)&&!this.ignoreSelectionChange(s),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(fr&&u.length){let f=u.filter(m=>m.nodeName=="BR");if(f.length==2){let[m,g]=f;m.parentNode&&m.parentNode.parentNode==g.parentNode?g.remove():m.remove()}else{let{focusNode:m}=this.currentSelection;for(let g of f){let y=g.parentNode;y&&y.nodeName=="LI"&&(!m||SL(e,m)!=y)&&g.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),jL(e)),e.input.badSafariComposition&&(e.input.badSafariComposition=!1,CL(e,u)),this.handleDOMChange(i,o,c,u),e.docView&&e.docView.dirty?e.updateState(e.state):this.currentSelection.eq(s)||Wa(e),this.currentSelection.set(s))}registerMutation(e,n){if(n.indexOf(e.target)>-1)return null;let s=this.view.docView.nearestDesc(e.target);if(e.type=="attributes"&&(s==this.view.docView||e.attributeName=="contenteditable"||e.attributeName=="style"&&!e.oldValue&&!e.target.getAttribute("style"))||!s||s.ignoreMutation(e))return null;if(e.type=="childList"){for(let f=0;fa;v--){let k=s.childNodes[v-1],C=k.pmViewDesc;if(k.nodeName=="BR"&&!C){i=v;break}if(!C||C.size)break}let m=t.state.doc,g=t.someProp("domParser")||Oi.fromSchema(t.state.schema),y=m.resolve(o),N=null,j=g.parse(s,{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:TL,context:y});if(h&&h[0].pos!=null){let v=h[0].pos,k=h[1]&&h[1].pos;k==null&&(k=v),N={anchor:v+o,head:k+o}}return{doc:j,sel:N,from:o,to:c}}function TL(t){let e=t.pmViewDesc;if(e)return e.parseRule();if(t.nodeName=="BR"&&t.parentNode){if(ys&&/^(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||ys&&/^(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 ML=/^(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 AL(t,e,n,s,a){let i=t.input.compositionPendingChanges||(t.composing?t.input.compositionID:0);if(t.input.compositionPendingChanges=0,e<0){let L=t.input.lastSelectionTime>Date.now()-50?t.input.lastSelectionOrigin:null,R=R0(t,L);if(R&&!t.state.selection.eq(R)){if(ns&&$a&&t.input.lastKeyCode===13&&Date.now()-100se(t,wo(13,"Enter"))))return;let O=t.state.tr.setSelection(R);L=="pointer"?O.setMeta("pointer",!0):L=="key"&&O.scrollIntoView(),i&&O.setMeta("composition",i),t.dispatch(O)}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=EL(t,e,n),f=t.state.doc,m=f.slice(h.from,h.to),g,y;t.input.lastKeyCode===8&&Date.now()-100Date.now()-225||$a)&&a.some(L=>L.nodeType==1&&!ML.test(L.nodeName))&&(!N||N.endA>=N.endB)&&t.someProp("handleKeyDown",L=>L(t,wo(13,"Enter")))){t.input.lastIOSEnter=0;return}if(!N)if(s&&u instanceof Xe&&!u.empty&&u.$head.sameParent(u.$anchor)&&!t.composing&&!(h.sel&&h.sel.anchor!=h.sel.head))N={start:u.from,endA:u.to,endB:u.to};else{if(h.sel){let L=pN(t,t.state.doc,h.sel);if(L&&!L.eq(t.state.selection)){let R=t.state.tr.setSelection(L);i&&R.setMeta("composition",i),t.dispatch(R)}}return}t.state.selection.fromt.state.selection.from&&N.start<=t.state.selection.from+2&&t.state.selection.from>=h.from?N.start=t.state.selection.from:N.endA=t.state.selection.to-2&&t.state.selection.to<=h.to&&(N.endB+=t.state.selection.to-N.endA,N.endA=t.state.selection.to)),$s&&Di<=11&&N.endB==N.start+1&&N.endA==N.start&&N.start>h.from&&h.doc.textBetween(N.start-h.from-1,N.start-h.from+1)=="  "&&(N.start--,N.endA--,N.endB--);let j=h.doc.resolveNoCache(N.start-h.from),v=h.doc.resolveNoCache(N.endB-h.from),k=f.resolve(N.start),C=j.sameParent(v)&&j.parent.inlineContent&&k.end()>=N.endA;if((Gl&&t.input.lastIOSEnter>Date.now()-225&&(!C||a.some(L=>L.nodeName=="DIV"||L.nodeName=="P"))||!C&&j.posL(t,wo(13,"Enter")))){t.input.lastIOSEnter=0;return}if(t.state.selection.anchor>N.start&&RL(f,N.start,N.endA,j,v)&&t.someProp("handleKeyDown",L=>L(t,wo(8,"Backspace")))){$a&&ns&&t.domObserver.suppressSelectionUpdates();return}ns&&N.endB==N.start&&(t.input.lastChromeDelete=Date.now()),$a&&!C&&j.start()!=v.start()&&v.parentOffset==0&&j.depth==v.depth&&h.sel&&h.sel.anchor==h.sel.head&&h.sel.head==N.endA&&(N.endB-=2,v=h.doc.resolveNoCache(N.endB-h.from),setTimeout(()=>{t.someProp("handleKeyDown",function(L){return L(t,wo(13,"Enter"))})},20));let E=N.start,M=N.endA,P=L=>{let R=L||t.state.tr.replace(E,M,h.doc.slice(N.start-h.from,N.endB-h.from));if(h.sel){let O=pN(t,R.doc,h.sel);O&&!(ns&&t.composing&&O.empty&&(N.start!=N.endB||t.input.lastChromeDeleteWa(t),20));let L=P(t.state.tr.delete(E,M)),R=f.resolve(N.start).marksAcross(f.resolve(N.endA));R&&L.ensureMarks(R),t.dispatch(L)}else if(N.endA==N.endB&&(H=IL(j.parent.content.cut(j.parentOffset,v.parentOffset),k.parent.content.cut(k.parentOffset,N.endA-k.start())))){let L=P(t.state.tr);H.type=="add"?L.addMark(E,M,H.mark):L.removeMark(E,M,H.mark),t.dispatch(L)}else if(j.parent.child(j.index()).isText&&j.index()==v.index()-(v.textOffset?0:1)){let L=j.parent.textBetween(j.parentOffset,v.parentOffset),R=()=>P(t.state.tr.insertText(L,E,M));t.someProp("handleTextInput",O=>O(t,E,M,L,R))||t.dispatch(R())}else t.dispatch(P());else t.dispatch(P())}function pN(t,e,n){return Math.max(n.anchor,n.head)>e.content.size?null:P0(t,e.resolve(n.anchor),e.resolve(n.head))}function IL(t,e){let n=t.firstChild.marks,s=e.firstChild.marks,a=n,i=s,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||xg(o,!0,!1)0&&(e||t.indexAfter(s)==t.node(s).childCount);)s--,a++,e=!1;if(n){let i=t.node(s).maybeChild(t.indexAfter(s));for(;i&&!i.isLeaf;)i=i.firstChild,a++}return a}function PL(t,e,n,s,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));s-=o+u-i}if(o=o?i-s:0;i-=u,i&&i=c?i-s:0;i-=u,i&&i=56320&&e<=57343&&n>=55296&&n<=56319}class j2{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 JD,this.prevDirectPlugins=[],this.pluginViews=[],this.requiresGeckoHackNode=!1,this.dragging=null,this._props=n,this.state=n.state,this.directPlugins=n.plugins||[],this.directPlugins.forEach(vN),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=yN(this),xN(this),this.nodeViews=bN(this),this.docView=Y1(this.state.doc,gN(this),gg(this),this.dom,this),this.domObserver=new wL(this,(s,a,i,o)=>AL(this,s,a,i,o)),this.domObserver.start(),YD(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&&Nx(this);let n=this._props;this._props=e,e.plugins&&(e.plugins.forEach(vN),this.directPlugins=e.plugins),this.updateStateInner(e.state,n)}setProps(e){let n={};for(let s in this._props)n[s]=this._props[s];n.state=this.state;for(let s in e)n[s]=e[s];this.update(n)}updateState(e){this.updateStateInner(e,this._props)}updateStateInner(e,n){var s;let a=this.state,i=!1,o=!1;e.storedMarks&&this.composing&&(g2(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=bN(this);DL(y,this.nodeViews)&&(this.nodeViews=y,i=!0)}(c||n.handleDOMEvents!=this._props.handleDOMEvents)&&Nx(this),this.editable=yN(this),xN(this);let u=gg(this),h=gN(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 g=f=="preserve"&&o&&this.dom.style.overflowAnchor==null&&dD(this);if(o){this.domObserver.stop();let y=m&&($s||ns)&&!this.composing&&!a.selection.empty&&!e.selection.empty&&OL(a.selection,e.selection);if(m){let N=ns?this.trackWrites=this.domSelectionRange().focusNode:null;this.composing&&(this.input.compositionNode=dL(this)),(i||!this.docView.update(e.doc,h,u,this))&&(this.docView.updateOuterDeco(h),this.docView.destroy(),this.docView=Y1(e.doc,h,u,this.dom,this)),N&&(!this.trackWrites||!this.dom.contains(this.trackWrites))&&(y=!0)}y||!(this.input.mouseDown&&this.domObserver.currentSelection.eq(this.domSelectionRange())&&OD(this))?Wa(this,y):(r2(this,e.selection),this.domObserver.setCurSelection()),this.domObserver.start()}this.updatePluginViews(a),!((s=this.dragging)===null||s===void 0)&&s.node&&!a.doc.eq(e.doc)&&this.updateDraggedNode(this.dragging,a),f=="reset"?this.dom.scrollTop=0:f=="to selection"?this.scrollToSelection():g&&uD(g)}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 Qe){let n=this.docView.domAfterPos(this.state.selection.from);n.nodeType==1&&W1(this,n.getBoundingClientRect(),e)}else W1(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))==s.node&&(a=i)}this.dragging=new y2(e.slice,e.move,a<0?void 0:Qe.create(this.state.doc,a))}someProp(e,n){let s=this._props&&this._props[e],a;if(s!=null&&(a=n?n(s):s))return a;for(let o=0;on.ownerDocument.getSelection()),this._root=n}return e||document}updateRoot(){this._root=null}posAtCoords(e){return xD(this,e)}coordsAtPos(e,n=1){return YS(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,s=-1){let a=this.docView.posFromDOM(e,n,s);if(a==null)throw new RangeError("DOM position not inside the editor");return a}endOfTextblock(e,n){return wD(this,n||this.state,e)}pasteHTML(e,n){return Rd(this,"",e,!1,n||new ClipboardEvent("paste"))}pasteText(e,n){return Rd(this,e,null,!0,n||new ClipboardEvent("paste"))}serializeForClipboard(e){return O0(this,e)}destroy(){this.docView&&(QD(this),this.destroyPluginViews(),this.mounted?(this.docView.update(this.state.doc,[],gg(this),this),this.dom.textContent=""):this.dom.parentNode&&this.dom.parentNode.removeChild(this.dom),this.docView.destroy(),this.docView=null,eD())}get isDestroyed(){return this.docView==null}dispatchEvent(e){return ZD(this,e)}domSelectionRange(){let e=this.domSelection();return e?ys&&this.root.nodeType===11&&aD(this.dom.ownerDocument)==this.dom&&kL(this,e)||e:{focusNode:null,focusOffset:0,anchorNode:null,anchorOffset:0}}domSelection(){return this.root.getSelection()}}j2.prototype.dispatch=function(t){let e=this._props.dispatchTransaction;e?e.call(this,t):this.updateState(this.state.apply(t))};function gN(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 s in n)s=="class"?e.class+=" "+n[s]:s=="style"?e.style=(e.style?e.style+";":"")+n[s]:!e[s]&&s!="contenteditable"&&s!="nodeName"&&(e[s]=String(n[s]))}),e.translate||(e.translate="no"),[Ln.node(0,t.state.doc.content.size,e)]}function xN(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:Ln.widget(t.state.selection.from,e,{raw:!0,marks:t.markCursor})}}else t.cursorWrapper=null}function yN(t){return!t.someProp("editable",e=>e(t.state)===!1)}function OL(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 bN(t){let e=Object.create(null);function n(s){for(let a in s)Object.prototype.hasOwnProperty.call(e,a)||(e[a]=s[a])}return t.someProp("nodeViews",n),t.someProp("markViews",n),e}function DL(t,e){let n=0,s=0;for(let a in t){if(t[a]!=e[a])return!0;n++}for(let a in e)s++;return n!=s}function vN(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 $i={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:"'"},qh={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},LL=typeof navigator<"u"&&/Mac/.test(navigator.platform),_L=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);for(var ts=0;ts<10;ts++)$i[48+ts]=$i[96+ts]=String(ts);for(var ts=1;ts<=24;ts++)$i[ts+111]="F"+ts;for(var ts=65;ts<=90;ts++)$i[ts]=String.fromCharCode(ts+32),qh[ts]=String.fromCharCode(ts);for(var yg in $i)qh.hasOwnProperty(yg)||(qh[yg]=$i[yg]);function zL(t){var e=LL&&t.metaKey&&t.shiftKey&&!t.ctrlKey&&!t.altKey||_L&&t.shiftKey&&t.key&&t.key.length==1||t.key=="Unidentified",n=!e&&t.key||(t.shiftKey?qh:$i)[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 FL=typeof navigator<"u"&&/Mac|iP(hone|[oa]d)/.test(navigator.platform),$L=typeof navigator<"u"&&/Win/.test(navigator.platform);function BL(t){let e=t.split(/-(?!$)/),n=e[e.length-1];n=="Space"&&(n=" ");let s,a,i,o;for(let c=0;c{for(var n in e)WL(t,n,{get:e[n],enumerable:!0})};function Yf(t){const{state:e,transaction:n}=t;let{selection:s}=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 s},get doc(){return a},get tr(){return s=n.selection,a=n.doc,i=n.storedMarks,n}}}var Qf=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:s}=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&&s.dispatch(a),f}]))}get chain(){return()=>this.createChain()}get can(){return()=>this.createCan()}createChain(t,e=!0){const{rawCommands:n,editor:s,state:a}=this,{view:i}=s,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,g])=>[m,(...N)=>{const j=this.buildProps(u,e),v=g(...N)(j);return o.push(v),f}])),run:h};return f}createCan(t){const{rawCommands:e,state:n}=this,s=!1,a=t||n.tr,i=this.buildProps(a,s);return{...Object.fromEntries(Object.entries(e).map(([c,u])=>[c,(...h)=>u(...h)({...i,dispatch:void 0})])),chain:()=>this.createChain(a,s)}}buildProps(t,e=!0){const{rawCommands:n,editor:s,state:a}=this,{view:i}=s,o={tr:t,editor:s,view:i,state:Yf({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}},k2={};B0(k2,{blur:()=>UL,clearContent:()=>KL,clearNodes:()=>qL,command:()=>GL,createParagraphNear:()=>JL,cut:()=>YL,deleteCurrentNode:()=>QL,deleteNode:()=>XL,deleteRange:()=>ZL,deleteSelection:()=>e8,enter:()=>t8,exitCode:()=>n8,extendMarkRange:()=>s8,first:()=>r8,focus:()=>i8,forEach:()=>o8,insertContent:()=>l8,insertContentAt:()=>u8,joinBackward:()=>p8,joinDown:()=>f8,joinForward:()=>m8,joinItemBackward:()=>g8,joinItemForward:()=>x8,joinTextblockBackward:()=>y8,joinTextblockForward:()=>b8,joinUp:()=>h8,keyboardShortcut:()=>N8,lift:()=>w8,liftEmptyBlock:()=>j8,liftListItem:()=>k8,newlineInCode:()=>S8,resetAttributes:()=>C8,scrollIntoView:()=>E8,selectAll:()=>T8,selectNodeBackward:()=>M8,selectNodeForward:()=>A8,selectParentNode:()=>I8,selectTextblockEnd:()=>R8,selectTextblockStart:()=>P8,setContent:()=>O8,setMark:()=>e6,setMeta:()=>t6,setNode:()=>n6,setNodeSelection:()=>s6,setTextDirection:()=>r6,setTextSelection:()=>a6,sinkListItem:()=>i6,splitBlock:()=>o6,splitListItem:()=>l6,toggleList:()=>c6,toggleMark:()=>d6,toggleNode:()=>u6,toggleWrap:()=>h6,undoInputRule:()=>f6,unsetAllMarks:()=>p6,unsetMark:()=>m6,unsetTextDirection:()=>g6,updateAttributes:()=>x6,wrapIn:()=>y6,wrapInList:()=>b6});var UL=()=>({editor:t,view:e})=>(requestAnimationFrame(()=>{var n;t.isDestroyed||(e.dom.blur(),(n=window==null?void 0:window.getSelection())==null||n.removeAllRanges())}),!0),KL=(t=!0)=>({commands:e})=>e.setContent("",{emitUpdate:t}),qL=()=>({state:t,tr:e,dispatch:n})=>{const{selection:s}=e,{ranges:a}=s;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)),g=h.resolve(f.map(u+c.nodeSize)),y=m.blockRange(g);if(!y)return;const N=ic(y);if(c.type.isTextblock){const{defaultType:j}=m.parent.contentMatchAt(m.index());e.setNodeMarkup(y.start,j)}(N||N===0)&&e.lift(y,N)})}),!0},GL=t=>e=>t(e),JL=()=>({state:t,dispatch:e})=>FS(t,e),YL=(t,e)=>({editor:n,tr:s})=>{const{state:a}=n,i=a.doc.slice(t.from,t.to);s.deleteRange(t.from,t.to);const o=s.mapping.map(e);return s.insert(o,i.content),s.setSelection(new Xe(s.doc.resolve(Math.max(o-1,0)))),!0},QL=()=>({tr:t,dispatch:e})=>{const{selection:n}=t,s=n.$anchor.node();if(s.content.size>0)return!1;const a=t.selection.$anchor;for(let i=a.depth;i>0;i-=1)if(a.node(i).type===s.type){if(e){const c=a.before(i),u=a.after(i);t.delete(c,u).scrollIntoView()}return!0}return!1};function Mn(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 XL=t=>({tr:e,state:n,dispatch:s})=>{const a=Mn(t,n.schema),i=e.selection.$anchor;for(let o=i.depth;o>0;o-=1)if(i.node(o).type===a){if(s){const u=i.before(o),h=i.after(o);e.delete(u,h).scrollIntoView()}return!0}return!1},ZL=t=>({tr:e,dispatch:n})=>{const{from:s,to:a}=t;return n&&e.delete(s,a),!0},e8=()=>({state:t,dispatch:e})=>C0(t,e),t8=()=>({commands:t})=>t.keyboardShortcut("Enter"),n8=()=>({state:t,dispatch:e})=>FO(t,e);function V0(t){return Object.prototype.toString.call(t)==="[object RegExp]"}function Gh(t,e,n={strict:!0}){const s=Object.keys(e);return s.length?s.every(a=>n.strict?e[a]===t[a]:V0(e[a])?e[a].test(t[a]):e[a]===t[a]):!0}function S2(t,e,n={}){return t.find(s=>s.type===e&&Gh(Object.fromEntries(Object.keys(n).map(a=>[a,s.attrs[a]])),n))}function NN(t,e,n={}){return!!S2(t,e,n)}function H0(t,e,n){var s;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||((s=a.node.marks[0])==null?void 0:s.attrs),!S2([...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&&NN([...t.parent.child(o-1).marks],e,n);)o-=1,c-=t.parent.child(o).nodeSize;for(;u({tr:n,state:s,dispatch:a})=>{const i=Ga(t,s.schema),{doc:o,selection:c}=n,{$from:u,from:h,to:f}=c;if(a){const m=H0(u,i,e);if(m&&m.from<=h&&m.to>=f){const g=Xe.create(o,m.from,m.to);n.setSelection(g)}}return!0},r8=t=>e=>{const n=typeof t=="function"?t(e):t;for(let s=0;s({editor:n,view:s,tr:a,dispatch:i})=>{e={scrollIntoView:!0,...e};const o=()=>{(Jh()||wN())&&s.dom.focus(),a8()&&!Jh()&&!wN()&&s.dom.focus({preventScroll:!0}),requestAnimationFrame(()=>{n.isDestroyed||(s.focus(),e!=null&&e.scrollIntoView&&n.commands.scrollIntoView())})};try{if(s.hasFocus()&&t===null||t===!1)return!0}catch{return!1}if(i&&t===null&&!C2(n.state.selection))return o(),!0;const c=E2(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},o8=(t,e)=>n=>t.every((s,a)=>e(s,{...n,index:a})),l8=(t,e)=>({tr:n,commands:s})=>s.insertContentAt({from:n.selection.from,to:n.selection.to},t,e),T2=t=>{const e=t.childNodes;for(let n=e.length-1;n>=0;n-=1){const s=e[n];s.nodeType===3&&s.nodeValue&&/^(\n\s\s|\n)$/.test(s.nodeValue)?t.removeChild(s):s.nodeType===1&&T2(s)}return t};function ah(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 T2(n)}function Od(t,e,n){if(t instanceof Va||t instanceof Ne)return t;n={slice:!0,parseOptions:{},...n};const s=typeof t=="object"&&t!==null,a=typeof t=="string";if(s)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),Od("",e,n)}if(a){if(n.errorOnInvalidContent){let o=!1,c="";const u=new hS({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?Oi.fromSchema(u).parseSlice(ah(t),n.parseOptions):Oi.fromSchema(u).parse(ah(t),n.parseOptions),n.errorOnInvalidContent&&o)throw new Error("[tiptap error]: Invalid HTML content",{cause:new Error(`Invalid element found: ${c}`)})}const i=Oi.fromSchema(e);return n.slice?i.parseSlice(ah(t),n.parseOptions).content:i.parse(ah(t),n.parseOptions)}return Od("",e,n)}function c8(t,e,n){const s=t.steps.length-1;if(s{o===0&&(o=f)}),t.setSelection(nt.near(t.doc.resolve(o),n))}var d8=t=>!("type"in t),u8=(t,e,n)=>({tr:s,dispatch:a,editor:i})=>{var o;if(a){n={parseOptions:i.options.parseOptions,updateSelection:!0,applyInputRules:!1,applyPasteRules:!1,...n};let c;const u=v=>{i.emit("contentError",{editor:i,error:v,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{Od(e,i.schema,{parseOptions:h,errorOnInvalidContent:!0})}catch(v){u(v)}try{c=Od(e,i.schema,{parseOptions:h,errorOnInvalidContent:(o=n.errorOnInvalidContent)!=null?o:i.options.enableContentCheck})}catch(v){return u(v),!1}let{from:f,to:m}=typeof t=="number"?{from:t,to:t}:{from:t.from,to:t.to},g=!0,y=!0;if((d8(c)?c:[c]).forEach(v=>{v.check(),g=g?v.isText&&v.marks.length===0:!1,y=y?v.isBlock:!1}),f===m&&y){const{parent:v}=s.doc.resolve(f);v.isTextblock&&!v.type.spec.code&&!v.childCount&&(f-=1,m+=1)}let j;if(g){if(Array.isArray(e))j=e.map(v=>v.text||"").join("");else if(e instanceof Ne){let v="";e.forEach(k=>{k.text&&(v+=k.text)}),j=v}else typeof e=="object"&&e&&e.text?j=e.text:j=e;s.insertText(j,f,m)}else{j=c;const v=s.doc.resolve(f),k=v.node(),C=v.parentOffset===0,E=k.isText||k.isTextblock,M=k.content.size>0;C&&E&&M&&(f=Math.max(0,f-1)),s.replaceWith(f,m,j)}n.updateSelection&&c8(s,s.steps.length-1,-1),n.applyInputRules&&s.setMeta("applyInputRules",{from:f,text:j}),n.applyPasteRules&&s.setMeta("applyPasteRules",{from:f,text:j})}return!0},h8=()=>({state:t,dispatch:e})=>LO(t,e),f8=()=>({state:t,dispatch:e})=>_O(t,e),p8=()=>({state:t,dispatch:e})=>RS(t,e),m8=()=>({state:t,dispatch:e})=>LS(t,e),g8=()=>({state:t,dispatch:e,tr:n})=>{try{const s=Wf(t.doc,t.selection.$from.pos,-1);return s==null?!1:(n.join(s,2),e&&e(n),!0)}catch{return!1}},x8=()=>({state:t,dispatch:e,tr:n})=>{try{const s=Wf(t.doc,t.selection.$from.pos,1);return s==null?!1:(n.join(s,2),e&&e(n),!0)}catch{return!1}},y8=()=>({state:t,dispatch:e})=>OO(t,e),b8=()=>({state:t,dispatch:e})=>DO(t,e);function M2(){return typeof navigator<"u"?/Mac/.test(navigator.platform):!1}function v8(t){const e=t.split(/-(?!$)/);let n=e[e.length-1];n==="Space"&&(n=" ");let s,a,i,o;for(let c=0;c({editor:e,view:n,tr:s,dispatch:a})=>{const i=v8(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(s.mapping);f&&a&&s.maybeStep(f)}),!0};function Bi(t,e,n={}){const{from:s,to:a,empty:i}=t.selection,o=e?Mn(e,t.schema):null,c=[];t.doc.nodesBetween(s,a,(m,g)=>{if(m.isText)return;const y=Math.max(s,g),N=Math.min(a,g+m.nodeSize);c.push({node:m,from:y,to:N})});const u=a-s,h=c.filter(m=>o?o.name===m.node.type.name:!0).filter(m=>Gh(m.node.attrs,n,{strict:!1}));return i?!!h.length:h.reduce((m,g)=>m+g.to-g.from,0)>=u}var w8=(t,e={})=>({state:n,dispatch:s})=>{const a=Mn(t,n.schema);return Bi(n,a,e)?zO(n,s):!1},j8=()=>({state:t,dispatch:e})=>$S(t,e),k8=t=>({state:e,dispatch:n})=>{const s=Mn(t,e.schema);return YO(s)(e,n)},S8=()=>({state:t,dispatch:e})=>zS(t,e);function Xf(t,e){return e.nodes[t]?"node":e.marks[t]?"mark":null}function jN(t,e){const n=typeof e=="string"?[e]:e;return Object.keys(t).reduce((s,a)=>(n.includes(a)||(s[a]=t[a]),s),{})}var C8=(t,e)=>({tr:n,state:s,dispatch:a})=>{let i=null,o=null;const c=Xf(typeof t=="string"?t:t.name,s.schema);if(!c)return!1;c==="node"&&(i=Mn(t,s.schema)),c==="mark"&&(o=Ga(t,s.schema));let u=!1;return n.selection.ranges.forEach(h=>{s.doc.nodesBetween(h.$from.pos,h.$to.pos,(f,m)=>{i&&i===f.type&&(u=!0,a&&n.setNodeMarkup(m,void 0,jN(f.attrs,e))),o&&f.marks.length&&f.marks.forEach(g=>{o===g.type&&(u=!0,a&&n.addMark(m,m+f.nodeSize,o.create(jN(g.attrs,e))))})})}),u},E8=()=>({tr:t,dispatch:e})=>(e&&t.scrollIntoView(),!0),T8=()=>({tr:t,dispatch:e})=>{if(e){const n=new Qs(t.doc);t.setSelection(n)}return!0},M8=()=>({state:t,dispatch:e})=>OS(t,e),A8=()=>({state:t,dispatch:e})=>_S(t,e),I8=()=>({state:t,dispatch:e})=>VO(t,e),R8=()=>({state:t,dispatch:e})=>UO(t,e),P8=()=>({state:t,dispatch:e})=>WO(t,e);function wx(t,e,n={},s={}){return Od(t,e,{slice:!1,parseOptions:n,errorOnInvalidContent:s.errorOnInvalidContent})}var O8=(t,{errorOnInvalidContent:e,emitUpdate:n=!0,parseOptions:s={}}={})=>({editor:a,tr:i,dispatch:o,commands:c})=>{const{doc:u}=i;if(s.preserveWhitespace!=="full"){const h=wx(t,a.schema,s,{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:s,errorOnInvalidContent:e??a.options.enableContentCheck})};function A2(t,e){const n=Ga(e,t.schema),{from:s,to:a,empty:i}=t.selection,o=[];i?(t.storedMarks&&o.push(...t.storedMarks),o.push(...t.selection.$head.marks())):t.doc.nodesBetween(s,a,u=>{o.push(...u.marks)});const c=o.find(u=>u.type.name===n.name);return c?{...c.attrs}:{}}function I2(t,e){const n=new k0(t);return e.forEach(s=>{s.steps.forEach(a=>{n.step(a)})}),n}function D8(t){for(let e=0;e{n(a)&&s.push({node:a,pos:i})}),s}function R2(t,e){for(let n=t.depth;n>0;n-=1){const s=t.node(n);if(e(s))return{pos:n>0?t.before(n):0,start:t.start(n),depth:n,node:s}}}function Zf(t){return e=>R2(e.$from,t)}function Ge(t,e,n){return t.config[e]===void 0&&t.parent?Ge(t.parent,e,n):typeof t.config[e]=="function"?t.config[e].bind({...n,parent:t.parent?Ge(t.parent,e,n):null}):t.config[e]}function W0(t){return t.map(e=>{const n={name:e.name,options:e.options,storage:e.storage},s=Ge(e,"addExtensions",n);return s?[e,...W0(s())]:e}).flat(10)}function U0(t,e){const n=Jo.fromSchema(e).serializeFragment(t),a=document.implementation.createHTMLDocument().createElement("div");return a.appendChild(n),a.innerHTML}function P2(t){return typeof t=="function"}function St(t,e=void 0,...n){return P2(t)?e?t.bind(e)(...n):t(...n):t}function _8(t={}){return Object.keys(t).length===0&&t.constructor===Object}function Jl(t){const e=t.filter(a=>a.type==="extension"),n=t.filter(a=>a.type==="node"),s=t.filter(a=>a.type==="mark");return{baseExtensions:e,nodeExtensions:n,markExtensions:s}}function O2(t){const e=[],{nodeExtensions:n,markExtensions:s}=Jl(t),a=[...n,...s],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=s.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=Ge(h,"addGlobalAttributes",f);if(!m)return;m().forEach(y=>{let N;Array.isArray(y.types)?N=y.types:y.types==="*"?N=u:y.types==="nodes"?N=o:y.types==="marks"?N=c:N=[],N.forEach(j=>{Object.entries(y.attributes).forEach(([v,k])=>{e.push({type:j,name:v,attribute:{...i,...k}})})})})}),a.forEach(h=>{const f={name:h.name,options:h.options,storage:h.storage},m=Ge(h,"addAttributes",f);if(!m)return;const g=m();Object.entries(g).forEach(([y,N])=>{const j={...i,...N};typeof(j==null?void 0:j.default)=="function"&&(j.default=j.default()),j!=null&&j.isRequired&&(j==null?void 0:j.default)===void 0&&delete j.default,e.push({type:h.name,name:y,attribute:j})})}),e}function z8(t){const e=[];let n="",s=!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 kN(t){const e=[],n=z8(t||""),s=n.length;for(let a=0;a!!e).reduce((e,n)=>{const s={...e};return Object.entries(n).forEach(([a,i])=>{if(!s[a]){s[a]=i;return}if(a==="class"){const c=i?String(i).split(" "):[],u=s[a]?s[a].split(" "):[],h=c.filter(f=>!u.includes(f));s[a]=[...u,...h].join(" ")}else if(a==="style"){const c=new Map([...kN(s[a]),...kN(i)]);s[a]=Array.from(c.entries()).map(([u,h])=>`${u}: ${h}`).join("; ")}else s[a]=i}),s},{})}function Dd(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,s)=>Et(n,s),{})}function F8(t){return typeof t!="string"?t:t.match(/^[+-]?(?:\d*\.)?\d+$/)?Number(t):t==="true"?!0:t==="false"?!1:t}function SN(t,e){return"style"in t?t:{...t,getAttrs:n=>{const s=t.getAttrs?t.getAttrs(n):t.attrs;if(s===!1)return!1;const a=e.reduce((i,o)=>{const c=o.attribute.parseHTML?o.attribute.parseHTML(n):F8(n.getAttribute(o.name));return c==null?i:{...i,[o.name]:c}},{});return{...s,...a}}}}function CN(t){return Object.fromEntries(Object.entries(t).filter(([e,n])=>e==="attrs"&&_8(n)?!1:n!=null))}function EN(t){var e,n;const s={};return!((e=t==null?void 0:t.attribute)!=null&&e.isRequired)&&"default"in((t==null?void 0:t.attribute)||{})&&(s.default=t.attribute.default),((n=t==null?void 0:t.attribute)==null?void 0:n.validate)!==void 0&&(s.validate=t.attribute.validate),[t.name,s]}function $8(t,e){var n;const s=O2(t),{nodeExtensions:a,markExtensions:i}=Jl(t),o=(n=a.find(h=>Ge(h,"topNode")))==null?void 0:n.name,c=Object.fromEntries(a.map(h=>{const f=s.filter(k=>k.type===h.name),m={name:h.name,options:h.options,storage:h.storage,editor:e},g=t.reduce((k,C)=>{const E=Ge(C,"extendNodeSchema",m);return{...k,...E?E(h):{}}},{}),y=CN({...g,content:St(Ge(h,"content",m)),marks:St(Ge(h,"marks",m)),group:St(Ge(h,"group",m)),inline:St(Ge(h,"inline",m)),atom:St(Ge(h,"atom",m)),selectable:St(Ge(h,"selectable",m)),draggable:St(Ge(h,"draggable",m)),code:St(Ge(h,"code",m)),whitespace:St(Ge(h,"whitespace",m)),linebreakReplacement:St(Ge(h,"linebreakReplacement",m)),defining:St(Ge(h,"defining",m)),isolating:St(Ge(h,"isolating",m)),attrs:Object.fromEntries(f.map(EN))}),N=St(Ge(h,"parseHTML",m));N&&(y.parseDOM=N.map(k=>SN(k,f)));const j=Ge(h,"renderHTML",m);j&&(y.toDOM=k=>j({node:k,HTMLAttributes:Dd(k,f)}));const v=Ge(h,"renderText",m);return v&&(y.toText=v),[h.name,y]})),u=Object.fromEntries(i.map(h=>{const f=s.filter(v=>v.type===h.name),m={name:h.name,options:h.options,storage:h.storage,editor:e},g=t.reduce((v,k)=>{const C=Ge(k,"extendMarkSchema",m);return{...v,...C?C(h):{}}},{}),y=CN({...g,inclusive:St(Ge(h,"inclusive",m)),excludes:St(Ge(h,"excludes",m)),group:St(Ge(h,"group",m)),spanning:St(Ge(h,"spanning",m)),code:St(Ge(h,"code",m)),attrs:Object.fromEntries(f.map(EN))}),N=St(Ge(h,"parseHTML",m));N&&(y.parseDOM=N.map(v=>SN(v,f)));const j=Ge(h,"renderHTML",m);return j&&(y.toDOM=v=>j({mark:v,HTMLAttributes:Dd(v,f)})),[h.name,y]}));return new hS({topNode:o,nodes:c,marks:u})}function B8(t){const e=t.filter((n,s)=>t.indexOf(n)!==s);return Array.from(new Set(e))}function md(t){return t.sort((n,s)=>{const a=Ge(n,"priority")||100,i=Ge(s,"priority")||100;return a>i?-1:as.name));return n.length&&console.warn(`[tiptap warn]: Duplicate extension names found: [${n.map(s=>`'${s}'`).join(", ")}]. This can lead to issues.`),e}function L2(t,e,n){const{from:s,to:a}=e,{blockSeparator:i=` + +`,textSerializers:o={}}=n||{};let c="";return t.nodesBetween(s,a,(u,h,f,m)=>{var g;u.isBlock&&h>s&&(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+=(g=u==null?void 0:u.text)==null?void 0:g.slice(Math.max(s,h)-h,a-h))}),c}function V8(t,e){const n={from:0,to:t.content.size};return L2(t,n,e)}function _2(t){return Object.fromEntries(Object.entries(t.nodes).filter(([,e])=>e.spec.toText).map(([e,n])=>[e,n.spec.toText]))}function H8(t,e){const n=Mn(e,t.schema),{from:s,to:a}=t.selection,i=[];t.doc.nodesBetween(s,a,c=>{i.push(c)});const o=i.reverse().find(c=>c.type.name===n.name);return o?{...o.attrs}:{}}function z2(t,e){const n=Xf(typeof e=="string"?e:e.name,t.schema);return n==="node"?H8(t,e):n==="mark"?A2(t,e):{}}function W8(t,e=JSON.stringify){const n={};return t.filter(s=>{const a=e(s);return Object.prototype.hasOwnProperty.call(n,a)?!1:n[a]=!0})}function U8(t){const e=W8(t);return e.length===1?e:e.filter((n,s)=>!e.filter((i,o)=>o!==s).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 F2(t){const{mapping:e,steps:n}=t,s=[];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),g=e.invert().map(f);s.push({oldRange:{from:m,to:g},newRange:{from:h,to:f}})})}),U8(s)}function K0(t,e,n){const s=[];return t===e?n.resolve(t).marks().forEach(a=>{const i=n.resolve(t),o=H0(i,a.type);o&&s.push({mark:a,...o})}):n.nodesBetween(t,e,(a,i)=>{!a||(a==null?void 0:a.nodeSize)===void 0||s.push(...a.marks.map(o=>({from:i,to:i+a.nodeSize,mark:o})))}),s}var K8=(t,e,n,s=20)=>{const a=t.doc.resolve(n);let i=s,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 Qc(t,e){return e.nodes[t]||e.marks[t]||null}function jh(t,e,n){return Object.fromEntries(Object.entries(n).filter(([s])=>{const a=t.find(i=>i.type===e&&i.name===s);return a?a.attribute.keepOnSplit:!1}))}var q8=(t,e=500)=>{let n="";const s=t.parentOffset;return t.parent.nodesBetween(Math.max(0,s-e),s,(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,s-i))}),n};function jx(t,e,n={}){const{empty:s,ranges:a}=t.selection,i=e?Ga(e,t.schema):null;if(s)return!!(t.storedMarks||t.selection.$from.marks()).filter(m=>i?i.name===m.type.name:!0).find(m=>Gh(m.attrs,n,{strict:!1}));let o=0;const c=[];if(a.forEach(({$from:m,$to:g})=>{const y=m.pos,N=g.pos;t.doc.nodesBetween(y,N,(j,v)=>{if(i&&j.inlineContent&&!j.type.allowsMarkType(i))return!1;if(!j.isText&&!j.marks.length)return;const k=Math.max(y,v),C=Math.min(N,v+j.nodeSize),E=C-k;o+=E,c.push(...j.marks.map(M=>({mark:M,from:k,to:C})))})}),o===0)return!1;const u=c.filter(m=>i?i.name===m.mark.type.name:!0).filter(m=>Gh(m.mark.attrs,n,{strict:!1})).reduce((m,g)=>m+g.to-g.from,0),h=c.filter(m=>i?m.mark.type!==i&&m.mark.type.excludes(i):!0).reduce((m,g)=>m+g.to-g.from,0);return(u>0?u+h:u)>=o}function G8(t,e,n={}){if(!e)return Bi(t,null,n)||jx(t,null,n);const s=Xf(e,t.schema);return s==="node"?Bi(t,e,n):s==="mark"?jx(t,e,n):!1}var J8=(t,e)=>{const{$from:n,$to:s,$anchor:a}=t.selection;if(e){const i=Zf(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!(s.parentOffset{const{$from:e,$to:n}=t.selection;return!(e.parentOffset>0||e.pos!==n.pos)};function TN(t,e){return Array.isArray(e)?e.some(n=>(typeof n=="string"?n:n.name)===t.name):e}function MN(t,e){const{nodeExtensions:n}=Jl(e),s=n.find(o=>o.name===t);if(!s)return!1;const a={name:s.name,options:s.options,storage:s.storage},i=St(Ge(s,"group",a));return typeof i!="string"?!1:i.split(" ").includes("list")}function ep(t,{checkChildren:e=!0,ignoreWhitespace:n=!1}={}){var s;if(n){if(t.type.name==="hardBreak")return!0;if(t.isText)return/^\s*$/m.test((s=t.text)!=null?s:"")}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&&(ep(i,{ignoreWhitespace:n,checkChildren:e})||(a=!1))}),a}return!1}function $2(t){return t instanceof Qe}var B2=class V2{constructor(e){this.position=e}static fromJSON(e){return new V2(e.position)}toJSON(){return{position:this.position}}};function Q8(t,e){const n=e.mapping.mapResult(t.position);return{position:new B2(n.pos),mapResult:n}}function X8(t){return new B2(t)}function Z8(t,e,n){var s;const{selection:a}=e;let i=null;if(C2(a)&&(i=a.$cursor),i){const c=(s=t.storedMarks)!=null?s: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,g)=>{if(h)return!1;if(f.isInline){const y=!g||g.type.allowsMarkType(n),N=!!n.isInSet(f.marks)||!f.marks.some(j=>j.type.excludes(n));h=y&&N}return!h}),h})}var e6=(t,e={})=>({tr:n,state:s,dispatch:a})=>{const{selection:i}=n,{empty:o,ranges:c}=i,u=Ga(t,s.schema);if(a)if(o){const h=A2(s,u);n.addStoredMark(u.create({...h,...e}))}else c.forEach(h=>{const f=h.$from.pos,m=h.$to.pos;s.doc.nodesBetween(f,m,(g,y)=>{const N=Math.max(y,f),j=Math.min(y+g.nodeSize,m);g.marks.find(k=>k.type===u)?g.marks.forEach(k=>{u===k.type&&n.addMark(N,j,u.create({...k.attrs,...e}))}):n.addMark(N,j,u.create(e))})});return Z8(s,n,u)},t6=(t,e)=>({tr:n})=>(n.setMeta(t,e),!0),n6=(t,e={})=>({state:n,dispatch:s,chain:a})=>{const i=Mn(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})=>B1(i,{...o,...e})(n)?!0:c.clearNodes()).command(({state:c})=>B1(i,{...o,...e})(c,s)).run():(console.warn('[tiptap warn]: Currently "setNode()" only supports text block nodes.'),!1)},s6=t=>({tr:e,dispatch:n})=>{if(n){const{doc:s}=e,a=Eo(t,0,s.content.size),i=Qe.create(s,a);e.setSelection(i)}return!0},r6=(t,e)=>({tr:n,state:s,dispatch:a})=>{const{selection:i}=s;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},a6=t=>({tr:e,dispatch:n})=>{if(n){const{doc:s}=e,{from:a,to:i}=typeof t=="number"?{from:t,to:t}:t,o=Xe.atStart(s).from,c=Xe.atEnd(s).to,u=Eo(a,o,c),h=Eo(i,o,c),f=Xe.create(s,u,h);e.setSelection(f)}return!0},i6=t=>({state:e,dispatch:n})=>{const s=Mn(t,e.schema);return ZO(s)(e,n)};function AN(t,e){const n=t.storedMarks||t.selection.$to.parentOffset&&t.selection.$from.marks();if(n){const s=n.filter(a=>e==null?void 0:e.includes(a.type.name));t.tr.ensureMarks(s)}}var o6=({keepMarks:t=!0}={})=>({tr:e,state:n,dispatch:s,editor:a})=>{const{selection:i,doc:o}=e,{$from:c,$to:u}=i,h=a.extensionManager.attributes,f=jh(h,c.node().type.name,c.node().attrs);if(i instanceof Qe&&i.node.isBlock)return!c.parentOffset||!Ha(o,c.pos)?!1:(s&&(t&&AN(n,a.extensionManager.splittableMarks),e.split(c.pos).scrollIntoView()),!0);if(!c.parent.isBlock)return!1;const m=u.parentOffset===u.parent.content.size,g=c.depth===0?void 0:D8(c.node(-1).contentMatchAt(c.indexAfter(-1)));let y=m&&g?[{type:g,attrs:f}]:void 0,N=Ha(e.doc,e.mapping.map(c.pos),1,y);if(!y&&!N&&Ha(e.doc,e.mapping.map(c.pos),1,g?[{type:g}]:void 0)&&(N=!0,y=g?[{type:g,attrs:f}]:void 0),s){if(N&&(i instanceof Xe&&e.deleteSelection(),e.split(e.mapping.map(c.pos),1,y),g&&!m&&!c.parentOffset&&c.parent.type!==g)){const j=e.mapping.map(c.before()),v=e.doc.resolve(j);c.node(-1).canReplaceWith(v.index(),v.index()+1,g)&&e.setNodeMarkup(e.mapping.map(c.before()),g)}t&&AN(n,a.extensionManager.splittableMarks),e.scrollIntoView()}return N},l6=(t,e={})=>({tr:n,state:s,dispatch:a,editor:i})=>{var o;const c=Mn(t,s.schema),{$from:u,$to:h}=s.selection,f=s.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 g=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 C=u.index(-1)?1:u.index(-2)?2:3;for(let R=u.depth-C;R>=u.depth-3;R-=1)k=Ne.from(u.node(R).copy(k));const E=u.indexAfter(-1){if(L>-1)return!1;R.isTextblock&&R.content.size===0&&(L=O+1)}),L>-1&&n.setSelection(Xe.near(n.doc.resolve(L))),n.scrollIntoView()}return!0}const y=h.pos===u.end()?m.contentMatchAt(0).defaultType:null,N={...jh(g,m.type.name,m.attrs),...e},j={...jh(g,u.node().type.name,u.node().attrs),...e};n.delete(u.pos,h.pos);const v=y?[{type:c,attrs:N},{type:y,attrs:j}]:[{type:c,attrs:N}];if(!Ha(n.doc,u.pos,2))return!1;if(a){const{selection:k,storedMarks:C}=s,{splittableMarks:E}=i.extensionManager,M=C||k.$to.parentOffset&&k.$from.marks();if(n.split(u.pos,2,v).scrollIntoView(),!M||!a)return!0;const P=M.filter(H=>E.includes(H.type.name));n.ensureMarks(P)}return!0},vg=(t,e)=>{const n=Zf(o=>o.type===e)(t.selection);if(!n)return!0;const s=t.doc.resolve(Math.max(0,n.pos-1)).before(n.depth);if(s===void 0)return!0;const a=t.doc.nodeAt(s);return n.node.type===(a==null?void 0:a.type)&&Gi(t.doc,n.pos)&&t.join(n.pos),!0},Ng=(t,e)=>{const n=Zf(o=>o.type===e)(t.selection);if(!n)return!0;const s=t.doc.resolve(n.start).after(n.depth);if(s===void 0)return!0;const a=t.doc.nodeAt(s);return n.node.type===(a==null?void 0:a.type)&&Gi(t.doc,s)&&t.join(s),!0},c6=(t,e,n,s={})=>({editor:a,tr:i,state:o,dispatch:c,chain:u,commands:h,can:f})=>{const{extensions:m,splittableMarks:g}=a.extensionManager,y=Mn(t,o.schema),N=Mn(e,o.schema),{selection:j,storedMarks:v}=o,{$from:k,$to:C}=j,E=k.blockRange(C),M=v||j.$to.parentOffset&&j.$from.marks();if(!E)return!1;const P=Zf(H=>MN(H.type.name,m))(j);if(E.depth>=1&&P&&E.depth-P.depth<=1){if(P.node.type===y)return h.liftListItem(N);if(MN(P.node.type.name,m)&&y.validContent(P.node.content)&&c)return u().command(()=>(i.setNodeMarkup(P.pos,y),!0)).command(()=>vg(i,y)).command(()=>Ng(i,y)).run()}return!n||!M||!c?u().command(()=>f().wrapInList(y,s)?!0:h.clearNodes()).wrapInList(y,s).command(()=>vg(i,y)).command(()=>Ng(i,y)).run():u().command(()=>{const H=f().wrapInList(y,s),L=M.filter(R=>g.includes(R.type.name));return i.ensureMarks(L),H?!0:h.clearNodes()}).wrapInList(y,s).command(()=>vg(i,y)).command(()=>Ng(i,y)).run()},d6=(t,e={},n={})=>({state:s,commands:a})=>{const{extendEmptyMarkRange:i=!1}=n,o=Ga(t,s.schema);return jx(s,o,e)?a.unsetMark(o,{extendEmptyMarkRange:i}):a.setMark(o,e)},u6=(t,e,n={})=>({state:s,commands:a})=>{const i=Mn(t,s.schema),o=Mn(e,s.schema),c=Bi(s,i,n);let u;return s.selection.$anchor.sameParent(s.selection.$head)&&(u=s.selection.$anchor.parent.attrs),c?a.setNode(o,u):a.setNode(i,{...u,...n})},h6=(t,e={})=>({state:n,commands:s})=>{const a=Mn(t,n.schema);return Bi(n,a,e)?s.lift(a):s.wrapIn(a,e)},f6=()=>({state:t,dispatch:e})=>{const n=t.plugins;for(let s=0;s=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},p6=()=>({tr:t,dispatch:e})=>{const{selection:n}=t,{empty:s,ranges:a}=n;return s||e&&a.forEach(i=>{t.removeMark(i.$from.pos,i.$to.pos)}),!0},m6=(t,e={})=>({tr:n,state:s,dispatch:a})=>{var i;const{extendEmptyMarkRange:o=!1}=e,{selection:c}=n,u=Ga(t,s.schema),{$from:h,empty:f,ranges:m}=c;if(!a)return!0;if(f&&o){let{from:g,to:y}=c;const N=(i=h.marks().find(v=>v.type===u))==null?void 0:i.attrs,j=H0(h,u,N);j&&(g=j.from,y=j.to),n.removeMark(g,y,u)}else m.forEach(g=>{n.removeMark(g.$from.pos,g.$to.pos,u)});return n.removeStoredMark(u),!0},g6=t=>({tr:e,state:n,dispatch:s})=>{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),s&&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},x6=(t,e={})=>({tr:n,state:s,dispatch:a})=>{let i=null,o=null;const c=Xf(typeof t=="string"?t:t.name,s.schema);if(!c)return!1;c==="node"&&(i=Mn(t,s.schema)),c==="mark"&&(o=Ga(t,s.schema));let u=!1;return n.selection.ranges.forEach(h=>{const f=h.$from.pos,m=h.$to.pos;let g,y,N,j;n.selection.empty?s.doc.nodesBetween(f,m,(v,k)=>{i&&i===v.type&&(u=!0,N=Math.max(k,f),j=Math.min(k+v.nodeSize,m),g=k,y=v)}):s.doc.nodesBetween(f,m,(v,k)=>{k=f&&k<=m&&(i&&i===v.type&&(u=!0,a&&n.setNodeMarkup(k,void 0,{...v.attrs,...e})),o&&v.marks.length&&v.marks.forEach(C=>{if(o===C.type&&(u=!0,a)){const E=Math.max(k,f),M=Math.min(k+v.nodeSize,m);n.addMark(E,M,o.create({...C.attrs,...e}))}}))}),y&&(g!==void 0&&a&&n.setNodeMarkup(g,void 0,{...y.attrs,...e}),o&&y.marks.length&&y.marks.forEach(v=>{o===v.type&&a&&n.addMark(N,j,o.create({...v.attrs,...e}))}))}),u},y6=(t,e={})=>({state:n,dispatch:s})=>{const a=Mn(t,n.schema);return KO(a,e)(n,s)},b6=(t,e={})=>({state:n,dispatch:s})=>{const a=Mn(t,n.schema);return qO(a,e)(n,s)},v6=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(s=>s.apply(this,e)),this}off(t,e){const n=this.callbacks[t];return n&&(e?this.callbacks[t]=n.filter(s=>s!==e):delete this.callbacks[t]),this}once(t,e){const n=(...s)=>{this.off(t,n),e.apply(this,s)};return this.on(t,n)}removeAllListeners(){this.callbacks={}}},tp=class{constructor(t){var e;this.find=t.find,this.handler=t.handler,this.undoable=(e=t.undoable)!=null?e:!0}},N6=(t,e)=>{if(V0(e))return e.exec(t);const n=e(t);if(!n)return null;const s=[n.text];return s.index=n.index,s.input=t,s.data=n.data,n.replaceWith&&(n.text.includes(n.replaceWith)||console.warn('[tiptap warn]: "inputRuleMatch.replaceWith" must be part of "inputRuleMatch.text".'),s.push(n.replaceWith)),s};function ih(t){var e;const{editor:n,from:s,to:a,text:i,rules:o,plugin:c}=t,{view:u}=n;if(u.composing)return!1;const h=u.state.doc.resolve(s);if(h.parent.type.spec.code||(e=h.nodeBefore||h.nodeAfter)!=null&&e.marks.find(g=>g.type.spec.code))return!1;let f=!1;const m=q8(h)+i;return o.forEach(g=>{if(f)return;const y=N6(m,g.find);if(!y)return;const N=u.state.tr,j=Yf({state:u.state,transaction:N}),v={from:s-(y[0].length-i.length),to:a},{commands:k,chain:C,can:E}=new Qf({editor:n,state:j});g.handler({state:j,range:v,match:y,commands:k,chain:C,can:E})===null||!N.steps.length||(g.undoable&&N.setMeta(c,{transform:N,from:s,to:a,text:i}),u.dispatch(N),f=!0)}),f}function w6(t){const{editor:e,rules:n}=t,s=new qt({state:{init(){return null},apply(a,i,o){const c=a.getMeta(s);if(c)return c;const u=a.getMeta("applyInputRules");return!!u&&setTimeout(()=>{let{text:f}=u;typeof f=="string"?f=f:f=U0(Ne.from(f),o.schema);const{from:m}=u,g=m+f.length;ih({editor:e,from:m,to:g,text:f,rules:n,plugin:s})}),a.selectionSet||a.docChanged?null:i}},props:{handleTextInput(a,i,o,c){return ih({editor:e,from:i,to:o,text:c,rules:n,plugin:s})},handleDOMEvents:{compositionend:a=>(setTimeout(()=>{const{$cursor:i}=a.state.selection;i&&ih({editor:e,from:i.pos,to:i.pos,text:"",rules:n,plugin:s})}),!1)},handleKeyDown(a,i){if(i.key!=="Enter")return!1;const{$cursor:o}=a.state.selection;return o?ih({editor:e,from:o.pos,to:o.pos,text:` +`,rules:n,plugin:s}):!1}},isInputRules:!0});return s}function j6(t){return Object.prototype.toString.call(t).slice(8,-1)}function oh(t){return j6(t)!=="Object"?!1:t.constructor===Object&&Object.getPrototypeOf(t)===Object.prototype}function H2(t,e){const n={...t};return oh(t)&&oh(e)&&Object.keys(e).forEach(s=>{oh(e[s])&&oh(t[s])?n[s]=H2(t[s],e[s]):n[s]=e[s]}),n}var q0=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{...St(Ge(this,"addOptions",{name:this.name}))||{}}}get storage(){return{...St(Ge(this,"addStorage",{name:this.name,options:this.options}))||{}}}configure(t={}){const e=this.extend({...this.config,addOptions:()=>H2(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}},Yo=class W2 extends q0{constructor(){super(...arguments),this.type="mark"}static create(e={}){const n=typeof e=="function"?e():e;return new W2(n)}static handleExit({editor:e,mark:n}){const{tr:s}=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&&s.removeStoredMark(u),s.insertText(" ",a.pos),e.view.dispatch(s),!0}return!1}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}};function k6(t){return typeof t=="number"}var S6=class{constructor(t){this.find=t.find,this.handler=t.handler}},C6=(t,e,n)=>{if(V0(e))return[...t.matchAll(e)];const s=e(t,n);return s?s.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 E6(t){const{editor:e,state:n,from:s,to:a,rule:i,pasteEvent:o,dropEvent:c}=t,{commands:u,chain:h,can:f}=new Qf({editor:e,state:n}),m=[];return n.doc.nodesBetween(s,a,(y,N)=>{var j,v,k,C,E;if((v=(j=y.type)==null?void 0:j.spec)!=null&&v.code||!(y.isText||y.isTextblock||y.isInline))return;const M=(E=(C=(k=y.content)==null?void 0:k.size)!=null?C:y.nodeSize)!=null?E:0,P=Math.max(s,N),H=Math.min(a,N+M);if(P>=H)return;const L=y.isText?y.text||"":y.textBetween(P-N,H-N,void 0,"");C6(L,i.find,o).forEach(O=>{if(O.index===void 0)return;const se=P+O.index+1,ie=se+O[0].length,z={from:n.tr.mapping.map(se),to:n.tr.mapping.map(ie)},ce=i.handler({state:n,range:z,match:O,commands:u,chain:h,can:f,pasteEvent:o,dropEvent:c});m.push(ce)})}),m.every(y=>y!==null)}var lh=null,T6=t=>{var e;const n=new ClipboardEvent("paste",{clipboardData:new DataTransfer});return(e=n.clipboardData)==null||e.setData("text/html",t),n};function M6(t){const{editor:e,rules:n}=t;let s=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:g,rule:y,pasteEvt:N})=>{const j=f.tr,v=Yf({state:f,transaction:j});if(!(!E6({editor:e,state:v,from:Math.max(m-1,0),to:g.b-1,rule:y,pasteEvent:N,dropEvent:c})||!j.steps.length)){try{c=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{c=null}return o=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,j}};return n.map(f=>new qt({view(m){const g=N=>{var j;s=(j=m.dom.parentElement)!=null&&j.contains(N.target)?m.dom.parentElement:null,s&&(lh=e)},y=()=>{lh&&(lh=null)};return window.addEventListener("dragstart",g),window.addEventListener("dragend",y),{destroy(){window.removeEventListener("dragstart",g),window.removeEventListener("dragend",y)}}},props:{handleDOMEvents:{drop:(m,g)=>{if(i=s===m.dom.parentElement,c=g,!i){const y=lh;y!=null&&y.isEditable&&setTimeout(()=>{const N=y.state.selection;N&&y.commands.deleteRange({from:N.from,to:N.to})},10)}return!1},paste:(m,g)=>{var y;const N=(y=g.clipboardData)==null?void 0:y.getData("text/html");return o=g,a=!!(N!=null&&N.includes("data-pm-slice")),!1}}},appendTransaction:(m,g,y)=>{const N=m[0],j=N.getMeta("uiEvent")==="paste"&&!a,v=N.getMeta("uiEvent")==="drop"&&!i,k=N.getMeta("applyPasteRules"),C=!!k;if(!j&&!v&&!C)return;if(C){let{text:P}=k;typeof P=="string"?P=P:P=U0(Ne.from(P),y.schema);const{from:H}=k,L=H+P.length,R=T6(P);return u({rule:f,state:y,from:H,to:{b:L},pasteEvt:R})}const E=g.doc.content.findDiffStart(y.doc.content),M=g.doc.content.findDiffEnd(y.doc.content);if(!(!k6(E)||!M||E===M.b))return u({rule:f,state:y,from:E,to:M,pasteEvt:o})}}))}var np=class{constructor(t,e){this.splittableMarks=[],this.editor=e,this.baseExtensions=t,this.extensions=D2(t),this.schema=$8(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:Qc(e.name,this.schema)},s=Ge(e,"addCommands",n);return s?{...t,...s()}:t},{})}get plugins(){const{editor:t}=this;return md([...this.extensions].reverse()).flatMap(s=>{const a={name:s.name,options:s.options,storage:this.editor.extensionStorage[s.name],editor:t,type:Qc(s.name,this.schema)},i=[],o=Ge(s,"addKeyboardShortcuts",a);let c={};if(s.type==="mark"&&Ge(s,"exitable",a)&&(c.ArrowRight=()=>Yo.handleExit({editor:t,mark:s})),o){const g=Object.fromEntries(Object.entries(o()).map(([y,N])=>[y,()=>N({editor:t})]));c={...c,...g}}const u=HL(c);i.push(u);const h=Ge(s,"addInputRules",a);if(TN(s,t.options.enableInputRules)&&h){const g=h();if(g&&g.length){const y=w6({editor:t,rules:g}),N=Array.isArray(y)?y:[y];i.push(...N)}}const f=Ge(s,"addPasteRules",a);if(TN(s,t.options.enablePasteRules)&&f){const g=f();if(g&&g.length){const y=M6({editor:t,rules:g});i.push(...y)}}const m=Ge(s,"addProseMirrorPlugins",a);if(m){const g=m();i.push(...g)}return i})}get attributes(){return O2(this.extensions)}get nodeViews(){const{editor:t}=this,{nodeExtensions:e}=Jl(this.extensions);return Object.fromEntries(e.filter(n=>!!Ge(n,"addNodeView")).map(n=>{const s=this.attributes.filter(u=>u.type===n.name),a={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:Mn(n.name,this.schema)},i=Ge(n,"addNodeView",a);if(!i)return[];const o=i();if(!o)return[];const c=(u,h,f,m,g)=>{const y=Dd(u,s);return o({node:u,view:h,getPos:f,decorations:m,innerDecorations:g,editor:t,extension:n,HTMLAttributes:y})};return[n.name,c]}))}dispatchTransaction(t){const{editor:e}=this;return md([...this.extensions].reverse()).reduceRight((s,a)=>{const i={name:a.name,options:a.options,storage:this.editor.extensionStorage[a.name],editor:e,type:Qc(a.name,this.schema)},o=Ge(a,"dispatchTransaction",i);return o?c=>{o.call(i,{transaction:c,next:s})}:s},t)}transformPastedHTML(t){const{editor:e}=this;return md([...this.extensions]).reduce((s,a)=>{const i={name:a.name,options:a.options,storage:this.editor.extensionStorage[a.name],editor:e,type:Qc(a.name,this.schema)},o=Ge(a,"transformPastedHTML",i);return o?(c,u)=>{const h=s(c,u);return o.call(i,h)}:s},t||(s=>s))}get markViews(){const{editor:t}=this,{markExtensions:e}=Jl(this.extensions);return Object.fromEntries(e.filter(n=>!!Ge(n,"addMarkView")).map(n=>{const s=this.attributes.filter(c=>c.type===n.name),a={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:Ga(n.name,this.schema)},i=Ge(n,"addMarkView",a);if(!i)return[];const o=(c,u,h)=>{const f=Dd(c,s);return i()({mark:c,view:u,inline:h,editor:t,extension:n,HTMLAttributes:f,updateAttributes:m=>{W6(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 s={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:Qc(e.name,this.schema)};e.type==="mark"&&((n=St(Ge(e,"keepOnSplit",s)))==null||n)&&this.splittableMarks.push(e.name);const a=Ge(e,"onBeforeCreate",s),i=Ge(e,"onCreate",s),o=Ge(e,"onUpdate",s),c=Ge(e,"onSelectionUpdate",s),u=Ge(e,"onTransaction",s),h=Ge(e,"onFocus",s),f=Ge(e,"onBlur",s),m=Ge(e,"onDestroy",s);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)})}};np.resolve=D2;np.sort=md;np.flatten=W0;var A6={};B0(A6,{ClipboardTextSerializer:()=>K2,Commands:()=>q2,Delete:()=>G2,Drop:()=>J2,Editable:()=>Y2,FocusEvents:()=>X2,Keymap:()=>Z2,Paste:()=>eC,Tabindex:()=>tC,TextDirection:()=>nC,focusEventsPluginKey:()=>Q2});var gn=class U2 extends q0{constructor(){super(...arguments),this.type="extension"}static create(e={}){const n=typeof e=="function"?e():e;return new U2(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}},K2=gn.create({name:"clipboardTextSerializer",addOptions(){return{blockSeparator:void 0}},addProseMirrorPlugins(){return[new qt({key:new rn("clipboardTextSerializer"),props:{clipboardTextSerializer:()=>{const{editor:t}=this,{state:e,schema:n}=t,{doc:s,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=_2(n);return L2(s,{from:o,to:c},{...this.options.blockSeparator!==void 0?{blockSeparator:this.options.blockSeparator}:{},textSerializers:u})}}})]}}),q2=gn.create({name:"commands",addCommands(){return{...k2}}}),G2=gn.create({name:"delete",onUpdate({transaction:t,appendedTransactions:e}){var n,s,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=I2(t.before,[t,...e]);F2(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,(N,j)=>{const v=j+N.nodeSize-2,k=y.oldRange.from<=j&&v<=y.oldRange.to;this.editor.emit("delete",{type:"node",node:N,from:j,to:v,newFrom:f.mapping.map(j),newTo:f.mapping.map(v),deletedRange:y.oldRange,newRange:y.newRange,partial:!k,editor:this.editor,transaction:t,combinedTransform:f})})});const g=f.mapping;f.steps.forEach((y,N)=>{var j,v;if(y instanceof Ir){const k=g.slice(N).map(y.from,-1),C=g.slice(N).map(y.to),E=g.invert().map(k,-1),M=g.invert().map(C),P=(j=f.doc.nodeAt(k-1))==null?void 0:j.marks.some(L=>L.eq(y.mark)),H=(v=f.doc.nodeAt(C))==null?void 0:v.marks.some(L=>L.eq(y.mark));this.editor.emit("delete",{type:"mark",mark:y.mark,from:y.from,to:y.to,deletedRange:{from:E,to:M},newRange:{from:k,to:C},partial:!!(H||P),editor:this.editor,transaction:t,combinedTransform:f})}})};(a=(s=(n=this.editor.options.coreExtensionOptions)==null?void 0:n.delete)==null?void 0:s.async)==null||a?setTimeout(i,0):i()}}),J2=gn.create({name:"drop",addProseMirrorPlugins(){return[new qt({key:new rn("tiptapDrop"),props:{handleDrop:(t,e,n,s)=>{this.editor.emit("drop",{editor:this.editor,event:e,slice:n,moved:s})}}})]}}),Y2=gn.create({name:"editable",addProseMirrorPlugins(){return[new qt({key:new rn("editable"),props:{editable:()=>this.editor.options.editable}})]}}),Q2=new rn("focusEvents"),X2=gn.create({name:"focusEvents",addProseMirrorPlugins(){const{editor:t}=this;return[new qt({key:Q2,props:{handleDOMEvents:{focus:(e,n)=>{t.isFocused=!0;const s=t.state.tr.setMeta("focus",{event:n}).setMeta("addToHistory",!1);return e.dispatch(s),!1},blur:(e,n)=>{t.isFocused=!1;const s=t.state.tr.setMeta("blur",{event:n}).setMeta("addToHistory",!1);return e.dispatch(s),!1}}}})]}}),Z2=gn.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:g,parent:y}=m,N=m.parent.isTextblock&&g>0?c.doc.resolve(g-1):m,j=N.parent.type.spec.isolating,v=m.pos-m.parentOffset,k=j&&N.parent.childCount===1?v===m.pos:nt.atStart(h).from===g;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()]),s={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={...s},i={...s,"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 Jh()||M2()?i:a},addProseMirrorPlugins(){return[new qt({key:new rn("clearDocument"),appendTransaction:(t,e,n)=>{if(t.some(j=>j.getMeta("composition")))return;const s=t.some(j=>j.docChanged)&&!e.doc.eq(n.doc),a=t.some(j=>j.getMeta("preventClearDocument"));if(!s||a)return;const{empty:i,from:o,to:c}=e.selection,u=nt.atStart(e.doc).from,h=nt.atEnd(e.doc).to;if(i||!(o===u&&c===h)||!ep(n.doc))return;const g=n.tr,y=Yf({state:n,transaction:g}),{commands:N}=new Qf({editor:this.editor,state:y});if(N.clearNodes(),!!g.steps.length)return g}})]}}),eC=gn.create({name:"paste",addProseMirrorPlugins(){return[new qt({key:new rn("tiptapPaste"),props:{handlePaste:(t,e,n)=>{this.editor.emit("paste",{editor:this.editor,event:e,slice:n})}}})]}}),tC=gn.create({name:"tabindex",addProseMirrorPlugins(){return[new qt({key:new rn("tabindex"),props:{attributes:()=>this.editor.isEditable?{tabindex:"0"}:{}}})]}}),nC=gn.create({name:"textDirection",addOptions(){return{direction:void 0}},addGlobalAttributes(){if(!this.options.direction)return[];const{nodeExtensions:t}=Jl(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 qt({key:new rn("textDirection"),props:{attributes:()=>{const t=this.options.direction;return t?{dir:t}:{}}}})]}}),I6=class sd{constructor(e,n,s=!1,a=null){this.currentNode=null,this.actualDepth=null,this.isBlock=s,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,s=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,s=this.to-1}this.editor.commands.insertContentAt({from:n,to:s},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 sd(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 sd(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 sd(e,this.editor)}get children(){const e=[];return this.node.content.forEach((n,s)=>{const a=n.isBlock&&!n.isTextblock,i=n.isAtom&&!n.isText,o=n.isInline,c=this.pos+s+(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 sd(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 s=null,a=this.parent;for(;a&&!s;){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{s&&a.length>0||(o.node.type.name===e&&i.every(u=>n[u]===o.node.attrs[u])&&a.push(o),!(s&&a.length>0)&&(a=a.concat(o.querySelectorAll(e,n,s))))}),a}setAttribute(e){const{tr:n}=this.editor.state;n.setNodeMarkup(this.from,void 0,{...this.node.attrs,...e}),this.editor.view.dispatch(n)}},R6=`.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 P6(t,e,n){const s=document.querySelector("style[data-tiptap-style]");if(s!==null)return s;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 O6=class extends v6{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:s})=>{throw s},onPaste:()=>null,onDrop:()=>null,onDelete:()=>null,enableExtensionDispatchTransaction:!0},this.isCapturingTransaction=!1,this.capturedTransaction=null,this.utils={getUpdatedPosition:Q8,createMappablePosition:X8},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:s,slice:a,moved:i})=>this.options.onDrop(s,a,i)),this.on("paste",({event:s,slice:a})=>this.options.onPaste(s,a)),this.on("delete",this.options.onDelete);const e=this.createDoc(),n=E2(e,this.options.autofocus);this.editorState=zl.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=P6(R6,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=P2(e)?e(t,[...this.state.plugins]):[...this.state.plugins,t],s=this.state.reconfigure({plugins:n});return this.view.updateState(s),s}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 s=this.state.reconfigure({plugins:n});return this.view.updateState(s),s}createExtensionManager(){var t,e;const s=[...this.options.enableCoreExtensions?[Y2,K2.configure({blockSeparator:(e=(t=this.options.coreExtensionOptions)==null?void 0:t.clipboardTextSerializer)==null?void 0:e.blockSeparator}),q2,X2,Z2,tC,J2,eC,G2,nC.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 np(s,this)}createCommandManager(){this.commandManager=new Qf({editor:this})}createSchema(){this.schema=this.extensionManager.schema}createDoc(){let t;try{t=wx(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=wx(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:!1})}return t}createView(t){const{editorProps:e,enableExtensionDispatchTransaction:n}=this.options,s=e.dispatchTransaction||this.dispatchTransaction.bind(this),a=n?this.extensionManager.dispatchTransaction(s):s,i=e.transformPastedHTML,o=this.extensionManager.transformPastedHTML(i);this.editorView=new j2(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),s=!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)}),s&&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 z2(this.state,t)}isActive(t,e){const n=typeof t=="string"?t:null,s=typeof t=="string"?e:t;return G8(this.state,n,s)}getJSON(){return this.state.doc.toJSON()}getHTML(){return U0(this.state.doc.content,this.schema)}getText(t){const{blockSeparator:e=` + +`,textSerializers:n={}}=t||{};return V8(this.state.doc,{blockSeparator:e,textSerializers:{..._2(this.schema),...n}})}get isEmpty(){return ep(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 I6(e,this)}get $doc(){return this.$pos(0)}};function Yl(t){return new tp({find:t.find,handler:({state:e,range:n,match:s})=>{const a=St(t.getAttributes,void 0,s);if(a===!1||a===null)return null;const{tr:i}=e,o=s[s.length-1],c=s[0];if(o){const u=c.search(/\S/),h=n.from+c.indexOf(o),f=h+o.length;if(K0(n.from,n.to,e.doc).filter(y=>y.mark.type.excluded.find(j=>j===t.type&&j!==y.mark.type)).filter(y=>y.to>h).length)return null;fn.from&&i.delete(n.from+u,h);const g=n.from+u+o.length;i.addMark(n.from+u,g,t.type.create(a||{})),i.removeStoredMark(t.type)}},undoable:t.undoable})}function sC(t){return new tp({find:t.find,handler:({state:e,range:n,match:s})=>{const a=St(t.getAttributes,void 0,s)||{},{tr:i}=e,o=n.from;let c=n.to;const u=t.type.create(a);if(s[1]){const h=s[0].lastIndexOf(s[1]);let f=o+h;f>c?f=c:c=f+s[1].length;const m=s[0][s[0].length-1];i.insertText(m,o+s[0].length-1),i.replaceWith(f,c,u)}else if(s[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 kx(t){return new tp({find:t.find,handler:({state:e,range:n,match:s})=>{const a=e.doc.resolve(n.from),i=St(t.getAttributes,void 0,s)||{};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 Ql(t){return new tp({find:t.find,handler:({state:e,range:n,match:s,chain:a})=>{const i=St(t.getAttributes,void 0,s)||{},o=e.tr.delete(n.from,n.to),u=o.doc.resolve(n.from).blockRange(),h=u&&j0(u,t.type,i);if(!h)return null;if(o.wrap(u,h),t.keepMarks&&t.editor){const{selection:m,storedMarks:g}=e,{splittableMarks:y}=t.editor.extensionManager,N=g||m.$to.parentOffset&&m.$from.marks();if(N){const j=N.filter(v=>y.includes(v.type.name));o.ensureMarks(j)}}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&&Gi(o.doc,n.from-1)&&(!t.joinPredicate||t.joinPredicate(s,f))&&o.join(n.from-1)},undoable:t.undoable})}var D6=t=>"touches"in t,L6=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,s,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),(s=t==null?void 0:t.options)!=null&&s.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"),s=e.includes("bottom"),a=e.includes("left"),i=e.includes("right");n&&(t.style.top="0"),s&&(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,D6(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:s,height:a}=this.calculateNewDimensions(this.activeHandle,t,e),i=this.applyConstraints(s,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 s=this.startWidth,a=this.startHeight;const i=t.includes("right"),o=t.includes("left"),c=t.includes("bottom"),u=t.includes("top");return i?s=this.startWidth+e:o&&(s=this.startWidth-e),c?a=this.startHeight+n:u&&(a=this.startHeight-n),(t==="right"||t==="left")&&(s=this.startWidth+(i?e:-e)),(t==="top"||t==="bottom")&&(a=this.startHeight+(c?n:-n)),this.preserveAspectRatio||this.isShiftKeyPressed?this.applyAspectRatio(s,a,t):{width:s,height:a}}applyConstraints(t,e,n){var s,a,i,o;if(!n){let h=Math.max(this.minSize.width,t),f=Math.max(this.minSize.height,e);return(s=this.maxSize)!=null&&s.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 s=n==="left"||n==="right",a=n==="top"||n==="bottom";return s?{width:t,height:t/this.aspectRatio}:a?{width:e*this.aspectRatio,height:e}:{width:t,height:t/this.aspectRatio}}};function _6(t,e){const{selection:n}=t,{$from:s}=n;if(n instanceof Qe){const i=s.index();return s.parent.canReplaceWith(i,i+1,e)}let a=s.depth;for(;a>=0;){const i=s.index(a);if(s.node(a).contentMatchAt(i).matchType(e))return!0;a-=1}return!1}function z6(t){return t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&")}var F6={};B0(F6,{createAtomBlockMarkdownSpec:()=>$6,createBlockMarkdownSpec:()=>B6,createInlineMarkdownSpec:()=>rC,parseAttributes:()=>G0,parseIndentedBlocks:()=>Sx,renderNestedMarkdownContent:()=>Y0,serializeAttributes:()=>J0});function G0(t){if(!(t!=null&&t.trim()))return{};const e={},n=[],s=t.replace(/["']([^"']*)["']/g,h=>(n.push(h),`__QUOTED_${n.length-1}__`)),a=s.match(/(?:^|\s)\.([a-zA-Z][\w-]*)/g);if(a){const h=a.map(f=>f.trim().slice(1));e.class=h.join(" ")}const i=s.match(/(?:^|\s)#([a-zA-Z][\w-]*)/);i&&(e.id=i[1]);const o=/([a-zA-Z][\w-]*)\s*=\s*(__QUOTED_\d+__)/g;Array.from(s.matchAll(o)).forEach(([,h,f])=>{var m;const g=parseInt(((m=f.match(/__QUOTED_(\d+)__/))==null?void 0:m[1])||"0",10),y=n[g];y&&(e[h]=y.slice(1,-1))});const u=s.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 J0(t){if(!t||Object.keys(t).length===0)return"";const e=[];return t.class&&String(t.class).split(/\s+/).filter(Boolean).forEach(s=>e.push(`.${s}`)),t.id&&e.push(`#${t.id}`),Object.entries(t).forEach(([n,s])=>{n==="class"||n==="id"||(s===!0?e.push(n):s!==!1&&s!=null&&e.push(`${n}="${String(s)}"`))}),e.join(" ")}function $6(t){const{nodeName:e,name:n,parseAttributes:s=G0,serializeAttributes:a=J0,defaultAttributes:i={},requiredAttributes:o=[],allowedAttributes:c}=t,u=n||e,h=f=>{if(!c)return f;const m={};return c.forEach(g=>{g in f&&(m[g]=f[g])}),m};return{parseMarkdown:(f,m)=>{const g={...i,...f.attributes};return m.createNode(e,g,[])},markdownTokenizer:{name:e,level:"block",start(f){var m;const g=new RegExp(`^:::${u}(?:\\s|$)`,"m"),y=(m=f.match(g))==null?void 0:m.index;return y!==void 0?y:-1},tokenize(f,m,g){const y=new RegExp(`^:::${u}(?:\\s+\\{([^}]*)\\})?\\s*:::(?:\\n|$)`),N=f.match(y);if(!N)return;const j=N[1]||"",v=s(j);if(!o.find(C=>!(C in v)))return{type:e,raw:N[0],attributes:v}}},renderMarkdown:f=>{const m=h(f.attrs||{}),g=a(m),y=g?` {${g}}`:"";return`:::${u}${y} :::`}}}function B6(t){const{nodeName:e,name:n,getContent:s,parseAttributes:a=G0,serializeAttributes:i=J0,defaultAttributes:o={},content:c="block",allowedAttributes:u}=t,h=n||e,f=m=>{if(!u)return m;const g={};return u.forEach(y=>{y in m&&(g[y]=m[y])}),g};return{parseMarkdown:(m,g)=>{let y;if(s){const j=s(m);y=typeof j=="string"?[{type:"text",text:j}]:j}else c==="block"?y=g.parseChildren(m.tokens||[]):y=g.parseInline(m.tokens||[]);const N={...o,...m.attributes};return g.createNode(e,N,y)},markdownTokenizer:{name:e,level:"block",start(m){var g;const y=new RegExp(`^:::${h}`,"m"),N=(g=m.match(y))==null?void 0:g.index;return N!==void 0?N:-1},tokenize(m,g,y){var N;const j=new RegExp(`^:::${h}(?:\\s+\\{([^}]*)\\})?\\s*\\n`),v=m.match(j);if(!v)return;const[k,C=""]=v,E=a(C);let M=1;const P=k.length;let H="";const L=/^:::([\w-]*)(\s.*)?/gm,R=m.slice(P);for(L.lastIndex=0;;){const O=L.exec(R);if(O===null)break;const se=O.index,ie=O[1];if(!((N=O[2])!=null&&N.endsWith(":::"))){if(ie)M+=1;else if(M-=1,M===0){const z=R.slice(0,se);H=z.trim();const ce=m.slice(0,P+se+O[0].length);let me=[];if(H)if(c==="block")for(me=y.blockTokens(z),me.forEach(_=>{_.text&&(!_.tokens||_.tokens.length===0)&&(_.tokens=y.inlineTokens(_.text))});me.length>0;){const _=me[me.length-1];if(_.type==="paragraph"&&(!_.text||_.text.trim()===""))me.pop();else break}else me=y.inlineTokens(H);return{type:e,raw:ce,attributes:E,content:H,tokens:me}}}}}},renderMarkdown:(m,g)=>{const y=f(m.attrs||{}),N=i(y),j=N?` {${N}}`:"",v=g.renderChildren(m.content||[],` + +`);return`:::${h}${j} + +${v} + +:::`}}}function V6(t){if(!t.trim())return{};const e={},n=/(\w+)=(?:"([^"]*)"|'([^']*)')/g;let s=n.exec(t);for(;s!==null;){const[,a,i,o]=s;e[a]=i||o,s=n.exec(t)}return e}function H6(t){return Object.entries(t).filter(([,e])=>e!=null).map(([e,n])=>`${e}="${n}"`).join(" ")}function rC(t){const{nodeName:e,name:n,getContent:s,parseAttributes:a=V6,serializeAttributes:i=H6,defaultAttributes:o={},selfClosing:c=!1,allowedAttributes:u}=t,h=n||e,f=g=>{if(!u)return g;const y={};return u.forEach(N=>{const j=typeof N=="string"?N:N.name,v=typeof N=="string"?void 0:N.skipIfDefault;if(j in g){const k=g[j];if(v!==void 0&&k===v)return;y[j]=k}}),y},m=h.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return{parseMarkdown:(g,y)=>{const N={...o,...g.attributes};if(c)return y.createNode(e,N);const j=s?s(g):g.content||"";return j?y.createNode(e,N,[y.createTextNode(j)]):y.createNode(e,N,[])},markdownTokenizer:{name:e,level:"inline",start(g){const y=c?new RegExp(`\\[${m}\\s*[^\\]]*\\]`):new RegExp(`\\[${m}\\s*[^\\]]*\\][\\s\\S]*?\\[\\/${m}\\]`),N=g.match(y),j=N==null?void 0:N.index;return j!==void 0?j:-1},tokenize(g,y,N){const j=c?new RegExp(`^\\[${m}\\s*([^\\]]*)\\]`):new RegExp(`^\\[${m}\\s*([^\\]]*)\\]([\\s\\S]*?)\\[\\/${m}\\]`),v=g.match(j);if(!v)return;let k="",C="";if(c){const[,M]=v;C=M}else{const[,M,P]=v;C=M,k=P||""}const E=a(C.trim());return{type:e,raw:v[0],content:k.trim(),attributes:E}}},renderMarkdown:g=>{let y="";s?y=s(g):g.content&&g.content.length>0&&(y=g.content.filter(k=>k.type==="text").map(k=>k.text).join(""));const N=f(g.attrs||{}),j=i(N),v=j?` ${j}`:"";return c?`[${h}${v}]`:`[${h}${v}]${y}[/${h}]`}}}function Sx(t,e,n){var s,a,i,o;const c=t.split(` +`),u=[];let h="",f=0;const m=e.baseIndentSize||2;for(;f0)break;if(g.trim()===""){f+=1,h=`${h}${g} +`;continue}else return}const N=e.extractItemData(y),{indentLevel:j,mainContent:v}=N;h=`${h}${g} +`;const k=[v];for(f+=1;fse.trim()!=="");if(L===-1)break;if((((a=(s=c[f+1+L].match(/^(\s*)/))==null?void 0:s[1])==null?void 0:a.length)||0)>j){k.push(P),h=`${h}${P} +`,f+=1;continue}else break}if((((o=(i=P.match(/^(\s*)/))==null?void 0:i[1])==null?void 0:o.length)||0)>j)k.push(P),h=`${h}${P} +`,f+=1;else break}let C;const E=k.slice(1);if(E.length>0){const P=E.map(H=>H.slice(j+m)).join(` +`);P.trim()&&(e.customNestedParser?C=e.customNestedParser(P):C=n.blockTokens(P))}const M=e.createToken(N,C);u.push(M)}if(u.length!==0)return{items:u,raw:h}}function Y0(t,e,n,s){if(!t||!Array.isArray(t.content))return"";const a=typeof n=="function"?n(s):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(g=>g?e.indent(g):"").join(` +`);u.push(m)}}),u.join(` +`)}function W6(t,e,n={}){const{state:s}=e,{doc:a,tr:i}=s,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 g=!1;if(Object.keys(n).forEach(y=>{n[y]!==m.attrs[y]&&(g=!0)}),g){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 An=class aC extends q0{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 Ho(t){return new S6({find:t.find,handler:({state:e,range:n,match:s,pasteEvent:a})=>{const i=St(t.getAttributes,void 0,s,a);if(i===!1||i===null)return null;const{tr:o}=e,c=s[s.length-1],u=s[0];let h=n.to;if(c){const f=u.search(/\S/),m=n.from+u.indexOf(c),g=m+c.length;if(K0(n.from,n.to,e.doc).filter(N=>N.mark.type.excluded.find(v=>v===t.type&&v!==N.mark.type)).filter(N=>N.to>m).length)return null;gn.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:U6,getOwnPropertySymbols:K6}=Object,{hasOwnProperty:q6}=Object.prototype;function wg(t,e){return function(s,a,i){return t(s,a,i)&&e(s,a,i)}}function ch(t){return function(n,s,a){if(!n||!s||typeof n!="object"||typeof s!="object")return t(n,s,a);const{cache:i}=a,o=i.get(n),c=i.get(s);if(o&&c)return o===s&&c===n;i.set(n,s),i.set(s,n);const u=t(n,s,a);return i.delete(n),i.delete(s),u}}function G6(t){return t!=null?t[Symbol.toStringTag]:void 0}function IN(t){return U6(t).concat(K6(t))}const J6=Object.hasOwn||((t,e)=>q6.call(t,e));function Qo(t,e){return t===e||!t&&!e&&t!==t&&e!==e}const Y6="__v",Q6="__o",X6="_owner",{getOwnPropertyDescriptor:RN,keys:PN}=Object;function Z6(t,e){return t.byteLength===e.byteLength&&Yh(new Uint8Array(t),new Uint8Array(e))}function e_(t,e,n){let s=t.length;if(e.length!==s)return!1;for(;s-- >0;)if(!n.equals(t[s],e[s],s,s,t,e,n))return!1;return!0}function t_(t,e){return t.byteLength===e.byteLength&&Yh(new Uint8Array(t.buffer,t.byteOffset,t.byteLength),new Uint8Array(e.buffer,e.byteOffset,e.byteLength))}function n_(t,e){return Qo(t.getTime(),e.getTime())}function s_(t,e){return t.name===e.name&&t.message===e.message&&t.cause===e.cause&&t.stack===e.stack}function r_(t,e){return t===e}function ON(t,e,n){const s=t.size;if(s!==e.size)return!1;if(!s)return!0;const a=new Array(s),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 g=o.value,y=c.value;if(n.equals(g[0],y[0],u,m,t,e,n)&&n.equals(g[1],y[1],g[0],y[0],t,e,n)){f=a[m]=!0;break}m++}if(!f)return!1;u++}return!0}const a_=Qo;function i_(t,e,n){const s=PN(t);let a=s.length;if(PN(e).length!==a)return!1;for(;a-- >0;)if(!iC(t,e,n,s[a]))return!1;return!0}function Xc(t,e,n){const s=IN(t);let a=s.length;if(IN(e).length!==a)return!1;let i,o,c;for(;a-- >0;)if(i=s[a],!iC(t,e,n,i)||(o=RN(t,i),c=RN(e,i),(o||c)&&(!o||!c||o.configurable!==c.configurable||o.enumerable!==c.enumerable||o.writable!==c.writable)))return!1;return!0}function o_(t,e){return Qo(t.valueOf(),e.valueOf())}function l_(t,e){return t.source===e.source&&t.flags===e.flags}function DN(t,e,n){const s=t.size;if(s!==e.size)return!1;if(!s)return!0;const a=new Array(s),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 Yh(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 c_(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,s){return(s===X6||s===Q6||s===Y6)&&(t.$$typeof||e.$$typeof)?!0:J6(e,s)&&n.equals(t[s],e[s],s,s,t,e,n)}const d_="[object ArrayBuffer]",u_="[object Arguments]",h_="[object Boolean]",f_="[object DataView]",p_="[object Date]",m_="[object Error]",g_="[object Map]",x_="[object Number]",y_="[object Object]",b_="[object RegExp]",v_="[object Set]",N_="[object String]",w_={"[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},j_="[object URL]",k_=Object.prototype.toString;function S_({areArrayBuffersEqual:t,areArraysEqual:e,areDataViewsEqual:n,areDatesEqual:s,areErrorsEqual:a,areFunctionsEqual:i,areMapsEqual:o,areNumbersEqual:c,areObjectsEqual:u,arePrimitiveWrappersEqual:h,areRegExpsEqual:f,areSetsEqual:m,areTypedArraysEqual:g,areUrlsEqual:y,unknownTagComparators:N}){return function(v,k,C){if(v===k)return!0;if(v==null||k==null)return!1;const E=typeof v;if(E!==typeof k)return!1;if(E!=="object")return E==="number"?c(v,k,C):E==="function"?i(v,k,C):!1;const M=v.constructor;if(M!==k.constructor)return!1;if(M===Object)return u(v,k,C);if(Array.isArray(v))return e(v,k,C);if(M===Date)return s(v,k,C);if(M===RegExp)return f(v,k,C);if(M===Map)return o(v,k,C);if(M===Set)return m(v,k,C);const P=k_.call(v);if(P===p_)return s(v,k,C);if(P===b_)return f(v,k,C);if(P===g_)return o(v,k,C);if(P===v_)return m(v,k,C);if(P===y_)return typeof v.then!="function"&&typeof k.then!="function"&&u(v,k,C);if(P===j_)return y(v,k,C);if(P===m_)return a(v,k,C);if(P===u_)return u(v,k,C);if(w_[P])return g(v,k,C);if(P===d_)return t(v,k,C);if(P===f_)return n(v,k,C);if(P===h_||P===x_||P===N_)return h(v,k,C);if(N){let H=N[P];if(!H){const L=G6(v);L&&(H=N[L])}if(H)return H(v,k,C)}return!1}}function C_({circular:t,createCustomConfig:e,strict:n}){let s={areArrayBuffersEqual:Z6,areArraysEqual:n?Xc:e_,areDataViewsEqual:t_,areDatesEqual:n_,areErrorsEqual:s_,areFunctionsEqual:r_,areMapsEqual:n?wg(ON,Xc):ON,areNumbersEqual:a_,areObjectsEqual:n?Xc:i_,arePrimitiveWrappersEqual:o_,areRegExpsEqual:l_,areSetsEqual:n?wg(DN,Xc):DN,areTypedArraysEqual:n?wg(Yh,Xc):Yh,areUrlsEqual:c_,unknownTagComparators:void 0};if(e&&(s=Object.assign({},s,e(s))),t){const a=ch(s.areArraysEqual),i=ch(s.areMapsEqual),o=ch(s.areObjectsEqual),c=ch(s.areSetsEqual);s=Object.assign({},s,{areArraysEqual:a,areMapsEqual:i,areObjectsEqual:o,areSetsEqual:c})}return s}function E_(t){return function(e,n,s,a,i,o,c){return t(e,n,c)}}function T_({circular:t,comparator:e,createState:n,equals:s,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:s,meta:f,strict:a})};if(t)return function(c,u){return e(c,u,{cache:new WeakMap,equals:s,meta:void 0,strict:a})};const i={cache:void 0,equals:s,meta:void 0,strict:a};return function(c,u){return e(c,u,i)}}const M_=Yi();Yi({strict:!0});Yi({circular:!0});Yi({circular:!0,strict:!0});Yi({createInternalComparator:()=>Qo});Yi({strict:!0,createInternalComparator:()=>Qo});Yi({circular:!0,createInternalComparator:()=>Qo});Yi({circular:!0,createInternalComparator:()=>Qo,strict:!0});function Yi(t={}){const{circular:e=!1,createInternalComparator:n,createState:s,strict:a=!1}=t,i=C_(t),o=S_(i),c=n?n(o):E_(o);return T_({circular:e,comparator:o,createState:s,equals:c,strict:a})}var jg={exports:{}},kg={};/** + * @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 LN;function A_(){if(LN)return kg;LN=1;var t=$d(),e=Jk();function n(h,f){return h===f&&(h!==0||1/h===1/f)||h!==h&&f!==f}var s=typeof Object.is=="function"?Object.is:n,a=e.useSyncExternalStore,i=t.useRef,o=t.useEffect,c=t.useMemo,u=t.useDebugValue;return kg.useSyncExternalStoreWithSelector=function(h,f,m,g,y){var N=i(null);if(N.current===null){var j={hasValue:!1,value:null};N.current=j}else j=N.current;N=c(function(){function k(H){if(!C){if(C=!0,E=H,H=g(H),y!==void 0&&j.hasValue){var L=j.value;if(y(L,H))return M=L}return M=H}if(L=M,s(E,H))return L;var R=g(H);return y!==void 0&&y(L,R)?(E=H,L):(E=H,M=R)}var C=!1,E,M,P=m===void 0?null:m;return[function(){return k(f())},P===null?void 0:function(){return k(P())}]},[f,m,g,y]);var v=a(h,N[0],N[1]);return o(function(){j.hasValue=!0,j.value=v},[v]),u(v),v},kg}var _N;function I_(){return _N||(_N=1,jg.exports=A_()),jg.exports}var R_=I_(),P_=(...t)=>e=>{t.forEach(n=>{typeof n=="function"?n(e):n&&(n.current=e)})},O_=({contentComponent:t})=>{const e=Yk.useSyncExternalStore(t.subscribe,t.getSnapshot,t.getServerSnapshot);return r.jsx(r.Fragment,{children:Object.values(e)})};function D_(){const t=new Set;let e={};return{subscribe(n){return t.add(n),()=>{t.delete(n)}},getSnapshot(){return e},getServerSnapshot(){return e},setRenderer(n,s){e={...e,[n]:Uw.createPortal(s.reactElement,s.element,n)},t.forEach(a=>a())},removeRenderer(n){const s={...e};delete s[n],e=s,t.forEach(a=>a())}}}var L_=class extends Cs.Component{constructor(t){var e;super(t),this.editorContentRef=Cs.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=D_(),this.state.hasContentComponentInitialized||(this.unsubscribeToContentComponent=e.contentComponent.subscribe(()=>{this.setState(s=>s.hasContentComponentInitialized?s:{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 r.jsxs(r.Fragment,{children:[r.jsx("div",{ref:P_(e,this.editorContentRef),...n}),(t==null?void 0:t.contentComponent)&&r.jsx(O_,{contentComponent:t.contentComponent})]})}},__=b.forwardRef((t,e)=>{const n=Cs.useMemo(()=>Math.floor(Math.random()*4294967295).toString(),[t.editor]);return Cs.createElement(L_,{key:n,innerRef:e,...t})}),oC=Cs.memo(__),z_=typeof window<"u"?b.useLayoutEffect:b.useEffect,F_=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(s=>s())},n=this.editor;return n.on("transaction",e),()=>{n.off("transaction",e)}}}};function $_(t){var e;const[n]=b.useState(()=>new F_(t.editor)),s=R_.useSyncExternalStoreWithSelector(n.subscribe,n.getSnapshot,n.getServerSnapshot,t.selector,(e=t.equalityFn)!=null?e:M_);return z_(()=>n.watch(t.editor),[t.editor,n]),b.useDebugValue(s),s}var B_=!1,Cx=typeof window>"u",V_=Cx||!!(typeof window<"u"&&window.next),H_=class lC{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?Cx||V_?null:this.createEditor():(this.options.current.immediatelyRender,this.options.current.immediatelyRender?this.createEditor():null)}createEditor(){const e={...this.options.current,onBeforeCreate:(...s)=>{var a,i;return(i=(a=this.options.current).onBeforeCreate)==null?void 0:i.call(a,...s)},onBlur:(...s)=>{var a,i;return(i=(a=this.options.current).onBlur)==null?void 0:i.call(a,...s)},onCreate:(...s)=>{var a,i;return(i=(a=this.options.current).onCreate)==null?void 0:i.call(a,...s)},onDestroy:(...s)=>{var a,i;return(i=(a=this.options.current).onDestroy)==null?void 0:i.call(a,...s)},onFocus:(...s)=>{var a,i;return(i=(a=this.options.current).onFocus)==null?void 0:i.call(a,...s)},onSelectionUpdate:(...s)=>{var a,i;return(i=(a=this.options.current).onSelectionUpdate)==null?void 0:i.call(a,...s)},onTransaction:(...s)=>{var a,i;return(i=(a=this.options.current).onTransaction)==null?void 0:i.call(a,...s)},onUpdate:(...s)=>{var a,i;return(i=(a=this.options.current).onUpdate)==null?void 0:i.call(a,...s)},onContentError:(...s)=>{var a,i;return(i=(a=this.options.current).onContentError)==null?void 0:i.call(a,...s)},onDrop:(...s)=>{var a,i;return(i=(a=this.options.current).onDrop)==null?void 0:i.call(a,...s)},onPaste:(...s)=>{var a,i;return(i=(a=this.options.current).onPaste)==null?void 0:i.call(a,...s)},onDelete:(...s)=>{var a,i;return(i=(a=this.options.current).onDelete)==null?void 0:i.call(a,...s)}};return new O6(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(s=>["onCreate","onBeforeCreate","onDestroy","onUpdate","onTransaction","onFocus","onBlur","onSelectionUpdate","onContentError","onDrop","onPaste"].includes(s)?!0:s==="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[s]===n[s])}onRender(e){return()=>(this.isComponentMounted=!0,clearTimeout(this.scheduledDestructionTimeout),this.editor&&!this.editor.isDestroyed&&e.length===0?lC.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((s,a)=>s===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 W_(t={},e=[]){const n=b.useRef(t);n.current=t;const[s]=b.useState(()=>new H_(n)),a=Yk.useSyncExternalStore(s.subscribe,s.getEditor,s.getServerSnapshot);return b.useDebugValue(a),b.useEffect(s.onRender(e)),$_({editor:a,selector:({transactionNumber:i})=>t.shouldRerenderOnTransaction===!1||t.shouldRerenderOnTransaction===void 0?null:t.immediatelyRender&&i===0?0:i+1}),a}var cC=b.createContext({editor:null});cC.Consumer;var U_=b.createContext({onDragStart:()=>{},nodeViewContentChildren:void 0,nodeViewContentRef:()=>{}}),K_=()=>b.useContext(U_);Cs.forwardRef((t,e)=>{const{onDragStart:n}=K_(),s=t.as||"div";return r.jsx(s,{...t,ref:e,"data-node-view-wrapper":"",onDragStart:n,style:{whiteSpace:"normal",...t.style}})});Cs.createContext({markViewContentRef:()=>{}});var Q0=b.createContext({get editor(){throw new Error("useTiptap must be used within a provider")}});Q0.displayName="TiptapContext";var q_=()=>b.useContext(Q0);function dC({editor:t,instance:e,children:n}){const s=t??e;if(!s)throw new Error("Tiptap: An editor instance is required. Pass a non-null `editor` prop.");const a=b.useMemo(()=>({editor:s}),[s]),i=b.useMemo(()=>({editor:s}),[s]);return r.jsx(cC.Provider,{value:i,children:r.jsx(Q0.Provider,{value:a,children:n})})}dC.displayName="Tiptap";function uC({...t}){const{editor:e}=q_();return r.jsx(oC,{editor:e,...t})}uC.displayName="Tiptap.Content";Object.assign(dC,{Content:uC});var Qh=(t,e)=>{if(t==="slot")return 0;if(t instanceof Function)return t(e);const{children:n,...s}=e??{};if(t==="svg")throw new Error("SVG elements are not supported in the JSX syntax, use the array syntax instead");return[t,s,n]},G_=/^\s*>\s$/,J_=An.create({name:"blockquote",addOptions(){return{HTMLAttributes:{}}},content:"block+",group:"block",defining:!0,parseHTML(){return[{tag:"blockquote"}]},renderHTML({HTMLAttributes:t}){return Qh("blockquote",{...Et(this.options.HTMLAttributes,t),children:Qh("slot",{})})},parseMarkdown:(t,e)=>e.createNode("blockquote",void 0,e.parseChildren(t.tokens||[])),renderMarkdown:(t,e)=>{if(!t.content)return"";const n=">",s=[];return t.content.forEach(a=>{const c=e.renderChildren([a]).split(` +`).map(u=>u.trim()===""?n:`${n} ${u}`);s.push(c.join(` +`))}),s.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[Ql({find:G_,type:this.type})]}}),Y_=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))$/,Q_=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))/g,X_=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))$/,Z_=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))/g,e7=Yo.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 Qh("strong",{...Et(this.options.HTMLAttributes,t),children:Qh("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[Yl({find:Y_,type:this.type}),Yl({find:X_,type:this.type})]},addPasteRules(){return[Ho({find:Q_,type:this.type}),Ho({find:Z_,type:this.type})]}}),t7=/(^|[^`])`([^`]+)`(?!`)$/,n7=/(^|[^`])`([^`]+)`(?!`)/g,s7=Yo.create({name:"code",addOptions(){return{HTMLAttributes:{}}},excludes:"_",code:!0,exitable:!0,parseHTML(){return[{tag:"code"}]},renderHTML({HTMLAttributes:t}){return["code",Et(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[Yl({find:t7,type:this.type})]},addPasteRules(){return[Ho({find:n7,type:this.type})]}}),Sg=4,r7=/^```([a-z]+)?[\s\n]$/,a7=/^~~~([a-z]+)?[\s\n]$/,i7=An.create({name:"codeBlock",addOptions(){return{languageClassPrefix:"language-",exitOnTripleEnter:!0,exitOnArrowDown:!0,defaultLanguage:null,enableTabIndentation:!1,tabSize:Sg,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",Et(this.options.HTMLAttributes,e),["code",{class:t.attrs.language?this.options.languageClassPrefix+t.attrs.language:null},0]]},markdownTokenName:"code",parseMarkdown:(t,e)=>{var n,s;return((n=t.raw)==null?void 0:n.startsWith("```"))===!1&&((s=t.raw)==null?void 0:s.startsWith("~~~"))===!1&&t.codeBlockStyle!=="indented"?[]:e.createNode("codeBlock",{language:t.lang||null},t.text?[e.createTextNode(t.text)]:[])},renderMarkdown:(t,e)=>{var n;let s="";const a=((n=t.attrs)==null?void 0:n.language)||"";return t.content?s=[`\`\`\`${a}`,e.renderChildren(t.content),"```"].join(` +`):s=`\`\`\`${a} + +\`\`\``,s},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:Sg,{state:s}=t,{selection:a}=s,{$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=s.doc.textBetween(h,f,` +`,` +`).split(` +`).map(N=>c+N).join(` +`);return u.replaceWith(h,f,s.schema.text(y)),!0})},"Shift-Tab":({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;const n=(e=this.options.tabSize)!=null?e:Sg,{state:s}=t,{selection:a}=s,{$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=s.doc.textBetween(f,m,` +`,` +`).split(` +`);let N=0,j=0;const v=h-f;for(let H=0;H=v){N=H;break}j+=y[H].length+1}const C=((u=y[N].match(/^ */))==null?void 0:u[0])||"",E=Math.min(C.length,n);if(E===0)return!0;let M=f;for(let H=0;H{const{from:u,to:h}=a,g=s.doc.textBetween(u,h,` +`,` +`).split(` +`).map(y=>{var N;const j=((N=y.match(/^ */))==null?void 0:N[0])||"",v=Math.min(j.length,n);return y.slice(v)}).join(` +`);return c.replaceWith(u,h,s.schema.text(g)),!0})},Enter:({editor:t})=>{if(!this.options.exitOnTripleEnter)return!1;const{state:e}=t,{selection:n}=e,{$from:s,empty:a}=n;if(!a||s.parent.type!==this.type)return!1;const i=s.parentOffset===s.parent.nodeSize-2,o=s.parent.textContent.endsWith(` + +`);return!i||!o?!1:t.chain().command(({tr:c})=>(c.delete(s.pos-2,s.pos),!0)).exitCode().run()},ArrowDown:({editor:t})=>{if(!this.options.exitOnArrowDown)return!1;const{state:e}=t,{selection:n,doc:s}=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:s.nodeAt(c)?t.commands.command(({tr:h})=>(h.setSelection(nt.near(s.resolve(c))),!0)):t.commands.exitCode()}}},addInputRules(){return[kx({find:r7,type:this.type,getAttributes:t=>({language:t[1]})}),kx({find:a7,type:this.type,getAttributes:t=>({language:t[1]})})]},addProseMirrorPlugins(){return[new qt({key:new rn("codeBlockVSCodeHandler"),props:{handlePaste:(t,e)=>{if(!e.clipboardData||this.editor.isActive(this.type.name))return!1;const n=e.clipboardData.getData("text/plain"),s=e.clipboardData.getData("vscode-editor-data"),a=s?JSON.parse(s):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(Xe.near(o.doc.resolve(Math.max(0,o.selection.from-2)))),o.setMeta("paste",!0),t.dispatch(o),!0}}})]}}),o7=An.create({name:"doc",topNode:!0,content:"block+",renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,` + +`):""}),l7=An.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",Et(this.options.HTMLAttributes,t)]},renderText(){return` +`},renderMarkdown:()=>` +`,parseMarkdown:()=>({type:"hardBreak"}),addCommands(){return{setHardBreak:()=>({commands:t,chain:e,state:n,editor:s})=>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}=s.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(g=>c.includes(g.type.name));h.ensureMarks(m)}return!0}).run()})])}},addKeyboardShortcuts(){return{"Mod-Enter":()=>this.editor.commands.setHardBreak(),"Shift-Enter":()=>this.editor.commands.setHardBreak()}}}),c7=An.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]}`,Et(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 s=(n=t.attrs)!=null&&n.level?parseInt(t.attrs.level,10):1,a="#".repeat(s);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=>kx({find:new RegExp(`^(#{${Math.min(...this.options.levels)},${t}})\\s$`),type:this.type,getAttributes:{level:t}}))}}),d7=An.create({name:"horizontalRule",addOptions(){return{HTMLAttributes:{},nextNodeType:"paragraph"}},group:"block",parseHTML(){return[{tag:"hr"}]},renderHTML({HTMLAttributes:t}){return["hr",Et(this.options.HTMLAttributes,t)]},markdownTokenName:"hr",parseMarkdown:(t,e)=>e.createNode("horizontalRule"),renderMarkdown:()=>"---",addCommands(){return{setHorizontalRule:()=>({chain:t,state:e})=>{if(!_6(e,e.schema.nodes[this.name]))return!1;const{selection:n}=e,{$to:s}=n,a=t();return $2(n)?a.insertContentAt(s.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(Xe.create(o.doc,u.pos+1)):u.nodeAfter.isBlock?o.setSelection(Qe.create(o.doc,u.pos)):o.setSelection(Xe.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(Xe.create(o.doc,h+1)))}o.scrollIntoView()}return!0}).run()}}},addInputRules(){return[sC({find:/^(?:---|—-|___\s|\*\*\*\s)$/,type:this.type})]}}),u7=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))$/,h7=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))/g,f7=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))$/,p7=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))/g,m7=Yo.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",Et(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[Yl({find:u7,type:this.type}),Yl({find:f7,type:this.type})]},addPasteRules(){return[Ho({find:h7,type:this.type}),Ho({find:p7,type:this.type})]}});const g7="aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3nlop4pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2o0dyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rckmsd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0stone5umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5mögensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2olterskluwer11odside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2",x7="ελ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",Ex="numeric",Tx="ascii",Mx="alpha",gd="asciinumeric",rd="alphanumeric",Ax="domain",hC="emoji",y7="scheme",b7="slashscheme",Cg="whitespace";function v7(t,e){return t in e||(e[t]=[]),e[t]}function To(t,e,n){e[Ex]&&(e[gd]=!0,e[rd]=!0),e[Tx]&&(e[gd]=!0,e[Mx]=!0),e[gd]&&(e[rd]=!0),e[Mx]&&(e[rd]=!0),e[rd]&&(e[Ax]=!0),e[hC]&&(e[Ax]=!0);for(const s in e){const a=v7(s,n);a.indexOf(t)<0&&a.push(t)}}function N7(t,e){const n={};for(const s in e)e[s].indexOf(t)>=0&&(n[s]=!0);return n}function zs(t=null){this.j={},this.jr=[],this.jd=null,this.t=t}zs.groups={};zs.prototype={accepts(){return!!this.t},go(t){const e=this,n=e.j[t];if(n)return n;for(let s=0;st.ta(e,n,s,a),hn=(t,e,n,s,a)=>t.tr(e,n,s,a),zN=(t,e,n,s,a)=>t.ts(e,n,s,a),Me=(t,e,n,s,a)=>t.tt(e,n,s,a),Da="WORD",Ix="UWORD",fC="ASCIINUMERICAL",pC="ALPHANUMERICAL",Ld="LOCALHOST",Rx="TLD",Px="UTLD",kh="SCHEME",Rl="SLASH_SCHEME",X0="NUM",Ox="WS",Z0="NL",xd="OPENBRACE",yd="CLOSEBRACE",Xh="OPENBRACKET",Zh="CLOSEBRACKET",ef="OPENPAREN",tf="CLOSEPAREN",nf="OPENANGLEBRACKET",sf="CLOSEANGLEBRACKET",rf="FULLWIDTHLEFTPAREN",af="FULLWIDTHRIGHTPAREN",of="LEFTCORNERBRACKET",lf="RIGHTCORNERBRACKET",cf="LEFTWHITECORNERBRACKET",df="RIGHTWHITECORNERBRACKET",uf="FULLWIDTHLESSTHAN",hf="FULLWIDTHGREATERTHAN",ff="AMPERSAND",pf="APOSTROPHE",mf="ASTERISK",ji="AT",gf="BACKSLASH",xf="BACKTICK",yf="CARET",Ci="COLON",ey="COMMA",bf="DOLLAR",Xr="DOT",vf="EQUALS",ty="EXCLAMATION",dr="HYPHEN",bd="PERCENT",Nf="PIPE",wf="PLUS",jf="POUND",vd="QUERY",ny="QUOTE",mC="FULLWIDTHMIDDLEDOT",sy="SEMI",Zr="SLASH",Nd="TILDE",kf="UNDERSCORE",gC="EMOJI",Sf="SYM";var xC=Object.freeze({__proto__:null,ALPHANUMERICAL:pC,AMPERSAND:ff,APOSTROPHE:pf,ASCIINUMERICAL:fC,ASTERISK:mf,AT:ji,BACKSLASH:gf,BACKTICK:xf,CARET:yf,CLOSEANGLEBRACKET:sf,CLOSEBRACE:yd,CLOSEBRACKET:Zh,CLOSEPAREN:tf,COLON:Ci,COMMA:ey,DOLLAR:bf,DOT:Xr,EMOJI:gC,EQUALS:vf,EXCLAMATION:ty,FULLWIDTHGREATERTHAN:hf,FULLWIDTHLEFTPAREN:rf,FULLWIDTHLESSTHAN:uf,FULLWIDTHMIDDLEDOT:mC,FULLWIDTHRIGHTPAREN:af,HYPHEN:dr,LEFTCORNERBRACKET:of,LEFTWHITECORNERBRACKET:cf,LOCALHOST:Ld,NL:Z0,NUM:X0,OPENANGLEBRACKET:nf,OPENBRACE:xd,OPENBRACKET:Xh,OPENPAREN:ef,PERCENT:bd,PIPE:Nf,PLUS:wf,POUND:jf,QUERY:vd,QUOTE:ny,RIGHTCORNERBRACKET:lf,RIGHTWHITECORNERBRACKET:df,SCHEME:kh,SEMI:sy,SLASH:Zr,SLASH_SCHEME:Rl,SYM:Sf,TILDE:Nd,TLD:Rx,UNDERSCORE:kf,UTLD:Px,UWORD:Ix,WORD:Da,WS:Ox});const Pa=/[a-z]/,Zc=new RegExp("\\p{L}","u"),Eg=new RegExp("\\p{Emoji}","u"),Oa=/\d/,Tg=/\s/,FN="\r",Mg=` +`,w7="️",j7="‍",Ag="";let dh=null,uh=null;function k7(t=[]){const e={};zs.groups=e;const n=new zs;dh==null&&(dh=$N(g7)),uh==null&&(uh=$N(x7)),Me(n,"'",pf),Me(n,"{",xd),Me(n,"}",yd),Me(n,"[",Xh),Me(n,"]",Zh),Me(n,"(",ef),Me(n,")",tf),Me(n,"<",nf),Me(n,">",sf),Me(n,"(",rf),Me(n,")",af),Me(n,"「",of),Me(n,"」",lf),Me(n,"『",cf),Me(n,"』",df),Me(n,"<",uf),Me(n,">",hf),Me(n,"&",ff),Me(n,"*",mf),Me(n,"@",ji),Me(n,"`",xf),Me(n,"^",yf),Me(n,":",Ci),Me(n,",",ey),Me(n,"$",bf),Me(n,".",Xr),Me(n,"=",vf),Me(n,"!",ty),Me(n,"-",dr),Me(n,"%",bd),Me(n,"|",Nf),Me(n,"+",wf),Me(n,"#",jf),Me(n,"?",vd),Me(n,'"',ny),Me(n,"/",Zr),Me(n,";",sy),Me(n,"~",Nd),Me(n,"_",kf),Me(n,"\\",gf),Me(n,"・",mC);const s=hn(n,Oa,X0,{[Ex]:!0});hn(s,Oa,s);const a=hn(s,Pa,fC,{[gd]:!0}),i=hn(s,Zc,pC,{[rd]:!0}),o=hn(n,Pa,Da,{[Tx]:!0});hn(o,Oa,a),hn(o,Pa,o),hn(a,Oa,a),hn(a,Pa,a);const c=hn(n,Zc,Ix,{[Mx]:!0});hn(c,Pa),hn(c,Oa,i),hn(c,Zc,c),hn(i,Oa,i),hn(i,Pa),hn(i,Zc,i);const u=Me(n,Mg,Z0,{[Cg]:!0}),h=Me(n,FN,Ox,{[Cg]:!0}),f=hn(n,Tg,Ox,{[Cg]:!0});Me(n,Ag,f),Me(h,Mg,u),Me(h,Ag,f),hn(h,Tg,f),Me(f,FN),Me(f,Mg),hn(f,Tg,f),Me(f,Ag,f);const m=hn(n,Eg,gC,{[hC]:!0});Me(m,"#"),hn(m,Eg,m),Me(m,w7,m);const g=Me(m,j7);Me(g,"#"),hn(g,Eg,m);const y=[[Pa,o],[Oa,a]],N=[[Pa,null],[Zc,c],[Oa,i]];for(let j=0;jj[0]>v[0]?1:-1);for(let j=0;j=0?C[Ax]=!0:Pa.test(v)?Oa.test(v)?C[gd]=!0:C[Tx]=!0:C[Ex]=!0,zN(n,v,v,C)}return zN(n,"localhost",Ld,{ascii:!0}),n.jd=new zs(Sf),{start:n,tokens:Object.assign({groups:e},xC)}}function yC(t,e){const n=S7(e.replace(/[A-Z]/g,c=>c.toLowerCase())),s=n.length,a=[];let i=0,o=0;for(;o=0&&(m+=n[o].length,g++),h+=n[o].length,i+=n[o].length,o++;i-=m,o-=g,h-=m,a.push({t:f.t,v:e.slice(i-h,i),s:i-h,e:i})}return a}function S7(t){const e=[],n=t.length;let s=0;for(;s56319||s+1===n||(i=t.charCodeAt(s+1))<56320||i>57343?t[s]:t.slice(s,s+2);e.push(o),s+=o.length}return e}function yi(t,e,n,s,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(s,s+i),10);o>0;o--)n.pop();s+=i}else n.push(t[s]),s++}return e}const _d={defaultProtocol:"http",events:null,format:BN,formatHref:BN,nl2br:!1,tagName:"a",target:null,rel:null,validate:!0,truncate:1/0,className:null,attributes:null,ignoreTags:[],render:null};function ry(t,e=null){let n=Object.assign({},_d);t&&(n=Object.assign(n,t instanceof ry?t.o:t));const s=n.ignoreTags,a=[];for(let i=0;in?s.substring(0,n)+"…":s},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=_d.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")),s=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=s,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 sp(t,e){class n extends bC{constructor(a,i){super(a,i),this.t=t}}for(const s in e)n.prototype[s]=e[s];return n.t=t,n}const VN=sp("email",{isLink:!0,toHref(){return"mailto:"+this.toString()}}),HN=sp("text"),C7=sp("nl"),hh=sp("url",{isLink:!0,toHref(t=_d.defaultProtocol){return this.hasProtocol()?this.v:`${t}://${this.v}`},hasProtocol(){const t=this.tk;return t.length>=2&&t[0].t!==Ld&&t[1].t===Ci}}),cr=t=>new zs(t);function E7({groups:t}){const e=t.domain.concat([ff,mf,ji,gf,xf,yf,bf,vf,dr,X0,bd,Nf,wf,jf,Zr,Sf,Nd,kf]),n=[pf,Ci,ey,Xr,ty,bd,vd,ny,sy,nf,sf,xd,yd,Zh,Xh,ef,tf,rf,af,of,lf,cf,df,uf,hf],s=[ff,pf,mf,gf,xf,yf,bf,vf,dr,xd,yd,bd,Nf,wf,jf,vd,Zr,Sf,Nd,kf],a=cr(),i=Me(a,Nd);ht(i,s,i),ht(i,t.domain,i);const o=cr(),c=cr(),u=cr();ht(a,t.domain,o),ht(a,t.scheme,c),ht(a,t.slashscheme,u),ht(o,s,i),ht(o,t.domain,o);const h=Me(o,ji);Me(i,ji,h),Me(c,ji,h),Me(u,ji,h);const f=Me(i,Xr);ht(f,s,i),ht(f,t.domain,i);const m=cr();ht(h,t.domain,m),ht(m,t.domain,m);const g=Me(m,Xr);ht(g,t.domain,m);const y=cr(VN);ht(g,t.tld,y),ht(g,t.utld,y),Me(h,Ld,y);const N=Me(m,dr);Me(N,dr,N),ht(N,t.domain,m),ht(y,t.domain,m),Me(y,Xr,g),Me(y,dr,N);const j=Me(y,Ci);ht(j,t.numeric,VN);const v=Me(o,dr),k=Me(o,Xr);Me(v,dr,v),ht(v,t.domain,o),ht(k,s,i),ht(k,t.domain,o);const C=cr(hh);ht(k,t.tld,C),ht(k,t.utld,C),ht(C,t.domain,o),ht(C,s,i),Me(C,Xr,k),Me(C,dr,v),Me(C,ji,h);const E=Me(C,Ci),M=cr(hh);ht(E,t.numeric,M);const P=cr(hh),H=cr();ht(P,e,P),ht(P,n,H),ht(H,e,P),ht(H,n,H),Me(C,Zr,P),Me(M,Zr,P);const L=Me(c,Ci),R=Me(u,Ci),O=Me(R,Zr),se=Me(O,Zr);ht(c,t.domain,o),Me(c,Xr,k),Me(c,dr,v),ht(u,t.domain,o),Me(u,Xr,k),Me(u,dr,v),ht(L,t.domain,P),Me(L,Zr,P),Me(L,vd,P),ht(se,t.domain,P),ht(se,e,P),Me(se,Zr,P);const ie=[[xd,yd],[Xh,Zh],[ef,tf],[nf,sf],[rf,af],[of,lf],[cf,df],[uf,hf]];for(let z=0;z=0&&g++,a++,f++;if(g<0)a-=f,a0&&(i.push(Ig(HN,e,o)),o=[]),a-=g,f-=g;const y=m.t,N=n.slice(a-f,a);i.push(Ig(y,e,N))}}return o.length>0&&i.push(Ig(HN,e,o)),i}function Ig(t,e,n){const s=n[0].s,a=n[n.length-1].e,i=e.slice(s,a);return new t(i,n)}const M7=typeof console<"u"&&console&&console.warn||(()=>{}),A7="until manual call of linkify.init(). Register all schemes and plugins before invoking linkify the first time.",Xt={scanner:null,parser:null,tokenQueue:[],pluginQueue:[],customSchemes:[],initialized:!1};function I7(){return zs.groups={},Xt.scanner=null,Xt.parser=null,Xt.tokenQueue=[],Xt.pluginQueue=[],Xt.customSchemes=[],Xt.initialized=!1,Xt}function WN(t,e=!1){if(Xt.initialized&&M7(`linkifyjs: already initialized - will not register custom scheme "${t}" ${A7}`),!/^[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`);Xt.customSchemes.push([t,e])}function R7(){Xt.scanner=k7(Xt.customSchemes);for(let t=0;t{const a=e.some(h=>h.docChanged)&&!n.doc.eq(s.doc),i=e.some(h=>h.getMeta("preventAutolink"));if(!a||i)return;const{tr:o}=s,c=I2(n.doc,[...e]);if(F2(c).forEach(({newRange:h})=>{const f=L8(s.doc,h,y=>y.isTextblock);let m,g;if(f.length>1)m=f[0],g=s.doc.textBetween(m.pos,m.pos+m.node.nodeSize,void 0," ");else if(f.length){const y=s.doc.textBetween(h.from,h.to," "," ");if(!O7.test(y))return;m=f[0],g=s.doc.textBetween(m.pos,h.to,void 0," ")}if(m&&g){const y=g.split(P7).filter(Boolean);if(y.length<=0)return!1;const N=y[y.length-1],j=m.pos+g.lastIndexOf(N);if(!N)return!1;const v=ay(N).map(k=>k.toObject(t.defaultProtocol));if(!L7(v))return!1;v.filter(k=>k.isLink).map(k=>({...k,from:j+k.start+1,to:j+k.end+1})).filter(k=>s.schema.marks.code?!s.doc.rangeHasMark(k.from,k.to,s.schema.marks.code):!0).filter(k=>t.validate(k.value)).filter(k=>t.shouldAutoLink(k.value)).forEach(k=>{K0(k.from,k.to,s.doc).some(C=>C.mark.type===t.type)||o.addMark(k.from,k.to,t.type.create({href:k.href}))})}}),!!o.steps.length)return o}})}function z7(t){return new qt({key:new rn("handleClickLink"),props:{handleClick:(e,n,s)=>{var a,i;if(s.button!==0||!e.editable)return!1;let o=null;if(s.target instanceof HTMLAnchorElement)o=s.target;else{const u=s.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=z2(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 F7(t){return new qt({key:new rn("handlePasteLink"),props:{handlePaste:(e,n,s)=>{const{shouldAutoLink:a}=t,{state:i}=e,{selection:o}=i,{empty:c}=o;if(c)return!1;let u="";s.content.forEach(f=>{u+=f.textContent});const h=vC(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 No(t,e){const n=["http","https","ftp","ftps","mailto","tel","callto","sms","cid","xmpp"];return e&&e.forEach(s=>{const a=typeof s=="string"?s:s.scheme;a&&n.push(a)}),!t||t.replace(D7,"").match(new RegExp(`^(?:(?:${n.join("|")}):|[^a-z]|[a-z0-9+.-]+(?:[^a-z+.-:]|$))`,"i"))}var $7=Yo.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"){WN(t);return}WN(t.scheme,t.optionalSlashes)})},onDestroy(){I7()},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)=>!!No(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=>!!No(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=>!!No(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?["a",Et(this.options.HTMLAttributes,t),0]:["a",Et(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,s,a,i;const o=(s=(n=t.attrs)==null?void 0:n.href)!=null?s:"",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:s=>!!No(s,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:s=>!!No(s,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[Ho({find:t=>{const e=[];if(t){const{protocols:n,defaultProtocol:s}=this.options,a=vC(t).filter(i=>i.isLink&&this.options.isAllowedUri(i.value,{defaultValidate:o=>!!No(o,n),protocols:n,defaultProtocol:s}));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(_7({type:this.type,defaultProtocol:this.options.defaultProtocol,validate:s=>this.options.isAllowedUri(s,{defaultValidate:a=>!!No(a,e),protocols:e,defaultProtocol:n}),shouldAutoLink:this.options.shouldAutoLink})),t.push(z7({type:this.type,editor:this.editor,openOnClick:this.options.openOnClick==="whenNotEditable"?!0:this.options.openOnClick,enableClickSelection:this.options.enableClickSelection})),this.options.linkOnPaste&&t.push(F7({editor:this.editor,defaultProtocol:this.options.defaultProtocol,type:this.type,shouldAutoLink:this.options.shouldAutoLink})),t}}),B7=Object.defineProperty,V7=(t,e)=>{for(var n in e)B7(t,n,{get:e[n],enumerable:!0})},H7="listItem",UN="textStyle",KN=/^\s*([-+*])\s$/,NC=An.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",Et(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(H7,this.editor.getAttributes(UN)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-8":()=>this.editor.commands.toggleBulletList()}},addInputRules(){let t=Ql({find:KN,type:this.type});return(this.options.keepMarks||this.options.keepAttributes)&&(t=Ql({find:KN,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:()=>this.editor.getAttributes(UN),editor:this.editor})),[t]}}),wC=An.create({name:"listItem",addOptions(){return{HTMLAttributes:{},bulletListTypeName:"bulletList",orderedListTypeName:"orderedList"}},content:"paragraph block*",defining:!0,parseHTML(){return[{tag:"li"}]},renderHTML({HTMLAttributes:t}){return["li",Et(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)=>Y0(t,e,s=>{var a,i;return s.parentType==="bulletList"?"- ":s.parentType==="orderedList"?`${(((i=(a=s.meta)==null?void 0:a.parentAttrs)==null?void 0:i.start)||1)+s.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)}}}),W7={};V7(W7,{findListItemPos:()=>Gd,getNextListDepth:()=>oy,handleBackspace:()=>Dx,handleDelete:()=>Lx,hasListBefore:()=>jC,hasListItemAfter:()=>U7,hasListItemBefore:()=>kC,listItemHasSubList:()=>SC,nextListIsDeeper:()=>CC,nextListIsHigher:()=>EC});var Gd=(t,e)=>{const{$from:n}=e.selection,s=Mn(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===s?c=i:(i-=1,o-=1);return c===null?null:{$pos:e.doc.resolve(o),depth:c}},oy=(t,e)=>{const n=Gd(t,e);if(!n)return!1;const[,s]=K8(e,t,n.$pos.pos+4);return s},jC=(t,e,n)=>{const{$anchor:s}=t.selection,a=Math.max(0,s.pos-2),i=t.doc.resolve(a).node();return!(!i||!n.includes(i.type.name))},kC=(t,e)=>{var n;const{$anchor:s}=e.selection,a=e.doc.resolve(s.pos-2);return!(a.index()===0||((n=a.nodeBefore)==null?void 0:n.type.name)!==t)},SC=(t,e,n)=>{if(!n)return!1;const s=Mn(t,e.schema);let a=!1;return n.descendants(i=>{i.type===s&&(a=!0)}),a},Dx=(t,e,n)=>{if(t.commands.undoInputRule())return!0;if(t.state.selection.from!==t.state.selection.to)return!1;if(!Bi(t.state,e)&&jC(t.state,e,n)){const{$anchor:c}=t.state.selection,u=t.state.doc.resolve(c.before()-1),h=[];u.node().descendants((g,y)=>{g.type.name===e&&h.push({node:g,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(!Bi(t.state,e)||!Y8(t.state))return!1;const s=Gd(e,t.state);if(!s)return!1;const i=t.state.doc.resolve(s.$pos.pos-2).node(s.depth),o=SC(e,t.state,i);return kC(e,t.state)&&!o?t.commands.joinItemBackward():t.chain().liftListItem(e).run()},CC=(t,e)=>{const n=oy(t,e),s=Gd(t,e);return!s||!n?!1:n>s.depth},EC=(t,e)=>{const n=oy(t,e),s=Gd(t,e);return!s||!n?!1:n{if(!Bi(t.state,e)||!J8(t.state,e))return!1;const{selection:n}=t.state,{$from:s,$to:a}=n;return!n.empty&&s.sameParent(a)?!1:CC(e,t.state)?t.chain().focus(t.state.selection.from+4).lift(e).joinBackward().run():EC(e,t.state)?t.chain().joinForward().joinBackward().run():t.commands.joinItemForward()},U7=(t,e)=>{var n;const{$anchor:s}=e.selection,a=e.doc.resolve(s.pos-s.parentOffset-2);return!(a.index()===a.parent.childCount-1||((n=a.nodeAfter)==null?void 0:n.type.name)!==t)},TC=gn.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&&Lx(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&&Lx(t,n)&&(e=!0)}),e},Backspace:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:s})=>{t.state.schema.nodes[n]!==void 0&&Dx(t,n,s)&&(e=!0)}),e},"Mod-Backspace":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:s})=>{t.state.schema.nodes[n]!==void 0&&Dx(t,n,s)&&(e=!0)}),e}}}}),qN=/^(\s*)(\d+)\.\s+(.*)$/,K7=/^\s/;function q7(t){const e=[];let n=0,s=0;for(;ne;)g.push(t[m]),m+=1;if(g.length>0){const y=Math.min(...g.map(j=>j.indent)),N=MC(g,y,n);h.push({type:"list",ordered:!0,start:g[0].number,items:N,raw:g.map(j=>j.raw).join(` +`)})}a.push({type:"list_item",raw:o.raw,tokens:h}),i=m}else i+=1}return a}function G7(t,e){return t.map(n=>{if(n.type!=="list_item")return e.parseChildren([n])[0];const s=[];return n.tokens&&n.tokens.length>0&&n.tokens.forEach(a=>{if(a.type==="paragraph"||a.type==="list"||a.type==="blockquote"||a.type==="code")s.push(...e.parseChildren([a]));else if(a.type==="text"&&a.tokens){const i=e.parseChildren([a]);s.push({type:"paragraph",content:i})}else{const i=e.parseChildren([a]);i.length>0&&s.push(...i)}}),{type:"listItem",content:s}})}var J7="listItem",GN="textStyle",JN=/^(\d+)\.\s$/,AC=An.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",Et(this.options.HTMLAttributes,n),0]:["ol",Et(this.options.HTMLAttributes,t),0]},markdownTokenName:"list",parseMarkdown:(t,e)=>{if(t.type!=="list"||!t.ordered)return[];const n=t.start||1,s=t.items?G7(t.items,e):[];return n!==1?{type:"orderedList",attrs:{start:n},content:s}:{type:"orderedList",content:s}},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 s;const a=t.split(` +`),[i,o]=q7(a);if(i.length===0)return;const c=MC(i,0,n);return c.length===0?void 0:{type:"list",ordered:!0,start:((s=i[0])==null?void 0:s.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(J7,this.editor.getAttributes(GN)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-7":()=>this.editor.commands.toggleOrderedList()}},addInputRules(){let t=Ql({find:JN,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=Ql({find:JN,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:e=>({start:+e[1],...this.editor.getAttributes(GN)}),joinPredicate:(e,n)=>n.childCount+n.attrs.start===+e[1],editor:this.editor})),[t]}}),Y7=/^\s*(\[([( |x])?\])\s$/,Q7=An.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",Et(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 s=e.parseChildren(t.nestedTokens);n.push(...s)}return e.createNode("taskItem",{checked:t.checked||!1},n)},renderMarkdown:(t,e)=>{var n;const a=`- [${(n=t.attrs)!=null&&n.checked?"x":" "}] `;return Y0(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:s})=>{const a=document.createElement("li"),i=document.createElement("label"),o=document.createElement("span"),c=document.createElement("input"),u=document.createElement("div"),h=m=>{var g,y;c.ariaLabel=((y=(g=this.options.a11y)==null?void 0:g.checkboxLabel)==null?void 0:y.call(g,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(!s.isEditable&&!this.options.onReadOnlyChecked){c.checked=!c.checked;return}const{checked:g}=m.target;s.isEditable&&typeof n=="function"&&s.chain().focus(void 0,{scrollIntoView:!1}).command(({tr:y})=>{const N=n();if(typeof N!="number")return!1;const j=y.doc.nodeAt(N);return y.setNodeMarkup(N,void 0,{...j==null?void 0:j.attrs,checked:g}),!0}).run(),!s.isEditable&&this.options.onReadOnlyChecked&&(this.options.onReadOnlyChecked(t,g)||(c.checked=!c.checked))}),Object.entries(this.options.HTMLAttributes).forEach(([m,g])=>{a.setAttribute(m,g)}),a.dataset.checked=t.attrs.checked,c.checked=t.attrs.checked,i.append(c,o),a.append(i,u),Object.entries(e).forEach(([m,g])=>{a.setAttribute(m,g)});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 g=s.extensionManager.attributes,y=Dd(m,g),N=new Set(Object.keys(y)),j=this.options.HTMLAttributes;return f.forEach(v=>{N.has(v)||(v in j?a.setAttribute(v,j[v]):a.removeAttribute(v))}),Object.entries(y).forEach(([v,k])=>{k==null?v in j?a.setAttribute(v,j[v]):a.removeAttribute(v):a.setAttribute(v,k)}),f=N,!0}}}},addInputRules(){return[Ql({find:Y7,type:this.type,getAttributes:t=>({checked:t[t.length-1]==="x"})})]}}),X7=An.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",Et(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 s=i=>{const o=Sx(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:s},n);return o?[{type:"taskList",raw:o.raw,items:o.items}]:n.blockTokens(i)},a=Sx(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:s},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()}}});gn.create({name:"listKit",addExtensions(){const t=[];return this.options.bulletList!==!1&&t.push(NC.configure(this.options.bulletList)),this.options.listItem!==!1&&t.push(wC.configure(this.options.listItem)),this.options.listKeymap!==!1&&t.push(TC.configure(this.options.listKeymap)),this.options.orderedList!==!1&&t.push(AC.configure(this.options.orderedList)),this.options.taskItem!==!1&&t.push(Q7.configure(this.options.taskItem)),this.options.taskList!==!1&&t.push(X7.configure(this.options.taskList)),t}});var YN=" ",Z7=" ",ez=An.create({name:"paragraph",priority:1e3,addOptions(){return{HTMLAttributes:{}}},group:"block",content:"inline*",parseHTML(){return[{tag:"p"}]},renderHTML({HTMLAttributes:t}){return["p",Et(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 s=e.parseInline(n);return s.length===1&&s[0].type==="text"&&(s[0].text===YN||s[0].text===Z7)?e.createNode("paragraph",void 0,[]):e.createNode("paragraph",void 0,s)},renderMarkdown:(t,e)=>{if(!t)return"";const n=Array.isArray(t.content)?t.content:[];return n.length===0?YN:e.renderChildren(n)},addCommands(){return{setParagraph:()=>({commands:t})=>t.setNode(this.name)}},addKeyboardShortcuts(){return{"Mod-Alt-0":()=>this.editor.commands.setParagraph()}}}),tz=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/,nz=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g,sz=Yo.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",Et(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[Yl({find:tz,type:this.type})]},addPasteRules(){return[Ho({find:nz,type:this.type})]}}),rz=An.create({name:"text",group:"inline",parseMarkdown:t=>({type:"text",text:t.text||""}),renderMarkdown:t=>t.text||""}),az=Yo.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",Et(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 iz(t={}){return new qt({view(e){return new oz(e,t)}})}class oz{constructor(e,n){var s;this.editorView=e,this.cursorPos=null,this.element=null,this.timeout=-1,this.width=(s=n.width)!==null&&s!==void 0?s: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,s,a=this.editorView.dom,i=a.getBoundingClientRect(),o=i.width/a.offsetWidth,c=i.height/a.offsetHeight;if(n){let m=e.nodeBefore,g=e.nodeAfter;if(m||g){let y=this.editorView.nodeDOM(this.cursorPos-(m?m.nodeSize:0));if(y){let N=y.getBoundingClientRect(),j=m?N.bottom:N.top;m&&g&&(j=(j+this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top)/2);let v=this.width/2*c;s={left:N.left,right:N.right,top:j-v,bottom:j+v}}}}if(!s){let m=this.editorView.coordsAtPos(this.cursorPos),g=this.width/2*o;s={left:m.left-g,right:m.left+g,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(),g=m.width/u.offsetWidth,y=m.height/u.offsetHeight;h=m.left-u.scrollLeft*g,f=m.top-u.scrollTop*y}this.element.style.left=(s.left-h)/o+"px",this.element.style.top=(s.top-f)/c+"px",this.element.style.width=(s.right-s.left)/o+"px",this.element.style.height=(s.bottom-s.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}),s=n&&n.inside>=0&&this.editorView.state.doc.nodeAt(n.inside),a=s&&s.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=jS(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 pn extends nt{constructor(e){super(e,e)}map(e,n){let s=e.resolve(n.map(this.head));return pn.valid(s)?new pn(s):nt.near(s)}content(){return Oe.empty}eq(e){return e instanceof pn&&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 pn(e.resolve(n.pos))}getBookmark(){return new ly(this.anchor)}static valid(e){let n=e.parent;if(n.isTextblock||!lz(e)||!cz(e))return!1;let s=n.type.spec.allowGapCursor;if(s!=null)return s;let a=n.contentMatchAt(e.index()).defaultType;return a&&a.isTextblock}static findGapCursorFrom(e,n,s=!1){e:for(;;){if(!s&&pn.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(pn.valid(u))return u}for(;;){let o=n>0?i.firstChild:i.lastChild;if(!o){if(i.isAtom&&!i.isText&&!Qe.isSelectable(i)){e=e.doc.resolve(a+i.nodeSize*n),s=!1;continue e}break}i=o,a+=n;let c=e.doc.resolve(a);if(pn.valid(c))return c}return null}}}pn.prototype.visible=!1;pn.findFrom=pn.findGapCursorFrom;nt.jsonID("gapcursor",pn);class ly{constructor(e){this.pos=e}map(e){return new ly(e.map(this.pos))}resolve(e){let n=e.resolve(this.pos);return pn.valid(n)?new pn(n):nt.near(n)}}function IC(t){return t.isAtom||t.spec.isolating||t.spec.createGapCursor}function lz(t){for(let e=t.depth;e>=0;e--){let n=t.index(e),s=t.node(e);if(n==0){if(s.type.spec.isolating)return!0;continue}for(let a=s.child(n-1);;a=a.lastChild){if(a.childCount==0&&!a.inlineContent||IC(a.type))return!0;if(a.inlineContent)return!1}}return!0}function cz(t){for(let e=t.depth;e>=0;e--){let n=t.indexAfter(e),s=t.node(e);if(n==s.childCount){if(s.type.spec.isolating)return!0;continue}for(let a=s.child(n);;a=a.firstChild){if(a.childCount==0&&!a.inlineContent||IC(a.type))return!0;if(a.inlineContent)return!1}}return!0}function dz(){return new qt({props:{decorations:pz,createSelectionBetween(t,e,n){return e.pos==n.pos&&pn.valid(n)?new pn(n):null},handleClick:hz,handleKeyDown:uz,handleDOMEvents:{beforeinput:fz}}})}const uz=$0({ArrowLeft:fh("horiz",-1),ArrowRight:fh("horiz",1),ArrowUp:fh("vert",-1),ArrowDown:fh("vert",1)});function fh(t,e){const n=t=="vert"?e>0?"down":"up":e>0?"right":"left";return function(s,a,i){let o=s.selection,c=e>0?o.$to:o.$from,u=o.empty;if(o instanceof Xe){if(!i.endOfTextblock(n)||c.depth==0)return!1;u=!1,c=s.doc.resolve(e>0?c.after():c.before())}let h=pn.findGapCursorFrom(c,e,u);return h?(a&&a(s.tr.setSelection(new pn(h))),!0):!1}}function hz(t,e,n){if(!t||!t.editable)return!1;let s=t.state.doc.resolve(e);if(!pn.valid(s))return!1;let a=t.posAtCoords({left:n.clientX,top:n.clientY});return a&&a.inside>-1&&Qe.isSelectable(t.state.doc.nodeAt(a.inside))?!1:(t.dispatch(t.state.tr.setSelection(new pn(s))),!0)}function fz(t,e){if(e.inputType!="insertCompositionText"||!(t.state.selection instanceof pn))return!1;let{$from:n}=t.state.selection,s=n.parent.contentMatchAt(n.index()).findWrapping(t.state.schema.nodes.text);if(!s)return!1;let a=Ne.empty;for(let o=s.length-1;o>=0;o--)a=Ne.from(s[o].createAndFill(null,a));let i=t.state.tr.replace(n.pos,n.pos,new Oe(a,0,0));return i.setSelection(Xe.near(i.doc.resolve(n.pos+1))),t.dispatch(i),!1}function pz(t){if(!(t.selection instanceof pn))return null;let e=document.createElement("div");return e.className="ProseMirror-gapcursor",Bt.create(t.doc,[Ln.widget(t.selection.head,e,{key:"gapcursor"})])}var Cf=200,Wn=function(){};Wn.prototype.append=function(e){return e.length?(e=Wn.from(e),!this.length&&e||e.length=n?Wn.empty:this.sliceInner(Math.max(0,e),Math.min(this.length,n))};Wn.prototype.get=function(e){if(!(e<0||e>=this.length))return this.getInner(e)};Wn.prototype.forEach=function(e,n,s){n===void 0&&(n=0),s===void 0&&(s=this.length),n<=s?this.forEachInner(e,n,s,0):this.forEachInvertedInner(e,n,s,0)};Wn.prototype.map=function(e,n,s){n===void 0&&(n=0),s===void 0&&(s=this.length);var a=[];return this.forEach(function(i,o){return a.push(e(i,o))},n,s),a};Wn.from=function(e){return e instanceof Wn?e:e&&e.length?new RC(e):Wn.empty};var RC=(function(t){function e(s){t.call(this),this.values=s}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<=Cf)return new e(this.values.concat(a.flatten()))},e.prototype.leafPrepend=function(a){if(this.length+a.length<=Cf)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})(Wn);Wn.empty=new RC([]);var mz=(function(t){function e(n,s){t.call(this),this.left=n,this.right=s,this.length=n.length+s.length,this.depth=Math.max(n.depth,s.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(s){return sc&&this.right.forEachInner(s,Math.max(a-c,0),Math.min(this.length,i)-c,o+c)===!1)return!1},e.prototype.forEachInvertedInner=function(s,a,i,o){var c=this.left.length;if(a>c&&this.right.forEachInvertedInner(s,a-c,Math.max(i,c)-c,o+c)===!1||i=i?this.right.slice(s-i,a-i):this.left.slice(s,i).append(this.right.slice(0,a-i))},e.prototype.leafAppend=function(s){var a=this.right.leafAppend(s);if(a)return new e(this.left,a)},e.prototype.leafPrepend=function(s){var a=this.left.leafPrepend(s);if(a)return new e(a,this.right)},e.prototype.appendInner=function(s){return this.left.depth>=Math.max(this.right.depth,s.depth)+1?new e(this.left,new e(this.right,s)):new e(this,s)},e})(Wn);const gz=500;class Ar{constructor(e,n){this.items=e,this.eventCount=n}popEvent(e,n){if(this.eventCount==0)return null;let s=this.items.length;for(;;s--)if(this.items.get(s-1).selection){--s;break}let a,i;n&&(a=this.remapping(s,this.items.length),i=a.maps.length);let o=e.tr,c,u,h=[],f=[];return this.items.forEach((m,g)=>{if(!m.step){a||(a=this.remapping(s,g+1),i=a.maps.length),i--,f.push(m);return}if(a){f.push(new bi(m.map));let y=m.step.map(a.slice(i)),N;y&&o.maybeStep(y).doc&&(N=o.mapping.maps[o.mapping.maps.length-1],h.push(new bi(N,void 0,void 0,h.length+f.length))),i--,N&&a.appendMap(N,i)}else o.maybeStep(m.step);if(m.selection)return c=a?m.selection.map(a.slice(i)):m.selection,u=new Ar(this.items.slice(0,s).append(f.reverse().concat(h)),this.eventCount-1),!1},this.items.length,0),{remaining:u,transform:o,selection:c}}addTransform(e,n,s,a){let i=[],o=this.eventCount,c=this.items,u=!a&&c.length?c.get(c.length-1):null;for(let f=0;fyz&&(c=xz(c,h),o-=h),new Ar(c.append(i),o)}remapping(e,n){let s=new Md;return this.items.forEach((a,i)=>{let o=a.mirrorOffset!=null&&i-a.mirrorOffset>=e?s.maps.length-a.mirrorOffset:void 0;s.appendMap(a.map,o)},e,n),s}addMaps(e){return this.eventCount==0?this:new Ar(this.items.append(e.map(n=>new bi(n))),this.eventCount)}rebased(e,n){if(!this.eventCount)return this;let s=[],a=Math.max(0,this.items.length-n),i=e.mapping,o=e.steps.length,c=this.eventCount;this.items.forEach(g=>{g.selection&&c--},a);let u=n;this.items.forEach(g=>{let y=i.getMirror(--u);if(y==null)return;o=Math.min(o,y);let N=i.maps[y];if(g.step){let j=e.steps[y].invert(e.docs[y]),v=g.selection&&g.selection.map(i.slice(u+1,y));v&&c++,s.push(new bi(N,j,v))}else s.push(new bi(N))},a);let h=[];for(let g=n;ggz&&(m=m.compress(this.items.length-s.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),s=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(s)),h=u&&u.getMap();if(s--,h&&n.appendMap(h,s),u){let f=o.selection&&o.selection.map(n.slice(s));f&&i++;let m=new bi(h.invert(),u,f),g,y=a.length-1;(g=a.length&&a[y].merge(m))?a[y]=g:a.push(m)}}else o.map&&s--},this.items.length,0),new Ar(Wn.from(a.reverse()),i)}}Ar.empty=new Ar(Wn.empty,0);function xz(t,e){let n;return t.forEach((s,a)=>{if(s.selection&&e--==0)return n=a,!1}),t.slice(n)}let bi=class PC{constructor(e,n,s,a){this.map=e,this.step=n,this.selection=s,this.mirrorOffset=a}merge(e){if(this.step&&e.step&&!e.selection){let n=e.step.merge(this.step);if(n)return new PC(n.getMap().invert(),n,this.selection)}}};class ki{constructor(e,n,s,a,i){this.done=e,this.undone=n,this.prevRanges=s,this.prevTime=a,this.prevComposition=i}}const yz=20;function bz(t,e,n,s){let a=n.getMeta(Do),i;if(a)return a.historyState;n.getMeta(wz)&&(t=new ki(t.done,t.undone,null,0,-1));let o=n.getMeta("appendedTransaction");if(n.steps.length==0)return t;if(o&&o.getMeta(Do))return o.getMeta(Do).redo?new ki(t.done.addTransform(n,void 0,s,Sh(e)),t.undone,QN(n.mapping.maps),t.prevTime,t.prevComposition):new ki(t.done,t.undone.addTransform(n,void 0,s,Sh(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)-s.newGroupDelay||!vz(n,t.prevRanges)),h=o?Rg(t.prevRanges,n.mapping):QN(n.mapping.maps);return new ki(t.done.addTransform(n,u?e.selection.getBookmark():void 0,s,Sh(e)),Ar.empty,h,n.time,c??t.prevComposition)}else return(i=n.getMeta("rebased"))?new ki(t.done.rebased(n,i),t.undone.rebased(n,i),Rg(t.prevRanges,n.mapping),t.prevTime,t.prevComposition):new ki(t.done.addMaps(n.mapping.maps),t.undone.addMaps(n.mapping.maps),Rg(t.prevRanges,n.mapping),t.prevTime,t.prevComposition)}function vz(t,e){if(!e)return!1;if(!t.docChanged)return!0;let n=!1;return t.mapping.maps[0].forEach((s,a)=>{for(let i=0;i=e[i]&&(n=!0)}),n}function QN(t){let e=[];for(let n=t.length-1;n>=0&&e.length==0;n--)t[n].forEach((s,a,i,o)=>e.push(i,o));return e}function Rg(t,e){if(!t)return null;let n=[];for(let s=0;s{let a=Do.getState(n);if(!a||(t?a.undone:a.done).eventCount==0)return!1;if(s){let i=Nz(a,n,t);i&&s(e?i.scrollIntoView():i)}return!0}}const DC=OC(!1,!0),LC=OC(!0,!0);gn.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 s=e.textBetween(0,e.content.size,void 0," ");return this.options.textCounter(s)}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 qt({key:new rn("characterCount"),appendTransaction:(e,n,s)=>{if(t)return;const a=this.options.limit;if(a==null||a===0){t=!0;return}const i=this.storage.characters({node:s.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=s.tr.deleteRange(c,u);return t=!0,h}t=!0},filterTransaction:(e,n)=>{const s=this.options.limit;if(!e.docChanged||s===0||s===null||s===void 0)return!0;const a=this.storage.characters({node:n.doc}),i=this.storage.characters({node:e.doc});if(i<=s||a>s&&i>s&&i<=a)return!0;if(a>s&&i>s&&i>a||!e.getMeta("paste"))return!1;const c=e.selection.$head.pos,u=i-s,h=c-u,f=c;return e.deleteRange(h,f),!(this.storage.characters({node:e.doc})>s)}})]}});var kz=gn.create({name:"dropCursor",addOptions(){return{color:"currentColor",width:1,class:void 0}},addProseMirrorPlugins(){return[iz(this.options)]}});gn.create({name:"focus",addOptions(){return{className:"has-focus",mode:"all"}},addProseMirrorPlugins(){return[new qt({key:new rn("focus"),props:{decorations:({doc:t,selection:e})=>{const{isEditable:n,isFocused:s}=this.editor,{anchor:a}=e,i=[];if(!n||!s)return Bt.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(Ln.node(h,h+u.nodeSize,{class:this.options.className}))}),Bt.create(t,i)}}})]}});var Sz=gn.create({name:"gapCursor",addProseMirrorPlugins(){return[dz()]},extendNodeSchema(t){var e;const n={name:t.name,options:t.options,storage:t.storage};return{allowGapCursor:(e=St(Ge(t,"allowGapCursor",n)))!=null?e:null}}}),ZN="placeholder";function Cz(t){return t.replace(/\s+/g,"-").replace(/[^a-zA-Z0-9-]/g,"").replace(/^[0-9-]+/,"").replace(/^-+/,"").toLowerCase()}var Ez=gn.create({name:"placeholder",addOptions(){return{emptyEditorClass:"is-editor-empty",emptyNodeClass:"is-empty",dataAttribute:ZN,placeholder:"Write something …",showOnlyWhenEditable:!0,showOnlyCurrent:!0,includeChildren:!1}},addProseMirrorPlugins(){const t=this.options.dataAttribute?`data-${Cz(this.options.dataAttribute)}`:`data-${ZN}`;return[new qt({key:new rn("placeholder"),props:{decorations:({doc:e,selection:n})=>{const s=this.editor.isEditable||!this.options.showOnlyWhenEditable,{anchor:a}=n,i=[];if(!s)return null;const o=this.editor.isEmpty;return e.descendants((c,u)=>{const h=a>=u&&a<=u+c.nodeSize,f=!c.isLeaf&&ep(c);if((h||!this.options.showOnlyCurrent)&&f){const m=[this.options.emptyNodeClass];o&&m.push(this.options.emptyEditorClass);const g=Ln.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(g)}return this.options.includeChildren}),Bt.create(e,i)}}})]}});gn.create({name:"selection",addOptions(){return{className:"selection"}},addProseMirrorPlugins(){const{editor:t,options:e}=this;return[new qt({key:new rn("selection"),props:{decorations(n){return n.selection.empty||t.isFocused||!t.isEditable||$2(n.selection)||t.view.dragging?null:Bt.create(n.doc,[Ln.inline(n.selection.from,n.selection.to,{class:e.className})])}}})]}});function ew({types:t,node:e}){return e&&Array.isArray(t)&&t.includes(e.type)||(e==null?void 0:e.type)===t}var Tz=gn.create({name:"trailingNode",addOptions(){return{node:void 0,notAfter:[]}},addProseMirrorPlugins(){var t;const e=new rn(this.name),n=this.options.node||((t=this.editor.schema.topNodeType.contentMatch.defaultType)==null?void 0:t.name)||"paragraph",s=Object.entries(this.editor.schema.nodes).map(([,a])=>a).filter(a=>(this.options.notAfter||[]).concat(n).includes(a.name));return[new qt({key:e,appendTransaction:(a,i,o)=>{const{doc:c,tr:u,schema:h}=o,f=e.getState(o),m=c.content.size,g=h.nodes[n];if(f)return u.insert(m,g.create())},state:{init:(a,i)=>{const o=i.tr.doc.lastChild;return!ew({node:o,types:s})},apply:(a,i)=>{if(!a.docChanged||a.getMeta("__uniqueIDTransaction"))return i;const o=a.doc.lastChild;return!ew({node:o,types:s})}}})]}}),Mz=gn.create({name:"undoRedo",addOptions(){return{depth:100,newGroupDelay:500}},addCommands(){return{undo:()=>({state:t,dispatch:e})=>DC(t,e),redo:()=>({state:t,dispatch:e})=>LC(t,e)}},addProseMirrorPlugins(){return[jz(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()}}}),Az=gn.create({name:"starterKit",addExtensions(){var t,e,n,s;const a=[];return this.options.bold!==!1&&a.push(e7.configure(this.options.bold)),this.options.blockquote!==!1&&a.push(J_.configure(this.options.blockquote)),this.options.bulletList!==!1&&a.push(NC.configure(this.options.bulletList)),this.options.code!==!1&&a.push(s7.configure(this.options.code)),this.options.codeBlock!==!1&&a.push(i7.configure(this.options.codeBlock)),this.options.document!==!1&&a.push(o7.configure(this.options.document)),this.options.dropcursor!==!1&&a.push(kz.configure(this.options.dropcursor)),this.options.gapcursor!==!1&&a.push(Sz.configure(this.options.gapcursor)),this.options.hardBreak!==!1&&a.push(l7.configure(this.options.hardBreak)),this.options.heading!==!1&&a.push(c7.configure(this.options.heading)),this.options.undoRedo!==!1&&a.push(Mz.configure(this.options.undoRedo)),this.options.horizontalRule!==!1&&a.push(d7.configure(this.options.horizontalRule)),this.options.italic!==!1&&a.push(m7.configure(this.options.italic)),this.options.listItem!==!1&&a.push(wC.configure(this.options.listItem)),this.options.listKeymap!==!1&&a.push(TC.configure((t=this.options)==null?void 0:t.listKeymap)),this.options.link!==!1&&a.push($7.configure((e=this.options)==null?void 0:e.link)),this.options.orderedList!==!1&&a.push(AC.configure(this.options.orderedList)),this.options.paragraph!==!1&&a.push(ez.configure(this.options.paragraph)),this.options.strike!==!1&&a.push(sz.configure(this.options.strike)),this.options.text!==!1&&a.push(rz.configure(this.options.text)),this.options.underline!==!1&&a.push(az.configure((n=this.options)==null?void 0:n.underline)),this.options.trailingNode!==!1&&a.push(Tz.configure((s=this.options)==null?void 0:s.trailingNode)),a}}),Iz=Az,Rz=/(?:^|\s)(!\[(.+|:?)]\((\S+)(?:(?:\s+)["'](\S+)["'])?\))$/,Pz=An.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",Et(this.options.HTMLAttributes,t)]},parseMarkdown:(t,e)=>e.createNode("image",{src:t.href,title:t.title,alt:t.text}),renderMarkdown:t=>{var e,n,s,a,i,o;const c=(n=(e=t.attrs)==null?void 0:e.src)!=null?n:"",u=(a=(s=t.attrs)==null?void 0:s.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:s}=this.options.resize;return({node:a,getPos:i,HTMLAttributes:o,editor:c})=>{const u=document.createElement("img");Object.entries(o).forEach(([m,g])=>{if(g!=null)switch(m){case"width":case"height":break;default:u.setAttribute(m,g);break}}),u.src=o.src;const h=new L6({element:u,editor:c,node:a,getPos:i,onResize:(m,g)=>{u.style.width=`${m}px`,u.style.height=`${g}px`},onCommit:(m,g)=>{const y=i();y!==void 0&&this.editor.chain().setNodeSelection(y).updateAttributes(this.name,{width:m,height:g}).run()},onUpdate:(m,g,y)=>m.type===a.type,options:{directions:t,min:{width:e,height:n},preserveAspectRatio:s===!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[sC({find:Rz,type:this.type,getAttributes:t=>{const[,,e,n,s]=t;return{src:n,alt:e,title:s}}})]}}),Oz=Pz;function Dz(t){var e;const{char:n,allowSpaces:s,allowToIncludeChar:a,allowedPrefixes:i,startOfLine:o,$position:c}=t,u=s&&!a,h=z6(n),f=new RegExp(`\\s${h}$`),m=o?"^":"",g=a?"":h,y=u?new RegExp(`${m}${h}.*?(?=\\s${g}|$)`,"gm"):new RegExp(`${m}(?:^)?${h}[^\\s${g}]*`,"gm"),N=((e=c.nodeBefore)==null?void 0:e.isText)&&c.nodeBefore.text;if(!N)return null;const j=c.pos-N.length,v=Array.from(N.matchAll(y)).pop();if(!v||v.input===void 0||v.index===void 0)return null;const k=v.input.slice(Math.max(0,v.index-1),v.index),C=new RegExp(`^[${i==null?void 0:i.join("")}\0]?$`).test(k);if(i!==null&&!C)return null;const E=j+v.index;let M=E+v[0].length;return u&&f.test(N.slice(M-1,M+1))&&(v[0]+=" ",M+=1),E=c.pos?{range:{from:E,to:M},query:v[0].slice(n.length),text:v[0]}:null}var Lz=new rn("suggestion");function _z({pluginKey:t=Lz,editor:e,char:n="@",allowSpaces:s=!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:g=()=>[],render:y=()=>({}),allow:N=()=>!0,findSuggestionMatch:j=Dz,shouldShow:v}){let k;const C=y==null?void 0:y(),E=()=>{const L=e.state.selection.$anchor.pos,R=e.view.coordsAtPos(L),{top:O,right:se,bottom:ie,left:z}=R;try{return new DOMRect(z,O,se-z,ie-O)}catch{return null}},M=(L,R)=>R?()=>{const O=t.getState(e.state),se=O==null?void 0:O.decorationId,ie=L.dom.querySelector(`[data-decoration-id="${se}"]`);return(ie==null?void 0:ie.getBoundingClientRect())||null}:E;function P(L,R){var O;try{const ie=t.getState(L.state),z=ie!=null&&ie.decorationId?L.dom.querySelector(`[data-decoration-id="${ie.decorationId}"]`):null,ce={editor:e,range:(ie==null?void 0:ie.range)||{from:0,to:0},query:(ie==null?void 0:ie.query)||null,text:(ie==null?void 0:ie.text)||null,items:[],command:me=>m({editor:e,range:(ie==null?void 0:ie.range)||{from:0,to:0},props:me}),decorationNode:z,clientRect:M(L,z)};(O=C==null?void 0:C.onExit)==null||O.call(C,ce)}catch{}const se=L.state.tr.setMeta(R,{exit:!0});L.dispatch(se)}const H=new qt({key:t,view(){return{update:async(L,R)=>{var O,se,ie,z,ce,me,_;const G=(O=this.key)==null?void 0:O.getState(R),$=(se=this.key)==null?void 0:se.getState(L.state),A=G.active&&$.active&&G.range.from!==$.range.from,Y=!G.active&&$.active,U=G.active&&!$.active,D=!Y&&!U&&G.query!==$.query,W=Y||A&&D,le=D||A,ye=U||A&&D;if(!W&&!le&&!ye)return;const Ae=ye&&!W?G:$,ne=L.dom.querySelector(`[data-decoration-id="${Ae.decorationId}"]`);k={editor:e,range:Ae.range,query:Ae.query,text:Ae.text,items:[],command:K=>m({editor:e,range:Ae.range,props:K}),decorationNode:ne,clientRect:M(L,ne)},W&&((ie=C==null?void 0:C.onBeforeStart)==null||ie.call(C,k)),le&&((z=C==null?void 0:C.onBeforeUpdate)==null||z.call(C,k)),(le||W)&&(k.items=await g({editor:e,query:Ae.query})),ye&&((ce=C==null?void 0:C.onExit)==null||ce.call(C,k)),le&&((me=C==null?void 0:C.onUpdate)==null||me.call(C,k)),W&&((_=C==null?void 0:C.onStart)==null||_.call(C,k))},destroy:()=>{var L;k&&((L=C==null?void 0:C.onExit)==null||L.call(C,k))}}},state:{init(){return{active:!1,range:{from:0,to:0},query:null,text:null,composing:!1}},apply(L,R,O,se){const{isEditable:ie}=e,{composing:z}=e.view,{selection:ce}=L,{empty:me,from:_}=ce,G={...R},$=L.getMeta(t);if($&&$.exit)return G.active=!1,G.decorationId=null,G.range={from:0,to:0},G.query=null,G.text=null,G;if(G.composing=z,ie&&(me||e.view.composing)){(_R.range.to)&&!z&&!R.composing&&(G.active=!1);const A=j({char:n,allowSpaces:s,allowToIncludeChar:a,allowedPrefixes:i,startOfLine:o,$position:ce.$from}),Y=`id_${Math.floor(Math.random()*4294967295)}`;A&&N({editor:e,state:se,range:A.range,isActive:R.active})&&(!v||v({editor:e,range:A.range,query:A.query,text:A.text,transaction:L}))?(G.active=!0,G.decorationId=R.decorationId?R.decorationId:Y,G.range=A.range,G.query=A.query,G.text=A.text):G.active=!1}else G.active=!1;return G.active||(G.decorationId=null,G.range={from:0,to:0},G.query=null,G.text=null),G}},props:{handleKeyDown(L,R){var O,se,ie,z;const{active:ce,range:me}=H.getState(L.state);if(!ce)return!1;if(R.key==="Escape"||R.key==="Esc"){const G=H.getState(L.state),$=(O=k==null?void 0:k.decorationNode)!=null?O:null,A=$??(G!=null&&G.decorationId?L.dom.querySelector(`[data-decoration-id="${G.decorationId}"]`):null);if(((se=C==null?void 0:C.onKeyDown)==null?void 0:se.call(C,{view:L,event:R,range:G.range}))||!1)return!0;const U={editor:e,range:G.range,query:G.query,text:G.text,items:[],command:D=>m({editor:e,range:G.range,props:D}),decorationNode:A,clientRect:A?()=>A.getBoundingClientRect()||null:null};return(ie=C==null?void 0:C.onExit)==null||ie.call(C,U),P(L,t),!0}return((z=C==null?void 0:C.onKeyDown)==null?void 0:z.call(C,{view:L,event:R,range:me}))||!1},decorations(L){const{active:R,range:O,decorationId:se,query:ie}=H.getState(L);if(!R)return null;const z=!(ie!=null&&ie.length),ce=[u];return z&&ce.push(f),Bt.create(L.doc,[Ln.inline(O.from,O.to,{nodeName:c,class:ce.join(" "),"data-decoration-id":se,"data-decoration-content":h})])}}});return H}function zz({editor:t,overrideSuggestionOptions:e,extensionName:n,char:s="@"}){const a=new rn;return{editor:t,char:s,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:s}},{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 _C(t){return(t.options.suggestions.length?t.options.suggestions:[t.options.suggestion]).map(e=>zz({editor:t.editor,overrideSuggestionOptions:e,extensionName:t.name,char:e.char}))}function tw(t,e){const n=_C(t),s=n.find(a=>a.char===e);return s||(n.length?n[0]:null)}var Fz=An.create({name:"mention",priority:101,addOptions(){return{HTMLAttributes:{},renderText({node:t,suggestion:e}){var n,s;return`${(n=e==null?void 0:e.char)!=null?n:"@"}${(s=t.attrs.label)!=null?s:t.attrs.id}`},deleteTriggerWithBackspace:!1,renderHTML({options:t,node:e,suggestion:n}){var s,a;return["span",Et(this.HTMLAttributes,t.HTMLAttributes),`${(s=n==null?void 0:n.char)!=null?s:"@"}${(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=tw(this,t.attrs.mentionSuggestionChar);if(this.options.renderLabel!==void 0)return console.warn("renderLabel is deprecated use renderText and renderHTML instead"),["span",Et({"data-type":this.name},this.options.HTMLAttributes,e),this.options.renderLabel({options:this.options,node:t,suggestion:n})];const s={...this.options};s.HTMLAttributes=Et({"data-type":this.name},this.options.HTMLAttributes,e);const a=this.options.renderHTML({options:s,node:t,suggestion:n});return typeof a=="string"?["span",Et({"data-type":this.name},this.options.HTMLAttributes,e),a]:a},...rC({nodeName:"mention",name:"@",selfClosing:!0,allowedAttributes:["id","label",{name:"mentionSuggestionChar",skipIfDefault:"@"}],parseAttributes:t=>{const e={},n=/(\w+)=(?:"([^"]*)"|'([^']*)')/g;let s=n.exec(t);for(;s!==null;){const[,a,i,o]=s,c=i??o;e[a==="char"?"mentionSuggestionChar":a]=c,s=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:tw(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:s}=e,{empty:a,anchor:i}=s;if(!a)return!1;let o=new Va,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 _C(this).map(_z)}}),$z=Fz,Bz=Ez;let _x,zx;if(typeof WeakMap<"u"){let t=new WeakMap;_x=e=>t.get(e),zx=(e,n)=>(t.set(e,n),n)}else{const t=[];let n=0;_x=s=>{for(let a=0;a(n==10&&(n=0),t[n++]=s,t[n++]=a)}var mn=class{constructor(t,e,n,s){this.width=t,this.height=e,this.map=n,this.problems=s}findCell(t){for(let e=0;e=n){(i||(i=[])).push({type:"overlong_rowspan",pos:f,n:k-E});break}const M=a+E*e;for(let P=0;Ps&&(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 Wz(t,e,n){t.problems||(t.problems=[]);const s={};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 Kz(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 Lr(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 rp(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=Wo(e.$head)||qz(e.$head);if(n)return n;throw new RangeError(`No cell found around position ${e.head}`)}function qz(t){for(let e=t.nodeAfter,n=t.pos;e;e=e.firstChild,n++){const s=e.type.spec.tableRole;if(s=="cell"||s=="header_cell")return t.doc.resolve(n)}for(let e=t.nodeBefore,n=t.pos;e;e=e.lastChild,n--){const s=e.type.spec.tableRole;if(s=="cell"||s=="header_cell")return t.doc.resolve(n-e.nodeSize)}}function Fx(t){return t.parent.type.spec.tableRole=="row"&&!!t.nodeAfter}function Gz(t){return t.node(0).resolve(t.pos+t.nodeAfter.nodeSize)}function cy(t,e){return t.depth==e.depth&&t.pos>=e.start(-1)&&t.pos<=e.end(-1)}function zC(t,e,n){const s=t.node(-1),a=mn.get(s),i=t.start(-1),o=a.nextCell(t.pos-i,e,n);return o==null?null:t.node(0).resolve(i+o)}function Uo(t,e,n=1){const s={...t,colspan:t.colspan-n};return s.colwidth&&(s.colwidth=s.colwidth.slice(),s.colwidth.splice(e,n),s.colwidth.some(a=>a>0)||(s.colwidth=null)),s}function FC(t,e,n=1){const s={...t,colspan:t.colspan+n};if(s.colwidth){s.colwidth=s.colwidth.slice();for(let a=0;af!=n.pos-i);u.unshift(n.pos-i);const h=u.map(f=>{const m=s.nodeAt(f);if(!m)throw new RangeError(`No cell with offset ${f} found`);const g=i+f+1;return new TS(c.resolve(g),c.resolve(g+m.content.size))});super(h[0].$from,h[0].$to,h),this.$anchorCell=e,this.$headCell=n}map(e,n){const s=e.resolve(n.map(this.$anchorCell.pos)),a=e.resolve(n.map(this.$headCell.pos));if(Fx(s)&&Fx(a)&&cy(s,a)){const i=this.$anchorCell.node(-1)!=s.node(-1);return i&&this.isRowSelection()?La.rowSelection(s,a):i&&this.isColSelection()?La.colSelection(s,a):new La(s,a)}return Xe.between(s,a)}content(){const e=this.$anchorCell.node(-1),n=mn.get(e),s=this.$anchorCell.start(-1),a=n.rectBetween(this.$anchorCell.pos-s,this.$headCell.pos-s),i={},o=[];for(let u=a.top;u0||v>0){let k=N.attrs;if(j>0&&(k=Uo(k,0,j)),v>0&&(k=Uo(k,k.colspan-v,v)),y.lefta.bottom){const k={...N.attrs,rowspan:Math.min(y.bottom,a.bottom)-Math.max(y.top,a.top)};y.top0)return!1;const s=e+this.$anchorCell.nodeAfter.attrs.rowspan,a=n+this.$headCell.nodeAfter.attrs.rowspan;return Math.max(s,a)==this.$headCell.node(-1).childCount}static colSelection(e,n=e){const s=e.node(-1),a=mn.get(s),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 La&&e.$anchorCell.pos==this.$anchorCell.pos&&e.$headCell.pos==this.$headCell.pos}static rowSelection(e,n=e){const s=e.node(-1),a=mn.get(s),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(Ln.node(s,s+n.nodeSize,{class:"selectedCell"}))}),Bt.create(t.doc,e)}function Xz({$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--,s--);return n==s&&/row|table/.test(t.node(a).type.spec.tableRole)}function Zz({$from:t,$to:e}){let n,s;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"){s=i;break}}return n!==s&&e.parentOffset===0}function eF(t,e,n){const s=(e||t).selection,a=(e||t).doc;let i,o;if(s instanceof Qe&&(o=s.node.type.spec.tableRole)){if(o=="cell"||o=="header_cell")i=Kt.create(a,s.from);else if(o=="row"){const c=a.resolve(s.from+1);i=Kt.rowSelection(c,c)}else if(!n){const c=mn.get(s.node),u=s.from+1,h=u+c.map[c.width*c.height-1];i=Kt.create(a,u+1,h)}}else s instanceof Xe&&Xz(s)?i=Xe.create(a,s.from):s instanceof Xe&&Zz(s)&&(i=Xe.create(a,s.$from.start(),s.$from.end()));return i&&(e||(e=t.tr)).setSelection(i),e}const tF=new rn("fix-tables");function BC(t,e,n,s){const a=t.childCount,i=e.childCount;e:for(let o=0,c=0;o{a.type.spec.tableRole=="table"&&(n=nF(t,a,i,n))};return e?e.doc!=t.doc&&BC(e.doc,t.doc,0,s):t.doc.descendants(s),n}function nF(t,e,n,s){const a=mn.get(e);if(!a.problems)return s;s||(s=t.tr);const i=[];for(let u=0;u0){let y="cell";f.firstChild&&(y=f.firstChild.type.spec.tableRole);const N=[];for(let v=0;v0?-1:0;Jz(e,s,a+i)&&(i=a==0||a==e.width?null:0);for(let o=0;o0&&a0&&e.map[c-1]==u||a0?-1:0;oF(e,s,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 g=n.nodeAt(m).attrs;t.setNodeMarkup(t.mapping.slice(c).map(m+s),null,{...g,rowspan:g.rowspan-1}),h+=g.colspan-1}else if(a0&&n[i]==n[i-1]||s.right0&&n[a]==n[a-t]||s.bottom0){const f=u+1+h.content.size,m=nw(h)?u+1:f;i.replaceWith(m+s.tableStart,f+s.tableStart,c)}i.setSelection(new Kt(i.doc.resolve(u+s.tableStart))),e(i)}return!0}function rw(t,e){const n=bs(t.schema);return fF(({node:s})=>n[s.type.spec.tableRole])(t,e)}function fF(t){return(e,n)=>{const s=e.selection;let a,i;if(s instanceof Kt){if(s.$anchorCell.pos!=s.$headCell.pos)return!1;a=s.$anchorCell.nodeAfter,i=s.$anchorCell.pos}else{var o;if(a=Kz(s.$from),!a)return!1;i=(o=Wo(s.$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=la(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}),s(i)}return!0}}function mF(t){return function(e,n){if(!Lr(e))return!1;if(n){const s=bs(e.schema),a=la(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=g+i.tableStart,N=o.doc.nodeAt(y);N&&o.setNodeMarkup(y,m,N.attrs)}),s(o)}return!0}}zd("row",{useDeprecatedLogic:!0});zd("column",{useDeprecatedLogic:!0});const gF=zd("cell",{useDeprecatedLogic:!0});function xF(t,e){if(e<0){const n=t.nodeBefore;if(n)return t.pos-n.nodeSize;for(let s=t.index(-1)-1,a=t.before();s>=0;s--){const i=t.node(-1).child(s),o=i.lastChild;if(o)return a-1-o.nodeSize;a-=i.nodeSize}}else{if(t.index()0;s--)if(n.node(s).type.spec.tableRole=="table")return e&&e(t.tr.delete(n.before(s),n.after(s)).scrollIntoView()),!0;return!1}function ph(t,e){const n=t.selection;if(!(n instanceof Kt))return!1;if(e){const s=t.tr,a=bs(t.schema).cell.createAndFill().content;n.forEachCell((i,o)=>{i.content.eq(a)||s.replace(s.mapping.map(o+1),s.mapping.map(o+i.nodeSize-1),new Oe(a,0,0))}),s.docChanged&&e(s)}return!0}function bF(t){if(t.size===0)return null;let{content:e,openStart:n,openEnd:s}=t;for(;e.childCount==1&&(n>0&&s>0||e.child(0).type.spec.tableRole=="table");)n--,s--,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]s&&(g=g.type.createChecked(Uo(g.attrs,g.attrs.colspan,f+g.attrs.colspan-s),g.content)),h.push(g),f+=g.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 wF(t,e,n,s,a,i,o){const c=t.doc.type.schema,u=bs(c);let h,f;if(a>e.width)for(let m=0,g=0;me.height){const m=[];for(let N=0,j=(e.height-1)*e.width;N=e.width?!1:n.nodeAt(e.map[j+N]).type==u.header_cell;m.push(v?f||(f=u.header_cell.createAndFill()):h||(h=u.cell.createAndFill()))}const g=u.row.create(null,Ne.from(m)),y=[];for(let N=e.height;N{if(!a)return!1;const i=n.selection;if(i instanceof Kt)return Ch(n,s,nt.near(i.$headCell,e));if(t!="horiz"&&!i.empty)return!1;const o=UC(a,t,e);if(o==null)return!1;if(t=="horiz")return Ch(n,s,nt.near(n.doc.resolve(i.head+e),e));{const c=n.doc.resolve(o),u=zC(c,t,e);let h;return u?h=nt.near(u,1):e<0?h=nt.near(n.doc.resolve(c.before(-1)),-1):h=nt.near(n.doc.resolve(c.after(-1)),1),Ch(n,s,h)}}}function gh(t,e){return(n,s,a)=>{if(!a)return!1;const i=n.selection;let o;if(i instanceof Kt)o=i;else{const u=UC(a,t,e);if(u==null)return!1;o=new Kt(n.doc.resolve(u))}const c=zC(o.$headCell,t,e);return c?Ch(n,s,new Kt(o.$anchorCell,c)):!1}}function kF(t,e){const n=t.state.doc,s=Wo(n.resolve(e));return s?(t.dispatch(t.state.tr.setSelection(new Kt(s))),!0):!1}function SF(t,e,n){if(!Lr(t.state))return!1;let s=bF(n);const a=t.state.selection;if(a instanceof Kt){s||(s={width:1,height:1,rows:[Ne.from($x(bs(t.state.schema).cell,n))]});const i=a.$anchorCell.node(-1),o=a.$anchorCell.start(-1),c=mn.get(i).rectBetween(a.$anchorCell.pos-o,a.$headCell.pos-o);return s=NF(s,c.right-c.left,c.bottom-c.top),cw(t.state,t.dispatch,o,c,s),!0}else if(s){const i=rp(t.state),o=i.start(-1);return cw(t.state,t.dispatch,o,mn.get(i.node(-1)).findCell(i.pos-o),s),!0}else return!1}function CF(t,e){var n;if(e.button!=0||e.ctrlKey||e.metaKey)return;const s=dw(t,e.target);let a;if(e.shiftKey&&t.state.selection instanceof Kt)i(t.state.selection.$anchorCell,e),e.preventDefault();else if(e.shiftKey&&s&&(a=Wo(t.state.selection.$anchor))!=null&&((n=Og(t,e))===null||n===void 0?void 0:n.pos)!=a.pos)i(a,e),e.preventDefault();else if(!s)return;function i(u,h){let f=Og(t,h);const m=Ei.getState(t.state)==null;if(!f||!cy(u,f))if(m)f=u;else return;const g=new Kt(u,f);if(m||!t.state.selection.eq(g)){const y=t.state.tr.setSelection(g);m&&y.setMeta(Ei,u.pos),t.dispatch(y)}}function o(){t.root.removeEventListener("mouseup",o),t.root.removeEventListener("dragstart",o),t.root.removeEventListener("mousemove",c),Ei.getState(t.state)!=null&&t.dispatch(t.state.tr.setMeta(Ei,-1))}function c(u){const h=u,f=Ei.getState(t.state);let m;if(f!=null)m=t.state.doc.resolve(f);else if(dw(t,h.target)!=s&&(m=Og(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 UC(t,e,n){if(!(t.state.selection instanceof Xe))return null;const{$head:s}=t.state.selection;for(let a=s.depth-1;a>=0;a--){const i=s.node(a);if((n<0?s.index(a):s.indexAfter(a))!=(n<0?0:i.childCount))return null;if(i.type.spec.tableRole=="cell"||i.type.spec.tableRole=="header_cell"){const o=s.before(a),c=e=="vert"?n>0?"down":"up":n>0?"right":"left";return t.endOfTextblock(c)?o:null}}return null}function dw(t,e){for(;e&&e!=t.dom;e=e.parentNode)if(e.nodeName=="TD"||e.nodeName=="TH")return e;return null}function Og(t,e){const n=t.posAtCoords({left:e.clientX,top:e.clientY});if(!n)return null;let{inside:s,pos:a}=n;return s>=0&&Wo(t.state.doc.resolve(s))||Wo(t.state.doc.resolve(a))}var EF=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")),Bx(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,Bx(e,this.colgroup,this.table,this.defaultCellMinWidth),!0)}ignoreMutation(e){return e.type=="attributes"&&(e.target==this.table||this.colgroup.contains(e.target))}};function Bx(t,e,n,s,a,i){let o=0,c=!0,u=e.firstChild;const h=t.firstChild;if(h){for(let m=0,g=0;mnew s(m,n,g)),new MF(-1,!1)},apply(o,c){return c.apply(o)}},props:{attributes:o=>{const c=Js.getState(o);return c&&c.activeHandle>-1?{class:"resize-cursor"}:{}},handleDOMEvents:{mousemove:(o,c)=>{AF(o,c,t,a)},mouseleave:o=>{IF(o)},mousedown:(o,c)=>{RF(o,c,e,n)}},decorations:o=>{const c=Js.getState(o);if(c&&c.activeHandle>-1)return _F(o,c.activeHandle)},nodeViews:{}}});return i}var MF=class Eh{constructor(e,n){this.activeHandle=e,this.dragging=n}apply(e){const n=this,s=e.getMeta(Js);if(s&&s.setHandle!=null)return new Eh(s.setHandle,!1);if(s&&s.setDragging!==void 0)return new Eh(n.activeHandle,s.setDragging);if(n.activeHandle>-1&&e.docChanged){let a=e.mapping.map(n.activeHandle,-1);return Fx(e.doc.resolve(a))||(a=-1),new Eh(a,n.dragging)}return n}};function AF(t,e,n,s){if(!t.editable)return;const a=Js.getState(t.state);if(a&&!a.dragging){const i=OF(e.target);let o=-1;if(i){const{left:c,right:u}=i.getBoundingClientRect();e.clientX-c<=n?o=uw(t,e,"left",n):u-e.clientX<=n&&(o=uw(t,e,"right",n))}if(o!=a.activeHandle){if(!s&&o!==-1){const c=t.state.doc.resolve(o),u=c.node(-1),h=mn.get(u),f=c.start(-1);if(h.colCount(c.pos-f)+c.nodeAfter.attrs.colspan-1==h.width-1)return}KC(t,o)}}}function IF(t){if(!t.editable)return;const e=Js.getState(t.state);e&&e.activeHandle>-1&&!e.dragging&&KC(t,-1)}function RF(t,e,n,s){var a;if(!t.editable)return!1;const i=(a=t.dom.ownerDocument.defaultView)!==null&&a!==void 0?a:window,o=Js.getState(t.state);if(!o||o.activeHandle==-1||o.dragging)return!1;const c=t.state.doc.nodeAt(o.activeHandle),u=PF(t,o.activeHandle,c.attrs);t.dispatch(t.state.tr.setMeta(Js,{setDragging:{startX:e.clientX,startWidth:u}}));function h(m){i.removeEventListener("mouseup",h),i.removeEventListener("mousemove",f);const g=Js.getState(t.state);g!=null&&g.dragging&&(DF(t,g.activeHandle,hw(g.dragging,m,n)),t.dispatch(t.state.tr.setMeta(Js,{setDragging:null})))}function f(m){if(!m.which)return h(m);const g=Js.getState(t.state);if(g&&g.dragging){const y=hw(g.dragging,m,n);fw(t,g.activeHandle,y,s)}}return fw(t,o.activeHandle,u,s),i.addEventListener("mouseup",h),i.addEventListener("mousemove",f),e.preventDefault(),!0}function PF(t,e,{colspan:n,colwidth:s}){const a=s&&s[s.length-1];if(a)return a;const i=t.domAtPos(e);let o=i.node.childNodes[i.offset].offsetWidth,c=n;if(s)for(let u=0;u{var e,n;const s=t.getAttribute("colwidth"),a=s?s.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",Et(this.options.HTMLAttributes,t),0]}}),GC=An.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(s=>parseInt(s,10)):null}}}},tableRole:"header_cell",isolating:!0,parseHTML(){return[{tag:"th"}]},renderHTML({HTMLAttributes:t}){return["th",Et(this.options.HTMLAttributes,t),0]}}),JC=An.create({name:"tableRow",addOptions(){return{HTMLAttributes:{}}},content:"(tableCell | tableHeader)*",tableRole:"row",parseHTML(){return[{tag:"tr"}]},renderHTML({HTMLAttributes:t}){return["tr",Et(this.options.HTMLAttributes,t),0]}});function Vx(t,e){return e?["width",`${Math.max(e,t)}px`]:["min-width",`${t}px`]}function pw(t,e,n,s,a,i){var o;let c=0,u=!0,h=e.firstChild;const f=t.firstChild;if(f!==null)for(let g=0,y=0;g{const s=t.nodes[n];s.spec.tableRole&&(e[s.spec.tableRole]=s)}),t.cached.tableNodeTypes=e,e}function VF(t,e,n,s,a){const i=BF(t),o=[],c=[];for(let h=0;h{const{selection:e}=t.state;if(!HF(e))return!1;let n=0;const s=R2(e.ranges[0].$from,i=>i.type.name==="table");return s==null||s.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},WF="";function UF(t){return(t||"").replace(/\s+/g," ").trim()}function KF(t,e,n={}){var s;const a=(s=n.cellLineSeparator)!=null?s:WF;if(!t||!t.content||t.content.length===0)return"";const i=[];t.content.forEach(N=>{const j=[];N.content&&N.content.forEach(v=>{let k="";v.content&&Array.isArray(v.content)&&v.content.length>1?k=v.content.map(P=>e.renderChildren(P)).join(a):k=v.content?e.renderChildren(v.content):"";const C=UF(k),E=v.type==="tableHeader";j.push({text:C,isHeader:E})}),i.push(j)});const o=i.reduce((N,j)=>Math.max(N,j.length),0);if(o===0)return"";const c=new Array(o).fill(0);i.forEach(N=>{var j;for(let v=0;vc[v]&&(c[v]=C),c[v]<3&&(c[v]=3)}});const u=(N,j)=>N+" ".repeat(Math.max(0,j-N.length)),h=i[0],f=h.some(N=>N.isHeader);let m=` +`;const g=new Array(o).fill(0).map((N,j)=>f&&h[j]&&h[j].text||"");return m+=`| ${g.map((N,j)=>u(N,c[j])).join(" | ")} | +`,m+=`| ${c.map(N=>"-".repeat(Math.max(3,N))).join(" | ")} | +`,(f?i.slice(1):i).forEach(N=>{m+=`| ${new Array(o).fill(0).map((j,v)=>u(N[v]&&N[v].text||"",c[v])).join(" | ")} | +`}),m}var qF=KF,YC=An.create({name:"table",addOptions(){return{HTMLAttributes:{},resizable:!1,renderWrapper:!1,handleWidth:5,cellMinWidth:25,View:FF,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:s,tableMinWidth:a}=$F(t,this.options.cellMinWidth),i=e.style;function o(){return i||(s?`width: ${s}`:`min-width: ${a}`)}const c=["table",Et(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 s=[];t.header.forEach(a=>{s.push(e.createNode("tableHeader",{},[{type:"paragraph",content:e.parseInline(a.tokens)}]))}),n.push(e.createNode("tableRow",{},s))}return t.rows&&t.rows.forEach(s=>{const a=[];s.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)=>qF(t,e),addCommands(){return{insertTable:({rows:t=3,cols:e=3,withHeaderRow:n=!0}={})=>({tr:s,dispatch:a,editor:i})=>{const o=VF(i.schema,t,e,n);if(a){const c=s.selection.from+1;s.replaceSelectionWith(o).scrollIntoView().setSelection(Xe.near(s.doc.resolve(c)))}return!0},addColumnBefore:()=>({state:t,dispatch:e})=>sF(t,e),addColumnAfter:()=>({state:t,dispatch:e})=>rF(t,e),deleteColumn:()=>({state:t,dispatch:e})=>iF(t,e),addRowBefore:()=>({state:t,dispatch:e})=>lF(t,e),addRowAfter:()=>({state:t,dispatch:e})=>cF(t,e),deleteRow:()=>({state:t,dispatch:e})=>uF(t,e),deleteTable:()=>({state:t,dispatch:e})=>yF(t,e),mergeCells:()=>({state:t,dispatch:e})=>sw(t,e),splitCell:()=>({state:t,dispatch:e})=>rw(t,e),toggleHeaderColumn:()=>({state:t,dispatch:e})=>zd("column")(t,e),toggleHeaderRow:()=>({state:t,dispatch:e})=>zd("row")(t,e),toggleHeaderCell:()=>({state:t,dispatch:e})=>gF(t,e),mergeOrSplit:()=>({state:t,dispatch:e})=>sw(t,e)?!0:rw(t,e),setCellAttribute:(t,e)=>({state:n,dispatch:s})=>pF(t,e)(n,s),goToNextCell:()=>({state:t,dispatch:e})=>iw(1)(t,e),goToPreviousCell:()=>({state:t,dispatch:e})=>iw(-1)(t,e),fixTables:()=>({state:t,dispatch:e})=>(e&&VC(t),!0),setCellSelection:t=>({tr:e,dispatch:n})=>{if(n){const s=Kt.create(e.doc,t.anchorCell,t.headCell);e.setSelection(s)}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:xh,"Mod-Backspace":xh,Delete:xh,"Mod-Delete":xh}},addProseMirrorPlugins(){return[...this.options.resizable&&this.editor.isEditable?[TF({handleWidth:this.options.handleWidth,cellMinWidth:this.options.cellMinWidth,defaultCellMinWidth:this.options.cellMinWidth,View:this.options.View,lastColumnResizable:this.options.lastColumnResizable})]:[],zF({allowTableNodeSelection:this.options.allowTableNodeSelection})]},extendNodeSchema(t){const e={name:t.name,options:t.options,storage:t.storage};return{tableRole:St(Ge(t,"tableRole",e))}}});gn.create({name:"tableKit",addExtensions(){const t=[];return this.options.table!==!1&&t.push(YC.configure(this.options.table)),this.options.tableCell!==!1&&t.push(qC.configure(this.options.tableCell)),this.options.tableHeader!==!1&&t.push(GC.configure(this.options.tableHeader)),this.options.tableRow!==!1&&t.push(JC.configure(this.options.tableRow)),t}});function GF(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 gw(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(` +`),s=[];for(const a of n){const i=a.trim();i&&(/^<(?:h[1-6]|blockquote|hr|li|ul|ol|table|img)/.test(i)?s.push(i):s.push(`

    ${i}

    `))}return s.join("")}const JF=An.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",Et(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 xw(t){const e=document.createElement("div");return e.textContent=t,e.innerHTML}const YF=t=>({items:({query:e})=>t.filter(n=>n.name.toLowerCase().includes(e.toLowerCase())||n.id.includes(e)).slice(0,8),render:()=>{let e=null,n=0,s=[],a=null;const i=()=>{e&&(e.innerHTML=s.map((o,c)=>`
    + @${xw(o.name)} + ${xw(o.label||o.id)} +
    `).join(""),e.querySelectorAll(".mention-item").forEach(o=>{o.addEventListener("click",()=>{const c=parseInt(o.getAttribute("data-index")||"0");a&&s[c]&&a({id:s[c].id,label:s[c].name})})}))};return{onStart:o=>{if(e=document.createElement("div"),e.className="mention-popup",document.body.appendChild(e),s=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(s=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(s.length-1,n+1),i(),!0):o.event.key==="Enter"?(a&&s[n]&&a({id:s[n].id,label:s[n].name}),!0):o.event.key==="Escape"?(e==null||e.remove(),e=null,!0):!1,onExit:()=>{e==null||e.remove(),e=null}}}});function QF(t){var s;const e=[],n=(s=t.clipboardData)==null?void 0:s.items;if(!n)return e;for(let a=0;a{const u=b.useRef(null),h=b.useRef(null),[f,m]=b.useState(""),[g,y]=b.useState(!1),N=b.useRef(gw(t)),j=b.useCallback((M,P)=>{var O;const H=h.current;if(!H||!n)return!1;const L=QF(P);if(L.length>0)return P.preventDefault(),(async()=>{for(const se of L)try{const ie=await n(se);ie&&H.chain().focus().setImage({src:ie}).run()}catch(ie){console.error("粘贴图片上传失败",ie)}})(),!0;const R=(O=P.clipboardData)==null?void 0:O.getData("text/html");if(R&&/data:image\/[^;"']+;base64,/i.test(R)){P.preventDefault();const{from:se,to:ie}=H.state.selection;return(async()=>{try{const z=await e$(R,n);H.chain().focus().insertContentAt({from:se,to:ie},z).run()}catch(z){console.error("粘贴 HTML 内 base64 转换失败",z)}})(),!0}return!1},[n]),v=W_({extensions:[Iz.configure({link:{openOnClick:!1,HTMLAttributes:{class:"rich-link"}}}),Oz.configure({inline:!0,allowBase64:!0}),$z.configure({HTMLAttributes:{class:"mention-tag"},suggestion:YF(s)}),JF,Bz.configure({placeholder:i}),YC.configure({resizable:!0}),JC,qC,GC],content:N.current,onUpdate:({editor:M})=>{e(M.getHTML())},editorProps:{attributes:{class:"rich-editor-content"},handlePaste:j}});b.useEffect(()=>{h.current=v??null},[v]),b.useImperativeHandle(c,()=>({getHTML:()=>(v==null?void 0:v.getHTML())||"",getMarkdown:()=>GF((v==null?void 0:v.getHTML())||"")})),b.useEffect(()=>{if(v&&t!==v.getHTML()){const M=gw(t);M!==v.getHTML()&&v.commands.setContent(M)}},[t]);const k=b.useCallback(async M=>{var H;const P=(H=M.target.files)==null?void 0:H[0];if(!(!P||!v)){if(n){const L=await n(P);L&&v.chain().focus().setImage({src:L}).run()}else{const L=new FileReader;L.onload=()=>{typeof L.result=="string"&&v.chain().focus().setImage({src:L.result}).run()},L.readAsDataURL(P)}M.target.value=""}},[v,n]),C=b.useCallback(M=>{v&&v.chain().focus().insertContent({type:"linkTag",attrs:{label:M.label,url:M.url||"",tagType:M.type||"url",tagId:M.id||"",pagePath:M.pagePath||"",appId:M.appId||"",mpKey:M.type==="miniprogram"&&M.appId||""}}).run()},[v]),E=b.useCallback(()=>{!v||!f||(v.chain().focus().setLink({href:f}).run(),m(""),y(!1))},[v,f]);return v?r.jsxs("div",{className:`rich-editor-wrapper ${o||""}`,children:[r.jsxs("div",{className:"rich-editor-toolbar",children:[r.jsxs("div",{className:"toolbar-group",children:[r.jsx("button",{onClick:()=>v.chain().focus().toggleBold().run(),className:v.isActive("bold")?"is-active":"",type:"button",children:r.jsx(HT,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleItalic().run(),className:v.isActive("italic")?"is-active":"",type:"button",children:r.jsx(BM,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleStrike().run(),className:v.isActive("strike")?"is-active":"",type:"button",children:r.jsx(_5,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleCode().run(),className:v.isActive("code")?"is-active":"",type:"button",children:r.jsx(cM,{className:"w-4 h-4"})})]}),r.jsx("div",{className:"toolbar-divider"}),r.jsxs("div",{className:"toolbar-group",children:[r.jsx("button",{onClick:()=>v.chain().focus().toggleHeading({level:1}).run(),className:v.isActive("heading",{level:1})?"is-active":"",type:"button",children:r.jsx(IM,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleHeading({level:2}).run(),className:v.isActive("heading",{level:2})?"is-active":"",type:"button",children:r.jsx(PM,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleHeading({level:3}).run(),className:v.isActive("heading",{level:3})?"is-active":"",type:"button",children:r.jsx(DM,{className:"w-4 h-4"})})]}),r.jsx("div",{className:"toolbar-divider"}),r.jsxs("div",{className:"toolbar-group",children:[r.jsx("button",{onClick:()=>v.chain().focus().toggleBulletList().run(),className:v.isActive("bulletList")?"is-active":"",type:"button",children:r.jsx(YM,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleOrderedList().run(),className:v.isActive("orderedList")?"is-active":"",type:"button",children:r.jsx(GM,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().toggleBlockquote().run(),className:v.isActive("blockquote")?"is-active":"",type:"button",children:r.jsx(w5,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().setHorizontalRule().run(),type:"button",children:r.jsx(o5,{className:"w-4 h-4"})})]}),r.jsx("div",{className:"toolbar-divider"}),r.jsxs("div",{className:"toolbar-group",children:[r.jsx("input",{ref:u,type:"file",accept:"image/*",onChange:k,className:"hidden"}),r.jsx("button",{onClick:()=>{var M;return(M=u.current)==null?void 0:M.click()},type:"button",children:r.jsx(dj,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>y(!g),className:v.isActive("link")?"is-active":"",type:"button",children:r.jsx(Jg,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().insertTable({rows:3,cols:3,withHeaderRow:!0}).run(),type:"button",children:r.jsx(F5,{className:"w-4 h-4"})})]}),r.jsx("div",{className:"toolbar-divider"}),r.jsxs("div",{className:"toolbar-group",children:[r.jsx("button",{onClick:()=>v.chain().focus().undo().run(),disabled:!v.can().undo(),type:"button",children:r.jsx(K5,{className:"w-4 h-4"})}),r.jsx("button",{onClick:()=>v.chain().focus().redo().run(),disabled:!v.can().redo(),type:"button",children:r.jsx(k5,{className:"w-4 h-4"})})]}),a.length>0&&r.jsxs(r.Fragment,{children:[r.jsx("div",{className:"toolbar-divider"}),r.jsx("div",{className:"toolbar-group",children:r.jsxs("select",{className:"link-tag-select",onChange:M=>{const P=a.find(H=>H.id===M.target.value);P&&C(P),M.target.value=""},defaultValue:"",children:[r.jsx("option",{value:"",disabled:!0,children:"# 插入链接标签"}),a.map(M=>r.jsx("option",{value:M.id,children:M.label},M.id))]})})]})]}),g&&r.jsxs("div",{className:"link-input-bar",children:[r.jsx("input",{type:"url",placeholder:"输入链接地址...",value:f,onChange:M=>m(M.target.value),onKeyDown:M=>M.key==="Enter"&&E(),className:"link-input"}),r.jsx("button",{onClick:E,className:"link-confirm",type:"button",children:"确定"}),r.jsx("button",{onClick:()=>{v.chain().focus().unsetLink().run(),y(!1)},className:"link-remove",type:"button",children:"移除"})]}),r.jsx(oC,{editor:v})]}):null});Hx.displayName="RichEditor";const t$=["top","right","bottom","left"],Vi=Math.min,qs=Math.max,Ef=Math.round,yh=Math.floor,sa=t=>({x:t,y:t}),n$={left:"right",right:"left",bottom:"top",top:"bottom"},s$={start:"end",end:"start"};function Wx(t,e,n){return qs(t,Vi(e,n))}function Ua(t,e){return typeof t=="function"?t(e):t}function Ka(t){return t.split("-")[0]}function oc(t){return t.split("-")[1]}function dy(t){return t==="x"?"y":"x"}function uy(t){return t==="y"?"height":"width"}const r$=new Set(["top","bottom"]);function na(t){return r$.has(Ka(t))?"y":"x"}function hy(t){return dy(na(t))}function a$(t,e,n){n===void 0&&(n=!1);const s=oc(t),a=hy(t),i=uy(a);let o=a==="x"?s===(n?"end":"start")?"right":"left":s==="start"?"bottom":"top";return e.reference[i]>e.floating[i]&&(o=Tf(o)),[o,Tf(o)]}function i$(t){const e=Tf(t);return[Ux(t),e,Ux(e)]}function Ux(t){return t.replace(/start|end/g,e=>s$[e])}const yw=["left","right"],bw=["right","left"],o$=["top","bottom"],l$=["bottom","top"];function c$(t,e,n){switch(t){case"top":case"bottom":return n?e?bw:yw:e?yw:bw;case"left":case"right":return e?o$:l$;default:return[]}}function d$(t,e,n,s){const a=oc(t);let i=c$(Ka(t),n==="start",s);return a&&(i=i.map(o=>o+"-"+a),e&&(i=i.concat(i.map(Ux)))),i}function Tf(t){return t.replace(/left|right|bottom|top/g,e=>n$[e])}function u$(t){return{top:0,right:0,bottom:0,left:0,...t}}function QC(t){return typeof t!="number"?u$(t):{top:t,right:t,bottom:t,left:t}}function Mf(t){const{x:e,y:n,width:s,height:a}=t;return{width:s,height:a,top:n,left:e,right:e+s,bottom:n+a,x:e,y:n}}function vw(t,e,n){let{reference:s,floating:a}=t;const i=na(e),o=hy(e),c=uy(o),u=Ka(e),h=i==="y",f=s.x+s.width/2-a.width/2,m=s.y+s.height/2-a.height/2,g=s[c]/2-a[c]/2;let y;switch(u){case"top":y={x:f,y:s.y-a.height};break;case"bottom":y={x:f,y:s.y+s.height};break;case"right":y={x:s.x+s.width,y:m};break;case"left":y={x:s.x-a.width,y:m};break;default:y={x:s.x,y:s.y}}switch(oc(e)){case"start":y[o]-=g*(n&&h?-1:1);break;case"end":y[o]+=g*(n&&h?-1:1);break}return y}async function h$(t,e){var n;e===void 0&&(e={});const{x:s,y:a,platform:i,rects:o,elements:c,strategy:u}=t,{boundary:h="clippingAncestors",rootBoundary:f="viewport",elementContext:m="floating",altBoundary:g=!1,padding:y=0}=Ua(e,t),N=QC(y),v=c[g?m==="floating"?"reference":"floating":m],k=Mf(await i.getClippingRect({element:(n=await(i.isElement==null?void 0:i.isElement(v)))==null||n?v:v.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(c.floating)),boundary:h,rootBoundary:f,strategy:u})),C=m==="floating"?{x:s,y:a,width:o.floating.width,height:o.floating.height}:o.reference,E=await(i.getOffsetParent==null?void 0:i.getOffsetParent(c.floating)),M=await(i.isElement==null?void 0:i.isElement(E))?await(i.getScale==null?void 0:i.getScale(E))||{x:1,y:1}:{x:1,y:1},P=Mf(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:c,rect:C,offsetParent:E,strategy:u}):C);return{top:(k.top-P.top+N.top)/M.y,bottom:(P.bottom-k.bottom+N.bottom)/M.y,left:(k.left-P.left+N.left)/M.x,right:(P.right-k.right+N.right)/M.x}}const f$=async(t,e,n)=>{const{placement:s="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}=vw(h,s,u),g=s,y={},N=0;for(let v=0;v({name:"arrow",options:t,async fn(e){const{x:n,y:s,placement:a,rects:i,platform:o,elements:c,middlewareData:u}=e,{element:h,padding:f=0}=Ua(t,e)||{};if(h==null)return{};const m=QC(f),g={x:n,y:s},y=hy(a),N=uy(y),j=await o.getDimensions(h),v=y==="y",k=v?"top":"left",C=v?"bottom":"right",E=v?"clientHeight":"clientWidth",M=i.reference[N]+i.reference[y]-g[y]-i.floating[N],P=g[y]-i.reference[y],H=await(o.getOffsetParent==null?void 0:o.getOffsetParent(h));let L=H?H[E]:0;(!L||!await(o.isElement==null?void 0:o.isElement(H)))&&(L=c.floating[E]||i.floating[N]);const R=M/2-P/2,O=L/2-j[N]/2-1,se=Vi(m[k],O),ie=Vi(m[C],O),z=se,ce=L-j[N]-ie,me=L/2-j[N]/2+R,_=Wx(z,me,ce),G=!u.arrow&&oc(a)!=null&&me!==_&&i.reference[N]/2-(meme<=0)){var ie,z;const me=(((ie=i.flip)==null?void 0:ie.index)||0)+1,_=L[me];if(_&&(!(m==="alignment"?C!==na(_):!1)||se.every(A=>na(A.placement)===C?A.overflows[0]>0:!0)))return{data:{index:me,overflows:se},reset:{placement:_}};let G=(z=se.filter($=>$.overflows[0]<=0).sort(($,A)=>$.overflows[1]-A.overflows[1])[0])==null?void 0:z.placement;if(!G)switch(y){case"bestFit":{var ce;const $=(ce=se.filter(A=>{if(H){const Y=na(A.placement);return Y===C||Y==="y"}return!0}).map(A=>[A.placement,A.overflows.filter(Y=>Y>0).reduce((Y,U)=>Y+U,0)]).sort((A,Y)=>A[1]-Y[1])[0])==null?void 0:ce[0];$&&(G=$);break}case"initialPlacement":G=c;break}if(a!==G)return{reset:{placement:G}}}return{}}}};function Nw(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 t$.some(e=>t[e]>=0)}const g$=function(t){return t===void 0&&(t={}),{name:"hide",options:t,async fn(e){const{rects:n,platform:s}=e,{strategy:a="referenceHidden",...i}=Ua(t,e);switch(a){case"referenceHidden":{const o=await s.detectOverflow(e,{...i,elementContext:"reference"}),c=Nw(o,n.reference);return{data:{referenceHiddenOffsets:c,referenceHidden:ww(c)}}}case"escaped":{const o=await s.detectOverflow(e,{...i,altBoundary:!0}),c=Nw(o,n.floating);return{data:{escapedOffsets:c,escaped:ww(c)}}}default:return{}}}}},XC=new Set(["left","top"]);async function x$(t,e){const{placement:n,platform:s,elements:a}=t,i=await(s.isRTL==null?void 0:s.isRTL(a.floating)),o=Ka(n),c=oc(n),u=na(n)==="y",h=XC.has(o)?-1:1,f=i&&u?-1:1,m=Ua(e,t);let{mainAxis:g,crossAxis:y,alignmentAxis:N}=typeof m=="number"?{mainAxis:m,crossAxis:0,alignmentAxis:null}:{mainAxis:m.mainAxis||0,crossAxis:m.crossAxis||0,alignmentAxis:m.alignmentAxis};return c&&typeof N=="number"&&(y=c==="end"?N*-1:N),u?{x:y*f,y:g*h}:{x:g*h,y:y*f}}const y$=function(t){return t===void 0&&(t=0),{name:"offset",options:t,async fn(e){var n,s;const{x:a,y:i,placement:o,middlewareData:c}=e,u=await x$(e,t);return o===((n=c.offset)==null?void 0:n.placement)&&(s=c.arrow)!=null&&s.alignmentOffset?{}:{x:a+u.x,y:i+u.y,data:{...u,placement:o}}}}},b$=function(t){return t===void 0&&(t={}),{name:"shift",options:t,async fn(e){const{x:n,y:s,placement:a,platform:i}=e,{mainAxis:o=!0,crossAxis:c=!1,limiter:u={fn:k=>{let{x:C,y:E}=k;return{x:C,y:E}}},...h}=Ua(t,e),f={x:n,y:s},m=await i.detectOverflow(e,h),g=na(Ka(a)),y=dy(g);let N=f[y],j=f[g];if(o){const k=y==="y"?"top":"left",C=y==="y"?"bottom":"right",E=N+m[k],M=N-m[C];N=Wx(E,N,M)}if(c){const k=g==="y"?"top":"left",C=g==="y"?"bottom":"right",E=j+m[k],M=j-m[C];j=Wx(E,j,M)}const v=u.fn({...e,[y]:N,[g]:j});return{...v,data:{x:v.x-n,y:v.y-s,enabled:{[y]:o,[g]:c}}}}}},v$=function(t){return t===void 0&&(t={}),{options:t,fn(e){const{x:n,y:s,placement:a,rects:i,middlewareData:o}=e,{offset:c=0,mainAxis:u=!0,crossAxis:h=!0}=Ua(t,e),f={x:n,y:s},m=na(a),g=dy(m);let y=f[g],N=f[m];const j=Ua(c,e),v=typeof j=="number"?{mainAxis:j,crossAxis:0}:{mainAxis:0,crossAxis:0,...j};if(u){const E=g==="y"?"height":"width",M=i.reference[g]-i.floating[E]+v.mainAxis,P=i.reference[g]+i.reference[E]-v.mainAxis;yP&&(y=P)}if(h){var k,C;const E=g==="y"?"width":"height",M=XC.has(Ka(a)),P=i.reference[m]-i.floating[E]+(M&&((k=o.offset)==null?void 0:k[m])||0)+(M?0:v.crossAxis),H=i.reference[m]+i.reference[E]+(M?0:((C=o.offset)==null?void 0:C[m])||0)-(M?v.crossAxis:0);NH&&(N=H)}return{[g]:y,[m]:N}}}},N$=function(t){return t===void 0&&(t={}),{name:"size",options:t,async fn(e){var n,s;const{placement:a,rects:i,platform:o,elements:c}=e,{apply:u=()=>{},...h}=Ua(t,e),f=await o.detectOverflow(e,h),m=Ka(a),g=oc(a),y=na(a)==="y",{width:N,height:j}=i.floating;let v,k;m==="top"||m==="bottom"?(v=m,k=g===(await(o.isRTL==null?void 0:o.isRTL(c.floating))?"start":"end")?"left":"right"):(k=m,v=g==="end"?"top":"bottom");const C=j-f.top-f.bottom,E=N-f.left-f.right,M=Vi(j-f[v],C),P=Vi(N-f[k],E),H=!e.middlewareData.shift;let L=M,R=P;if((n=e.middlewareData.shift)!=null&&n.enabled.x&&(R=E),(s=e.middlewareData.shift)!=null&&s.enabled.y&&(L=C),H&&!g){const se=qs(f.left,0),ie=qs(f.right,0),z=qs(f.top,0),ce=qs(f.bottom,0);y?R=N-2*(se!==0||ie!==0?se+ie:qs(f.left,f.right)):L=j-2*(z!==0||ce!==0?z+ce:qs(f.top,f.bottom))}await u({...e,availableWidth:R,availableHeight:L});const O=await o.getDimensions(c.floating);return N!==O.width||j!==O.height?{reset:{rects:!0}}:{}}}};function ap(){return typeof window<"u"}function lc(t){return ZC(t)?(t.nodeName||"").toLowerCase():"#document"}function Xs(t){var e;return(t==null||(e=t.ownerDocument)==null?void 0:e.defaultView)||window}function ca(t){var e;return(e=(ZC(t)?t.ownerDocument:t.document)||window.document)==null?void 0:e.documentElement}function ZC(t){return ap()?t instanceof Node||t instanceof Xs(t).Node:!1}function Pr(t){return ap()?t instanceof Element||t instanceof Xs(t).Element:!1}function oa(t){return ap()?t instanceof HTMLElement||t instanceof Xs(t).HTMLElement:!1}function jw(t){return!ap()||typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof Xs(t).ShadowRoot}const w$=new Set(["inline","contents"]);function Jd(t){const{overflow:e,overflowX:n,overflowY:s,display:a}=Or(t);return/auto|scroll|overlay|hidden|clip/.test(e+s+n)&&!w$.has(a)}const j$=new Set(["table","td","th"]);function k$(t){return j$.has(lc(t))}const S$=[":popover-open",":modal"];function ip(t){return S$.some(e=>{try{return t.matches(e)}catch{return!1}})}const C$=["transform","translate","scale","rotate","perspective"],E$=["transform","translate","scale","rotate","perspective","filter"],T$=["paint","layout","strict","content"];function fy(t){const e=py(),n=Pr(t)?Or(t):t;return C$.some(s=>n[s]?n[s]!=="none":!1)||(n.containerType?n.containerType!=="normal":!1)||!e&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!e&&(n.filter?n.filter!=="none":!1)||E$.some(s=>(n.willChange||"").includes(s))||T$.some(s=>(n.contain||"").includes(s))}function M$(t){let e=Hi(t);for(;oa(e)&&!Xl(e);){if(fy(e))return e;if(ip(e))return null;e=Hi(e)}return null}function py(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}const A$=new Set(["html","body","#document"]);function Xl(t){return A$.has(lc(t))}function Or(t){return Xs(t).getComputedStyle(t)}function op(t){return Pr(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.scrollX,scrollTop:t.scrollY}}function Hi(t){if(lc(t)==="html")return t;const e=t.assignedSlot||t.parentNode||jw(t)&&t.host||ca(t);return jw(e)?e.host:e}function e4(t){const e=Hi(t);return Xl(e)?t.ownerDocument?t.ownerDocument.body:t.body:oa(e)&&Jd(e)?e:e4(e)}function Fd(t,e,n){var s;e===void 0&&(e=[]),n===void 0&&(n=!0);const a=e4(t),i=a===((s=t.ownerDocument)==null?void 0:s.body),o=Xs(a);if(i){const c=Kx(o);return e.concat(o,o.visualViewport||[],Jd(a)?a:[],c&&n?Fd(c):[])}return e.concat(a,Fd(a,[],n))}function Kx(t){return t.parent&&Object.getPrototypeOf(t.parent)?t.frameElement:null}function t4(t){const e=Or(t);let n=parseFloat(e.width)||0,s=parseFloat(e.height)||0;const a=oa(t),i=a?t.offsetWidth:n,o=a?t.offsetHeight:s,c=Ef(n)!==i||Ef(s)!==o;return c&&(n=i,s=o),{width:n,height:s,$:c}}function my(t){return Pr(t)?t:t.contextElement}function Hl(t){const e=my(t);if(!oa(e))return sa(1);const n=e.getBoundingClientRect(),{width:s,height:a,$:i}=t4(e);let o=(i?Ef(n.width):n.width)/s,c=(i?Ef(n.height):n.height)/a;return(!o||!Number.isFinite(o))&&(o=1),(!c||!Number.isFinite(c))&&(c=1),{x:o,y:c}}const I$=sa(0);function n4(t){const e=Xs(t);return!py()||!e.visualViewport?I$:{x:e.visualViewport.offsetLeft,y:e.visualViewport.offsetTop}}function R$(t,e,n){return e===void 0&&(e=!1),!n||e&&n!==Xs(t)?!1:e}function Ko(t,e,n,s){e===void 0&&(e=!1),n===void 0&&(n=!1);const a=t.getBoundingClientRect(),i=my(t);let o=sa(1);e&&(s?Pr(s)&&(o=Hl(s)):o=Hl(t));const c=R$(i,n,s)?n4(i):sa(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 g=Xs(i),y=s&&Pr(s)?Xs(s):s;let N=g,j=Kx(N);for(;j&&s&&y!==N;){const v=Hl(j),k=j.getBoundingClientRect(),C=Or(j),E=k.left+(j.clientLeft+parseFloat(C.paddingLeft))*v.x,M=k.top+(j.clientTop+parseFloat(C.paddingTop))*v.y;u*=v.x,h*=v.y,f*=v.x,m*=v.y,u+=E,h+=M,N=Xs(j),j=Kx(N)}}return Mf({width:f,height:m,x:u,y:h})}function lp(t,e){const n=op(t).scrollLeft;return e?e.left+n:Ko(ca(t)).left+n}function s4(t,e){const n=t.getBoundingClientRect(),s=n.left+e.scrollLeft-lp(t,n),a=n.top+e.scrollTop;return{x:s,y:a}}function P$(t){let{elements:e,rect:n,offsetParent:s,strategy:a}=t;const i=a==="fixed",o=ca(s),c=e?ip(e.floating):!1;if(s===o||c&&i)return n;let u={scrollLeft:0,scrollTop:0},h=sa(1);const f=sa(0),m=oa(s);if((m||!m&&!i)&&((lc(s)!=="body"||Jd(o))&&(u=op(s)),oa(s))){const y=Ko(s);h=Hl(s),f.x=y.x+s.clientLeft,f.y=y.y+s.clientTop}const g=o&&!m&&!i?s4(o,u):sa(0);return{width:n.width*h.x,height:n.height*h.y,x:n.x*h.x-u.scrollLeft*h.x+f.x+g.x,y:n.y*h.y-u.scrollTop*h.y+f.y+g.y}}function O$(t){return Array.from(t.getClientRects())}function D$(t){const e=ca(t),n=op(t),s=t.ownerDocument.body,a=qs(e.scrollWidth,e.clientWidth,s.scrollWidth,s.clientWidth),i=qs(e.scrollHeight,e.clientHeight,s.scrollHeight,s.clientHeight);let o=-n.scrollLeft+lp(t);const c=-n.scrollTop;return Or(s).direction==="rtl"&&(o+=qs(e.clientWidth,s.clientWidth)-a),{width:a,height:i,x:o,y:c}}const kw=25;function L$(t,e){const n=Xs(t),s=ca(t),a=n.visualViewport;let i=s.clientWidth,o=s.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=lp(s);if(h<=0){const f=s.ownerDocument,m=f.body,g=getComputedStyle(m),y=f.compatMode==="CSS1Compat"&&parseFloat(g.marginLeft)+parseFloat(g.marginRight)||0,N=Math.abs(s.clientWidth-m.clientWidth-y);N<=kw&&(i-=N)}else h<=kw&&(i+=h);return{width:i,height:o,x:c,y:u}}const _$=new Set(["absolute","fixed"]);function z$(t,e){const n=Ko(t,!0,e==="fixed"),s=n.top+t.clientTop,a=n.left+t.clientLeft,i=oa(t)?Hl(t):sa(1),o=t.clientWidth*i.x,c=t.clientHeight*i.y,u=a*i.x,h=s*i.y;return{width:o,height:c,x:u,y:h}}function Sw(t,e,n){let s;if(e==="viewport")s=L$(t,n);else if(e==="document")s=D$(ca(t));else if(Pr(e))s=z$(e,n);else{const a=n4(t);s={x:e.x-a.x,y:e.y-a.y,width:e.width,height:e.height}}return Mf(s)}function r4(t,e){const n=Hi(t);return n===e||!Pr(n)||Xl(n)?!1:Or(n).position==="fixed"||r4(n,e)}function F$(t,e){const n=e.get(t);if(n)return n;let s=Fd(t,[],!1).filter(c=>Pr(c)&&lc(c)!=="body"),a=null;const i=Or(t).position==="fixed";let o=i?Hi(t):t;for(;Pr(o)&&!Xl(o);){const c=Or(o),u=fy(o);!u&&c.position==="fixed"&&(a=null),(i?!u&&!a:!u&&c.position==="static"&&!!a&&_$.has(a.position)||Jd(o)&&!u&&r4(t,o))?s=s.filter(f=>f!==o):a=c,o=Hi(o)}return e.set(t,s),s}function $$(t){let{element:e,boundary:n,rootBoundary:s,strategy:a}=t;const o=[...n==="clippingAncestors"?ip(e)?[]:F$(e,this._c):[].concat(n),s],c=o[0],u=o.reduce((h,f)=>{const m=Sw(e,f,a);return h.top=qs(m.top,h.top),h.right=Vi(m.right,h.right),h.bottom=Vi(m.bottom,h.bottom),h.left=qs(m.left,h.left),h},Sw(e,c,a));return{width:u.right-u.left,height:u.bottom-u.top,x:u.left,y:u.top}}function B$(t){const{width:e,height:n}=t4(t);return{width:e,height:n}}function V$(t,e,n){const s=oa(e),a=ca(e),i=n==="fixed",o=Ko(t,!0,i,e);let c={scrollLeft:0,scrollTop:0};const u=sa(0);function h(){u.x=lp(a)}if(s||!s&&!i)if((lc(e)!=="body"||Jd(a))&&(c=op(e)),s){const y=Ko(e,!0,i,e);u.x=y.x+e.clientLeft,u.y=y.y+e.clientTop}else a&&h();i&&!s&&a&&h();const f=a&&!s&&!i?s4(a,c):sa(0),m=o.left+c.scrollLeft-u.x-f.x,g=o.top+c.scrollTop-u.y-f.y;return{x:m,y:g,width:o.width,height:o.height}}function Dg(t){return Or(t).position==="static"}function Cw(t,e){if(!oa(t)||Or(t).position==="fixed")return null;if(e)return e(t);let n=t.offsetParent;return ca(t)===n&&(n=n.ownerDocument.body),n}function a4(t,e){const n=Xs(t);if(ip(t))return n;if(!oa(t)){let a=Hi(t);for(;a&&!Xl(a);){if(Pr(a)&&!Dg(a))return a;a=Hi(a)}return n}let s=Cw(t,e);for(;s&&k$(s)&&Dg(s);)s=Cw(s,e);return s&&Xl(s)&&Dg(s)&&!fy(s)?n:s||M$(t)||n}const H$=async function(t){const e=this.getOffsetParent||a4,n=this.getDimensions,s=await n(t.floating);return{reference:V$(t.reference,await e(t.floating),t.strategy),floating:{x:0,y:0,width:s.width,height:s.height}}};function W$(t){return Or(t).direction==="rtl"}const U$={convertOffsetParentRelativeRectToViewportRelativeRect:P$,getDocumentElement:ca,getClippingRect:$$,getOffsetParent:a4,getElementRects:H$,getClientRects:O$,getDimensions:B$,getScale:Hl,isElement:Pr,isRTL:W$};function i4(t,e){return t.x===e.x&&t.y===e.y&&t.width===e.width&&t.height===e.height}function K$(t,e){let n=null,s;const a=ca(t);function i(){var c;clearTimeout(s),(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:g,height:y}=h;if(c||e(),!g||!y)return;const N=yh(m),j=yh(a.clientWidth-(f+g)),v=yh(a.clientHeight-(m+y)),k=yh(f),E={rootMargin:-N+"px "+-j+"px "+-v+"px "+-k+"px",threshold:qs(0,Vi(1,u))||1};let M=!0;function P(H){const L=H[0].intersectionRatio;if(L!==u){if(!M)return o();L?o(!1,L):s=setTimeout(()=>{o(!1,1e-7)},1e3)}L===1&&!i4(h,t.getBoundingClientRect())&&o(),M=!1}try{n=new IntersectionObserver(P,{...E,root:a.ownerDocument})}catch{n=new IntersectionObserver(P,E)}n.observe(t)}return o(!0),i}function q$(t,e,n,s){s===void 0&&(s={});const{ancestorScroll:a=!0,ancestorResize:i=!0,elementResize:o=typeof ResizeObserver=="function",layoutShift:c=typeof IntersectionObserver=="function",animationFrame:u=!1}=s,h=my(t),f=a||i?[...h?Fd(h):[],...Fd(e)]:[];f.forEach(k=>{a&&k.addEventListener("scroll",n,{passive:!0}),i&&k.addEventListener("resize",n)});const m=h&&c?K$(h,n):null;let g=-1,y=null;o&&(y=new ResizeObserver(k=>{let[C]=k;C&&C.target===h&&y&&(y.unobserve(e),cancelAnimationFrame(g),g=requestAnimationFrame(()=>{var E;(E=y)==null||E.observe(e)})),n()}),h&&!u&&y.observe(h),y.observe(e));let N,j=u?Ko(t):null;u&&v();function v(){const k=Ko(t);j&&!i4(j,k)&&n(),j=k,N=requestAnimationFrame(v)}return n(),()=>{var k;f.forEach(C=>{a&&C.removeEventListener("scroll",n),i&&C.removeEventListener("resize",n)}),m==null||m(),(k=y)==null||k.disconnect(),y=null,u&&cancelAnimationFrame(N)}}const G$=y$,J$=b$,Y$=m$,Q$=N$,X$=g$,Ew=p$,Z$=v$,eB=(t,e,n)=>{const s=new Map,a={platform:U$,...n},i={...a.platform,_c:s};return f$(t,e,{...a,platform:i})};var tB=typeof document<"u",nB=function(){},Th=tB?b.useLayoutEffect:nB;function Af(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,s,a;if(t&&e&&typeof t=="object"){if(Array.isArray(t)){if(n=t.length,n!==e.length)return!1;for(s=n;s--!==0;)if(!Af(t[s],e[s]))return!1;return!0}if(a=Object.keys(t),n=a.length,n!==Object.keys(e).length)return!1;for(s=n;s--!==0;)if(!{}.hasOwnProperty.call(e,a[s]))return!1;for(s=n;s--!==0;){const i=a[s];if(!(i==="_owner"&&t.$$typeof)&&!Af(t[i],e[i]))return!1}return!0}return t!==t&&e!==e}function o4(t){return typeof window>"u"?1:(t.ownerDocument.defaultView||window).devicePixelRatio||1}function Tw(t,e){const n=o4(t);return Math.round(e*n)/n}function Lg(t){const e=b.useRef(t);return Th(()=>{e.current=t}),e}function sB(t){t===void 0&&(t={});const{placement:e="bottom",strategy:n="absolute",middleware:s=[],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}),[g,y]=b.useState(s);Af(g,s)||y(s);const[N,j]=b.useState(null),[v,k]=b.useState(null),C=b.useCallback(A=>{A!==H.current&&(H.current=A,j(A))},[]),E=b.useCallback(A=>{A!==L.current&&(L.current=A,k(A))},[]),M=i||N,P=o||v,H=b.useRef(null),L=b.useRef(null),R=b.useRef(f),O=u!=null,se=Lg(u),ie=Lg(a),z=Lg(h),ce=b.useCallback(()=>{if(!H.current||!L.current)return;const A={placement:e,strategy:n,middleware:g};ie.current&&(A.platform=ie.current),eB(H.current,L.current,A).then(Y=>{const U={...Y,isPositioned:z.current!==!1};me.current&&!Af(R.current,U)&&(R.current=U,Bd.flushSync(()=>{m(U)}))})},[g,e,n,ie,z]);Th(()=>{h===!1&&R.current.isPositioned&&(R.current.isPositioned=!1,m(A=>({...A,isPositioned:!1})))},[h]);const me=b.useRef(!1);Th(()=>(me.current=!0,()=>{me.current=!1}),[]),Th(()=>{if(M&&(H.current=M),P&&(L.current=P),M&&P){if(se.current)return se.current(M,P,ce);ce()}},[M,P,ce,se,O]);const _=b.useMemo(()=>({reference:H,floating:L,setReference:C,setFloating:E}),[C,E]),G=b.useMemo(()=>({reference:M,floating:P}),[M,P]),$=b.useMemo(()=>{const A={position:n,left:0,top:0};if(!G.floating)return A;const Y=Tw(G.floating,f.x),U=Tw(G.floating,f.y);return c?{...A,transform:"translate("+Y+"px, "+U+"px)",...o4(G.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:Y,top:U}},[n,c,G.floating,f.x,f.y]);return b.useMemo(()=>({...f,update:ce,refs:_,elements:G,floatingStyles:$}),[f,ce,_,G,$])}const rB=t=>{function e(n){return{}.hasOwnProperty.call(n,"current")}return{name:"arrow",options:t,fn(n){const{element:s,padding:a}=typeof t=="function"?t(n):t;return s&&e(s)?s.current!=null?Ew({element:s.current,padding:a}).fn(n):{}:s?Ew({element:s,padding:a}).fn(n):{}}}},aB=(t,e)=>({...G$(t),options:[t,e]}),iB=(t,e)=>({...J$(t),options:[t,e]}),oB=(t,e)=>({...Z$(t),options:[t,e]}),lB=(t,e)=>({...Y$(t),options:[t,e]}),cB=(t,e)=>({...Q$(t),options:[t,e]}),dB=(t,e)=>({...X$(t),options:[t,e]}),uB=(t,e)=>({...rB(t),options:[t,e]});var hB="Arrow",l4=b.forwardRef((t,e)=>{const{children:n,width:s=10,height:a=5,...i}=t;return r.jsx(pt.svg,{...i,ref:e,width:s,height:a,viewBox:"0 0 30 10",preserveAspectRatio:"none",children:t.asChild?n:r.jsx("polygon",{points:"0,0 30,0 15,10"})})});l4.displayName=hB;var fB=l4,gy="Popper",[c4,d4]=qi(gy),[pB,u4]=c4(gy),h4=t=>{const{__scopePopper:e,children:n}=t,[s,a]=b.useState(null);return r.jsx(pB,{scope:e,anchor:s,onAnchorChange:a,children:n})};h4.displayName=gy;var f4="PopperAnchor",p4=b.forwardRef((t,e)=>{const{__scopePopper:n,virtualRef:s,...a}=t,i=u4(f4,n),o=b.useRef(null),c=Tt(e,o),u=b.useRef(null);return b.useEffect(()=>{const h=u.current;u.current=(s==null?void 0:s.current)||o.current,h!==u.current&&i.onAnchorChange(u.current)}),s?null:r.jsx(pt.div,{...a,ref:c})});p4.displayName=f4;var xy="PopperContent",[mB,gB]=c4(xy),m4=b.forwardRef((t,e)=>{var K,J,ge,ae,pe,Se;const{__scopePopper:n,side:s="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:g=!1,updatePositionStrategy:y="optimized",onPlaced:N,...j}=t,v=u4(xy,n),[k,C]=b.useState(null),E=Tt(e,tt=>C(tt)),[M,P]=b.useState(null),H=x0(M),L=(H==null?void 0:H.width)??0,R=(H==null?void 0:H.height)??0,O=s+(i!=="center"?"-"+i:""),se=typeof f=="number"?f:{top:0,right:0,bottom:0,left:0,...f},ie=Array.isArray(h)?h:[h],z=ie.length>0,ce={padding:se,boundary:ie.filter(yB),altBoundary:z},{refs:me,floatingStyles:_,placement:G,isPositioned:$,middlewareData:A}=sB({strategy:"fixed",placement:O,whileElementsMounted:(...tt)=>q$(...tt,{animationFrame:y==="always"}),elements:{reference:v.anchor},middleware:[aB({mainAxis:a+R,alignmentAxis:o}),u&&iB({mainAxis:!0,crossAxis:!1,limiter:m==="partial"?oB():void 0,...ce}),u&&lB({...ce}),cB({...ce,apply:({elements:tt,rects:at,availableWidth:Dt,availableHeight:kt})=>{const{width:At,height:Gt}=at.reference,In=tt.floating.style;In.setProperty("--radix-popper-available-width",`${Dt}px`),In.setProperty("--radix-popper-available-height",`${kt}px`),In.setProperty("--radix-popper-anchor-width",`${At}px`),In.setProperty("--radix-popper-anchor-height",`${Gt}px`)}}),M&&uB({element:M,padding:c}),bB({arrowWidth:L,arrowHeight:R}),g&&dB({strategy:"referenceHidden",...ce})]}),[Y,U]=y4(G),D=Fi(N);xs(()=>{$&&(D==null||D())},[$,D]);const W=(K=A.arrow)==null?void 0:K.x,le=(J=A.arrow)==null?void 0:J.y,ye=((ge=A.arrow)==null?void 0:ge.centerOffset)!==0,[Ae,ne]=b.useState();return xs(()=>{k&&ne(window.getComputedStyle(k).zIndex)},[k]),r.jsx("div",{ref:me.setFloating,"data-radix-popper-content-wrapper":"",style:{..._,transform:$?_.transform:"translate(0, -200%)",minWidth:"max-content",zIndex:Ae,"--radix-popper-transform-origin":[(ae=A.transformOrigin)==null?void 0:ae.x,(pe=A.transformOrigin)==null?void 0:pe.y].join(" "),...((Se=A.hide)==null?void 0:Se.referenceHidden)&&{visibility:"hidden",pointerEvents:"none"}},dir:t.dir,children:r.jsx(mB,{scope:n,placedSide:Y,onArrowChange:P,arrowX:W,arrowY:le,shouldHideArrow:ye,children:r.jsx(pt.div,{"data-side":Y,"data-align":U,...j,ref:E,style:{...j.style,animation:$?void 0:"none"}})})})});m4.displayName=xy;var g4="PopperArrow",xB={top:"bottom",right:"left",bottom:"top",left:"right"},x4=b.forwardRef(function(e,n){const{__scopePopper:s,...a}=e,i=gB(g4,s),o=xB[i.placedSide];return r.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:r.jsx(fB,{...a,ref:n,style:{...a.style,display:"block"}})})});x4.displayName=g4;function yB(t){return t!==null}var bB=t=>({name:"transformOrigin",options:t,fn(e){var v,k,C;const{placement:n,rects:s,middlewareData:a}=e,o=((v=a.arrow)==null?void 0:v.centerOffset)!==0,c=o?0:t.arrowWidth,u=o?0:t.arrowHeight,[h,f]=y4(n),m={start:"0%",center:"50%",end:"100%"}[f],g=(((k=a.arrow)==null?void 0:k.x)??0)+c/2,y=(((C=a.arrow)==null?void 0:C.y)??0)+u/2;let N="",j="";return h==="bottom"?(N=o?m:`${g}px`,j=`${-u}px`):h==="top"?(N=o?m:`${g}px`,j=`${s.floating.height+u}px`):h==="right"?(N=`${-u}px`,j=o?m:`${y}px`):h==="left"&&(N=`${s.floating.width+u}px`,j=o?m:`${y}px`),{data:{x:N,y:j}}}});function y4(t){const[e,n="center"]=t.split("-");return[e,n]}var vB=h4,NB=p4,wB=m4,jB=x4,b4=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"}),kB="VisuallyHidden",SB=b.forwardRef((t,e)=>r.jsx(pt.span,{...t,ref:e,style:{...b4,...t.style}}));SB.displayName=kB;var CB=[" ","Enter","ArrowUp","ArrowDown"],EB=[" ","Enter"],qo="Select",[cp,dp,TB]=p0(qo),[cc]=qi(qo,[TB,d4]),up=d4(),[MB,Qi]=cc(qo),[AB,IB]=cc(qo),v4=t=>{const{__scopeSelect:e,children:n,open:s,defaultOpen:a,onOpenChange:i,value:o,defaultValue:c,onValueChange:u,dir:h,name:f,autoComplete:m,disabled:g,required:y,form:N}=t,j=up(e),[v,k]=b.useState(null),[C,E]=b.useState(null),[M,P]=b.useState(!1),H=Ff(h),[L,R]=_o({prop:s,defaultProp:a??!1,onChange:i,caller:qo}),[O,se]=_o({prop:o,defaultProp:c,onChange:u,caller:qo}),ie=b.useRef(null),z=v?N||!!v.closest("form"):!0,[ce,me]=b.useState(new Set),_=Array.from(ce).map(G=>G.props.value).join(";");return r.jsx(vB,{...j,children:r.jsxs(MB,{required:y,scope:e,trigger:v,onTriggerChange:k,valueNode:C,onValueNodeChange:E,valueNodeHasChildren:M,onValueNodeHasChildrenChange:P,contentId:Pi(),value:O,onValueChange:se,open:L,onOpenChange:R,dir:H,triggerPointerDownPosRef:ie,disabled:g,children:[r.jsx(cp.Provider,{scope:e,children:r.jsx(AB,{scope:t.__scopeSelect,onNativeOptionAdd:b.useCallback(G=>{me($=>new Set($).add(G))},[]),onNativeOptionRemove:b.useCallback(G=>{me($=>{const A=new Set($);return A.delete(G),A})},[]),children:n})}),z?r.jsxs(V4,{"aria-hidden":!0,required:y,tabIndex:-1,name:f,autoComplete:m,value:O,onChange:G=>se(G.target.value),disabled:g,form:N,children:[O===void 0?r.jsx("option",{value:""}):null,Array.from(ce)]},_):null]})})};v4.displayName=qo;var N4="SelectTrigger",w4=b.forwardRef((t,e)=>{const{__scopeSelect:n,disabled:s=!1,...a}=t,i=up(n),o=Qi(N4,n),c=o.disabled||s,u=Tt(e,o.onTriggerChange),h=dp(n),f=b.useRef("touch"),[m,g,y]=W4(j=>{const v=h().filter(E=>!E.disabled),k=v.find(E=>E.value===o.value),C=U4(v,j,k);C!==void 0&&o.onValueChange(C.value)}),N=j=>{c||(o.onOpenChange(!0),y()),j&&(o.triggerPointerDownPosRef.current={x:Math.round(j.pageX),y:Math.round(j.pageY)})};return r.jsx(NB,{asChild:!0,...i,children:r.jsx(pt.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":H4(o.value)?"":void 0,...a,ref:u,onClick:dt(a.onClick,j=>{j.currentTarget.focus(),f.current!=="mouse"&&N(j)}),onPointerDown:dt(a.onPointerDown,j=>{f.current=j.pointerType;const v=j.target;v.hasPointerCapture(j.pointerId)&&v.releasePointerCapture(j.pointerId),j.button===0&&j.ctrlKey===!1&&j.pointerType==="mouse"&&(N(j),j.preventDefault())}),onKeyDown:dt(a.onKeyDown,j=>{const v=m.current!=="";!(j.ctrlKey||j.altKey||j.metaKey)&&j.key.length===1&&g(j.key),!(v&&j.key===" ")&&CB.includes(j.key)&&(N(),j.preventDefault())})})})});w4.displayName=N4;var j4="SelectValue",k4=b.forwardRef((t,e)=>{const{__scopeSelect:n,className:s,style:a,children:i,placeholder:o="",...c}=t,u=Qi(j4,n),{onValueNodeHasChildrenChange:h}=u,f=i!==void 0,m=Tt(e,u.onValueNodeChange);return xs(()=>{h(f)},[h,f]),r.jsx(pt.span,{...c,ref:m,style:{pointerEvents:"none"},children:H4(u.value)?r.jsx(r.Fragment,{children:o}):i})});k4.displayName=j4;var RB="SelectIcon",S4=b.forwardRef((t,e)=>{const{__scopeSelect:n,children:s,...a}=t;return r.jsx(pt.span,{"aria-hidden":!0,...a,ref:e,children:s||"▼"})});S4.displayName=RB;var PB="SelectPortal",C4=t=>r.jsx(c0,{asChild:!0,...t});C4.displayName=PB;var Go="SelectContent",E4=b.forwardRef((t,e)=>{const n=Qi(Go,t.__scopeSelect),[s,a]=b.useState();if(xs(()=>{a(new DocumentFragment)},[]),!n.open){const i=s;return i?Bd.createPortal(r.jsx(T4,{scope:t.__scopeSelect,children:r.jsx(cp.Slot,{scope:t.__scopeSelect,children:r.jsx("div",{children:t.children})})}),i):null}return r.jsx(M4,{...t,ref:e})});E4.displayName=Go;var Mr=10,[T4,Xi]=cc(Go),OB="SelectContentImpl",DB=Sd("SelectContent.RemoveScroll"),M4=b.forwardRef((t,e)=>{const{__scopeSelect:n,position:s="item-aligned",onCloseAutoFocus:a,onEscapeKeyDown:i,onPointerDownOutside:o,side:c,sideOffset:u,align:h,alignOffset:f,arrowPadding:m,collisionBoundary:g,collisionPadding:y,sticky:N,hideWhenDetached:j,avoidCollisions:v,...k}=t,C=Qi(Go,n),[E,M]=b.useState(null),[P,H]=b.useState(null),L=Tt(e,K=>M(K)),[R,O]=b.useState(null),[se,ie]=b.useState(null),z=dp(n),[ce,me]=b.useState(!1),_=b.useRef(!1);b.useEffect(()=>{if(E)return Wj(E)},[E]),Dj();const G=b.useCallback(K=>{const[J,...ge]=z().map(Se=>Se.ref.current),[ae]=ge.slice(-1),pe=document.activeElement;for(const Se of K)if(Se===pe||(Se==null||Se.scrollIntoView({block:"nearest"}),Se===J&&P&&(P.scrollTop=0),Se===ae&&P&&(P.scrollTop=P.scrollHeight),Se==null||Se.focus(),document.activeElement!==pe))return},[z,P]),$=b.useCallback(()=>G([R,E]),[G,R,E]);b.useEffect(()=>{ce&&$()},[ce,$]);const{onOpenChange:A,triggerPointerDownPosRef:Y}=C;b.useEffect(()=>{if(E){let K={x:0,y:0};const J=ae=>{var pe,Se;K={x:Math.abs(Math.round(ae.pageX)-(((pe=Y.current)==null?void 0:pe.x)??0)),y:Math.abs(Math.round(ae.pageY)-(((Se=Y.current)==null?void 0:Se.y)??0))}},ge=ae=>{K.x<=10&&K.y<=10?ae.preventDefault():E.contains(ae.target)||A(!1),document.removeEventListener("pointermove",J),Y.current=null};return Y.current!==null&&(document.addEventListener("pointermove",J),document.addEventListener("pointerup",ge,{capture:!0,once:!0})),()=>{document.removeEventListener("pointermove",J),document.removeEventListener("pointerup",ge,{capture:!0})}}},[E,A,Y]),b.useEffect(()=>{const K=()=>A(!1);return window.addEventListener("blur",K),window.addEventListener("resize",K),()=>{window.removeEventListener("blur",K),window.removeEventListener("resize",K)}},[A]);const[U,D]=W4(K=>{const J=z().filter(pe=>!pe.disabled),ge=J.find(pe=>pe.ref.current===document.activeElement),ae=U4(J,K,ge);ae&&setTimeout(()=>ae.ref.current.focus())}),W=b.useCallback((K,J,ge)=>{const ae=!_.current&&!ge;(C.value!==void 0&&C.value===J||ae)&&(O(K),ae&&(_.current=!0))},[C.value]),le=b.useCallback(()=>E==null?void 0:E.focus(),[E]),ye=b.useCallback((K,J,ge)=>{const ae=!_.current&&!ge;(C.value!==void 0&&C.value===J||ae)&&ie(K)},[C.value]),Ae=s==="popper"?qx:A4,ne=Ae===qx?{side:c,sideOffset:u,align:h,alignOffset:f,arrowPadding:m,collisionBoundary:g,collisionPadding:y,sticky:N,hideWhenDetached:j,avoidCollisions:v}:{};return r.jsx(T4,{scope:n,content:E,viewport:P,onViewportChange:H,itemRefCallback:W,selectedItem:R,onItemLeave:le,itemTextRefCallback:ye,focusSelectedItem:$,selectedItemText:se,position:s,isPositioned:ce,searchRef:U,children:r.jsx(d0,{as:DB,allowPinchZoom:!0,children:r.jsx(l0,{asChild:!0,trapped:C.open,onMountAutoFocus:K=>{K.preventDefault()},onUnmountAutoFocus:dt(a,K=>{var J;(J=C.trigger)==null||J.focus({preventScroll:!0}),K.preventDefault()}),children:r.jsx(o0,{asChild:!0,disableOutsidePointerEvents:!0,onEscapeKeyDown:i,onPointerDownOutside:o,onFocusOutside:K=>K.preventDefault(),onDismiss:()=>C.onOpenChange(!1),children:r.jsx(Ae,{role:"listbox",id:C.contentId,"data-state":C.open?"open":"closed",dir:C.dir,onContextMenu:K=>K.preventDefault(),...k,...ne,onPlaced:()=>me(!0),ref:L,style:{display:"flex",flexDirection:"column",outline:"none",...k.style},onKeyDown:dt(k.onKeyDown,K=>{const J=K.ctrlKey||K.altKey||K.metaKey;if(K.key==="Tab"&&K.preventDefault(),!J&&K.key.length===1&&D(K.key),["ArrowUp","ArrowDown","Home","End"].includes(K.key)){let ae=z().filter(pe=>!pe.disabled).map(pe=>pe.ref.current);if(["ArrowUp","End"].includes(K.key)&&(ae=ae.slice().reverse()),["ArrowUp","ArrowDown"].includes(K.key)){const pe=K.target,Se=ae.indexOf(pe);ae=ae.slice(Se+1)}setTimeout(()=>G(ae)),K.preventDefault()}})})})})})})});M4.displayName=OB;var LB="SelectItemAlignedPosition",A4=b.forwardRef((t,e)=>{const{__scopeSelect:n,onPlaced:s,...a}=t,i=Qi(Go,n),o=Xi(Go,n),[c,u]=b.useState(null),[h,f]=b.useState(null),m=Tt(e,L=>f(L)),g=dp(n),y=b.useRef(!1),N=b.useRef(!0),{viewport:j,selectedItem:v,selectedItemText:k,focusSelectedItem:C}=o,E=b.useCallback(()=>{if(i.trigger&&i.valueNode&&c&&h&&j&&v&&k){const L=i.trigger.getBoundingClientRect(),R=h.getBoundingClientRect(),O=i.valueNode.getBoundingClientRect(),se=k.getBoundingClientRect();if(i.dir!=="rtl"){const pe=se.left-R.left,Se=O.left-pe,tt=L.left-Se,at=L.width+tt,Dt=Math.max(at,R.width),kt=window.innerWidth-Mr,At=Lh(Se,[Mr,Math.max(Mr,kt-Dt)]);c.style.minWidth=at+"px",c.style.left=At+"px"}else{const pe=R.right-se.right,Se=window.innerWidth-O.right-pe,tt=window.innerWidth-L.right-Se,at=L.width+tt,Dt=Math.max(at,R.width),kt=window.innerWidth-Mr,At=Lh(Se,[Mr,Math.max(Mr,kt-Dt)]);c.style.minWidth=at+"px",c.style.right=At+"px"}const ie=g(),z=window.innerHeight-Mr*2,ce=j.scrollHeight,me=window.getComputedStyle(h),_=parseInt(me.borderTopWidth,10),G=parseInt(me.paddingTop,10),$=parseInt(me.borderBottomWidth,10),A=parseInt(me.paddingBottom,10),Y=_+G+ce+A+$,U=Math.min(v.offsetHeight*5,Y),D=window.getComputedStyle(j),W=parseInt(D.paddingTop,10),le=parseInt(D.paddingBottom,10),ye=L.top+L.height/2-Mr,Ae=z-ye,ne=v.offsetHeight/2,K=v.offsetTop+ne,J=_+G+K,ge=Y-J;if(J<=ye){const pe=ie.length>0&&v===ie[ie.length-1].ref.current;c.style.bottom="0px";const Se=h.clientHeight-j.offsetTop-j.offsetHeight,tt=Math.max(Ae,ne+(pe?le:0)+Se+$),at=J+tt;c.style.height=at+"px"}else{const pe=ie.length>0&&v===ie[0].ref.current;c.style.top="0px";const tt=Math.max(ye,_+j.offsetTop+(pe?W:0)+ne)+ge;c.style.height=tt+"px",j.scrollTop=J-ye+j.offsetTop}c.style.margin=`${Mr}px 0`,c.style.minHeight=U+"px",c.style.maxHeight=z+"px",s==null||s(),requestAnimationFrame(()=>y.current=!0)}},[g,i.trigger,i.valueNode,c,h,j,v,k,i.dir,s]);xs(()=>E(),[E]);const[M,P]=b.useState();xs(()=>{h&&P(window.getComputedStyle(h).zIndex)},[h]);const H=b.useCallback(L=>{L&&N.current===!0&&(E(),C==null||C(),N.current=!1)},[E,C]);return r.jsx(zB,{scope:n,contentWrapper:c,shouldExpandOnScrollRef:y,onScrollButtonChange:H,children:r.jsx("div",{ref:u,style:{display:"flex",flexDirection:"column",position:"fixed",zIndex:M},children:r.jsx(pt.div,{...a,ref:m,style:{boxSizing:"border-box",maxHeight:"100%",...a.style}})})})});A4.displayName=LB;var _B="SelectPopperPosition",qx=b.forwardRef((t,e)=>{const{__scopeSelect:n,align:s="start",collisionPadding:a=Mr,...i}=t,o=up(n);return r.jsx(wB,{...o,...i,ref:e,align:s,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)"}})});qx.displayName=_B;var[zB,yy]=cc(Go,{}),Gx="SelectViewport",I4=b.forwardRef((t,e)=>{const{__scopeSelect:n,nonce:s,...a}=t,i=Xi(Gx,n),o=yy(Gx,n),c=Tt(e,i.onViewportChange),u=b.useRef(0);return r.jsxs(r.Fragment,{children:[r.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:s}),r.jsx(cp.Slot,{scope:n,children:r.jsx(pt.div,{"data-radix-select-viewport":"",role:"presentation",...a,ref:c,style:{position:"relative",flex:1,overflow:"hidden auto",...a.style},onScroll:dt(a.onScroll,h=>{const f=h.currentTarget,{contentWrapper:m,shouldExpandOnScrollRef:g}=o;if(g!=null&&g.current&&m){const y=Math.abs(u.current-f.scrollTop);if(y>0){const N=window.innerHeight-Mr*2,j=parseFloat(m.style.minHeight),v=parseFloat(m.style.height),k=Math.max(j,v);if(k0?M:0,m.style.justifyContent="flex-end")}}}u.current=f.scrollTop})})})]})});I4.displayName=Gx;var R4="SelectGroup",[FB,$B]=cc(R4),BB=b.forwardRef((t,e)=>{const{__scopeSelect:n,...s}=t,a=Pi();return r.jsx(FB,{scope:n,id:a,children:r.jsx(pt.div,{role:"group","aria-labelledby":a,...s,ref:e})})});BB.displayName=R4;var P4="SelectLabel",VB=b.forwardRef((t,e)=>{const{__scopeSelect:n,...s}=t,a=$B(P4,n);return r.jsx(pt.div,{id:a.id,...s,ref:e})});VB.displayName=P4;var If="SelectItem",[HB,O4]=cc(If),D4=b.forwardRef((t,e)=>{const{__scopeSelect:n,value:s,disabled:a=!1,textValue:i,...o}=t,c=Qi(If,n),u=Xi(If,n),h=c.value===s,[f,m]=b.useState(i??""),[g,y]=b.useState(!1),N=Tt(e,C=>{var E;return(E=u.itemRefCallback)==null?void 0:E.call(u,C,s,a)}),j=Pi(),v=b.useRef("touch"),k=()=>{a||(c.onValueChange(s),c.onOpenChange(!1))};if(s==="")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 r.jsx(HB,{scope:n,value:s,disabled:a,textId:j,isSelected:h,onItemTextChange:b.useCallback(C=>{m(E=>E||((C==null?void 0:C.textContent)??"").trim())},[]),children:r.jsx(cp.ItemSlot,{scope:n,value:s,disabled:a,textValue:f,children:r.jsx(pt.div,{role:"option","aria-labelledby":j,"data-highlighted":g?"":void 0,"aria-selected":h&&g,"data-state":h?"checked":"unchecked","aria-disabled":a||void 0,"data-disabled":a?"":void 0,tabIndex:a?void 0:-1,...o,ref:N,onFocus:dt(o.onFocus,()=>y(!0)),onBlur:dt(o.onBlur,()=>y(!1)),onClick:dt(o.onClick,()=>{v.current!=="mouse"&&k()}),onPointerUp:dt(o.onPointerUp,()=>{v.current==="mouse"&&k()}),onPointerDown:dt(o.onPointerDown,C=>{v.current=C.pointerType}),onPointerMove:dt(o.onPointerMove,C=>{var E;v.current=C.pointerType,a?(E=u.onItemLeave)==null||E.call(u):v.current==="mouse"&&C.currentTarget.focus({preventScroll:!0})}),onPointerLeave:dt(o.onPointerLeave,C=>{var E;C.currentTarget===document.activeElement&&((E=u.onItemLeave)==null||E.call(u))}),onKeyDown:dt(o.onKeyDown,C=>{var M;((M=u.searchRef)==null?void 0:M.current)!==""&&C.key===" "||(EB.includes(C.key)&&k(),C.key===" "&&C.preventDefault())})})})})});D4.displayName=If;var ad="SelectItemText",L4=b.forwardRef((t,e)=>{const{__scopeSelect:n,className:s,style:a,...i}=t,o=Qi(ad,n),c=Xi(ad,n),u=O4(ad,n),h=IB(ad,n),[f,m]=b.useState(null),g=Tt(e,k=>m(k),u.onItemTextChange,k=>{var C;return(C=c.itemTextRefCallback)==null?void 0:C.call(c,k,u.value,u.disabled)}),y=f==null?void 0:f.textContent,N=b.useMemo(()=>r.jsx("option",{value:u.value,disabled:u.disabled,children:y},u.value),[u.disabled,u.value,y]),{onNativeOptionAdd:j,onNativeOptionRemove:v}=h;return xs(()=>(j(N),()=>v(N)),[j,v,N]),r.jsxs(r.Fragment,{children:[r.jsx(pt.span,{id:u.textId,...i,ref:g}),u.isSelected&&o.valueNode&&!o.valueNodeHasChildren?Bd.createPortal(i.children,o.valueNode):null]})});L4.displayName=ad;var _4="SelectItemIndicator",z4=b.forwardRef((t,e)=>{const{__scopeSelect:n,...s}=t;return O4(_4,n).isSelected?r.jsx(pt.span,{"aria-hidden":!0,...s,ref:e}):null});z4.displayName=_4;var Jx="SelectScrollUpButton",F4=b.forwardRef((t,e)=>{const n=Xi(Jx,t.__scopeSelect),s=yy(Jx,t.__scopeSelect),[a,i]=b.useState(!1),o=Tt(e,s.onScrollButtonChange);return xs(()=>{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?r.jsx(B4,{...t,ref:o,onAutoScroll:()=>{const{viewport:c,selectedItem:u}=n;c&&u&&(c.scrollTop=c.scrollTop-u.offsetHeight)}}):null});F4.displayName=Jx;var Yx="SelectScrollDownButton",$4=b.forwardRef((t,e)=>{const n=Xi(Yx,t.__scopeSelect),s=yy(Yx,t.__scopeSelect),[a,i]=b.useState(!1),o=Tt(e,s.onScrollButtonChange);return xs(()=>{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?r.jsx(B4,{...t,ref:o,onAutoScroll:()=>{const{viewport:c,selectedItem:u}=n;c&&u&&(c.scrollTop=c.scrollTop+u.offsetHeight)}}):null});$4.displayName=Yx;var B4=b.forwardRef((t,e)=>{const{__scopeSelect:n,onAutoScroll:s,...a}=t,i=Xi("SelectScrollButton",n),o=b.useRef(null),c=dp(n),u=b.useCallback(()=>{o.current!==null&&(window.clearInterval(o.current),o.current=null)},[]);return b.useEffect(()=>()=>u(),[u]),xs(()=>{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]),r.jsx(pt.div,{"aria-hidden":!0,...a,ref:e,style:{flexShrink:0,...a.style},onPointerDown:dt(a.onPointerDown,()=>{o.current===null&&(o.current=window.setInterval(s,50))}),onPointerMove:dt(a.onPointerMove,()=>{var h;(h=i.onItemLeave)==null||h.call(i),o.current===null&&(o.current=window.setInterval(s,50))}),onPointerLeave:dt(a.onPointerLeave,()=>{u()})})}),WB="SelectSeparator",UB=b.forwardRef((t,e)=>{const{__scopeSelect:n,...s}=t;return r.jsx(pt.div,{"aria-hidden":!0,...s,ref:e})});UB.displayName=WB;var Qx="SelectArrow",KB=b.forwardRef((t,e)=>{const{__scopeSelect:n,...s}=t,a=up(n),i=Qi(Qx,n),o=Xi(Qx,n);return i.open&&o.position==="popper"?r.jsx(jB,{...a,...s,ref:e}):null});KB.displayName=Qx;var qB="SelectBubbleInput",V4=b.forwardRef(({__scopeSelect:t,value:e,...n},s)=>{const a=b.useRef(null),i=Tt(s,a),o=g0(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]),r.jsx(pt.select,{...n,style:{...b4,...n.style},ref:i,defaultValue:e})});V4.displayName=qB;function H4(t){return t===""||t===void 0}function W4(t){const e=Fi(t),n=b.useRef(""),s=b.useRef(0),a=b.useCallback(o=>{const c=n.current+o;e(c),(function u(h){n.current=h,window.clearTimeout(s.current),h!==""&&(s.current=window.setTimeout(()=>u(""),1e3))})(c)},[e]),i=b.useCallback(()=>{n.current="",window.clearTimeout(s.current)},[]);return b.useEffect(()=>()=>window.clearTimeout(s.current),[]),[n,a,i]}function U4(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=GB(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 GB(t,e){return t.map((n,s)=>t[(e+s)%t.length])}var JB=v4,K4=w4,YB=k4,QB=S4,XB=C4,q4=E4,ZB=I4,G4=D4,eV=L4,tV=z4,nV=F4,sV=$4;const Pl=JB,Ol=YB,jo=b.forwardRef(({className:t,children:e,...n},s)=>r.jsxs(K4,{ref:s,className:Mt("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,r.jsx(QB,{asChild:!0,children:r.jsx(kd,{className:"h-4 w-4 opacity-50"})})]}));jo.displayName=K4.displayName;const ko=b.forwardRef(({className:t,children:e,position:n="popper",...s},a)=>r.jsx(XB,{children:r.jsxs(q4,{ref:a,className:Mt("relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-md",n==="popper"&&"data-[side=bottom]:translate-y-1",t),position:n,...s,children:[r.jsx(nV,{className:"flex cursor-default items-center justify-center py-1",children:r.jsx(sj,{className:"h-4 w-4"})}),r.jsx(ZB,{className:"p-1",children:e}),r.jsx(sV,{className:"flex cursor-default items-center justify-center py-1",children:r.jsx(kd,{className:"h-4 w-4"})})]})}));ko.displayName=q4.displayName;const Ks=b.forwardRef(({className:t,children:e,...n},s)=>r.jsxs(G4,{ref:s,className:Mt("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:[r.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:r.jsx(tV,{children:r.jsx(Of,{className:"h-4 w-4"})})}),r.jsx(eV,{children:e})]}));Ks.displayName=G4.displayName;function rV(){const[t,e]=b.useState([]),[n,s]=b.useState(!0),[a,i]=b.useState(!1),[o,c]=b.useState(null),[u,h]=b.useState({name:"",appId:"",path:"",sort:0}),[f,m]=b.useState(!1);async function g(){s(!0);try{const k=await De("/api/admin/linked-miniprograms");if(k!=null&&k.success&&Array.isArray(k.data)){const C=[...k.data].sort((E,M)=>(E.sort??0)-(M.sort??0));e(C)}}catch(k){console.error("Load linked miniprograms error:",k),te.error("加载失败")}finally{s(!1)}}b.useEffect(()=>{g()},[]);function y(){c(null),h({name:"",appId:"",path:"",sort:t.length}),i(!0)}function N(k){c(k),h({name:k.name,appId:k.appId,path:k.path??"",sort:k.sort??0}),i(!0)}async function j(){const k=u.name.trim(),C=u.appId.trim();if(!k||!C){te.error("请填写小程序名称和 AppID");return}m(!0);try{if(o){const E=await Ot("/api/admin/linked-miniprograms",{key:o.key,name:k,appId:C,path:u.path.trim(),sort:u.sort});E!=null&&E.success?(te.success("已更新"),i(!1),g()):te.error((E==null?void 0:E.error)??"更新失败")}else{const E=await Nt("/api/admin/linked-miniprograms",{name:k,appId:C,path:u.path.trim(),sort:u.sort});E!=null&&E.success?(te.success("已添加"),i(!1),g()):te.error((E==null?void 0:E.error)??"添加失败")}}catch{te.error("操作失败")}finally{m(!1)}}async function v(k){if(confirm(`确定要删除「${k.name}」吗?`))try{const C=await ea(`/api/admin/linked-miniprograms/${k.key}`);C!=null&&C.success?(te.success("已删除"),g()):te.error((C==null?void 0:C.error)??"删除失败")}catch{te.error("删除失败")}}return r.jsxs("div",{className:"space-y-6",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(zi,{className:"w-5 h-5 text-[#38bdac]"}),"关联小程序管理"]}),r.jsx(Ft,{className:"text-gray-400",children:"添加后生成 32 位密钥,链接标签选择小程序时存密钥;小程序端点击 #标签 时用密钥查 appId 再跳转。需在 app.json 的 navigateToMiniProgramAppIdList 中配置目标 AppID。"})]}),r.jsxs(Te,{children:[r.jsxs("div",{className:"flex justify-end gap-2 mb-4",children:[r.jsx(X,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 hover:bg-gray-700/50",onClick:()=>g(),title:"刷新",children:r.jsx(Fe,{className:"w-4 h-4"})}),r.jsxs(X,{onClick:y,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"添加关联小程序"]})]}),n?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"名称"}),r.jsx(we,{className:"text-gray-400",children:"密钥"}),r.jsx(we,{className:"text-gray-400",children:"AppID"}),r.jsx(we,{className:"text-gray-400",children:"路径"}),r.jsx(we,{className:"text-gray-400 w-24",children:"排序"}),r.jsx(we,{className:"text-gray-400 w-32",children:"操作"})]})}),r.jsxs(as,{children:[t.map(k=>r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(ve,{className:"text-white",children:k.name}),r.jsx(ve,{className:"text-gray-300 font-mono text-xs",children:k.key}),r.jsx(ve,{className:"text-gray-300 font-mono text-sm",children:k.appId}),r.jsx(ve,{className:"text-gray-400 text-sm",children:k.path||"—"}),r.jsx(ve,{className:"text-gray-300",children:k.sort??0}),r.jsx(ve,{children:r.jsxs("div",{className:"flex gap-2",children:[r.jsx(X,{variant:"ghost",size:"sm",className:"text-[#38bdac] hover:bg-[#38bdac]/20",onClick:()=>N(k),children:r.jsx(Yg,{className:"w-4 h-4"})}),r.jsx(X,{variant:"ghost",size:"sm",className:"text-red-400 hover:bg-red-500/20",onClick:()=>v(k),children:r.jsx(Zn,{className:"w-4 h-4"})})]})})]},k.key)),t.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:6,className:"text-center py-12 text-gray-500",children:"暂无关联小程序,点击「添加关联小程序」开始配置"})})]})]})]})]}),r.jsx(It,{open:a,onOpenChange:i,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md p-4 gap-3",children:[r.jsxs(Rt,{className:"gap-1",children:[r.jsx(Pt,{className:"text-base",children:o?"编辑关联小程序":"添加关联小程序"}),r.jsx(Cd,{className:"text-gray-400 text-xs",children:"填写目标小程序的名称和 AppID,路径可选(为空则打开首页)"})]}),r.jsxs("div",{className:"space-y-3 py-2",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"小程序名称"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"例如:Soul 创业派对",value:u.name,onChange:k=>h(C=>({...C,name:k.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"AppID"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white font-mono h-8 text-sm",placeholder:"例如:wxb8bbb2b10dec74aa",value:u.appId,onChange:k=>h(C=>({...C,appId:k.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"路径(可选)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"例如:pages/index/index",value:u.path,onChange:k=>h(C=>({...C,path:k.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"排序"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm w-20",value:u.sort,onChange:k=>h(C=>({...C,sort:parseInt(k.target.value,10)||0}))})]})]}),r.jsxs(sn,{className:"gap-2 pt-1",children:[r.jsx(X,{variant:"outline",onClick:()=>i(!1),className:"border-gray-600",children:"取消"}),r.jsx(X,{onClick:j,disabled:f,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:f?"保存中...":"保存"})]})]})})]})}const aV=["一","二","三","四","五","六","七","八","九","十"];function iV(t){return t.title==="序言"||t.title.includes("序言")}function Mw(t){const e=[];for(const n of t.chapters)for(const s of n.sections)e.push(s.id);return e.length===0?"暂无章节":e.length===1?e[0]:`${e[0]}~${e[e.length-1]}`}function _g(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 oV({parts:t,expandedParts:e,onTogglePart:n,onReorder:s,onReadSection:a,onDeleteSection:i,onAddSectionInPart:o,onAddChapterInPart:c,onDeleteChapter:u,onEditPart:h,onDeletePart:f,onEditChapter:m,selectedSectionIds:g=[],onToggleSectionSelect:y,onShowSectionOrders:N,pinnedSectionIds:j=[]}){const[v,k]=b.useState(null),[C,E]=b.useState(null),M=(z,ce)=>(v==null?void 0:v.type)===z&&(v==null?void 0:v.id)===ce,P=(z,ce)=>(C==null?void 0:C.type)===z&&(C==null?void 0:C.id)===ce,H=b.useCallback(()=>{const z=[];for(const ce of t)for(const me of ce.chapters)for(const _ of me.sections)z.push({id:_.id,partId:ce.id,partTitle:ce.title,chapterId:me.id,chapterTitle:me.title});return z},[t]),L=b.useCallback(async(z,ce,me,_)=>{var U;z.preventDefault(),z.stopPropagation();const G=z.dataTransfer.getData("text/plain"),$=_g(G);if(!$||$.type===ce&&$.id===me)return;const A=H(),Y=new Map(A.map(D=>[D.id,D]));if($.type==="part"&&ce==="part"){const D=t.map(ne=>ne.id),W=D.indexOf($.id),le=D.indexOf(me);if(W===-1||le===-1)return;const ye=[...D];ye.splice(W,1),ye.splice(WJ.id===ne);if(K)for(const J of K.chapters)for(const ge of J.sections){const ae=Y.get(ge.id);ae&&Ae.push(ae)}}await s(Ae);return}if($.type==="chapter"&&(ce==="chapter"||ce==="section"||ce==="part")){const D=t.find(ae=>ae.chapters.some(pe=>pe.id===$.id)),W=D==null?void 0:D.chapters.find(ae=>ae.id===$.id);if(!D||!W)return;let le,ye,Ae=null;if(ce==="section"){const ae=Y.get(me);if(!ae)return;le=ae.partId,ye=ae.partTitle,Ae=me}else if(ce==="chapter"){const ae=t.find(tt=>tt.chapters.some(at=>at.id===me)),pe=ae==null?void 0:ae.chapters.find(tt=>tt.id===me);if(!ae||!pe)return;le=ae.id,ye=ae.title;const Se=A.filter(tt=>tt.chapterId===me).pop();Ae=(Se==null?void 0:Se.id)??null}else{const ae=t.find(Se=>Se.id===me);if(!ae||!ae.chapters[0])return;le=ae.id,ye=ae.title;const pe=A.filter(Se=>Se.partId===ae.id&&Se.chapterId===ae.chapters[0].id);Ae=((U=pe[pe.length-1])==null?void 0:U.id)??null}const ne=W.sections.map(ae=>ae.id),K=A.filter(ae=>!ne.includes(ae.id));let J=K.length;if(Ae){const ae=K.findIndex(pe=>pe.id===Ae);ae>=0&&(J=ae+1)}const ge=ne.map(ae=>({...Y.get(ae),partId:le,partTitle:ye,chapterId:W.id,chapterTitle:W.title}));await s([...K.slice(0,J),...ge,...K.slice(J)]);return}if($.type==="section"&&(ce==="section"||ce==="chapter"||ce==="part")){if(!_)return;const{partId:D,partTitle:W,chapterId:le,chapterTitle:ye}=_;let Ae;if(ce==="section")Ae=A.findIndex(pe=>pe.id===me);else if(ce==="chapter"){const pe=A.filter(Se=>Se.chapterId===me).pop();Ae=pe?A.findIndex(Se=>Se.id===pe.id)+1:A.length}else{const pe=t.find(at=>at.id===me);if(!(pe!=null&&pe.chapters[0]))return;const Se=A.filter(at=>at.partId===pe.id&&at.chapterId===pe.chapters[0].id),tt=Se[Se.length-1];Ae=tt?A.findIndex(at=>at.id===tt.id)+1:0}const ne=A.findIndex(pe=>pe.id===$.id);if(ne===-1)return;const K=A.filter(pe=>pe.id!==$.id),J=ne({onDragEnter:_=>{_.preventDefault(),_.stopPropagation(),_.dataTransfer.dropEffect="move",E({type:z,id:ce})},onDragOver:_=>{_.preventDefault(),_.stopPropagation(),_.dataTransfer.dropEffect="move",E({type:z,id:ce})},onDragLeave:()=>E(null),onDrop:_=>{E(null);const G=_g(_.dataTransfer.getData("text/plain"));if(G&&!(z==="section"&&G.type==="section"&&G.id===ce))if(z==="part")if(G.type==="part")L(_,"part",ce);else{const $=t.find(Y=>Y.id===ce);($==null?void 0:$.chapters[0])&&me&&L(_,"part",ce,me)}else z==="chapter"&&me?(G.type==="section"||G.type==="chapter")&&L(_,"chapter",ce,me):z==="section"&&me&&L(_,"section",ce,me)}}),O=z=>aV[z]??String(z+1),se=z=>t.slice(0,z).filter(ce=>!iV(ce)).length,ie=z=>r.jsxs(r.Fragment,{children:[r.jsx("span",{className:"text-gray-500 font-mono text-xs tabular-nums shrink-0 mr-1.5 max-w-[72px] truncate",title:`章节ID: ${z.id}`,children:z.id}),r.jsx("span",{className:"truncate",children:z.title})]});return r.jsx("div",{className:"space-y-3",children:t.map((z,ce)=>{var W,le,ye,Ae;const me=z.title==="序言"||z.title.includes("序言"),_=z.title==="尾声"||z.title.includes("尾声"),G=z.title==="附录"||z.title.includes("附录"),$=P("part",z.id),A=e.includes(z.id),Y=z.chapters.length,U=z.chapters.reduce((ne,K)=>ne+K.sections.length,0);if(me&&z.chapters.length===1&&z.chapters[0].sections.length===1){const ne=z.chapters[0].sections[0],K=P("section",ne.id),J={partId:z.id,partTitle:z.title,chapterId:z.chapters[0].id,chapterTitle:z.chapters[0].title};return r.jsxs("div",{draggable:!0,onDragStart:ge=>{ge.stopPropagation(),ge.dataTransfer.setData("text/plain","section:"+ne.id),ge.dataTransfer.effectAllowed="move",k({type:"section",id:ne.id})},onDragEnd:()=>{k(null),E(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] ${K?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":""} ${M("section",ne.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...R("section",ne.id,J),children:[r.jsxs("div",{className:"flex items-center gap-3 flex-1 min-w-0 select-none",children:[r.jsx(Aa,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:ge=>ge.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(ne.id),onChange:()=>y(ne.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsx("div",{className:"w-8 h-8 rounded-lg bg-gray-600/50 flex items-center justify-center shrink-0",children:r.jsx(Ys,{className:"w-4 h-4 text-gray-400"})}),r.jsxs("span",{className:"font-medium text-gray-200 truncate",children:[z.chapters[0].title," | ",ne.title]}),j.includes(ne.id)&&r.jsx("span",{title:"已置顶",children:r.jsx(_l,{className:"w-3.5 h-3.5 text-amber-400 fill-amber-400 shrink-0"})})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:ge=>ge.stopPropagation(),onClick:ge=>ge.stopPropagation(),children:[ne.price===0||ne.isFree?r.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"免费"}):r.jsxs("span",{className:"text-xs text-gray-500",children:["¥",ne.price]}),r.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",ne.clickCount??0," · 付款 ",ne.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(ne.hotScore??0).toFixed(1)," · 第",ne.hotRank&&ne.hotRank>0?ne.hotRank:"-","名"]}),N&&r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>N(ne),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),r.jsxs("div",{className:"flex gap-1",children:[r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(ne),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(ne),className:"text-gray-500 hover:text-red-400 h-7 px-2",children:r.jsx(Zn,{className:"w-3.5 h-3.5"})})]})]})]},z.id)}if(z.id==="part-2026-daily"){const ne=P("part",z.id);return r.jsxs("div",{className:`rounded-xl border overflow-hidden transition-all duration-200 ${ne?"border-[#38bdac] ring-2 ring-[#38bdac]/40 bg-[#38bdac]/5":"border-gray-700/50 bg-[#1C1C1E]"}`,...R("part",z.id,{partId:z.id,partTitle:z.title,chapterId:((W=z.chapters[0])==null?void 0:W.id)??"",chapterTitle:((le=z.chapters[0])==null?void 0:le.title)??""}),children:[r.jsxs("div",{draggable:!0,onDragStart:K=>{K.stopPropagation(),K.dataTransfer.setData("text/plain","part:"+z.id),K.dataTransfer.effectAllowed="move",k({type:"part",id:z.id})},onDragEnd:()=>{k(null),E(null)},className:`flex items-center justify-between p-4 cursor-grab active:cursor-grabbing select-none transition-all duration-200 ${M("part",z.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":"hover:bg-[#162840]/50"}`,onClick:()=>n(z.id),children:[r.jsxs("div",{className:"flex items-center gap-3 min-w-0",children:[r.jsx(Aa,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),r.jsx("div",{className:"w-10 h-10 rounded-xl bg-[#38bdac]/80 flex items-center justify-center text-white font-bold shrink-0",children:"派"}),r.jsxs("div",{children:[r.jsx("h3",{className:"font-bold text-white text-base",children:z.title}),r.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:Mw(z)})]})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:K=>K.stopPropagation(),onClick:K=>K.stopPropagation(),children:[o&&r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>o(z),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"在本篇下新增章节",children:r.jsx(fn,{className:"w-3.5 h-3.5"})}),h&&r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>h(z),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑篇名",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),f&&r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>f(z),className:"text-gray-500 hover:text-red-400 h-7 px-2",title:"删除本篇",children:r.jsx(Zn,{className:"w-3.5 h-3.5"})}),r.jsxs("span",{className:"text-xs text-gray-500",title:"本篇章数与节数",children:[Y," 章 · ",U," 节"]}),A?r.jsx(kd,{className:"w-5 h-5 text-gray-500"}):r.jsx(Dl,{className:"w-5 h-5 text-gray-500"})]})]}),A&&z.chapters.length>0&&r.jsx("div",{className:"border-t border-gray-700/50 pl-4 pr-4 pb-4 pt-3 space-y-4",children:z.chapters.map(K=>r.jsxs("div",{className:"space-y-2",children:[r.jsxs("div",{className:"flex items-center gap-2 w-full",children:[r.jsx("p",{className:"text-xs text-gray-500 pb-1 flex-1",children:K.title}),r.jsxs("div",{className:"flex gap-0.5 shrink-0",onClick:J=>J.stopPropagation(),children:[m&&r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>m(z,K),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑章节名称",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),c&&r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>c(z),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"新增第X章",children:r.jsx(fn,{className:"w-3.5 h-3.5"})}),u&&r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>u(z,K),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",title:"删除本章",children:r.jsx(Zn,{className:"w-3.5 h-3.5"})})]})]}),r.jsx("div",{className:"space-y-1 pl-2",children:K.sections.map(J=>{const ge=P("section",J.id);return r.jsxs("div",{draggable:!0,onDragStart:ae=>{ae.stopPropagation(),ae.dataTransfer.setData("text/plain","section:"+J.id),ae.dataTransfer.effectAllowed="move",k({type:"section",id:J.id})},onDragEnd:()=>{k(null),E(null)},className:`flex items-center justify-between py-2 px-3 rounded-lg min-h-[40px] cursor-grab active:cursor-grabbing select-none transition-all duration-200 ${ge?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":"hover:bg-[#162840]/50"} ${M("section",J.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...R("section",J.id,{partId:z.id,partTitle:z.title,chapterId:K.id,chapterTitle:K.title}),children:[r.jsxs("div",{className:"flex items-center gap-2 min-w-0 flex-1",children:[r.jsx(Aa,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:ae=>ae.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(J.id),onChange:()=>y(J.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsx("span",{className:"text-sm text-gray-200 truncate flex items-center min-w-0",children:ie(J)}),j.includes(J.id)&&r.jsx("span",{title:"已置顶",children:r.jsx(_l,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[r.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",J.clickCount??0," · 付款 ",J.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(J.hotScore??0).toFixed(1)," · 第",J.hotRank&&J.hotRank>0?J.hotRank:"-","名"]}),N&&r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>N(J),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(J),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(J),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",children:r.jsx(Zn,{className:"w-3.5 h-3.5"})})]})]},J.id)})})]},K.id))})]},z.id)}if(G)return r.jsxs("div",{className:"rounded-xl border border-gray-700/50 bg-[#1C1C1E] p-5",children:[r.jsx("h3",{className:"text-sm font-medium text-gray-400 mb-4",children:"附录"}),r.jsx("div",{className:"space-y-3",children:z.chapters.map((ne,K)=>ne.sections.length>0?ne.sections.map(J=>{const ge=P("section",J.id);return r.jsxs("div",{draggable:!0,onDragStart:ae=>{ae.stopPropagation(),ae.dataTransfer.setData("text/plain","section:"+J.id),ae.dataTransfer.effectAllowed="move",k({type:"section",id:J.id})},onDragEnd:()=>{k(null),E(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 ${ge?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":"hover:bg-[#162840]/50"} ${M("section",J.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...R("section",J.id,{partId:z.id,partTitle:z.title,chapterId:ne.id,chapterTitle:ne.title}),children:[r.jsxs("div",{className:"flex items-center gap-2 min-w-0 flex-1",children:[r.jsx(Aa,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:ae=>ae.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(J.id),onChange:()=>y(J.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsxs("span",{className:"text-sm text-gray-300 truncate",children:["附录",K+1," | ",ne.title," | ",J.title]}),j.includes(J.id)&&r.jsx("span",{title:"已置顶",children:r.jsx(_l,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[r.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",J.clickCount??0," · 付款 ",J.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(J.hotScore??0).toFixed(1)," · 第",J.hotRank&&J.hotRank>0?J.hotRank:"-","名"]}),N&&r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>N(J),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),r.jsxs("div",{className:"flex gap-1 opacity-0 group-hover:opacity-100 transition-opacity",children:[r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>a(J),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>i(J),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",children:r.jsx(Zn,{className:"w-3.5 h-3.5"})})]})]}),r.jsx(Dl,{className:"w-4 h-4 text-gray-500 shrink-0"})]},J.id)}):r.jsxs("div",{className:"flex justify-between items-center py-2 select-none hover:bg-[#162840]/50 rounded px-2 -mx-2",children:[r.jsxs("span",{className:"text-sm text-gray-500",children:["附录",K+1," | ",ne.title,"(空)"]}),r.jsx(Dl,{className:"w-4 h-4 text-gray-500 shrink-0"})]},ne.id))})]},z.id);if(_&&z.chapters.length===1&&z.chapters[0].sections.length===1){const ne=z.chapters[0].sections[0],K=P("section",ne.id),J={partId:z.id,partTitle:z.title,chapterId:z.chapters[0].id,chapterTitle:z.chapters[0].title};return r.jsxs("div",{draggable:!0,onDragStart:ge=>{ge.stopPropagation(),ge.dataTransfer.setData("text/plain","section:"+ne.id),ge.dataTransfer.effectAllowed="move",k({type:"section",id:ne.id})},onDragEnd:()=>{k(null),E(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] ${K?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":""} ${M("section",ne.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...R("section",ne.id,J),children:[r.jsxs("div",{className:"flex items-center gap-3 flex-1 min-w-0 select-none",children:[r.jsx(Aa,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:ge=>ge.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(ne.id),onChange:()=>y(ne.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsx("div",{className:"w-8 h-8 rounded-lg bg-gray-600/50 flex items-center justify-center shrink-0",children:r.jsx(Ys,{className:"w-4 h-4 text-gray-400"})}),r.jsxs("span",{className:"font-medium text-gray-200 truncate",children:[z.chapters[0].title," | ",ne.title]})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:ge=>ge.stopPropagation(),onClick:ge=>ge.stopPropagation(),children:[ne.price===0||ne.isFree?r.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"免费"}):r.jsxs("span",{className:"text-xs text-gray-500",children:["¥",ne.price]}),r.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",ne.clickCount??0," · 付款 ",ne.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(ne.hotScore??0).toFixed(1)," · 第",ne.hotRank&&ne.hotRank>0?ne.hotRank:"-","名"]}),N&&r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>N(ne),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),r.jsxs("div",{className:"flex gap-1",children:[r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(ne),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(ne),className:"text-gray-500 hover:text-red-400 h-7 px-2",children:r.jsx(Zn,{className:"w-3.5 h-3.5"})})]})]})]},z.id)}return _?r.jsxs("div",{className:"rounded-xl border border-gray-700/50 bg-[#1C1C1E] p-5",children:[r.jsx("h3",{className:"text-sm font-medium text-gray-400 mb-4",children:"尾声"}),r.jsx("div",{className:"space-y-3",children:z.chapters.map(ne=>ne.sections.map(K=>{const J=P("section",K.id);return r.jsxs("div",{draggable:!0,onDragStart:ge=>{ge.stopPropagation(),ge.dataTransfer.setData("text/plain","section:"+K.id),ge.dataTransfer.effectAllowed="move",k({type:"section",id:K.id})},onDragEnd:()=>{k(null),E(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 ${J?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":"hover:bg-[#162840]/50"} ${M("section",K.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":""}`,...R("section",K.id,{partId:z.id,partTitle:z.title,chapterId:ne.id,chapterTitle:ne.title}),children:[r.jsxs("div",{className:"flex items-center gap-2 min-w-0 flex-1",children:[r.jsx(Aa,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:ge=>ge.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(K.id),onChange:()=>y(K.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsxs("span",{className:"text-sm text-gray-300",children:[ne.title," | ",K.title]})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",children:[r.jsxs("span",{className:"text-[10px] text-gray-500",children:["点击 ",K.clickCount??0," · 付款 ",K.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(K.hotScore??0).toFixed(1)," · 第",K.hotRank&&K.hotRank>0?K.hotRank:"-","名"]}),N&&r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>N(K),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5",children:"付款记录"}),r.jsxs("div",{className:"flex gap-1",children:[r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(K),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(K),className:"text-gray-500 hover:text-red-400 h-7 px-2",children:r.jsx(Zn,{className:"w-3.5 h-3.5"})})]})]})]},K.id)}))})]},z.id):r.jsxs("div",{className:`rounded-xl border bg-[#1C1C1E] overflow-hidden transition-all duration-200 ${$?"border-[#38bdac] ring-2 ring-[#38bdac]/40 bg-[#38bdac]/5":"border-gray-700/50"}`,...R("part",z.id,{partId:z.id,partTitle:z.title,chapterId:((ye=z.chapters[0])==null?void 0:ye.id)??"",chapterTitle:((Ae=z.chapters[0])==null?void 0:Ae.title)??""}),children:[r.jsxs("div",{draggable:!0,onDragStart:ne=>{ne.stopPropagation(),ne.dataTransfer.setData("text/plain","part:"+z.id),ne.dataTransfer.effectAllowed="move",k({type:"part",id:z.id})},onDragEnd:()=>{k(null),E(null)},className:`flex items-center justify-between p-4 cursor-grab active:cursor-grabbing select-none transition-all duration-200 ${M("part",z.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac] rounded-xl shadow-xl shadow-[#38bdac]/20":"hover:bg-[#162840]/50"}`,onClick:()=>n(z.id),children:[r.jsxs("div",{className:"flex items-center gap-3 min-w-0",children:[r.jsx(Aa,{className:"w-5 h-5 text-gray-500 shrink-0 opacity-60"}),r.jsx("div",{className:"w-10 h-10 rounded-xl bg-[#38bdac] flex items-center justify-center text-white font-bold shadow-lg shadow-[#38bdac]/30 shrink-0",children:O(se(ce))}),r.jsxs("div",{children:[r.jsx("h3",{className:"font-bold text-white text-base",children:z.title}),r.jsx("p",{className:"text-xs text-gray-500 mt-0.5",children:Mw(z)})]})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:ne=>ne.stopPropagation(),onClick:ne=>ne.stopPropagation(),children:[o&&r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>o(z),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"在本篇下新增章节",children:r.jsx(fn,{className:"w-3.5 h-3.5"})}),h&&r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>h(z),className:"text-gray-500 hover:text-[#38bdac] h-7 px-2",title:"编辑篇名",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),f&&r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>f(z),className:"text-gray-500 hover:text-red-400 h-7 px-2",title:"删除本篇",children:r.jsx(Zn,{className:"w-3.5 h-3.5"})}),r.jsxs("span",{className:"text-xs text-gray-500",title:"本篇章数与节数",children:[Y," 章 · ",U," 节"]}),A?r.jsx(kd,{className:"w-5 h-5 text-gray-500"}):r.jsx(Dl,{className:"w-5 h-5 text-gray-500"})]})]}),A&&r.jsx("div",{className:"border-t border-gray-700/50 pl-4 pr-4 pb-4 pt-3 space-y-4",children:z.chapters.map(ne=>{const K=P("chapter",ne.id);return r.jsxs("div",{className:"space-y-2",children:[r.jsxs("div",{className:"flex items-center gap-2 w-full",children:[r.jsxs("div",{draggable:!0,onDragStart:J=>{J.stopPropagation(),J.dataTransfer.setData("text/plain","chapter:"+ne.id),J.dataTransfer.effectAllowed="move",k({type:"chapter",id:ne.id})},onDragEnd:()=>{k(null),E(null)},onDragEnter:J=>{J.preventDefault(),J.stopPropagation(),J.dataTransfer.dropEffect="move",E({type:"chapter",id:ne.id})},onDragOver:J=>{J.preventDefault(),J.stopPropagation(),J.dataTransfer.dropEffect="move",E({type:"chapter",id:ne.id})},onDragLeave:()=>E(null),onDrop:J=>{E(null);const ge=_g(J.dataTransfer.getData("text/plain"));if(!ge)return;const ae={partId:z.id,partTitle:z.title,chapterId:ne.id,chapterTitle:ne.title};(ge.type==="section"||ge.type==="chapter")&&L(J,"chapter",ne.id,ae)},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 ${K?"bg-[#38bdac]/15 ring-1 ring-[#38bdac]/50":""} ${M("chapter",ne.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac]":"hover:bg-[#162840]/30"}`,children:[r.jsx(Aa,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),r.jsx("p",{className:"text-xs text-gray-500 pb-1 flex-1",children:ne.title})]}),r.jsxs("div",{className:"flex gap-0.5 shrink-0",onClick:J=>J.stopPropagation(),children:[m&&r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>m(z,ne),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑章节名称",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),c&&r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>c(z),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"新增第X章",children:r.jsx(fn,{className:"w-3.5 h-3.5"})}),u&&r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>u(z,ne),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",title:"删除本章",children:r.jsx(Zn,{className:"w-3.5 h-3.5"})})]})]}),r.jsx("div",{className:"space-y-1 pl-2",children:ne.sections.map(J=>{const ge=P("section",J.id);return r.jsxs("div",{draggable:!0,onDragStart:ae=>{ae.stopPropagation(),ae.dataTransfer.setData("text/plain","section:"+J.id),ae.dataTransfer.effectAllowed="move",k({type:"section",id:J.id})},onDragEnd:()=>{k(null),E(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 ${ge?"bg-[#38bdac]/15 ring-2 ring-[#38bdac]/50":""} ${M("section",J.id)?"opacity-60 scale-[0.98] ring-2 ring-[#38bdac] shadow-lg":"hover:bg-[#162840]/50"}`,...R("section",J.id,{partId:z.id,partTitle:z.title,chapterId:ne.id,chapterTitle:ne.title}),children:[r.jsxs("div",{className:"flex items-center gap-3 min-w-0 flex-1",children:[y&&r.jsx("label",{className:"shrink-0 flex items-center",onClick:ae=>ae.stopPropagation(),children:r.jsx("input",{type:"checkbox",checked:g.includes(J.id),onChange:()=>y(J.id),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"})}),r.jsx(Aa,{className:"w-4 h-4 text-gray-500 shrink-0 opacity-50"}),r.jsx("div",{className:`w-2 h-2 rounded-full shrink-0 ${J.price===0||J.isFree?"border-2 border-[#38bdac] bg-transparent":"bg-gray-500"}`}),r.jsx("span",{className:"text-sm text-gray-200 truncate flex items-center min-w-0",children:ie(J)}),j.includes(J.id)&&r.jsx("span",{title:"已置顶",children:r.jsx(_l,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})})]}),r.jsxs("div",{className:"flex items-center gap-2 shrink-0",onMouseDown:ae=>ae.stopPropagation(),onClick:ae=>ae.stopPropagation(),children:[J.isNew&&r.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"NEW"}),J.price===0||J.isFree?r.jsx("span",{className:"px-2 py-1 bg-[#38bdac]/20 text-[#38bdac] text-[10px] font-medium rounded",children:"免费"}):r.jsxs("span",{className:"text-xs text-gray-500",children:["¥",J.price]}),r.jsxs("span",{className:"text-[10px] text-gray-500",title:"点击次数 · 付款笔数",children:["点击 ",J.clickCount??0," · 付款 ",J.payCount??0]}),r.jsxs("span",{className:"text-[10px] text-amber-400/90",title:"热度积分与排名",children:["热度 ",(J.hotScore??0).toFixed(1)," · 第",J.hotRank&&J.hotRank>0?J.hotRank:"-","名"]}),N&&r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>N(J),className:"text-[10px] text-gray-500 hover:text-[#38bdac] h-7 px-1.5 shrink-0",children:"付款记录"}),r.jsxs("div",{className:"flex gap-0.5 opacity-0 group-hover:opacity-100 transition-opacity",children:[r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>a(J),className:"text-gray-500 hover:text-[#38bdac] h-7 px-1.5",title:"编辑",children:r.jsx(Ut,{className:"w-3.5 h-3.5"})}),r.jsx(X,{draggable:!1,variant:"ghost",size:"sm",onClick:()=>i(J),className:"text-gray-500 hover:text-red-400 h-7 px-1.5",children:r.jsx(Zn,{className:"w-3.5 h-3.5"})})]})]})]},J.id)})})]},ne.id)})})]},z.id)})})}function lV(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(),s=n?`/api/admin/ckb/devices?${n}`:"/api/admin/ckb/devices";return De(s)}function cV(t){return De(`/api/db/person?personId=${encodeURIComponent(t)}`)}function dV(t){var s;const e=new URLSearchParams;e.set("page",String(t.page)),e.set("limit",String(t.limit)),(s=t==null?void 0:t.keyword)!=null&&s.trim()&&e.set("keyword",t.keyword.trim());const n=e.toString();return De(n?`/api/admin/ckb/plans?${n}`:"/api/admin/ckb/plans")}const J4=11,Aw={personId:"",name:"",aliases:"",label:"",sceneId:J4,ckbApiKey:"",greeting:"你好,请通过",tips:"请注意消息,稍后加你微信",remarkType:"phone",remarkFormat:"",addFriendInterval:1,startTime:"09:00",endTime:"18:00",deviceGroups:""};function uV({open:t,onOpenChange:e,editingPerson:n,onSubmit:s}){var G;const a=!!n,[i,o]=b.useState(Aw),[c,u]=b.useState(!1),[h,f]=b.useState(!1),[m,g]=b.useState([]),[y,N]=b.useState(!1),[j,v]=b.useState(""),[k,C]=b.useState([]),[E,M]=b.useState(!1),[P,H]=b.useState(""),[L,R]=b.useState(!1),[O,se]=b.useState({});b.useEffect(()=>{t&&(v(""),o(n?{personId:n.personId??n.name??"",name:n.name??"",aliases:n.aliases??"",label:n.label??"",sceneId:J4,ckbApiKey:n.ckbApiKey??"",greeting:"你好,请通过",tips:"请注意消息,稍后加你微信",remarkType:n.remarkType??"phone",remarkFormat:n.remarkFormat??"",addFriendInterval:n.addFriendInterval??1,startTime:n.startTime??"09:00",endTime:n.endTime??"18:00",deviceGroups:n.deviceGroups??""}:{...Aw}),se({}),m.length===0&&ie(""),k.length===0&&z(""))},[t,n]);const ie=async $=>{N(!0);try{const A=await lV({page:1,limit:50,keyword:$});A!=null&&A.success&&Array.isArray(A.devices)?g(A.devices):A!=null&&A.error&&te.error(A.error)}catch(A){te.error(A instanceof Error?A.message:"加载设备列表失败")}finally{N(!1)}},z=async $=>{M(!0);try{const A=await dV({page:1,limit:100,keyword:$});A!=null&&A.success&&Array.isArray(A.plans)?C(A.plans):A!=null&&A.error&&te.error(A.error)}catch{te.error("加载计划列表失败")}finally{M(!1)}},ce=$=>{const A=Array.isArray($.deviceGroups)?$.deviceGroups.map(String).join(","):"";o(Y=>({...Y,ckbApiKey:$.apiKey||"",greeting:$.greeting||Y.greeting,tips:$.tips||Y.tips,remarkType:$.remarkType||Y.remarkType,remarkFormat:$.remarkFormat||Y.remarkFormat,addFriendInterval:$.addInterval||Y.addFriendInterval,startTime:$.startTime||Y.startTime,endTime:$.endTime||Y.endTime,deviceGroups:A||Y.deviceGroups})),R(!1),te.success(`已选择计划「${$.name}」,参数已覆盖`)},me=P.trim()?k.filter($=>($.name||"").includes(P.trim())||String($.id).includes(P.trim())):k,_=async()=>{var U;const $={};(!i.name||!String(i.name).trim())&&($.name="请填写名称");const A=i.addFriendInterval;if((typeof A!="number"||A<1)&&($.addFriendInterval="添加间隔至少为 1 分钟"),(((U=i.deviceGroups)==null?void 0:U.split(",").map(D=>D.trim()).filter(Boolean))??[]).length===0&&($.deviceGroups="请至少选择 1 台设备"),se($),Object.keys($).length>0){te.error($.name||$.addFriendInterval||$.deviceGroups||"请完善必填项");return}u(!0);try{await s(i),e(!1)}catch(D){te.error(D instanceof Error?D.message:"保存失败")}finally{u(!1)}};return r.jsx(It,{open:t,onOpenChange:e,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-4xl max-h-[90vh] overflow-y-auto",children:[r.jsxs(Rt,{children:[r.jsx(Pt,{className:"text-[#38bdac]",children:a?"编辑人物":"添加人物 — 存客宝 API 获客"}),r.jsx(Cd,{className:"text-gray-400 text-sm",children:a?"修改后同步到存客宝计划":"添加时自动生成 token,并同步创建存客宝场景获客计划"})]}),r.jsxs("div",{className:"space-y-6 py-2",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-xs font-medium text-gray-400 uppercase tracking-wider mb-3",children:"基础信息"}),r.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[r.jsxs("div",{className:"space-y-1.5",children:[r.jsxs(Z,{className:"text-gray-400 text-xs",children:["名称 ",r.jsx("span",{className:"text-red-400",children:"*"})]}),r.jsx(re,{className:`bg-[#0a1628] text-white ${O.name?"border-red-500 focus-visible:ring-red-500":"border-gray-700"}`,placeholder:"如 卡若",value:i.name,onChange:$=>{o(A=>({...A,name:$.target.value})),O.name&&se(A=>({...A,name:void 0}))}}),O.name&&r.jsx("p",{className:"text-xs text-red-400",children:O.name})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"人物ID(可选)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"自动生成",value:i.personId,onChange:$=>o(A=>({...A,personId:$.target.value})),disabled:a})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"标签(身份/角色)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 超级个体",value:i.label,onChange:$=>o(A=>({...A,label:$.target.value}))})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"别名(逗号分隔,@ 可匹配)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 卡卡, 若若",value:i.aliases,onChange:$=>o(A=>({...A,aliases:$.target.value}))})]})]})]}),r.jsxs("div",{className:"border-t border-gray-700/50 pt-5",children:[r.jsx("p",{className:"text-xs font-medium text-gray-400 uppercase tracking-wider mb-4",children:"存客宝 API 获客配置"}),r.jsxs("div",{className:"grid grid-cols-2 gap-x-8 gap-y-4",children:[r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-1.5 relative",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"选择存客宝获客计划"}),r.jsxs("div",{className:"flex gap-2",children:[r.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:()=>R(!L),children:i.ckbApiKey?r.jsx("span",{className:"text-white truncate",children:((G=k.find($=>$.apiKey===i.ckbApiKey))==null?void 0:G.name)||`密钥: ${i.ckbApiKey.slice(0,20)}...`}):r.jsx("span",{className:"text-gray-500",children:"点击选择已有计划 / 新建时自动创建"})}),r.jsx(X,{type:"button",variant:"outline",size:"sm",className:"border-gray-600 text-gray-200 shrink-0",onClick:()=>{z(P),R(!0)},disabled:E,children:E?"加载...":"刷新"})]}),L&&r.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:[r.jsx("div",{className:"p-2 border-b border-gray-700/60",children:r.jsx(re,{className:"bg-[#050c18] border-gray-700 text-white h-8 text-xs",placeholder:"搜索计划名称...",value:P,onChange:$=>H($.target.value),onKeyDown:$=>{$.key==="Enter"&&z(P)},autoFocus:!0})}),r.jsx("div",{className:"flex-1 overflow-y-auto",children:me.length===0?r.jsx("div",{className:"text-center py-4 text-gray-500 text-xs",children:E?"加载中...":"暂无计划"}):me.map($=>r.jsxs("div",{className:`px-3 py-2 cursor-pointer hover:bg-[#38bdac]/10 text-sm flex items-center justify-between ${i.ckbApiKey===$.apiKey?"bg-[#38bdac]/20 text-[#38bdac]":"text-white"}`,onClick:()=>ce($),children:[r.jsxs("div",{className:"truncate",children:[r.jsx("span",{className:"font-medium",children:$.name}),r.jsxs("span",{className:"text-xs text-gray-500 ml-2",children:["ID:",String($.id)]})]}),$.enabled?r.jsx("span",{className:"text-[10px] text-green-400 bg-green-400/10 px-1.5 rounded shrink-0 ml-2",children:"启用"}):r.jsx("span",{className:"text-[10px] text-gray-500 bg-gray-500/10 px-1.5 rounded shrink-0 ml-2",children:"停用"})]},String($.id)))}),r.jsx("div",{className:"p-2 border-t border-gray-700/60 flex justify-end",children:r.jsx(X,{type:"button",size:"sm",variant:"ghost",className:"text-gray-400 h-7 text-xs",onClick:()=>R(!1),children:"关闭"})})]}),r.jsx("p",{className:"text-xs text-gray-500",children:"选择计划后自动覆盖下方参数。新建人物时若不选择则自动创建新计划。"})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsxs(Z,{className:"text-gray-400 text-xs",children:["选择设备 ",r.jsx("span",{className:"text-red-400",children:"*"})]}),r.jsxs("div",{className:`flex gap-2 rounded-md border ${O.deviceGroups?"border-red-500":"border-gray-700"}`,children:[r.jsx(re,{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)}),r.jsx(X,{type:"button",variant:"outline",className:"border-0 border-l border-inherit rounded-r-md text-gray-200",onClick:()=>f(!0),children:"选择"})]}),O.deviceGroups?r.jsx("p",{className:"text-xs text-red-400",children:O.deviceGroups}):r.jsx("p",{className:"text-xs text-gray-500",children:"从存客宝设备列表中选择,至少选择 1 台设备参与获客计划。"})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"好友备注"}),r.jsxs(Pl,{value:i.remarkType,onValueChange:$=>o(A=>({...A,remarkType:$})),children:[r.jsx(jo,{className:"bg-[#0a1628] border-gray-700 text-white",children:r.jsx(Ol,{placeholder:"选择备注类型"})}),r.jsxs(ko,{children:[r.jsx(Ks,{value:"phone",children:"手机号"}),r.jsx(Ks,{value:"nickname",children:"昵称"}),r.jsx(Ks,{value:"source",children:"来源"})]})]})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"备注格式"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 手机号+SOUL链接人与事-{名称},留空用默认",value:i.remarkFormat,onChange:$=>o(A=>({...A,remarkFormat:$.target.value}))})]})]}),r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"打招呼语"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"你好,请通过",value:i.greeting,onChange:$=>o(A=>({...A,greeting:$.target.value}))})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"添加间隔(分钟)"}),r.jsx(re,{type:"number",min:1,className:`bg-[#0a1628] text-white ${O.addFriendInterval?"border-red-500 focus-visible:ring-red-500":"border-gray-700"}`,value:i.addFriendInterval,onChange:$=>{o(A=>({...A,addFriendInterval:Number($.target.value)||1})),O.addFriendInterval&&se(A=>({...A,addFriendInterval:void 0}))}}),O.addFriendInterval&&r.jsx("p",{className:"text-xs text-red-400",children:O.addFriendInterval})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"允许加人时间段"}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(re,{type:"time",className:"bg-[#0a1628] border-gray-700 text-white w-24",value:i.startTime,onChange:$=>o(A=>({...A,startTime:$.target.value}))}),r.jsx("span",{className:"text-gray-500 text-sm shrink-0",children:"至"}),r.jsx(re,{type:"time",className:"bg-[#0a1628] border-gray-700 text-white w-24",value:i.endTime,onChange:$=>o(A=>({...A,endTime:$.target.value}))})]})]})]}),r.jsxs("div",{className:"space-y-1.5",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"获客成功提示"}),r.jsx(rc,{className:"bg-[#0a1628] border-gray-700 text-white min-h-[72px] resize-none",placeholder:"请注意消息,稍后加你微信",value:i.tips,onChange:$=>o(A=>({...A,tips:$.target.value}))})]})]})]})]})]}),r.jsxs(sn,{className:"gap-3 pt-2",children:[r.jsx(X,{variant:"outline",onClick:()=>e(!1),className:"border-gray-600 text-gray-300",children:"取消"}),r.jsx(X,{onClick:_,disabled:c,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:c?"保存中...":a?"保存":"添加"})]}),h&&r.jsx("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-black/60",children:r.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:[r.jsxs("div",{className:"flex items-center justify-between px-5 py-3 border-b border-gray-700/60",children:[r.jsxs("div",{children:[r.jsx("h3",{className:"text-sm font-medium text-white",children:"选择设备"}),r.jsx("p",{className:"text-xs text-gray-400 mt-0.5",children:"勾选需要参与本计划的设备,可多选"})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(re,{className:"bg-[#050c18] border-gray-700 text-white h-8 w-52",placeholder:"搜索备注/微信号/IMEI",value:j,onChange:$=>v($.target.value),onKeyDown:$=>{$.key==="Enter"&&ie(j)}}),r.jsx(X,{type:"button",size:"sm",variant:"outline",className:"border-gray-600 text-gray-200 h-8",onClick:()=>ie(j),disabled:y,children:"刷新"}),r.jsx(X,{type:"button",size:"icon",variant:"outline",className:"border-gray-600 text-gray-300 h-8 w-8",onClick:()=>f(!1),children:"✕"})]})]}),r.jsx("div",{className:"flex-1 overflow-y-auto",children:y?r.jsx("div",{className:"flex h-full items-center justify-center text-gray-400 text-sm",children:"正在加载设备列表…"}):m.length===0?r.jsx("div",{className:"flex h-full items-center justify-center text-gray-500 text-sm",children:"暂无设备数据,请检查存客宝账号与开放 API 配置"}):r.jsx("div",{className:"p-4 space-y-2",children:m.map($=>{const A=String($.id??""),Y=i.deviceGroups?i.deviceGroups.split(",").map(W=>W.trim()).filter(Boolean):[],U=Y.includes(A),D=()=>{let W;U?W=Y.filter(le=>le!==A):W=[...Y,A],o(le=>({...le,deviceGroups:W.join(",")})),W.length>0&&se(le=>({...le,deviceGroups:void 0}))};return r.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:[r.jsx("input",{type:"checkbox",className:"h-4 w-4 accent-[#38bdac]",checked:U,onChange:D}),r.jsxs("div",{className:"flex flex-col min-w-0",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("span",{className:"text-sm text-white truncate max-w-xs",children:$.memo||$.wechatId||`设备 ${A}`}),$.status==="online"&&r.jsx("span",{className:"rounded-full bg-emerald-500/20 text-emerald-400 text-[11px] px-2 py-0.5",children:"在线"}),$.status==="offline"&&r.jsx("span",{className:"rounded-full bg-gray-600/20 text-gray-400 text-[11px] px-2 py-0.5",children:"离线"})]}),r.jsxs("div",{className:"text-[11px] text-gray-400 mt-0.5",children:[r.jsxs("span",{className:"mr-3",children:["ID: ",A]}),$.wechatId&&r.jsxs("span",{className:"mr-3",children:["微信号: ",$.wechatId]}),typeof $.totalFriend=="number"&&r.jsxs("span",{children:["好友数: ",$.totalFriend]})]})]})]},A)})})}),r.jsxs("div",{className:"flex justify-between items-center px-5 py-3 border-t border-gray-700/60",children:[r.jsxs("span",{className:"text-xs text-gray-400",children:["已选择"," ",i.deviceGroups?i.deviceGroups.split(",").filter(Boolean).length:0," ","台设备"]}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx(X,{type:"button",variant:"outline",className:"border-gray-600 text-gray-200 h-8 px-4",onClick:()=>f(!1),children:"取消"}),r.jsx(X,{type:"button",className:"bg-[#38bdac] hover:bg-[#2da396] text-white h-8 px-4",onClick:()=>f(!1),children:"确定"})]})]})]})})]})})}function hV(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 s=Array.from(n.values()).map(i=>({...i,chapters:Array.from(i.chapters.values())})),a=i=>i.title.includes("序言")?0:i.id==="part-2026-daily"?1.5:i.title.includes("附录")?2:i.title.includes("尾声")?3:1;return s.sort((i,o)=>{const c=a(i),u=a(o);return c!==u?c-u:0})}function fV(){var jc,ds,Na;const[t,e]=b.useState([]),[n,s]=b.useState(!0),[a,i]=b.useState([]),[o,c]=b.useState(null),[u,h]=b.useState(!1),[f,m]=b.useState(!1),[g,y]=b.useState(!1),[N,j]=b.useState(""),[v,k]=b.useState([]),[C,E]=b.useState(!1),[M,P]=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}),[H,L]=b.useState(null),[R,O]=b.useState(!1),[se,ie]=b.useState(!1),[z,ce]=b.useState(null),[me,_]=b.useState(!1),[G,$]=b.useState([]),[A,Y]=b.useState(!1),[U,D]=b.useState(""),[W,le]=b.useState(""),[ye,Ae]=b.useState(!1),[ne,K]=b.useState(""),[J,ge]=b.useState(!1),[ae,pe]=b.useState(null),[Se,tt]=b.useState(!1),[at,Dt]=b.useState(!1),[kt,At]=b.useState({readWeight:.5,recencyWeight:.3,payWeight:.2}),[Gt,In]=b.useState(!1),[Lt,xn]=b.useState(!1),[ln,Bs]=b.useState(1),[yn,is]=b.useState([]),[Un,Kn]=b.useState(!1),[_t,qn]=b.useState([]),[zn,ls]=b.useState(!1),[q,He]=b.useState(20),[mt,$t]=b.useState(!1),[ut,ot]=b.useState(!1),[xt,tn]=b.useState([]),[he,xe]=b.useState([]),[zt,Rn]=b.useState([]),[da,ua]=b.useState(!1),[_r,Zs]=b.useState(1),[ha,Xo]=b.useState(20),[fa,Zi]=b.useState(0),[pa,dc]=b.useState(1),[mr,ma]=b.useState(""),[Vs,gr]=b.useState(!1),[eo,Zo]=b.useState(null),[yt,kn]=b.useState({tagId:"",label:"",url:"",type:"url",appId:"",pagePath:""}),[zr,xr]=b.useState(!1),[to,yr]=b.useState(!1),[ga,Fr]=b.useState(null),[er,Ja]=b.useState(null),[uc,Jt]=b.useState({}),[hc,br]=b.useState(!1),[vr,$r]=b.useState(""),[Ya,no]=b.useState(""),[Br,Ns]=b.useState([]),[Qa,ws]=b.useState(0),[Vr,fc]=b.useState(1),[pc,xa]=b.useState(!1),ya=b.useRef(null),Hr=b.useMemo(()=>{const T=new Map;return yn.forEach((B,de)=>{T.set(B.id,de+1)}),T},[yn]),bn=hV(t,Hr),so=t.length,ba=10,Wr=Math.max(1,Math.ceil(yn.length/ba)),F=yn.slice((ln-1)*ba,ln*ba),Pe=async()=>{s(!0);try{const T=await De("/api/db/book?action=list",{cache:"no-store"});e(Array.isArray(T==null?void 0:T.sections)?T.sections:[])}catch(T){console.error(T),e([])}finally{s(!1)}},_e=async()=>{Kn(!0);try{const T=await De("/api/db/book?action=ranking",{cache:"no-store"}),B=Array.isArray(T==null?void 0:T.sections)?T.sections:[];is(B);const de=B.filter(be=>be.isPinned).map(be=>be.id);qn(de)}catch(T){console.error(T),is([])}finally{Kn(!1)}};b.useEffect(()=>{Pe(),_e()},[]);const lt=T=>{i(B=>B.includes(T)?B.filter(de=>de!==T):[...B,T])},cn=b.useCallback(T=>{const B=t,de=T.flatMap(be=>{const qe=B.find(st=>st.id===be.id);return qe?[{...qe,partId:be.partId,partTitle:be.partTitle,chapterId:be.chapterId,chapterTitle:be.chapterTitle}]:[]});return e(de),Ot("/api/db/book",{action:"reorder",items:T}).then(be=>{be&&be.success===!1&&(e(B),te.error("排序失败: "+(be&&typeof be=="object"&&"error"in be?be.error:"未知错误")))}).catch(be=>{e(B),console.error("排序失败:",be),te.error("排序失败: "+(be instanceof Error?be.message:"网络或服务异常"))}),Promise.resolve()},[t]),ct=async T=>{if(confirm(`确定要删除章节「${T.title}」吗?此操作不可恢复。`))try{const B=await ea(`/api/db/book?id=${encodeURIComponent(T.id)}`);B&&B.success!==!1?(te.success("已删除"),Pe(),_e()):te.error("删除失败: "+(B&&typeof B=="object"&&"error"in B?B.error:"未知错误"))}catch(B){console.error(B),te.error("删除失败")}},Xa=b.useCallback(async()=>{In(!0);try{const T=await De("/api/db/config/full?key=article_ranking_weights",{cache:"no-store"}),B=T&&T.data;B&&typeof B.readWeight=="number"&&typeof B.recencyWeight=="number"&&typeof B.payWeight=="number"&&At({readWeight:Math.max(0,Math.min(1,B.readWeight)),recencyWeight:Math.max(0,Math.min(1,B.recencyWeight)),payWeight:Math.max(0,Math.min(1,B.payWeight))})}catch{}finally{In(!1)}},[]);b.useEffect(()=>{at&&Xa()},[at,Xa]);const dn=async()=>{const{readWeight:T,recencyWeight:B,payWeight:de}=kt,be=T+B+de;if(Math.abs(be-1)>.001){te.error("三个权重之和必须等于 1");return}xn(!0);try{const qe=await Nt("/api/db/config",{key:"article_ranking_weights",value:{readWeight:T,recencyWeight:B,payWeight:de},description:"文章排名算法权重"});qe&&qe.success!==!1?(te.success("排名权重已保存"),Dt(!1),Pe(),_e()):te.error("保存失败: "+(qe&&typeof qe=="object"&&"error"in qe?qe.error:""))}catch(qe){console.error(qe),te.error("保存失败")}finally{xn(!1)}},Gn=b.useCallback(async()=>{ls(!0);try{const T=await De("/api/db/config/full?key=pinned_section_ids",{cache:"no-store"}),B=T&&T.data;Array.isArray(B)&&qn(B)}catch{}finally{ls(!1)}},[]),Ms=b.useCallback(async()=>{try{const T=await De("/api/db/persons");T!=null&&T.success&&T.persons&&tn(T.persons.map(B=>{const de=B.deviceGroups,be=Array.isArray(de)?de.join(","):de??"";return{id:B.token??B.personId??"",personId:B.personId,name:B.name,aliases:B.aliases??"",label:B.label??"",ckbApiKey:B.ckbApiKey??"",ckbPlanId:B.ckbPlanId,remarkType:B.remarkType,remarkFormat:B.remarkFormat,addFriendInterval:B.addFriendInterval,startTime:B.startTime,endTime:B.endTime,deviceGroups:be}}))}catch{}},[]),As=b.useCallback(async()=>{try{const T=await De("/api/db/link-tags");T!=null&&T.success&&T.linkTags&&xe(T.linkTags.map(B=>({id:B.tagId,label:B.label,url:B.url,type:B.type||"url",appId:B.appId||"",pagePath:B.pagePath||""})))}catch{}},[]),Nr=b.useCallback(async()=>{try{const T=await De("/api/db/ckb-person-leads");if(T!=null&&T.success&&T.byPerson){const B={};for(const de of T.byPerson)B[de.token]=de.total;Jt(B)}}catch{}},[]),va=b.useCallback(async(T,B,de=1)=>{$r(T),no(B),br(!0),fc(de),xa(!0);try{const be=await De(`/api/db/ckb-person-leads?token=${encodeURIComponent(T)}&page=${de}&pageSize=20`);be!=null&&be.success?(Ns(be.records||[]),ws(be.total||0)):te.error((be==null?void 0:be.error)||"加载获客详情失败")}catch(be){te.error(be instanceof Error?be.message:"加载获客详情失败")}finally{xa(!1)}},[]),tr=b.useCallback(async()=>{ua(!0);try{const T=new URLSearchParams({page:String(_r),pageSize:String(ha)}),B=mr.trim();B&&T.set("search",B);const de=await De(`/api/db/link-tags?${T.toString()}`);if(de!=null&&de.success){const be=Array.isArray(de.linkTags)?de.linkTags:[];Rn(be.map(qe=>({id:qe.tagId,label:qe.label,url:qe.url,type:qe.type||"url",appId:qe.appId||"",pagePath:qe.pagePath||""}))),Zi(typeof de.total=="number"?de.total:0),dc(typeof de.totalPages=="number"&&de.totalPages>0?de.totalPages:1)}}catch(T){console.error(T),te.error("加载链接标签失败")}finally{ua(!1)}},[_r,ha,mr]),[cs,Ur]=b.useState([]),[Is,wr]=b.useState(""),[Za,js]=b.useState(!1),hp=b.useRef(null),mc=b.useCallback(async()=>{try{const T=await De("/api/admin/linked-miniprograms");T!=null&&T.success&&Array.isArray(T.data)&&Ur(T.data.map(B=>({...B,key:B.key})))}catch{}},[]),ei=cs.filter(T=>!Is.trim()||T.name.toLowerCase().includes(Is.toLowerCase())||T.key&&T.key.toLowerCase().includes(Is.toLowerCase())||T.appId.toLowerCase().includes(Is.toLowerCase())),Yd=async T=>{const B=_t.includes(T)?_t.filter(de=>de!==T):[..._t,T];qn(B);try{await Nt("/api/db/config",{key:"pinned_section_ids",value:B,description:"强制置顶章节ID列表(精选推荐/首页最新更新)"}),_e()}catch{qn(_t)}},gc=b.useCallback(async()=>{$t(!0);try{const T=await De("/api/db/config/full?key=unpaid_preview_percent",{cache:"no-store"}),B=T&&T.data;typeof B=="number"&&B>0&&B<=100&&He(B)}catch{}finally{$t(!1)}},[]),el=async()=>{if(q<1||q>100){te.error("预览比例需在 1~100 之间");return}ot(!0);try{const T=await Nt("/api/db/config",{key:"unpaid_preview_percent",value:q,description:"小程序未付费内容默认预览比例(%)"});T&&T.success!==!1?te.success("预览比例已保存"):te.error("保存失败: "+(T.error||""))}catch{te.error("保存失败")}finally{ot(!1)}};b.useEffect(()=>{Gn(),gc(),Ms(),As(),Nr(),mc()},[Gn,gc,Ms,As,Nr,mc]),b.useEffect(()=>{tr()},[tr]);const xc=async T=>{pe({section:T,orders:[]}),tt(!0);try{const B=await De(`/api/db/book?action=section-orders&id=${encodeURIComponent(T.id)}`),de=B!=null&&B.success&&Array.isArray(B.orders)?B.orders:[];pe(be=>be?{...be,orders:de}:null)}catch(B){console.error(B),pe(de=>de?{...de,orders:[]}:null)}finally{tt(!1)}},yc=async T=>{m(!0);try{const B=T.mid!=null&&T.mid>0?`/api/db/book?action=read&mid=${T.mid}`:`/api/db/book?action=read&id=${encodeURIComponent(T.id)}`,de=await De(B);if(de!=null&&de.success&&de.section){const be=de.section,qe=be.editionPremium===!0;c({id:T.id,originalId:T.id,title:de.section.title??T.title,price:de.section.price??T.price,content:de.section.content??"",filePath:T.filePath,isFree:T.isFree||T.price===0,isNew:be.isNew??T.isNew,isPinned:_t.includes(T.id),hotScore:T.hotScore??0,editionStandard:qe?!1:be.editionStandard??!0,editionPremium:qe})}else c({id:T.id,originalId:T.id,title:T.title,price:T.price,content:"",filePath:T.filePath,isFree:T.isFree,isNew:T.isNew,isPinned:_t.includes(T.id),hotScore:T.hotScore??0,editionStandard:!0,editionPremium:!1}),de&&!de.success&&te.error("无法读取文件内容: "+(de.error||"未知错误"))}catch(B){console.error(B),c({id:T.id,title:T.title,price:T.price,content:"",filePath:T.filePath,isFree:T.isFree})}finally{m(!1)}},ro=async()=>{var T;if(o){y(!0);try{let B=o.content||"";const de=[new RegExp(`^#+\\s*${o.id.replace(".","\\.")}\\s+.*$`,"gm"),new RegExp(`^#+\\s*${o.id.replace(".","\\.")}[::].*$`,"gm"),new RegExp(`^#\\s+.*${(T=o.title)==null?void 0:T.slice(0,10).replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}.*$`,"gm")];for(const Jn of de)B=B.replace(Jn,"");B=B.replace(/^\s*\n+/,"").trim();const be=o.originalId||o.id,qe=o.id!==be,st=await Ot("/api/db/book",{id:be,...qe?{newId:o.id}:{},title:o.title,price:o.isFree?0:o.price,content:B,isFree:o.isFree||o.price===0,isNew:o.isNew,hotScore:o.hotScore,editionStandard:o.editionPremium?!1:o.editionStandard??!0,editionPremium:o.editionPremium??!1,saveToFile:!0},{timeout:Zv}),bt=qe?o.id:be;o.isPinned!==_t.includes(bt)&&await Yd(bt),st&&st.success!==!1?(te.success(`已保存:${o.title}`),c(null),Pe(),Ms(),As()):te.error("保存失败: "+(st&&typeof st=="object"&&"error"in st?st.error:"未知错误"))}catch(B){console.error(B);const de=B instanceof Error&&B.name==="AbortError"?"保存超时,请检查网络或稍后重试":"保存失败";te.error(de)}finally{y(!1)}}},ao=async()=>{if(!M.id||!M.title){te.error("请填写章节ID和标题");return}y(!0);try{const T=bn.find(be=>be.id===M.partId),B=T==null?void 0:T.chapters.find(be=>be.id===M.chapterId),de=await Ot("/api/db/book",{id:M.id,title:M.title,price:M.isFree?0:M.price,content:M.content||"",partId:M.partId,partTitle:(T==null?void 0:T.title)??"",chapterId:M.chapterId,chapterTitle:(B==null?void 0:B.title)??"",isFree:M.isFree,isNew:M.isNew,editionStandard:M.editionPremium?!1:M.editionStandard??!0,editionPremium:M.editionPremium??!1,hotScore:M.hotScore??0,saveToFile:!1},{timeout:Zv});if(de&&de.success!==!1){if(M.isPinned){const be=[..._t,M.id];qn(be);try{await Nt("/api/db/config",{key:"pinned_section_ids",value:be,description:"强制置顶章节ID列表(精选推荐/首页最新更新)"})}catch{}}te.success(`章节创建成功:${M.title}`),h(!1),P({id:"",title:"",price:1,partId:"part-1",chapterId:"chapter-1",content:"",editionStandard:!0,editionPremium:!1,isFree:!1,isNew:!1,isPinned:!1,hotScore:0}),Pe(),Ms(),As()}else te.error("创建失败: "+(de&&typeof de=="object"&&"error"in de?de.error:"未知错误"))}catch(T){console.error(T),te.error("创建失败")}finally{y(!1)}},ti=T=>{P(B=>{var de;return{...B,partId:T.id,chapterId:((de=T.chapters[0])==null?void 0:de.id)??"chapter-1"}}),h(!0)},tl=T=>{L({id:T.id,title:T.title})},fp=async()=>{var T;if((T=H==null?void 0:H.title)!=null&&T.trim()){O(!0);try{const B=t.map(be=>({id:be.id,partId:be.partId||"part-1",partTitle:be.partId===H.id?H.title.trim():be.partTitle||"",chapterId:be.chapterId||"chapter-1",chapterTitle:be.chapterTitle||""})),de=await Ot("/api/db/book",{action:"reorder",items:B});if(de&&de.success!==!1){const be=H.title.trim();e(qe=>qe.map(st=>st.partId===H.id?{...st,partTitle:be}:st)),L(null),Pe()}else te.error("更新篇名失败: "+(de&&typeof de=="object"&&"error"in de?de.error:"未知错误"))}catch(B){console.error(B),te.error("更新篇名失败")}finally{O(!1)}}},pp=T=>{const B=T.chapters.length+1,de=`chapter-${T.id}-${B}-${Date.now()}`;P({id:`${B}.1`,title:"新章节",price:1,partId:T.id,chapterId:de,content:"",editionStandard:!0,editionPremium:!1,isFree:!1,isNew:!1,isPinned:!1,hotScore:0}),h(!0)},bc=(T,B)=>{const de=B.sections;let be=1,qe=!1,st=!1;if(de.length>0){const bt=typeof de[0].price=="number"?de[0].price:Number(de[0].price)||1,Jn=!!(de[0].isFree||bt===0);st=de.some(qr=>{const vn=typeof qr.price=="number"?qr.price:Number(qr.price)||1,nr=!!(qr.isFree||vn===0);return vn!==bt||nr!==Jn}),be=Jn?0:bt,qe=Jn}ce({part:T,chapter:B,title:B.title,price:be,isFree:qe,priceMixed:st,initialTitle:B.title,initialPrice:be,initialIsFree:qe})},nl=async()=>{var qe;if(!((qe=z==null?void 0:z.title)!=null&&qe.trim()))return;const T=z,B=T.title.trim(),de=B!==T.initialTitle,be=T.isFree!==T.initialIsFree||!T.isFree&&Number(T.price)!==Number(T.initialPrice);if(!de&&!be){te.info("未修改任何内容"),ce(null);return}if(T.priceMixed&&be){const st=T.chapter.sections.length,bt=T.isFree?"全部设为免费":`全部设为 ¥${T.price}`;if(!confirm(`本章 ${st} 节当前定价不一致,保存后将${bt},确定?`))return}_(!0);try{if(de){const st=t.map(vn=>({id:vn.id,partId:vn.partId||T.part.id,partTitle:vn.partId===T.part.id?T.part.title:vn.partTitle||"",chapterId:vn.chapterId||T.chapter.id,chapterTitle:vn.partId===T.part.id&&vn.chapterId===T.chapter.id?B:vn.chapterTitle||""})),bt=await Ot("/api/db/book",{action:"reorder",items:st});if(bt&&bt.success===!1){te.error("保存章节名失败: "+(bt&&typeof bt=="object"&&"error"in bt?bt.error:"未知错误"));return}const Jn=T.part.id,qr=T.chapter.id;e(vn=>vn.map(nr=>nr.partId===Jn&&nr.chapterId===qr?{...nr,chapterTitle:B}:nr))}if(be){const st=await Ot("/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(st&&st.success===!1){te.error("保存定价失败: "+(st&&typeof st=="object"&&"error"in st?st.error:"未知错误")),de&&Pe();return}}ce(null),Pe(),te.success("已保存")}catch(st){console.error(st),te.error("保存失败")}finally{_(!1)}},vc=async(T,B)=>{const de=B.sections.map(be=>be.id);if(de.length===0){te.info("该章下无小节,无需删除");return}if(confirm(`确定要删除「第${T.chapters.indexOf(B)+1}章 | ${B.title}」吗?将删除共 ${de.length} 节,此操作不可恢复。`))try{for(const be of de)await ea(`/api/db/book?id=${encodeURIComponent(be)}`);Pe()}catch(be){console.error(be),te.error("删除失败")}},Qd=async()=>{if(!ne.trim()){te.error("请输入篇名");return}ge(!0);try{const T=`part-new-${Date.now()}`,B="chapter-1",de=`part-placeholder-${Date.now()}`,be=await Ot("/api/db/book",{id:de,title:"占位节(可编辑)",price:0,content:"",partId:T,partTitle:ne.trim(),chapterId:B,chapterTitle:"第1章 | 待编辑",saveToFile:!1});be&&be.success!==!1?(te.success(`篇「${ne}」创建成功`),ie(!1),K(""),Pe()):te.error("创建失败: "+(be&&typeof be=="object"&&"error"in be?be.error:"未知错误"))}catch(T){console.error(T),te.error("创建失败")}finally{ge(!1)}},Kr=async()=>{if(G.length===0){te.error("请先勾选要移动的章节");return}const T=bn.find(de=>de.id===U),B=T==null?void 0:T.chapters.find(de=>de.id===W);if(!T||!B||!U||!W){te.error("请选择目标篇和章");return}Ae(!0);try{const de=()=>{const bt=new Set(G),Jn=t.map(Sn=>({id:Sn.id,partId:Sn.partId||"",partTitle:Sn.partTitle||"",chapterId:Sn.chapterId||"",chapterTitle:Sn.chapterTitle||""})),qr=Jn.filter(Sn=>bt.has(Sn.id)).map(Sn=>({...Sn,partId:U,partTitle:T.title||U,chapterId:W,chapterTitle:B.title||W})),vn=Jn.filter(Sn=>!bt.has(Sn.id));let nr=vn.length;for(let Sn=vn.length-1;Sn>=0;Sn-=1){const Xd=vn[Sn];if(Xd.partId===U&&Xd.chapterId===W){nr=Sn+1;break}}return[...vn.slice(0,nr),...qr,...vn.slice(nr)]},be=async()=>{const bt=de(),Jn=await Ot("/api/db/book",{action:"reorder",items:bt});return Jn&&Jn.success!==!1?(te.success(`已移动 ${G.length} 节到「${T.title}」-「${B.title}」`),Y(!1),$([]),await Pe(),!0):!1},qe={action:"move-sections",sectionIds:G,targetPartId:U,targetChapterId:W,targetPartTitle:T.title||U,targetChapterTitle:B.title||W},st=await Ot("/api/db/book",qe);if(st&&st.success!==!1)te.success(`已移动 ${st.count??G.length} 节到「${T.title}」-「${B.title}」`),Y(!1),$([]),await Pe();else{const bt=st&&typeof st=="object"&&"error"in st?st.error||"":"未知错误";if((bt.includes("缺少 id")||bt.includes("无效的 action"))&&await be())return;te.error("移动失败: "+bt)}}catch(de){console.error(de),te.error("移动失败: "+(de instanceof Error?de.message:"网络或服务异常"))}finally{Ae(!1)}},Nc=T=>{$(B=>B.includes(T)?B.filter(de=>de!==T):[...B,T])},sl=async T=>{const B=t.filter(de=>de.partId===T.id).map(de=>de.id);if(B.length===0){te.info("该篇下暂无小节可删除");return}if(confirm(`确定要删除「${T.title}」整篇吗?将删除共 ${B.length} 节内容,此操作不可恢复。`))try{for(const de of B)await ea(`/api/db/book?id=${encodeURIComponent(de)}`);Pe()}catch(de){console.error(de),te.error("删除失败")}},wc=async()=>{var T;if(N.trim()){E(!0);try{const B=await De(`/api/search?q=${encodeURIComponent(N)}`);B!=null&&B.success&&((T=B.data)!=null&&T.results)?k(B.data.results):(k([]),B&&!B.success&&te.error("搜索失败: "+B.error))}catch(B){console.error(B),k([]),te.error("搜索失败")}finally{E(!1)}}},ni=bn.find(T=>T.id===M.partId),io=(ni==null?void 0:ni.chapters)??[];return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"内容管理"}),r.jsxs("p",{className:"text-gray-400 mt-1",children:["共 ",bn.length," 篇 · ",so," 节内容"]})]}),r.jsxs("div",{className:"flex gap-2",children:[r.jsxs(X,{onClick:()=>Dt(!0),variant:"outline",className:"border-amber-500/50 text-amber-400 hover:bg-amber-500/10 bg-transparent",children:[r.jsx(qu,{className:"w-4 h-4 mr-2"}),"排名算法"]}),r.jsxs(X,{onClick:()=>{const T=typeof window<"u"?`${window.location.origin}/api-doc`:"";T&&window.open(T,"_blank","noopener,noreferrer")},variant:"outline",className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Rr,{className:"w-4 h-4 mr-2"}),"API 接口"]})]})]}),r.jsx(It,{open:u,onOpenChange:h,children:r.jsxs(Ct,{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:[r.jsx(Rt,{className:"shrink-0 px-6 pt-6 pb-2",children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(fn,{className:"w-5 h-5 text-[#38bdac]"}),"新建章节"]})}),r.jsxs("div",{className:"flex-1 overflow-y-auto min-h-0 px-6 space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"章节ID *"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 9.15",value:M.id,onChange:T=>P({...M,id:T.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"价格 (元)"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:M.isFree?0:M.price,onChange:T=>P({...M,price:Number(T.target.value),isFree:Number(T.target.value)===0}),disabled:M.isFree})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"免费"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:M.isFree,onChange:T=>P({...M,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]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"设为免费"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"最新新增"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:M.isNew,onChange:T=>P({...M,isNew:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"标记 NEW"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"小程序直推"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:M.isPinned,onChange:T=>P({...M,isPinned:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-amber-400 focus:ring-amber-400"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"强制置顶到小程序首页"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"文章类型"}),r.jsxs("div",{className:"flex items-center gap-4 h-10",children:[r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"radio",name:"new-edition-type",checked:M.editionPremium!==!0,onChange:()=>P({...M,editionStandard:!0,editionPremium:!1}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"普通版"})]}),r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"radio",name:"new-edition-type",checked:M.editionPremium===!0,onChange:()=>P({...M,editionStandard:!1,editionPremium:!0}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"增值版"})]})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"热度分"}),r.jsx(re,{type:"number",step:"0.1",min:"0",className:"bg-[#0a1628] border-gray-700 text-white",value:M.hotScore??0,onChange:T=>P({...M,hotScore:Math.max(0,parseFloat(T.target.value)||0)})})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"章节标题 *"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"输入章节标题",value:M.title,onChange:T=>P({...M,title:T.target.value})})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"所属篇"}),r.jsxs(Pl,{value:M.partId,onValueChange:T=>{var de;const B=bn.find(be=>be.id===T);P({...M,partId:T,chapterId:((de=B==null?void 0:B.chapters[0])==null?void 0:de.id)??"chapter-1"})},children:[r.jsx(jo,{className:"bg-[#0a1628] border-gray-700 text-white",children:r.jsx(Ol,{})}),r.jsxs(ko,{className:"bg-[#0f2137] border-gray-700",children:[bn.map(T=>r.jsx(Ks,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id)),bn.length===0&&r.jsx(Ks,{value:"part-1",className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:"默认篇"})]})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"所属章"}),r.jsxs(Pl,{value:M.chapterId,onValueChange:T=>P({...M,chapterId:T}),children:[r.jsx(jo,{className:"bg-[#0a1628] border-gray-700 text-white",children:r.jsx(Ol,{})}),r.jsxs(ko,{className:"bg-[#0f2137] border-gray-700",children:[io.map(T=>r.jsx(Ks,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id)),io.length===0&&r.jsx(Ks,{value:"chapter-1",className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:"默认章"})]})]})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"内容(富文本编辑器,支持 @链接AI人物 和 #链接标签)"}),r.jsx(Hx,{content:M.content||"",onChange:T=>P({...M,content:T}),onImageUpload:async T=>{var qe;const B=new FormData;B.append("file",T),B.append("folder","book-images");const be=await(await fetch(Lo("/api/upload"),{method:"POST",body:B,headers:{Authorization:`Bearer ${localStorage.getItem("admin_token")||""}`}})).json();return((qe=be==null?void 0:be.data)==null?void 0:qe.url)||(be==null?void 0:be.url)||""},persons:xt,linkTags:he,placeholder:"开始编辑内容... 输入 @ 可链接AI人物,工具栏可插入 #链接标签"})]})]}),r.jsxs(sn,{className:"shrink-0 px-6 py-4 border-t border-gray-700/50",children:[r.jsx(X,{variant:"outline",onClick:()=>h(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsx(X,{onClick:ao,disabled:g||!M.id||!M.title,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:g?r.jsxs(r.Fragment,{children:[r.jsx(Fe,{className:"w-4 h-4 mr-2 animate-spin"}),"创建中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"创建章节"]})})]})]})}),r.jsx(It,{open:!!H,onOpenChange:T=>!T&&L(null),children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(Ut,{className:"w-5 h-5 text-[#38bdac]"}),"编辑篇名"]})}),H&&r.jsx("div",{className:"space-y-4 py-4",children:r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"篇名"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:H.title,onChange:T=>L({...H,title:T.target.value}),placeholder:"输入篇名"})]})}),r.jsxs(sn,{children:[r.jsx(X,{variant:"outline",onClick:()=>L(null),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsx(X,{onClick:fp,disabled:R||!((jc=H==null?void 0:H.title)!=null&&jc.trim()),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:R?r.jsxs(r.Fragment,{children:[r.jsx(Fe,{className:"w-4 h-4 mr-2 animate-spin"}),"保存中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),"保存"]})})]})]})}),r.jsx(It,{open:!!z,onOpenChange:T=>!T&&ce(null),children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[r.jsxs(Rt,{children:[r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(Ut,{className:"w-5 h-5 text-[#38bdac]"}),"章节设置"]}),r.jsx("p",{className:"text-gray-400 text-sm font-normal pt-1",children:"修改本章显示名称,或为本章下全部节设置统一金额(仍可在单节编辑里单独改某一节)。"})]}),z&&r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"章节名称(如:第8章|底层结构)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:z.title,onChange:T=>ce({...z,title:T.target.value}),placeholder:"输入章节名称"})]}),r.jsxs("div",{className:"space-y-2 border-t border-gray-700/60 pt-4",children:[r.jsxs(Z,{className:"text-gray-300",children:["本章统一定价(应用于本章全部 ",z.chapter.sections.length," 节)"]}),z.priceMixed&&r.jsx("p",{className:"text-amber-400/90 text-xs",children:"当前各节定价不一致,保存后将按下方设置全部统一。"}),r.jsxs("div",{className:"flex flex-wrap items-end gap-4",children:[r.jsxs("div",{className:"space-y-1 flex-1 min-w-[120px]",children:[r.jsx("span",{className:"text-gray-500 text-xs",children:"价格 (元)"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:z.isFree?0:z.price,onChange:T=>ce({...z,price:Number(T.target.value),isFree:Number(T.target.value)===0}),disabled:z.isFree,min:0,step:.01})]}),r.jsxs("label",{className:"flex items-center gap-2 cursor-pointer pb-2",children:[r.jsx("input",{type:"checkbox",checked:z.isFree||z.price===0,onChange:T=>ce({...z,isFree:T.target.checked,price:T.target.checked?0:z.initialPrice>0?z.initialPrice:1}),className:"w-4 h-4 rounded border-gray-600 bg-[#0a1628] text-[#38bdac]"}),r.jsx("span",{className:"text-gray-400 text-sm",children:"本章全部免费"})]})]})]})]}),r.jsxs(sn,{children:[r.jsx(X,{variant:"outline",onClick:()=>ce(null),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsx(X,{onClick:nl,disabled:me||!((ds=z==null?void 0:z.title)!=null&&ds.trim()),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:me?r.jsxs(r.Fragment,{children:[r.jsx(Fe,{className:"w-4 h-4 mr-2 animate-spin"}),"保存中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),"保存"]})})]})]})}),r.jsx(It,{open:A,onOpenChange:T=>{var B;if(Y(T),T&&bn.length>0){const de=bn[0];D(de.id),le(((B=de.chapters[0])==null?void 0:B.id)??"")}},children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[r.jsx(Rt,{children:r.jsx(Pt,{className:"text-white",children:"批量移动至指定目录"})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("p",{className:"text-gray-400 text-sm",children:["已选 ",r.jsx("span",{className:"text-[#38bdac] font-medium",children:G.length})," 节,请选择目标篇与章。"]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"目标篇"}),r.jsxs(Pl,{value:U,onValueChange:T=>{var de;D(T);const B=bn.find(be=>be.id===T);le(((de=B==null?void 0:B.chapters[0])==null?void 0:de.id)??"")},children:[r.jsx(jo,{className:"bg-[#0a1628] border-gray-700 text-white",children:r.jsx(Ol,{placeholder:"选择篇"})}),r.jsx(ko,{className:"bg-[#0f2137] border-gray-700",children:bn.map(T=>r.jsx(Ks,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id))})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"目标章"}),r.jsxs(Pl,{value:W,onValueChange:le,children:[r.jsx(jo,{className:"bg-[#0a1628] border-gray-700 text-white",children:r.jsx(Ol,{placeholder:"选择章"})}),r.jsx(ko,{className:"bg-[#0f2137] border-gray-700",children:(((Na=bn.find(T=>T.id===U))==null?void 0:Na.chapters)??[]).map(T=>r.jsx(Ks,{value:T.id,className:"text-white hover:bg-[#38bdac]/20 focus:bg-[#38bdac]/20",children:T.title},T.id))})]})]})]}),r.jsxs(sn,{children:[r.jsx(X,{variant:"outline",onClick:()=>Y(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsx(X,{onClick:Kr,disabled:ye||G.length===0,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:ye?r.jsxs(r.Fragment,{children:[r.jsx(Fe,{className:"w-4 h-4 mr-2 animate-spin"}),"移动中..."]}):"确认移动"})]})]})}),r.jsx(It,{open:!!ae,onOpenChange:T=>!T&&pe(null),children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-3xl max-h-[85vh] overflow-hidden flex flex-col",showCloseButton:!0,children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white",children:["付款记录 — ",(ae==null?void 0:ae.section.title)??""]})}),r.jsx("div",{className:"flex-1 overflow-y-auto py-2",children:Se?r.jsxs("div",{className:"flex items-center justify-center py-8",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):ae&&ae.orders.length===0?r.jsx("p",{className:"text-gray-500 text-center py-6",children:"暂无付款记录"}):ae?r.jsxs("table",{className:"w-full text-sm border-collapse",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"border-b border-gray-700 text-left text-gray-400",children:[r.jsx("th",{className:"py-2 pr-2",children:"订单号"}),r.jsx("th",{className:"py-2 pr-2",children:"用户ID"}),r.jsx("th",{className:"py-2 pr-2",children:"金额"}),r.jsx("th",{className:"py-2 pr-2",children:"状态"}),r.jsx("th",{className:"py-2 pr-2",children:"支付时间"})]})}),r.jsx("tbody",{children:ae.orders.map(T=>r.jsxs("tr",{className:"border-b border-gray-700/50",children:[r.jsx("td",{className:"py-2 pr-2",children:r.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:"-"})}),r.jsx("td",{className:"py-2 pr-2",children:r.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 B=T.userId??T.openId??"-";return B.length>12?B.slice(0,6)+"..."+B.slice(-4):B})()})}),r.jsxs("td",{className:"py-2 pr-2 text-gray-300",children:["¥",T.amount??0]}),r.jsx("td",{className:"py-2 pr-2 text-gray-300",children:T.status??"-"}),r.jsx("td",{className:"py-2 pr-2 text-gray-500",children:T.payTime??T.createdAt??"-"})]},T.id??T.orderSn??""))})]}):null})]})}),r.jsx(It,{open:at,onOpenChange:Dt,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(qu,{className:"w-5 h-5 text-amber-400"}),"文章排名算法"]})}),r.jsxs("div",{className:"space-y-4 py-2",children:[r.jsx("p",{className:"text-sm text-gray-400",children:"热度积分 = 阅读权重×阅读排名分 + 新度权重×新度排名分 + 付款权重×付款排名分(三权重之和须为 1)"}),Gt?r.jsx("p",{className:"text-gray-500",children:"加载中..."}):r.jsxs(r.Fragment,{children:[r.jsxs("div",{className:"grid grid-cols-3 gap-3",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"阅读权重"}),r.jsx(re,{type:"number",step:"0.1",min:"0",max:"1",className:"bg-[#0a1628] border-gray-700 text-white",value:kt.readWeight,onChange:T=>At(B=>({...B,readWeight:Math.max(0,Math.min(1,parseFloat(T.target.value)||0))}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"新度权重"}),r.jsx(re,{type:"number",step:"0.1",min:"0",max:"1",className:"bg-[#0a1628] border-gray-700 text-white",value:kt.recencyWeight,onChange:T=>At(B=>({...B,recencyWeight:Math.max(0,Math.min(1,parseFloat(T.target.value)||0))}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"付款权重"}),r.jsx(re,{type:"number",step:"0.1",min:"0",max:"1",className:"bg-[#0a1628] border-gray-700 text-white",value:kt.payWeight,onChange:T=>At(B=>({...B,payWeight:Math.max(0,Math.min(1,parseFloat(T.target.value)||0))}))})]})]}),r.jsxs("p",{className:"text-xs text-gray-500",children:["当前之和: ",(kt.readWeight+kt.recencyWeight+kt.payWeight).toFixed(1)]}),r.jsxs("ul",{className:"list-disc list-inside space-y-1 text-xs text-gray-400",children:[r.jsx("li",{children:"阅读量前 20 名:第1名=20分、第2名=19分...第20名=1分"}),r.jsx("li",{children:"最近更新前 30 篇:第1名=30分、第2名=29分...第30名=1分"}),r.jsx("li",{children:"付款数前 20 名:第1名=20分、第2名=19分...第20名=1分"}),r.jsx("li",{children:"热度分可在编辑章节中手动覆盖"})]}),r.jsx(X,{onClick:dn,disabled:Lt||Math.abs(kt.readWeight+kt.recencyWeight+kt.payWeight-1)>.001,className:"w-full bg-amber-500 hover:bg-amber-600 text-white",children:Lt?"保存中...":"保存权重"})]})]})]})}),r.jsx(It,{open:se,onOpenChange:ie,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-md",showCloseButton:!0,children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(fn,{className:"w-5 h-5 text-amber-400"}),"新建篇"]})}),r.jsx("div",{className:"space-y-4 py-4",children:r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"篇名(如:第六篇|真实的社会)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:ne,onChange:T=>K(T.target.value),placeholder:"输入篇名"})]})}),r.jsxs(sn,{children:[r.jsx(X,{variant:"outline",onClick:()=>{ie(!1),K("")},className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsx(X,{onClick:Qd,disabled:J||!ne.trim(),className:"bg-amber-500 hover:bg-amber-600 text-white",children:J?r.jsxs(r.Fragment,{children:[r.jsx(Fe,{className:"w-4 h-4 mr-2 animate-spin"}),"创建中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"创建篇"]})})]})]})}),r.jsx(It,{open:!!o,onOpenChange:()=>c(null),children:r.jsxs(Ct,{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:[r.jsx(Rt,{className:"shrink-0 px-6 pt-6 pb-2",children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(Ut,{className:"w-5 h-5 text-[#38bdac]"}),"编辑章节"]})}),o&&r.jsxs("div",{className:"flex-1 overflow-y-auto min-h-0 px-6 space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"章节ID"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:o.id,onChange:T=>c({...o,id:T.target.value}),placeholder:"如: 9.15"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"价格 (元)"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:o.isFree?0:o.price,onChange:T=>c({...o,price:Number(T.target.value),isFree:Number(T.target.value)===0}),disabled:o.isFree})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"免费"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:o.isFree||o.price===0,onChange:T=>c({...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]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"设为免费"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"最新新增"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:o.isNew??!1,onChange:T=>c({...o,isNew:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"标记 NEW"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"小程序直推"}),r.jsx("div",{className:"flex items-center h-10",children:r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"checkbox",checked:o.isPinned??!1,onChange:T=>c({...o,isPinned:T.target.checked}),className:"w-5 h-5 rounded border-gray-600 bg-[#0a1628] text-amber-400 focus:ring-amber-400"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"强制置顶到小程序首页"})]})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"文章类型"}),r.jsxs("div",{className:"flex items-center gap-4 h-10",children:[r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"radio",name:"edition-type",checked:o.editionPremium!==!0,onChange:()=>c({...o,editionStandard:!0,editionPremium:!1}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"普通版"})]}),r.jsxs("label",{className:"flex items-center cursor-pointer",children:[r.jsx("input",{type:"radio",name:"edition-type",checked:o.editionPremium===!0,onChange:()=>c({...o,editionStandard:!1,editionPremium:!0}),className:"w-4 h-4 border-gray-600 bg-[#0a1628] text-[#38bdac] focus:ring-[#38bdac]"}),r.jsx("span",{className:"ml-2 text-gray-400 text-sm",children:"增值版"})]})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"热度分"}),r.jsx(re,{type:"number",step:"0.1",min:"0",className:"bg-[#0a1628] border-gray-700 text-white",value:o.hotScore??0,onChange:T=>c({...o,hotScore:Math.max(0,parseFloat(T.target.value)||0)})})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"章节标题"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:o.title,onChange:T=>c({...o,title:T.target.value})})]}),o.filePath&&r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"文件路径"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-gray-400 text-sm",value:o.filePath,disabled:!0})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"内容(富文本编辑器,支持 @链接AI人物 和 #链接标签)"}),f?r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700 rounded-md min-h-[400px] flex items-center justify-center",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsx(Hx,{ref:ya,content:o.content||"",onChange:T=>c({...o,content:T}),onImageUpload:async T=>{var qe;const B=new FormData;B.append("file",T),B.append("folder","book-images");const be=await(await fetch(Lo("/api/upload"),{method:"POST",body:B,headers:{Authorization:`Bearer ${localStorage.getItem("admin_token")||""}`}})).json();return((qe=be==null?void 0:be.data)==null?void 0:qe.url)||(be==null?void 0:be.url)||""},persons:xt,linkTags:he,placeholder:"开始编辑内容... 输入 @ 可链接AI人物,工具栏可插入 #链接标签"})]})]}),r.jsxs(sn,{className:"shrink-0 px-6 py-4 border-t border-gray-700/50",children:[o&&r.jsxs(X,{variant:"outline",onClick:()=>xc({id:o.id,title:o.title,price:o.price}),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent mr-auto",children:[r.jsx(Ys,{className:"w-4 h-4 mr-2"}),"付款记录"]}),r.jsxs(X,{variant:"outline",onClick:()=>c(null),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(gs,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsx(X,{onClick:ro,disabled:g,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:g?r.jsxs(r.Fragment,{children:[r.jsx(Fe,{className:"w-4 h-4 mr-2 animate-spin"}),"保存中..."]}):r.jsxs(r.Fragment,{children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),"保存修改"]})})]})]})}),r.jsxs(Wd,{defaultValue:"chapters",className:"space-y-6",children:[r.jsxs(sc,{className:"bg-[#0f2137] border border-gray-700/50 p-1",children:[r.jsxs(Zt,{value:"chapters",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400",children:[r.jsx(Ys,{className:"w-4 h-4 mr-2"}),"章节管理"]}),r.jsxs(Zt,{value:"ranking",className:"data-[state=active]:bg-amber-500/20 data-[state=active]:text-amber-400 text-gray-400",children:[r.jsx(Xg,{className:"w-4 h-4 mr-2"}),"内容排行榜"]}),r.jsxs(Zt,{value:"search",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400",children:[r.jsx(Ba,{className:"w-4 h-4 mr-2"}),"内容搜索"]}),r.jsxs(Zt,{value:"link-person",className:"data-[state=active]:bg-purple-500/20 data-[state=active]:text-purple-400 text-gray-400",children:[r.jsx(Rr,{className:"w-4 h-4 mr-2"}),"链接人与事"]}),r.jsxs(Zt,{value:"link-tag",className:"data-[state=active]:bg-amber-500/20 data-[state=active]:text-amber-400 text-gray-400",children:[r.jsx(Qv,{className:"w-4 h-4 mr-2"}),"链接标签"]}),r.jsxs(Zt,{value:"linkedmp",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400",children:[r.jsx(zi,{className:"w-4 h-4 mr-2"}),"关联小程序"]})]}),r.jsxs(en,{value:"chapters",className:"space-y-4",children:[r.jsxs("div",{className:"rounded-2xl border border-gray-700/50 bg-[#1C1C1E] p-4 flex items-center justify-between shadow-sm",children:[r.jsxs("div",{className:"flex items-center gap-4",children:[r.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:r.jsx(Ys,{className:"w-6 h-6"})}),r.jsxs("div",{children:[r.jsx("h2",{className:"font-bold text-base text-white leading-tight mb-1",children:"一场SOUL的创业实验场"}),r.jsx("p",{className:"text-xs text-gray-500",children:"来自Soul派对房的真实商业故事"})]})]}),r.jsxs("div",{className:"text-center shrink-0",children:[r.jsx("span",{className:"block text-2xl font-bold text-[#38bdac]",children:so}),r.jsx("span",{className:"text-xs text-gray-500",children:"章节"})]})]}),r.jsxs("div",{className:"flex flex-wrap gap-2",children:[r.jsxs(X,{onClick:()=>h(!0),className:"flex-1 min-w-[120px] bg-[#38bdac]/10 hover:bg-[#38bdac]/20 text-[#38bdac] border border-[#38bdac]/30",children:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"新建章节"]}),r.jsxs(X,{onClick:()=>ie(!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:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"新建篇"]}),r.jsxs(X,{variant:"outline",onClick:()=>Y(!0),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:["批量移动(已选 ",G.length," 节)"]})]}),n?r.jsxs("div",{className:"flex items-center justify-center py-12",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsx(oV,{parts:bn,expandedParts:a,onTogglePart:lt,onReorder:cn,onReadSection:yc,onDeleteSection:ct,onAddSectionInPart:ti,onAddChapterInPart:pp,onDeleteChapter:vc,onEditPart:tl,onDeletePart:sl,onEditChapter:bc,selectedSectionIds:G,onToggleSectionSelect:Nc,onShowSectionOrders:xc,pinnedSectionIds:_t})]}),r.jsx(en,{value:"search",className:"space-y-4",children:r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"内容搜索"})}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"flex gap-2",children:[r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500 flex-1",placeholder:"搜索标题或内容...",value:N,onChange:T=>j(T.target.value),onKeyDown:T=>T.key==="Enter"&&wc()}),r.jsx(X,{onClick:wc,disabled:C||!N.trim(),className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:C?r.jsx(Fe,{className:"w-4 h-4 animate-spin"}):r.jsx(Ba,{className:"w-4 h-4"})})]}),v.length>0&&r.jsxs("div",{className:"space-y-2 mt-4",children:[r.jsxs("p",{className:"text-gray-400 text-sm",children:["找到 ",v.length," 个结果"]}),v.map(T=>r.jsxs("div",{className:"p-3 rounded-lg bg-[#162840] hover:bg-[#1a3050] cursor-pointer transition-colors",onClick:()=>yc({id:T.id,mid:T.mid,title:T.title,price:T.price??1,filePath:""}),children:[r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("span",{className:"text-[#38bdac] font-mono text-xs",children:T.id}),r.jsx("span",{className:"text-white",children:T.title}),_t.includes(T.id)&&r.jsx(_l,{className:"w-3 h-3 text-amber-400 fill-amber-400 shrink-0"})]}),r.jsx(Ke,{variant:"outline",className:"text-gray-400 border-gray-600 text-xs",children:T.matchType==="title"?"标题匹配":"内容匹配"})]}),T.snippet&&r.jsx("p",{className:"text-gray-500 text-xs mt-2 line-clamp-2",children:T.snippet}),(T.partTitle||T.chapterTitle)&&r.jsxs("p",{className:"text-gray-600 text-xs mt-1",children:[T.partTitle," · ",T.chapterTitle]})]},T.id))]})]})]})}),r.jsxs(en,{value:"ranking",className:"space-y-4",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white text-base flex items-center gap-2",children:[r.jsx(qu,{className:"w-4 h-4 text-[#38bdac]"}),"内容显示规则"]})}),r.jsx(Te,{children:r.jsxs("div",{className:"flex items-center gap-4 flex-wrap",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(Z,{className:"text-gray-400 text-sm whitespace-nowrap",children:"未付费预览比例"}),r.jsx(re,{type:"number",min:"1",max:"100",className:"bg-[#0a1628] border-gray-700 text-white w-20",value:q,onChange:T=>He(Math.max(1,Math.min(100,Number(T.target.value)||20))),disabled:mt}),r.jsx("span",{className:"text-gray-500 text-sm",children:"%"})]}),r.jsx(X,{size:"sm",onClick:el,disabled:ut,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:ut?"保存中...":"保存"}),r.jsxs("span",{className:"text-xs text-gray-500",children:["小程序未付费用户默认显示文章前 ",q,"% 内容"]})]})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs(Ye,{className:"text-white text-base flex items-center gap-2",children:[r.jsx(Xg,{className:"w-4 h-4 text-amber-400"}),"内容排行榜",r.jsxs("span",{className:"text-xs text-gray-500 font-normal ml-2",children:["按热度排行 · 共 ",yn.length," 节"]})]}),r.jsxs("div",{className:"flex items-center gap-1 text-sm",children:[r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>_e(),disabled:Un,className:"text-gray-400 hover:text-white h-7 w-7 p-0",title:"刷新排行榜",children:r.jsx(Fe,{className:`w-4 h-4 ${Un?"animate-spin":""}`})}),r.jsx(X,{variant:"ghost",size:"sm",disabled:ln<=1||Un,onClick:()=>Bs(T=>Math.max(1,T-1)),className:"text-gray-400 hover:text-white h-7 w-7 p-0",children:r.jsx(YT,{className:"w-4 h-4"})}),r.jsxs("span",{className:"text-gray-400 min-w-[60px] text-center",children:[ln," / ",Wr]}),r.jsx(X,{variant:"ghost",size:"sm",disabled:ln>=Wr||Un,onClick:()=>Bs(T=>Math.min(Wr,T+1)),className:"text-gray-400 hover:text-white h-7 w-7 p-0",children:r.jsx(Dl,{className:"w-4 h-4"})})]})]})}),r.jsx(Te,{children:r.jsxs("div",{className:"space-y-0",children:[r.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:[r.jsx("span",{children:"排名"}),r.jsx("span",{children:"置顶"}),r.jsx("span",{children:"标题"}),r.jsx("span",{className:"text-right",children:"点击量"}),r.jsx("span",{className:"text-right",children:"付款数"}),r.jsx("span",{className:"text-right",children:"热度"}),r.jsx("span",{className:"text-right",children:"编辑"})]}),F.map((T,B)=>{const de=(ln-1)*ba+B+1,be=T.isPinned??_t.includes(T.id);return r.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 ${be?"bg-amber-500/5":""}`,children:[r.jsx("span",{className:`text-sm font-bold ${de<=3?"text-amber-400":"text-gray-500"}`,children:de<=3?["🥇","🥈","🥉"][de-1]:`#${de}`}),r.jsx(X,{variant:"ghost",size:"sm",className:`h-6 w-6 p-0 ${be?"text-amber-400":"text-gray-600 hover:text-amber-400"}`,onClick:()=>Yd(T.id),disabled:zn,title:be?"取消置顶":"强制置顶(精选推荐/首页最新更新)",children:be?r.jsx(_l,{className:"w-3.5 h-3.5 fill-current"}):r.jsx(y5,{className:"w-3.5 h-3.5"})}),r.jsxs("div",{className:"min-w-0",children:[r.jsx("span",{className:"text-white text-sm truncate block",children:T.title}),r.jsxs("span",{className:"text-gray-600 text-xs",children:[T.partTitle," · ",T.chapterTitle]})]}),r.jsx("span",{className:"text-right text-sm text-blue-400 font-mono",children:T.clickCount??0}),r.jsx("span",{className:"text-right text-sm text-green-400 font-mono",children:T.payCount??0}),r.jsx("span",{className:"text-right text-sm text-amber-400 font-mono",children:(T.hotScore??0).toFixed(1)}),r.jsx("div",{className:"text-right",children:r.jsx(X,{variant:"ghost",size:"sm",className:"text-gray-500 hover:text-[#38bdac] h-6 px-1",onClick:()=>yc({id:T.id,mid:T.mid,title:T.title,price:T.price,filePath:""}),title:"编辑文章",children:r.jsx(Ut,{className:"w-3 h-3"})})})]},T.id)}),F.length===0&&r.jsx("div",{className:"py-8 text-center text-gray-500",children:"暂无数据"})]})})]})]}),r.jsxs(en,{value:"link-person",className:"space-y-4",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"pb-3",children:[r.jsxs(Ye,{className:"text-white text-base flex items-center gap-2",children:[r.jsx("span",{className:"text-[#38bdac] text-lg font-bold",children:"@"}),"AI列表 — 链接人与事(编辑器内输入 @ 可链接)"]}),r.jsx("p",{className:"text-xs text-gray-500 mt-1",children:"添加时自动生成 32 位 token,文章 @ 时存 token;小程序点击 @ 时用 token 兑换真实密钥后加好友"})]}),r.jsxs(Te,{className:"space-y-3",children:[r.jsxs("div",{className:"flex justify-between items-center",children:[r.jsx("p",{className:"text-xs text-gray-500",children:"添加人物时同步创建存客宝场景获客计划,配置与存客宝 API 获客一致"}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx(X,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 hover:bg-gray-700/50",onClick:()=>Ms(),title:"刷新",children:r.jsx(Fe,{className:"w-4 h-4"})}),r.jsxs(X,{size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",onClick:()=>{Fr(null),yr(!0)},children:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"添加"]})]})]}),r.jsx("div",{className:"max-h-[400px] overflow-y-auto",children:xt.length>0?r.jsxs("table",{className:"w-full text-sm border-collapse",children:[r.jsx("thead",{children:r.jsxs("tr",{className:"text-xs text-gray-500 border-b border-gray-700/50",children:[r.jsx("th",{className:"text-left py-1.5 px-3 w-[280px] font-normal",children:"token"}),r.jsx("th",{className:"text-left py-1.5 px-3 w-24 font-normal",children:"@的人"}),r.jsx("th",{className:"py-1.5 px-3 w-16 font-normal text-center",children:"获客数"}),r.jsx("th",{className:"text-left py-1.5 px-3 font-normal",children:"获客计划活动名"}),r.jsx("th",{className:"text-left py-1.5 px-3 w-20 font-normal",children:"planId"}),r.jsx("th",{className:"text-left py-1.5 px-3 font-normal",children:"apiKey"}),r.jsx("th",{className:"text-left py-1.5 px-2 w-24 font-normal",children:"操作"})]})}),r.jsx("tbody",{children:xt.map(T=>r.jsxs("tr",{className:"border-b border-gray-700/30 hover:bg-[#0a1628]/80",children:[r.jsx("td",{className:"py-2 px-3 text-gray-400 text-xs font-mono",title:"32位token",children:T.id}),r.jsx("td",{className:"py-2 px-3 text-amber-400 truncate max-w-[96px]",title:"@的人",children:T.name}),(()=>{const B=uc[T.id]||0;return r.jsx("td",{className:`py-2 px-3 shrink-0 w-16 text-center text-xs font-bold ${B>0?"text-green-400":"text-gray-600"}`,title:"获客数",children:B})})(),r.jsxs("td",{className:"py-2 px-3 text-white truncate max-w-[200px]",title:"获客计划活动名",children:["SOUL链接人与事-",T.name]}),r.jsx("td",{className:"py-2 px-3 text-gray-400 text-xs font-mono",title:"存客宝计划ID",children:T.ckbPlanId??"-"}),r.jsx("td",{className:"py-2 px-3 text-gray-400 text-xs font-mono whitespace-nowrap",children:r.jsxs("div",{className:"flex items-center gap-1.5",children:[T.ckbApiKey?r.jsx(X,{variant:"ghost",size:"sm",className:"h-6 w-6 p-0 text-gray-500 hover:text-[#38bdac] shrink-0",title:"复制 apiKey",onClick:async()=>{await navigator.clipboard.writeText(T.ckbApiKey??""),te.success("已复制到剪贴板")},children:r.jsx(s0,{className:"w-3.5 h-3.5"})}):null,r.jsx("span",{title:T.ckbApiKey??"",children:T.ckbApiKey??"-"})]})}),r.jsx("td",{className:"py-2 px-2",children:r.jsxs("div",{className:"flex items-center gap-0",children:[r.jsx(X,{variant:"ghost",size:"sm",className:"text-gray-400 hover:text-[#38bdac] h-6 px-2",title:"编辑",onClick:async()=>{try{const B=await cV(T.personId||"");if(B!=null&&B.success&&B.person){const de=B.person;Fr({id:de.token??de.personId,personId:de.personId,name:de.name,label:de.label??"",ckbApiKey:de.ckbApiKey??"",remarkType:de.remarkType,remarkFormat:de.remarkFormat,addFriendInterval:de.addFriendInterval,startTime:de.startTime,endTime:de.endTime,deviceGroups:de.deviceGroups})}else Fr(T),B!=null&&B.error&&te.error(B.error)}catch(B){console.error(B),Fr(T),te.error(B instanceof Error?B.message:"加载人物详情失败")}yr(!0)},children:r.jsx(Yg,{className:"w-3 h-3"})}),r.jsx(X,{variant:"ghost",size:"sm",className:"text-gray-400 hover:text-green-400 h-6 px-2",title:"查看新客户",onClick:()=>va(T.id,T.name),children:r.jsx(_n,{className:"w-3 h-3"})}),r.jsx(X,{variant:"ghost",size:"sm",className:"text-gray-400 hover:text-amber-400 h-6 px-2",title:"编辑计划(跳转存客宝)",onClick:()=>{const B=T.ckbPlanId;B?window.open(`https://h5.ckb.quwanzhi.com/#/scenarios/edit/${B}`,"_blank"):te.info("该人物尚未同步存客宝计划,请先保存后等待同步完成")},children:r.jsx(ra,{className:"w-3 h-3"})}),r.jsx(X,{variant:"ghost",size:"sm",className:"text-red-400 hover:text-red-300 h-6 px-2",title:"删除(同时删除存客宝对应获客计划)",onClick:()=>Ja(T),children:r.jsx(gs,{className:"w-3 h-3"})})]})})]},T.id))})]}):r.jsx("div",{className:"text-gray-500 text-sm py-4 text-center",children:"暂无AI人物,添加后可在编辑器中 @链接"})})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"pb-3",children:[r.jsxs(Ye,{className:"text-white text-base flex items-center gap-2",children:[r.jsx(qu,{className:"w-4 h-4 text-green-400"}),"存客宝绑定"]}),r.jsx("p",{className:"text-xs text-gray-500 mt-1",children:"配置存客宝 API 后,文章中 @人物 或 #标签 点击可自动进入存客宝流量池"})]}),r.jsxs(Te,{className:"space-y-3",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"存客宝 API 地址"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8",placeholder:"https://ckbapi.quwanzhi.com",defaultValue:"https://ckbapi.quwanzhi.com",readOnly:!0})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"绑定计划"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8",placeholder:"创业实验-内容引流",defaultValue:"创业实验-内容引流",readOnly:!0})]})]}),r.jsxs("p",{className:"text-xs text-gray-500",children:["具体存客宝场景配置与接口测试请前往"," ",r.jsx("button",{className:"text-[#38bdac] hover:underline",onClick:()=>window.open("/match","_blank"),children:"找伙伴 → 存客宝工作台"})]})]})]})]}),r.jsxs(en,{value:"link-tag",className:"space-y-4",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"pb-3",children:[r.jsxs(Ye,{className:"text-white text-base flex items-center gap-2",children:[r.jsx(Qv,{className:"w-4 h-4 text-amber-400"}),"链接标签 — 链接事与物(编辑器内 #标签 可跳转链接/小程序/存客宝)"]}),r.jsx("p",{className:"text-xs text-gray-500 mt-1",children:"小程序端点击 #标签 可直接跳转对应链接,进入流量池"})]}),r.jsxs(Te,{className:"space-y-3",children:[r.jsxs("div",{className:"flex items-end justify-between gap-3 flex-wrap",children:[r.jsxs("div",{className:"flex items-end gap-2 flex-wrap",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-400 text-xs",children:"搜索"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8 w-48",placeholder:"按标签ID/显示文字搜索",value:mr,onChange:T=>{ma(T.target.value),Zs(1)}})]}),r.jsx(X,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 hover:bg-gray-700/50 h-8",onClick:()=>{As(),tr()},title:"刷新",children:r.jsx(Fe,{className:"w-4 h-4"})})]}),r.jsxs(X,{size:"sm",className:"bg-amber-500 hover:bg-amber-600 text-white h-8",onClick:()=>{Zo(null),kn({tagId:"",label:"",url:"",type:"url",appId:"",pagePath:""}),wr(""),js(!1),gr(!0)},children:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"添加标签"]})]}),r.jsxs("div",{className:"rounded-md border border-gray-700/50 overflow-hidden",children:[r.jsx("div",{className:"max-h-[420px] overflow-y-auto",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{className:"bg-[#0a1628] border-b border-gray-700/50",children:r.jsxs("tr",{children:[r.jsx("th",{className:"text-left px-3 py-2 text-gray-400 w-40",children:"标签"}),r.jsx("th",{className:"text-left px-3 py-2 text-gray-400 w-20",children:"类型"}),r.jsx("th",{className:"text-left px-3 py-2 text-gray-400",children:"目标"}),r.jsx("th",{className:"text-right px-3 py-2 text-gray-400 w-28",children:"操作"})]})}),r.jsx("tbody",{children:da?r.jsx("tr",{children:r.jsx("td",{colSpan:4,className:"text-center py-10 text-gray-500",children:"加载中..."})}):zt.length===0?r.jsx("tr",{children:r.jsx("td",{colSpan:4,className:"text-center py-10 text-gray-500",children:"暂无链接标签,添加后可在编辑器中使用 #标签 跳转"})}):zt.map(T=>r.jsxs("tr",{className:"border-b border-gray-700/30 hover:bg-white/5",children:[r.jsxs("td",{className:"px-3 py-2",children:[r.jsxs("div",{className:"text-amber-400 font-semibold",children:["#",T.label]}),r.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:["tagId: ",T.id]})]}),r.jsx("td",{className:"px-3 py-2",children:r.jsx(Ke,{variant:"secondary",className:`text-[10px] ${T.type==="ckb"?"bg-green-500/20 text-green-300 border-green-500/30":T.type==="miniprogram"?"bg-[#38bdac]/20 text-[#38bdac] border-[#38bdac]/30":"bg-gray-700 text-gray-300"}`,children:T.type==="url"?"网页":T.type==="ckb"?"存客宝":"小程序"})}),r.jsx("td",{className:"px-3 py-2 text-gray-300",children:T.type==="miniprogram"?r.jsxs("span",{className:"text-xs font-mono",children:[T.appId||"—"," ",T.pagePath?`· ${T.pagePath}`:""]}):T.url?r.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," ",r.jsx(ra,{className:"w-3 h-3 shrink-0"})]}):r.jsx("span",{className:"text-gray-500 text-xs",children:"—"})}),r.jsx("td",{className:"px-3 py-2",children:r.jsxs("div",{className:"flex items-center justify-end gap-1",children:[r.jsx(X,{variant:"ghost",size:"sm",className:"text-gray-300 hover:text-white h-7 px-2",onClick:()=>{Zo(T),kn({tagId:T.id,label:T.label,url:T.url,type:T.type,appId:T.appId??"",pagePath:T.pagePath??""}),wr(T.appId??""),js(!1),gr(!0)},title:"编辑",children:r.jsx(Yg,{className:"w-3 h-3"})}),r.jsx(X,{variant:"ghost",size:"sm",className:"text-red-400 hover:text-red-300 h-7 px-2",onClick:async()=>{if(confirm(`确定要删除「#${T.label}」吗?`))try{const B=await ea(`/api/db/link-tags?tagId=${encodeURIComponent(T.id)}`);B!=null&&B.success?(te.success("已删除"),As(),tr()):te.error((B==null?void 0:B.error)??"删除失败")}catch(B){console.error(B),te.error("删除失败")}},title:"删除",children:r.jsx(gs,{className:"w-3 h-3"})})]})})]},T.id))})]})}),r.jsx(Fs,{page:_r,pageSize:ha,total:fa,totalPages:pa,onPageChange:T=>Zs(T),onPageSizeChange:T=>{Xo(T),Zs(1)}})]})]})]}),r.jsx(It,{open:Vs,onOpenChange:gr,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg p-4 gap-3",children:[r.jsxs(Rt,{className:"gap-1",children:[r.jsx(Pt,{className:"text-base",children:eo?"编辑链接标签":"添加链接标签"}),r.jsx(Cd,{className:"text-gray-400 text-xs",children:"配置后可在富文本编辑器中通过 #标签 插入,并在小程序端点击跳转"})]}),r.jsxs("div",{className:"space-y-3 py-2",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-3",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"标签ID"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm font-mono",placeholder:"留空自动生成;或填 12位数字 / z开头12位",value:yt.tagId,disabled:!!eo,onChange:T=>kn(B=>({...B,tagId:T.target.value}))})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"显示文字"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"如 神仙团队",value:yt.label,onChange:T=>kn(B=>({...B,label:T.target.value}))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-3 items-end",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"类型"}),r.jsxs(Pl,{value:yt.type,onValueChange:T=>kn(B=>({...B,type:T})),children:[r.jsx(jo,{className:"bg-[#0a1628] border-gray-700 text-white h-8",children:r.jsx(Ol,{})}),r.jsxs(ko,{children:[r.jsx(Ks,{value:"url",children:"网页链接"}),r.jsx(Ks,{value:"miniprogram",children:"小程序"}),r.jsx(Ks,{value:"ckb",children:"存客宝"})]})]})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:yt.type==="url"?"URL地址":yt.type==="ckb"?"存客宝计划URL":"小程序(选密钥)"}),yt.type==="miniprogram"&&cs.length>0?r.jsxs("div",{ref:hp,className:"relative",children:[r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:"搜索名称或密钥",value:Za?Is:yt.appId,onChange:T=>{const B=T.target.value;wr(B),js(!0),cs.some(de=>de.key===B)||kn(de=>({...de,appId:B}))},onFocus:()=>{wr(yt.appId),js(!0)},onBlur:()=>setTimeout(()=>js(!1),150)}),Za&&r.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:ei.length===0?r.jsx("div",{className:"px-3 py-2 text-gray-500 text-xs",children:"无匹配,可手动输入密钥"}):ei.map(T=>r.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:B=>{B.preventDefault(),kn(de=>({...de,appId:T.key,pagePath:T.path||""})),wr(""),js(!1)},children:[r.jsx("span",{children:T.name}),r.jsx("span",{className:"text-xs text-gray-400 font-mono",children:T.key})]},T.key))})]}):r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm",placeholder:yt.type==="url"?"https://...":yt.type==="ckb"?"https://ckbapi.quwanzhi.com/...":"关联小程序的32位密钥",value:yt.type==="url"||yt.type==="ckb"?yt.url:yt.appId,onChange:T=>{yt.type==="url"||yt.type==="ckb"?kn(B=>({...B,url:T.target.value})):kn(B=>({...B,appId:T.target.value}))}})]})]}),yt.type==="miniprogram"&&r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-300 text-sm",children:"页面路径(可选)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm font-mono",placeholder:"pages/index/index",value:yt.pagePath,onChange:T=>kn(B=>({...B,pagePath:T.target.value}))})]})]}),r.jsxs(sn,{className:"gap-2 pt-1",children:[r.jsx(X,{variant:"outline",onClick:()=>gr(!1),className:"border-gray-600",children:"取消"}),r.jsx(X,{onClick:async()=>{const T={tagId:yt.tagId.trim(),label:yt.label.trim(),url:yt.url.trim(),type:yt.type,appId:yt.appId.trim(),pagePath:yt.pagePath.trim()};if(T.tagId&&!(/^\d{12}$/.test(T.tagId)||/^z[a-z0-9]{11}$/.test(T.tagId))){te.error("标签ID需为12位数字,或 z 开头的12位(z+11位小写字母数字)");return}if(!T.label){te.error("显示文字必填");return}T.type==="miniprogram"&&(T.url=""),xr(!0);try{const B=await Nt("/api/db/link-tags",T);B!=null&&B.success?(te.success(eo?"已更新":"已添加"),gr(!1),As(),tr()):te.error((B==null?void 0:B.error)??"保存失败")}catch(B){console.error(B),te.error("保存失败")}finally{xr(!1)}},disabled:zr,className:"bg-amber-500 hover:bg-amber-600 text-white",children:zr?"保存中...":"保存"})]})]})})]}),r.jsx(en,{value:"linkedmp",className:"space-y-4",children:r.jsx(rV,{})})]}),r.jsx(uV,{open:to,onOpenChange:yr,editingPerson:ga,onSubmit:async T=>{var be;const B={personId:T.personId||T.name.toLowerCase().replace(/\s+/g,"_")+"_"+Date.now().toString(36),name:T.name,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:(be=T.deviceGroups)!=null&&be.trim()?T.deviceGroups.split(",").map(qe=>parseInt(qe.trim(),10)).filter(qe=>!Number.isNaN(qe)):void 0},de=await Nt("/api/db/persons",B);if(de&&de.success===!1){const qe=de;qe.ckbResponse&&console.log("存客宝返回",qe.ckbResponse);const st=qe.error||"操作失败";throw new Error(st)}if(Ms(),te.success(ga?"已保存":"已添加"),de!=null&&de.ckbCreateResult&&Object.keys(de.ckbCreateResult).length>0){const qe=de.ckbCreateResult;console.log("存客宝创建结果",qe);const st=qe.planId??qe.id,bt=st!=null?[`planId: ${st}`]:[];qe.apiKey!=null&&bt.push("apiKey: ***"),te.info(bt.length?`存客宝创建结果:${bt.join(",")}`:"存客宝创建结果见控制台")}}}),r.jsx(It,{open:!!er,onOpenChange:T=>{T||Ja(null)},children:r.jsxs(Ct,{showCloseButton:!0,className:"bg-[#0f2137] border-gray-700 text-white max-w-md p-4 gap-3",children:[r.jsxs(Rt,{className:"gap-1",children:[r.jsx(Pt,{className:"text-white text-base",children:"确认删除"}),r.jsx(Cd,{className:"text-gray-400 text-sm leading-relaxed wrap-break-word",children:er&&r.jsxs(r.Fragment,{children:[r.jsxs("p",{children:["确定删除「SOUL链接人与事-",er.name,"」?将同时删除存客宝对应获客计划。"]}),r.jsxs("p",{className:"mt-1.5",children:["二次确认:删除后无法恢复,文章中的 @",er.name," 将无法正常跳转。"]})]})})]}),r.jsxs(sn,{className:"gap-2 sm:gap-2 pt-1",children:[r.jsx(X,{variant:"outline",size:"sm",className:"border-gray-600 text-gray-300",onClick:()=>Ja(null),children:"取消"}),r.jsx(X,{variant:"destructive",size:"sm",className:"bg-red-600 hover:bg-red-700",onClick:async()=>{er&&(await ea(`/api/db/persons?personId=${er.personId}`),Ja(null),Ms(),te.success("已删除"))},children:"确定删除"})]})]})}),r.jsx(It,{open:hc,onOpenChange:br,children:r.jsxs(Ct,{className:"max-w-2xl bg-[#0f2137] border-gray-700",children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[r.jsx(_n,{className:"w-5 h-5 text-green-400"}),Ya," — 获客详情(共 ",Qa," 条)"]})}),r.jsx("div",{className:"max-h-[450px] overflow-y-auto space-y-2",children:pc?r.jsxs("div",{className:"flex items-center justify-center py-8",children:[r.jsx(Fe,{className:"w-5 h-5 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):Br.length===0?r.jsx("div",{className:"text-gray-500 text-sm py-8 text-center",children:"暂无获客记录"}):r.jsxs(r.Fragment,{children:[r.jsxs("div",{className:"grid grid-cols-[60px_1fr_100px_100px_80px_120px] gap-2 px-3 py-1.5 text-xs text-gray-500 border-b border-gray-700/50",children:[r.jsx("span",{children:"#"}),r.jsx("span",{children:"昵称/姓名"}),r.jsx("span",{children:"手机"}),r.jsx("span",{children:"微信"}),r.jsx("span",{children:"来源"}),r.jsx("span",{children:"时间"})]}),Br.map((T,B)=>r.jsxs("div",{className:"grid grid-cols-[60px_1fr_100px_100px_80px_120px] gap-2 px-3 py-2 bg-[#0a1628] rounded text-sm",children:[r.jsx("span",{className:"text-gray-500 text-xs",children:(Vr-1)*20+B+1}),r.jsx("span",{className:"text-white truncate",children:T.nickname||T.name||T.userId||"-"}),r.jsx("span",{className:"text-gray-300 text-xs",children:T.phone||"-"}),r.jsx("span",{className:"text-gray-300 text-xs truncate",children:T.wechatId||"-"}),r.jsx("span",{className:"text-gray-500 text-xs",children:T.source==="article_mention"?"文章@":T.source==="index_lead"?"首页":T.source||"-"}),r.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))]})}),Qa>20&&r.jsxs("div",{className:"flex items-center justify-center gap-2 pt-2",children:[r.jsx(X,{size:"sm",variant:"outline",disabled:Vr<=1,onClick:()=>va(vr,Ya,Vr-1),className:"border-gray-600 text-gray-300 bg-transparent h-7 px-3",children:"上一页"}),r.jsxs("span",{className:"text-gray-400 text-xs",children:[Vr," / ",Math.ceil(Qa/20)]}),r.jsx(X,{size:"sm",variant:"outline",disabled:Vr>=Math.ceil(Qa/20),onClick:()=>va(vr,Ya,Vr+1),className:"border-gray-600 text-gray-300 bg-transparent h-7 px-3",children:"下一页"})]})]})})]})}const za={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 Iw(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):za.stats}function Rw(t){return Array.isArray(t)?t.map(e=>typeof e=="string"?e:String(e??"")).filter(Boolean):za.highlights}function pV(){const[t,e]=b.useState(za),[n,s]=b.useState(!0),[a,i]=b.useState(!1),[o,c]=b.useState(!1),u=b.useRef(null);b.useEffect(()=>{De("/api/admin/author-settings").then(k=>{const C=k==null?void 0:k.data;C&&typeof C=="object"&&e({name:String(C.name??za.name),avatar:String(C.avatar??za.avatar),avatarImg:String(C.avatarImg??""),title:String(C.title??za.title),bio:String(C.bio??za.bio),stats:Iw(C.stats).length?Iw(C.stats):za.stats,highlights:Rw(C.highlights).length?Rw(C.highlights):za.highlights})}).catch(console.error).finally(()=>s(!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(M=>M.label||M.value),highlights:t.highlights.filter(Boolean)},C=await Nt("/api/admin/author-settings",k);if(!C||C.success===!1){te.error("保存失败: "+(C&&typeof C=="object"&&"error"in C?C.error:""));return}i(!1);const E=document.createElement("div");E.className="fixed top-4 right-4 z-50 px-4 py-2 rounded-lg bg-[#38bdac] text-white text-sm shadow-lg",E.textContent="作者设置已保存",document.body.appendChild(E),setTimeout(()=>E.remove(),2e3)}catch(k){console.error(k),te.error("保存失败: "+(k instanceof Error?k.message:String(k)))}finally{i(!1)}},f=async k=>{var E;const C=(E=k.target.files)==null?void 0:E[0];if(C){c(!0);try{const M=new FormData;M.append("file",C),M.append("folder","avatars");const P=Df(),H={};P&&(H.Authorization=`Bearer ${P}`);const R=await(await fetch(Lo("/api/upload"),{method:"POST",body:M,credentials:"include",headers:H})).json();R!=null&&R.success&&(R!=null&&R.url)?e(O=>({...O,avatarImg:R.url})):te.error("上传失败: "+((R==null?void 0:R.error)||"未知错误"))}catch(M){console.error(M),te.error("上传失败")}finally{c(!1),u.current&&(u.current.value="")}}},m=()=>e(k=>({...k,stats:[...k.stats,{label:"",value:""}]})),g=k=>e(C=>({...C,stats:C.stats.filter((E,M)=>M!==k)})),y=(k,C,E)=>e(M=>({...M,stats:M.stats.map((P,H)=>H===k?{...P,[C]:E}:P)})),N=()=>e(k=>({...k,highlights:[...k.highlights,""]})),j=k=>e(C=>({...C,highlights:C.highlights.filter((E,M)=>M!==k)})),v=(k,C)=>e(E=>({...E,highlights:E.highlights.map((M,P)=>P===k?C:M)}));return n?r.jsx("div",{className:"p-8 text-gray-500",children:"加载中..."}):r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(Ao,{className:"w-5 h-5 text-[#38bdac]"}),"作者详情"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"配置小程序「关于作者」页展示的作者信息,包括头像、简介、统计数据与亮点标签。"})]}),r.jsxs(X,{onClick:h,disabled:a||n,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),a?"保存中...":"保存"]})]}),r.jsxs("div",{className:"space-y-6",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"flex items-center gap-2 text-white",children:[r.jsx(Ao,{className:"w-4 h-4 text-[#38bdac]"}),"基本信息"]}),r.jsx(Ft,{className:"text-gray-400",children:"作者姓名、头像、头衔与个人简介,将展示在「关于作者」页顶部。"})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"姓名"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:t.name,onChange:k=>e(C=>({...C,name:k.target.value})),placeholder:"卡若"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"首字母占位(无头像时显示)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white w-20",value:t.avatar,onChange:k=>e(C=>({...C,avatar:k.target.value.slice(0,1)||"K"})),placeholder:"K"})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(dj,{className:"w-3 h-3 text-[#38bdac]"}),"头像图片"]}),r.jsxs("div",{className:"flex gap-3 items-center",children:[r.jsx(re,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:t.avatarImg,onChange:k=>e(C=>({...C,avatarImg:k.target.value})),placeholder:"上传或粘贴 URL,如 /uploads/avatars/xxx.png"}),r.jsx("input",{ref:u,type:"file",accept:"image/*",className:"hidden",onChange:f}),r.jsxs(X,{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:[r.jsx(Rh,{className:"w-4 h-4 mr-2"}),o?"上传中...":"上传"]})]}),t.avatarImg&&r.jsx("div",{className:"mt-2",children:r.jsx("img",{src:t.avatarImg.startsWith("http")?t.avatarImg:Lo(t.avatarImg),alt:"头像预览",className:"w-20 h-20 rounded-full object-cover border border-gray-600"})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"头衔"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:t.title,onChange:k=>e(C=>({...C,title:k.target.value})),placeholder:"Soul派对房主理人 · 私域运营专家"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"个人简介"}),r.jsx(rc,{className:"bg-[#0a1628] border-gray-700 text-white min-h-[120px]",value:t.bio,onChange:k=>e(C=>({...C,bio:k.target.value})),placeholder:"每天早上6点到9点..."})]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsx(Ye,{className:"text-white",children:"统计数据"}),r.jsx(Ft,{className:"text-gray-400",children:"展示在作者卡片中的数字指标,如「商业案例 62」「连续直播 365天」。第一个「商业案例」的值可由书籍统计自动更新。"})]}),r.jsxs(Te,{className:"space-y-3",children:[t.stats.map((k,C)=>r.jsxs("div",{className:"flex gap-3 items-center",children:[r.jsx(re,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:k.label,onChange:E=>y(C,"label",E.target.value),placeholder:"标签"}),r.jsx(re,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:k.value,onChange:E=>y(C,"value",E.target.value),placeholder:"数值"}),r.jsx(X,{variant:"ghost",size:"icon",className:"text-gray-400 hover:text-red-400",onClick:()=>g(C),children:r.jsx(gs,{className:"w-4 h-4"})})]},C)),r.jsxs(X,{variant:"outline",size:"sm",onClick:m,className:"border-gray-600 text-gray-400",children:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"添加统计项"]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsx(Ye,{className:"text-white",children:"亮点标签"}),r.jsx(Ft,{className:"text-gray-400",children:"作者优势或成就的简短描述,以标签形式展示。"})]}),r.jsxs(Te,{className:"space-y-3",children:[t.highlights.map((k,C)=>r.jsxs("div",{className:"flex gap-3 items-center",children:[r.jsx(re,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:k,onChange:E=>v(C,E.target.value),placeholder:"5年私域运营经验"}),r.jsx(X,{variant:"ghost",size:"icon",className:"text-gray-400 hover:text-red-400",onClick:()=>j(C),children:r.jsx(gs,{className:"w-4 h-4"})})]},C)),r.jsxs(X,{variant:"outline",size:"sm",onClick:N,className:"border-gray-600 text-gray-400",children:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"添加亮点"]})]})]})]})]})}function mV(){const[t,e]=b.useState([]),[n,s]=b.useState(0),[a,i]=b.useState(1),[o]=b.useState(10),[c,u]=b.useState(0),[h,f]=b.useState(""),m=b0(h,300),[g,y]=b.useState(!0),[N,j]=b.useState(null),[v,k]=b.useState(!1),[C,E]=b.useState(null),[M,P]=b.useState(""),[H,L]=b.useState(""),[R,O]=b.useState(""),[se,ie]=b.useState("admin"),[z,ce]=b.useState("active"),[me,_]=b.useState(!1);async function G(){var W;y(!0),j(null);try{const le=new URLSearchParams({page:String(a),pageSize:String(o)});m.trim()&&le.set("search",m.trim());const ye=await De(`/api/admin/users?${le}`);ye!=null&&ye.success?(e(ye.records||[]),s(ye.total??0),u(ye.totalPages??0)):j(ye.error||"加载失败")}catch(le){const ye=le;j(ye.status===403?"无权限访问":((W=ye==null?void 0:ye.data)==null?void 0:W.error)||"加载失败"),e([])}finally{y(!1)}}b.useEffect(()=>{G()},[a,o,m]);const $=()=>{E(null),P(""),L(""),O(""),ie("admin"),ce("active"),k(!0)},A=W=>{E(W),P(W.username),L(""),O(W.name||""),ie(W.role==="super_admin"?"super_admin":"admin"),ce(W.status==="disabled"?"disabled":"active"),k(!0)},Y=async()=>{var W;if(!M.trim()){j("用户名不能为空");return}if(!C&&!H){j("新建时密码必填,至少 6 位");return}if(H&&H.length<6){j("密码至少 6 位");return}j(null),_(!0);try{if(C){const le=await Ot("/api/admin/users",{id:C.id,password:H||void 0,name:R.trim(),role:se,status:z});le!=null&&le.success?(k(!1),G()):j((le==null?void 0:le.error)||"保存失败")}else{const le=await Nt("/api/admin/users",{username:M.trim(),password:H,name:R.trim(),role:se});le!=null&&le.success?(k(!1),G()):j((le==null?void 0:le.error)||"保存失败")}}catch(le){const ye=le;j(((W=ye==null?void 0:ye.data)==null?void 0:W.error)||"保存失败")}finally{_(!1)}},U=async W=>{var le;if(confirm("确定删除该管理员?"))try{const ye=await ea(`/api/admin/users?id=${W}`);ye!=null&&ye.success?G():j((ye==null?void 0:ye.error)||"删除失败")}catch(ye){const Ae=ye;j(((le=Ae==null?void 0:Ae.data)==null?void 0:le.error)||"删除失败")}},D=W=>{if(!W)return"-";try{const le=new Date(W);return isNaN(le.getTime())?W:le.toLocaleString("zh-CN")}catch{return W}};return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-6",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(od,{className:"w-5 h-5 text-[#38bdac]"}),"管理员用户"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"后台登录账号管理,仅超级管理员可操作"})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(re,{placeholder:"搜索用户名/昵称",value:h,onChange:W=>f(W.target.value),className:"w-48 bg-[#0f2137] border-gray-700 text-white placeholder:text-gray-500"}),r.jsx(X,{variant:"outline",size:"sm",onClick:G,disabled:g,className:"border-gray-600 text-gray-300",children:r.jsx(Fe,{className:`w-4 h-4 ${g?"animate-spin":""}`})}),r.jsxs(X,{onClick:$,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"新增管理员"]})]})]}),N&&r.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:[r.jsx("span",{children:N}),r.jsx("button",{type:"button",onClick:()=>j(null),className:"text-red-400 hover:text-red-300",children:"×"})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-0",children:g?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(r.Fragment,{children:[r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"ID"}),r.jsx(we,{className:"text-gray-400",children:"用户名"}),r.jsx(we,{className:"text-gray-400",children:"昵称"}),r.jsx(we,{className:"text-gray-400",children:"角色"}),r.jsx(we,{className:"text-gray-400",children:"状态"}),r.jsx(we,{className:"text-gray-400",children:"创建时间"}),r.jsx(we,{className:"text-right text-gray-400",children:"操作"})]})}),r.jsxs(as,{children:[t.map(W=>r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(ve,{className:"text-gray-300",children:W.id}),r.jsx(ve,{className:"text-white font-medium",children:W.username}),r.jsx(ve,{className:"text-gray-400",children:W.name||"-"}),r.jsx(ve,{children:r.jsx(Ke,{variant:"outline",className:W.role==="super_admin"?"border-amber-500/50 text-amber-400":"border-gray-600 text-gray-400",children:W.role==="super_admin"?"超级管理员":"管理员"})}),r.jsx(ve,{children:r.jsx(Ke,{variant:"outline",className:W.status==="active"?"border-[#38bdac]/50 text-[#38bdac]":"border-gray-500 text-gray-500",children:W.status==="active"?"正常":"已禁用"})}),r.jsx(ve,{className:"text-gray-500 text-sm",children:D(W.createdAt)}),r.jsxs(ve,{className:"text-right",children:[r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>A(W),className:"text-gray-400 hover:text-[#38bdac]",children:r.jsx(Ut,{className:"w-4 h-4"})}),r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>U(W.id),className:"text-gray-400 hover:text-red-400",children:r.jsx(Zn,{className:"w-4 h-4"})})]})]},W.id)),t.length===0&&!g&&r.jsx(it,{children:r.jsx(ve,{colSpan:7,className:"text-center py-12 text-gray-500",children:N==="无权限访问"?"仅超级管理员可查看":"暂无管理员"})})]})]}),c>1&&r.jsx("div",{className:"p-4 border-t border-gray-700/50",children:r.jsx(Fs,{page:a,pageSize:o,total:n,totalPages:c,onPageChange:i})})]})})}),r.jsx(It,{open:v,onOpenChange:k,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-sm",children:[r.jsx(Rt,{children:r.jsx(Pt,{className:"text-white",children:C?"编辑管理员":"新增管理员"})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"用户名"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"登录用户名",value:M,onChange:W=>P(W.target.value),disabled:!!C}),C&&r.jsx("p",{className:"text-xs text-gray-500",children:"用户名不可修改"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:C?"新密码(留空不改)":"密码"}),r.jsx(re,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:C?"留空表示不修改":"至少 6 位",value:H,onChange:W=>L(W.target.value)})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"昵称"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"显示名称",value:R,onChange:W=>O(W.target.value)})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"角色"}),r.jsxs("select",{value:se,onChange:W=>ie(W.target.value),className:"w-full h-10 px-3 rounded-md bg-[#0a1628] border border-gray-700 text-white",children:[r.jsx("option",{value:"admin",children:"管理员"}),r.jsx("option",{value:"super_admin",children:"超级管理员"})]})]}),C&&r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"状态"}),r.jsxs("select",{value:z,onChange:W=>ce(W.target.value),className:"w-full h-10 px-3 rounded-md bg-[#0a1628] border border-gray-700 text-white",children:[r.jsx("option",{value:"active",children:"正常"}),r.jsx("option",{value:"disabled",children:"禁用"})]})]})]}),r.jsxs(sn,{children:[r.jsxs(X,{variant:"outline",onClick:()=>k(!1),className:"border-gray-600 text-gray-300",children:[r.jsx(gs,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(X,{onClick:Y,disabled:me,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),me?"保存中...":"保存"]})]})]})})]})}function En({method:t,url:e,desc:n,headers:s,body:a,response:i}){const o=t==="GET"?"text-emerald-400":t==="POST"?"text-amber-400":t==="PUT"?"text-blue-400":t==="DELETE"?"text-rose-400":"text-gray-400";return r.jsxs("div",{className:"rounded-lg bg-[#0a1628]/60 border border-gray-700/50 p-4 space-y-3",children:[r.jsxs("div",{className:"flex items-center gap-2 flex-wrap",children:[r.jsx("span",{className:`font-mono font-semibold ${o}`,children:t}),r.jsx("code",{className:"text-sm text-[#38bdac] break-all",children:e})]}),n&&r.jsx("p",{className:"text-gray-400 text-sm",children:n}),s&&s.length>0&&r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"Headers"}),r.jsx("pre",{className:"text-xs text-gray-300 font-mono overflow-x-auto p-2 rounded bg-black/30",children:s.join(` +`)})]}),a&&r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"Request Body (JSON)"}),r.jsx("pre",{className:"text-xs text-green-400/90 font-mono overflow-x-auto p-2 rounded bg-black/30 whitespace-pre-wrap",children:a})]}),i&&r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-500 text-xs mb-1",children:"Response Example"}),r.jsx("pre",{className:"text-xs text-amber-200/80 font-mono overflow-x-auto p-2 rounded bg-black/30 whitespace-pre-wrap",children:i})]})]})}function Y4(){const t=["Authorization: Bearer {token}","Content-Type: application/json"];return r.jsxs("div",{className:"p-8 w-full bg-[#0a1628] text-white",children:[r.jsxs("div",{className:"mb-8",children:[r.jsx("h1",{className:"text-2xl font-bold text-white",children:"API 接口文档"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"内容管理相关接口 · RESTful · 基础路径 /api · 管理端需 Bearer Token"})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(uj,{className:"w-5 h-5 text-[#38bdac]"}),"1. Authentication"]})}),r.jsx(Te,{className:"space-y-4",children:r.jsx(En,{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" +}`})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Ys,{className:"w-5 h-5 text-[#38bdac]"}),"2. 章节管理 (Chapters)"]})}),r.jsxs(Te,{className:"space-y-4",children:[r.jsx(En,{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 } + ] +}`}),r.jsx(En,{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" + } +}`}),r.jsx(En,{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": "新章节标题", ... } +}`}),r.jsx(En,{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": "更新后的标题", ... } +}`}),r.jsx(En,{method:"POST",url:"/api/db/book",desc:"删除章节 (action=delete-section)",headers:t,body:`{ + "action": "delete-section", + "id": "section-1" +}`,response:`{ + "success": true, + "message": "已删除" +}`}),r.jsx(En,{method:"POST",url:"/api/admin/content/upload",desc:"上传图片(管理端)",headers:t,body:"FormData: file (binary)",response:`{ + "success": true, + "url": "/uploads/images/xxx.jpg", + "data": { "url", "fileName", "size", "type" } +}`})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Ao,{className:"w-5 h-5 text-[#38bdac]"}),"3. 人物管理 (@Mentions)"]})}),r.jsxs(Te,{className:"space-y-4",children:[r.jsx(En,{method:"GET",url:"/api/db/persons",desc:"人物列表",headers:t,response:`{ + "success": true, + "data": [ + { "personId": "p1", "label": "张三", "aliases": ["老张"], ... } + ] +}`}),r.jsx(En,{method:"GET",url:"/api/db/person?personId={id}",desc:"人物详情",headers:t,response:`{ + "success": true, + "data": { + "personId": "p1", + "label": "张三", + "aliases": ["老张"], + "description": "..." + } +}`}),r.jsx(En,{method:"POST",url:"/api/db/persons",desc:"新增/更新人物(含 aliases 字段)",headers:t,body:`{ + "personId": "p1", + "label": "张三", + "aliases": ["老张", "张三丰"], + "description": "可选描述" +}`,response:`{ + "success": true, + "data": { "personId": "p1", "label": "张三", ... } +}`}),r.jsx(En,{method:"DELETE",url:"/api/db/persons?personId={id}",desc:"删除人物",headers:t,response:`{ + "success": true, + "message": "已删除" +}`})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(ld,{className:"w-5 h-5 text-[#38bdac]"}),"4. 链接标签 (#LinkTags)"]})}),r.jsxs(Te,{className:"space-y-4",children:[r.jsx(En,{method:"GET",url:"/api/db/link-tags",desc:"标签列表",headers:t,response:`{ + "success": true, + "data": [ + { "tagId": "t1", "label": "官网", "aliases": [], "type": "url", "url": "https://..." } + ] +}`}),r.jsx(En,{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", ... } +}`}),r.jsx(En,{method:"DELETE",url:"/api/db/link-tags?tagId={id}",desc:"删除标签",headers:t,response:`{ + "success": true, + "message": "已删除" +}`})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Ba,{className:"w-5 h-5 text-[#38bdac]"}),"5. 内容搜索"]})}),r.jsx(Te,{className:"space-y-4",children:r.jsx(En,{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": "..." }] + } +}`})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Xg,{className:"w-5 h-5 text-[#38bdac]"}),"6. 内容排行"]})}),r.jsx(Te,{className:"space-y-4",children:r.jsx(En,{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 } + ] +}`})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{className:"pb-3",children:r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(zi,{className:"w-5 h-5 text-[#38bdac]"}),"7. 小程序接口"]})}),r.jsxs(Te,{className:"space-y-4",children:[r.jsx(En,{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 }, ... ] +}`}),r.jsx(En,{method:"GET",url:"/api/miniprogram/balance?userId={id}",desc:"查余额",headers:["Content-Type: application/json"],response:`{ + "success": true, + "data": { "balance": 100.50, "userId": "xxx" } +}`}),r.jsx(En,{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 } +}`}),r.jsx(En,{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 } +}`})]})]}),r.jsx("p",{className:"text-gray-500 text-xs mt-6",children:"管理端仅使用 /api/admin/*、/api/db/*;小程序使用 /api/miniprogram/*。完整实现见 soul-api 源码。"})]})}const gV={appId:"wxb8bbb2b10dec74aa",withdrawSubscribeTmplId:"u3MbZGPRkrZIk-I7QdpwzFxnO_CeQPaCWF2FkiIablE",mchId:"1318592501",minWithdraw:10},xV={name:"卡若",startDate:"2025年10月15日",bio:"连续创业者,私域运营专家,每天早上6-9点在Soul派对房分享真实商业故事",liveTime:"06:00-09:00",platform:"Soul派对房",description:"连续创业者,私域运营专家"},yV={sectionPrice:1,baseBookPrice:9.9,distributorShare:90,authorInfo:{...xV},ckbLeadApiKey:""},bV={matchEnabled:!0,referralEnabled:!0,searchEnabled:!0,aboutEnabled:!0},vV=["system","author","admin","api-docs"];function NV(){const[t,e]=tj(),n=t.get("tab")??"system",s=vV.includes(n)?n:"system",[a,i]=b.useState(yV),[o,c]=b.useState(bV),[u,h]=b.useState(gV),[f,m]=b.useState({}),[g,y]=b.useState(!1),[N,j]=b.useState(!0),[v,k]=b.useState(!1),[C,E]=b.useState(""),[M,P]=b.useState(""),[H,L]=b.useState(!1),[R,O]=b.useState(!1),se=(A,Y,U=!1)=>{E(A),P(Y),L(U),k(!0)};b.useEffect(()=>{(async()=>{try{const Y=await De("/api/admin/settings");if(!Y||Y.success===!1)return;if(Y.featureConfig&&Object.keys(Y.featureConfig).length&&c(U=>({...U,...Y.featureConfig})),Y.mpConfig&&typeof Y.mpConfig=="object"&&h(U=>({...U,...Y.mpConfig})),Y.ossConfig&&typeof Y.ossConfig=="object"&&m(U=>({...U,...Y.ossConfig})),Y.siteSettings&&typeof Y.siteSettings=="object"){const U=Y.siteSettings;i(D=>({...D,...typeof U.sectionPrice=="number"&&{sectionPrice:U.sectionPrice},...typeof U.baseBookPrice=="number"&&{baseBookPrice:U.baseBookPrice},...typeof U.distributorShare=="number"&&{distributorShare:U.distributorShare},...U.authorInfo&&typeof U.authorInfo=="object"&&{authorInfo:{...D.authorInfo,...U.authorInfo}},...typeof U.ckbLeadApiKey=="string"&&{ckbLeadApiKey:U.ckbLeadApiKey}}))}}catch(Y){console.error("Load settings error:",Y)}finally{j(!1)}})()},[]);const ie=async(A,Y)=>{O(!0);try{const U=await Nt("/api/admin/settings",{featureConfig:A});if(!U||U.success===!1){Y(),se("保存失败",(U==null?void 0:U.error)??"未知错误",!0);return}se("已保存","功能开关已更新,相关入口将随之显示或隐藏。")}catch(U){console.error("Save feature config error:",U),Y(),se("保存失败",U instanceof Error?U.message:String(U),!0)}finally{O(!1)}},z=(A,Y)=>{const U=o,D={...U,[A]:Y};c(D),ie(D,()=>c(U))},[ce,me]=b.useState(!1),_=async A=>{const Y=u,U={...Y,auditMode:A};h(U),me(!0);try{const D=await Nt("/api/admin/settings",{mpConfig:U});if(!D||D.success===!1){h(Y),se("保存失败",(D==null?void 0:D.error)??"未知错误",!0);return}se("已保存",A?"审核模式已开启,小程序将隐藏所有支付入口。":"审核模式已关闭,支付功能已恢复。")}catch(D){h(Y),se("保存失败",D instanceof Error?D.message:String(D),!0)}finally{me(!1)}},G=async()=>{y(!0);try{const A=await Nt("/api/admin/settings",{featureConfig:o,siteSettings:{sectionPrice:a.sectionPrice,baseBookPrice:a.baseBookPrice,distributorShare:a.distributorShare,authorInfo:a.authorInfo,ckbLeadApiKey:a.ckbLeadApiKey||void 0},mpConfig:{...u,appId:u.appId||"",withdrawSubscribeTmplId:u.withdrawSubscribeTmplId||"",mchId:u.mchId||"",minWithdraw:typeof u.minWithdraw=="number"?u.minWithdraw:10,auditMode:u.auditMode??!1},ossConfig:Object.keys(f).length?{endpoint:f.endpoint??"",bucket:f.bucket??"",region:f.region??"",accessKeyId:f.accessKeyId??"",accessKeySecret:f.accessKeySecret??""}:void 0});if(!A||A.success===!1){se("保存失败",(A==null?void 0:A.error)??"未知错误",!0);return}se("已保存","设置已保存成功。")}catch(A){console.error("Save settings error:",A),se("保存失败",A instanceof Error?A.message:String(A),!0)}finally{y(!1)}},$=A=>{e(A==="system"?{}:{tab:A})};return N?r.jsx("div",{className:"p-8 text-gray-500",children:"加载中..."}):r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-6",children:[r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"系统设置"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"配置全站基础参数与开关"})]}),s==="system"&&r.jsxs(X,{onClick:G,disabled:g,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),g?"保存中...":"保存设置"]})]}),r.jsxs(Wd,{value:s,onValueChange:$,className:"w-full",children:[r.jsxs(sc,{className:"mb-6 bg-[#0f2137] border border-gray-700/50 p-1",children:[r.jsxs(Zt,{value:"system",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[r.jsx(Mo,{className:"w-4 h-4 mr-2"}),"系统设置"]}),r.jsxs(Zt,{value:"author",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[r.jsx(Wm,{className:"w-4 h-4 mr-2"}),"作者详情"]}),r.jsxs(Zt,{value:"admin",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[r.jsx(od,{className:"w-4 h-4 mr-2"}),"管理员"]}),r.jsxs(Zt,{value:"api-docs",className:"data-[state=active]:bg-[#38bdac]/20 data-[state=active]:text-[#38bdac] text-gray-400 data-[state=active]:font-medium",children:[r.jsx(oj,{className:"w-4 h-4 mr-2"}),"API 文档"]})]}),r.jsx(en,{value:"system",className:"mt-0",children:r.jsxs("div",{className:"space-y-6",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Wm,{className:"w-5 h-5 text-[#38bdac]"}),"关于作者"]}),r.jsx(Ft,{className:"text-gray-400",children:'配置作者信息,将在"关于作者"页面显示'})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{htmlFor:"author-name",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(Wm,{className:"w-3 h-3"}),"主理人名称"]}),r.jsx(re,{id:"author-name",className:"bg-[#0a1628] border-gray-700 text-white",value:a.authorInfo.name??"",onChange:A=>i(Y=>({...Y,authorInfo:{...Y.authorInfo,name:A.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{htmlFor:"start-date",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(Ah,{className:"w-3 h-3"}),"开播日期"]}),r.jsx(re,{id:"start-date",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例如: 2025年10月15日",value:a.authorInfo.startDate??"",onChange:A=>i(Y=>({...Y,authorInfo:{...Y.authorInfo,startDate:A.target.value}}))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{htmlFor:"live-time",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(Ah,{className:"w-3 h-3"}),"直播时间"]}),r.jsx(re,{id:"live-time",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例如: 06:00-09:00",value:a.authorInfo.liveTime??"",onChange:A=>i(Y=>({...Y,authorInfo:{...Y.authorInfo,liveTime:A.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{htmlFor:"platform",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(hj,{className:"w-3 h-3"}),"直播平台"]}),r.jsx(re,{id:"platform",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"例如: Soul派对房",value:a.authorInfo.platform??"",onChange:A=>i(Y=>({...Y,authorInfo:{...Y.authorInfo,platform:A.target.value}}))})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{htmlFor:"description",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(Ys,{className:"w-3 h-3"}),"简介描述"]}),r.jsx(re,{id:"description",className:"bg-[#0a1628] border-gray-700 text-white",value:a.authorInfo.description??"",onChange:A=>i(Y=>({...Y,authorInfo:{...Y.authorInfo,description:A.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{htmlFor:"bio",className:"text-gray-300",children:"详细介绍"}),r.jsx(rc,{id:"bio",className:"bg-[#0a1628] border-gray-700 text-white min-h-[100px]",placeholder:"输入作者详细介绍...",value:a.authorInfo.bio??"",onChange:A=>i(Y=>({...Y,authorInfo:{...Y.authorInfo,bio:A.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{htmlFor:"ckb-lead-api-key",className:"text-gray-300 flex items-center gap-1",children:[r.jsx(Rr,{className:"w-3 h-3"}),"链接卡若存客宝密钥"]}),r.jsx(re,{id:"ckb-lead-api-key",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如 xxxxx-xxxxx-xxxxx-xxxxx(留空则用 .env 默认)",value:a.ckbLeadApiKey??"",onChange:A=>i(Y=>({...Y,ckbLeadApiKey:A.target.value}))}),r.jsx("p",{className:"text-xs text-gray-500",children:"小程序首页「链接卡若」留资接口使用的存客宝 API Key,优先于 .env 配置"})]}),r.jsxs("div",{className:"mt-4 p-4 rounded-xl bg-[#0a1628] border border-[#38bdac]/30",children:[r.jsx("p",{className:"text-xs text-gray-500 mb-2",children:"预览效果"}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.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:(a.authorInfo.name??"K").charAt(0)}),r.jsxs("div",{children:[r.jsx("p",{className:"text-white font-semibold",children:a.authorInfo.name}),r.jsx("p",{className:"text-gray-400 text-xs",children:a.authorInfo.description}),r.jsxs("p",{className:"text-[#38bdac] text-xs mt-1",children:["每日 ",a.authorInfo.liveTime," · ",a.authorInfo.platform]})]})]})]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Ih,{className:"w-5 h-5 text-[#38bdac]"}),"价格设置"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置书籍和章节的定价"})]}),r.jsx(Te,{className:"space-y-4",children:r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"单节价格 (元)"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:a.sectionPrice,onChange:A=>i(Y=>({...Y,sectionPrice:Number.parseFloat(A.target.value)||1}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"整本价格 (元)"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:a.baseBookPrice,onChange:A=>i(Y=>({...Y,baseBookPrice:Number.parseFloat(A.target.value)||9.9}))})]})]})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(zi,{className:"w-5 h-5 text-[#38bdac]"}),"小程序配置"]}),r.jsx(Ft,{className:"text-gray-400",children:"订阅消息模板、支付商户号等,小程序从 /api/miniprogram/config 读取(API 地址由 app.js baseUrl 控制)"})]}),r.jsx(Te,{className:"space-y-4",children:r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"小程序 AppID"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"wxb8bbb2b10dec74aa",value:u.appId??"",onChange:A=>h(Y=>({...Y,appId:A.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"提现订阅模板 ID"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"用户申请提现时需授权",value:u.withdrawSubscribeTmplId??"",onChange:A=>h(Y=>({...Y,withdrawSubscribeTmplId:A.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"微信支付商户号"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"1318592501",value:u.mchId??"",onChange:A=>h(Y=>({...Y,mchId:A.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"最低提现金额 (元)"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:u.minWithdraw??10,onChange:A=>h(Y=>({...Y,minWithdraw:Number.parseFloat(A.target.value)||10}))})]})]})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(oM,{className:"w-5 h-5 text-[#38bdac]"}),"OSS 配置(阿里云对象存储)"]}),r.jsx(Ft,{className:"text-gray-400",children:"endpoint、bucket、accessKey 等,用于图片/文件上传"})]}),r.jsx(Te,{className:"space-y-4",children:r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"Endpoint"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"oss-cn-hangzhou.aliyuncs.com",value:f.endpoint??"",onChange:A=>m(Y=>({...Y,endpoint:A.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"Bucket"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"bucket 名称",value:f.bucket??"",onChange:A=>m(Y=>({...Y,bucket:A.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"Region"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"oss-cn-hangzhou",value:f.region??"",onChange:A=>m(Y=>({...Y,region:A.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"AccessKey ID"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"AccessKey ID",value:f.accessKeyId??"",onChange:A=>m(Y=>({...Y,accessKeyId:A.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"AccessKey Secret"}),r.jsx(re,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"AccessKey Secret",value:f.accessKeySecret??"",onChange:A=>m(Y=>({...Y,accessKeySecret:A.target.value}))})]})]})})]}),r.jsxs(Ee,{className:`bg-[#0f2137] shadow-xl ${u.auditMode?"border-amber-500/50 border-2":"border-gray-700/50"}`,children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(od,{className:"w-5 h-5 text-amber-400"}),"小程序审核模式"]}),r.jsx(Ft,{className:"text-gray-400",children:"提交微信审核前开启,审核通过后关闭即可恢复支付功能"})]}),r.jsx(Te,{children:r.jsxs("div",{className:`flex items-center justify-between p-4 rounded-lg border ${u.auditMode?"bg-amber-500/10 border-amber-500/30":"bg-[#0a1628] border-gray-700/50"}`,children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(od,{className:`w-4 h-4 ${u.auditMode?"text-amber-400":"text-gray-400"}`}),r.jsx(Z,{htmlFor:"audit-mode",className:"text-white font-medium cursor-pointer",children:u.auditMode?"审核模式(已开启)":"审核模式(已关闭)"})]}),r.jsx("p",{className:"text-xs text-gray-400 ml-6",children:u.auditMode?"当前已隐藏所有支付、VIP、充值、收益等入口,审核员看不到任何付费内容":"关闭状态,小程序正常显示所有功能(含支付、VIP 等)"})]}),r.jsx(jt,{id:"audit-mode",checked:u.auditMode??!1,disabled:ce,onCheckedChange:_})]})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Mo,{className:"w-5 h-5 text-[#38bdac]"}),"功能开关"]}),r.jsx(Ft,{className:"text-gray-400",children:"控制各个功能模块的显示/隐藏"})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(_n,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx(Z,{htmlFor:"match-enabled",className:"text-white font-medium cursor-pointer",children:"找伙伴功能"})]}),r.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制小程序和Web端的找伙伴功能显示"})]}),r.jsx(jt,{id:"match-enabled",checked:o.matchEnabled,disabled:R,onCheckedChange:A=>z("matchEnabled",A)})]}),r.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(cj,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx(Z,{htmlFor:"referral-enabled",className:"text-white font-medium cursor-pointer",children:"推广功能"})]}),r.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制推广中心的显示(我的页面入口)"})]}),r.jsx(jt,{id:"referral-enabled",checked:o.referralEnabled,disabled:R,onCheckedChange:A=>z("referralEnabled",A)})]}),r.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(Ys,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx(Z,{htmlFor:"search-enabled",className:"text-white font-medium cursor-pointer",children:"搜索功能"})]}),r.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制首页、目录页搜索栏的显示"})]}),r.jsx(jt,{id:"search-enabled",checked:o.searchEnabled,disabled:R,onCheckedChange:A=>z("searchEnabled",A)})]}),r.jsxs("div",{className:"flex items-center justify-between p-4 rounded-lg bg-[#0a1628] border border-gray-700/50",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx(Mo,{className:"w-4 h-4 text-[#38bdac]"}),r.jsx(Z,{htmlFor:"about-enabled",className:"text-white font-medium cursor-pointer",children:"关于页面"})]}),r.jsx("p",{className:"text-xs text-gray-400 ml-6",children:"控制关于页面的访问"})]}),r.jsx(jt,{id:"about-enabled",checked:o.aboutEnabled,disabled:R,onCheckedChange:A=>z("aboutEnabled",A)})]})]}),r.jsx("div",{className:"p-3 rounded-lg bg-blue-500/10 border border-blue-500/30",children:r.jsx("p",{className:"text-xs text-blue-300",children:"💡 关闭功能后,相关入口会自动隐藏。建议在功能开发完成后再开启。"})})]})]})]})}),r.jsx(en,{value:"author",className:"mt-0",children:r.jsx(pV,{})}),r.jsx(en,{value:"admin",className:"mt-0",children:r.jsx(mV,{})}),r.jsx(en,{value:"api-docs",className:"mt-0",children:r.jsx(Y4,{})})]}),r.jsx(It,{open:v,onOpenChange:k,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white",showCloseButton:!0,children:[r.jsxs(Rt,{children:[r.jsx(Pt,{className:H?"text-red-400":"text-[#38bdac]",children:C}),r.jsx(Cd,{className:"text-gray-400 whitespace-pre-wrap pt-2",children:M})]}),r.jsx(sn,{className:"mt-4",children:r.jsx(X,{onClick:()=>k(!1),className:H?"bg-gray-600 hover:bg-gray-500":"bg-[#38bdac] hover:bg-[#2da396]",children:"确定"})})]})})]})}const Pw={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 wV(){const[t,e]=b.useState(!1),[n,s]=b.useState(Pw),[a,i]=b.useState(""),o=async()=>{e(!0);try{const k=await De("/api/config");k!=null&&k.paymentMethods&&s({...Pw,...k.paymentMethods})}catch(k){console.error(k)}finally{e(!1)}};b.useEffect(()=>{o()},[]);const c=async()=>{e(!0);try{await Nt("/api/db/config",{key:"payment_methods",value:n,description:"支付方式配置"}),te.success("配置已保存!")}catch(k){console.error("保存失败:",k),te.error("保存失败: "+(k instanceof Error?k.message:String(k)))}finally{e(!1)}},u=(k,C)=>{navigator.clipboard.writeText(k),i(C),setTimeout(()=>i(""),2e3)},h=(k,C)=>{s(E=>({...E,wechat:{...E.wechat,[k]:C}}))},f=(k,C)=>{s(E=>({...E,alipay:{...E.alipay,[k]:C}}))},m=(k,C)=>{s(E=>({...E,usdt:{...E.usdt,[k]:C}}))},g=(k,C)=>{s(E=>({...E,paypal:{...E.paypal,[k]:C}}))},y=n.wechat,N=n.alipay,j=n.usdt,v=n.paypal;return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsx("h1",{className:"text-2xl font-bold mb-2 text-white",children:"支付配置"}),r.jsx("p",{className:"text-gray-400",children:"配置微信、支付宝、USDT、PayPal等支付参数"})]}),r.jsxs("div",{className:"flex gap-3",children:[r.jsxs(X,{variant:"outline",onClick:o,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${t?"animate-spin":""}`}),"同步配置"]}),r.jsxs(X,{onClick:c,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),"保存配置"]})]})]}),r.jsx("div",{className:"mb-6 bg-[#07C160]/10 border border-[#07C160]/30 rounded-xl p-4",children:r.jsxs("div",{className:"flex items-start gap-3",children:[r.jsx(aj,{className:"w-5 h-5 text-[#07C160] flex-shrink-0 mt-0.5"}),r.jsxs("div",{className:"text-sm",children:[r.jsx("p",{className:"font-medium mb-2 text-[#07C160]",children:"如何获取微信群跳转链接?"}),r.jsxs("ol",{className:"text-[#07C160]/80 space-y-1 list-decimal list-inside",children:[r.jsx("li",{children:"打开微信,进入目标微信群"}),r.jsx("li",{children:'点击右上角"..." → "群二维码"'}),r.jsx("li",{children:'点击右上角"..." → "发送到电脑"'}),r.jsx("li",{children:"在电脑上保存二维码图片,上传到图床获取URL"}),r.jsx("li",{children:"或使用草料二维码等工具解析二维码获取链接"})]}),r.jsx("p",{className:"text-[#07C160]/60 mt-2",children:"提示:微信群二维码7天后失效,建议使用活码工具"})]})]})}),r.jsxs(Wd,{defaultValue:"wechat",className:"space-y-6",children:[r.jsxs(sc,{className:"bg-[#0f2137] border border-gray-700/50 p-1 grid grid-cols-4 w-full",children:[r.jsxs(Zt,{value:"wechat",className:"data-[state=active]:bg-[#07C160]/20 data-[state=active]:text-[#07C160] text-gray-400",children:[r.jsx(zi,{className:"w-4 h-4 mr-2"}),"微信"]}),r.jsxs(Zt,{value:"alipay",className:"data-[state=active]:bg-[#1677FF]/20 data-[state=active]:text-[#1677FF] text-gray-400",children:[r.jsx(Yv,{className:"w-4 h-4 mr-2"}),"支付宝"]}),r.jsxs(Zt,{value:"usdt",className:"data-[state=active]:bg-[#26A17B]/20 data-[state=active]:text-[#26A17B] text-gray-400",children:[r.jsx(Gv,{className:"w-4 h-4 mr-2"}),"USDT"]}),r.jsxs(Zt,{value:"paypal",className:"data-[state=active]:bg-[#003087]/20 data-[state=active]:text-[#169BD7] text-gray-400",children:[r.jsx(Gg,{className:"w-4 h-4 mr-2"}),"PayPal"]})]}),r.jsx(en,{value:"wechat",className:"space-y-4",children:r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between pb-2",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs(Ye,{className:"text-[#07C160] flex items-center gap-2",children:[r.jsx(zi,{className:"w-5 h-5"}),"微信支付配置"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置微信支付参数和跳转链接"})]}),r.jsx(jt,{checked:!!y.enabled,onCheckedChange:k=>h("enabled",k)})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"网站AppID"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(y.websiteAppId??""),onChange:k=>h("websiteAppId",k.target.value)})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"商户号"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(y.merchantId??""),onChange:k=>h("merchantId",k.target.value)})]})]}),r.jsxs("div",{className:"border-t border-gray-700/50 pt-4 space-y-4",children:[r.jsxs("h4",{className:"text-white font-medium flex items-center gap-2",children:[r.jsx(ra,{className:"w-4 h-4 text-[#38bdac]"}),"跳转链接配置(核心功能)"]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"微信收款码/支付链接"}),r.jsx(re,{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)}),r.jsx("p",{className:"text-xs text-gray-500",children:"用户点击微信支付后显示的二维码图片URL"})]}),r.jsxs("div",{className:"space-y-2 bg-[#07C160]/5 p-4 rounded-xl border border-[#07C160]/20",children:[r.jsx(Z,{className:"text-[#07C160] font-medium",children:"微信群跳转链接(支付成功后跳转)"}),r.jsx(re,{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)}),r.jsx("p",{className:"text-xs text-[#07C160]/70",children:"用户支付成功后将自动跳转到此链接,进入指定微信群"})]})]})]})]})}),r.jsx(en,{value:"alipay",className:"space-y-4",children:r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between pb-2",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs(Ye,{className:"text-[#1677FF] flex items-center gap-2",children:[r.jsx(Yv,{className:"w-5 h-5"}),"支付宝配置"]}),r.jsx(Ft,{className:"text-gray-400",children:"已加载真实支付宝参数"})]}),r.jsx(jt,{checked:!!N.enabled,onCheckedChange:k=>f("enabled",k)})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"合作者身份 (PID)"}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(N.partnerId??""),onChange:k=>f("partnerId",k.target.value)}),r.jsx(X,{size:"icon",variant:"outline",className:"border-gray-700 bg-transparent",onClick:()=>u(String(N.partnerId??""),"pid"),children:a==="pid"?r.jsx(Of,{className:"w-4 h-4 text-green-500"}):r.jsx(s0,{className:"w-4 h-4 text-gray-400"})})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"安全校验码 (Key)"}),r.jsx(re,{type:"password",className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",value:String(N.securityKey??""),onChange:k=>f("securityKey",k.target.value)})]})]}),r.jsxs("div",{className:"border-t border-gray-700/50 pt-4 space-y-4",children:[r.jsxs("h4",{className:"text-white font-medium flex items-center gap-2",children:[r.jsx(ra,{className:"w-4 h-4 text-[#38bdac]"}),"跳转链接配置"]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"支付宝收款码/跳转链接"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white placeholder:text-gray-500",placeholder:"https://qr.alipay.com/... 或收款码图片URL",value:String(N.qrCode??""),onChange:k=>f("qrCode",k.target.value)}),r.jsx("p",{className:"text-xs text-gray-500",children:"用户点击支付宝支付后显示的二维码"})]})]})]})]})}),r.jsx(en,{value:"usdt",className:"space-y-4",children:r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between pb-2",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs(Ye,{className:"text-[#26A17B] flex items-center gap-2",children:[r.jsx(Gv,{className:"w-5 h-5"}),"USDT配置"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置加密货币收款地址"})]}),r.jsx(jt,{checked:!!j.enabled,onCheckedChange:k=>m("enabled",k)})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"网络类型"}),r.jsxs("select",{className:"w-full bg-[#0a1628] border border-gray-700 text-white rounded-md p-2",value:String(j.network??"TRC20"),onChange:k=>m("network",k.target.value),children:[r.jsx("option",{value:"TRC20",children:"TRC20 (波场)"}),r.jsx("option",{value:"ERC20",children:"ERC20 (以太坊)"}),r.jsx("option",{value:"BEP20",children:"BEP20 (币安链)"})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"收款地址"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white font-mono text-sm",placeholder:"T... (TRC20地址)",value:String(j.address??""),onChange:k=>m("address",k.target.value)})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"汇率 (1 USD = ? CNY)"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:Number(j.exchangeRate)??7.2,onChange:k=>m("exchangeRate",Number.parseFloat(k.target.value)||7.2)})]})]})]})}),r.jsx(en,{value:"paypal",className:"space-y-4",children:r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between pb-2",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsxs(Ye,{className:"text-[#169BD7] flex items-center gap-2",children:[r.jsx(Gg,{className:"w-5 h-5"}),"PayPal配置"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置PayPal收款账户"})]}),r.jsx(jt,{checked:!!v.enabled,onCheckedChange:k=>g("enabled",k)})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"PayPal邮箱"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"your@email.com",value:String(v.email??""),onChange:k=>g("email",k.target.value)})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"汇率 (1 USD = ? CNY)"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:Number(v.exchangeRate)??7.2,onChange:k=>g("exchangeRate",Number(k.target.value)||7.2)})]})]})]})})]})]})}const jV={siteName:"卡若日记",siteTitle:"一场SOUL的创业实验场",siteDescription:"来自Soul派对房的真实商业故事",logo:"/logo.png",favicon:"/favicon.ico",primaryColor:"#00CED1"},kV={home:{enabled:!0,label:"首页"},chapters:{enabled:!0,label:"目录"},match:{enabled:!0,label:"匹配"},my:{enabled:!0,label:"我的"}},SV={homeTitle:"一场SOUL的创业实验场",homeSubtitle:"来自Soul派对房的真实商业故事",chaptersTitle:"我要看",matchTitle:"语音匹配",myTitle:"我的",aboutTitle:"关于作者"};function CV(){const[t,e]=b.useState({siteConfig:{...jV},menuConfig:{...kV},pageConfig:{...SV}}),[n,s]=b.useState(!1),[a,i]=b.useState(!1);b.useEffect(()=>{De("/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 Nt("/api/db/config",{key:"site_config",value:t.siteConfig,description:"网站基础配置"}),await Nt("/api/db/config",{key:"menu_config",value:t.menuConfig,description:"底部菜单配置"}),await Nt("/api/db/config",{key:"page_config",value:t.pageConfig,description:"页面标题配置"}),s(!0),setTimeout(()=>s(!1),2e3),te.success("配置已保存")}catch(f){console.error(f),te.error("保存失败: "+(f instanceof Error?f.message:String(f)))}finally{i(!1)}},c=t.siteConfig,u=t.menuConfig,h=t.pageConfig;return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"网站配置"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"配置网站名称、图标、菜单和页面标题"})]}),r.jsxs(X,{onClick:o,disabled:a,className:`${n?"bg-green-500":"bg-[#00CED1]"} hover:bg-[#20B2AA] text-white transition-colors`,children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),a?"保存中...":n?"已保存":"保存设置"]})]}),r.jsxs("div",{className:"space-y-6",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Gg,{className:"w-5 h-5 text-[#00CED1]"}),"网站基础信息"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置网站名称、标题和描述"})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{htmlFor:"site-name",className:"text-gray-300",children:"网站名称"}),r.jsx(re,{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}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{htmlFor:"site-title",className:"text-gray-300",children:"网站标题"}),r.jsx(re,{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}}))})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{htmlFor:"site-desc",className:"text-gray-300",children:"网站描述"}),r.jsx(re,{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}}))})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{htmlFor:"logo",className:"text-gray-300",children:"Logo地址"}),r.jsx(re,{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}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{htmlFor:"favicon",className:"text-gray-300",children:"Favicon地址"}),r.jsx(re,{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}}))})]})]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(d5,{className:"w-5 h-5 text-[#00CED1]"}),"主题颜色"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置网站主题色"})]}),r.jsx(Te,{children:r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsxs("div",{className:"space-y-2 flex-1",children:[r.jsx(Z,{htmlFor:"primary-color",className:"text-gray-300",children:"主色调"}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(re,{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}}))}),r.jsx(re,{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}}))})]})]}),r.jsx("div",{className:"w-24 h-24 rounded-xl flex items-center justify-center text-white font-bold",style:{backgroundColor:c.primaryColor??"#00CED1"},children:"预览"})]})})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(s5,{className:"w-5 h-5 text-[#00CED1]"}),"底部菜单配置"]}),r.jsx(Ft,{className:"text-gray-400",children:"控制底部导航栏菜单的显示和名称"})]}),r.jsx(Te,{className:"space-y-4",children:Object.entries(u).map(([f,m])=>r.jsxs("div",{className:"flex items-center justify-between p-4 bg-[#0a1628] rounded-lg",children:[r.jsxs("div",{className:"flex items-center gap-4 flex-1",children:[r.jsx(jt,{checked:(m==null?void 0:m.enabled)??!0,onCheckedChange:g=>e(y=>({...y,menuConfig:{...y.menuConfig,[f]:{...m,enabled:g}}}))}),r.jsx("span",{className:"text-gray-300 w-16 capitalize",children:f}),r.jsx(re,{className:"bg-[#0f2137] border-gray-700 text-white max-w-[200px]",value:(m==null?void 0:m.label)??"",onChange:g=>e(y=>({...y,menuConfig:{...y.menuConfig,[f]:{...m,label:g.target.value}}}))})]}),r.jsx("span",{className:`text-sm ${m!=null&&m.enabled?"text-green-400":"text-gray-500"}`,children:m!=null&&m.enabled?"显示":"隐藏"})]},f))})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(oj,{className:"w-5 h-5 text-[#00CED1]"}),"页面标题配置"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置各个页面的标题和副标题"})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"首页标题"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.homeTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,homeTitle:f.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"首页副标题"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.homeSubtitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,homeSubtitle:f.target.value}}))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"目录页标题"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.chaptersTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,chaptersTitle:f.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"匹配页标题"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.matchTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,matchTitle:f.target.value}}))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"我的页标题"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.myTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,myTitle:f.target.value}}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"关于作者标题"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",value:h.aboutTitle??"",onChange:f=>e(m=>({...m,pageConfig:{...m.pageConfig,aboutTitle:f.target.value}}))})]})]})]})]})]})]})}function EV(){const[t,e]=b.useState(""),[n,s]=b.useState(""),[a,i]=b.useState(""),[o,c]=b.useState({}),u=async()=>{var y,N,j,v;try{const k=await De("/api/config"),C=(N=(y=k==null?void 0:k.liveQRCodes)==null?void 0:y[0])==null?void 0:N.urls;Array.isArray(C)&&e(C.join(` +`));const E=(v=(j=k==null?void 0:k.paymentMethods)==null?void 0:j.wechat)==null?void 0:v.groupQrCode;E&&s(E),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,N)=>{navigator.clipboard.writeText(y),i(N),setTimeout(()=>i(""),2e3)},f=async()=>{try{const y=t.split(` +`).map(j=>j.trim()).filter(Boolean),N=[...o.liveQRCodes||[]];N[0]?N[0].urls=y:N.push({id:"live-1",name:"微信群活码",urls:y,clickCount:0}),await Nt("/api/db/config",{key:"live_qr_codes",value:N,description:"群活码配置"}),te.success("群活码配置已保存!"),await u()}catch(y){console.error(y),te.error("保存失败: "+(y instanceof Error?y.message:String(y)))}},m=async()=>{var y;try{await Nt("/api/db/config",{key:"payment_methods",value:{...o.paymentMethods||{},wechat:{...((y=o.paymentMethods)==null?void 0:y.wechat)||{},groupQrCode:n}},description:"支付方式配置"}),te.success("微信群链接已保存!用户支付成功后将自动跳转"),await u()}catch(N){console.error(N),te.error("保存失败: "+(N instanceof Error?N.message:String(N)))}},g=()=>{n?window.open(n,"_blank"):te.error("请先配置微信群链接")};return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"mb-8",children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"微信群活码管理"}),r.jsx("p",{className:"text-gray-400 mt-1",children:"配置微信群跳转链接,用户支付后自动跳转加群"})]}),r.jsx("div",{className:"mb-6 bg-[#07C160]/10 border border-[#07C160]/30 rounded-xl p-4",children:r.jsxs("div",{className:"flex items-start gap-3",children:[r.jsx(aj,{className:"w-5 h-5 text-[#07C160] flex-shrink-0 mt-0.5"}),r.jsxs("div",{className:"text-sm",children:[r.jsx("p",{className:"font-medium mb-2 text-[#07C160]",children:"微信群活码配置指南"}),r.jsxs("div",{className:"text-[#07C160]/80 space-y-2",children:[r.jsx("p",{className:"font-medium",children:"方法一:使用草料活码(推荐)"}),r.jsxs("ol",{className:"list-decimal list-inside space-y-1 pl-2",children:[r.jsx("li",{children:"访问草料二维码创建活码"}),r.jsx("li",{children:"上传微信群二维码图片,生成永久链接"}),r.jsx("li",{children:"复制生成的短链接填入下方配置"}),r.jsx("li",{children:"群满后可直接在草料后台更换新群码,链接不变"})]}),r.jsx("p",{className:"font-medium mt-3",children:"方法二:直接使用微信群链接"}),r.jsxs("ol",{className:"list-decimal list-inside space-y-1 pl-2",children:[r.jsx("li",{children:'微信打开目标群 → 右上角"..." → 群二维码'}),r.jsx("li",{children:"长按二维码 → 识别二维码 → 复制链接"})]}),r.jsx("p",{className:"text-[#07C160]/60 mt-2",children:"注意:微信原生群二维码7天后失效,建议使用草料活码"})]})]})]})}),r.jsxs("div",{className:"grid gap-6 md:grid-cols-2",children:[r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl md:col-span-2",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-[#07C160] flex items-center gap-2",children:[r.jsx(Xv,{className:"w-5 h-5"}),"支付成功跳转链接(核心配置)"]}),r.jsx(Ft,{className:"text-gray-400",children:"用户支付完成后自动跳转到此链接,进入指定微信群"})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(Jg,{className:"w-4 h-4"}),"微信群链接 / 活码链接"]}),r.jsxs("div",{className:"flex gap-2",children:[r.jsx(re,{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=>s(y.target.value)}),r.jsx(X,{variant:"outline",size:"icon",className:"border-gray-700 bg-transparent hover:bg-gray-700/50",onClick:()=>h(n,"group"),children:a==="group"?r.jsx(Of,{className:"w-4 h-4 text-green-500"}):r.jsx(s0,{className:"w-4 h-4 text-gray-400"})})]}),r.jsxs("p",{className:"text-xs text-gray-500 flex items-center gap-1",children:[r.jsx(ra,{className:"w-3 h-3"}),"支持格式:草料短链、微信群链接(https://weixin.qq.com/g/...)、企业微信链接等"]})]}),r.jsxs("div",{className:"flex gap-3",children:[r.jsxs(X,{onClick:m,className:"flex-1 bg-[#07C160] hover:bg-[#06AD51] text-white",children:[r.jsx(Rh,{className:"w-4 h-4 mr-2"}),"保存配置"]}),r.jsxs(X,{onClick:g,variant:"outline",className:"border-[#07C160] text-[#07C160] hover:bg-[#07C160]/10 bg-transparent",children:[r.jsx(ra,{className:"w-4 h-4 mr-2"}),"测试跳转"]})]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl md:col-span-2",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Xv,{className:"w-5 h-5 text-[#38bdac]"}),"多群轮换(高级配置)"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置多个群链接,系统自动轮换分配,避免单群满员"})]}),r.jsxs(Te,{className:"space-y-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsxs(Z,{className:"text-gray-300 flex items-center gap-2",children:[r.jsx(Jg,{className:"w-4 h-4"}),"多个群链接(每行一个)"]}),r.jsx(rc,{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)}),r.jsx("p",{className:"text-xs text-gray-500",children:"每行填写一个群链接,系统将按顺序或随机分配"})]}),r.jsxs("div",{className:"flex items-center justify-between p-3 bg-[#0a1628] rounded-lg border border-gray-700/50",children:[r.jsx("span",{className:"text-sm text-gray-400",children:"已配置群数量"}),r.jsxs("span",{className:"font-bold text-[#38bdac]",children:[t.split(` +`).filter(Boolean).length," 个"]})]}),r.jsxs(X,{onClick:f,className:"w-full bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(Rh,{className:"w-4 h-4 mr-2"}),"保存多群配置"]})]})]})]}),r.jsxs("div",{className:"mt-6 bg-[#0f2137] rounded-xl p-4 border border-gray-700/50",children:[r.jsx("h4",{className:"text-white font-medium mb-3",children:"常见问题"}),r.jsxs("div",{className:"space-y-3 text-sm",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-[#38bdac]",children:"Q: 为什么推荐使用草料活码?"}),r.jsx("p",{className:"text-gray-400",children:"A: 草料活码是永久链接,群满后可直接在后台更换新群码,无需修改网站配置。微信原生群码7天失效。"})]}),r.jsxs("div",{children:[r.jsx("p",{className:"text-[#38bdac]",children:"Q: 支付后没有跳转怎么办?"}),r.jsx("p",{className:"text-gray-400",children:"A: 1) 检查链接是否正确填写 2) 部分浏览器可能拦截弹窗,用户需手动允许 3) 建议使用https开头的链接"})]})]})]})]})}const Ow={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}},TV=["⭐","👥","❤️","🎮","💼","🚀","💡","🎯","🔥","✨"];function MV(){const[t,e]=b.useState(Ow),[n,s]=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}),g=async()=>{s(!0);try{const E=await De("/api/db/config/full?key=match_config"),M=(E==null?void 0:E.data)??(E==null?void 0:E.config);M&&e({...Ow,...M})}catch(E){console.error("加载匹配配置失败:",E)}finally{s(!1)}};b.useEffect(()=>{g()},[]);const y=async()=>{i(!0);try{const E=await Nt("/api/db/config",{key:"match_config",value:t,description:"匹配功能配置"});E&&E.success!==!1?te.success("配置保存成功!"):te.error("保存失败: "+(E&&typeof E=="object"&&"error"in E?E.error:"未知错误"))}catch(E){console.error("保存配置失败:",E),te.error("保存失败")}finally{i(!1)}},N=E=>{h(E),m({id:E.id,label:E.label,matchLabel:E.matchLabel,icon:E.icon,matchFromDB:E.matchFromDB,showJoinAfterMatch:E.showJoinAfterMatch,price:E.price,enabled:E.enabled}),c(!0)},j=()=>{h(null),m({id:"",label:"",matchLabel:"",icon:"⭐",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}),c(!0)},v=()=>{if(!f.id||!f.label){te.error("请填写类型ID和名称");return}const E=[...t.matchTypes];if(u){const M=E.findIndex(P=>P.id===u.id);M!==-1&&(E[M]={...f})}else{if(E.some(M=>M.id===f.id)){te.error("类型ID已存在");return}E.push({...f})}e({...t,matchTypes:E}),c(!1)},k=E=>{confirm("确定要删除这个匹配类型吗?")&&e({...t,matchTypes:t.matchTypes.filter(M=>M.id!==E)})},C=E=>{e({...t,matchTypes:t.matchTypes.map(M=>M.id===E?{...M,enabled:!M.enabled}:M)})};return r.jsxs("div",{className:"p-8 w-full space-y-6",children:[r.jsxs("div",{className:"flex justify-between items-center",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(Mo,{className:"w-6 h-6 text-[#38bdac]"}),"匹配功能配置"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"管理找伙伴功能的匹配类型和价格"})]}),r.jsxs("div",{className:"flex gap-3",children:[r.jsxs(X,{variant:"outline",onClick:g,disabled:n,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${n?"animate-spin":""}`}),"刷新"]}),r.jsxs(X,{onClick:y,disabled:a,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),a?"保存中...":"保存配置"]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Fa,{className:"w-5 h-5 text-yellow-400"}),"基础设置"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置免费匹配次数和付费规则"})]}),r.jsxs(Te,{className:"space-y-6",children:[r.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-6",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"每日免费匹配次数"}),r.jsx(re,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:t.freeMatchLimit,onChange:E=>e({...t,freeMatchLimit:parseInt(E.target.value,10)||0})}),r.jsx("p",{className:"text-xs text-gray-500",children:"用户每天可免费匹配的次数"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"付费匹配价格(元)"}),r.jsx(re,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:t.matchPrice,onChange:E=>e({...t,matchPrice:parseFloat(E.target.value)||1})}),r.jsx("p",{className:"text-xs text-gray-500",children:"免费次数用完后的单次匹配价格"})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"每日最大匹配次数"}),r.jsx(re,{type:"number",min:1,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:t.settings.maxMatchesPerDay,onChange:E=>e({...t,settings:{...t.settings,maxMatchesPerDay:parseInt(E.target.value,10)||10}})}),r.jsx("p",{className:"text-xs text-gray-500",children:"包含免费和付费的总次数"})]})]}),r.jsxs("div",{className:"flex gap-8 pt-4 border-t border-gray-700/50",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(jt,{checked:t.settings.enableFreeMatches,onCheckedChange:E=>e({...t,settings:{...t.settings,enableFreeMatches:E}})}),r.jsx(Z,{className:"text-gray-300",children:"启用免费匹配"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(jt,{checked:t.settings.enablePaidMatches,onCheckedChange:E=>e({...t,settings:{...t.settings,enablePaidMatches:E}})}),r.jsx(Z,{className:"text-gray-300",children:"启用付费匹配"})]})]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between",children:[r.jsxs("div",{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"}),"匹配类型管理"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置不同的匹配类型及其价格"})]}),r.jsxs(X,{onClick:j,size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(fn,{className:"w-4 h-4 mr-1"}),"添加类型"]})]}),r.jsx(Te,{children:r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"图标"}),r.jsx(we,{className:"text-gray-400",children:"类型ID"}),r.jsx(we,{className:"text-gray-400",children:"显示名称"}),r.jsx(we,{className:"text-gray-400",children:"匹配标签"}),r.jsx(we,{className:"text-gray-400",children:"价格"}),r.jsx(we,{className:"text-gray-400",children:"数据库匹配"}),r.jsx(we,{className:"text-gray-400",children:"状态"}),r.jsx(we,{className:"text-right text-gray-400",children:"操作"})]})}),r.jsx(as,{children:t.matchTypes.map(E=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(ve,{children:r.jsx("span",{className:"text-2xl",children:E.icon})}),r.jsx(ve,{className:"font-mono text-gray-300",children:E.id}),r.jsx(ve,{className:"text-white font-medium",children:E.label}),r.jsx(ve,{className:"text-gray-300",children:E.matchLabel}),r.jsx(ve,{children:r.jsxs(Ke,{className:"bg-yellow-500/20 text-yellow-400 hover:bg-yellow-500/20 border-0",children:["¥",E.price]})}),r.jsx(ve,{children:E.matchFromDB?r.jsx(Ke,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"是"}):r.jsx(Ke,{variant:"outline",className:"text-gray-500 border-gray-600",children:"否"})}),r.jsx(ve,{children:r.jsx(jt,{checked:E.enabled,onCheckedChange:()=>C(E.id)})}),r.jsx(ve,{className:"text-right",children:r.jsxs("div",{className:"flex items-center justify-end gap-1",children:[r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>N(E),className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",children:r.jsx(Ut,{className:"w-4 h-4"})}),r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>k(E.id),className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",children:r.jsx(Zn,{className:"w-4 h-4"})})]})})]},E.id))})]})})]}),r.jsx(It,{open:o,onOpenChange:c,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",showCloseButton:!0,children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[u?r.jsx(Ut,{className:"w-5 h-5 text-[#38bdac]"}):r.jsx(fn,{className:"w-5 h-5 text-[#38bdac]"}),u?"编辑匹配类型":"添加匹配类型"]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"类型ID(英文)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: partner",value:f.id,onChange:E=>m({...f,id:E.target.value}),disabled:!!u})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"图标"}),r.jsx("div",{className:"flex gap-1 flex-wrap",children:TV.map(E=>r.jsx("button",{type:"button",className:`w-8 h-8 text-lg rounded ${f.icon===E?"bg-[#38bdac]/30 ring-1 ring-[#38bdac]":"bg-[#0a1628]"}`,onClick:()=>m({...f,icon:E}),children:E},E))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"显示名称"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 创业合伙",value:f.label,onChange:E=>m({...f,label:E.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"匹配标签"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 创业伙伴",value:f.matchLabel,onChange:E=>m({...f,matchLabel:E.target.value})})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"单次匹配价格(元)"}),r.jsx(re,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:f.price,onChange:E=>m({...f,price:parseFloat(E.target.value)||1})})]}),r.jsxs("div",{className:"flex gap-6 pt-2",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(jt,{checked:f.matchFromDB,onCheckedChange:E=>m({...f,matchFromDB:E})}),r.jsx(Z,{className:"text-gray-300 text-sm",children:"从数据库匹配"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(jt,{checked:f.showJoinAfterMatch,onCheckedChange:E=>m({...f,showJoinAfterMatch:E})}),r.jsx(Z,{className:"text-gray-300 text-sm",children:"匹配后显示加入"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(jt,{checked:f.enabled,onCheckedChange:E=>m({...f,enabled:E})}),r.jsx(Z,{className:"text-gray-300 text-sm",children:"启用"})]})]})]}),r.jsxs(sn,{children:[r.jsx(X,{variant:"outline",onClick:()=>c(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsxs(X,{onClick:v,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),"保存"]})]})]})})]})}const Dw={partner:"找伙伴",investor:"资源对接",mentor:"导师顾问",team:"团队招募"};function AV(){const[t,e]=b.useState([]),[n,s]=b.useState(0),[a,i]=b.useState(1),[o,c]=b.useState(10),[u,h]=b.useState(""),[f,m]=b.useState(!0),[g,y]=b.useState(null);async function N(){m(!0),y(null);try{const v=new URLSearchParams({page:String(a),pageSize:String(o)});u&&v.set("matchType",u);const k=await De(`/api/db/match-records?${v}`);k!=null&&k.success?(e(k.records||[]),s(k.total??0)):y("加载匹配记录失败")}catch(v){console.error("加载匹配记录失败",v),y("加载失败,请检查网络后重试")}finally{m(!1)}}b.useEffect(()=>{N()},[a,u]);const j=Math.ceil(n/o)||1;return r.jsxs("div",{className:"p-8 w-full",children:[g&&r.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:[r.jsx("span",{children:g}),r.jsx("button",{type:"button",onClick:()=>y(null),className:"hover:text-red-300",children:"×"})]}),r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsx("h2",{className:"text-2xl font-bold text-white",children:"匹配记录"}),r.jsxs("p",{className:"text-gray-400 mt-1",children:["找伙伴匹配统计,共 ",n," 条记录"]})]}),r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsxs("select",{value:u,onChange:v=>{h(v.target.value),i(1)},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:[r.jsx("option",{value:"",children:"全部类型"}),Object.entries(Dw).map(([v,k])=>r.jsx("option",{value:v,children:k},v))]}),r.jsxs("button",{type:"button",onClick:N,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:[r.jsx(Fe,{className:`w-4 h-4 ${f?"animate-spin":""}`}),"刷新"]})]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Te,{className:"p-0",children:f?r.jsxs("div",{className:"flex justify-center py-12",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"发起人"}),r.jsx(we,{className:"text-gray-400",children:"匹配到"}),r.jsx(we,{className:"text-gray-400",children:"类型"}),r.jsx(we,{className:"text-gray-400",children:"联系方式"}),r.jsx(we,{className:"text-gray-400",children:"匹配时间"})]})}),r.jsxs(as,{children:[t.map(v=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(ve,{children:r.jsxs("div",{className:"flex items-center gap-3",children:[r.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:[v.userAvatar?r.jsx("img",{src:v.userAvatar,alt:"",className:"w-full h-full object-cover",onError:k=>{k.currentTarget.style.display="none";const C=k.currentTarget.nextElementSibling;C&&C.classList.remove("hidden")}}):null,r.jsx("span",{className:v.userAvatar?"hidden":"",children:(v.userNickname||v.userId||"?").charAt(0)})]}),r.jsxs("div",{children:[r.jsx("div",{className:"text-white",children:v.userNickname||v.userId}),r.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:[v.userId.slice(0,16),"..."]})]})]})}),r.jsx(ve,{children:r.jsxs("div",{className:"flex items-center gap-3",children:[r.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:[v.matchedUserAvatar?r.jsx("img",{src:v.matchedUserAvatar,alt:"",className:"w-full h-full object-cover",onError:k=>{k.currentTarget.style.display="none";const C=k.currentTarget.nextElementSibling;C&&C.classList.remove("hidden")}}):null,r.jsx("span",{className:v.matchedUserAvatar?"hidden":"",children:(v.matchedNickname||v.matchedUserId||"?").charAt(0)})]}),r.jsxs("div",{children:[r.jsx("div",{className:"text-white",children:v.matchedNickname||v.matchedUserId}),r.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:[v.matchedUserId.slice(0,16),"..."]})]})]})}),r.jsx(ve,{children:r.jsx(Ke,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0",children:Dw[v.matchType]||v.matchType})}),r.jsxs(ve,{className:"text-gray-400 text-sm",children:[v.phone&&r.jsxs("div",{children:["📱 ",v.phone]}),v.wechatId&&r.jsxs("div",{children:["💬 ",v.wechatId]}),!v.phone&&!v.wechatId&&"-"]}),r.jsx(ve,{className:"text-gray-400",children:v.createdAt?new Date(v.createdAt).toLocaleString():"-"})]},v.id)),t.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:5,className:"text-center py-12 text-gray-500",children:"暂无匹配记录"})})]})]}),r.jsx(Fs,{page:a,totalPages:j,total:n,pageSize:o,onPageChange:i,onPageSizeChange:v=>{c(v),i(1)}})]})})})]})}function IV(){const[t,e]=b.useState([]),[n,s]=b.useState(!0);async function a(){s(!0);try{const i=await De("/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),te.error("加载 VIP 成员失败")}finally{s(!1)}}return b.useEffect(()=>{a()},[]),r.jsxs("div",{className:"p-8 w-full",children:[r.jsx("div",{className:"flex justify-between items-center mb-8",children:r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(Fl,{className:"w-5 h-5 text-amber-400"}),"用户管理 / 超级个体列表"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"这里展示所有有效超级个体用户,仅用于查看其基本信息与排序值。"})]})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-0",children:n?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400 w-20",children:"序号"}),r.jsx(we,{className:"text-gray-400",children:"成员"}),r.jsx(we,{className:"text-gray-400 w-40",children:"超级个体"}),r.jsx(we,{className:"text-gray-400 w-28",children:"排序值"})]})}),r.jsxs(as,{children:[t.map((i,o)=>{var c;return r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(ve,{className:"text-gray-300",children:o+1}),r.jsx(ve,{children:r.jsxs("div",{className:"flex items-center gap-3",children:[i.avatar?r.jsx("img",{src:i.avatar,className:"w-8 h-8 rounded-full object-cover border border-amber-400/60"}):r.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])||"创"}),r.jsx("div",{className:"min-w-0",children:r.jsx("div",{className:"text-white text-sm truncate",children:i.name})})]})}),r.jsx(ve,{className:"text-gray-300",children:i.vipRole||r.jsx("span",{className:"text-gray-500",children:"(未设置超级个体)"})}),r.jsx(ve,{className:"text-gray-300",children:i.vipSort??o+1})]},i.id)}),t.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:5,className:"text-center py-12 text-gray-500",children:"当前没有有效的超级个体用户。"})})]})]})})})]})}function Q4(t){const[e,n]=b.useState([]),[s,a]=b.useState(!0),[i,o]=b.useState(!1),[c,u]=b.useState(null),[h,f]=b.useState({name:"",avatar:"",intro:"",tags:"",priceSingle:"",priceHalfYear:"",priceYear:"",quote:"",whyFind:"",offering:"",judgmentStyle:"",sort:0,enabled:!0}),[m,g]=b.useState(!1),[y,N]=b.useState(!1),j=b.useRef(null),v=async R=>{var se;const O=(se=R.target.files)==null?void 0:se[0];if(O){N(!0);try{const ie=new FormData;ie.append("file",O),ie.append("folder","mentors");const z=Df(),ce={};z&&(ce.Authorization=`Bearer ${z}`);const _=await(await fetch(Lo("/api/upload"),{method:"POST",body:ie,credentials:"include",headers:ce})).json();_!=null&&_.success&&(_!=null&&_.url)?f(G=>({...G,avatar:_.url})):te.error("上传失败: "+((_==null?void 0:_.error)||"未知错误"))}catch(ie){console.error(ie),te.error("上传失败")}finally{N(!1),j.current&&(j.current.value="")}}};async function k(){a(!0);try{const R=await De("/api/db/mentors");R!=null&&R.success&&R.data&&n(R.data)}catch(R){console.error("Load mentors error:",R)}finally{a(!1)}}b.useEffect(()=>{k()},[]);const C=()=>{f({name:"",avatar:"",intro:"",tags:"",priceSingle:"",priceHalfYear:"",priceYear:"",quote:"",whyFind:"",offering:"",judgmentStyle:"",sort:e.length>0?Math.max(...e.map(R=>R.sort))+1:0,enabled:!0})},E=()=>{u(null),C(),o(!0)},M=R=>{u(R),f({name:R.name,avatar:R.avatar||"",intro:R.intro||"",tags:R.tags||"",priceSingle:R.priceSingle!=null?String(R.priceSingle):"",priceHalfYear:R.priceHalfYear!=null?String(R.priceHalfYear):"",priceYear:R.priceYear!=null?String(R.priceYear):"",quote:R.quote||"",whyFind:R.whyFind||"",offering:R.offering||"",judgmentStyle:R.judgmentStyle||"",sort:R.sort,enabled:R.enabled??!0}),o(!0)},P=async()=>{if(!h.name.trim()){te.error("导师姓名不能为空");return}g(!0);try{const R=se=>se===""?void 0:parseFloat(se),O={name:h.name.trim(),avatar:h.avatar.trim()||void 0,intro:h.intro.trim()||void 0,tags:h.tags.trim()||void 0,priceSingle:R(h.priceSingle),priceHalfYear:R(h.priceHalfYear),priceYear:R(h.priceYear),quote:h.quote.trim()||void 0,whyFind:h.whyFind.trim()||void 0,offering:h.offering.trim()||void 0,judgmentStyle:h.judgmentStyle.trim()||void 0,sort:h.sort,enabled:h.enabled};if(c){const se=await Ot("/api/db/mentors",{id:c.id,...O});se!=null&&se.success?(o(!1),k()):te.error("更新失败: "+(se==null?void 0:se.error))}else{const se=await Nt("/api/db/mentors",O);se!=null&&se.success?(o(!1),k()):te.error("新增失败: "+(se==null?void 0:se.error))}}catch(R){console.error("Save error:",R),te.error("保存失败")}finally{g(!1)}},H=async R=>{if(confirm("确定删除该导师?"))try{const O=await ea(`/api/db/mentors?id=${R}`);O!=null&&O.success?k():te.error("删除失败: "+(O==null?void 0:O.error))}catch(O){console.error("Delete error:",O),te.error("删除失败")}},L=R=>R!=null?`¥${R}`:"-";return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"}),"导师管理"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"stitch_soul 导师列表,支持每个导师独立配置单次/半年/年度价格"})]}),r.jsxs(X,{onClick:E,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(fn,{className:"w-4 h-4 mr-2"}),"新增导师"]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-0",children:s?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"ID"}),r.jsx(we,{className:"text-gray-400",children:"姓名"}),r.jsx(we,{className:"text-gray-400",children:"简介"}),r.jsx(we,{className:"text-gray-400",children:"单次"}),r.jsx(we,{className:"text-gray-400",children:"半年"}),r.jsx(we,{className:"text-gray-400",children:"年度"}),r.jsx(we,{className:"text-gray-400",children:"排序"}),r.jsx(we,{className:"text-right text-gray-400",children:"操作"})]})}),r.jsxs(as,{children:[e.map(R=>r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(ve,{className:"text-gray-300",children:R.id}),r.jsx(ve,{className:"text-white",children:R.name}),r.jsx(ve,{className:"text-gray-400 max-w-[200px] truncate",children:R.intro||"-"}),r.jsx(ve,{className:"text-gray-400",children:L(R.priceSingle)}),r.jsx(ve,{className:"text-gray-400",children:L(R.priceHalfYear)}),r.jsx(ve,{className:"text-gray-400",children:L(R.priceYear)}),r.jsx(ve,{className:"text-gray-400",children:R.sort}),r.jsxs(ve,{className:"text-right",children:[r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>M(R),className:"text-gray-400 hover:text-[#38bdac]",children:r.jsx(Ut,{className:"w-4 h-4"})}),r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>H(R.id),className:"text-gray-400 hover:text-red-400",children:r.jsx(Zn,{className:"w-4 h-4"})})]})]},R.id)),e.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:8,className:"text-center py-12 text-gray-500",children:"暂无导师,点击「新增导师」添加"})})]})]})})}),r.jsx(It,{open:i,onOpenChange:o,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg max-h-[90vh] overflow-y-auto",children:[r.jsx(Rt,{children:r.jsx(Pt,{className:"text-white",children:c?"编辑导师":"新增导师"})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"姓名 *"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:卡若",value:h.name,onChange:R=>f(O=>({...O,name:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"排序"}),r.jsx(re,{type:"number",className:"bg-[#0a1628] border-gray-700 text-white",value:h.sort,onChange:R=>f(O=>({...O,sort:parseInt(R.target.value,10)||0}))})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"头像"}),r.jsxs("div",{className:"flex gap-3 items-center",children:[r.jsx(re,{className:"flex-1 bg-[#0a1628] border-gray-700 text-white",value:h.avatar,onChange:R=>f(O=>({...O,avatar:R.target.value})),placeholder:"点击上传或粘贴图片地址"}),r.jsx("input",{ref:j,type:"file",accept:"image/*",className:"hidden",onChange:v}),r.jsxs(X,{type:"button",variant:"outline",size:"sm",className:"border-gray-600 text-gray-400 shrink-0",disabled:y,onClick:()=>{var R;return(R=j.current)==null?void 0:R.click()},children:[r.jsx(Rh,{className:"w-4 h-4 mr-2"}),y?"上传中...":"上传"]})]}),h.avatar&&r.jsx("div",{className:"mt-2",children:r.jsx("img",{src:h.avatar.startsWith("http")?h.avatar:Lo(h.avatar),alt:"头像预览",className:"w-20 h-20 rounded-full object-cover border border-gray-600"})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"简介"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:结构判断型咨询 · Decision > Execution",value:h.intro,onChange:R=>f(O=>({...O,intro:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"技能标签(逗号分隔)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:项目结构判断、风险止损、人×项目匹配",value:h.tags,onChange:R=>f(O=>({...O,tags:R.target.value}))})]}),r.jsxs("div",{className:"border-t border-gray-700 pt-4",children:[r.jsx(Z,{className:"text-gray-300 block mb-2",children:"价格配置(每个导师独立)"}),r.jsxs("div",{className:"grid grid-cols-3 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"单次咨询 ¥"}),r.jsx(re,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"980",value:h.priceSingle,onChange:R=>f(O=>({...O,priceSingle:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"半年咨询 ¥"}),r.jsx(re,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"19800",value:h.priceHalfYear,onChange:R=>f(O=>({...O,priceHalfYear:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"年度咨询 ¥"}),r.jsx(re,{type:"number",step:"0.01",className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"29800",value:h.priceYear,onChange:R=>f(O=>({...O,priceYear:R.target.value}))})]})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"引言"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:大多数人失败,不是因为不努力...",value:h.quote,onChange:R=>f(O=>({...O,quote:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"为什么找(文本)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"",value:h.whyFind,onChange:R=>f(O=>({...O,whyFind:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"提供什么(文本)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"",value:h.offering,onChange:R=>f(O=>({...O,offering:R.target.value}))})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"判断风格(逗号分隔)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如:冷静、克制、偏风险视角",value:h.judgmentStyle,onChange:R=>f(O=>({...O,judgmentStyle:R.target.value}))})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("input",{type:"checkbox",id:"enabled",checked:h.enabled,onChange:R=>f(O=>({...O,enabled:R.target.checked})),className:"rounded border-gray-600 bg-[#0a1628]"}),r.jsx(Z,{htmlFor:"enabled",className:"text-gray-300 cursor-pointer",children:"上架(小程序可见)"})]})]}),r.jsxs(sn,{children:[r.jsxs(X,{variant:"outline",onClick:()=>o(!1),className:"border-gray-600 text-gray-300",children:[r.jsx(gs,{className:"w-4 h-4 mr-2"}),"取消"]}),r.jsxs(X,{onClick:P,disabled:m,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"}),m?"保存中...":"保存"]})]})]})})]})}function RV(){const[t,e]=b.useState([]),[n,s]=b.useState(!0),[a,i]=b.useState("");async function o(){s(!0);try{const h=a?`/api/db/mentor-consultations?status=${a}`:"/api/db/mentor-consultations",f=await De(h);f!=null&&f.success&&f.data&&e(f.data)}catch(h){console.error("Load consultations error:",h)}finally{s(!1)}}b.useEffect(()=>{o()},[a]);const c={created:"已创建",pending_pay:"待支付",paid:"已支付",completed:"已完成",cancelled:"已取消"},u={single:"单次",half_year:"半年",year:"年度"};return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex justify-between items-center mb-8",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(Ah,{className:"w-5 h-5 text-[#38bdac]"}),"导师预约列表"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"stitch_soul 导师咨询预约记录"})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.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:[r.jsx("option",{value:"",children:"全部状态"}),Object.entries(c).map(([h,f])=>r.jsx("option",{value:h,children:f},h))]}),r.jsxs(X,{onClick:o,disabled:n,variant:"outline",className:"border-gray-600 text-gray-300",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${n?"animate-spin":""}`}),"刷新"]})]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-0",children:n?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"ID"}),r.jsx(we,{className:"text-gray-400",children:"用户ID"}),r.jsx(we,{className:"text-gray-400",children:"导师ID"}),r.jsx(we,{className:"text-gray-400",children:"类型"}),r.jsx(we,{className:"text-gray-400",children:"金额"}),r.jsx(we,{className:"text-gray-400",children:"状态"}),r.jsx(we,{className:"text-gray-400",children:"创建时间"})]})}),r.jsxs(as,{children:[t.map(h=>r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(ve,{className:"text-gray-300",children:h.id}),r.jsx(ve,{className:"text-gray-400",children:h.userId}),r.jsx(ve,{className:"text-gray-400",children:h.mentorId}),r.jsx(ve,{className:"text-gray-400",children:u[h.consultationType]||h.consultationType}),r.jsxs(ve,{className:"text-white",children:["¥",h.amount]}),r.jsx(ve,{className:"text-gray-400",children:c[h.status]||h.status}),r.jsx(ve,{className:"text-gray-500 text-sm",children:h.createdAt})]},h.id)),t.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:7,className:"text-center py-12 text-gray-500",children:"暂无预约记录"})})]})]})})})]})}const id={poolSource:["vip"],requirePhone:!0,requireNickname:!0,requireAvatar:!1,requireBusiness:!1},Lw={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:id},PV=["⭐","👥","❤️","🎮","💼","🚀","💡","🎯","🔥","✨"];function OV(){const t=Ki(),[e,n]=b.useState(Lw),[s,a]=b.useState(!0),[i,o]=b.useState(!1),[c,u]=b.useState(!1),[h,f]=b.useState(null),[m,g]=b.useState({id:"",label:"",matchLabel:"",icon:"⭐",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}),[y,N]=b.useState(null),[j,v]=b.useState(!1),k=async()=>{v(!0);try{const O=await De("/api/db/match-pool-counts");O!=null&&O.success&&O.data&&N(O.data)}catch(O){console.error("加载池子人数失败:",O)}finally{v(!1)}},C=async()=>{a(!0);try{const O=await De("/api/db/config/full?key=match_config"),se=(O==null?void 0:O.data)??(O==null?void 0:O.config);if(se){let ie=se.poolSettings??id;ie.poolSource&&!Array.isArray(ie.poolSource)&&(ie={...ie,poolSource:[ie.poolSource]}),n({...Lw,...se,poolSettings:ie})}}catch(O){console.error("加载匹配配置失败:",O)}finally{a(!1)}};b.useEffect(()=>{C(),k()},[]);const E=async()=>{o(!0);try{const O=await Nt("/api/db/config",{key:"match_config",value:e,description:"匹配功能配置"});te.error((O==null?void 0:O.success)!==!1?"配置保存成功!":"保存失败: "+((O==null?void 0:O.error)||"未知错误"))}catch(O){console.error(O),te.error("保存失败")}finally{o(!1)}},M=O=>{f(O),g({...O}),u(!0)},P=()=>{f(null),g({id:"",label:"",matchLabel:"",icon:"⭐",matchFromDB:!1,showJoinAfterMatch:!0,price:1,enabled:!0}),u(!0)},H=()=>{if(!m.id||!m.label){te.error("请填写类型ID和名称");return}const O=[...e.matchTypes];if(h){const se=O.findIndex(ie=>ie.id===h.id);se!==-1&&(O[se]={...m})}else{if(O.some(se=>se.id===m.id)){te.error("类型ID已存在");return}O.push({...m})}n({...e,matchTypes:O}),u(!1)},L=O=>{confirm("确定要删除这个匹配类型吗?")&&n({...e,matchTypes:e.matchTypes.filter(se=>se.id!==O)})},R=O=>{n({...e,matchTypes:e.matchTypes.map(se=>se.id===O?{...se,enabled:!se.enabled}:se)})};return r.jsxs("div",{className:"space-y-6",children:[r.jsxs("div",{className:"flex justify-end gap-3",children:[r.jsxs(X,{variant:"outline",onClick:C,disabled:s,className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${s?"animate-spin":""}`})," 刷新"]}),r.jsxs(X,{onClick:E,disabled:i,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"})," ",i?"保存中...":"保存配置"]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(lj,{className:"w-5 h-5 text-blue-400"})," 匹配池选择"]}),r.jsx(Ft,{className:"text-gray-400",children:"选择匹配的用户池和完善程度要求,只有满足条件的用户才可被匹配到"})]}),r.jsxs(Te,{className:"space-y-6",children:[r.jsxs("div",{className:"space-y-3",children:[r.jsx(Z,{className:"text-gray-300",children:"匹配来源池"}),r.jsx("p",{className:"text-gray-500 text-xs",children:"可同时勾选多个池子(取并集匹配)"}),r.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(O=>{const se=e.poolSettings??id,z=(Array.isArray(se.poolSource)?se.poolSource:[se.poolSource]).includes(O.value),ce=y==null?void 0:y[O.countKey],me=()=>{const _=Array.isArray(se.poolSource)?[...se.poolSource]:[se.poolSource],G=z?_.filter($=>$!==O.value):[..._,O.value];G.length===0&&G.push(O.value),n({...e,poolSettings:{...se,poolSource:G}})};return r.jsxs("button",{type:"button",onClick:me,className:`p-4 rounded-lg border text-left transition-all ${z?"border-[#38bdac] bg-[#38bdac]/10":"border-gray-700 bg-[#0a1628] hover:border-gray-600"}`,children:[r.jsxs("div",{className:"flex items-center justify-between",children:[r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("div",{className:`w-5 h-5 rounded border-2 flex items-center justify-center text-xs ${z?"border-[#38bdac] bg-[#38bdac] text-white":"border-gray-600"}`,children:z&&"✓"}),r.jsx("span",{className:"text-xl",children:O.icon}),r.jsx("span",{className:`text-sm font-medium ${z?"text-[#38bdac]":"text-gray-300"}`,children:O.label})]}),r.jsxs("span",{className:"text-lg font-bold text-white",children:[j?"...":ce??"-",r.jsx("span",{className:"text-xs text-gray-500 font-normal ml-1",children:"人"})]})]}),r.jsx("p",{className:"text-gray-500 text-xs mt-2",children:O.desc}),r.jsx("span",{role:"link",tabIndex:0,onClick:_=>{_.stopPropagation(),t(`/users?pool=${O.value}`)},onKeyDown:_=>{_.key==="Enter"&&(_.stopPropagation(),t(`/users?pool=${O.value}`))},className:"text-[#38bdac] text-xs mt-2 inline-block hover:underline cursor-pointer",children:"查看用户列表 →"})]},O.value)})})]}),r.jsxs("div",{className:"space-y-3 pt-4 border-t border-gray-700/50",children:[r.jsx(Z,{className:"text-gray-300",children:"用户资料完善要求(被匹配用户必须满足以下条件)"}),r.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(O=>{const ie=(e.poolSettings??id)[O.key];return r.jsxs("div",{className:"flex items-center gap-3 bg-[#0a1628] rounded-lg p-3",children:[r.jsx(jt,{checked:ie,onCheckedChange:z=>n({...e,poolSettings:{...e.poolSettings??id,[O.key]:z}})}),r.jsxs("div",{className:"flex items-center gap-1.5",children:[r.jsx("span",{children:O.icon}),r.jsx(Z,{className:"text-gray-300 text-sm",children:O.label})]})]},O.key)})})]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(Fa,{className:"w-5 h-5 text-yellow-400"})," 基础设置"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置免费匹配次数和付费规则"})]}),r.jsxs(Te,{className:"space-y-6",children:[r.jsxs("div",{className:"grid grid-cols-1 md:grid-cols-3 gap-6",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"每日免费匹配次数"}),r.jsx(re,{type:"number",min:0,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.freeMatchLimit,onChange:O=>n({...e,freeMatchLimit:parseInt(O.target.value,10)||0})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"付费匹配价格(元)"}),r.jsx(re,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:e.matchPrice,onChange:O=>n({...e,matchPrice:parseFloat(O.target.value)||1})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"每日最大匹配次数"}),r.jsx(re,{type:"number",min:1,max:100,className:"bg-[#0a1628] border-gray-700 text-white",value:e.settings.maxMatchesPerDay,onChange:O=>n({...e,settings:{...e.settings,maxMatchesPerDay:parseInt(O.target.value,10)||10}})})]})]}),r.jsxs("div",{className:"flex gap-8 pt-4 border-t border-gray-700/50",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(jt,{checked:e.settings.enableFreeMatches,onCheckedChange:O=>n({...e,settings:{...e.settings,enableFreeMatches:O}})}),r.jsx(Z,{className:"text-gray-300",children:"启用免费匹配"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(jt,{checked:e.settings.enablePaidMatches,onCheckedChange:O=>n({...e,settings:{...e.settings,enablePaidMatches:O}})}),r.jsx(Z,{className:"text-gray-300",children:"启用付费匹配"})]})]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:[r.jsxs(Je,{className:"flex flex-row items-center justify-between",children:[r.jsxs("div",{children:[r.jsxs(Ye,{className:"text-white flex items-center gap-2",children:[r.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"})," 匹配类型管理"]}),r.jsx(Ft,{className:"text-gray-400",children:"配置不同的匹配类型及其价格"})]}),r.jsxs(X,{onClick:P,size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(fn,{className:"w-4 h-4 mr-1"})," 添加类型"]})]}),r.jsx(Te,{children:r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"图标"}),r.jsx(we,{className:"text-gray-400",children:"类型ID"}),r.jsx(we,{className:"text-gray-400",children:"显示名称"}),r.jsx(we,{className:"text-gray-400",children:"匹配标签"}),r.jsx(we,{className:"text-gray-400",children:"价格"}),r.jsx(we,{className:"text-gray-400",children:"数据库匹配"}),r.jsx(we,{className:"text-gray-400",children:"状态"}),r.jsx(we,{className:"text-right text-gray-400",children:"操作"})]})}),r.jsx(as,{children:e.matchTypes.map(O=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(ve,{children:r.jsx("span",{className:"text-2xl",children:O.icon})}),r.jsx(ve,{className:"font-mono text-gray-300",children:O.id}),r.jsx(ve,{className:"text-white font-medium",children:O.label}),r.jsx(ve,{className:"text-gray-300",children:O.matchLabel}),r.jsx(ve,{children:r.jsxs(Ke,{className:"bg-yellow-500/20 text-yellow-400 hover:bg-yellow-500/20 border-0",children:["¥",O.price]})}),r.jsx(ve,{children:O.matchFromDB?r.jsx(Ke,{className:"bg-green-500/20 text-green-400 hover:bg-green-500/20 border-0",children:"是"}):r.jsx(Ke,{variant:"outline",className:"text-gray-500 border-gray-600",children:"否"})}),r.jsx(ve,{children:r.jsx(jt,{checked:O.enabled,onCheckedChange:()=>R(O.id)})}),r.jsx(ve,{className:"text-right",children:r.jsxs("div",{className:"flex items-center justify-end gap-1",children:[r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>M(O),className:"text-gray-400 hover:text-[#38bdac] hover:bg-[#38bdac]/10",children:r.jsx(Ut,{className:"w-4 h-4"})}),r.jsx(X,{variant:"ghost",size:"sm",onClick:()=>L(O.id),className:"text-red-400 hover:text-red-300 hover:bg-red-500/10",children:r.jsx(Zn,{className:"w-4 h-4"})})]})})]},O.id))})]})})]}),r.jsx(It,{open:c,onOpenChange:u,children:r.jsxs(Ct,{className:"bg-[#0f2137] border-gray-700 text-white max-w-lg",showCloseButton:!0,children:[r.jsx(Rt,{children:r.jsxs(Pt,{className:"text-white flex items-center gap-2",children:[h?r.jsx(Ut,{className:"w-5 h-5 text-[#38bdac]"}):r.jsx(fn,{className:"w-5 h-5 text-[#38bdac]"}),h?"编辑匹配类型":"添加匹配类型"]})}),r.jsxs("div",{className:"space-y-4 py-4",children:[r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"类型ID(英文)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: partner",value:m.id,onChange:O=>g({...m,id:O.target.value}),disabled:!!h})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"图标"}),r.jsx("div",{className:"flex gap-1 flex-wrap",children:PV.map(O=>r.jsx("button",{type:"button",className:`w-8 h-8 text-lg rounded ${m.icon===O?"bg-[#38bdac]/30 ring-1 ring-[#38bdac]":"bg-[#0a1628]"}`,onClick:()=>g({...m,icon:O}),children:O},O))})]})]}),r.jsxs("div",{className:"grid grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"显示名称"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 超级个体",value:m.label,onChange:O=>g({...m,label:O.target.value})})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"匹配标签"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white",placeholder:"如: 超级个体",value:m.matchLabel,onChange:O=>g({...m,matchLabel:O.target.value})})]})]}),r.jsxs("div",{className:"space-y-2",children:[r.jsx(Z,{className:"text-gray-300",children:"单次匹配价格(元)"}),r.jsx(re,{type:"number",min:.01,step:.01,className:"bg-[#0a1628] border-gray-700 text-white",value:m.price,onChange:O=>g({...m,price:parseFloat(O.target.value)||1})})]}),r.jsxs("div",{className:"flex gap-6 pt-2",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(jt,{checked:m.matchFromDB,onCheckedChange:O=>g({...m,matchFromDB:O})}),r.jsx(Z,{className:"text-gray-300 text-sm",children:"从数据库匹配"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(jt,{checked:m.showJoinAfterMatch,onCheckedChange:O=>g({...m,showJoinAfterMatch:O})}),r.jsx(Z,{className:"text-gray-300 text-sm",children:"匹配后显示加入"})]}),r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx(jt,{checked:m.enabled,onCheckedChange:O=>g({...m,enabled:O})}),r.jsx(Z,{className:"text-gray-300 text-sm",children:"启用"})]})]})]}),r.jsxs(sn,{children:[r.jsx(X,{variant:"outline",onClick:()=>u(!1),className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:"取消"}),r.jsxs(X,{onClick:H,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-4 h-4 mr-2"})," 保存"]})]})]})})]})}const _w={partner:"找伙伴",investor:"资源对接",mentor:"导师顾问",team:"团队招募"};function DV(){const[t,e]=b.useState([]),[n,s]=b.useState(0),[a,i]=b.useState(1),[o,c]=b.useState(10),[u,h]=b.useState(""),[f,m]=b.useState(!0),[g,y]=b.useState(null),[N,j]=b.useState(null);async function v(){m(!0),y(null);try{const E=new URLSearchParams({page:String(a),pageSize:String(o)});u&&E.set("matchType",u);const M=await De(`/api/db/match-records?${E}`);M!=null&&M.success?(e(M.records||[]),s(M.total??0)):y("加载匹配记录失败")}catch{y("加载失败,请检查网络后重试")}finally{m(!1)}}b.useEffect(()=>{v()},[a,u]);const k=Math.ceil(n/o)||1,C=({userId:E,nickname:M,avatar:P})=>r.jsxs("div",{className:"flex items-center gap-3 cursor-pointer group",onClick:()=>j(E),children:[r.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:[P?r.jsx("img",{src:P,alt:"",className:"w-full h-full object-cover",onError:H=>{H.currentTarget.style.display="none"}}):null,r.jsx("span",{className:P?"hidden":"",children:(M||E||"?").charAt(0)})]}),r.jsxs("div",{children:[r.jsx("div",{className:"text-white group-hover:text-[#38bdac] transition-colors",children:M||E}),r.jsxs("div",{className:"text-xs text-gray-500 font-mono",children:[E==null?void 0:E.slice(0,16),(E==null?void 0:E.length)>16?"...":""]})]})]});return r.jsxs("div",{children:[g&&r.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:[r.jsx("span",{children:g}),r.jsx("button",{type:"button",onClick:()=>y(null),className:"hover:text-red-300",children:"×"})]}),r.jsxs("div",{className:"flex justify-between items-center mb-4",children:[r.jsxs("p",{className:"text-gray-400",children:["共 ",n," 条匹配记录 · 点击用户名查看详情"]}),r.jsxs("div",{className:"flex items-center gap-4",children:[r.jsxs("select",{value:u,onChange:E=>{h(E.target.value),i(1)},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:[r.jsx("option",{value:"",children:"全部类型"}),Object.entries(_w).map(([E,M])=>r.jsx("option",{value:E,children:M},E))]}),r.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:[r.jsx(Fe,{className:`w-4 h-4 ${f?"animate-spin":""}`})," 刷新"]})]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Te,{className:"p-0",children:f?r.jsxs("div",{className:"flex justify-center py-12",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"发起人"}),r.jsx(we,{className:"text-gray-400",children:"匹配到"}),r.jsx(we,{className:"text-gray-400",children:"类型"}),r.jsx(we,{className:"text-gray-400",children:"联系方式"}),r.jsx(we,{className:"text-gray-400",children:"匹配时间"})]})}),r.jsxs(as,{children:[t.map(E=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(ve,{children:r.jsx(C,{userId:E.userId,nickname:E.userNickname,avatar:E.userAvatar})}),r.jsx(ve,{children:E.matchedUserId?r.jsx(C,{userId:E.matchedUserId,nickname:E.matchedNickname,avatar:E.matchedUserAvatar}):r.jsx("span",{className:"text-gray-500",children:"—"})}),r.jsx(ve,{children:r.jsx(Ke,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0",children:_w[E.matchType]||E.matchType})}),r.jsxs(ve,{className:"text-sm",children:[E.phone&&r.jsxs("div",{className:"text-green-400",children:["📱 ",E.phone]}),E.wechatId&&r.jsxs("div",{className:"text-blue-400",children:["💬 ",E.wechatId]}),!E.phone&&!E.wechatId&&r.jsx("span",{className:"text-gray-600",children:"-"})]}),r.jsx(ve,{className:"text-gray-400",children:E.createdAt?new Date(E.createdAt).toLocaleString():"-"})]},E.id)),t.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:5,className:"text-center py-12 text-gray-500",children:"暂无匹配记录"})})]})]}),r.jsx(Fs,{page:a,totalPages:k,total:n,pageSize:o,onPageChange:i,onPageSizeChange:E=>{c(E),i(1)}})]})})}),r.jsx(y0,{open:!!N,onClose:()=>j(null),userId:N,onUserUpdated:v})]})}function LV(){const[t,e]=b.useState("records");return r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex gap-2",children:[r.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:"匹配记录"}),r.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"&&r.jsx(DV,{}),t==="pool"&&r.jsx(OV,{})]})}const zw={investor:"资源对接",mentor:"导师顾问",team:"团队招募"};function _V(){const[t,e]=b.useState([]),[n,s]=b.useState(0),[a,i]=b.useState(1),[o,c]=b.useState(10),[u,h]=b.useState(!0),[f,m]=b.useState("investor"),[g,y]=b.useState(null);async function N(){h(!0);try{const C=new URLSearchParams({page:String(a),pageSize:String(o),matchType:f}),E=await De(`/api/db/match-records?${C}`);E!=null&&E.success&&(e(E.records||[]),s(E.total??0))}catch(C){console.error(C)}finally{h(!1)}}b.useEffect(()=>{N()},[a,f]);const j=async C=>{if(!C.phone&&!C.wechatId){te.info("该记录无联系方式,无法推送到存客宝");return}y(C.id);try{const E=await Nt("/api/ckb/join",{type:C.matchType||"investor",phone:C.phone||"",wechat:C.wechatId||"",userId:C.userId,name:C.userNickname||""});te.error((E==null?void 0:E.message)||(E!=null&&E.success?"推送成功":"推送失败"))}catch(E){te.error("推送失败: "+(E instanceof Error?E.message:"网络错误"))}finally{y(null)}},v=Math.ceil(n/o)||1,k=C=>!!(C.phone||C.wechatId);return r.jsxs("div",{children:[r.jsxs("div",{className:"flex justify-between items-center mb-4",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400",children:"点击获客:有人填写手机号/微信号的直接显示,可一键推送到存客宝"}),r.jsxs("p",{className:"text-gray-500 text-xs mt-1",children:["共 ",n," 条记录 — 有联系方式的可触发存客宝添加好友"]})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsx("select",{value:f,onChange:C=>{m(C.target.value),i(1)},className:"bg-[#0f2137] border border-gray-700 text-white rounded-lg px-3 py-2 text-sm",children:Object.entries(zw).map(([C,E])=>r.jsx("option",{value:C,children:E},C))}),r.jsxs(X,{onClick:N,disabled:u,variant:"outline",className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${u?"animate-spin":""}`})," 刷新"]})]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Te,{className:"p-0",children:u?r.jsxs("div",{className:"flex justify-center py-12",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"发起人"}),r.jsx(we,{className:"text-gray-400",children:"匹配到"}),r.jsx(we,{className:"text-gray-400",children:"类型"}),r.jsx(we,{className:"text-gray-400",children:"联系方式"}),r.jsx(we,{className:"text-gray-400",children:"时间"}),r.jsx(we,{className:"text-gray-400 text-right",children:"操作"})]})}),r.jsxs(as,{children:[t.map(C=>{var E,M;return r.jsxs(it,{className:`border-gray-700/50 ${k(C)?"hover:bg-[#0a1628]":"opacity-60"}`,children:[r.jsx(ve,{className:"text-white",children:C.userNickname||((E=C.userId)==null?void 0:E.slice(0,12))}),r.jsx(ve,{className:"text-white",children:C.matchedNickname||((M=C.matchedUserId)==null?void 0:M.slice(0,12))}),r.jsx(ve,{children:r.jsx(Ke,{className:"bg-[#38bdac]/20 text-[#38bdac] border-0",children:zw[C.matchType]||C.matchType})}),r.jsxs(ve,{className:"text-sm",children:[C.phone&&r.jsxs("div",{className:"text-green-400",children:["📱 ",C.phone]}),C.wechatId&&r.jsxs("div",{className:"text-blue-400",children:["💬 ",C.wechatId]}),!C.phone&&!C.wechatId&&r.jsx("span",{className:"text-gray-600",children:"无联系方式"})]}),r.jsx(ve,{className:"text-gray-400 text-sm",children:C.createdAt?new Date(C.createdAt).toLocaleString():"-"}),r.jsx(ve,{className:"text-right",children:k(C)?r.jsxs(X,{size:"sm",onClick:()=>j(C),disabled:g===C.id,className:"bg-[#38bdac] hover:bg-[#2da396] text-white text-xs h-7 px-3",children:[r.jsx(M5,{className:"w-3 h-3 mr-1"}),g===C.id?"推送中...":"推送CKB"]}):r.jsx("span",{className:"text-gray-600 text-xs",children:"—"})})]},C.id)}),t.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:6,className:"text-center py-12 text-gray-500",children:"暂无记录"})})]})]}),r.jsx(Fs,{page:a,totalPages:v,total:n,pageSize:o,onPageChange:i,onPageSizeChange:C=>{c(C),i(1)}})]})})})]})}const Fw={created:"已创建",pending_pay:"待支付",paid:"已支付",completed:"已完成",cancelled:"已取消"},zV={single:"单次",half_year:"半年",year:"年度"};function FV(){const[t,e]=b.useState([]),[n,s]=b.useState(!0),[a,i]=b.useState("");async function o(){s(!0);try{const c=a?`/api/db/mentor-consultations?status=${a}`:"/api/db/mentor-consultations",u=await De(c);u!=null&&u.success&&u.data&&e(u.data)}catch(c){console.error(c)}finally{s(!1)}}return b.useEffect(()=>{o()},[a]),r.jsxs("div",{children:[r.jsxs("div",{className:"flex justify-between items-center mb-4",children:[r.jsx("p",{className:"text-gray-400",children:"导师咨询预约记录"}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.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:[r.jsx("option",{value:"",children:"全部状态"}),Object.entries(Fw).map(([c,u])=>r.jsx("option",{value:c,children:u},c))]}),r.jsxs(X,{onClick:o,disabled:n,variant:"outline",className:"border-gray-600 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-4 h-4 mr-2 ${n?"animate-spin":""}`})," 刷新"]})]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50",children:r.jsx(Te,{className:"p-0",children:n?r.jsx("div",{className:"py-12 text-center text-gray-400",children:"加载中..."}):r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"ID"}),r.jsx(we,{className:"text-gray-400",children:"用户ID"}),r.jsx(we,{className:"text-gray-400",children:"导师ID"}),r.jsx(we,{className:"text-gray-400",children:"类型"}),r.jsx(we,{className:"text-gray-400",children:"金额"}),r.jsx(we,{className:"text-gray-400",children:"状态"}),r.jsx(we,{className:"text-gray-400",children:"创建时间"})]})}),r.jsxs(as,{children:[t.map(c=>r.jsxs(it,{className:"border-gray-700/50",children:[r.jsx(ve,{className:"text-gray-300",children:c.id}),r.jsx(ve,{className:"text-gray-400",children:c.userId}),r.jsx(ve,{className:"text-gray-400",children:c.mentorId}),r.jsx(ve,{className:"text-gray-400",children:zV[c.consultationType]||c.consultationType}),r.jsxs(ve,{className:"text-white",children:["¥",c.amount]}),r.jsx(ve,{className:"text-gray-400",children:Fw[c.status]||c.status}),r.jsx(ve,{className:"text-gray-500 text-sm",children:c.createdAt?new Date(c.createdAt).toLocaleString():"-"})]},c.id)),t.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:7,className:"text-center py-12 text-gray-500",children:"暂无预约记录"})})]})]})})})]})}function $V(){const[t,e]=b.useState("booking");return r.jsxs("div",{className:"space-y-4",children:[r.jsxs("div",{className:"flex gap-2",children:[r.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:"预约记录"}),r.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"&&r.jsx(FV,{}),t==="manage"&&r.jsx("div",{className:"-mx-8",children:r.jsx(Q4,{embedded:!0})})]})}function BV(){const[t,e]=b.useState([]),[n,s]=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 g=new URLSearchParams({page:String(a),pageSize:String(o),matchType:"team"}),y=await De(`/api/db/match-records?${g}`);y!=null&&y.success&&(e(y.records||[]),s(y.total??0))}catch(g){console.error(g)}finally{h(!1)}}b.useEffect(()=>{f()},[a]);const m=Math.ceil(n/o)||1;return r.jsxs("div",{children:[r.jsxs("div",{className:"flex justify-between items-center mb-4",children:[r.jsxs("div",{children:[r.jsxs("p",{className:"text-gray-400",children:["团队招募匹配记录,共 ",n," 条"]}),r.jsx("p",{className:"text-gray-500 text-xs mt-1",children:"用户通过「团队招募」提交联系方式到存客宝"})]}),r.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:[r.jsx(Fe,{className:`w-4 h-4 ${u?"animate-spin":""}`})," 刷新"]})]}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl",children:r.jsx(Te,{className:"p-0",children:u?r.jsxs("div",{className:"flex justify-center py-12",children:[r.jsx(Fe,{className:"w-6 h-6 text-[#38bdac] animate-spin"}),r.jsx("span",{className:"ml-2 text-gray-400",children:"加载中..."})]}):r.jsxs(r.Fragment,{children:[r.jsxs(ss,{children:[r.jsx(rs,{children:r.jsxs(it,{className:"bg-[#0a1628] hover:bg-[#0a1628] border-gray-700",children:[r.jsx(we,{className:"text-gray-400",children:"发起人"}),r.jsx(we,{className:"text-gray-400",children:"匹配到"}),r.jsx(we,{className:"text-gray-400",children:"联系方式"}),r.jsx(we,{className:"text-gray-400",children:"时间"})]})}),r.jsxs(as,{children:[t.map(g=>r.jsxs(it,{className:"hover:bg-[#0a1628] border-gray-700/50",children:[r.jsx(ve,{className:"text-white",children:g.userNickname||g.userId}),r.jsx(ve,{className:"text-white",children:g.matchedNickname||g.matchedUserId}),r.jsxs(ve,{className:"text-gray-400 text-sm",children:[g.phone&&r.jsxs("div",{children:["📱 ",g.phone]}),g.wechatId&&r.jsxs("div",{children:["💬 ",g.wechatId]}),!g.phone&&!g.wechatId&&"-"]}),r.jsx(ve,{className:"text-gray-400",children:g.createdAt?new Date(g.createdAt).toLocaleString():"-"})]},g.id)),t.length===0&&r.jsx(it,{children:r.jsx(ve,{colSpan:4,className:"text-center py-12 text-gray-500",children:"暂无团队招募记录"})})]})]}),r.jsx(Fs,{page:a,totalPages:m,total:n,pageSize:o,onPageChange:i,onPageSizeChange:g=>{c(g),i(1)}})]})})})]})}const $w={partner:"找伙伴",investor:"资源对接",mentor:"导师顾问",team:"团队招募"},Bw={partner:"⭐",investor:"👥",mentor:"❤️",team:"🎮"};function VV({onSwitchTab:t,onOpenCKB:e}={}){const n=Ki(),[s,a]=b.useState(null),[i,o]=b.useState(null),[c,u]=b.useState(!0),h=b.useCallback(async()=>{var m,g;u(!0);try{const[y,N]=await Promise.allSettled([De("/api/db/match-records?stats=true"),De("/api/db/ckb-plan-stats")]);if(y.status==="fulfilled"&&((m=y.value)!=null&&m.success)&&y.value.data){let j=y.value.data;if(j.totalMatches>0&&(!j.uniqueUsers||j.uniqueUsers===0))try{const v=await De("/api/db/match-records?page=1&pageSize=200");if(v!=null&&v.success&&v.records){const k=new Set(v.records.map(C=>C.userId).filter(Boolean));j={...j,uniqueUsers:k.size}}}catch{}a(j)}N.status==="fulfilled"&&((g=N.value)!=null&&g.success)&&N.value.data&&o(N.value.data)}catch(y){console.error("加载统计失败:",y)}finally{u(!1)}},[]);b.useEffect(()=>{h()},[h]);const f=m=>c?"—":String(m??0);return r.jsxs("div",{className:"space-y-8",children:[r.jsxs("div",{children:[r.jsxs("h3",{className:"text-lg font-semibold text-white mb-4 flex items-center gap-2",children:[r.jsx(_n,{className:"w-5 h-5 text-[#38bdac]"})," 找伙伴数据"]}),r.jsxs("div",{className:"grid grid-cols-2 lg:grid-cols-3 gap-5",children:[r.jsx(Ee,{className:"bg-gradient-to-br from-[#0f2137] to-[#162d4a] border-gray-700/40 cursor-pointer hover:border-[#38bdac]/60 transition-all",onClick:()=>t==null?void 0:t("partner"),children:r.jsxs(Te,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"总匹配次数"}),r.jsx("p",{className:"text-4xl font-bold text-white",children:f(s==null?void 0:s.totalMatches)}),r.jsxs("p",{className:"text-[#38bdac] text-xs mt-3 flex items-center gap-1",children:[r.jsx(ra,{className:"w-3 h-3"})," 查看匹配记录"]})]})}),r.jsx(Ee,{className:"bg-gradient-to-br from-[#0f2137] to-[#162d4a] border-gray-700/40 cursor-pointer hover:border-yellow-500/60 transition-all",onClick:()=>t==null?void 0:t("partner"),children:r.jsxs(Te,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"今日匹配"}),r.jsx("p",{className:"text-4xl font-bold text-white",children:f(s==null?void 0:s.todayMatches)}),r.jsxs("p",{className:"text-yellow-400/60 text-xs mt-3 flex items-center gap-1",children:[r.jsx(Fa,{className:"w-3 h-3"})," 今日实时"]})]})}),r.jsx(Ee,{className:"bg-gradient-to-br from-[#0f2137] to-[#162d4a] border-gray-700/40 cursor-pointer hover:border-blue-500/60 transition-all",onClick:()=>n("/users"),children:r.jsxs(Te,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"匹配用户数"}),r.jsx("p",{className:"text-4xl font-bold text-white",children:f(s==null?void 0:s.uniqueUsers)}),r.jsxs("p",{className:"text-blue-400/60 text-xs mt-3 flex items-center gap-1",children:[r.jsx(ra,{className:"w-3 h-3"})," 查看用户管理"]})]})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/40",children:r.jsxs(Te,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"人均匹配"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:c?"—":s!=null&&s.uniqueUsers?(s.totalMatches/s.uniqueUsers).toFixed(1):"0"})]})}),r.jsx(Ee,{className:"bg-[#0f2137] border-gray-700/40",children:r.jsxs(Te,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"付费匹配次数"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:f(s==null?void 0:s.paidMatchCount)})]})})]})]}),(s==null?void 0:s.byType)&&s.byType.length>0&&r.jsxs("div",{children:[r.jsx("h3",{className:"text-lg font-semibold text-white mb-4",children:"各类型匹配分布"}),r.jsx("div",{className:"grid grid-cols-2 lg:grid-cols-4 gap-4",children:s.byType.map(m=>{const g=s.totalMatches>0?m.count/s.totalMatches*100:0;return r.jsxs("div",{className:"bg-[#0f2137] border border-gray-700/40 rounded-xl p-5",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-3",children:[r.jsx("span",{className:"text-2xl",children:Bw[m.matchType]||"📊"}),r.jsx("span",{className:"text-gray-300 font-medium",children:$w[m.matchType]||m.matchType})]}),r.jsx("p",{className:"text-3xl font-bold text-white mb-2",children:m.count}),r.jsx("div",{className:"w-full h-2 bg-gray-700/50 rounded-full overflow-hidden",children:r.jsx("div",{className:"h-full bg-[#38bdac] rounded-full transition-all",style:{width:`${Math.min(g,100)}%`}})}),r.jsxs("p",{className:"text-gray-500 text-xs mt-1.5",children:[g.toFixed(1),"%"]})]},m.matchType)})})]}),r.jsxs("div",{children:[r.jsxs("h3",{className:"text-lg font-semibold text-white mb-4 flex items-center gap-2",children:[r.jsx(Rr,{className:"w-5 h-5 text-orange-400"})," AI 获客数据"]}),r.jsxs("div",{className:"grid grid-cols-2 lg:grid-cols-3 gap-5 mb-6",children:[r.jsx(Ee,{className:"bg-[#0f2137] border-orange-500/20 cursor-pointer hover:border-orange-500/50 transition-colors",onClick:()=>e==null?void 0:e("submitted"),children:r.jsxs(Te,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"已提交线索"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:c?"—":(i==null?void 0:i.ckbTotal)??0}),r.jsx("p",{className:"text-orange-400/60 text-xs mt-2",children:"点击查看明细 →"})]})}),r.jsx(Ee,{className:"bg-[#0f2137] border-orange-500/20 cursor-pointer hover:border-orange-500/50 transition-colors",onClick:()=>e==null?void 0:e("contact"),children:r.jsxs(Te,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"有联系方式"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:c?"—":(i==null?void 0:i.withContact)??0}),r.jsx("p",{className:"text-orange-400/60 text-xs mt-2",children:"点击查看明细 →"})]})}),r.jsx(Ee,{className:"bg-[#0f2137] border-orange-500/20 cursor-pointer hover:border-orange-500/50 transition-colors",onClick:()=>e==null?void 0:e("test"),children:r.jsxs(Te,{className:"p-6",children:[r.jsx("p",{className:"text-gray-400 text-sm mb-2",children:"AI 添加进度"}),r.jsx("p",{className:"text-xl font-bold text-orange-400",children:"查看详情 →"}),r.jsx("p",{className:"text-gray-500 text-xs mt-2",children:"添加成功率 · 回复率 · API 文档"})]})})]}),(i==null?void 0:i.byType)&&i.byType.length>0&&r.jsx("div",{className:"grid grid-cols-2 lg:grid-cols-4 gap-3 mb-6",children:i.byType.map(m=>r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-lg p-4 flex items-center gap-3",children:[r.jsx("span",{className:"text-xl",children:Bw[m.matchType]||"📋"}),r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 text-xs",children:$w[m.matchType]||m.matchType}),r.jsx("p",{className:"text-xl font-bold text-white",children:m.total})]})]},m.matchType))})]})]})}const HV=["partner","investor","mentor","team"],zg=[{key:"join_partner",label:"找伙伴场景"},{key:"join_investor",label:"资源对接场景"},{key:"join_mentor",label:"导师顾问场景"},{key:"join_team",label:"团队招募场景"},{key:"match",label:"匹配上报"},{key:"lead",label:"链接卡若"}],Vw=`# 场景获客接口摘要 +- 地址:POST /v1/api/scenarios +- 必填:apiKey、sign、timestamp +- 主标识:phone 或 wechatId 至少一项 +- 可选:name、source、remark、tags、siteTags、portrait +- 签名:排除 sign/apiKey/portrait,键名升序拼接值后双重 MD5 +- 成功:code=200,message=新增成功 或 已存在`;function WV({initialTab:t="overview"}){const[e,n]=b.useState(t),[s,a]=b.useState("13800000000"),[i,o]=b.useState(""),[c,u]=b.useState(""),[h,f]=b.useState(Vw),[m,g]=b.useState(!1),[y,N]=b.useState(!1),[j,v]=b.useState([]),[k,C]=b.useState([]),[E,M]=b.useState({}),[P,H]=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"}]),L=b.useMemo(()=>{const _={};return zg.forEach(G=>{_[G.key]=E[G.key]||{apiUrl:"https://ckbapi.quwanzhi.com/v1/api/scenarios",apiKey:"fyngh-ecy9h-qkdae-epwd5-rz6kd",source:"",tags:"",siteTags:"创业实验APP",notes:""}}),_},[E]),R=_=>{const G=s.trim(),$=i.trim();return _<=3?{type:HV[_],phone:G||void 0,wechat:$||void 0,userId:"admin_test",name:"后台测试"}:_===4?{matchType:"partner",phone:G||void 0,wechat:$||void 0,userId:"admin_test",nickname:"后台测试",matchedUser:{id:"test",nickname:"测试",matchScore:88}}:_===5?{phone:G||void 0,wechatId:$||void 0,userId:"admin_test",name:"后台测试"}:{}};async function O(){N(!0);try{const[_,G,$]=await Promise.all([De("/api/db/config/full?key=ckb_config"),De("/api/db/ckb-leads?mode=submitted&page=1&pageSize=50"),De("/api/db/ckb-leads?mode=contact&page=1&pageSize=50")]),A=_==null?void 0:_.data;A!=null&&A.routes&&M(A.routes),A!=null&&A.docNotes&&u(A.docNotes),A!=null&&A.docContent&&f(A.docContent),G!=null&&G.success&&v(G.records||[]),$!=null&&$.success&&C($.records||[])}finally{N(!1)}}b.useEffect(()=>{n(t)},[t]),b.useEffect(()=>{O()},[]);async function se(){g(!0);try{const _=await Nt("/api/db/config",{key:"ckb_config",value:{routes:L,docNotes:c,docContent:h},description:"存客宝接口配置"});te.error((_==null?void 0:_.success)!==!1?"存客宝配置已保存":`保存失败: ${(_==null?void 0:_.error)||"未知错误"}`)}catch(_){te.error(`保存失败: ${_ instanceof Error?_.message:"网络错误"}`)}finally{g(!1)}}const ie=(_,G)=>{M($=>({...$,[_]:{...L[_],...G}}))},z=async _=>{const G=P[_];if(G.method==="POST"&&!s.trim()&&!i.trim()){te.error("请填写测试手机号");return}const $=[...P];$[_]={...G,status:"testing",message:void 0,responseTime:void 0},H($);const A=performance.now();try{const Y=G.method==="GET"?await De(G.endpoint):await Nt(G.endpoint,R(_)),U=Math.round(performance.now()-A),D=(Y==null?void 0:Y.message)||"",W=(Y==null?void 0:Y.success)===!0||D.includes("已存在")||D.includes("已加入")||D.includes("已提交"),le=[...P];le[_]={...G,status:W?"success":"error",message:D||(W?"正常":"异常"),responseTime:U},H(le),await O()}catch(Y){const U=Math.round(performance.now()-A),D=[...P];D[_]={...G,status:"error",message:Y instanceof Error?Y.message:"失败",responseTime:U},H(D)}},ce=async()=>{if(!s.trim()&&!i.trim()){te.error("请填写测试手机号");return}for(let _=0;_r.jsx("div",{className:"overflow-auto rounded-lg border border-gray-700/30",children:r.jsxs("table",{className:"w-full text-sm",children:[r.jsx("thead",{className:"bg-[#0a1628] text-gray-400",children:r.jsxs("tr",{children:[r.jsx("th",{className:"text-left px-4 py-3",children:"发起人"}),r.jsx("th",{className:"text-left px-4 py-3",children:"类型"}),r.jsx("th",{className:"text-left px-4 py-3",children:"手机号"}),r.jsx("th",{className:"text-left px-4 py-3",children:"微信号"}),r.jsx("th",{className:"text-left px-4 py-3",children:"时间"})]})}),r.jsx("tbody",{children:_.length===0?r.jsx("tr",{children:r.jsx("td",{colSpan:5,className:"text-center py-10 text-gray-500",children:G})}):_.map($=>r.jsxs("tr",{className:"border-t border-gray-700/30",children:[r.jsx("td",{className:"px-4 py-3 text-white",children:$.userNickname||$.userId}),r.jsx("td",{className:"px-4 py-3 text-gray-300",children:$.matchType}),r.jsx("td",{className:"px-4 py-3 text-green-400",children:$.phone||"—"}),r.jsx("td",{className:"px-4 py-3 text-blue-400",children:$.wechatId||"—"}),r.jsx("td",{className:"px-4 py-3 text-gray-400",children:$.createdAt?new Date($.createdAt).toLocaleString():"—"})]},$.id))})]})});return r.jsx(Ee,{className:"bg-[#0f2137] border-orange-500/30 mb-6",children:r.jsxs(Te,{className:"p-5",children:[r.jsxs("div",{className:"flex items-center justify-between mb-4",children:[r.jsxs("div",{className:"flex items-center gap-3",children:[r.jsx("h3",{className:"text-white font-semibold",children:"存客宝工作台"}),r.jsx(Ke,{className:"bg-orange-500/20 text-orange-400 border-0 text-xs",children:"CKB"}),r.jsxs("button",{type:"button",onClick:()=>n("doc"),className:"text-orange-400/60 text-xs hover:text-orange-400 flex items-center gap-1",children:[r.jsx(ra,{className:"w-3 h-3"})," API 文档"]})]}),r.jsxs("div",{className:"flex items-center gap-2",children:[r.jsxs(X,{onClick:()=>O(),variant:"outline",size:"sm",className:"border-gray-700 text-gray-300 hover:bg-gray-700/50 bg-transparent",children:[r.jsx(Fe,{className:`w-3.5 h-3.5 mr-1 ${y?"animate-spin":""}`})," 刷新"]}),r.jsxs(X,{onClick:se,disabled:m,size:"sm",className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:[r.jsx(wn,{className:"w-3.5 h-3.5 mr-1"})," ",m?"保存中...":"保存配置"]})]})]}),r.jsx("div",{className:"flex flex-wrap gap-2 mb-5",children:[["overview","概览"],["submitted","已提交线索"],["contact","有联系方式"],["config","场景配置"],["test","接口测试"],["doc","API 文档"]].map(([_,G])=>r.jsx("button",{type:"button",onClick:()=>n(_),className:`px-4 py-2 rounded-lg text-sm transition-colors ${e===_?"bg-orange-500 text-white":"bg-[#0a1628] text-gray-400 hover:text-white"}`,children:G},_))}),e==="overview"&&r.jsxs("div",{className:"grid grid-cols-2 lg:grid-cols-4 gap-4",children:[r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[r.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"已提交线索"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:j.length})]}),r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[r.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"有联系方式"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:k.length})]}),r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[r.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"场景配置数"}),r.jsx("p",{className:"text-3xl font-bold text-white",children:zg.length})]}),r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-5",children:[r.jsx("p",{className:"text-gray-400 text-xs mb-2",children:"文档备注"}),r.jsx("p",{className:"text-sm text-gray-300 line-clamp-3",children:c||"未填写"})]})]}),e==="submitted"&&me(j,"暂无已提交线索"),e==="contact"&&me(k,"暂无有联系方式线索"),e==="config"&&r.jsx("div",{className:"space-y-4",children:zg.map(_=>r.jsxs("div",{className:"bg-[#0a1628] border border-gray-700/30 rounded-xl p-4",children:[r.jsxs("div",{className:"flex items-center justify-between mb-3",children:[r.jsx("h4",{className:"text-white font-medium",children:_.label}),r.jsx(Ke,{className:"bg-orange-500/20 text-orange-300 border-0 text-xs",children:_.key})]}),r.jsxs("div",{className:"grid grid-cols-1 xl:grid-cols-2 gap-4",children:[r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"API 地址"}),r.jsx(re,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:L[_.key].apiUrl,onChange:G=>ie(_.key,{apiUrl:G.target.value})})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"API Key"}),r.jsx(re,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:L[_.key].apiKey,onChange:G=>ie(_.key,{apiKey:G.target.value})})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"Source"}),r.jsx(re,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:L[_.key].source,onChange:G=>ie(_.key,{source:G.target.value})})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"Tags"}),r.jsx(re,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:L[_.key].tags,onChange:G=>ie(_.key,{tags:G.target.value})})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"SiteTags"}),r.jsx(re,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:L[_.key].siteTags,onChange:G=>ie(_.key,{siteTags:G.target.value})})]}),r.jsxs("div",{className:"space-y-1",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"说明备注"}),r.jsx(re,{className:"bg-[#0f2137] border-gray-700 text-white h-9 text-sm",value:L[_.key].notes,onChange:G=>ie(_.key,{notes:G.target.value})})]})]})]},_.key))}),e==="test"&&r.jsxs(r.Fragment,{children:[r.jsxs("div",{className:"flex gap-3 mb-4",children:[r.jsxs("div",{className:"flex items-center gap-2 flex-1",children:[r.jsx(zi,{className:"w-4 h-4 text-gray-500 shrink-0"}),r.jsxs("div",{className:"flex-1",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"测试手机号"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm mt-0.5",value:s,onChange:_=>a(_.target.value)})]})]}),r.jsxs("div",{className:"flex items-center gap-2 flex-1",children:[r.jsx("span",{className:"text-gray-500 text-sm shrink-0",children:"💬"}),r.jsxs("div",{className:"flex-1",children:[r.jsx(Z,{className:"text-gray-500 text-xs",children:"微信号(可选)"}),r.jsx(re,{className:"bg-[#0a1628] border-gray-700 text-white h-8 text-sm mt-0.5",value:i,onChange:_=>o(_.target.value)})]})]}),r.jsx("div",{className:"flex items-end",children:r.jsxs(X,{onClick:ce,className:"bg-orange-500 hover:bg-orange-600 text-white",children:[r.jsx(Fa,{className:"w-3.5 h-3.5 mr-1"})," 全部测试"]})})]}),r.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-2",children:P.map((_,G)=>r.jsxs("div",{className:"flex items-center justify-between bg-[#0a1628] rounded-lg px-3 py-2 border border-gray-700/30",children:[r.jsxs("div",{className:"flex items-center gap-2 min-w-0",children:[_.status==="idle"&&r.jsx("div",{className:"w-2 h-2 rounded-full bg-gray-600 shrink-0"}),_.status==="testing"&&r.jsx(Fe,{className:"w-3 h-3 text-yellow-400 animate-spin shrink-0"}),_.status==="success"&&r.jsx(Ug,{className:"w-3 h-3 text-green-400 shrink-0"}),_.status==="error"&&r.jsx(ij,{className:"w-3 h-3 text-red-400 shrink-0"}),r.jsx("span",{className:"text-white text-xs truncate",children:_.label})]}),r.jsxs("div",{className:"flex items-center gap-1.5 shrink-0",children:[_.responseTime!==void 0&&r.jsxs("span",{className:"text-gray-600 text-[10px]",children:[_.responseTime,"ms"]}),r.jsx("button",{type:"button",onClick:()=>z(G),disabled:_.status==="testing",className:"text-orange-400/60 hover:text-orange-400 text-[10px] disabled:opacity-50",children:"测试"})]})]},`${_.endpoint}-${G}`))})]}),e==="doc"&&r.jsxs("div",{className:"grid grid-cols-1 xl:grid-cols-2 gap-4",children:[r.jsxs("div",{className:"bg-[#0a1628] rounded-lg border border-gray-700/30 p-4",children:[r.jsxs("div",{className:"flex items-center justify-between mb-3",children:[r.jsx("h4",{className:"text-white text-sm font-medium",children:"场景获客 API 摘要"}),r.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:[r.jsx(ra,{className:"w-3 h-3"})," 打开外链"]})]}),r.jsx("pre",{className:"whitespace-pre-wrap text-xs text-gray-400 leading-6",children:h||Vw})]}),r.jsxs("div",{className:"bg-[#0a1628] rounded-lg border border-gray-700/30 p-4",children:[r.jsx("h4",{className:"text-white text-sm font-medium mb-3",children:"说明备注(可编辑)"}),r.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:_=>u(_.target.value),placeholder:"记录 Token、入口差异、回复率统计规则、对接约定等。"})]})]})]})})}const UV=[{id:"stats",label:"数据统计",icon:Wg},{id:"partner",label:"找伙伴",icon:_n},{id:"resource",label:"资源对接",icon:TM},{id:"mentor",label:"导师预约",icon:SM},{id:"team",label:"团队招募",icon:dd}];function KV(){const[t,e]=b.useState("stats"),[n,s]=b.useState(!1),[a,i]=b.useState("overview");return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"mb-6 flex items-start justify-between gap-4",children:[r.jsxs("div",{children:[r.jsxs("h2",{className:"text-2xl font-bold text-white flex items-center gap-2",children:[r.jsx(_n,{className:"w-6 h-6 text-[#38bdac]"}),"找伙伴"]}),r.jsx("p",{className:"text-gray-400 mt-1",children:"数据统计、匹配池与记录、资源对接、导师预约、团队招募"})]}),r.jsxs(X,{type:"button",variant:"outline",onClick:()=>s(o=>!o),className:"border-orange-500/40 text-orange-300 hover:bg-orange-500/10 bg-transparent",children:[r.jsx(Rr,{className:"w-4 h-4 mr-2"}),"存客宝"]})]}),n&&r.jsx(WV,{initialTab:a}),r.jsx("div",{className:"flex flex-wrap gap-1 mb-6 bg-[#0f2137] rounded-lg p-1 border border-gray-700/50",children:UV.map(o=>{const c=t===o.id;return r.jsxs("button",{type:"button",onClick:()=>e(o.id),className:`flex items-center gap-2 px-5 py-2.5 rounded-md text-sm font-medium transition-all ${c?"bg-[#38bdac] text-white shadow-lg":"text-gray-400 hover:text-white hover:bg-gray-700/50"}`,children:[r.jsx(o.icon,{className:"w-4 h-4"}),o.label]},o.id)})}),t==="stats"&&r.jsx(VV,{onSwitchTab:o=>e(o),onOpenCKB:o=>{i(o||"overview"),s(!0)}}),t==="partner"&&r.jsx(LV,{}),t==="resource"&&r.jsx(_V,{}),t==="mentor"&&r.jsx($V,{}),t==="team"&&r.jsx(BV,{})]})}function qV(){return r.jsxs("div",{className:"p-8 w-full",children:[r.jsxs("div",{className:"flex items-center gap-2 mb-8",children:[r.jsx(Rr,{className:"w-8 h-8 text-[#38bdac]"}),r.jsx("h1",{className:"text-2xl font-bold text-white",children:"API 接口文档"})]}),r.jsx("p",{className:"text-gray-400 mb-6",children:"API 风格:RESTful · 版本 v1.0 · 基础路径 /api · 简单、清晰、易用。"}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"1. 接口总览"})}),r.jsxs(Te,{className:"space-y-4 text-sm",children:[r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 mb-2",children:"接口分类"}),r.jsxs("ul",{className:"space-y-1 text-gray-300 font-mono",children:[r.jsx("li",{children:"/api/book — 书籍内容(章节列表、内容获取、同步)"}),r.jsx("li",{children:"/api/payment — 支付系统(订单创建、回调、状态查询)"}),r.jsx("li",{children:"/api/referral — 分销系统(邀请码、收益、提现)"}),r.jsx("li",{children:"/api/user — 用户系统(登录、注册、信息更新)"}),r.jsx("li",{children:"/api/match — 匹配系统(寻找匹配、匹配历史)"}),r.jsx("li",{children:"/api/admin — 管理后台(内容/订单/用户/分销管理)"}),r.jsx("li",{children:"/api/config — 配置系统"})]})]}),r.jsxs("div",{children:[r.jsx("p",{className:"text-gray-400 mb-2",children:"认证方式"}),r.jsx("p",{className:"text-gray-300",children:"用户:Cookie session_id(可选)"}),r.jsx("p",{className:"text-gray-300",children:"管理端:Authorization: Bearer admin-token-secret"})]})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"2. 书籍内容"})}),r.jsxs(Te,{className:"space-y-2 text-sm text-gray-300 font-mono",children:[r.jsx("p",{children:"GET /api/book/all-chapters — 获取所有章节"}),r.jsx("p",{children:"GET /api/book/chapter/:id — 获取单章内容"}),r.jsx("p",{children:"POST /api/book/sync — 同步章节(需管理员认证)"})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"3. 支付"})}),r.jsxs(Te,{className:"space-y-2 text-sm text-gray-300 font-mono",children:[r.jsx("p",{children:"POST /api/payment/create-order — 创建订单"}),r.jsx("p",{children:"POST /api/payment/alipay/notify — 支付宝回调"}),r.jsx("p",{children:"POST /api/payment/wechat/notify — 微信回调"})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"4. 分销与用户"})}),r.jsxs(Te,{className:"space-y-2 text-sm text-gray-300 font-mono",children:[r.jsx("p",{children:"/api/referral/* — 邀请码、收益查询、提现"}),r.jsx("p",{children:"/api/user/* — 登录、注册、信息更新"}),r.jsx("p",{children:"/api/match/* — 匹配、匹配历史"})]})]}),r.jsxs(Ee,{className:"bg-[#0f2137] border-gray-700/50 shadow-xl mb-6",children:[r.jsx(Je,{children:r.jsx(Ye,{className:"text-white",children:"5. 管理后台"})}),r.jsxs(Te,{className:"space-y-2 text-sm text-gray-300 font-mono",children:[r.jsx("p",{children:"GET/POST /api/admin/referral-settings — 推广/分销设置(含 VIP 配置)"}),r.jsx("p",{children:"GET /api/db/users、/api/db/book — 用户与章节数据"}),r.jsx("p",{children:"GET /api/admin/orders — 订单列表"})]})]}),r.jsx("p",{className:"text-gray-500 text-xs",children:"完整说明见项目内 开发文档/5、接口/API接口完整文档.md"})]})}function GV(){const t=Ui();return r.jsx("div",{className:"min-h-screen bg-[#0a1628] flex items-center justify-center p-8",children:r.jsxs("div",{className:"text-center max-w-md",children:[r.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:r.jsx(rj,{className:"w-10 h-10"})}),r.jsx("h1",{className:"text-4xl font-bold text-white mb-2",children:"404"}),r.jsx("p",{className:"text-gray-400 mb-1",children:"页面不存在"}),r.jsx("p",{className:"text-sm text-gray-500 font-mono mb-8 break-all",children:t.pathname}),r.jsx(X,{asChild:!0,className:"bg-[#38bdac] hover:bg-[#2da396] text-white",children:r.jsxs(Hg,{to:"/",children:[r.jsx(_M,{className:"w-4 h-4 mr-2"}),"返回首页"]})})]})})}function JV(){return r.jsxs(jT,{children:[r.jsx(Wt,{path:"/login",element:r.jsx(sI,{})}),r.jsxs(Wt,{path:"/",element:r.jsx(iA,{}),children:[r.jsx(Wt,{index:!0,element:r.jsx(Vm,{to:"/dashboard",replace:!0})}),r.jsx(Wt,{path:"dashboard",element:r.jsx(fP,{})}),r.jsx(Wt,{path:"orders",element:r.jsx(pP,{})}),r.jsx(Wt,{path:"users",element:r.jsx(mP,{})}),r.jsx(Wt,{path:"distribution",element:r.jsx(_P,{})}),r.jsx(Wt,{path:"withdrawals",element:r.jsx(zP,{})}),r.jsx(Wt,{path:"content",element:r.jsx(fV,{})}),r.jsx(Wt,{path:"referral-settings",element:r.jsx(Gk,{})}),r.jsx(Wt,{path:"author-settings",element:r.jsx(Vm,{to:"/settings?tab=author",replace:!0})}),r.jsx(Wt,{path:"vip-roles",element:r.jsx(IV,{})}),r.jsx(Wt,{path:"mentors",element:r.jsx(Q4,{})}),r.jsx(Wt,{path:"mentor-consultations",element:r.jsx(RV,{})}),r.jsx(Wt,{path:"admin-users",element:r.jsx(Vm,{to:"/settings?tab=admin",replace:!0})}),r.jsx(Wt,{path:"settings",element:r.jsx(NV,{})}),r.jsx(Wt,{path:"payment",element:r.jsx(wV,{})}),r.jsx(Wt,{path:"site",element:r.jsx(CV,{})}),r.jsx(Wt,{path:"qrcodes",element:r.jsx(EV,{})}),r.jsx(Wt,{path:"find-partner",element:r.jsx(KV,{})}),r.jsx(Wt,{path:"match",element:r.jsx(MV,{})}),r.jsx(Wt,{path:"match-records",element:r.jsx(AV,{})}),r.jsx(Wt,{path:"api-doc",element:r.jsx(qV,{})}),r.jsx(Wt,{path:"api-docs",element:r.jsx(Y4,{})})]}),r.jsx(Wt,{path:"*",element:r.jsx(GV,{})})]})}TE.createRoot(document.getElementById("root")).render(r.jsx(b.StrictMode,{children:r.jsx(IT,{future:{v7_startTransition:!0,v7_relativeSplatPath:!0},children:r.jsx(JV,{})})})); diff --git a/soul-admin/dist/assets/index-DGXqHqcA.css b/soul-admin/dist/assets/index-DGXqHqcA.css new file mode 100644 index 00000000..c6fdd7c0 --- /dev/null +++ b/soul-admin/dist/assets/index-DGXqHqcA.css @@ -0,0 +1 @@ +.rich-editor-wrapper{border:1px solid #374151;border-radius:.5rem;background:#0a1628;overflow:hidden}.rich-editor-toolbar{display:flex;align-items:center;gap:2px;padding:6px 8px;border-bottom:1px solid #374151;background:#0f1d32;flex-wrap:wrap}.toolbar-group{display:flex;align-items:center;gap:1px}.toolbar-divider{width:1px;height:20px;background:#374151;margin:0 4px}.rich-editor-toolbar button{display:flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:4px;border:none;background:transparent;color:#9ca3af;cursor:pointer;transition:all .15s}.rich-editor-toolbar button:hover{background:#1f2937;color:#d1d5db}.rich-editor-toolbar button.is-active{background:#38bdac33;color:#38bdac}.rich-editor-toolbar button:disabled{opacity:.3;cursor:not-allowed}.link-tag-select{background:#0a1628;border:1px solid #374151;color:#d1d5db;font-size:12px;padding:2px 6px;border-radius:4px;cursor:pointer;max-width:160px}.link-input-bar{display:flex;align-items:center;gap:4px;padding:4px 8px;border-bottom:1px solid #374151;background:#0f1d32}.link-input{flex:1;background:#0a1628;border:1px solid #374151;color:#fff;padding:4px 8px;border-radius:4px;font-size:13px}.link-confirm,.link-remove{padding:4px 10px;border-radius:4px;border:none;font-size:12px;cursor:pointer}.link-confirm{background:#38bdac;color:#fff}.link-remove{background:#374151;color:#9ca3af}.rich-editor-content{min-height:450px;max-height:720px;overflow-y:auto;padding:12px 16px;color:#e5e7eb;font-size:14px;line-height:1.7}.rich-editor-content:focus{outline:none}.rich-editor-content h1{font-size:1.5em;font-weight:700;margin:.8em 0 .4em;color:#fff}.rich-editor-content h2{font-size:1.3em;font-weight:600;margin:.7em 0 .3em;color:#fff}.rich-editor-content h3{font-size:1.15em;font-weight:600;margin:.6em 0 .3em;color:#fff}.rich-editor-content p{margin:.4em 0}.rich-editor-content strong{color:#fff}.rich-editor-content code{background:#1f2937;padding:2px 6px;border-radius:3px;font-size:.9em;color:#38bdac}.rich-editor-content pre{background:#1f2937;padding:12px;border-radius:6px;overflow-x:auto;margin:.6em 0}.rich-editor-content blockquote{border-left:3px solid #38bdac;padding-left:12px;margin:.6em 0;color:#9ca3af}.rich-editor-content ul,.rich-editor-content ol{padding-left:1.5em;margin:.4em 0}.rich-editor-content li{margin:.2em 0}.rich-editor-content hr{border:none;border-top:1px solid #374151;margin:1em 0}.rich-editor-content img{max-width:100%;border-radius:6px;margin:.5em 0}.rich-editor-content a,.rich-link{color:#38bdac;text-decoration:underline;cursor:pointer}.rich-editor-content table{border-collapse:collapse;width:100%;margin:.5em 0}.rich-editor-content th,.rich-editor-content td{border:1px solid #374151;padding:6px 10px;text-align:left}.rich-editor-content th{background:#1f2937;font-weight:600}.rich-editor-content .ProseMirror-placeholder:before{content:attr(data-placeholder);color:#6b7280;float:left;height:0;pointer-events:none}.mention-tag{background:#38bdac26;color:#38bdac;border-radius:4px;padding:1px 4px;font-weight:500}.link-tag-node{background:#ffd7001f;color:gold;border-radius:4px;padding:1px 4px;font-weight:500;cursor:default;-webkit-user-select:all;user-select:all}.mention-popup{position:fixed;z-index:9999;background:#1a2638;border:1px solid #374151;border-radius:8px;padding:4px;min-width:180px;max-height:240px;overflow-y:auto;box-shadow:0 4px 20px #0006}.mention-item{display:flex;align-items:center;justify-content:space-between;padding:6px 10px;border-radius:4px;cursor:pointer;color:#d1d5db;font-size:13px}.mention-item:hover,.mention-item.is-selected{background:#38bdac26;color:#38bdac}.mention-name{font-weight:500}.mention-id{font-size:11px;color:#6b7280}.bubble-menu{display:flex;gap:2px;background:#1a2638;border:1px solid #374151;border-radius:6px;padding:4px;box-shadow:0 4px 12px #0000004d}.bubble-menu button{display:flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:4px;border:none;background:transparent;color:#9ca3af;cursor:pointer}.bubble-menu button:hover{background:#1f2937;color:#d1d5db}.bubble-menu button.is-active{color:#38bdac}/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-pan-x:initial;--tw-pan-y:initial;--tw-pinch-zoom:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-divide-x-reverse:0;--tw-border-style:solid;--tw-divide-y-reverse:0;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial}}}@layer theme{:root,:host{--font-sans:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-100:oklch(93.6% .032 17.717);--color-red-300:oklch(80.8% .114 19.571);--color-red-400:oklch(70.4% .191 22.216);--color-red-500:oklch(63.7% .237 25.331);--color-red-600:oklch(57.7% .245 27.325);--color-red-700:oklch(50.5% .213 27.518);--color-red-800:oklch(44.4% .177 26.899);--color-red-900:oklch(39.6% .141 25.723);--color-orange-300:oklch(83.7% .128 66.29);--color-orange-400:oklch(75% .183 55.934);--color-orange-500:oklch(70.5% .213 47.604);--color-orange-600:oklch(64.6% .222 41.116);--color-amber-200:oklch(92.4% .12 95.746);--color-amber-300:oklch(87.9% .169 91.605);--color-amber-400:oklch(82.8% .189 84.429);--color-amber-500:oklch(76.9% .188 70.08);--color-amber-600:oklch(66.6% .179 58.318);--color-yellow-400:oklch(85.2% .199 91.936);--color-yellow-500:oklch(79.5% .184 86.047);--color-green-300:oklch(87.1% .15 154.449);--color-green-400:oklch(79.2% .209 151.711);--color-green-500:oklch(72.3% .219 149.579);--color-green-600:oklch(62.7% .194 149.214);--color-green-700:oklch(52.7% .154 150.069);--color-emerald-400:oklch(76.5% .177 163.223);--color-emerald-500:oklch(69.6% .17 162.48);--color-cyan-400:oklch(78.9% .154 211.53);--color-cyan-500:oklch(71.5% .143 215.221);--color-sky-200:oklch(90.1% .058 230.902);--color-sky-300:oklch(82.8% .111 230.318);--color-blue-300:oklch(80.9% .105 251.813);--color-blue-400:oklch(70.7% .165 254.624);--color-blue-500:oklch(62.3% .214 259.815);--color-purple-400:oklch(71.4% .203 305.504);--color-purple-500:oklch(62.7% .265 303.9);--color-rose-400:oklch(71.2% .194 13.428);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-xs:20rem;--container-sm:24rem;--container-md:28rem;--container-lg:32rem;--container-2xl:42rem;--container-3xl:48rem;--container-4xl:56rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-tight:-.025em;--tracking-wider:.05em;--leading-tight:1.25;--leading-relaxed:1.625;--radius-sm:.25rem;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--animate-spin:spin 1s linear infinite;--blur-xl:24px;--blur-3xl:64px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.not-sr-only{clip-path:none;white-space:normal;width:auto;height:auto;margin:0;padding:0;position:static;overflow:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.-top-2\.5{top:calc(var(--spacing)*-2.5)}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.top-1\/4{top:25%}.top-4{top:calc(var(--spacing)*4)}.top-16{top:calc(var(--spacing)*16)}.top-\[50\%\]{top:50%}.top-full{top:100%}.right-0{right:calc(var(--spacing)*0)}.right-1{right:calc(var(--spacing)*1)}.right-1\/4{right:25%}.right-4{right:calc(var(--spacing)*4)}.bottom-1\/4{bottom:25%}.-left-2\.5{left:calc(var(--spacing)*-2.5)}.left-0{left:calc(var(--spacing)*0)}.left-1\/4{left:25%}.left-2{left:calc(var(--spacing)*2)}.left-3{left:calc(var(--spacing)*3)}.left-\[50\%\]{left:50%}.isolate{isolation:isolate}.isolation-auto{isolation:auto}.z-10{z-index:10}.z-50{z-index:50}.col-span-2{grid-column:span 2/span 2}.container{width:100%}@media(min-width:40rem){.container{max-width:40rem}}@media(min-width:48rem){.container{max-width:48rem}}@media(min-width:64rem){.container{max-width:64rem}}@media(min-width:80rem){.container{max-width:80rem}}@media(min-width:96rem){.container{max-width:96rem}}.-mx-2{margin-inline:calc(var(--spacing)*-2)}.-mx-8{margin-inline:calc(var(--spacing)*-8)}.mx-20{margin-inline:calc(var(--spacing)*20)}.mx-auto{margin-inline:auto}.-mt-6{margin-top:calc(var(--spacing)*-6)}.mt-0{margin-top:calc(var(--spacing)*0)}.mt-0\.5{margin-top:calc(var(--spacing)*.5)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-1\.5{margin-top:calc(var(--spacing)*1.5)}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-6{margin-top:calc(var(--spacing)*6)}.mt-8{margin-top:calc(var(--spacing)*8)}.mr-1{margin-right:calc(var(--spacing)*1)}.mr-1\.5{margin-right:calc(var(--spacing)*1.5)}.mr-2{margin-right:calc(var(--spacing)*2)}.mr-3{margin-right:calc(var(--spacing)*3)}.mr-auto{margin-right:auto}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-1\.5{margin-bottom:calc(var(--spacing)*1.5)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-5{margin-bottom:calc(var(--spacing)*5)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-2{margin-left:calc(var(--spacing)*2)}.ml-4{margin-left:calc(var(--spacing)*4)}.ml-6{margin-left:calc(var(--spacing)*6)}.ml-auto{margin-left:auto}.line-clamp-2{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-3{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.block{display:block}.contents{display:contents}.flex{display:flex}.flow-root{display:flow-root}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline\!{display:inline!important}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.inline-grid{display:inline-grid}.inline-table{display:inline-table}.list-item{display:list-item}.table{display:table}.table\!{display:table!important}.table-caption{display:table-caption}.table-cell{display:table-cell}.table-column{display:table-column}.table-column-group{display:table-column-group}.table-footer-group{display:table-footer-group}.table-header-group{display:table-header-group}.table-row{display:table-row}.table-row-group{display:table-row-group}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-8{width:calc(var(--spacing)*8);height:calc(var(--spacing)*8)}.size-9{width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.size-10{width:calc(var(--spacing)*10);height:calc(var(--spacing)*10)}.h-0\.5{height:calc(var(--spacing)*.5)}.h-1\.5{height:calc(var(--spacing)*1.5)}.h-2{height:calc(var(--spacing)*2)}.h-3{height:calc(var(--spacing)*3)}.h-3\.5{height:calc(var(--spacing)*3.5)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-7{height:calc(var(--spacing)*7)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-12{height:calc(var(--spacing)*12)}.h-16{height:calc(var(--spacing)*16)}.h-20{height:calc(var(--spacing)*20)}.h-24{height:calc(var(--spacing)*24)}.h-96{height:calc(var(--spacing)*96)}.h-\[75vh\]{height:75vh}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.max-h-48{max-height:calc(var(--spacing)*48)}.max-h-64{max-height:calc(var(--spacing)*64)}.max-h-96{max-height:calc(var(--spacing)*96)}.max-h-\[80vh\]{max-height:80vh}.max-h-\[85vh\]{max-height:85vh}.max-h-\[90vh\]{max-height:90vh}.max-h-\[250px\]{max-height:250px}.max-h-\[300px\]{max-height:300px}.max-h-\[400px\]{max-height:400px}.max-h-\[420px\]{max-height:420px}.max-h-\[450px\]{max-height:450px}.max-h-none{max-height:none}.min-h-0{min-height:calc(var(--spacing)*0)}.min-h-8{min-height:calc(var(--spacing)*8)}.min-h-\[32px\]{min-height:32px}.min-h-\[40px\]{min-height:40px}.min-h-\[60vh\]{min-height:60vh}.min-h-\[72px\]{min-height:72px}.min-h-\[80px\]{min-height:80px}.min-h-\[100px\]{min-height:100px}.min-h-\[120px\]{min-height:120px}.min-h-\[260px\]{min-height:260px}.min-h-\[400px\]{min-height:400px}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-0\.5{width:calc(var(--spacing)*.5)}.w-2{width:calc(var(--spacing)*2)}.w-3{width:calc(var(--spacing)*3)}.w-3\.5{width:calc(var(--spacing)*3.5)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-6{width:calc(var(--spacing)*6)}.w-7{width:calc(var(--spacing)*7)}.w-8{width:calc(var(--spacing)*8)}.w-9{width:calc(var(--spacing)*9)}.w-10{width:calc(var(--spacing)*10)}.w-12{width:calc(var(--spacing)*12)}.w-16{width:calc(var(--spacing)*16)}.w-20{width:calc(var(--spacing)*20)}.w-24{width:calc(var(--spacing)*24)}.w-28{width:calc(var(--spacing)*28)}.w-32{width:calc(var(--spacing)*32)}.w-40{width:calc(var(--spacing)*40)}.w-48{width:calc(var(--spacing)*48)}.w-52{width:calc(var(--spacing)*52)}.w-56{width:calc(var(--spacing)*56)}.w-64{width:calc(var(--spacing)*64)}.w-96{width:calc(var(--spacing)*96)}.w-\[280px\]{width:280px}.w-fit{width:fit-content}.w-full{width:100%}.w-screen{width:100vw}.max-w-2xl{max-width:var(--container-2xl)}.max-w-3xl{max-width:var(--container-3xl)}.max-w-4xl{max-width:var(--container-4xl)}.max-w-\[72px\]{max-width:72px}.max-w-\[96px\]{max-width:96px}.max-w-\[100px\]{max-width:100px}.max-w-\[120px\]{max-width:120px}.max-w-\[140px\]{max-width:140px}.max-w-\[160px\]{max-width:160px}.max-w-\[180px\]{max-width:180px}.max-w-\[200px\]{max-width:200px}.max-w-\[420px\]{max-width:420px}.max-w-\[calc\(100\%-2rem\)\]{max-width:calc(100% - 2rem)}.max-w-lg{max-width:var(--container-lg)}.max-w-md{max-width:var(--container-md)}.max-w-none{max-width:none}.max-w-sm{max-width:var(--container-sm)}.max-w-xs{max-width:var(--container-xs)}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-48{min-width:calc(var(--spacing)*48)}.min-w-\[8rem\]{min-width:8rem}.min-w-\[60px\]{min-width:60px}.min-w-\[120px\]{min-width:120px}.min-w-\[200px\]{min-width:200px}.min-w-\[1024px\]{min-width:1024px}.flex-1{flex:1}.flex-shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.caption-bottom{caption-side:bottom}.border-collapse{border-collapse:collapse}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-0{--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-1\/2{--tw-translate-x: 50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-0{--tw-translate-y:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-none{translate:none}.scale-3d{scale:var(--tw-scale-x)var(--tw-scale-y)var(--tw-scale-z)}.scale-\[0\.98\]{scale:.98}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-spin{animation:var(--animate-spin)}.cursor-default{cursor:default}.cursor-grab{cursor:grab}.cursor-pointer{cursor:pointer}.touch-pinch-zoom{--tw-pinch-zoom:pinch-zoom;touch-action:var(--tw-pan-x,)var(--tw-pan-y,)var(--tw-pinch-zoom,)}.touch-none{touch-action:none}.resize{resize:both}.resize-none{resize:none}.resize-y{resize:vertical}.list-inside{list-style-position:inside}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-\[40px_40px_1fr_80px_80px_80px_60px\]{grid-template-columns:40px 40px 1fr 80px 80px 80px 60px}.grid-cols-\[60px_1fr_100px_100px_80px_120px\]{grid-template-columns:60px 1fr 100px 100px 80px 120px}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.gap-0{gap:calc(var(--spacing)*0)}.gap-0\.5{gap:calc(var(--spacing)*.5)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-5{gap:calc(var(--spacing)*5)}.gap-6{gap:calc(var(--spacing)*6)}.gap-8{gap:calc(var(--spacing)*8)}:where(.space-y-0>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*0)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*0)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-8>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*8)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*8)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-reverse>:not(:last-child)){--tw-space-y-reverse:1}.gap-x-8{column-gap:calc(var(--spacing)*8)}:where(.space-x-reverse>:not(:last-child)){--tw-space-x-reverse:1}.gap-y-4{row-gap:calc(var(--spacing)*4)}:where(.divide-x>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)))}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px*var(--tw-divide-y-reverse));border-bottom-width:calc(1px*calc(1 - var(--tw-divide-y-reverse)))}:where(.divide-y-reverse>:not(:last-child)){--tw-divide-y-reverse:1}:where(.divide-gray-700\/50>:not(:last-child)){border-color:#36415380}@supports (color:color-mix(in lab,red,red)){:where(.divide-gray-700\/50>:not(:last-child)){border-color:color-mix(in oklab,var(--color-gray-700)50%,transparent)}}:where(.divide-white\/5>:not(:last-child)){border-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){:where(.divide-white\/5>:not(:last-child)){border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-none{border-radius:0}.rounded-sm{border-radius:var(--radius-sm)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-s{border-start-start-radius:.25rem;border-end-start-radius:.25rem}.rounded-ss{border-start-start-radius:.25rem}.rounded-e{border-start-end-radius:.25rem;border-end-end-radius:.25rem}.rounded-se{border-start-end-radius:.25rem}.rounded-ee{border-end-end-radius:.25rem}.rounded-es{border-end-start-radius:.25rem}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-l{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-tl{border-top-left-radius:.25rem}.rounded-r{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.rounded-r-md{border-top-right-radius:var(--radius-md);border-bottom-right-radius:var(--radius-md)}.rounded-tr{border-top-right-radius:.25rem}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-br{border-bottom-right-radius:.25rem}.rounded-bl{border-bottom-left-radius:.25rem}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.border-y{border-block-style:var(--tw-border-style);border-block-width:1px}.border-s{border-inline-start-style:var(--tw-border-style);border-inline-start-width:1px}.border-e{border-inline-end-style:var(--tw-border-style);border-inline-end-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-\[\#07C160\]{border-color:#07c160}.border-\[\#07C160\]\/20{border-color:#07c16033}.border-\[\#07C160\]\/30{border-color:#07c1604d}.border-\[\#38bdac\]{border-color:#38bdac}.border-\[\#38bdac\]\/20{border-color:#38bdac33}.border-\[\#38bdac\]\/30{border-color:#38bdac4d}.border-\[\#38bdac\]\/40{border-color:#38bdac66}.border-\[\#38bdac\]\/50{border-color:#38bdac80}.border-amber-400\/60{border-color:#fcbb0099}@supports (color:color-mix(in lab,red,red)){.border-amber-400\/60{border-color:color-mix(in oklab,var(--color-amber-400)60%,transparent)}}.border-amber-500\/20{border-color:#f99c0033}@supports (color:color-mix(in lab,red,red)){.border-amber-500\/20{border-color:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.border-amber-500\/30{border-color:#f99c004d}@supports (color:color-mix(in lab,red,red)){.border-amber-500\/30{border-color:color-mix(in oklab,var(--color-amber-500)30%,transparent)}}.border-amber-500\/40{border-color:#f99c0066}@supports (color:color-mix(in lab,red,red)){.border-amber-500\/40{border-color:color-mix(in oklab,var(--color-amber-500)40%,transparent)}}.border-amber-500\/50{border-color:#f99c0080}@supports (color:color-mix(in lab,red,red)){.border-amber-500\/50{border-color:color-mix(in oklab,var(--color-amber-500)50%,transparent)}}.border-blue-500\/30{border-color:#3080ff4d}@supports (color:color-mix(in lab,red,red)){.border-blue-500\/30{border-color:color-mix(in oklab,var(--color-blue-500)30%,transparent)}}.border-blue-500\/40{border-color:#3080ff66}@supports (color:color-mix(in lab,red,red)){.border-blue-500\/40{border-color:color-mix(in oklab,var(--color-blue-500)40%,transparent)}}.border-blue-500\/50{border-color:#3080ff80}@supports (color:color-mix(in lab,red,red)){.border-blue-500\/50{border-color:color-mix(in oklab,var(--color-blue-500)50%,transparent)}}.border-cyan-500\/30{border-color:#00b7d74d}@supports (color:color-mix(in lab,red,red)){.border-cyan-500\/30{border-color:color-mix(in oklab,var(--color-cyan-500)30%,transparent)}}.border-cyan-500\/40{border-color:#00b7d766}@supports (color:color-mix(in lab,red,red)){.border-cyan-500\/40{border-color:color-mix(in oklab,var(--color-cyan-500)40%,transparent)}}.border-gray-500{border-color:var(--color-gray-500)}.border-gray-600{border-color:var(--color-gray-600)}.border-gray-700{border-color:var(--color-gray-700)}.border-gray-700\/30{border-color:#3641534d}@supports (color:color-mix(in lab,red,red)){.border-gray-700\/30{border-color:color-mix(in oklab,var(--color-gray-700)30%,transparent)}}.border-gray-700\/40{border-color:#36415366}@supports (color:color-mix(in lab,red,red)){.border-gray-700\/40{border-color:color-mix(in oklab,var(--color-gray-700)40%,transparent)}}.border-gray-700\/50{border-color:#36415380}@supports (color:color-mix(in lab,red,red)){.border-gray-700\/50{border-color:color-mix(in oklab,var(--color-gray-700)50%,transparent)}}.border-gray-700\/60{border-color:#36415399}@supports (color:color-mix(in lab,red,red)){.border-gray-700\/60{border-color:color-mix(in oklab,var(--color-gray-700)60%,transparent)}}.border-green-500\/30{border-color:#00c7584d}@supports (color:color-mix(in lab,red,red)){.border-green-500\/30{border-color:color-mix(in oklab,var(--color-green-500)30%,transparent)}}.border-green-500\/40{border-color:#00c75866}@supports (color:color-mix(in lab,red,red)){.border-green-500\/40{border-color:color-mix(in oklab,var(--color-green-500)40%,transparent)}}.border-inherit{border-color:inherit}.border-orange-500\/20{border-color:#fe6e0033}@supports (color:color-mix(in lab,red,red)){.border-orange-500\/20{border-color:color-mix(in oklab,var(--color-orange-500)20%,transparent)}}.border-orange-500\/30{border-color:#fe6e004d}@supports (color:color-mix(in lab,red,red)){.border-orange-500\/30{border-color:color-mix(in oklab,var(--color-orange-500)30%,transparent)}}.border-orange-500\/40{border-color:#fe6e0066}@supports (color:color-mix(in lab,red,red)){.border-orange-500\/40{border-color:color-mix(in oklab,var(--color-orange-500)40%,transparent)}}.border-orange-500\/50{border-color:#fe6e0080}@supports (color:color-mix(in lab,red,red)){.border-orange-500\/50{border-color:color-mix(in oklab,var(--color-orange-500)50%,transparent)}}.border-purple-500\/20{border-color:#ac4bff33}@supports (color:color-mix(in lab,red,red)){.border-purple-500\/20{border-color:color-mix(in oklab,var(--color-purple-500)20%,transparent)}}.border-purple-500\/30{border-color:#ac4bff4d}@supports (color:color-mix(in lab,red,red)){.border-purple-500\/30{border-color:color-mix(in oklab,var(--color-purple-500)30%,transparent)}}.border-purple-500\/40{border-color:#ac4bff66}@supports (color:color-mix(in lab,red,red)){.border-purple-500\/40{border-color:color-mix(in oklab,var(--color-purple-500)40%,transparent)}}.border-red-500{border-color:var(--color-red-500)}.border-red-500\/20{border-color:#fb2c3633}@supports (color:color-mix(in lab,red,red)){.border-red-500\/20{border-color:color-mix(in oklab,var(--color-red-500)20%,transparent)}}.border-red-500\/30{border-color:#fb2c364d}@supports (color:color-mix(in lab,red,red)){.border-red-500\/30{border-color:color-mix(in oklab,var(--color-red-500)30%,transparent)}}.border-red-500\/50{border-color:#fb2c3680}@supports (color:color-mix(in lab,red,red)){.border-red-500\/50{border-color:color-mix(in oklab,var(--color-red-500)50%,transparent)}}.border-red-600\/50{border-color:#e4001480}@supports (color:color-mix(in lab,red,red)){.border-red-600\/50{border-color:color-mix(in oklab,var(--color-red-600)50%,transparent)}}.border-transparent{border-color:#0000}.border-white\/5{border-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.border-white\/5{border-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.border-white\/10{border-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.border-white\/10{border-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.border-white\/20{border-color:#fff3}@supports (color:color-mix(in lab,red,red)){.border-white\/20{border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.border-yellow-500\/30{border-color:#edb2004d}@supports (color:color-mix(in lab,red,red)){.border-yellow-500\/30{border-color:color-mix(in oklab,var(--color-yellow-500)30%,transparent)}}.border-yellow-500\/40{border-color:#edb20066}@supports (color:color-mix(in lab,red,red)){.border-yellow-500\/40{border-color:color-mix(in oklab,var(--color-yellow-500)40%,transparent)}}.bg-\[\#0a1628\]{background-color:#0a1628}.bg-\[\#0a1628\]\/50{background-color:#0a162880}.bg-\[\#0a1628\]\/60{background-color:#0a162899}.bg-\[\#0b1828\]{background-color:#0b1828}.bg-\[\#0f2137\]{background-color:#0f2137}.bg-\[\#00CED1\]{background-color:#00ced1}.bg-\[\#1C1C1E\]{background-color:#1c1c1e}.bg-\[\#07C160\]{background-color:#07c160}.bg-\[\#07C160\]\/5{background-color:#07c1600d}.bg-\[\#07C160\]\/10{background-color:#07c1601a}.bg-\[\#38bdac\]{background-color:#38bdac}.bg-\[\#38bdac\]\/5{background-color:#38bdac0d}.bg-\[\#38bdac\]\/10{background-color:#38bdac1a}.bg-\[\#38bdac\]\/15{background-color:#38bdac26}.bg-\[\#38bdac\]\/20{background-color:#38bdac33}.bg-\[\#38bdac\]\/30{background-color:#38bdac4d}.bg-\[\#38bdac\]\/60{background-color:#38bdac99}.bg-\[\#38bdac\]\/80{background-color:#38bdaccc}.bg-\[\#050c18\]{background-color:#050c18}.bg-\[\#162840\]{background-color:#162840}.bg-amber-500{background-color:var(--color-amber-500)}.bg-amber-500\/5{background-color:#f99c000d}@supports (color:color-mix(in lab,red,red)){.bg-amber-500\/5{background-color:color-mix(in oklab,var(--color-amber-500)5%,transparent)}}.bg-amber-500\/10{background-color:#f99c001a}@supports (color:color-mix(in lab,red,red)){.bg-amber-500\/10{background-color:color-mix(in oklab,var(--color-amber-500)10%,transparent)}}.bg-amber-500\/20{background-color:#f99c0033}@supports (color:color-mix(in lab,red,red)){.bg-amber-500\/20{background-color:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.bg-black{background-color:var(--color-black)}.bg-black\/30{background-color:#0000004d}@supports (color:color-mix(in lab,red,red)){.bg-black\/30{background-color:color-mix(in oklab,var(--color-black)30%,transparent)}}.bg-black\/50{background-color:#00000080}@supports (color:color-mix(in lab,red,red)){.bg-black\/50{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}}.bg-black\/60{background-color:#0009}@supports (color:color-mix(in lab,red,red)){.bg-black\/60{background-color:color-mix(in oklab,var(--color-black)60%,transparent)}}.bg-black\/90{background-color:#000000e6}@supports (color:color-mix(in lab,red,red)){.bg-black\/90{background-color:color-mix(in oklab,var(--color-black)90%,transparent)}}.bg-blue-500\/5{background-color:#3080ff0d}@supports (color:color-mix(in lab,red,red)){.bg-blue-500\/5{background-color:color-mix(in oklab,var(--color-blue-500)5%,transparent)}}.bg-blue-500\/10{background-color:#3080ff1a}@supports (color:color-mix(in lab,red,red)){.bg-blue-500\/10{background-color:color-mix(in oklab,var(--color-blue-500)10%,transparent)}}.bg-blue-500\/20{background-color:#3080ff33}@supports (color:color-mix(in lab,red,red)){.bg-blue-500\/20{background-color:color-mix(in oklab,var(--color-blue-500)20%,transparent)}}.bg-cyan-500{background-color:var(--color-cyan-500)}.bg-cyan-500\/20{background-color:#00b7d733}@supports (color:color-mix(in lab,red,red)){.bg-cyan-500\/20{background-color:color-mix(in oklab,var(--color-cyan-500)20%,transparent)}}.bg-emerald-500\/20{background-color:#00bb7f33}@supports (color:color-mix(in lab,red,red)){.bg-emerald-500\/20{background-color:color-mix(in oklab,var(--color-emerald-500)20%,transparent)}}.bg-gray-500{background-color:var(--color-gray-500)}.bg-gray-500\/10{background-color:#6a72821a}@supports (color:color-mix(in lab,red,red)){.bg-gray-500\/10{background-color:color-mix(in oklab,var(--color-gray-500)10%,transparent)}}.bg-gray-500\/20{background-color:#6a728233}@supports (color:color-mix(in lab,red,red)){.bg-gray-500\/20{background-color:color-mix(in oklab,var(--color-gray-500)20%,transparent)}}.bg-gray-600{background-color:var(--color-gray-600)}.bg-gray-600\/20{background-color:#4a556533}@supports (color:color-mix(in lab,red,red)){.bg-gray-600\/20{background-color:color-mix(in oklab,var(--color-gray-600)20%,transparent)}}.bg-gray-600\/50{background-color:#4a556580}@supports (color:color-mix(in lab,red,red)){.bg-gray-600\/50{background-color:color-mix(in oklab,var(--color-gray-600)50%,transparent)}}.bg-gray-700{background-color:var(--color-gray-700)}.bg-gray-700\/50{background-color:#36415380}@supports (color:color-mix(in lab,red,red)){.bg-gray-700\/50{background-color:color-mix(in oklab,var(--color-gray-700)50%,transparent)}}.bg-green-400\/10{background-color:#05df721a}@supports (color:color-mix(in lab,red,red)){.bg-green-400\/10{background-color:color-mix(in oklab,var(--color-green-400)10%,transparent)}}.bg-green-500{background-color:var(--color-green-500)}.bg-green-500\/20{background-color:#00c75833}@supports (color:color-mix(in lab,red,red)){.bg-green-500\/20{background-color:color-mix(in oklab,var(--color-green-500)20%,transparent)}}.bg-green-600{background-color:var(--color-green-600)}.bg-orange-500{background-color:var(--color-orange-500)}.bg-orange-500\/10{background-color:#fe6e001a}@supports (color:color-mix(in lab,red,red)){.bg-orange-500\/10{background-color:color-mix(in oklab,var(--color-orange-500)10%,transparent)}}.bg-orange-500\/20{background-color:#fe6e0033}@supports (color:color-mix(in lab,red,red)){.bg-orange-500\/20{background-color:color-mix(in oklab,var(--color-orange-500)20%,transparent)}}.bg-purple-500\/20{background-color:#ac4bff33}@supports (color:color-mix(in lab,red,red)){.bg-purple-500\/20{background-color:color-mix(in oklab,var(--color-purple-500)20%,transparent)}}.bg-red-500\/10{background-color:#fb2c361a}@supports (color:color-mix(in lab,red,red)){.bg-red-500\/10{background-color:color-mix(in oklab,var(--color-red-500)10%,transparent)}}.bg-red-500\/20{background-color:#fb2c3633}@supports (color:color-mix(in lab,red,red)){.bg-red-500\/20{background-color:color-mix(in oklab,var(--color-red-500)20%,transparent)}}.bg-red-600{background-color:var(--color-red-600)}.bg-red-900\/80{background-color:#82181acc}@supports (color:color-mix(in lab,red,red)){.bg-red-900\/80{background-color:color-mix(in oklab,var(--color-red-900)80%,transparent)}}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.bg-white\/5{background-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.bg-white\/5{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.bg-white\/10{background-color:#ffffff1a}@supports (color:color-mix(in lab,red,red)){.bg-white\/10{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.bg-white\/20{background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.bg-white\/20{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.bg-yellow-500\/20{background-color:#edb20033}@supports (color:color-mix(in lab,red,red)){.bg-yellow-500\/20{background-color:color-mix(in oklab,var(--color-yellow-500)20%,transparent)}}.bg-gradient-to-br{--tw-gradient-position:to bottom right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-\[\#0f2137\]{--tw-gradient-from:#0f2137;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-\[\#00CED1\]{--tw-gradient-from:#00ced1;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-\[\#38bdac\]\/10{--tw-gradient-from:oklab(72.378% -.11483 -.0053193/.1);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-blue-500\/20{--tw-gradient-from:#3080ff33}@supports (color:color-mix(in lab,red,red)){.from-blue-500\/20{--tw-gradient-from:color-mix(in oklab,var(--color-blue-500)20%,transparent)}}.from-blue-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-cyan-500\/20{--tw-gradient-from:#00b7d733}@supports (color:color-mix(in lab,red,red)){.from-cyan-500\/20{--tw-gradient-from:color-mix(in oklab,var(--color-cyan-500)20%,transparent)}}.from-cyan-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-green-500\/20{--tw-gradient-from:#00c75833}@supports (color:color-mix(in lab,red,red)){.from-green-500\/20{--tw-gradient-from:color-mix(in oklab,var(--color-green-500)20%,transparent)}}.from-green-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-purple-500\/20{--tw-gradient-from:#ac4bff33}@supports (color:color-mix(in lab,red,red)){.from-purple-500\/20{--tw-gradient-from:color-mix(in oklab,var(--color-purple-500)20%,transparent)}}.from-purple-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-yellow-500\/20{--tw-gradient-from:#edb20033}@supports (color:color-mix(in lab,red,red)){.from-yellow-500\/20{--tw-gradient-from:color-mix(in oklab,var(--color-yellow-500)20%,transparent)}}.from-yellow-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.via-\[\#38bdac\]\/30{--tw-gradient-via:oklab(72.378% -.11483 -.0053193/.3);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.to-\[\#0f2137\]{--tw-gradient-to:#0f2137;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-\[\#20B2AA\]{--tw-gradient-to:#20b2aa;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-\[\#162d4a\]{--tw-gradient-to:#162d4a;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-amber-500\/20{--tw-gradient-to:#f99c0033}@supports (color:color-mix(in lab,red,red)){.to-amber-500\/20{--tw-gradient-to:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.to-amber-500\/20{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-cyan-500\/5{--tw-gradient-to:#00b7d70d}@supports (color:color-mix(in lab,red,red)){.to-cyan-500\/5{--tw-gradient-to:color-mix(in oklab,var(--color-cyan-500)5%,transparent)}}.to-cyan-500\/5{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-green-500\/5{--tw-gradient-to:#00c7580d}@supports (color:color-mix(in lab,red,red)){.to-green-500\/5{--tw-gradient-to:color-mix(in oklab,var(--color-green-500)5%,transparent)}}.to-green-500\/5{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-purple-500\/5{--tw-gradient-to:#ac4bff0d}@supports (color:color-mix(in lab,red,red)){.to-purple-500\/5{--tw-gradient-to:color-mix(in oklab,var(--color-purple-500)5%,transparent)}}.to-purple-500\/5{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-yellow-500\/5{--tw-gradient-to:#edb2000d}@supports (color:color-mix(in lab,red,red)){.to-yellow-500\/5{--tw-gradient-to:color-mix(in oklab,var(--color-yellow-500)5%,transparent)}}.to-yellow-500\/5{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.bg-repeat{background-repeat:repeat}.mask-no-clip{-webkit-mask-clip:no-clip;mask-clip:no-clip}.mask-repeat{-webkit-mask-repeat:repeat;mask-repeat:repeat}.fill-amber-400{fill:var(--color-amber-400)}.fill-current{fill:currentColor}.object-cover{object-fit:cover}.p-0{padding:calc(var(--spacing)*0)}.p-1{padding:calc(var(--spacing)*1)}.p-2{padding:calc(var(--spacing)*2)}.p-2\.5{padding:calc(var(--spacing)*2.5)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.p-5{padding:calc(var(--spacing)*5)}.p-6{padding:calc(var(--spacing)*6)}.p-8{padding:calc(var(--spacing)*8)}.px-0{padding-inline:calc(var(--spacing)*0)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-1\.5{padding-inline:calc(var(--spacing)*1.5)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-2\.5{padding-block:calc(var(--spacing)*2.5)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.py-5{padding-block:calc(var(--spacing)*5)}.py-6{padding-block:calc(var(--spacing)*6)}.py-8{padding-block:calc(var(--spacing)*8)}.py-10{padding-block:calc(var(--spacing)*10)}.py-12{padding-block:calc(var(--spacing)*12)}.py-16{padding-block:calc(var(--spacing)*16)}.py-20{padding-block:calc(var(--spacing)*20)}.pt-0{padding-top:calc(var(--spacing)*0)}.pt-1{padding-top:calc(var(--spacing)*1)}.pt-2{padding-top:calc(var(--spacing)*2)}.pt-3{padding-top:calc(var(--spacing)*3)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-5{padding-top:calc(var(--spacing)*5)}.pt-6{padding-top:calc(var(--spacing)*6)}.pr-1{padding-right:calc(var(--spacing)*1)}.pr-2{padding-right:calc(var(--spacing)*2)}.pr-4{padding-right:calc(var(--spacing)*4)}.pb-1{padding-bottom:calc(var(--spacing)*1)}.pb-2{padding-bottom:calc(var(--spacing)*2)}.pb-3{padding-bottom:calc(var(--spacing)*3)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pl-2{padding-left:calc(var(--spacing)*2)}.pl-4{padding-left:calc(var(--spacing)*4)}.pl-8{padding-left:calc(var(--spacing)*8)}.pl-10{padding-left:calc(var(--spacing)*10)}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.align-middle{vertical-align:middle}.font-mono{font-family:var(--font-mono)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.leading-6{--tw-leading:calc(var(--spacing)*6);line-height:calc(var(--spacing)*6)}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.text-wrap{text-wrap:wrap}.wrap-break-word{overflow-wrap:break-word}.break-all{word-break:break-all}.text-clip{text-overflow:clip}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-\[\#00CED1\]{color:#00ced1}.text-\[\#07C160\]{color:#07c160}.text-\[\#07C160\]\/60{color:#07c16099}.text-\[\#07C160\]\/70{color:#07c160b3}.text-\[\#07C160\]\/80{color:#07c160cc}.text-\[\#26A17B\]{color:#26a17b}.text-\[\#38bdac\]{color:#38bdac}.text-\[\#38bdac\]\/30{color:#38bdac4d}.text-\[\#38bdac\]\/40{color:#38bdac66}.text-\[\#169BD7\]{color:#169bd7}.text-\[\#1677FF\]{color:#1677ff}.text-\[\#FFD700\]{color:gold}.text-amber-200{color:var(--color-amber-200)}.text-amber-200\/80{color:#fee685cc}@supports (color:color-mix(in lab,red,red)){.text-amber-200\/80{color:color-mix(in oklab,var(--color-amber-200)80%,transparent)}}.text-amber-300{color:var(--color-amber-300)}.text-amber-400{color:var(--color-amber-400)}.text-amber-400\/30{color:#fcbb004d}@supports (color:color-mix(in lab,red,red)){.text-amber-400\/30{color:color-mix(in oklab,var(--color-amber-400)30%,transparent)}}.text-amber-400\/80{color:#fcbb00cc}@supports (color:color-mix(in lab,red,red)){.text-amber-400\/80{color:color-mix(in oklab,var(--color-amber-400)80%,transparent)}}.text-amber-400\/90{color:#fcbb00e6}@supports (color:color-mix(in lab,red,red)){.text-amber-400\/90{color:color-mix(in oklab,var(--color-amber-400)90%,transparent)}}.text-black{color:var(--color-black)}.text-blue-300{color:var(--color-blue-300)}.text-blue-300\/60{color:#90c5ff99}@supports (color:color-mix(in lab,red,red)){.text-blue-300\/60{color:color-mix(in oklab,var(--color-blue-300)60%,transparent)}}.text-blue-400{color:var(--color-blue-400)}.text-blue-400\/60{color:#54a2ff99}@supports (color:color-mix(in lab,red,red)){.text-blue-400\/60{color:color-mix(in oklab,var(--color-blue-400)60%,transparent)}}.text-cyan-400{color:var(--color-cyan-400)}.text-emerald-400{color:var(--color-emerald-400)}.text-gray-200{color:var(--color-gray-200)}.text-gray-300{color:var(--color-gray-300)}.text-gray-400{color:var(--color-gray-400)}.text-gray-500{color:var(--color-gray-500)}.text-gray-600{color:var(--color-gray-600)}.text-gray-700{color:var(--color-gray-700)}.text-green-300{color:var(--color-green-300)}.text-green-400{color:var(--color-green-400)}.text-green-400\/90{color:#05df72e6}@supports (color:color-mix(in lab,red,red)){.text-green-400\/90{color:color-mix(in oklab,var(--color-green-400)90%,transparent)}}.text-green-500{color:var(--color-green-500)}.text-orange-300{color:var(--color-orange-300)}.text-orange-300\/60{color:#ffb96d99}@supports (color:color-mix(in lab,red,red)){.text-orange-300\/60{color:color-mix(in oklab,var(--color-orange-300)60%,transparent)}}.text-orange-400{color:var(--color-orange-400)}.text-orange-400\/60{color:#ff8b1a99}@supports (color:color-mix(in lab,red,red)){.text-orange-400\/60{color:color-mix(in oklab,var(--color-orange-400)60%,transparent)}}.text-orange-400\/70{color:#ff8b1ab3}@supports (color:color-mix(in lab,red,red)){.text-orange-400\/70{color:color-mix(in oklab,var(--color-orange-400)70%,transparent)}}.text-orange-400\/80{color:#ff8b1acc}@supports (color:color-mix(in lab,red,red)){.text-orange-400\/80{color:color-mix(in oklab,var(--color-orange-400)80%,transparent)}}.text-purple-400{color:var(--color-purple-400)}.text-red-100{color:var(--color-red-100)}.text-red-300{color:var(--color-red-300)}.text-red-400{color:var(--color-red-400)}.text-rose-400{color:var(--color-rose-400)}.text-sky-300{color:var(--color-sky-300)}.text-white{color:var(--color-white)}.text-white\/40{color:#fff6}@supports (color:color-mix(in lab,red,red)){.text-white\/40{color:color-mix(in oklab,var(--color-white)40%,transparent)}}.text-white\/60{color:#fff9}@supports (color:color-mix(in lab,red,red)){.text-white\/60{color:color-mix(in oklab,var(--color-white)60%,transparent)}}.text-white\/70{color:#ffffffb3}@supports (color:color-mix(in lab,red,red)){.text-white\/70{color:color-mix(in oklab,var(--color-white)70%,transparent)}}.text-white\/80{color:#fffc}@supports (color:color-mix(in lab,red,red)){.text-white\/80{color:color-mix(in oklab,var(--color-white)80%,transparent)}}.text-yellow-400{color:var(--color-yellow-400)}.text-yellow-400\/60{color:#fac80099}@supports (color:color-mix(in lab,red,red)){.text-yellow-400\/60{color:color-mix(in oklab,var(--color-yellow-400)60%,transparent)}}.text-yellow-500\/70{color:#edb200b3}@supports (color:color-mix(in lab,red,red)){.text-yellow-500\/70{color:color-mix(in oklab,var(--color-yellow-500)70%,transparent)}}.capitalize{text-transform:capitalize}.lowercase{text-transform:lowercase}.normal-case{text-transform:none}.uppercase{text-transform:uppercase}.italic{font-style:italic}.italic\!{font-style:italic!important}.not-italic{font-style:normal}.diagonal-fractions{--tw-numeric-fraction:diagonal-fractions;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.lining-nums{--tw-numeric-figure:lining-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.oldstyle-nums{--tw-numeric-figure:oldstyle-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.ordinal{--tw-ordinal:ordinal;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.proportional-nums{--tw-numeric-spacing:proportional-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.slashed-zero{--tw-slashed-zero:slashed-zero;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.stacked-fractions{--tw-numeric-fraction:stacked-fractions;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.normal-nums{font-variant-numeric:normal}.line-through{text-decoration-line:line-through}.no-underline{text-decoration-line:none}.overline{text-decoration-line:overline}.underline{text-decoration-line:underline}.underline\!{text-decoration-line:underline!important}.underline-offset-4{text-underline-offset:4px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.accent-\[\#38bdac\]{accent-color:#38bdac}.opacity-0{opacity:0}.opacity-50{opacity:.5}.opacity-55{opacity:.55}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-0{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-1{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-2{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.inset-ring{--tw-inset-ring-shadow:inset 0 0 0 1px var(--tw-inset-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[\#38bdac\]\/20{--tw-shadow-color:#38bdac33}@supports (color:color-mix(in lab,red,red)){.shadow-\[\#38bdac\]\/20{--tw-shadow-color:color-mix(in oklab,oklab(72.378% -.11483 -.0053193/.2) var(--tw-shadow-alpha),transparent)}}.shadow-\[\#38bdac\]\/30{--tw-shadow-color:#38bdac4d}@supports (color:color-mix(in lab,red,red)){.shadow-\[\#38bdac\]\/30{--tw-shadow-color:color-mix(in oklab,oklab(72.378% -.11483 -.0053193/.3) var(--tw-shadow-alpha),transparent)}}.ring-\[\#38bdac\]{--tw-ring-color:#38bdac}.ring-\[\#38bdac\]\/40{--tw-ring-color:oklab(72.378% -.11483 -.0053193/.4)}.ring-\[\#38bdac\]\/50{--tw-ring-color:oklab(72.378% -.11483 -.0053193/.5)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-3xl{--tw-blur:blur(var(--blur-3xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow{--tw-drop-shadow-size:drop-shadow(0 1px 2px var(--tw-drop-shadow-color,#0000001a))drop-shadow(0 1px 1px var(--tw-drop-shadow-color,#0000000f));--tw-drop-shadow:drop-shadow(0 1px 2px #0000001a)drop-shadow(0 1px 1px #0000000f);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter\!{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)!important}.backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-blur-xl{--tw-backdrop-blur:blur(var(--blur-xl));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-grayscale{--tw-backdrop-grayscale:grayscale(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-invert{--tw-backdrop-invert:invert(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-sepia{--tw-backdrop-sepia:sepia(100%);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition\!{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events!important;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function))!important;transition-duration:var(--tw-duration,var(--default-transition-duration))!important}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-200{--tw-duration:.2s;transition-duration:.2s}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}:where(.divide-x-reverse>:not(:last-child)){--tw-divide-x-reverse:1}.ring-inset{--tw-ring-inset:inset}@media(hover:hover){.group-hover\:text-\[\#38bdac\]:is(:where(.group):hover *){color:#38bdac}.group-hover\:text-gray-400:is(:where(.group):hover *){color:var(--color-gray-400)}.group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}}.peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled~*){cursor:not-allowed}.peer-disabled\:opacity-70:is(:where(.peer):disabled~*){opacity:.7}.placeholder\:text-gray-500::placeholder{color:var(--color-gray-500)}.last\:border-b-0:last-child{border-bottom-style:var(--tw-border-style);border-bottom-width:0}@media(hover:hover){.hover\:border-\[\#38bdac\]\/30:hover{border-color:#38bdac4d}.hover\:border-\[\#38bdac\]\/50:hover{border-color:#38bdac80}.hover\:border-\[\#38bdac\]\/60:hover{border-color:#38bdac99}.hover\:border-\[\#38bdac\]\/70:hover{border-color:#38bdacb3}.hover\:border-blue-500\/60:hover{border-color:#3080ff99}@supports (color:color-mix(in lab,red,red)){.hover\:border-blue-500\/60:hover{border-color:color-mix(in oklab,var(--color-blue-500)60%,transparent)}}.hover\:border-gray-500:hover{border-color:var(--color-gray-500)}.hover\:border-gray-600:hover{border-color:var(--color-gray-600)}.hover\:border-orange-500\/50:hover{border-color:#fe6e0080}@supports (color:color-mix(in lab,red,red)){.hover\:border-orange-500\/50:hover{border-color:color-mix(in oklab,var(--color-orange-500)50%,transparent)}}.hover\:border-yellow-500\/60:hover{border-color:#edb20099}@supports (color:color-mix(in lab,red,red)){.hover\:border-yellow-500\/60:hover{border-color:color-mix(in oklab,var(--color-yellow-500)60%,transparent)}}.hover\:bg-\[\#0a1628\]:hover{background-color:#0a1628}.hover\:bg-\[\#0a1628\]\/80:hover{background-color:#0a1628cc}.hover\:bg-\[\#1a3050\]:hover{background-color:#1a3050}.hover\:bg-\[\#2da396\]:hover{background-color:#2da396}.hover\:bg-\[\#06AD51\]:hover{background-color:#06ad51}.hover\:bg-\[\#07C160\]\/10:hover{background-color:#07c1601a}.hover\:bg-\[\#20B2AA\]:hover{background-color:#20b2aa}.hover\:bg-\[\#38bdac\]\/10:hover{background-color:#38bdac1a}.hover\:bg-\[\#38bdac\]\/20:hover{background-color:#38bdac33}.hover\:bg-\[\#162840\]:hover{background-color:#162840}.hover\:bg-\[\#162840\]\/30:hover{background-color:#1628404d}.hover\:bg-\[\#162840\]\/50:hover{background-color:#16284080}.hover\:bg-amber-500\/10:hover{background-color:#f99c001a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-amber-500\/10:hover{background-color:color-mix(in oklab,var(--color-amber-500)10%,transparent)}}.hover\:bg-amber-500\/20:hover{background-color:#f99c0033}@supports (color:color-mix(in lab,red,red)){.hover\:bg-amber-500\/20:hover{background-color:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.hover\:bg-amber-600:hover{background-color:var(--color-amber-600)}.hover\:bg-blue-400\/10:hover{background-color:#54a2ff1a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-blue-400\/10:hover{background-color:color-mix(in oklab,var(--color-blue-400)10%,transparent)}}.hover\:bg-blue-500\/20:hover{background-color:#3080ff33}@supports (color:color-mix(in lab,red,red)){.hover\:bg-blue-500\/20:hover{background-color:color-mix(in oklab,var(--color-blue-500)20%,transparent)}}.hover\:bg-emerald-500\/20:hover{background-color:#00bb7f33}@supports (color:color-mix(in lab,red,red)){.hover\:bg-emerald-500\/20:hover{background-color:color-mix(in oklab,var(--color-emerald-500)20%,transparent)}}.hover\:bg-gray-500:hover{background-color:var(--color-gray-500)}.hover\:bg-gray-500\/20:hover{background-color:#6a728233}@supports (color:color-mix(in lab,red,red)){.hover\:bg-gray-500\/20:hover{background-color:color-mix(in oklab,var(--color-gray-500)20%,transparent)}}.hover\:bg-gray-700:hover{background-color:var(--color-gray-700)}.hover\:bg-gray-700\/50:hover{background-color:#36415380}@supports (color:color-mix(in lab,red,red)){.hover\:bg-gray-700\/50:hover{background-color:color-mix(in oklab,var(--color-gray-700)50%,transparent)}}.hover\:bg-gray-800:hover{background-color:var(--color-gray-800)}.hover\:bg-green-500\/20:hover{background-color:#00c75833}@supports (color:color-mix(in lab,red,red)){.hover\:bg-green-500\/20:hover{background-color:color-mix(in oklab,var(--color-green-500)20%,transparent)}}.hover\:bg-green-700:hover{background-color:var(--color-green-700)}.hover\:bg-orange-500\/10:hover{background-color:#fe6e001a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-orange-500\/10:hover{background-color:color-mix(in oklab,var(--color-orange-500)10%,transparent)}}.hover\:bg-orange-500\/20:hover{background-color:#fe6e0033}@supports (color:color-mix(in lab,red,red)){.hover\:bg-orange-500\/20:hover{background-color:color-mix(in oklab,var(--color-orange-500)20%,transparent)}}.hover\:bg-orange-600:hover{background-color:var(--color-orange-600)}.hover\:bg-purple-500\/10:hover{background-color:#ac4bff1a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-purple-500\/10:hover{background-color:color-mix(in oklab,var(--color-purple-500)10%,transparent)}}.hover\:bg-purple-500\/20:hover{background-color:#ac4bff33}@supports (color:color-mix(in lab,red,red)){.hover\:bg-purple-500\/20:hover{background-color:color-mix(in oklab,var(--color-purple-500)20%,transparent)}}.hover\:bg-purple-500\/30:hover{background-color:#ac4bff4d}@supports (color:color-mix(in lab,red,red)){.hover\:bg-purple-500\/30:hover{background-color:color-mix(in oklab,var(--color-purple-500)30%,transparent)}}.hover\:bg-red-500\/10:hover{background-color:#fb2c361a}@supports (color:color-mix(in lab,red,red)){.hover\:bg-red-500\/10:hover{background-color:color-mix(in oklab,var(--color-red-500)10%,transparent)}}.hover\:bg-red-500\/20:hover{background-color:#fb2c3633}@supports (color:color-mix(in lab,red,red)){.hover\:bg-red-500\/20:hover{background-color:color-mix(in oklab,var(--color-red-500)20%,transparent)}}.hover\:bg-red-700:hover{background-color:var(--color-red-700)}.hover\:bg-red-800\/50:hover{background-color:#9f071280}@supports (color:color-mix(in lab,red,red)){.hover\:bg-red-800\/50:hover{background-color:color-mix(in oklab,var(--color-red-800)50%,transparent)}}.hover\:bg-white\/5:hover{background-color:#ffffff0d}@supports (color:color-mix(in lab,red,red)){.hover\:bg-white\/5:hover{background-color:color-mix(in oklab,var(--color-white)5%,transparent)}}.hover\:bg-white\/20:hover{background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.hover\:bg-white\/20:hover{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.hover\:bg-yellow-500\/20:hover{background-color:#edb20033}@supports (color:color-mix(in lab,red,red)){.hover\:bg-yellow-500\/20:hover{background-color:color-mix(in oklab,var(--color-yellow-500)20%,transparent)}}.hover\:bg-yellow-500\/30:hover{background-color:#edb2004d}@supports (color:color-mix(in lab,red,red)){.hover\:bg-yellow-500\/30:hover{background-color:color-mix(in oklab,var(--color-yellow-500)30%,transparent)}}.hover\:text-\[\#2da396\]:hover{color:#2da396}.hover\:text-\[\#5fe0cd\]:hover{color:#5fe0cd}.hover\:text-\[\#38bdac\]:hover{color:#38bdac}.hover\:text-amber-200:hover{color:var(--color-amber-200)}.hover\:text-amber-300:hover{color:var(--color-amber-300)}.hover\:text-amber-400:hover{color:var(--color-amber-400)}.hover\:text-blue-300:hover{color:var(--color-blue-300)}.hover\:text-blue-400:hover{color:var(--color-blue-400)}.hover\:text-gray-300:hover{color:var(--color-gray-300)}.hover\:text-green-400:hover{color:var(--color-green-400)}.hover\:text-orange-400:hover{color:var(--color-orange-400)}.hover\:text-red-300:hover{color:var(--color-red-300)}.hover\:text-red-400:hover{color:var(--color-red-400)}.hover\:text-sky-200:hover{color:var(--color-sky-200)}.hover\:text-white:hover{color:var(--color-white)}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}}.focus\:border-\[\#38bdac\]:focus{border-color:#38bdac}.focus\:border-orange-500\/50:focus{border-color:#fe6e0080}@supports (color:color-mix(in lab,red,red)){.focus\:border-orange-500\/50:focus{border-color:color-mix(in oklab,var(--color-orange-500)50%,transparent)}}.focus\:bg-\[\#38bdac\]\/20:focus{background-color:#38bdac33}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-\[\#38bdac\]:focus{--tw-ring-color:#38bdac}.focus\:ring-amber-400:focus{--tw-ring-color:var(--color-amber-400)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-0:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-\[3px\]:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-\[\#38bdac\]:focus-visible{--tw-ring-color:#38bdac}.focus-visible\:ring-red-500:focus-visible{--tw-ring-color:var(--color-red-500)}.focus-visible\:ring-offset-0:focus-visible{--tw-ring-offset-width:0px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus-visible\:ring-offset-\[\#0a1628\]:focus-visible{--tw-ring-offset-color:#0a1628}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.active\:cursor-grabbing:active{cursor:grabbing}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-40:disabled{opacity:.4}.disabled\:opacity-50:disabled{opacity:.5}.has-\[\>svg\]\:px-2\.5:has(>svg){padding-inline:calc(var(--spacing)*2.5)}.has-\[\>svg\]\:px-3:has(>svg){padding-inline:calc(var(--spacing)*3)}.has-\[\>svg\]\:px-4:has(>svg){padding-inline:calc(var(--spacing)*4)}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--tw-translate-y:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[state\=active\]\:bg-\[\#07C160\]\/20[data-state=active]{background-color:#07c16033}.data-\[state\=active\]\:bg-\[\#26A17B\]\/20[data-state=active]{background-color:#26a17b33}.data-\[state\=active\]\:bg-\[\#38bdac\]\/20[data-state=active]{background-color:#38bdac33}.data-\[state\=active\]\:bg-\[\#1677FF\]\/20[data-state=active]{background-color:#1677ff33}.data-\[state\=active\]\:bg-\[\#003087\]\/20[data-state=active]{background-color:#00308733}.data-\[state\=active\]\:bg-amber-500\/20[data-state=active]{background-color:#f99c0033}@supports (color:color-mix(in lab,red,red)){.data-\[state\=active\]\:bg-amber-500\/20[data-state=active]{background-color:color-mix(in oklab,var(--color-amber-500)20%,transparent)}}.data-\[state\=active\]\:bg-purple-500\/20[data-state=active]{background-color:#ac4bff33}@supports (color:color-mix(in lab,red,red)){.data-\[state\=active\]\:bg-purple-500\/20[data-state=active]{background-color:color-mix(in oklab,var(--color-purple-500)20%,transparent)}}.data-\[state\=active\]\:font-medium[data-state=active]{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.data-\[state\=active\]\:text-\[\#07C160\][data-state=active]{color:#07c160}.data-\[state\=active\]\:text-\[\#26A17B\][data-state=active]{color:#26a17b}.data-\[state\=active\]\:text-\[\#38bdac\][data-state=active]{color:#38bdac}.data-\[state\=active\]\:text-\[\#169BD7\][data-state=active]{color:#169bd7}.data-\[state\=active\]\:text-\[\#1677FF\][data-state=active]{color:#1677ff}.data-\[state\=active\]\:text-amber-400[data-state=active]{color:var(--color-amber-400)}.data-\[state\=active\]\:text-purple-400[data-state=active]{color:var(--color-purple-400)}.data-\[state\=active\]\:shadow[data-state=active]{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.data-\[state\=checked\]\:translate-x-4[data-state=checked]{--tw-translate-x:calc(var(--spacing)*4);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[state\=checked\]\:bg-\[\#38bdac\][data-state=checked]{background-color:#38bdac}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked]{--tw-translate-x:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.data-\[state\=unchecked\]\:bg-gray-600[data-state=unchecked]{background-color:var(--color-gray-600)}@media(min-width:40rem){.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:justify-end{justify-content:flex-end}.sm\:gap-2{gap:calc(var(--spacing)*2)}.sm\:text-left{text-align:left}}@media(min-width:48rem){.md\:col-span-2{grid-column:span 2/span 2}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}}@media(min-width:64rem){.lg\:block{display:block}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}}@media(min-width:80rem){.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]){width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\[\&_tr\]\:border-b tr{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.\[\&_tr\:last-child\]\:border-0 tr:last-child{border-style:var(--tw-border-style);border-width:0}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){padding-right:calc(var(--spacing)*0)}.\[\&\>span\]\:line-clamp-1>span{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}}:root{--background:oklch(14.5% 0 0);--foreground:oklch(98.5% 0 0);--card:oklch(20% .02 240);--card-foreground:oklch(98.5% 0 0);--popover:oklch(20% .02 240);--popover-foreground:oklch(98.5% 0 0);--primary:oklch(65% .15 180);--primary-foreground:oklch(20% 0 0);--secondary:oklch(27% 0 0);--secondary-foreground:oklch(98.5% 0 0);--muted:oklch(27% 0 0);--muted-foreground:oklch(65% 0 0);--accent:oklch(27% 0 0);--accent-foreground:oklch(98.5% 0 0);--destructive:oklch(55% .2 25);--destructive-foreground:oklch(98.5% 0 0);--border:oklch(35% 0 0);--input:oklch(35% 0 0);--ring:oklch(65% .15 180);--radius:.625rem}body{font-family:var(--font-sans);color:var(--foreground);background:#0a1628}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-pan-x{syntax:"*";inherits:false}@property --tw-pan-y{syntax:"*";inherits:false}@property --tw-pinch-zoom{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-divide-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-ordinal{syntax:"*";inherits:false}@property --tw-slashed-zero{syntax:"*";inherits:false}@property --tw-numeric-figure{syntax:"*";inherits:false}@property --tw-numeric-spacing{syntax:"*";inherits:false}@property --tw-numeric-fraction{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}} diff --git a/soul-admin/dist/index.html b/soul-admin/dist/index.html index 778f4d5f..0a1b61ad 100644 --- a/soul-admin/dist/index.html +++ b/soul-admin/dist/index.html @@ -4,8 +4,8 @@ 管理后台 - Soul创业派对 - - + +
    diff --git a/soul-admin/src/pages/chapters/ChaptersPage.tsx b/soul-admin/src/pages/chapters/ChaptersPage.tsx index 93743ede..b16b77fd 100644 --- a/soul-admin/src/pages/chapters/ChaptersPage.tsx +++ b/soul-admin/src/pages/chapters/ChaptersPage.tsx @@ -1,4 +1,4 @@ -import toast from '@/utils/toast' +import toast from '@/utils/toast' import { useState, useEffect } from 'react' import { get, post } from '@/api/client' @@ -33,6 +33,13 @@ interface Stats { totalParts: number } +/** 篇内章区间(按章条数,非节数) */ +function chapterRangeLabel(chapterCount: number): string { + if (chapterCount <= 0) return '暂无章节' + if (chapterCount === 1) return '第1章' + return `第1章 ~ 第${chapterCount}章` +} + export function ChaptersPage() { const [structure, setStructure] = useState([]) const [stats, setStats] = useState(null) @@ -204,7 +211,8 @@ export function ChaptersPage() { {part.title} - ({part.chapters.reduce((acc, ch) => acc + (ch.sections?.length || 1), 0)} 节) + ({chapterRangeLabel(part.chapters.length)} ·{' '} + {part.chapters.reduce((acc, ch) => acc + (ch.sections?.length || 1), 0)} 节) {expandedParts.includes(part.id) ? '▲' : '▼'} diff --git a/soul-admin/src/pages/content/ChapterTree.tsx b/soul-admin/src/pages/content/ChapterTree.tsx index 15d9b3dc..36e600ad 100644 --- a/soul-admin/src/pages/content/ChapterTree.tsx +++ b/soul-admin/src/pages/content/ChapterTree.tsx @@ -12,6 +12,8 @@ export interface SectionItem { id: string title: string price: number + /** 数据库自增序号,仅作兜底展示 */ + mid?: number isFree?: boolean isNew?: boolean clickCount?: number @@ -34,6 +36,23 @@ export interface PartItem { type DragType = 'part' | 'chapter' | 'section' +function isPrefacePart(p: PartItem) { + return p.title === '序言' || p.title.includes('序言') +} + +/** 篇内按章数量展示:第1章 ~ 第n章(仅章数,与节数无关) */ +function sectionIdRangeSubtitle(part: PartItem): string { + const ids: string[] = [] + for (const ch of part.chapters) { + for (const s of ch.sections) { + ids.push(s.id) + } + } + if (ids.length === 0) return '暂无章节' + if (ids.length === 1) return ids[0] + return `${ids[0]}~${ids[ids.length - 1]}` +} + function parseDragData(data: string): { type: DragType; id: string } | null { if (data.startsWith('part:')) return { type: 'part', id: data.slice(5) } if (data.startsWith('chapter:')) return { type: 'chapter', id: data.slice(8) } @@ -84,6 +103,8 @@ export function ChapterTree({ const [draggingItem, setDraggingItem] = useState<{ type: DragType; id: string } | null>(null) const [dragOverTarget, setDragOverTarget] = useState<{ type: DragType; id: string } | null>(null) + // 章节ID/范围展示由数据本身决定,不再依赖“节序号”重新编号 + const isDragging = (type: DragType, id: string) => draggingItem?.type === type && draggingItem?.id === id const isDragOver = (type: DragType, id: string) => dragOverTarget?.type === type && dragOverTarget?.id === id @@ -267,6 +288,24 @@ export function ChapterTree({ const partLabel = (i: number) => PART_LABELS[i] ?? String(i + 1) + /** 篇角标:去掉序言后第一篇为「一」 */ + const bodyPartOrdinal = (partIndex: number) => + parts.slice(0, partIndex).filter((p) => !isPrefacePart(p)).length + + const sectionTitleLine = (section: SectionItem) => { + return ( + <> + + {section.id} + + {section.title} + + ) + } + return (
    {parts.map((part, partIndex) => { @@ -381,7 +420,7 @@ export function ChapterTree({

    {part.title}

    -

    共 {sectionCount} 节

    +

    {sectionIdRangeSubtitle(part)}

    )} - {chapterCount}章 + + {chapterCount} 章 · {sectionCount} 节 + {isExpanded ? ( ) : ( @@ -471,7 +512,9 @@ export function ChapterTree({ /> )} - {section.id} {section.title} + + {sectionTitleLine(section)} + {pinnedSectionIds.includes(section.id) && }
    e.stopPropagation()}> @@ -740,11 +783,11 @@ export function ChapterTree({
    - {partLabel(partIndex)} + {partLabel(bodyPartOrdinal(partIndex))}

    {part.title}

    -

    共 {sectionCount} 节

    +

    {sectionIdRangeSubtitle(part)}

    )} - {chapterCount}章 + + {chapterCount} 章 · {sectionCount} 节 + {isExpanded ? ( ) : ( @@ -873,8 +918,8 @@ export function ChapterTree({
    - - {section.id} {section.title} + + {sectionTitleLine(section)} {pinnedSectionIds.includes(section.id) && }
    diff --git a/soul-admin/src/pages/content/ContentPage.tsx b/soul-admin/src/pages/content/ContentPage.tsx index 7469d706..37d124a5 100644 --- a/soul-admin/src/pages/content/ContentPage.tsx +++ b/soul-admin/src/pages/content/ContentPage.tsx @@ -1,4 +1,4 @@ -import { useState, useRef, useEffect, useCallback } from 'react' +import { useState, useRef, useEffect, useCallback, useMemo } from 'react' import toast from '@/utils/toast' import { Card, @@ -129,7 +129,7 @@ interface EditingSection { editionPremium?: boolean } -function buildTree(sections: SectionListItem[]): Part[] { +function buildTree(sections: SectionListItem[], hotRankMap: Map): Part[] { const partMap = new Map< string, { id: string; title: string; chapters: Map } @@ -157,7 +157,7 @@ function buildTree(sections: SectionListItem[]): Part[] { clickCount: s.clickCount ?? 0, payCount: s.payCount ?? 0, hotScore: s.hotScore ?? 0, - hotRank: s.hotRank ?? 0, + hotRank: hotRankMap.get(s.id) ?? 0, }) } const parts = Array.from(partMap.values()).map((p) => ({ @@ -210,7 +210,17 @@ export function ContentPage() { const [editingPart, setEditingPart] = useState<{ id: string; title: string } | null>(null) const [isSavingPartTitle, setIsSavingPartTitle] = useState(false) const [showNewPartModal, setShowNewPartModal] = useState(false) - const [editingChapter, setEditingChapter] = useState<{ part: Part; chapter: Chapter; title: string } | null>(null) + const [editingChapter, setEditingChapter] = useState<{ + part: Part + chapter: Chapter + title: string + price: number + isFree: boolean + priceMixed: boolean + initialTitle: string + initialPrice: number + initialIsFree: boolean + } | null>(null) const [isSavingChapterTitle, setIsSavingChapterTitle] = useState(false) const [selectedSectionIds, setSelectedSectionIds] = useState([]) const [showBatchMoveModal, setShowBatchMoveModal] = useState(false) @@ -267,7 +277,16 @@ export function ContentPage() { const [ckbLeadLoading, setCkbLeadLoading] = useState(false) const richEditorRef = useRef(null) - const tree = buildTree(sectionsList) + const hotRankMap = useMemo(() => { + const m = new Map() + rankedSectionsList.forEach((s, idx) => { + // 排名展示从 1 开始,避免出现“第0名” + m.set(s.id, idx + 1) + }) + return m + }, [rankedSectionsList]) + + const tree = buildTree(sectionsList, hotRankMap) const totalSections = sectionsList.length // 内容排行榜:排序与置顶由后端 API 统一计算,前端只展示 @@ -914,40 +933,98 @@ export function ContentPage() { } const handleEditChapter = (part: Part, chapter: Chapter) => { - setEditingChapter({ part, chapter, title: chapter.title }) + const secs = chapter.sections + let price = 1 + let isFree = false + let priceMixed = false + if (secs.length > 0) { + const p0 = typeof secs[0].price === 'number' ? secs[0].price : Number(secs[0].price) || 1 + const f0 = !!(secs[0].isFree || p0 === 0) + priceMixed = secs.some((s) => { + const p = typeof s.price === 'number' ? s.price : Number(s.price) || 1 + const f = !!(s.isFree || p === 0) + return p !== p0 || f !== f0 + }) + price = f0 ? 0 : p0 + isFree = f0 + } + setEditingChapter({ + part, + chapter, + title: chapter.title, + price, + isFree, + priceMixed, + initialTitle: chapter.title, + initialPrice: price, + initialIsFree: isFree, + }) } const handleSaveChapterTitle = async () => { if (!editingChapter?.title?.trim()) return + const ec = editingChapter + const newTitle = ec.title.trim() + const titleChanged = newTitle !== ec.initialTitle + const priceChanged = + ec.isFree !== ec.initialIsFree || + (!ec.isFree && Number(ec.price) !== Number(ec.initialPrice)) + + if (!titleChanged && !priceChanged) { + toast.info('未修改任何内容') + setEditingChapter(null) + return + } + + if (ec.priceMixed && priceChanged) { + const n = ec.chapter.sections.length + const tip = ec.isFree ? '全部设为免费' : `全部设为 ¥${ec.price}` + if (!confirm(`本章 ${n} 节当前定价不一致,保存后将${tip},确定?`)) return + } + setIsSavingChapterTitle(true) try { - const items = sectionsList.map((s) => ({ - id: s.id, - partId: s.partId || editingChapter.part.id, - partTitle: s.partId === editingChapter.part.id ? editingChapter.part.title : (s.partTitle || ''), - chapterId: s.chapterId || editingChapter.chapter.id, - chapterTitle: - s.partId === editingChapter.part.id && s.chapterId === editingChapter.chapter.id - ? editingChapter.title.trim() - : (s.chapterTitle || ''), - })) - const res = await put<{ success?: boolean; error?: string }>('/api/db/book', { action: 'reorder', items }) - if (res && (res as { success?: boolean }).success !== false) { - const newTitle = editingChapter.title.trim() - const partId = editingChapter.part.id - const chapterId = editingChapter.chapter.id + if (titleChanged) { + const items = sectionsList.map((s) => ({ + id: s.id, + partId: s.partId || ec.part.id, + partTitle: s.partId === ec.part.id ? ec.part.title : (s.partTitle || ''), + chapterId: s.chapterId || ec.chapter.id, + chapterTitle: + s.partId === ec.part.id && s.chapterId === ec.chapter.id ? newTitle : (s.chapterTitle || ''), + })) + const res = await put<{ success?: boolean; error?: string }>('/api/db/book', { action: 'reorder', items }) + if (res && (res as { success?: boolean }).success === false) { + toast.error('保存章节名失败: ' + (res && typeof res === 'object' && 'error' in res ? (res as { error?: string }).error : '未知错误')) + return + } + const partId = ec.part.id + const chapterId = ec.chapter.id setSectionsList((prev) => prev.map((s) => - s.partId === partId && s.chapterId === chapterId - ? { ...s, chapterTitle: newTitle } - : s + s.partId === partId && s.chapterId === chapterId ? { ...s, chapterTitle: newTitle } : s ) ) - setEditingChapter(null) - loadList() - } else { - toast.error('保存失败: ' + (res && typeof res === 'object' && 'error' in res ? (res as { error?: string }).error : '未知错误')) } + + if (priceChanged) { + const res2 = await put<{ success?: boolean; error?: string; affected?: number }>('/api/db/book', { + action: 'update-chapter-pricing', + partId: ec.part.id, + chapterId: ec.chapter.id, + price: ec.isFree ? 0 : Number(ec.price) || 0, + isFree: ec.isFree, + }) + if (res2 && (res2 as { success?: boolean }).success === false) { + toast.error('保存定价失败: ' + (res2 && typeof res2 === 'object' && 'error' in res2 ? (res2 as { error?: string }).error : '未知错误')) + if (titleChanged) loadList() + return + } + } + + setEditingChapter(null) + loadList() + toast.success('已保存') } catch (e) { console.error(e) toast.error('保存失败') @@ -1471,14 +1548,17 @@ export function ContentPage() { - {/* 编辑章节名称弹窗 */} + {/* 编辑章节:名称 + 本章统一定价(对齐新版管理端能力) */} !open && setEditingChapter(null)}> - 编辑章节名称 + 章节设置 +

    + 修改本章显示名称,或为本章下全部节设置统一金额(仍可在单节编辑里单独改某一节)。 +

    {editingChapter && (
    @@ -1491,6 +1571,47 @@ export function ContentPage() { placeholder="输入章节名称" />
    +
    + + {editingChapter.priceMixed && ( +

    当前各节定价不一致,保存后将按下方设置全部统一。

    + )} +
    +
    + 价格 (元) + + setEditingChapter({ + ...editingChapter, + price: Number(e.target.value), + isFree: Number(e.target.value) === 0, + }) + } + disabled={editingChapter.isFree} + min={0} + step={0.01} + /> +
    + +
    +
    )} diff --git a/soul-admin/src/pages/dashboard/DashboardPage.tsx b/soul-admin/src/pages/dashboard/DashboardPage.tsx index 89f95ca1..f5edf09c 100644 --- a/soul-admin/src/pages/dashboard/DashboardPage.tsx +++ b/soul-admin/src/pages/dashboard/DashboardPage.tsx @@ -1,7 +1,7 @@ import { useState, useEffect } from 'react' import { useNavigate } from 'react-router-dom' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' -import { Users, BookOpen, ShoppingBag, TrendingUp, RefreshCw, ChevronRight, BarChart3 } from 'lucide-react' +import { Users, BookOpen, ShoppingBag, TrendingUp, RefreshCw, ChevronRight, BarChart3, UserPlus } from 'lucide-react' import { get } from '@/api/client' import { UserDetailModal } from '@/components/modules/user/UserDetailModal' @@ -77,6 +77,7 @@ export function DashboardPage() { const [showDetailModal, setShowDetailModal] = useState(false) const [giftedTotal, setGiftedTotal] = useState(0) const [ordersExpanded, setOrdersExpanded] = useState(false) + const [ckbStats, setCkbStats] = useState<{ ckbTotal?: number; withContact?: number } | null>(null) const [trackPeriod, setTrackPeriod] = useState('week') const [trackStats, setTrackStats] = useState<{ total: number @@ -134,6 +135,18 @@ export function DashboardPage() { // 不影响主面板 } + // 加载获客信息(存客宝计划统计) + try { + const ckbRes = await get<{ success?: boolean; data?: { ckbTotal?: number; withContact?: number } }>('/api/db/ckb-plan-stats', init) + if (ckbRes?.success && ckbRes.data) { + setCkbStats({ ckbTotal: ckbRes.data.ckbTotal ?? 0, withContact: ckbRes.data.withContact ?? 0 }) + } else { + setCkbStats(null) + } + } catch { + setCkbStats(null) + } + // 2. 并行加载订单和用户 setOrdersLoading(true) setUsersLoading(true) @@ -303,6 +316,15 @@ export function DashboardPage() { bg: 'bg-orange-500/20', link: '/distribution', }, + { + title: '存客宝获客', + value: ckbStats ? ckbStats.ckbTotal ?? 0 : null, + sub: ckbStats?.withContact != null ? `含联系方式 ${ckbStats.withContact} 人` : null, + icon: UserPlus, + color: 'text-cyan-400', + bg: 'bg-cyan-500/20', + link: '/users?tab=leads', + }, ] return ( diff --git a/soul-admin/src/pages/distribution/DistributionPage.tsx b/soul-admin/src/pages/distribution/DistributionPage.tsx index ac0c020c..f1e12bed 100644 --- a/soul-admin/src/pages/distribution/DistributionPage.tsx +++ b/soul-admin/src/pages/distribution/DistributionPage.tsx @@ -1,5 +1,4 @@ import toast from '@/utils/toast' -import { normalizeImageUrl } from '@/lib/utils' import { useState, useEffect } from 'react' import { Users, @@ -11,11 +10,13 @@ import { RefreshCw, CheckCircle, XCircle, + Calendar, DollarSign, Link2, Eye, Undo2, Settings, + Zap, } from 'lucide-react' import { ReferralSettingsPage } from '@/pages/referral-settings/ReferralSettingsPage' import { Pagination } from '@/components/ui/Pagination' @@ -23,6 +24,7 @@ import { Button } from '@/components/ui/button' import { Input } from '@/components/ui/input' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' +import { Switch } from '@/components/ui/switch' import { Dialog, DialogContent, @@ -86,6 +88,7 @@ interface Withdrawal { account?: string name?: string status: string + remark?: string createdAt?: string processedAt?: string } @@ -146,6 +149,8 @@ export function DistributionPage() { const [rejectWithdrawalId, setRejectWithdrawalId] = useState(null) const [rejectReason, setRejectReason] = useState('') const [rejectLoading, setRejectLoading] = useState(false) + const [enableAutoApprove, setEnableAutoApprove] = useState(false) + const [autoApproveLoading, setAutoApproveLoading] = useState(false) const [giftPayRequests, setGiftPayRequests] = useState { + if (activeTab === 'withdrawals') loadAutoApprove() + }, [activeTab]) + async function loadInitialData() { setError(null) try { @@ -408,6 +417,39 @@ export function DistributionPage() { } } + async function loadAutoApprove() { + try { + const data = await get<{ success?: boolean; enableAutoApprove?: boolean }>( + '/api/admin/withdrawals/auto-approve' + ) + if (data?.success && typeof data.enableAutoApprove === 'boolean') { + setEnableAutoApprove(data.enableAutoApprove) + } + } catch { + // ignore + } + } + + async function toggleAutoApprove(checked: boolean) { + setAutoApproveLoading(true) + try { + const data = await put<{ success?: boolean; error?: string }>( + '/api/admin/withdrawals/auto-approve', + { enableAutoApprove: checked } + ) + if (data?.success) { + setEnableAutoApprove(checked) + toast.success(checked ? '已开启自动审批,新提现将自动打款' : '已关闭自动审批') + } else { + toast.error('更新失败: ' + (data?.error ?? '')) + } + } catch { + toast.error('更新失败') + } finally { + setAutoApproveLoading(false) + } + } + function closeRejectDialog() { if (rejectWithdrawalId) toast.info('已取消操作') setRejectWithdrawalId(null) @@ -555,128 +597,290 @@ export function DistributionPage() { ) : ( <> {activeTab === 'overview' && overview && ( -
    - {/* 今日核心指标 - 一行紧凑 */} -
    - {[ - { label: '今日点击', value: overview.todayClicks, icon: Eye, color: 'blue' }, - { label: '独立用户', value: overview.todayUniqueVisitors ?? 0, icon: Users, color: 'cyan' }, - { label: '人均点击', value: (overview.todayClickRate ?? 0).toFixed(1), icon: TrendingUp, color: 'amber' }, - { label: '今日绑定', value: overview.todayBindings, icon: Link2, color: 'green' }, - { label: '今日转化', value: overview.todayConversions, icon: CheckCircle, color: 'purple' }, - { label: '今日佣金', value: `¥${overview.todayEarnings.toFixed(2)}`, icon: DollarSign, color: 'teal', isMoney: true }, - ].map((item) => ( - - -
    -

    {item.label}

    - +
    +
    + + +
    +
    +

    今日点击

    +

    {overview.todayClicks}

    +

    总点击次数(实时)

    -

    {item.value}

    - - - ))} -
    - - {/* 文章点击 + 提醒 并排 */} -
    - {/* 文章点击表 */} - - -

    - 今日文章点击分布 -

    - {(overview.todayClicksByPage?.length ?? 0) > 0 ? ( -
    - {[...(overview.todayClicksByPage ?? [])].sort((a, b) => b.clicks - a.clicks).map((row, i) => ( -
    - {row.page || '(未区分)'} -
    - {row.clicks} - {overview.todayClicks > 0 ? ((row.clicks / overview.todayClicks) * 100).toFixed(1) : 0}% -
    -
    - ))} +
    +
    - ) : ( -

    今日暂无点击数据

    - )} +
    - - {/* 提醒卡片 */} -
    - - -
    - -
    -

    即将过期

    -

    {overview.expiringBindings} 个

    -

    7天内到期

    -
    + + +
    +
    +

    今日独立用户

    +

    {overview.todayUniqueVisitors ?? 0}

    +

    去重访客数(实时)

    - - - setActiveTab('withdrawals')}> - -
    - -
    -

    待审核提现

    -

    {overview.pendingWithdrawals} 笔

    -

    共 ¥{overview.pendingWithdrawAmount.toFixed(2)} →

    -
    +
    +
    - - -
    +
    +
    +
    + + +
    +
    +

    今日总文章点击率

    +

    + {(overview.todayClickRate ?? 0).toFixed(2)} +

    +

    人均点击(总点击/独立用户)

    +
    +
    + +
    +
    +
    +
    + + +
    +
    +

    今日绑定

    +

    {overview.todayBindings}

    +
    +
    + +
    +
    +
    +
    + + +
    +
    +

    今日转化

    +

    {overview.todayConversions}

    +
    +
    + +
    +
    +
    +
    + + +
    +
    +

    今日佣金

    +

    + ¥{overview.todayEarnings.toFixed(2)} +

    +
    +
    + +
    +
    +
    +
    +
    + + {/* 每篇文章今日点击 */} + {(overview.todayClicksByPage?.length ?? 0) > 0 && ( + + +
    +
    + + + 每篇文章今日点击(按来源页/文章统计) + +

    实际用户与实际文章的点击均计入;今日总点击与上表一致

    +
    + +
    +
    + +
    + + + + + + + + + + {[...(overview.todayClicksByPage ?? [])] + .sort((a, b) => b.clicks - a.clicks) + .map((row, i) => ( + + + + + + ))} + +
    来源页/文章今日点击占比
    {row.page || '(未区分)'}{row.clicks} + {overview.todayClicks > 0 + ? ((row.clicks / overview.todayClicks) * 100).toFixed(1) + : 0} + % +
    +
    +
    +
    + )} + +
    + + +
    +
    + +
    +
    +

    即将过期绑定

    +

    {overview.expiringBindings} 个

    +

    7天内到期,需关注转化

    +
    +
    +
    +
    + + +
    +
    + +
    +
    +

    待审核提现

    +

    {overview.pendingWithdrawals} 笔

    +

    + 共 ¥{overview.pendingWithdrawAmount.toFixed(2)} +

    +
    + +
    +
    +
    +
    + +
    + + + + + 本月统计 + + + +
    +
    +

    点击量

    +

    {overview.monthClicks}

    +
    +
    +

    绑定数

    +

    {overview.monthBindings}

    +
    +
    +

    转化数

    +

    {overview.monthConversions}

    +
    +
    +

    佣金

    +

    + ¥{overview.monthEarnings.toFixed(2)} +

    +
    +
    +
    +
    + + + + + 累计统计 + + + +
    +
    +

    总点击

    +

    + {overview.totalClicks.toLocaleString()} +

    +
    +
    +

    总绑定

    +

    + {overview.totalBindings.toLocaleString()} +

    +
    +
    +

    总转化

    +

    {overview.totalConversions}

    +
    +
    +

    总佣金

    +

    + ¥{overview.totalEarnings.toFixed(2)} +

    +
    +
    +
    + 点击转化率 + + {overview.conversionRate}% + +
    +
    +
    - {/* 本月/累计/推广 合并成一张表 */} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    指标本月累计
    点击量{overview.monthClicks}{overview.totalClicks.toLocaleString()}
    绑定数{overview.monthBindings}{overview.totalBindings.toLocaleString()}
    转化数{overview.monthConversions}{overview.totalConversions}
    佣金¥{overview.monthEarnings.toFixed(2)}¥{overview.totalEarnings.toFixed(2)}
    转化率{overview.conversionRate}%
    -
    - 推广用户 {overview.totalDistributors} - 有收益 {overview.activeDistributors} - 佣金比例 90% - 绑定有效期 30天 + + + + 推广统计 + + + +
    +
    +

    {overview.totalDistributors}

    +

    推广用户数

    +
    +
    +

    {overview.activeDistributors}

    +

    有收益用户

    +
    +
    +

    90%

    +

    佣金比例

    +
    +
    +

    30天

    +

    绑定有效期

    +
    @@ -685,8 +889,8 @@ export function DistributionPage() { {activeTab === 'orders' && (
    -
    -
    +
    +
    setStatusFilter(e.target.value)} - className="px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white" + className="px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white shrink-0" > @@ -706,6 +910,16 @@ export function DistributionPage() { +
    @@ -882,8 +1096,8 @@ export function DistributionPage() { {activeTab === 'bindings' && (
    -
    -
    +
    +
    setStatusFilter(e.target.value)} - className="px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white" + className="px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white shrink-0" > +
    @@ -985,8 +1209,8 @@ export function DistributionPage() { {activeTab === 'withdrawals' && (
    -
    -
    +
    +
    setStatusFilter(e.target.value)} - className="px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white" + className="px-4 py-2 bg-[#0f2137] border border-gray-700 rounded-lg text-white shrink-0" > +
    + + 自动审批 + +
    +
    @@ -1021,6 +1265,7 @@ export function DistributionPage() { 收款账号 申请时间 状态 + 备注 操作 @@ -1031,7 +1276,7 @@ export function DistributionPage() {
    {withdrawal.userAvatar ? ( @@ -1075,6 +1320,18 @@ export function DistributionPage() { : '-'} {getStatusBadge(withdrawal.status)} + + + {withdrawal.remark || '-'} + + {withdrawal.status === 'pending' && (
    @@ -1142,8 +1399,14 @@ export function DistributionPage() { -
    diff --git a/soul-admin/src/pages/referral-settings/ReferralSettingsPage.tsx b/soul-admin/src/pages/referral-settings/ReferralSettingsPage.tsx index 93694107..e70e1c6a 100644 --- a/soul-admin/src/pages/referral-settings/ReferralSettingsPage.tsx +++ b/soul-admin/src/pages/referral-settings/ReferralSettingsPage.tsx @@ -1,4 +1,4 @@ -import toast from '@/utils/toast' +import toast from '@/utils/toast' import { useState, useEffect } from 'react' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card' import { Label } from '@/components/ui/label' @@ -15,6 +15,7 @@ interface ReferralConfig { minWithdrawAmount: number bindingDays: number userDiscount: number + withdrawFee: number enableAutoWithdraw: boolean vipOrderShareVip: number vipOrderShareNonVip: number @@ -25,6 +26,7 @@ const DEFAULT: ReferralConfig = { minWithdrawAmount: 10, bindingDays: 30, userDiscount: 5, + withdrawFee: 5, enableAutoWithdraw: false, vipOrderShareVip: 20, vipOrderShareNonVip: 10, @@ -49,6 +51,7 @@ export function ReferralSettingsPage(_props?: ReferralSettingsPageProps & { embe minWithdrawAmount: c.minWithdrawAmount ?? 10, bindingDays: c.bindingDays ?? 30, userDiscount: c.userDiscount ?? 5, + withdrawFee: c.withdrawFee ?? 5, enableAutoWithdraw: c.enableAutoWithdraw ?? false, vipOrderShareVip: c.vipOrderShareVip ?? 20, vipOrderShareNonVip: c.vipOrderShareNonVip ?? 10, @@ -67,6 +70,7 @@ export function ReferralSettingsPage(_props?: ReferralSettingsPageProps & { embe minWithdrawAmount: Number(config.minWithdrawAmount) || 0, bindingDays: Number(config.bindingDays) || 0, userDiscount: Number(config.userDiscount) || 0, + withdrawFee: Number(config.withdrawFee) ?? 5, enableAutoWithdraw: Boolean(config.enableAutoWithdraw), vipOrderShareVip: Number(config.vipOrderShareVip) || 20, vipOrderShareNonVip: Number(config.vipOrderShareNonVip) || 10, @@ -265,6 +269,22 @@ export function ReferralSettingsPage(_props?: ReferralSettingsPageProps & { embe

    +
    + + +

    + 批准提现时按此比例扣除后打款,如 5 表示申请 100 元实际到账 95 元。 +

    +
    +