Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4fb551106a | |||
| 7ee9be8e11 | |||
| f4b1f61bc2 | |||
| 7a7624866f | |||
| e5948cd346 | |||
| 929b838e0f | |||
| 1f8b539b68 | |||
| ce72892dc8 | |||
| 45b149ad58 | |||
| 1564d2dd30 | |||
| 1ea483016f | |||
| 4c6aeb3e6c | |||
| 13abfc1e52 | |||
| 13d0d7707a | |||
| 6ae9f49b4c | |||
| ea23f6264c | |||
| d0ba581184 | |||
| 5c956c195b | |||
| 4578116a30 | |||
| 45177e9fad | |||
| 2ca790abf9 | |||
| 2bce9a59c6 | |||
| 180f7a9baa |
@@ -1,66 +0,0 @@
|
|||||||
name: API Docker Image
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches: [main, develop]
|
|
||||||
paths:
|
|
||||||
- "apps/api/**"
|
|
||||||
- ".github/workflows/api-docker-image.yml"
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
paths:
|
|
||||||
- "apps/api/**"
|
|
||||||
- ".github/workflows/api-docker-image.yml"
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: api-docker-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-and-publish:
|
|
||||||
name: Build API Docker Image
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Check Dockerfile
|
|
||||||
id: dockerfile
|
|
||||||
run: |
|
|
||||||
if [ -f apps/api/Dockerfile ]; then
|
|
||||||
echo "exists=true" >> "$GITHUB_OUTPUT"
|
|
||||||
else
|
|
||||||
echo "exists=false" >> "$GITHUB_OUTPUT"
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Setup Docker Buildx
|
|
||||||
if: steps.dockerfile.outputs.exists == 'true'
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
|
||||||
if: steps.dockerfile.outputs.exists == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ github.actor }}
|
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build (PR/manual) or Build and Push (main)
|
|
||||||
if: steps.dockerfile.outputs.exists == 'true'
|
|
||||||
uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
context: ./apps/api
|
|
||||||
file: ./apps/api/Dockerfile
|
|
||||||
push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
|
|
||||||
tags: |
|
|
||||||
ghcr.io/${{ github.repository }}/api:${{ github.sha }}
|
|
||||||
ghcr.io/${{ github.repository }}/api:latest
|
|
||||||
|
|
||||||
- name: Skip notice
|
|
||||||
if: steps.dockerfile.outputs.exists != 'true'
|
|
||||||
run: echo "apps/api/Dockerfile not found, skip docker build."
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
name: Deploy Admin
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
paths:
|
|
||||||
- "apps/admin/**"
|
|
||||||
- "packages/shared-types/**"
|
|
||||||
- "packages/ui/**"
|
|
||||||
- ".github/workflows/deploy-admin.yml"
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: deploy-admin-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build Admin
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup pnpm
|
|
||||||
uses: pnpm/action-setup@v4
|
|
||||||
with:
|
|
||||||
version: 9.15.2
|
|
||||||
|
|
||||||
- name: Setup Node.js
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20
|
|
||||||
cache: pnpm
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: pnpm install --frozen-lockfile
|
|
||||||
|
|
||||||
- name: Build workspace
|
|
||||||
run: pnpm run build
|
|
||||||
|
|
||||||
deploy:
|
|
||||||
name: Deploy Admin (Template)
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: build
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Trigger deployment webhook
|
|
||||||
env:
|
|
||||||
ADMIN_DEPLOY_WEBHOOK_URL: ${{ secrets.ADMIN_DEPLOY_WEBHOOK_URL }}
|
|
||||||
run: |
|
|
||||||
if [ -z "$ADMIN_DEPLOY_WEBHOOK_URL" ]; then
|
|
||||||
echo "ADMIN_DEPLOY_WEBHOOK_URL is not configured. Skipping deploy."
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
curl -X POST "$ADMIN_DEPLOY_WEBHOOK_URL"
|
|
||||||
echo "Admin deployment webhook triggered."
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
name: Deploy Web
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
paths:
|
|
||||||
- "apps/web/**"
|
|
||||||
- "packages/shared-types/**"
|
|
||||||
- "packages/ui/**"
|
|
||||||
- ".github/workflows/deploy-web.yml"
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: deploy-web-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
name: Build Web
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup pnpm
|
|
||||||
uses: pnpm/action-setup@v4
|
|
||||||
with:
|
|
||||||
version: 9.15.2
|
|
||||||
|
|
||||||
- name: Setup Node.js
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20
|
|
||||||
cache: pnpm
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: pnpm install --frozen-lockfile
|
|
||||||
|
|
||||||
- name: Build workspace
|
|
||||||
run: pnpm run build
|
|
||||||
|
|
||||||
deploy:
|
|
||||||
name: Deploy Web (Template)
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: build
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Trigger deployment webhook
|
|
||||||
env:
|
|
||||||
WEB_DEPLOY_WEBHOOK_URL: ${{ secrets.WEB_DEPLOY_WEBHOOK_URL }}
|
|
||||||
run: |
|
|
||||||
if [ -z "$WEB_DEPLOY_WEBHOOK_URL" ]; then
|
|
||||||
echo "WEB_DEPLOY_WEBHOOK_URL is not configured. Skipping deploy."
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
curl -X POST "$WEB_DEPLOY_WEBHOOK_URL"
|
|
||||||
echo "Web deployment webhook triggered."
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
name: PR Quality
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types: [opened, synchronize, reopened, ready_for_review]
|
|
||||||
branches: [main, develop]
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: pr-quality-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
quality:
|
|
||||||
name: Lint, Typecheck, Test, Build
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: github.event.pull_request.draft == false
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup pnpm
|
|
||||||
uses: pnpm/action-setup@v4
|
|
||||||
with:
|
|
||||||
version: 9.15.2
|
|
||||||
|
|
||||||
- name: Setup Node.js
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20
|
|
||||||
cache: pnpm
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: pnpm install --frozen-lockfile
|
|
||||||
|
|
||||||
- name: Lint
|
|
||||||
run: pnpm run lint
|
|
||||||
|
|
||||||
- name: Typecheck
|
|
||||||
run: pnpm run typecheck
|
|
||||||
|
|
||||||
- name: Test
|
|
||||||
run: pnpm run test
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: pnpm run build
|
|
||||||
+1
-5
@@ -1,6 +1,2 @@
|
|||||||
develop.md
|
develop.md
|
||||||
node_modules/
|
.idea/
|
||||||
.turbo/
|
|
||||||
.idea/
|
|
||||||
.eslintcache
|
|
||||||
/.husky/_
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
pnpm lint:staged
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
pnpm typecheck
|
|
||||||
pnpm test
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
"*.{js,mjs,cjs,ts,tsx}": ["eslint --fix", "prettier --write"],
|
|
||||||
"*.{json,md,yml,yaml}": ["prettier --write"]
|
|
||||||
};
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
node_modules
|
|
||||||
.turbo
|
|
||||||
.idea
|
|
||||||
dist
|
|
||||||
build
|
|
||||||
coverage
|
|
||||||
*.png
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
{
|
|
||||||
"semi": true,
|
|
||||||
"singleQuote": false,
|
|
||||||
"trailingComma": "none",
|
|
||||||
"printWidth": 100
|
|
||||||
}
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
# 贡献指南(Contributing)
|
|
||||||
|
|
||||||
本文档定义 TodoList 仓库的协作规范,所有贡献者提交代码前请先阅读。
|
|
||||||
|
|
||||||
## 1. 分支模型
|
|
||||||
|
|
||||||
- 长期分支:
|
|
||||||
- `main`:生产稳定分支
|
|
||||||
- `develop`:开发集成分支
|
|
||||||
- 功能分支:
|
|
||||||
- 命名:`feature/<phase>-<name>`
|
|
||||||
- 示例:`feature/p1-code-quality-hooks`
|
|
||||||
- 其他分支:
|
|
||||||
- `release/<version>`
|
|
||||||
- `hotfix/<issue-id>-<short-desc>`
|
|
||||||
|
|
||||||
## 2. 提交流程
|
|
||||||
|
|
||||||
1. 从目标基线分支切出功能分支。
|
|
||||||
2. 每完成一个小功能,提交一个最小 commit。
|
|
||||||
3. 完成后推送分支并创建 PR。
|
|
||||||
4. 通过 Code Review 后再合并到目标分支。
|
|
||||||
|
|
||||||
## 3. Commit 规范
|
|
||||||
|
|
||||||
- 使用 Conventional Commits:
|
|
||||||
- `feat(scope): ...`
|
|
||||||
- `fix(scope): ...`
|
|
||||||
- `chore(scope): ...`
|
|
||||||
- `docs(scope): ...`
|
|
||||||
- `test(scope): ...`
|
|
||||||
- `ci(scope): ...`
|
|
||||||
- 要求:
|
|
||||||
- commit 粒度最小化,不要把多个不相关改动塞进一个提交。
|
|
||||||
- commit 必须可回滚、可解释。
|
|
||||||
- 默认使用 GPG 签名提交:`git commit -S`。
|
|
||||||
|
|
||||||
## 4. PR 规范
|
|
||||||
|
|
||||||
- PR 标题简明描述变更目标。
|
|
||||||
- PR 描述至少包含:
|
|
||||||
- 变更概述
|
|
||||||
- 具体改动
|
|
||||||
- 测试结果
|
|
||||||
- 风险评估
|
|
||||||
- 回滚方案
|
|
||||||
- 一个 PR 只解决一类问题,避免“超大 PR”。
|
|
||||||
|
|
||||||
## 5. 代码质量检查
|
|
||||||
|
|
||||||
提交前建议至少执行:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pnpm install
|
|
||||||
pnpm run lint
|
|
||||||
pnpm run typecheck
|
|
||||||
pnpm run test
|
|
||||||
```
|
|
||||||
|
|
||||||
说明:
|
|
||||||
|
|
||||||
- `pre-commit` 会自动执行 `lint-staged`。
|
|
||||||
- `pre-push` 会自动执行 `typecheck + test`。
|
|
||||||
|
|
||||||
## 6. 变更边界要求
|
|
||||||
|
|
||||||
- 不要提交无关文件(例如本地 IDE 缓存、临时导出文件)。
|
|
||||||
- 不要随意修改与当前任务无关的历史代码。
|
|
||||||
- 如发现仓库出现非本人预期改动,先暂停并和维护者确认。
|
|
||||||
@@ -71,23 +71,23 @@
|
|||||||
|
|
||||||
> 状态说明:`[x]` 已完成,`[ ]` 进行中/未开始(请随开发进度更新)
|
> 状态说明:`[x]` 已完成,`[ ]` 进行中/未开始(请随开发进度更新)
|
||||||
|
|
||||||
| 顺序 | 功能实现项(用户视角) | 你会看到的效果 | 状态 |
|
| 顺序 | 功能实现项(用户视角) | 你会看到的效果 | 状态 |
|
||||||
| ---- | ---------------------------------- | --------------------------------------- | ---- |
|
|---|---|---|---|
|
||||||
| 1 | 明确产品能力与交互流程 | 确认 TodoList 的核心使用方式与页面路径 | [x] |
|
| 1 | 明确产品能力与交互流程 | 确认 TodoList 的核心使用方式与页面路径 | [x] |
|
||||||
| 2 | 实现基础登录(邮箱验证码) | 可以注册/登录并进入主页面 | [x] |
|
| 2 | 实现基础登录(邮箱验证码) | 可以注册/登录并进入主页面 | [ ] |
|
||||||
| 3 | 实现任务基础能力(增删改查) | 可以创建、编辑、删除、完成任务 | [x] |
|
| 3 | 实现任务基础能力(增删改查) | 可以创建、编辑、删除、完成任务 | [ ] |
|
||||||
| 4 | 实现富文本与媒体内容 | 任务详情可插入图片、视频、链接等内容 | [x] |
|
| 4 | 实现富文本与媒体内容 | 任务详情可插入图片、视频、链接等内容 | [ ] |
|
||||||
| 5 | 实现本地离线存储(Dexie) | 无网时仍可打开并编辑任务 | [ ] |
|
| 5 | 实现本地离线存储(Dexie) | 无网时仍可打开并编辑任务 | [ ] |
|
||||||
| 6 | 实现云端同步与冲突处理 | 恢复网络后自动同步,冲突按规则合并 | [ ] |
|
| 6 | 实现云端同步与冲突处理 | 恢复网络后自动同步,冲突按规则合并 | [ ] |
|
||||||
| 7 | 实现提醒系统(邮件) | DDL 临近时收到邮件提醒 | [ ] |
|
| 7 | 实现提醒系统(邮件) | DDL 临近时收到邮件提醒 | [ ] |
|
||||||
| 8 | 实现 AI 问答(用户自带 Key) | 可直接用自己的 AI API Key 获取建议 | [ ] |
|
| 8 | 实现 AI 问答(用户自带 Key) | 可直接用自己的 AI API Key 获取建议 | [ ] |
|
||||||
| 9 | 实现 Astrbot Provider 接入 | 可复用 Astrbot 内配置的 AI 提供商 | [ ] |
|
| 9 | 实现 Astrbot Provider 接入 | 可复用 Astrbot 内配置的 AI 提供商 | [ ] |
|
||||||
| 10 | 实现公共 AI 通道(可开关) | 管理员开启后,用户可直接使用站点公共 AI | [ ] |
|
| 10 | 实现公共 AI 通道(可开关) | 管理员开启后,用户可直接使用站点公共 AI | [ ] |
|
||||||
| 11 | 实现 Astrbot Skill 对接 | 可通过 QQ 机器人添加/修改任务与获取建议 | [ ] |
|
| 11 | 实现 Astrbot Skill 对接 | 可通过 QQ 机器人添加/修改任务与获取建议 | [ ] |
|
||||||
| 12 | 实现完整账号安全(2FA + OAuth) | 支持 2FA、QQ/微信/GitHub 登录 | [ ] |
|
| 12 | 实现完整账号安全(2FA + OAuth) | 支持 2FA、QQ/微信/GitHub 登录 | [ ] |
|
||||||
| 13 | 实现 PWA 安装与离线体验优化 | 支持“添加到桌面”,像本地 App 一样使用 | [ ] |
|
| 13 | 实现 PWA 安装与离线体验优化 | 支持“添加到桌面”,像本地 App 一样使用 | [ ] |
|
||||||
| 14 | 实现管理后台(配额/日志/系统配置) | 管理员可管理用户配额、站点信息、日志 | [ ] |
|
| 14 | 实现管理后台(配额/日志/系统配置) | 管理员可管理用户配额、站点信息、日志 | [ ] |
|
||||||
| 15 | 上线前安全与性能收尾 | 使用更稳定、更安全,核心链路可观测 | [ ] |
|
| 15 | 上线前安全与性能收尾 | 使用更稳定、更安全,核心链路可观测 | [ ] |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -151,97 +151,6 @@ TodoList/
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 部署与使用
|
|
||||||
|
|
||||||
### 1. 环境要求
|
|
||||||
|
|
||||||
- Node.js `20.x`
|
|
||||||
- pnpm `9.15.2`
|
|
||||||
- PostgreSQL `14+`(本地或远程都可)
|
|
||||||
- 可选:MinIO / S3(附件上传功能使用)
|
|
||||||
|
|
||||||
### 2. 安装依赖
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pnpm install
|
|
||||||
```
|
|
||||||
|
|
||||||
### 3. 后端环境变量配置
|
|
||||||
|
|
||||||
1. 复制环境变量示例文件:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
cp apps/api/.env.example apps/api/.env
|
|
||||||
# PowerShell:
|
|
||||||
# Copy-Item apps/api/.env.example apps/api/.env
|
|
||||||
```
|
|
||||||
|
|
||||||
2. 至少修改以下配置:
|
|
||||||
|
|
||||||
- `DATABASE_URL`:你的 PostgreSQL 连接串
|
|
||||||
- `AUTH_ACCESS_SECRET`:生产环境请改为高强度随机值
|
|
||||||
- `MAIL_SMTP_*`:邮件服务器配置(验证码/提醒邮件)
|
|
||||||
- `OAUTH_*`:第三方登录配置(未接入可先保留示例值)
|
|
||||||
- `S3_*`:对象存储配置(未启用附件可后续再配)
|
|
||||||
|
|
||||||
### 4. 初始化数据库
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pnpm --filter @todolist/api exec prisma db push
|
|
||||||
```
|
|
||||||
|
|
||||||
### 5. 本地开发启动
|
|
||||||
|
|
||||||
1. 启动后端(默认端口 `3000`):
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pnpm --filter @todolist/api start:dev
|
|
||||||
```
|
|
||||||
|
|
||||||
2. 启动前端(默认端口 `5173`):
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pnpm --filter web dev
|
|
||||||
```
|
|
||||||
|
|
||||||
3. 若前端需连接非默认后端地址,可设置:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
VITE_API_BASE_URL=http://localhost:3000
|
|
||||||
```
|
|
||||||
|
|
||||||
### 6. 生产构建与运行
|
|
||||||
|
|
||||||
1. 构建:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pnpm run build
|
|
||||||
```
|
|
||||||
|
|
||||||
2. 运行 API(需先构建):
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pnpm --filter @todolist/api start
|
|
||||||
```
|
|
||||||
|
|
||||||
3. 发布 Web:
|
|
||||||
|
|
||||||
- `apps/web/dist` 为静态资源产物,建议使用 Nginx/静态托管服务发布。
|
|
||||||
|
|
||||||
### 7. CI/CD 说明(当前仓库)
|
|
||||||
|
|
||||||
- PR 质量检查:`.github/workflows/pr-quality.yml`
|
|
||||||
- Web 部署模板:`.github/workflows/deploy-web.yml`
|
|
||||||
- Admin 部署模板:`.github/workflows/deploy-admin.yml`
|
|
||||||
- API 镜像构建:`.github/workflows/api-docker-image.yml`
|
|
||||||
|
|
||||||
说明:
|
|
||||||
|
|
||||||
- Web/Admin 工作流通过 Webhook 触发真实部署,需在仓库 Secrets 配置:
|
|
||||||
- `WEB_DEPLOY_WEBHOOK_URL`
|
|
||||||
- `ADMIN_DEPLOY_WEBHOOK_URL`
|
|
||||||
- API 镜像工作流仅在存在 `apps/api/Dockerfile` 时执行镜像构建与推送。
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
本项目遵循 [GNUv3](./LICENSE)。
|
本项目遵循 [GNUv3](./LICENSE)。
|
||||||
|
|||||||
@@ -1,65 +0,0 @@
|
|||||||
# -----------------------------------------------------------------------------
|
|
||||||
# TodoList API 环境变量示例
|
|
||||||
# 用法:
|
|
||||||
# 1) 复制为 apps/api/.env
|
|
||||||
# 2) 按实际环境替换值(尤其是密钥、密码、令牌)
|
|
||||||
# -----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
# [数据库] PostgreSQL 连接串
|
|
||||||
# 格式:postgresql://<user>:<password>@<host>:<port>/<db>?schema=public
|
|
||||||
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/todolist?schema=public"
|
|
||||||
|
|
||||||
# [鉴权] Access Token 签名密钥(生产环境必须使用高强度随机值)
|
|
||||||
AUTH_ACCESS_SECRET="dev-access-secret"
|
|
||||||
# [鉴权] Access Token 有效期(秒),默认 15 分钟
|
|
||||||
AUTH_ACCESS_EXPIRES_IN_SECONDS="900"
|
|
||||||
# [鉴权] Refresh Token 有效期(秒),默认 30 天
|
|
||||||
AUTH_REFRESH_EXPIRES_IN_SECONDS="2592000"
|
|
||||||
# [鉴权] 邮箱验证码有效期(秒),默认 5 分钟
|
|
||||||
AUTH_EMAIL_CODE_TTL_SECONDS="300"
|
|
||||||
# [2FA] TOTP 签发方名称(会显示在验证器 App 中)
|
|
||||||
AUTH_TOTP_ISSUER="TodoList"
|
|
||||||
|
|
||||||
# [OAuth - GitHub] 第三方登录配置
|
|
||||||
OAUTH_GITHUB_CLIENT_ID="github-client-id"
|
|
||||||
OAUTH_GITHUB_CLIENT_SECRET="github-client-secret"
|
|
||||||
OAUTH_GITHUB_CALLBACK_URL="http://localhost:3000/auth/oauth/github/callback"
|
|
||||||
|
|
||||||
# [OAuth - QQ] 第三方登录配置
|
|
||||||
OAUTH_QQ_CLIENT_ID="qq-client-id"
|
|
||||||
OAUTH_QQ_CLIENT_SECRET="qq-client-secret"
|
|
||||||
OAUTH_QQ_CALLBACK_URL="http://localhost:3000/auth/oauth/qq/callback"
|
|
||||||
OAUTH_QQ_AUTH_URL="https://graph.qq.com/oauth2.0/authorize"
|
|
||||||
OAUTH_QQ_TOKEN_URL="https://graph.qq.com/oauth2.0/token"
|
|
||||||
|
|
||||||
# [OAuth - 微信] 第三方登录配置
|
|
||||||
OAUTH_WECHAT_CLIENT_ID="wechat-client-id"
|
|
||||||
OAUTH_WECHAT_CLIENT_SECRET="wechat-client-secret"
|
|
||||||
OAUTH_WECHAT_CALLBACK_URL="http://localhost:3000/auth/oauth/wechat/callback"
|
|
||||||
OAUTH_WECHAT_AUTH_URL="https://open.weixin.qq.com/connect/qrconnect"
|
|
||||||
OAUTH_WECHAT_TOKEN_URL="https://api.weixin.qq.com/sns/oauth2/access_token"
|
|
||||||
|
|
||||||
# [对象存储] S3/MinIO 配置(附件上传)
|
|
||||||
# 本地开发可使用 MinIO,生产可切换到云厂商 S3 兼容服务
|
|
||||||
S3_ENDPOINT="http://127.0.0.1:9000"
|
|
||||||
S3_REGION="us-east-1"
|
|
||||||
S3_BUCKET="todolist"
|
|
||||||
S3_ACCESS_KEY_ID="minioadmin"
|
|
||||||
S3_SECRET_ACCESS_KEY="minioadmin"
|
|
||||||
# MinIO 常用 true;AWS S3 常用 false
|
|
||||||
S3_FORCE_PATH_STYLE="true"
|
|
||||||
# 预签名上传 URL 的有效期(秒)
|
|
||||||
S3_PRESIGN_EXPIRES_SECONDS="900"
|
|
||||||
# 对外访问附件的基础地址(用于拼接公开 URL)
|
|
||||||
S3_PUBLIC_BASE_URL="http://127.0.0.1:9000"
|
|
||||||
|
|
||||||
# [邮件] SMTP 配置(验证码/DDL 提醒邮件)
|
|
||||||
MAIL_SMTP_HOST="smtp.example.com"
|
|
||||||
MAIL_SMTP_PORT="465"
|
|
||||||
# 465 通常为 true(SSL),587 通常为 false(STARTTLS)
|
|
||||||
MAIL_SMTP_SECURE="true"
|
|
||||||
MAIL_SMTP_USER="no-reply@example.com"
|
|
||||||
MAIL_SMTP_PASS="replace-with-smtp-password"
|
|
||||||
# 发件人显示名称与地址
|
|
||||||
MAIL_FROM_NAME="TodoList"
|
|
||||||
MAIL_FROM_ADDRESS="no-reply@example.com"
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
node_modules
|
|
||||||
# 环境变量文件不纳入版本控制
|
|
||||||
.env
|
|
||||||
|
|
||||||
/generated/prisma
|
|
||||||
dist
|
|
||||||
prisma.config.js
|
|
||||||
prisma.config.js.map
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
/** @type {import('jest').Config} */
|
|
||||||
module.exports = {
|
|
||||||
rootDir: ".",
|
|
||||||
testEnvironment: "node",
|
|
||||||
clearMocks: true,
|
|
||||||
testMatch: ["<rootDir>/test/**/*.spec.ts"],
|
|
||||||
moduleFileExtensions: ["ts", "js", "json"],
|
|
||||||
transform: {
|
|
||||||
"^.+\\.(t|j)s$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.spec.json" }]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "@todolist/api",
|
|
||||||
"version": "0.1.0",
|
|
||||||
"description": "TodoList API service",
|
|
||||||
"scripts": {
|
|
||||||
"prisma:generate": "prisma generate",
|
|
||||||
"prisma:format": "prisma format",
|
|
||||||
"prisma:validate": "prisma validate",
|
|
||||||
"prebuild": "pnpm run prisma:generate",
|
|
||||||
"pretypecheck": "pnpm run prisma:generate",
|
|
||||||
"pretest": "pnpm run prisma:generate",
|
|
||||||
"start": "node dist/main.js",
|
|
||||||
"start:dev": "ts-node-dev --respawn --transpile-only src/main.ts",
|
|
||||||
"build": "tsc -p tsconfig.build.json",
|
|
||||||
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
||||||
"test": "jest --config jest.config.cjs --runInBand"
|
|
||||||
},
|
|
||||||
"license": "GPL-3.0-or-later",
|
|
||||||
"devDependencies": {
|
|
||||||
"@nestjs/testing": "^11.1.18",
|
|
||||||
"@types/jest": "^30.0.0",
|
|
||||||
"@types/node": "^25.5.2",
|
|
||||||
"@types/nodemailer": "^8.0.0",
|
|
||||||
"@types/passport-github2": "^1.2.9",
|
|
||||||
"@types/passport-oauth2": "^1.8.0",
|
|
||||||
"@types/supertest": "^7.2.0",
|
|
||||||
"dotenv": "^16.6.1",
|
|
||||||
"jest": "^30.3.0",
|
|
||||||
"prisma": "^7.6.0",
|
|
||||||
"supertest": "^7.2.2",
|
|
||||||
"ts-jest": "^29.4.9",
|
|
||||||
"ts-node": "^10.9.2",
|
|
||||||
"ts-node-dev": "^2.0.0",
|
|
||||||
"typescript": "^5.9.3"
|
|
||||||
},
|
|
||||||
"private": true,
|
|
||||||
"dependencies": {
|
|
||||||
"@aws-sdk/client-s3": "^3.1024.0",
|
|
||||||
"@aws-sdk/s3-request-presigner": "^3.1024.0",
|
|
||||||
"@nestjs/common": "^11.1.18",
|
|
||||||
"@nestjs/config": "^4.0.3",
|
|
||||||
"@nestjs/core": "^11.1.18",
|
|
||||||
"@nestjs/jwt": "^11.0.2",
|
|
||||||
"@nestjs/passport": "^11.0.5",
|
|
||||||
"@nestjs/platform-express": "^11.1.18",
|
|
||||||
"@otplib/preset-default": "^12.0.1",
|
|
||||||
"@prisma/adapter-pg": "^7.6.0",
|
|
||||||
"@prisma/client": "^7.6.0",
|
|
||||||
"class-transformer": "^0.5.1",
|
|
||||||
"class-validator": "^0.15.1",
|
|
||||||
"nodemailer": "^8.0.4",
|
|
||||||
"otplib": "^13.4.0",
|
|
||||||
"passport": "^0.7.0",
|
|
||||||
"passport-github2": "^0.1.12",
|
|
||||||
"passport-oauth2": "^1.8.0",
|
|
||||||
"pg": "^8.20.0",
|
|
||||||
"reflect-metadata": "^0.2.2",
|
|
||||||
"rxjs": "^7.8.2"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
// Prisma CLI 配置(TodoList)
|
|
||||||
import "dotenv/config";
|
|
||||||
import { defineConfig } from "prisma/config";
|
|
||||||
|
|
||||||
export default defineConfig({
|
|
||||||
schema: "prisma/schema.prisma",
|
|
||||||
migrations: {
|
|
||||||
path: "prisma/migrations"
|
|
||||||
},
|
|
||||||
datasource: {
|
|
||||||
url: process.env["DATABASE_URL"]
|
|
||||||
}
|
|
||||||
});
|
|
||||||
@@ -1,403 +0,0 @@
|
|||||||
// Prisma 数据模型定义(TodoList)
|
|
||||||
|
|
||||||
generator client {
|
|
||||||
provider = "prisma-client"
|
|
||||||
output = "../generated/prisma"
|
|
||||||
}
|
|
||||||
|
|
||||||
datasource db {
|
|
||||||
provider = "postgresql"
|
|
||||||
}
|
|
||||||
|
|
||||||
enum UserStatus {
|
|
||||||
ACTIVE
|
|
||||||
DISABLED
|
|
||||||
BANNED
|
|
||||||
}
|
|
||||||
|
|
||||||
enum AuthProvider {
|
|
||||||
EMAIL
|
|
||||||
GITHUB
|
|
||||||
QQ
|
|
||||||
WECHAT
|
|
||||||
}
|
|
||||||
|
|
||||||
enum TaskPriority {
|
|
||||||
LOW
|
|
||||||
MEDIUM
|
|
||||||
HIGH
|
|
||||||
URGENT
|
|
||||||
}
|
|
||||||
|
|
||||||
enum TaskStatus {
|
|
||||||
TODO
|
|
||||||
IN_PROGRESS
|
|
||||||
DONE
|
|
||||||
ARCHIVED
|
|
||||||
}
|
|
||||||
|
|
||||||
enum AttachmentType {
|
|
||||||
IMAGE
|
|
||||||
VIDEO
|
|
||||||
FILE
|
|
||||||
LINK
|
|
||||||
}
|
|
||||||
|
|
||||||
enum AiChannel {
|
|
||||||
USER_KEY
|
|
||||||
ASTRBOT
|
|
||||||
PUBLIC_POOL
|
|
||||||
}
|
|
||||||
|
|
||||||
enum NotificationChannel {
|
|
||||||
EMAIL
|
|
||||||
WEB_PUSH
|
|
||||||
}
|
|
||||||
|
|
||||||
enum NotificationStatus {
|
|
||||||
PENDING
|
|
||||||
SENT
|
|
||||||
FAILED
|
|
||||||
CANCELED
|
|
||||||
}
|
|
||||||
|
|
||||||
model User {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
email String @unique
|
|
||||||
nickname String?
|
|
||||||
avatarUrl String?
|
|
||||||
status UserStatus @default(ACTIVE)
|
|
||||||
defaultStorageQuotaMb Int @default(100)
|
|
||||||
usedStorageBytes BigInt @default(0)
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
identities AuthIdentity[]
|
|
||||||
refreshTokens RefreshToken[]
|
|
||||||
security UserSecurity?
|
|
||||||
tasks Task[]
|
|
||||||
tags Tag[]
|
|
||||||
attachments Attachment[]
|
|
||||||
taskActivityLogs TaskActivityLog[]
|
|
||||||
syncOperations SyncOperation[]
|
|
||||||
syncCursors SyncCursor[]
|
|
||||||
taskTombstones TaskTombstone[]
|
|
||||||
aiProviderBindings AiProviderBinding[]
|
|
||||||
aiUsageLogs AiUsageLog[]
|
|
||||||
notificationRules NotificationRule[]
|
|
||||||
notificationJobs NotificationJob[]
|
|
||||||
createdAdminTokens AdminToken[]
|
|
||||||
auditLogs AuditLog[]
|
|
||||||
|
|
||||||
@@map("users")
|
|
||||||
}
|
|
||||||
|
|
||||||
model AuthIdentity {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String
|
|
||||||
provider AuthProvider
|
|
||||||
providerUserId String
|
|
||||||
email String?
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
|
|
||||||
@@unique([provider, providerUserId])
|
|
||||||
@@index([userId])
|
|
||||||
@@map("auth_identities")
|
|
||||||
}
|
|
||||||
|
|
||||||
model UserSecurity {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String @unique
|
|
||||||
twoFactorEnabled Boolean @default(false)
|
|
||||||
twoFactorSecret String?
|
|
||||||
recoveryCodes String[] @default([])
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
|
|
||||||
@@map("user_security")
|
|
||||||
}
|
|
||||||
|
|
||||||
model RefreshToken {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String
|
|
||||||
tokenHash String @unique
|
|
||||||
deviceId String?
|
|
||||||
expiresAt DateTime
|
|
||||||
revokedAt DateTime?
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
|
|
||||||
@@index([userId, expiresAt])
|
|
||||||
@@map("refresh_tokens")
|
|
||||||
}
|
|
||||||
|
|
||||||
model Task {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String
|
|
||||||
title String
|
|
||||||
contentJson Json?
|
|
||||||
contentText String?
|
|
||||||
priority TaskPriority @default(MEDIUM)
|
|
||||||
status TaskStatus @default(TODO)
|
|
||||||
ddl DateTime?
|
|
||||||
completedAt DateTime?
|
|
||||||
version Int @default(1)
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
taskTags TaskTag[]
|
|
||||||
attachments Attachment[]
|
|
||||||
activityLogs TaskActivityLog[]
|
|
||||||
notificationJobs NotificationJob[]
|
|
||||||
notificationRules NotificationRule[]
|
|
||||||
|
|
||||||
@@index([userId, status])
|
|
||||||
@@index([userId, ddl])
|
|
||||||
@@map("tasks")
|
|
||||||
}
|
|
||||||
|
|
||||||
model Tag {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String
|
|
||||||
name String
|
|
||||||
color String?
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
taskTags TaskTag[]
|
|
||||||
|
|
||||||
@@unique([userId, name])
|
|
||||||
@@index([userId])
|
|
||||||
@@map("tags")
|
|
||||||
}
|
|
||||||
|
|
||||||
model TaskTag {
|
|
||||||
taskId String
|
|
||||||
tagId String
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
task Task @relation(fields: [taskId], references: [id], onDelete: Cascade)
|
|
||||||
tag Tag @relation(fields: [tagId], references: [id], onDelete: Cascade)
|
|
||||||
|
|
||||||
@@id([taskId, tagId])
|
|
||||||
@@index([tagId])
|
|
||||||
@@map("task_tags")
|
|
||||||
}
|
|
||||||
|
|
||||||
model Attachment {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String
|
|
||||||
taskId String?
|
|
||||||
type AttachmentType
|
|
||||||
url String
|
|
||||||
mimeType String?
|
|
||||||
fileName String?
|
|
||||||
fileSize Int
|
|
||||||
width Int?
|
|
||||||
height Int?
|
|
||||||
durationMs Int?
|
|
||||||
checksum String?
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
task Task? @relation(fields: [taskId], references: [id], onDelete: SetNull)
|
|
||||||
|
|
||||||
@@index([userId])
|
|
||||||
@@index([taskId])
|
|
||||||
@@map("attachments")
|
|
||||||
}
|
|
||||||
|
|
||||||
model TaskActivityLog {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String
|
|
||||||
taskId String
|
|
||||||
action String
|
|
||||||
payload Json?
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
task Task @relation(fields: [taskId], references: [id], onDelete: Cascade)
|
|
||||||
|
|
||||||
@@index([taskId, createdAt])
|
|
||||||
@@index([userId, createdAt])
|
|
||||||
@@map("task_activity_logs")
|
|
||||||
}
|
|
||||||
|
|
||||||
model SyncOperation {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
opId String @unique
|
|
||||||
userId String
|
|
||||||
deviceId String
|
|
||||||
entityType String
|
|
||||||
entityId String
|
|
||||||
action String
|
|
||||||
payload Json?
|
|
||||||
clientTs DateTime
|
|
||||||
serverTs DateTime @default(now())
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
|
|
||||||
@@index([userId, deviceId, serverTs])
|
|
||||||
@@index([userId, entityType, entityId])
|
|
||||||
@@map("sync_operations")
|
|
||||||
}
|
|
||||||
|
|
||||||
model SyncCursor {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String
|
|
||||||
deviceId String
|
|
||||||
lastPulledAt DateTime?
|
|
||||||
lastOperationServerTs DateTime?
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
|
|
||||||
@@unique([userId, deviceId])
|
|
||||||
@@map("sync_cursors")
|
|
||||||
}
|
|
||||||
|
|
||||||
model TaskTombstone {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
taskId String @unique
|
|
||||||
userId String
|
|
||||||
deletedAt DateTime @default(now())
|
|
||||||
deleteOpId String?
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
|
|
||||||
@@index([userId, deletedAt])
|
|
||||||
@@map("task_tombstones")
|
|
||||||
}
|
|
||||||
|
|
||||||
model AiProviderBinding {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String
|
|
||||||
channel AiChannel
|
|
||||||
providerName String
|
|
||||||
model String?
|
|
||||||
encryptedApiKey String?
|
|
||||||
endpoint String?
|
|
||||||
isDefault Boolean @default(false)
|
|
||||||
isEnabled Boolean @default(true)
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
|
|
||||||
@@index([userId, isEnabled])
|
|
||||||
@@map("ai_provider_bindings")
|
|
||||||
}
|
|
||||||
|
|
||||||
model AiPublicPoolConfig {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
enabled Boolean @default(false)
|
|
||||||
providerName String?
|
|
||||||
model String?
|
|
||||||
encryptedApiKey String?
|
|
||||||
endpoint String?
|
|
||||||
rpmLimit Int @default(60)
|
|
||||||
dailyTokenLimit Int @default(0)
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
|
|
||||||
@@map("ai_public_pool_config")
|
|
||||||
}
|
|
||||||
|
|
||||||
model AiUsageLog {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String?
|
|
||||||
channel AiChannel
|
|
||||||
providerName String?
|
|
||||||
model String?
|
|
||||||
promptTokens Int @default(0)
|
|
||||||
completionTokens Int @default(0)
|
|
||||||
totalTokens Int @default(0)
|
|
||||||
latencyMs Int?
|
|
||||||
success Boolean @default(true)
|
|
||||||
errorCode String?
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
user User? @relation(fields: [userId], references: [id], onDelete: SetNull)
|
|
||||||
|
|
||||||
@@index([userId, createdAt])
|
|
||||||
@@index([channel, createdAt])
|
|
||||||
@@map("ai_usage_logs")
|
|
||||||
}
|
|
||||||
|
|
||||||
model NotificationRule {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String
|
|
||||||
taskId String?
|
|
||||||
channel NotificationChannel @default(EMAIL)
|
|
||||||
advanceMinutes Int @default(60)
|
|
||||||
enabled Boolean @default(true)
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
task Task? @relation(fields: [taskId], references: [id], onDelete: SetNull)
|
|
||||||
jobs NotificationJob[]
|
|
||||||
|
|
||||||
@@index([userId, enabled])
|
|
||||||
@@index([taskId])
|
|
||||||
@@map("notification_rules")
|
|
||||||
}
|
|
||||||
|
|
||||||
model NotificationJob {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
userId String
|
|
||||||
taskId String?
|
|
||||||
ruleId String?
|
|
||||||
channel NotificationChannel
|
|
||||||
scheduledAt DateTime
|
|
||||||
sentAt DateTime?
|
|
||||||
status NotificationStatus @default(PENDING)
|
|
||||||
retryCount Int @default(0)
|
|
||||||
errorMessage String?
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
||||||
task Task? @relation(fields: [taskId], references: [id], onDelete: SetNull)
|
|
||||||
rule NotificationRule? @relation(fields: [ruleId], references: [id], onDelete: SetNull)
|
|
||||||
|
|
||||||
@@index([status, scheduledAt])
|
|
||||||
@@index([userId, createdAt])
|
|
||||||
@@map("notification_jobs")
|
|
||||||
}
|
|
||||||
|
|
||||||
model SystemSetting {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
key String @unique
|
|
||||||
value Json
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
updatedAt DateTime @updatedAt
|
|
||||||
|
|
||||||
@@map("system_settings")
|
|
||||||
}
|
|
||||||
|
|
||||||
model AdminToken {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
tokenHash String @unique
|
|
||||||
name String
|
|
||||||
expiresAt DateTime
|
|
||||||
lastUsedAt DateTime?
|
|
||||||
revokedAt DateTime?
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
createdByUserId String?
|
|
||||||
createdByUser User? @relation(fields: [createdByUserId], references: [id], onDelete: SetNull)
|
|
||||||
|
|
||||||
@@index([expiresAt])
|
|
||||||
@@map("admin_tokens")
|
|
||||||
}
|
|
||||||
|
|
||||||
model AuditLog {
|
|
||||||
id String @id @default(cuid())
|
|
||||||
actorUserId String?
|
|
||||||
action String
|
|
||||||
targetType String
|
|
||||||
targetId String?
|
|
||||||
meta Json?
|
|
||||||
ip String?
|
|
||||||
userAgent String?
|
|
||||||
createdAt DateTime @default(now())
|
|
||||||
actorUser User? @relation(fields: [actorUserId], references: [id], onDelete: SetNull)
|
|
||||||
|
|
||||||
@@index([action, createdAt])
|
|
||||||
@@index([actorUserId, createdAt])
|
|
||||||
@@map("audit_logs")
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
import { Module } from "@nestjs/common";
|
|
||||||
import { ConfigModule } from "@nestjs/config";
|
|
||||||
import { AttachmentModule } from "./attachment/attachment.module";
|
|
||||||
import { AuthModule } from "./auth/auth.module";
|
|
||||||
import { PrismaModule } from "./prisma/prisma.module";
|
|
||||||
import { SyncModule } from "./sync/sync.module";
|
|
||||||
import { TaskModule } from "./task/task.module";
|
|
||||||
|
|
||||||
@Module({
|
|
||||||
imports: [
|
|
||||||
ConfigModule.forRoot({
|
|
||||||
isGlobal: true,
|
|
||||||
envFilePath: ".env"
|
|
||||||
}),
|
|
||||||
PrismaModule,
|
|
||||||
AuthModule,
|
|
||||||
TaskModule,
|
|
||||||
AttachmentModule,
|
|
||||||
SyncModule
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export class AppModule {}
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
import { Body, Controller, Headers, Post, UnauthorizedException } from "@nestjs/common";
|
|
||||||
import {
|
|
||||||
AttachmentResponse,
|
|
||||||
AttachmentService,
|
|
||||||
PresignAttachmentResponse
|
|
||||||
} from "./attachment.service";
|
|
||||||
import { CompleteAttachmentDto } from "./dto/complete-attachment.dto";
|
|
||||||
import { PresignAttachmentDto } from "./dto/presign-attachment.dto";
|
|
||||||
|
|
||||||
@Controller("attachments")
|
|
||||||
export class AttachmentController {
|
|
||||||
constructor(private readonly attachmentService: AttachmentService) {}
|
|
||||||
|
|
||||||
@Post("presign")
|
|
||||||
async presignAttachment(
|
|
||||||
@Headers("x-user-id") userIdHeader: string | string[] | undefined,
|
|
||||||
@Body() body: PresignAttachmentDto
|
|
||||||
): Promise<PresignAttachmentResponse> {
|
|
||||||
return this.attachmentService.presignAttachment(this.resolveUserId(userIdHeader), body);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post("complete")
|
|
||||||
async completeAttachment(
|
|
||||||
@Headers("x-user-id") userIdHeader: string | string[] | undefined,
|
|
||||||
@Body() body: CompleteAttachmentDto
|
|
||||||
): Promise<AttachmentResponse> {
|
|
||||||
return this.attachmentService.completeAttachment(this.resolveUserId(userIdHeader), body);
|
|
||||||
}
|
|
||||||
|
|
||||||
private resolveUserId(userIdHeader: string | string[] | undefined): string {
|
|
||||||
const userId = Array.isArray(userIdHeader) ? userIdHeader[0] : userIdHeader;
|
|
||||||
if (!userId) {
|
|
||||||
throw new UnauthorizedException("缺少用户上下文");
|
|
||||||
}
|
|
||||||
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import { Module } from "@nestjs/common";
|
|
||||||
import { PrismaModule } from "../prisma/prisma.module";
|
|
||||||
import { AttachmentController } from "./attachment.controller";
|
|
||||||
import { AttachmentService } from "./attachment.service";
|
|
||||||
|
|
||||||
@Module({
|
|
||||||
imports: [PrismaModule],
|
|
||||||
controllers: [AttachmentController],
|
|
||||||
providers: [AttachmentService]
|
|
||||||
})
|
|
||||||
export class AttachmentModule {}
|
|
||||||
@@ -1,282 +0,0 @@
|
|||||||
import { randomUUID } from "node:crypto";
|
|
||||||
import { Injectable, NotFoundException, PayloadTooLargeException } from "@nestjs/common";
|
|
||||||
import { ConfigService } from "@nestjs/config";
|
|
||||||
import { PutObjectCommand, S3Client } from "@aws-sdk/client-s3";
|
|
||||||
import { getSignedUrl } from "@aws-sdk/s3-request-presigner";
|
|
||||||
import { AttachmentType } from "../../generated/prisma/client";
|
|
||||||
import { PrismaService } from "../prisma/prisma.service";
|
|
||||||
import { CompleteAttachmentDto } from "./dto/complete-attachment.dto";
|
|
||||||
import { PresignAttachmentDto } from "./dto/presign-attachment.dto";
|
|
||||||
|
|
||||||
type QuotaInfo = {
|
|
||||||
totalBytes: bigint;
|
|
||||||
usedBytes: bigint;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type PresignAttachmentResponse = {
|
|
||||||
method: "PUT";
|
|
||||||
uploadUrl: string;
|
|
||||||
bucket: string;
|
|
||||||
objectKey: string;
|
|
||||||
objectUrl: string;
|
|
||||||
expiresInSeconds: number;
|
|
||||||
quota: {
|
|
||||||
totalBytes: string;
|
|
||||||
usedBytes: string;
|
|
||||||
remainingBytes: string;
|
|
||||||
};
|
|
||||||
headers: {
|
|
||||||
"Content-Type": string;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
export type AttachmentResponse = {
|
|
||||||
id: string;
|
|
||||||
taskId: string | null;
|
|
||||||
type: AttachmentType;
|
|
||||||
url: string;
|
|
||||||
mimeType: string | null;
|
|
||||||
fileName: string | null;
|
|
||||||
fileSize: number;
|
|
||||||
width: number | null;
|
|
||||||
height: number | null;
|
|
||||||
durationMs: number | null;
|
|
||||||
checksum: string | null;
|
|
||||||
createdAt: string;
|
|
||||||
updatedAt: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class AttachmentService {
|
|
||||||
private s3Client: S3Client | null = null;
|
|
||||||
|
|
||||||
constructor(
|
|
||||||
private readonly configService: ConfigService,
|
|
||||||
private readonly prismaService: PrismaService
|
|
||||||
) {}
|
|
||||||
|
|
||||||
async presignAttachment(
|
|
||||||
userId: string,
|
|
||||||
body: PresignAttachmentDto
|
|
||||||
): Promise<PresignAttachmentResponse> {
|
|
||||||
const quotaInfo = await this.getQuotaSnapshot(userId);
|
|
||||||
this.assertQuotaAvailable(quotaInfo.totalBytes, quotaInfo.usedBytes, body.fileSize);
|
|
||||||
|
|
||||||
if (body.taskId) {
|
|
||||||
await this.ensureTaskOwnership(userId, body.taskId);
|
|
||||||
}
|
|
||||||
|
|
||||||
const bucket = this.getDefaultBucket();
|
|
||||||
const objectKey = this.generateObjectKey(userId, body.fileName);
|
|
||||||
const objectUrl = this.resolveObjectUrl(bucket, objectKey);
|
|
||||||
const expiresInSeconds = this.getPresignExpiresInSeconds();
|
|
||||||
|
|
||||||
const command = new PutObjectCommand({
|
|
||||||
Bucket: bucket,
|
|
||||||
Key: objectKey,
|
|
||||||
ContentType: body.mimeType,
|
|
||||||
ContentLength: body.fileSize
|
|
||||||
});
|
|
||||||
|
|
||||||
const uploadUrl = await getSignedUrl(this.getS3Client(), command, {
|
|
||||||
expiresIn: expiresInSeconds
|
|
||||||
});
|
|
||||||
|
|
||||||
return {
|
|
||||||
method: "PUT",
|
|
||||||
uploadUrl,
|
|
||||||
bucket,
|
|
||||||
objectKey,
|
|
||||||
objectUrl,
|
|
||||||
expiresInSeconds,
|
|
||||||
quota: {
|
|
||||||
totalBytes: quotaInfo.totalBytes.toString(),
|
|
||||||
usedBytes: quotaInfo.usedBytes.toString(),
|
|
||||||
remainingBytes: (quotaInfo.totalBytes - quotaInfo.usedBytes).toString()
|
|
||||||
},
|
|
||||||
headers: {
|
|
||||||
"Content-Type": body.mimeType
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async completeAttachment(
|
|
||||||
userId: string,
|
|
||||||
body: CompleteAttachmentDto
|
|
||||||
): Promise<AttachmentResponse> {
|
|
||||||
if (body.taskId) {
|
|
||||||
await this.ensureTaskOwnership(userId, body.taskId);
|
|
||||||
}
|
|
||||||
|
|
||||||
const bucket = body.bucket ?? this.getDefaultBucket();
|
|
||||||
const objectUrl = this.resolveObjectUrl(bucket, body.objectKey);
|
|
||||||
|
|
||||||
const attachment = await this.prismaService.$transaction(async (tx) => {
|
|
||||||
const quotaInfo = await this.getQuotaSnapshot(userId, tx);
|
|
||||||
this.assertQuotaAvailable(quotaInfo.totalBytes, quotaInfo.usedBytes, body.fileSize);
|
|
||||||
|
|
||||||
const uploadBytes = BigInt(body.fileSize);
|
|
||||||
const maxUsedBeforeUpload = quotaInfo.totalBytes - uploadBytes;
|
|
||||||
const updatedUser = await tx.user.updateMany({
|
|
||||||
where: {
|
|
||||||
id: userId,
|
|
||||||
usedStorageBytes: {
|
|
||||||
lte: maxUsedBeforeUpload
|
|
||||||
}
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
usedStorageBytes: {
|
|
||||||
increment: uploadBytes
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (updatedUser.count === 0) {
|
|
||||||
throw new PayloadTooLargeException("存储配额不足");
|
|
||||||
}
|
|
||||||
|
|
||||||
return tx.attachment.create({
|
|
||||||
data: {
|
|
||||||
userId,
|
|
||||||
taskId: body.taskId ?? null,
|
|
||||||
type: body.type ?? this.resolveAttachmentType(body.mimeType),
|
|
||||||
url: objectUrl,
|
|
||||||
mimeType: body.mimeType,
|
|
||||||
fileName: body.fileName,
|
|
||||||
fileSize: body.fileSize,
|
|
||||||
width: body.width ?? null,
|
|
||||||
height: body.height ?? null,
|
|
||||||
durationMs: body.durationMs ?? null,
|
|
||||||
checksum: body.checksum ?? null
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
return {
|
|
||||||
id: attachment.id,
|
|
||||||
taskId: attachment.taskId,
|
|
||||||
type: attachment.type,
|
|
||||||
url: attachment.url,
|
|
||||||
mimeType: attachment.mimeType,
|
|
||||||
fileName: attachment.fileName,
|
|
||||||
fileSize: attachment.fileSize,
|
|
||||||
width: attachment.width,
|
|
||||||
height: attachment.height,
|
|
||||||
durationMs: attachment.durationMs,
|
|
||||||
checksum: attachment.checksum,
|
|
||||||
createdAt: attachment.createdAt.toISOString(),
|
|
||||||
updatedAt: attachment.updatedAt.toISOString()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private getS3Client(): S3Client {
|
|
||||||
if (this.s3Client) {
|
|
||||||
return this.s3Client;
|
|
||||||
}
|
|
||||||
|
|
||||||
const endpoint = this.configService.get<string>("S3_ENDPOINT") ?? "http://127.0.0.1:9000";
|
|
||||||
const region = this.configService.get<string>("S3_REGION") ?? "us-east-1";
|
|
||||||
const forcePathStyle =
|
|
||||||
this.configService.get<string>("S3_FORCE_PATH_STYLE")?.toLowerCase() !== "false";
|
|
||||||
|
|
||||||
this.s3Client = new S3Client({
|
|
||||||
endpoint,
|
|
||||||
region,
|
|
||||||
forcePathStyle,
|
|
||||||
credentials: {
|
|
||||||
accessKeyId: this.configService.get<string>("S3_ACCESS_KEY_ID") ?? "minioadmin",
|
|
||||||
secretAccessKey: this.configService.get<string>("S3_SECRET_ACCESS_KEY") ?? "minioadmin"
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return this.s3Client;
|
|
||||||
}
|
|
||||||
|
|
||||||
private getDefaultBucket(): string {
|
|
||||||
return this.configService.get<string>("S3_BUCKET") ?? "todolist";
|
|
||||||
}
|
|
||||||
|
|
||||||
private getPresignExpiresInSeconds(): number {
|
|
||||||
const configValue = Number(this.configService.get<string>("S3_PRESIGN_EXPIRES_SECONDS") ?? 900);
|
|
||||||
if (!Number.isFinite(configValue) || configValue <= 0) {
|
|
||||||
return 900;
|
|
||||||
}
|
|
||||||
|
|
||||||
return Math.min(configValue, 604800);
|
|
||||||
}
|
|
||||||
|
|
||||||
private generateObjectKey(userId: string, fileName: string): string {
|
|
||||||
const safeFileName = fileName.replace(/[^\w.-]+/g, "_");
|
|
||||||
const datePrefix = new Date().toISOString().slice(0, 10);
|
|
||||||
return `${userId}/${datePrefix}/${randomUUID()}-${safeFileName}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
private resolveObjectUrl(bucket: string, objectKey: string): string {
|
|
||||||
const publicBaseUrl = this.configService.get<string>("S3_PUBLIC_BASE_URL");
|
|
||||||
if (publicBaseUrl) {
|
|
||||||
return `${publicBaseUrl.replace(/\/+$/, "")}/${bucket}/${objectKey}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
const endpoint = this.configService.get<string>("S3_ENDPOINT") ?? "http://127.0.0.1:9000";
|
|
||||||
return `${endpoint.replace(/\/+$/, "")}/${bucket}/${objectKey}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
private resolveAttachmentType(mimeType: string): AttachmentType {
|
|
||||||
if (mimeType.startsWith("image/")) {
|
|
||||||
return AttachmentType.IMAGE;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mimeType.startsWith("video/")) {
|
|
||||||
return AttachmentType.VIDEO;
|
|
||||||
}
|
|
||||||
|
|
||||||
return AttachmentType.FILE;
|
|
||||||
}
|
|
||||||
|
|
||||||
private async ensureTaskOwnership(userId: string, taskId: string): Promise<void> {
|
|
||||||
const task = await this.prismaService.task.findFirst({
|
|
||||||
where: {
|
|
||||||
id: taskId,
|
|
||||||
userId
|
|
||||||
},
|
|
||||||
select: {
|
|
||||||
id: true
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!task) {
|
|
||||||
throw new NotFoundException("任务不存在");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async getQuotaSnapshot(
|
|
||||||
userId: string,
|
|
||||||
tx: Pick<PrismaService, "user"> = this.prismaService
|
|
||||||
): Promise<QuotaInfo> {
|
|
||||||
const user = await tx.user.findUnique({
|
|
||||||
where: {
|
|
||||||
id: userId
|
|
||||||
},
|
|
||||||
select: {
|
|
||||||
id: true,
|
|
||||||
defaultStorageQuotaMb: true,
|
|
||||||
usedStorageBytes: true
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!user) {
|
|
||||||
throw new NotFoundException("用户不存在");
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
totalBytes: BigInt(user.defaultStorageQuotaMb) * 1024n * 1024n,
|
|
||||||
usedBytes: user.usedStorageBytes
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private assertQuotaAvailable(totalBytes: bigint, usedBytes: bigint, fileSize: number): void {
|
|
||||||
const uploadBytes = BigInt(fileSize);
|
|
||||||
if (uploadBytes > totalBytes || usedBytes + uploadBytes > totalBytes) {
|
|
||||||
throw new PayloadTooLargeException("存储配额不足");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,89 +0,0 @@
|
|||||||
import { Transform, Type } from "class-transformer";
|
|
||||||
import {
|
|
||||||
IsEnum,
|
|
||||||
IsInt,
|
|
||||||
IsOptional,
|
|
||||||
IsString,
|
|
||||||
Max,
|
|
||||||
MaxLength,
|
|
||||||
Min,
|
|
||||||
MinLength
|
|
||||||
} from "class-validator";
|
|
||||||
import { AttachmentType } from "../../../generated/prisma/client";
|
|
||||||
|
|
||||||
function normalizeString(value: unknown): unknown {
|
|
||||||
if (typeof value !== "string") {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return value.trim();
|
|
||||||
}
|
|
||||||
|
|
||||||
export class CompleteAttachmentDto {
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsString()
|
|
||||||
@MinLength(1)
|
|
||||||
@MaxLength(255)
|
|
||||||
objectKey!: string;
|
|
||||||
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(100)
|
|
||||||
bucket?: string;
|
|
||||||
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsString()
|
|
||||||
@MinLength(1)
|
|
||||||
@MaxLength(255)
|
|
||||||
fileName!: string;
|
|
||||||
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsString()
|
|
||||||
@MinLength(1)
|
|
||||||
@MaxLength(255)
|
|
||||||
mimeType!: string;
|
|
||||||
|
|
||||||
@Type(() => Number)
|
|
||||||
@IsInt()
|
|
||||||
@Min(1)
|
|
||||||
@Max(1073741824)
|
|
||||||
fileSize!: number;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsEnum(AttachmentType)
|
|
||||||
type?: AttachmentType;
|
|
||||||
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(255)
|
|
||||||
taskId?: string;
|
|
||||||
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(128)
|
|
||||||
checksum?: string;
|
|
||||||
|
|
||||||
@Type(() => Number)
|
|
||||||
@IsOptional()
|
|
||||||
@IsInt()
|
|
||||||
@Min(1)
|
|
||||||
@Max(100000)
|
|
||||||
width?: number;
|
|
||||||
|
|
||||||
@Type(() => Number)
|
|
||||||
@IsOptional()
|
|
||||||
@IsInt()
|
|
||||||
@Min(1)
|
|
||||||
@Max(100000)
|
|
||||||
height?: number;
|
|
||||||
|
|
||||||
@Type(() => Number)
|
|
||||||
@IsOptional()
|
|
||||||
@IsInt()
|
|
||||||
@Min(1)
|
|
||||||
@Max(86400000)
|
|
||||||
durationMs?: number;
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
import { Transform } from "class-transformer";
|
|
||||||
import { IsInt, IsOptional, IsString, Max, MaxLength, Min, MinLength } from "class-validator";
|
|
||||||
|
|
||||||
function normalizeString(value: unknown): unknown {
|
|
||||||
if (typeof value !== "string") {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return value.trim();
|
|
||||||
}
|
|
||||||
|
|
||||||
export class PresignAttachmentDto {
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsString()
|
|
||||||
@MinLength(1)
|
|
||||||
@MaxLength(255)
|
|
||||||
fileName!: string;
|
|
||||||
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsString()
|
|
||||||
@MinLength(1)
|
|
||||||
@MaxLength(255)
|
|
||||||
mimeType!: string;
|
|
||||||
|
|
||||||
@IsInt()
|
|
||||||
@Min(1)
|
|
||||||
@Max(1073741824)
|
|
||||||
fileSize!: number;
|
|
||||||
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(255)
|
|
||||||
taskId?: string;
|
|
||||||
}
|
|
||||||
@@ -1,131 +0,0 @@
|
|||||||
import {
|
|
||||||
Injectable,
|
|
||||||
InternalServerErrorException,
|
|
||||||
Logger,
|
|
||||||
ServiceUnavailableException
|
|
||||||
} from "@nestjs/common";
|
|
||||||
import { ConfigService } from "@nestjs/config";
|
|
||||||
import { createTransport, type Transporter } from "nodemailer";
|
|
||||||
|
|
||||||
type MailRuntimeConfig = {
|
|
||||||
host: string;
|
|
||||||
port: number;
|
|
||||||
secure: boolean;
|
|
||||||
user: string;
|
|
||||||
pass: string;
|
|
||||||
fromName: string;
|
|
||||||
fromAddress: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class AuthMailService {
|
|
||||||
private readonly logger = new Logger(AuthMailService.name);
|
|
||||||
private cachedConfig: MailRuntimeConfig | null = null;
|
|
||||||
private transporter: Transporter | null = null;
|
|
||||||
|
|
||||||
constructor(private readonly configService: ConfigService) {}
|
|
||||||
|
|
||||||
async sendLoginCode(email: string, code: string, ttlSeconds: number): Promise<void> {
|
|
||||||
const config = this.getRuntimeConfig();
|
|
||||||
const transporter = this.getTransporter(config);
|
|
||||||
|
|
||||||
try {
|
|
||||||
await transporter.sendMail({
|
|
||||||
from: this.resolveFromField(config),
|
|
||||||
to: email,
|
|
||||||
subject: "TodoList 登录验证码",
|
|
||||||
text: `你的验证码是 ${code},${ttlSeconds} 秒内有效。`,
|
|
||||||
html: `<p>你的验证码是 <strong>${code}</strong>,${ttlSeconds} 秒内有效。</p>`
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
this.logger.error(
|
|
||||||
`验证码邮件发送失败: ${email}`,
|
|
||||||
error instanceof Error ? error.stack : undefined
|
|
||||||
);
|
|
||||||
throw new ServiceUnavailableException("验证码邮件发送失败,请稍后重试");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private getTransporter(config: MailRuntimeConfig): Transporter {
|
|
||||||
if (this.transporter) {
|
|
||||||
return this.transporter;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.transporter = createTransport({
|
|
||||||
host: config.host,
|
|
||||||
port: config.port,
|
|
||||||
secure: config.secure,
|
|
||||||
auth: {
|
|
||||||
user: config.user,
|
|
||||||
pass: config.pass
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return this.transporter;
|
|
||||||
}
|
|
||||||
|
|
||||||
private getRuntimeConfig(): MailRuntimeConfig {
|
|
||||||
if (this.cachedConfig) {
|
|
||||||
return this.cachedConfig;
|
|
||||||
}
|
|
||||||
|
|
||||||
const host = this.getRequiredString("MAIL_SMTP_HOST");
|
|
||||||
const port = this.getRequiredNumber("MAIL_SMTP_PORT");
|
|
||||||
const secure = this.getBoolean("MAIL_SMTP_SECURE", port === 465);
|
|
||||||
const user = this.getRequiredString("MAIL_SMTP_USER");
|
|
||||||
const pass = this.getRequiredString("MAIL_SMTP_PASS");
|
|
||||||
const fromName = this.configService.get<string>("MAIL_FROM_NAME")?.trim() || "TodoList";
|
|
||||||
const fromAddress = this.configService.get<string>("MAIL_FROM_ADDRESS")?.trim() || user;
|
|
||||||
|
|
||||||
const config: MailRuntimeConfig = {
|
|
||||||
host,
|
|
||||||
port,
|
|
||||||
secure,
|
|
||||||
user,
|
|
||||||
pass,
|
|
||||||
fromName,
|
|
||||||
fromAddress
|
|
||||||
};
|
|
||||||
|
|
||||||
this.cachedConfig = config;
|
|
||||||
return config;
|
|
||||||
}
|
|
||||||
|
|
||||||
private getRequiredString(key: string): string {
|
|
||||||
const value = this.configService.get<string>(key)?.trim();
|
|
||||||
if (!value) {
|
|
||||||
throw new InternalServerErrorException(`邮件配置缺失: ${key}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
private getRequiredNumber(key: string): number {
|
|
||||||
const rawValue = this.configService.get<string>(key)?.trim();
|
|
||||||
if (!rawValue) {
|
|
||||||
throw new InternalServerErrorException(`邮件配置缺失: ${key}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const parsedValue = Number(rawValue);
|
|
||||||
if (!Number.isFinite(parsedValue)) {
|
|
||||||
throw new InternalServerErrorException(`邮件配置格式错误: ${key}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
return parsedValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
private getBoolean(key: string, fallback: boolean): boolean {
|
|
||||||
const rawValue = this.configService.get<string>(key);
|
|
||||||
if (!rawValue) {
|
|
||||||
return fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
const normalizedValue = rawValue.trim().toLowerCase();
|
|
||||||
return normalizedValue === "true" || normalizedValue === "1";
|
|
||||||
}
|
|
||||||
|
|
||||||
private resolveFromField(config: MailRuntimeConfig): string {
|
|
||||||
const sanitizedName = config.fromName.replace(/"/g, "");
|
|
||||||
return `"${sanitizedName}" <${config.fromAddress}>`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
import { Body, Controller, Get, Post, Req, UseGuards } from "@nestjs/common";
|
|
||||||
import { AuthGuard } from "@nestjs/passport";
|
|
||||||
import { AuthService } from "./auth.service";
|
|
||||||
import { EmailLoginDto } from "./dto/email-login.dto";
|
|
||||||
import { RefreshTokenDto } from "./dto/refresh-token.dto";
|
|
||||||
import { SendEmailCodeDto } from "./dto/send-email-code.dto";
|
|
||||||
import { TwoFactorEnrollDto } from "./dto/two-factor-enroll.dto";
|
|
||||||
import { TwoFactorVerifyDto } from "./dto/two-factor-verify.dto";
|
|
||||||
|
|
||||||
@Controller("auth")
|
|
||||||
export class AuthController {
|
|
||||||
constructor(private readonly authService: AuthService) {}
|
|
||||||
|
|
||||||
@Post("email/send-code")
|
|
||||||
async sendEmailCode(
|
|
||||||
@Body() body: SendEmailCodeDto
|
|
||||||
): Promise<{ success: boolean; expiresInSeconds: number }> {
|
|
||||||
return this.authService.sendEmailCode(body.email);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post("email/login")
|
|
||||||
async loginWithEmailCode(@Body() body: EmailLoginDto): Promise<{
|
|
||||||
accessToken: string;
|
|
||||||
tokenType: "Bearer";
|
|
||||||
expiresInSeconds: number;
|
|
||||||
refreshToken: string;
|
|
||||||
refreshExpiresInSeconds: number;
|
|
||||||
user: { id: string; email: string };
|
|
||||||
}> {
|
|
||||||
return this.authService.loginWithEmailCode(body.email, body.code);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post("token/refresh")
|
|
||||||
async refreshTokens(@Body() body: RefreshTokenDto): Promise<{
|
|
||||||
accessToken: string;
|
|
||||||
tokenType: "Bearer";
|
|
||||||
expiresInSeconds: number;
|
|
||||||
refreshToken: string;
|
|
||||||
refreshExpiresInSeconds: number;
|
|
||||||
user: { id: string; email: string };
|
|
||||||
}> {
|
|
||||||
return this.authService.refreshTokens(body.refreshToken);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post("token/revoke")
|
|
||||||
async revokeRefreshToken(@Body() body: RefreshTokenDto): Promise<{ success: boolean }> {
|
|
||||||
return this.authService.revokeRefreshToken(body.refreshToken);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post("2fa/enroll")
|
|
||||||
async enrollTwoFactor(@Body() body: TwoFactorEnrollDto): Promise<{
|
|
||||||
userId: string;
|
|
||||||
secret: string;
|
|
||||||
otpauthUrl: string;
|
|
||||||
enabled: boolean;
|
|
||||||
}> {
|
|
||||||
return this.authService.enrollTwoFactor(body.email);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post("2fa/verify")
|
|
||||||
async verifyTwoFactor(
|
|
||||||
@Body() body: TwoFactorVerifyDto
|
|
||||||
): Promise<{ success: boolean; enabled: boolean }> {
|
|
||||||
return this.authService.verifyTwoFactor(body.email, body.token);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Get("oauth/github")
|
|
||||||
@UseGuards(AuthGuard("github"))
|
|
||||||
githubLogin(): void {}
|
|
||||||
|
|
||||||
@Get("oauth/github/callback")
|
|
||||||
@UseGuards(AuthGuard("github"))
|
|
||||||
githubCallback(@Req() req: { user: unknown }): {
|
|
||||||
success: boolean;
|
|
||||||
provider: "github";
|
|
||||||
profile: unknown;
|
|
||||||
} {
|
|
||||||
return {
|
|
||||||
success: true,
|
|
||||||
provider: "github",
|
|
||||||
profile: req.user
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
@Get("oauth/qq")
|
|
||||||
@UseGuards(AuthGuard("qq"))
|
|
||||||
qqLogin(): void {}
|
|
||||||
|
|
||||||
@Get("oauth/qq/callback")
|
|
||||||
@UseGuards(AuthGuard("qq"))
|
|
||||||
qqCallback(@Req() req: { user: unknown }): {
|
|
||||||
success: boolean;
|
|
||||||
provider: "qq";
|
|
||||||
profile: unknown;
|
|
||||||
} {
|
|
||||||
return {
|
|
||||||
success: true,
|
|
||||||
provider: "qq",
|
|
||||||
profile: req.user
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
@Get("oauth/wechat")
|
|
||||||
@UseGuards(AuthGuard("wechat"))
|
|
||||||
wechatLogin(): void {}
|
|
||||||
|
|
||||||
@Get("oauth/wechat/callback")
|
|
||||||
@UseGuards(AuthGuard("wechat"))
|
|
||||||
wechatCallback(@Req() req: { user: unknown }): {
|
|
||||||
success: boolean;
|
|
||||||
provider: "wechat";
|
|
||||||
profile: unknown;
|
|
||||||
} {
|
|
||||||
return {
|
|
||||||
success: true,
|
|
||||||
provider: "wechat",
|
|
||||||
profile: req.user
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
import { Module } from "@nestjs/common";
|
|
||||||
import { ConfigModule, ConfigService } from "@nestjs/config";
|
|
||||||
import { JwtModule } from "@nestjs/jwt";
|
|
||||||
import { PassportModule } from "@nestjs/passport";
|
|
||||||
import { AuthController } from "./auth.controller";
|
|
||||||
import { AuthMailService } from "./auth-mail.service";
|
|
||||||
import { AuthService } from "./auth.service";
|
|
||||||
import { GithubStrategy } from "./strategies/github.strategy";
|
|
||||||
import { QqStrategy } from "./strategies/qq.strategy";
|
|
||||||
import { WechatStrategy } from "./strategies/wechat.strategy";
|
|
||||||
|
|
||||||
@Module({
|
|
||||||
imports: [
|
|
||||||
ConfigModule,
|
|
||||||
PassportModule.register({ session: false }),
|
|
||||||
JwtModule.registerAsync({
|
|
||||||
inject: [ConfigService],
|
|
||||||
useFactory: (configService: ConfigService) => {
|
|
||||||
const expiresInSeconds = Number(configService.get("AUTH_ACCESS_EXPIRES_IN_SECONDS") ?? 900);
|
|
||||||
|
|
||||||
return {
|
|
||||||
secret: configService.get<string>("AUTH_ACCESS_SECRET") ?? "dev-access-secret",
|
|
||||||
signOptions: {
|
|
||||||
expiresIn: expiresInSeconds
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
})
|
|
||||||
],
|
|
||||||
controllers: [AuthController],
|
|
||||||
providers: [AuthService, AuthMailService, GithubStrategy, QqStrategy, WechatStrategy]
|
|
||||||
})
|
|
||||||
export class AuthModule {}
|
|
||||||
@@ -1,257 +0,0 @@
|
|||||||
import { Injectable, UnauthorizedException } from "@nestjs/common";
|
|
||||||
import { ConfigService } from "@nestjs/config";
|
|
||||||
import { JwtService } from "@nestjs/jwt";
|
|
||||||
import { randomUUID } from "node:crypto";
|
|
||||||
import { authenticator } from "@otplib/preset-default";
|
|
||||||
import { AuthMailService } from "./auth-mail.service";
|
|
||||||
import { PrismaService } from "../prisma/prisma.service";
|
|
||||||
|
|
||||||
type EmailCodeEntry = {
|
|
||||||
code: string;
|
|
||||||
expiresAt: number;
|
|
||||||
};
|
|
||||||
|
|
||||||
type AuthUser = {
|
|
||||||
id: string;
|
|
||||||
email: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
type AuthTokenResult = {
|
|
||||||
accessToken: string;
|
|
||||||
tokenType: "Bearer";
|
|
||||||
expiresInSeconds: number;
|
|
||||||
refreshToken: string;
|
|
||||||
refreshExpiresInSeconds: number;
|
|
||||||
user: AuthUser;
|
|
||||||
};
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class AuthService {
|
|
||||||
private readonly emailCodeStore = new Map<string, EmailCodeEntry>();
|
|
||||||
|
|
||||||
constructor(
|
|
||||||
private readonly configService: ConfigService,
|
|
||||||
private readonly jwtService: JwtService,
|
|
||||||
private readonly authMailService: AuthMailService,
|
|
||||||
private readonly prismaService: PrismaService
|
|
||||||
) {}
|
|
||||||
|
|
||||||
async sendEmailCode(email: string): Promise<{ success: boolean; expiresInSeconds: number }> {
|
|
||||||
const ttlSeconds = Number(this.configService.get("AUTH_EMAIL_CODE_TTL_SECONDS") ?? 300);
|
|
||||||
const code = this.generateCode();
|
|
||||||
const expiresAt = Date.now() + ttlSeconds * 1000;
|
|
||||||
const normalizedEmail = email.toLowerCase();
|
|
||||||
|
|
||||||
await this.authMailService.sendLoginCode(normalizedEmail, code, ttlSeconds);
|
|
||||||
this.emailCodeStore.set(normalizedEmail, { code, expiresAt });
|
|
||||||
|
|
||||||
return {
|
|
||||||
success: true,
|
|
||||||
expiresInSeconds: ttlSeconds
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async loginWithEmailCode(email: string, code: string): Promise<AuthTokenResult> {
|
|
||||||
const lowerEmail = email.toLowerCase();
|
|
||||||
const codeEntry = this.emailCodeStore.get(lowerEmail);
|
|
||||||
|
|
||||||
if (!codeEntry) {
|
|
||||||
throw new UnauthorizedException("验证码不存在或已失效");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (codeEntry.expiresAt < Date.now()) {
|
|
||||||
this.emailCodeStore.delete(lowerEmail);
|
|
||||||
throw new UnauthorizedException("验证码已过期");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (codeEntry.code !== code) {
|
|
||||||
throw new UnauthorizedException("验证码错误");
|
|
||||||
}
|
|
||||||
|
|
||||||
this.emailCodeStore.delete(lowerEmail);
|
|
||||||
|
|
||||||
const user = await this.getOrCreateUser(lowerEmail);
|
|
||||||
return this.issueTokens(user);
|
|
||||||
}
|
|
||||||
|
|
||||||
async refreshTokens(refreshToken: string): Promise<AuthTokenResult> {
|
|
||||||
const entry = await this.prismaService.refreshToken.findUnique({
|
|
||||||
where: {
|
|
||||||
tokenHash: refreshToken
|
|
||||||
},
|
|
||||||
include: {
|
|
||||||
user: {
|
|
||||||
select: {
|
|
||||||
id: true,
|
|
||||||
email: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!entry) {
|
|
||||||
throw new UnauthorizedException("刷新令牌不存在");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (entry.revokedAt) {
|
|
||||||
throw new UnauthorizedException("刷新令牌已注销");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (entry.expiresAt.getTime() < Date.now()) {
|
|
||||||
await this.prismaService.refreshToken.update({
|
|
||||||
where: {
|
|
||||||
id: entry.id
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
revokedAt: new Date()
|
|
||||||
}
|
|
||||||
});
|
|
||||||
throw new UnauthorizedException("刷新令牌已过期");
|
|
||||||
}
|
|
||||||
|
|
||||||
await this.prismaService.refreshToken.update({
|
|
||||||
where: {
|
|
||||||
id: entry.id
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
revokedAt: new Date()
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return this.issueTokens(entry.user);
|
|
||||||
}
|
|
||||||
|
|
||||||
async revokeRefreshToken(refreshToken: string): Promise<{ success: boolean }> {
|
|
||||||
await this.prismaService.refreshToken.updateMany({
|
|
||||||
where: {
|
|
||||||
tokenHash: refreshToken,
|
|
||||||
revokedAt: null
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
revokedAt: new Date()
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return { success: true };
|
|
||||||
}
|
|
||||||
|
|
||||||
async enrollTwoFactor(
|
|
||||||
email: string
|
|
||||||
): Promise<{ userId: string; secret: string; otpauthUrl: string; enabled: boolean }> {
|
|
||||||
const user = await this.getOrCreateUser(email.toLowerCase());
|
|
||||||
const secret = authenticator.generateSecret();
|
|
||||||
const issuer = this.configService.get<string>("AUTH_TOTP_ISSUER") ?? "TodoList";
|
|
||||||
const otpauthUrl = authenticator.keyuri(user.email, issuer, secret);
|
|
||||||
|
|
||||||
await this.prismaService.userSecurity.upsert({
|
|
||||||
where: {
|
|
||||||
userId: user.id
|
|
||||||
},
|
|
||||||
update: {
|
|
||||||
twoFactorSecret: secret,
|
|
||||||
twoFactorEnabled: false
|
|
||||||
},
|
|
||||||
create: {
|
|
||||||
userId: user.id,
|
|
||||||
twoFactorSecret: secret,
|
|
||||||
twoFactorEnabled: false
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return {
|
|
||||||
userId: user.id,
|
|
||||||
secret,
|
|
||||||
otpauthUrl,
|
|
||||||
enabled: false
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async verifyTwoFactor(
|
|
||||||
email: string,
|
|
||||||
token: string
|
|
||||||
): Promise<{ success: boolean; enabled: boolean }> {
|
|
||||||
const user = await this.getOrCreateUser(email.toLowerCase());
|
|
||||||
const security = await this.prismaService.userSecurity.findUnique({
|
|
||||||
where: {
|
|
||||||
userId: user.id
|
|
||||||
},
|
|
||||||
select: {
|
|
||||||
twoFactorSecret: true
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!security?.twoFactorSecret) {
|
|
||||||
throw new UnauthorizedException("尚未启用两步验证");
|
|
||||||
}
|
|
||||||
|
|
||||||
const valid = authenticator.check(token, security.twoFactorSecret);
|
|
||||||
if (!valid) {
|
|
||||||
throw new UnauthorizedException("两步验证码错误");
|
|
||||||
}
|
|
||||||
|
|
||||||
await this.prismaService.userSecurity.update({
|
|
||||||
where: {
|
|
||||||
userId: user.id
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
twoFactorEnabled: true
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return {
|
|
||||||
success: true,
|
|
||||||
enabled: true
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private async getOrCreateUser(email: string): Promise<AuthUser> {
|
|
||||||
return this.prismaService.user.upsert({
|
|
||||||
where: {
|
|
||||||
email
|
|
||||||
},
|
|
||||||
update: {},
|
|
||||||
create: {
|
|
||||||
email
|
|
||||||
},
|
|
||||||
select: {
|
|
||||||
id: true,
|
|
||||||
email: true
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
private generateCode(): string {
|
|
||||||
return String(Math.floor(100000 + Math.random() * 900000));
|
|
||||||
}
|
|
||||||
|
|
||||||
private async issueTokens(user: AuthUser): Promise<AuthTokenResult> {
|
|
||||||
const accessExpiresInSeconds = Number(
|
|
||||||
this.configService.get("AUTH_ACCESS_EXPIRES_IN_SECONDS") ?? 900
|
|
||||||
);
|
|
||||||
const refreshExpiresInSeconds = Number(
|
|
||||||
this.configService.get("AUTH_REFRESH_EXPIRES_IN_SECONDS") ?? 2592000
|
|
||||||
);
|
|
||||||
const accessToken = await this.jwtService.signAsync({
|
|
||||||
sub: user.id,
|
|
||||||
email: user.email
|
|
||||||
});
|
|
||||||
const refreshToken = `${randomUUID()}${randomUUID()}`;
|
|
||||||
|
|
||||||
await this.prismaService.refreshToken.create({
|
|
||||||
data: {
|
|
||||||
userId: user.id,
|
|
||||||
tokenHash: refreshToken,
|
|
||||||
expiresAt: new Date(Date.now() + refreshExpiresInSeconds * 1000)
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return {
|
|
||||||
accessToken,
|
|
||||||
tokenType: "Bearer",
|
|
||||||
expiresInSeconds: accessExpiresInSeconds,
|
|
||||||
refreshToken,
|
|
||||||
refreshExpiresInSeconds,
|
|
||||||
user
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import { IsEmail, IsString, Length, Matches } from "class-validator";
|
|
||||||
|
|
||||||
export class EmailLoginDto {
|
|
||||||
@IsEmail()
|
|
||||||
email!: string;
|
|
||||||
|
|
||||||
@IsString()
|
|
||||||
@Length(6, 6)
|
|
||||||
@Matches(/^\d{6}$/)
|
|
||||||
code!: string;
|
|
||||||
}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
import { IsString, MinLength } from "class-validator";
|
|
||||||
|
|
||||||
export class RefreshTokenDto {
|
|
||||||
@IsString()
|
|
||||||
@MinLength(20)
|
|
||||||
refreshToken!: string;
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
import { IsEmail } from "class-validator";
|
|
||||||
|
|
||||||
export class SendEmailCodeDto {
|
|
||||||
@IsEmail()
|
|
||||||
email!: string;
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
import { IsEmail } from "class-validator";
|
|
||||||
|
|
||||||
export class TwoFactorEnrollDto {
|
|
||||||
@IsEmail()
|
|
||||||
email!: string;
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import { IsEmail, IsString, Length, Matches } from "class-validator";
|
|
||||||
|
|
||||||
export class TwoFactorVerifyDto {
|
|
||||||
@IsEmail()
|
|
||||||
email!: string;
|
|
||||||
|
|
||||||
@IsString()
|
|
||||||
@Length(6, 6)
|
|
||||||
@Matches(/^\d{6}$/)
|
|
||||||
token!: string;
|
|
||||||
}
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
import { Injectable } from "@nestjs/common";
|
|
||||||
import { ConfigService } from "@nestjs/config";
|
|
||||||
import { PassportStrategy } from "@nestjs/passport";
|
|
||||||
import { Profile, Strategy } from "passport-github2";
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class GithubStrategy extends PassportStrategy(Strategy, "github") {
|
|
||||||
constructor(configService: ConfigService) {
|
|
||||||
super({
|
|
||||||
clientID: configService.get<string>("OAUTH_GITHUB_CLIENT_ID") ?? "github-client-id",
|
|
||||||
clientSecret:
|
|
||||||
configService.get<string>("OAUTH_GITHUB_CLIENT_SECRET") ?? "github-client-secret",
|
|
||||||
callbackURL:
|
|
||||||
configService.get<string>("OAUTH_GITHUB_CALLBACK_URL") ??
|
|
||||||
"http://localhost:3000/auth/oauth/github/callback",
|
|
||||||
scope: ["user:email"]
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async validate(
|
|
||||||
accessToken: string,
|
|
||||||
refreshToken: string,
|
|
||||||
profile: Profile
|
|
||||||
): Promise<{ provider: "github"; accessToken: string; refreshToken: string; profile: Profile }> {
|
|
||||||
return {
|
|
||||||
provider: "github",
|
|
||||||
accessToken,
|
|
||||||
refreshToken,
|
|
||||||
profile
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
import { Injectable } from "@nestjs/common";
|
|
||||||
import { ConfigService } from "@nestjs/config";
|
|
||||||
import { PassportStrategy } from "@nestjs/passport";
|
|
||||||
import { Strategy } from "passport-oauth2";
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class QqStrategy extends PassportStrategy(Strategy, "qq") {
|
|
||||||
constructor(configService: ConfigService) {
|
|
||||||
super({
|
|
||||||
authorizationURL:
|
|
||||||
configService.get<string>("OAUTH_QQ_AUTH_URL") ?? "https://graph.qq.com/oauth2.0/authorize",
|
|
||||||
tokenURL:
|
|
||||||
configService.get<string>("OAUTH_QQ_TOKEN_URL") ?? "https://graph.qq.com/oauth2.0/token",
|
|
||||||
clientID: configService.get<string>("OAUTH_QQ_CLIENT_ID") ?? "qq-client-id",
|
|
||||||
clientSecret: configService.get<string>("OAUTH_QQ_CLIENT_SECRET") ?? "qq-client-secret",
|
|
||||||
callbackURL:
|
|
||||||
configService.get<string>("OAUTH_QQ_CALLBACK_URL") ??
|
|
||||||
"http://localhost:3000/auth/oauth/qq/callback",
|
|
||||||
scope: ["get_user_info"]
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async validate(
|
|
||||||
accessToken: string,
|
|
||||||
refreshToken: string
|
|
||||||
): Promise<{ provider: "qq"; accessToken: string; refreshToken: string }> {
|
|
||||||
return {
|
|
||||||
provider: "qq",
|
|
||||||
accessToken,
|
|
||||||
refreshToken
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
import { Injectable } from "@nestjs/common";
|
|
||||||
import { ConfigService } from "@nestjs/config";
|
|
||||||
import { PassportStrategy } from "@nestjs/passport";
|
|
||||||
import { Strategy } from "passport-oauth2";
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class WechatStrategy extends PassportStrategy(Strategy, "wechat") {
|
|
||||||
constructor(configService: ConfigService) {
|
|
||||||
super({
|
|
||||||
authorizationURL:
|
|
||||||
configService.get<string>("OAUTH_WECHAT_AUTH_URL") ??
|
|
||||||
"https://open.weixin.qq.com/connect/qrconnect",
|
|
||||||
tokenURL:
|
|
||||||
configService.get<string>("OAUTH_WECHAT_TOKEN_URL") ??
|
|
||||||
"https://api.weixin.qq.com/sns/oauth2/access_token",
|
|
||||||
clientID: configService.get<string>("OAUTH_WECHAT_CLIENT_ID") ?? "wechat-client-id",
|
|
||||||
clientSecret:
|
|
||||||
configService.get<string>("OAUTH_WECHAT_CLIENT_SECRET") ?? "wechat-client-secret",
|
|
||||||
callbackURL:
|
|
||||||
configService.get<string>("OAUTH_WECHAT_CALLBACK_URL") ??
|
|
||||||
"http://localhost:3000/auth/oauth/wechat/callback",
|
|
||||||
scope: ["snsapi_login"]
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async validate(
|
|
||||||
accessToken: string,
|
|
||||||
refreshToken: string
|
|
||||||
): Promise<{ provider: "wechat"; accessToken: string; refreshToken: string }> {
|
|
||||||
return {
|
|
||||||
provider: "wechat",
|
|
||||||
accessToken,
|
|
||||||
refreshToken
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
import "reflect-metadata";
|
|
||||||
import { ValidationPipe } from "@nestjs/common";
|
|
||||||
import { NestFactory } from "@nestjs/core";
|
|
||||||
import type { NestExpressApplication } from "@nestjs/platform-express";
|
|
||||||
import { AppModule } from "./app.module";
|
|
||||||
|
|
||||||
async function bootstrap(): Promise<void> {
|
|
||||||
const app = await NestFactory.create<NestExpressApplication>(AppModule);
|
|
||||||
const bodyLimit = process.env.API_BODY_LIMIT ?? "8mb";
|
|
||||||
|
|
||||||
app.useBodyParser("json", { limit: bodyLimit });
|
|
||||||
app.useBodyParser("urlencoded", {
|
|
||||||
extended: true,
|
|
||||||
limit: bodyLimit
|
|
||||||
});
|
|
||||||
app.enableCors({
|
|
||||||
origin: true,
|
|
||||||
credentials: true
|
|
||||||
});
|
|
||||||
app.useGlobalPipes(
|
|
||||||
new ValidationPipe({
|
|
||||||
transform: true,
|
|
||||||
whitelist: true,
|
|
||||||
forbidNonWhitelisted: true
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
await app.listen(3000);
|
|
||||||
}
|
|
||||||
|
|
||||||
void bootstrap();
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
import { Global, Module } from "@nestjs/common";
|
|
||||||
import { PrismaService } from "./prisma.service";
|
|
||||||
|
|
||||||
@Global()
|
|
||||||
@Module({
|
|
||||||
providers: [PrismaService],
|
|
||||||
exports: [PrismaService]
|
|
||||||
})
|
|
||||||
export class PrismaModule {}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
import { Injectable, OnModuleDestroy, OnModuleInit } from "@nestjs/common";
|
|
||||||
import { ConfigService } from "@nestjs/config";
|
|
||||||
import { PrismaPg } from "@prisma/adapter-pg";
|
|
||||||
import { PrismaClient } from "../../generated/prisma/client";
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class PrismaService extends PrismaClient implements OnModuleInit, OnModuleDestroy {
|
|
||||||
constructor(configService: ConfigService) {
|
|
||||||
const connectionString = configService.get<string>("DATABASE_URL");
|
|
||||||
if (!connectionString) {
|
|
||||||
throw new Error("缺少数据库连接配置 DATABASE_URL");
|
|
||||||
}
|
|
||||||
|
|
||||||
super({
|
|
||||||
adapter: new PrismaPg({
|
|
||||||
connectionString
|
|
||||||
})
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async onModuleInit(): Promise<void> {
|
|
||||||
await this.$connect();
|
|
||||||
}
|
|
||||||
|
|
||||||
async onModuleDestroy(): Promise<void> {
|
|
||||||
await this.$disconnect();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
import { Type } from "class-transformer";
|
|
||||||
import { IsInt, IsOptional, IsString, Max, MaxLength, Min } from "class-validator";
|
|
||||||
|
|
||||||
export class SyncPullQueryDto {
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(512)
|
|
||||||
cursor?: string;
|
|
||||||
|
|
||||||
@Type(() => Number)
|
|
||||||
@IsOptional()
|
|
||||||
@IsInt()
|
|
||||||
@Min(1)
|
|
||||||
@Max(200)
|
|
||||||
limit?: number;
|
|
||||||
}
|
|
||||||
@@ -1,62 +0,0 @@
|
|||||||
import { Type } from "class-transformer";
|
|
||||||
import {
|
|
||||||
ArrayMaxSize,
|
|
||||||
ArrayMinSize,
|
|
||||||
IsArray,
|
|
||||||
IsEnum,
|
|
||||||
IsInt,
|
|
||||||
IsOptional,
|
|
||||||
IsString,
|
|
||||||
MaxLength,
|
|
||||||
Min,
|
|
||||||
ValidateNested
|
|
||||||
} from "class-validator";
|
|
||||||
|
|
||||||
export enum SyncEntityTypeDto {
|
|
||||||
TASK = "TASK"
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum SyncActionTypeDto {
|
|
||||||
CREATE = "CREATE",
|
|
||||||
UPDATE = "UPDATE",
|
|
||||||
DELETE = "DELETE"
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SyncPushOperationDto {
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(64)
|
|
||||||
opId!: string;
|
|
||||||
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(64)
|
|
||||||
entityId!: string;
|
|
||||||
|
|
||||||
@IsEnum(SyncEntityTypeDto)
|
|
||||||
entityType!: SyncEntityTypeDto;
|
|
||||||
|
|
||||||
@IsEnum(SyncActionTypeDto)
|
|
||||||
action!: SyncActionTypeDto;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(5000000)
|
|
||||||
payload?: string;
|
|
||||||
|
|
||||||
@Type(() => Number)
|
|
||||||
@IsInt()
|
|
||||||
@Min(0)
|
|
||||||
clientTs!: number;
|
|
||||||
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(128)
|
|
||||||
deviceId!: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export class SyncPushDto {
|
|
||||||
@IsArray()
|
|
||||||
@ArrayMinSize(1)
|
|
||||||
@ArrayMaxSize(200)
|
|
||||||
@ValidateNested({ each: true })
|
|
||||||
@Type(() => SyncPushOperationDto)
|
|
||||||
operations!: SyncPushOperationDto[];
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
import { Body, Controller, Get, Headers, Post, Query, UnauthorizedException } from "@nestjs/common";
|
|
||||||
import { SyncPullQueryDto } from "./dto/sync-pull.dto";
|
|
||||||
import { SyncPushDto } from "./dto/sync-push.dto";
|
|
||||||
import { SyncPullResponse, SyncPushResponse, SyncService } from "./sync.service";
|
|
||||||
|
|
||||||
@Controller("sync")
|
|
||||||
export class SyncController {
|
|
||||||
constructor(private readonly syncService: SyncService) {}
|
|
||||||
|
|
||||||
@Get("pull")
|
|
||||||
async pullOperations(
|
|
||||||
@Headers("x-user-id") userIdHeader: string | string[] | undefined,
|
|
||||||
@Query() query: SyncPullQueryDto
|
|
||||||
): Promise<SyncPullResponse> {
|
|
||||||
return this.syncService.pullOperations(this.resolveUserId(userIdHeader), query);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post("push")
|
|
||||||
async pushOperations(
|
|
||||||
@Headers("x-user-id") userIdHeader: string | string[] | undefined,
|
|
||||||
@Body() body: SyncPushDto
|
|
||||||
): Promise<SyncPushResponse> {
|
|
||||||
return this.syncService.pushOperations(this.resolveUserId(userIdHeader), body);
|
|
||||||
}
|
|
||||||
|
|
||||||
private resolveUserId(userIdHeader: string | string[] | undefined): string {
|
|
||||||
const userId = Array.isArray(userIdHeader) ? userIdHeader[0] : userIdHeader;
|
|
||||||
if (!userId) {
|
|
||||||
throw new UnauthorizedException("缺少用户上下文");
|
|
||||||
}
|
|
||||||
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import { Module } from "@nestjs/common";
|
|
||||||
import { PrismaModule } from "../prisma/prisma.module";
|
|
||||||
import { SyncController } from "./sync.controller";
|
|
||||||
import { SyncService } from "./sync.service";
|
|
||||||
|
|
||||||
@Module({
|
|
||||||
imports: [PrismaModule],
|
|
||||||
controllers: [SyncController],
|
|
||||||
providers: [SyncService]
|
|
||||||
})
|
|
||||||
export class SyncModule {}
|
|
||||||
@@ -1,313 +0,0 @@
|
|||||||
import { BadRequestException, Injectable } from "@nestjs/common";
|
|
||||||
import { Prisma } from "../../generated/prisma/client";
|
|
||||||
import { PrismaService } from "../prisma/prisma.service";
|
|
||||||
import { SyncPullQueryDto } from "./dto/sync-pull.dto";
|
|
||||||
import { SyncPushDto, SyncPushOperationDto } from "./dto/sync-push.dto";
|
|
||||||
|
|
||||||
export type SyncPushItemStatus = "accepted" | "duplicate" | "failed";
|
|
||||||
|
|
||||||
export type SyncPushItemResult = {
|
|
||||||
opId: string;
|
|
||||||
status: SyncPushItemStatus;
|
|
||||||
serverTs: string | null;
|
|
||||||
reason: string | null;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type SyncPushResponse = {
|
|
||||||
acceptedCount: number;
|
|
||||||
duplicateCount: number;
|
|
||||||
failedCount: number;
|
|
||||||
results: SyncPushItemResult[];
|
|
||||||
};
|
|
||||||
|
|
||||||
type ExistingOperationRecord = {
|
|
||||||
opId: string;
|
|
||||||
serverTs: Date;
|
|
||||||
};
|
|
||||||
|
|
||||||
type SyncPullCursorState = {
|
|
||||||
serverTs: string;
|
|
||||||
opId: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
type SyncPullOperationRecord = {
|
|
||||||
opId: string;
|
|
||||||
entityId: string;
|
|
||||||
entityType: string;
|
|
||||||
action: string;
|
|
||||||
payload: Prisma.JsonValue | null;
|
|
||||||
clientTs: Date;
|
|
||||||
deviceId: string;
|
|
||||||
serverTs: Date;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type SyncPullItem = {
|
|
||||||
opId: string;
|
|
||||||
entityId: string;
|
|
||||||
entityType: string;
|
|
||||||
action: string;
|
|
||||||
payload: string | null;
|
|
||||||
clientTs: number;
|
|
||||||
deviceId: string;
|
|
||||||
serverTs: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type SyncPullResponse = {
|
|
||||||
items: SyncPullItem[];
|
|
||||||
nextCursor: string | null;
|
|
||||||
hasMore: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class SyncService {
|
|
||||||
constructor(private readonly prismaService: PrismaService) {}
|
|
||||||
|
|
||||||
async pullOperations(userId: string, query: SyncPullQueryDto): Promise<SyncPullResponse> {
|
|
||||||
const limit = query.limit ?? 100;
|
|
||||||
const cursor = this.parseCursor(query.cursor);
|
|
||||||
|
|
||||||
const operations = (await this.prismaService.syncOperation.findMany({
|
|
||||||
where: this.buildPullWhereInput(userId, cursor),
|
|
||||||
orderBy: [{ serverTs: "asc" }, { opId: "asc" }],
|
|
||||||
take: limit + 1,
|
|
||||||
select: {
|
|
||||||
opId: true,
|
|
||||||
entityId: true,
|
|
||||||
entityType: true,
|
|
||||||
action: true,
|
|
||||||
payload: true,
|
|
||||||
clientTs: true,
|
|
||||||
deviceId: true,
|
|
||||||
serverTs: true
|
|
||||||
}
|
|
||||||
})) as SyncPullOperationRecord[];
|
|
||||||
|
|
||||||
const hasMore = operations.length > limit;
|
|
||||||
const pageItems = hasMore ? operations.slice(0, limit) : operations;
|
|
||||||
const lastOperation = pageItems.at(-1);
|
|
||||||
|
|
||||||
return {
|
|
||||||
items: pageItems.map((operation) => this.serializePullItem(operation)),
|
|
||||||
nextCursor: lastOperation
|
|
||||||
? this.encodeCursor({
|
|
||||||
serverTs: lastOperation.serverTs.toISOString(),
|
|
||||||
opId: lastOperation.opId
|
|
||||||
})
|
|
||||||
: (query.cursor ?? null),
|
|
||||||
hasMore
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async pushOperations(userId: string, body: SyncPushDto): Promise<SyncPushResponse> {
|
|
||||||
const existingOperations = await this.loadExistingOperations(userId, body.operations);
|
|
||||||
const results: SyncPushItemResult[] = [];
|
|
||||||
const seenOperationIds = new Set<string>();
|
|
||||||
const acceptedOperationServerTs = new Map<string, string>();
|
|
||||||
|
|
||||||
for (const operation of body.operations) {
|
|
||||||
if (seenOperationIds.has(operation.opId)) {
|
|
||||||
results.push({
|
|
||||||
opId: operation.opId,
|
|
||||||
status: "duplicate",
|
|
||||||
serverTs: acceptedOperationServerTs.get(operation.opId) ?? null,
|
|
||||||
reason: "same_batch_duplicate"
|
|
||||||
});
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
seenOperationIds.add(operation.opId);
|
|
||||||
|
|
||||||
const existingOperation = existingOperations.get(operation.opId);
|
|
||||||
if (existingOperation) {
|
|
||||||
results.push({
|
|
||||||
opId: operation.opId,
|
|
||||||
status: "duplicate",
|
|
||||||
serverTs: existingOperation.serverTs.toISOString(),
|
|
||||||
reason: "already_synced"
|
|
||||||
});
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const createdOperation = await this.prismaService.syncOperation.create({
|
|
||||||
data: {
|
|
||||||
opId: operation.opId,
|
|
||||||
userId,
|
|
||||||
deviceId: operation.deviceId,
|
|
||||||
entityType: operation.entityType,
|
|
||||||
entityId: operation.entityId,
|
|
||||||
action: operation.action,
|
|
||||||
payload: operation.payload,
|
|
||||||
clientTs: new Date(operation.clientTs)
|
|
||||||
},
|
|
||||||
select: {
|
|
||||||
opId: true,
|
|
||||||
serverTs: true
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
const serverTs = createdOperation.serverTs.toISOString();
|
|
||||||
acceptedOperationServerTs.set(createdOperation.opId, serverTs);
|
|
||||||
results.push({
|
|
||||||
opId: createdOperation.opId,
|
|
||||||
status: "accepted",
|
|
||||||
serverTs,
|
|
||||||
reason: null
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
if (this.isDuplicateOpIdError(error)) {
|
|
||||||
results.push({
|
|
||||||
opId: operation.opId,
|
|
||||||
status: "duplicate",
|
|
||||||
serverTs: null,
|
|
||||||
reason: "already_synced"
|
|
||||||
});
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
results.push({
|
|
||||||
opId: operation.opId,
|
|
||||||
status: "failed",
|
|
||||||
serverTs: null,
|
|
||||||
reason: "persist_failed"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
acceptedCount: results.filter((item) => item.status === "accepted").length,
|
|
||||||
duplicateCount: results.filter((item) => item.status === "duplicate").length,
|
|
||||||
failedCount: results.filter((item) => item.status === "failed").length,
|
|
||||||
results
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private async loadExistingOperations(
|
|
||||||
userId: string,
|
|
||||||
operations: SyncPushOperationDto[]
|
|
||||||
): Promise<Map<string, ExistingOperationRecord>> {
|
|
||||||
const opIds = Array.from(new Set(operations.map((operation) => operation.opId)));
|
|
||||||
|
|
||||||
const existingOperations = (await this.prismaService.syncOperation.findMany({
|
|
||||||
where: {
|
|
||||||
userId,
|
|
||||||
opId: {
|
|
||||||
in: opIds
|
|
||||||
}
|
|
||||||
},
|
|
||||||
select: {
|
|
||||||
opId: true,
|
|
||||||
serverTs: true
|
|
||||||
}
|
|
||||||
})) as ExistingOperationRecord[];
|
|
||||||
|
|
||||||
return new Map(
|
|
||||||
existingOperations.map((operation): [string, ExistingOperationRecord] => [
|
|
||||||
operation.opId,
|
|
||||||
operation
|
|
||||||
])
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
private buildPullWhereInput(
|
|
||||||
userId: string,
|
|
||||||
cursor: SyncPullCursorState | null
|
|
||||||
): Prisma.SyncOperationWhereInput {
|
|
||||||
if (!cursor) {
|
|
||||||
return { userId };
|
|
||||||
}
|
|
||||||
|
|
||||||
const cursorDate = new Date(cursor.serverTs);
|
|
||||||
|
|
||||||
return {
|
|
||||||
userId,
|
|
||||||
// 同一毫秒内可能有多条操作,必须使用 opId 作为二级游标来保证稳定分页。
|
|
||||||
OR: [
|
|
||||||
{
|
|
||||||
serverTs: {
|
|
||||||
gt: cursorDate
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
serverTs: cursorDate,
|
|
||||||
opId: {
|
|
||||||
gt: cursor.opId
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private serializePullItem(operation: SyncPullOperationRecord): SyncPullItem {
|
|
||||||
return {
|
|
||||||
opId: operation.opId,
|
|
||||||
entityId: operation.entityId,
|
|
||||||
entityType: operation.entityType,
|
|
||||||
action: operation.action,
|
|
||||||
payload: this.serializePayload(operation.payload),
|
|
||||||
clientTs: operation.clientTs.getTime(),
|
|
||||||
deviceId: operation.deviceId,
|
|
||||||
serverTs: operation.serverTs.toISOString()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private serializePayload(payload: Prisma.JsonValue | null): string | null {
|
|
||||||
if (payload === null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof payload === "string") {
|
|
||||||
return payload;
|
|
||||||
}
|
|
||||||
|
|
||||||
return JSON.stringify(payload);
|
|
||||||
}
|
|
||||||
|
|
||||||
private parseCursor(cursor: string | undefined): SyncPullCursorState | null {
|
|
||||||
if (!cursor) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
let decodedCursor: unknown;
|
|
||||||
try {
|
|
||||||
decodedCursor = JSON.parse(Buffer.from(cursor, "base64url").toString("utf8"));
|
|
||||||
} catch {
|
|
||||||
throw new BadRequestException("Invalid sync cursor");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof decodedCursor !== "object" || decodedCursor === null) {
|
|
||||||
throw new BadRequestException("Invalid sync cursor");
|
|
||||||
}
|
|
||||||
|
|
||||||
const cursorRecord = decodedCursor as {
|
|
||||||
serverTs?: unknown;
|
|
||||||
opId?: unknown;
|
|
||||||
};
|
|
||||||
|
|
||||||
if (
|
|
||||||
typeof cursorRecord.serverTs !== "string" ||
|
|
||||||
typeof cursorRecord.opId !== "string" ||
|
|
||||||
Number.isNaN(Date.parse(cursorRecord.serverTs)) ||
|
|
||||||
cursorRecord.opId.trim().length === 0
|
|
||||||
) {
|
|
||||||
throw new BadRequestException("Invalid sync cursor");
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
serverTs: cursorRecord.serverTs,
|
|
||||||
opId: cursorRecord.opId
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private encodeCursor(cursor: SyncPullCursorState): string {
|
|
||||||
return Buffer.from(JSON.stringify(cursor), "utf8").toString("base64url");
|
|
||||||
}
|
|
||||||
|
|
||||||
private isDuplicateOpIdError(error: unknown): boolean {
|
|
||||||
if (!(error instanceof Prisma.PrismaClientKnownRequestError)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return error.code === "P2002";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
import { Transform } from "class-transformer";
|
|
||||||
import {
|
|
||||||
IsArray,
|
|
||||||
IsDateString,
|
|
||||||
IsEnum,
|
|
||||||
IsObject,
|
|
||||||
IsOptional,
|
|
||||||
IsString,
|
|
||||||
MaxLength,
|
|
||||||
MinLength
|
|
||||||
} from "class-validator";
|
|
||||||
import { TaskPriority, TaskStatus } from "../../../generated/prisma/client";
|
|
||||||
|
|
||||||
function normalizeString(value: unknown): unknown {
|
|
||||||
if (typeof value !== "string") {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return value.trim();
|
|
||||||
}
|
|
||||||
|
|
||||||
export class CreateTaskDto {
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsString()
|
|
||||||
@MinLength(1)
|
|
||||||
@MaxLength(120)
|
|
||||||
title!: string;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsObject()
|
|
||||||
contentJson?: Record<string, unknown>;
|
|
||||||
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(20000)
|
|
||||||
contentText?: string;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsEnum(TaskPriority)
|
|
||||||
priority?: TaskPriority;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsEnum(TaskStatus)
|
|
||||||
status?: TaskStatus;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsDateString()
|
|
||||||
ddl?: string;
|
|
||||||
|
|
||||||
@Transform(({ value }) => {
|
|
||||||
if (!Array.isArray(value)) {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return value.map((item) => normalizeString(item));
|
|
||||||
})
|
|
||||||
@IsOptional()
|
|
||||||
@IsArray()
|
|
||||||
@IsString({ each: true })
|
|
||||||
@MinLength(1, { each: true })
|
|
||||||
@MaxLength(30, { each: true })
|
|
||||||
tagNames?: string[];
|
|
||||||
}
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
import { Transform, Type } from "class-transformer";
|
|
||||||
import { IsArray, IsEnum, IsInt, IsOptional, IsString, Max, MaxLength, Min } from "class-validator";
|
|
||||||
import { TaskPriority, TaskStatus } from "../../../generated/prisma/client";
|
|
||||||
|
|
||||||
export enum TaskSortBy {
|
|
||||||
CREATED_AT = "createdAt",
|
|
||||||
UPDATED_AT = "updatedAt",
|
|
||||||
DDL = "ddl"
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum TaskSortOrder {
|
|
||||||
ASC = "asc",
|
|
||||||
DESC = "desc"
|
|
||||||
}
|
|
||||||
|
|
||||||
function normalizeString(value: unknown): string | undefined {
|
|
||||||
if (typeof value !== "string") {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
const normalized = value.trim();
|
|
||||||
if (!normalized) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
return normalized;
|
|
||||||
}
|
|
||||||
|
|
||||||
export class ListTasksQueryDto {
|
|
||||||
@IsOptional()
|
|
||||||
@IsEnum(TaskStatus)
|
|
||||||
status?: TaskStatus;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsEnum(TaskPriority)
|
|
||||||
priority?: TaskPriority;
|
|
||||||
|
|
||||||
@Transform(({ value }) => {
|
|
||||||
if (value === undefined || value === null || value === "") {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Array.isArray(value)) {
|
|
||||||
const normalized = value
|
|
||||||
.map((item) => normalizeString(item))
|
|
||||||
.filter((item): item is string => item !== undefined);
|
|
||||||
return normalized.length > 0 ? normalized : undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof value === "string") {
|
|
||||||
const normalized = value
|
|
||||||
.split(",")
|
|
||||||
.map((item) => normalizeString(item))
|
|
||||||
.filter((item): item is string => item !== undefined);
|
|
||||||
return normalized.length > 0 ? normalized : undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
return undefined;
|
|
||||||
})
|
|
||||||
@IsOptional()
|
|
||||||
@IsArray()
|
|
||||||
@IsString({ each: true })
|
|
||||||
@MaxLength(30, { each: true })
|
|
||||||
tags?: string[];
|
|
||||||
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(120)
|
|
||||||
keyword?: string;
|
|
||||||
|
|
||||||
@Type(() => Number)
|
|
||||||
@IsOptional()
|
|
||||||
@IsInt()
|
|
||||||
@Min(1)
|
|
||||||
page?: number;
|
|
||||||
|
|
||||||
@Type(() => Number)
|
|
||||||
@IsOptional()
|
|
||||||
@IsInt()
|
|
||||||
@Min(1)
|
|
||||||
@Max(100)
|
|
||||||
pageSize?: number;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsEnum(TaskSortBy)
|
|
||||||
sortBy?: TaskSortBy;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsEnum(TaskSortOrder)
|
|
||||||
sortOrder?: TaskSortOrder;
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
import { Transform } from "class-transformer";
|
|
||||||
import {
|
|
||||||
IsArray,
|
|
||||||
IsDateString,
|
|
||||||
IsEnum,
|
|
||||||
IsObject,
|
|
||||||
IsOptional,
|
|
||||||
IsString,
|
|
||||||
MaxLength,
|
|
||||||
MinLength
|
|
||||||
} from "class-validator";
|
|
||||||
import { TaskPriority, TaskStatus } from "../../../generated/prisma/client";
|
|
||||||
|
|
||||||
function normalizeString(value: unknown): unknown {
|
|
||||||
if (typeof value !== "string") {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return value.trim();
|
|
||||||
}
|
|
||||||
|
|
||||||
export class UpdateTaskDto {
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MinLength(1)
|
|
||||||
@MaxLength(120)
|
|
||||||
title?: string;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsObject()
|
|
||||||
contentJson?: Record<string, unknown>;
|
|
||||||
|
|
||||||
@Transform(({ value }) => normalizeString(value))
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(20000)
|
|
||||||
contentText?: string;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsEnum(TaskPriority)
|
|
||||||
priority?: TaskPriority;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsEnum(TaskStatus)
|
|
||||||
status?: TaskStatus;
|
|
||||||
|
|
||||||
@IsOptional()
|
|
||||||
@IsDateString()
|
|
||||||
ddl?: string;
|
|
||||||
|
|
||||||
@Transform(({ value }) => {
|
|
||||||
if (!Array.isArray(value)) {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return value.map((item) => normalizeString(item));
|
|
||||||
})
|
|
||||||
@IsOptional()
|
|
||||||
@IsArray()
|
|
||||||
@IsString({ each: true })
|
|
||||||
@MinLength(1, { each: true })
|
|
||||||
@MaxLength(30, { each: true })
|
|
||||||
tagNames?: string[];
|
|
||||||
}
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
import {
|
|
||||||
Body,
|
|
||||||
Controller,
|
|
||||||
Delete,
|
|
||||||
Get,
|
|
||||||
Headers,
|
|
||||||
Param,
|
|
||||||
Patch,
|
|
||||||
Post,
|
|
||||||
Query,
|
|
||||||
UnauthorizedException
|
|
||||||
} from "@nestjs/common";
|
|
||||||
import { CreateTaskDto } from "./dto/create-task.dto";
|
|
||||||
import { ListTasksQueryDto } from "./dto/list-tasks-query.dto";
|
|
||||||
import { UpdateTaskDto } from "./dto/update-task.dto";
|
|
||||||
import { ListTasksResponse, TaskResponse, TaskService } from "./task.service";
|
|
||||||
|
|
||||||
@Controller("tasks")
|
|
||||||
export class TaskController {
|
|
||||||
constructor(private readonly taskService: TaskService) {}
|
|
||||||
|
|
||||||
@Get()
|
|
||||||
async listTasks(
|
|
||||||
@Headers("x-user-id") userIdHeader: string | string[] | undefined,
|
|
||||||
@Query() query: ListTasksQueryDto
|
|
||||||
): Promise<ListTasksResponse> {
|
|
||||||
return this.taskService.listTasks(this.resolveUserId(userIdHeader), query);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Get(":taskId")
|
|
||||||
async getTaskById(
|
|
||||||
@Headers("x-user-id") userIdHeader: string | string[] | undefined,
|
|
||||||
@Param("taskId") taskId: string
|
|
||||||
): Promise<TaskResponse> {
|
|
||||||
return this.taskService.getTaskById(this.resolveUserId(userIdHeader), taskId);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post()
|
|
||||||
async createTask(
|
|
||||||
@Headers("x-user-id") userIdHeader: string | string[] | undefined,
|
|
||||||
@Body() body: CreateTaskDto
|
|
||||||
): Promise<TaskResponse> {
|
|
||||||
return this.taskService.createTask(this.resolveUserId(userIdHeader), body);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Patch(":taskId")
|
|
||||||
async updateTask(
|
|
||||||
@Headers("x-user-id") userIdHeader: string | string[] | undefined,
|
|
||||||
@Param("taskId") taskId: string,
|
|
||||||
@Body() body: UpdateTaskDto
|
|
||||||
): Promise<TaskResponse> {
|
|
||||||
return this.taskService.updateTask(this.resolveUserId(userIdHeader), taskId, body);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Delete(":taskId")
|
|
||||||
async deleteTask(
|
|
||||||
@Headers("x-user-id") userIdHeader: string | string[] | undefined,
|
|
||||||
@Param("taskId") taskId: string
|
|
||||||
): Promise<{ success: boolean }> {
|
|
||||||
return this.taskService.deleteTask(this.resolveUserId(userIdHeader), taskId);
|
|
||||||
}
|
|
||||||
|
|
||||||
private resolveUserId(userIdHeader: string | string[] | undefined): string {
|
|
||||||
const userId = Array.isArray(userIdHeader) ? userIdHeader[0] : userIdHeader;
|
|
||||||
if (!userId) {
|
|
||||||
throw new UnauthorizedException("缺少用户上下文");
|
|
||||||
}
|
|
||||||
|
|
||||||
return userId;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import { Module } from "@nestjs/common";
|
|
||||||
import { PrismaModule } from "../prisma/prisma.module";
|
|
||||||
import { TaskController } from "./task.controller";
|
|
||||||
import { TaskService } from "./task.service";
|
|
||||||
|
|
||||||
@Module({
|
|
||||||
imports: [PrismaModule],
|
|
||||||
controllers: [TaskController],
|
|
||||||
providers: [TaskService]
|
|
||||||
})
|
|
||||||
export class TaskModule {}
|
|
||||||
@@ -1,390 +0,0 @@
|
|||||||
import { Injectable, NotFoundException } from "@nestjs/common";
|
|
||||||
import { Prisma, TaskPriority, TaskStatus } from "../../generated/prisma/client";
|
|
||||||
import { PrismaService } from "../prisma/prisma.service";
|
|
||||||
import { CreateTaskDto } from "./dto/create-task.dto";
|
|
||||||
import { ListTasksQueryDto, TaskSortBy, TaskSortOrder } from "./dto/list-tasks-query.dto";
|
|
||||||
import { UpdateTaskDto } from "./dto/update-task.dto";
|
|
||||||
|
|
||||||
type TaskEntity = Prisma.TaskGetPayload<{
|
|
||||||
include: {
|
|
||||||
taskTags: {
|
|
||||||
include: {
|
|
||||||
tag: {
|
|
||||||
select: {
|
|
||||||
name: true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}>;
|
|
||||||
|
|
||||||
export type TaskResponse = {
|
|
||||||
id: string;
|
|
||||||
title: string;
|
|
||||||
contentJson: unknown | null;
|
|
||||||
contentText: string | null;
|
|
||||||
priority: TaskPriority;
|
|
||||||
status: TaskStatus;
|
|
||||||
ddl: string | null;
|
|
||||||
completedAt: string | null;
|
|
||||||
version: number;
|
|
||||||
tags: string[];
|
|
||||||
createdAt: string;
|
|
||||||
updatedAt: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type ListTasksResponse = {
|
|
||||||
items: TaskResponse[];
|
|
||||||
page: number;
|
|
||||||
pageSize: number;
|
|
||||||
total: number;
|
|
||||||
};
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class TaskService {
|
|
||||||
constructor(private readonly prismaService: PrismaService) {}
|
|
||||||
|
|
||||||
async listTasks(userId: string, query: ListTasksQueryDto): Promise<ListTasksResponse> {
|
|
||||||
const page = query.page ?? 1;
|
|
||||||
const pageSize = query.pageSize ?? 20;
|
|
||||||
const skip = (page - 1) * pageSize;
|
|
||||||
|
|
||||||
const where = this.buildWhereInput(userId, query);
|
|
||||||
const orderBy = this.buildOrderByInput(query);
|
|
||||||
|
|
||||||
const [items, total] = await Promise.all([
|
|
||||||
this.prismaService.task.findMany({
|
|
||||||
where,
|
|
||||||
orderBy,
|
|
||||||
skip,
|
|
||||||
take: pageSize,
|
|
||||||
include: {
|
|
||||||
taskTags: {
|
|
||||||
include: {
|
|
||||||
tag: {
|
|
||||||
select: {
|
|
||||||
name: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
this.prismaService.task.count({ where })
|
|
||||||
]);
|
|
||||||
|
|
||||||
return {
|
|
||||||
items: items.map((item: TaskEntity) => this.serializeTask(item)),
|
|
||||||
page,
|
|
||||||
pageSize,
|
|
||||||
total
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async getTaskById(userId: string, taskId: string): Promise<TaskResponse> {
|
|
||||||
const task = await this.prismaService.task.findFirst({
|
|
||||||
where: {
|
|
||||||
id: taskId,
|
|
||||||
userId
|
|
||||||
},
|
|
||||||
include: {
|
|
||||||
taskTags: {
|
|
||||||
include: {
|
|
||||||
tag: {
|
|
||||||
select: {
|
|
||||||
name: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!task) {
|
|
||||||
throw new NotFoundException("任务不存在");
|
|
||||||
}
|
|
||||||
|
|
||||||
return this.serializeTask(task);
|
|
||||||
}
|
|
||||||
|
|
||||||
async createTask(userId: string, body: CreateTaskDto): Promise<TaskResponse> {
|
|
||||||
const tagNames = this.normalizeTagNames(body.tagNames);
|
|
||||||
const nextStatus = body.status ?? TaskStatus.TODO;
|
|
||||||
const contentJson =
|
|
||||||
body.contentJson !== undefined ? (body.contentJson as Prisma.InputJsonValue) : undefined;
|
|
||||||
|
|
||||||
const task = await this.prismaService.$transaction(async (tx) => {
|
|
||||||
const createdTask = await tx.task.create({
|
|
||||||
data: {
|
|
||||||
userId,
|
|
||||||
title: body.title,
|
|
||||||
contentJson,
|
|
||||||
contentText: body.contentText ?? null,
|
|
||||||
priority: body.priority ?? TaskPriority.MEDIUM,
|
|
||||||
status: nextStatus,
|
|
||||||
ddl: body.ddl ? new Date(body.ddl) : null,
|
|
||||||
completedAt: nextStatus === TaskStatus.DONE ? new Date() : null
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
await this.replaceTaskTags(tx, userId, createdTask.id, tagNames);
|
|
||||||
|
|
||||||
return tx.task.findUniqueOrThrow({
|
|
||||||
where: { id: createdTask.id },
|
|
||||||
include: {
|
|
||||||
taskTags: {
|
|
||||||
include: {
|
|
||||||
tag: {
|
|
||||||
select: {
|
|
||||||
name: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
return this.serializeTask(task);
|
|
||||||
}
|
|
||||||
|
|
||||||
async updateTask(userId: string, taskId: string, body: UpdateTaskDto): Promise<TaskResponse> {
|
|
||||||
const currentTask = await this.prismaService.task.findFirst({
|
|
||||||
where: {
|
|
||||||
id: taskId,
|
|
||||||
userId
|
|
||||||
},
|
|
||||||
select: {
|
|
||||||
id: true,
|
|
||||||
status: true
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!currentTask) {
|
|
||||||
throw new NotFoundException("任务不存在");
|
|
||||||
}
|
|
||||||
|
|
||||||
const data: Prisma.TaskUpdateInput = {
|
|
||||||
version: {
|
|
||||||
increment: 1
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if (body.title !== undefined) {
|
|
||||||
data.title = body.title;
|
|
||||||
}
|
|
||||||
if (body.contentJson !== undefined) {
|
|
||||||
data.contentJson = body.contentJson as Prisma.InputJsonValue;
|
|
||||||
}
|
|
||||||
if (body.contentText !== undefined) {
|
|
||||||
data.contentText = body.contentText;
|
|
||||||
}
|
|
||||||
if (body.priority !== undefined) {
|
|
||||||
data.priority = body.priority;
|
|
||||||
}
|
|
||||||
if (body.status !== undefined) {
|
|
||||||
data.status = body.status;
|
|
||||||
if (body.status === TaskStatus.DONE && currentTask.status !== TaskStatus.DONE) {
|
|
||||||
data.completedAt = new Date();
|
|
||||||
} else if (body.status !== TaskStatus.DONE) {
|
|
||||||
data.completedAt = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (body.ddl !== undefined) {
|
|
||||||
data.ddl = body.ddl ? new Date(body.ddl) : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
const shouldReplaceTags = body.tagNames !== undefined;
|
|
||||||
const nextTagNames = this.normalizeTagNames(body.tagNames);
|
|
||||||
|
|
||||||
const task = await this.prismaService.$transaction(async (tx) => {
|
|
||||||
await tx.task.update({
|
|
||||||
where: { id: taskId },
|
|
||||||
data
|
|
||||||
});
|
|
||||||
|
|
||||||
if (shouldReplaceTags) {
|
|
||||||
await this.replaceTaskTags(tx, userId, taskId, nextTagNames);
|
|
||||||
}
|
|
||||||
|
|
||||||
return tx.task.findUniqueOrThrow({
|
|
||||||
where: { id: taskId },
|
|
||||||
include: {
|
|
||||||
taskTags: {
|
|
||||||
include: {
|
|
||||||
tag: {
|
|
||||||
select: {
|
|
||||||
name: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
return this.serializeTask(task);
|
|
||||||
}
|
|
||||||
|
|
||||||
async deleteTask(userId: string, taskId: string): Promise<{ success: boolean }> {
|
|
||||||
const deleted = await this.prismaService.task.deleteMany({
|
|
||||||
where: {
|
|
||||||
id: taskId,
|
|
||||||
userId
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (deleted.count === 0) {
|
|
||||||
throw new NotFoundException("任务不存在");
|
|
||||||
}
|
|
||||||
|
|
||||||
return { success: true };
|
|
||||||
}
|
|
||||||
|
|
||||||
private buildWhereInput(userId: string, query: ListTasksQueryDto): Prisma.TaskWhereInput {
|
|
||||||
const where: Prisma.TaskWhereInput = {
|
|
||||||
userId
|
|
||||||
};
|
|
||||||
|
|
||||||
if (query.status !== undefined) {
|
|
||||||
where.status = query.status;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (query.priority !== undefined) {
|
|
||||||
where.priority = query.priority;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (query.tags !== undefined && query.tags.length > 0) {
|
|
||||||
where.taskTags = {
|
|
||||||
some: {
|
|
||||||
tag: {
|
|
||||||
name: {
|
|
||||||
in: query.tags
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (query.keyword !== undefined && query.keyword.length > 0) {
|
|
||||||
where.OR = [
|
|
||||||
{
|
|
||||||
title: {
|
|
||||||
contains: query.keyword,
|
|
||||||
mode: "insensitive"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
contentText: {
|
|
||||||
contains: query.keyword,
|
|
||||||
mode: "insensitive"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
return where;
|
|
||||||
}
|
|
||||||
|
|
||||||
private buildOrderByInput(query: ListTasksQueryDto): Prisma.TaskOrderByWithRelationInput {
|
|
||||||
const order: Prisma.SortOrder =
|
|
||||||
query.sortOrder === TaskSortOrder.ASC ? Prisma.SortOrder.asc : Prisma.SortOrder.desc;
|
|
||||||
|
|
||||||
if (query.sortBy === TaskSortBy.CREATED_AT) {
|
|
||||||
return { createdAt: order };
|
|
||||||
}
|
|
||||||
|
|
||||||
if (query.sortBy === TaskSortBy.DDL) {
|
|
||||||
return { ddl: order };
|
|
||||||
}
|
|
||||||
|
|
||||||
return { updatedAt: order };
|
|
||||||
}
|
|
||||||
|
|
||||||
private normalizeTagNames(tagNames: string[] | undefined): string[] {
|
|
||||||
if (!tagNames) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
const result: string[] = [];
|
|
||||||
const uniqueNames = new Set<string>();
|
|
||||||
|
|
||||||
for (const rawTagName of tagNames) {
|
|
||||||
const normalized = rawTagName.trim();
|
|
||||||
if (!normalized) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const uniqueKey = normalized.toLocaleLowerCase();
|
|
||||||
if (uniqueNames.has(uniqueKey)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
uniqueNames.add(uniqueKey);
|
|
||||||
result.push(normalized);
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
private async replaceTaskTags(
|
|
||||||
tx: Prisma.TransactionClient,
|
|
||||||
userId: string,
|
|
||||||
taskId: string,
|
|
||||||
tagNames: string[]
|
|
||||||
): Promise<void> {
|
|
||||||
await tx.taskTag.deleteMany({
|
|
||||||
where: {
|
|
||||||
taskId
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (tagNames.length === 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const tags = await Promise.all(
|
|
||||||
tagNames.map((name) =>
|
|
||||||
tx.tag.upsert({
|
|
||||||
where: {
|
|
||||||
userId_name: {
|
|
||||||
userId,
|
|
||||||
name
|
|
||||||
}
|
|
||||||
},
|
|
||||||
update: {},
|
|
||||||
create: {
|
|
||||||
userId,
|
|
||||||
name
|
|
||||||
}
|
|
||||||
})
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
await tx.taskTag.createMany({
|
|
||||||
data: tags.map((tag: { id: string }) => ({
|
|
||||||
taskId,
|
|
||||||
tagId: tag.id
|
|
||||||
})),
|
|
||||||
skipDuplicates: true
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
private serializeTask(task: TaskEntity): TaskResponse {
|
|
||||||
return {
|
|
||||||
id: task.id,
|
|
||||||
title: task.title,
|
|
||||||
contentJson: task.contentJson,
|
|
||||||
contentText: task.contentText,
|
|
||||||
priority: task.priority,
|
|
||||||
status: task.status,
|
|
||||||
ddl: task.ddl?.toISOString() ?? null,
|
|
||||||
completedAt: task.completedAt?.toISOString() ?? null,
|
|
||||||
version: task.version,
|
|
||||||
tags: task.taskTags.map((taskTag: { tag: { name: string } }) => taskTag.tag.name),
|
|
||||||
createdAt: task.createdAt.toISOString(),
|
|
||||||
updatedAt: task.updatedAt.toISOString()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,419 +0,0 @@
|
|||||||
import request from "supertest";
|
|
||||||
import { INestApplication, ValidationPipe } from "@nestjs/common";
|
|
||||||
import { Test, TestingModule } from "@nestjs/testing";
|
|
||||||
import { PrismaService } from "../src/prisma/prisma.service";
|
|
||||||
import { SyncController } from "../src/sync/sync.controller";
|
|
||||||
import { SyncService } from "../src/sync/sync.service";
|
|
||||||
|
|
||||||
type SyncOperationRecord = {
|
|
||||||
id: string;
|
|
||||||
opId: string;
|
|
||||||
userId: string;
|
|
||||||
deviceId: string;
|
|
||||||
entityType: string;
|
|
||||||
entityId: string;
|
|
||||||
action: string;
|
|
||||||
payload: string | null;
|
|
||||||
clientTs: Date;
|
|
||||||
serverTs: Date;
|
|
||||||
};
|
|
||||||
|
|
||||||
type SyncOperationSelect = {
|
|
||||||
opId?: true;
|
|
||||||
entityId?: true;
|
|
||||||
entityType?: true;
|
|
||||||
action?: true;
|
|
||||||
payload?: true;
|
|
||||||
clientTs?: true;
|
|
||||||
deviceId?: true;
|
|
||||||
serverTs?: true;
|
|
||||||
};
|
|
||||||
|
|
||||||
type SyncOperationFindManyArgs = {
|
|
||||||
where: {
|
|
||||||
userId: string;
|
|
||||||
opId?: {
|
|
||||||
in: string[];
|
|
||||||
};
|
|
||||||
OR?: Array<
|
|
||||||
| {
|
|
||||||
serverTs: {
|
|
||||||
gt: Date;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
| {
|
|
||||||
serverTs: Date;
|
|
||||||
opId: {
|
|
||||||
gt: string;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
select: SyncOperationSelect;
|
|
||||||
orderBy?: Array<{
|
|
||||||
serverTs?: "asc" | "desc";
|
|
||||||
opId?: "asc" | "desc";
|
|
||||||
}>;
|
|
||||||
take?: number;
|
|
||||||
};
|
|
||||||
|
|
||||||
type SyncOperationCreateArgs = {
|
|
||||||
data: {
|
|
||||||
opId: string;
|
|
||||||
userId: string;
|
|
||||||
deviceId: string;
|
|
||||||
entityType: string;
|
|
||||||
entityId: string;
|
|
||||||
action: string;
|
|
||||||
payload?: string;
|
|
||||||
clientTs: Date;
|
|
||||||
};
|
|
||||||
select: {
|
|
||||||
opId: true;
|
|
||||||
serverTs: true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
class InMemoryPrismaService {
|
|
||||||
private syncOperationIdSequence = 1;
|
|
||||||
private syncOperations: SyncOperationRecord[] = [];
|
|
||||||
|
|
||||||
readonly syncOperation = {
|
|
||||||
findMany: async (args: SyncOperationFindManyArgs) => {
|
|
||||||
let items = this.syncOperations.filter((item) => item.userId === args.where.userId);
|
|
||||||
|
|
||||||
if (args.where.opId?.in) {
|
|
||||||
items = items.filter((item) => args.where.opId?.in.includes(item.opId));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args.where.OR && args.where.OR.length > 0) {
|
|
||||||
items = items.filter((item) =>
|
|
||||||
args.where.OR?.some((condition) => {
|
|
||||||
if ("gt" in condition.serverTs) {
|
|
||||||
return item.serverTs.getTime() > condition.serverTs.gt.getTime();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ("opId" in condition) {
|
|
||||||
return (
|
|
||||||
item.serverTs.getTime() === condition.serverTs.getTime() &&
|
|
||||||
item.opId > condition.opId.gt
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args.orderBy && args.orderBy.length > 0) {
|
|
||||||
items = [...items].sort((left, right) => {
|
|
||||||
for (const orderRule of args.orderBy ?? []) {
|
|
||||||
if (orderRule.serverTs) {
|
|
||||||
const diff = left.serverTs.getTime() - right.serverTs.getTime();
|
|
||||||
if (diff !== 0) {
|
|
||||||
return orderRule.serverTs === "asc" ? diff : -diff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (orderRule.opId) {
|
|
||||||
const diff = left.opId.localeCompare(right.opId);
|
|
||||||
if (diff !== 0) {
|
|
||||||
return orderRule.opId === "asc" ? diff : -diff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const limitedItems = args.take ? items.slice(0, args.take) : items;
|
|
||||||
|
|
||||||
return limitedItems.map((item) => this.pickSelectedFields(item, args.select));
|
|
||||||
},
|
|
||||||
|
|
||||||
create: async (args: SyncOperationCreateArgs) => {
|
|
||||||
const createdOperation: SyncOperationRecord = {
|
|
||||||
id: `sync_${this.syncOperationIdSequence++}`,
|
|
||||||
opId: args.data.opId,
|
|
||||||
userId: args.data.userId,
|
|
||||||
deviceId: args.data.deviceId,
|
|
||||||
entityType: args.data.entityType,
|
|
||||||
entityId: args.data.entityId,
|
|
||||||
action: args.data.action,
|
|
||||||
payload: args.data.payload ?? null,
|
|
||||||
clientTs: args.data.clientTs,
|
|
||||||
serverTs: new Date()
|
|
||||||
};
|
|
||||||
|
|
||||||
this.syncOperations.push(createdOperation);
|
|
||||||
|
|
||||||
return {
|
|
||||||
opId: createdOperation.opId,
|
|
||||||
serverTs: createdOperation.serverTs
|
|
||||||
};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
getOperationCount(): number {
|
|
||||||
return this.syncOperations.length;
|
|
||||||
}
|
|
||||||
|
|
||||||
seedOperations(records: Array<Omit<SyncOperationRecord, "id">>): void {
|
|
||||||
for (const record of records) {
|
|
||||||
this.syncOperations.push({
|
|
||||||
...record,
|
|
||||||
id: `sync_${this.syncOperationIdSequence++}`
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private pickSelectedFields(
|
|
||||||
item: SyncOperationRecord,
|
|
||||||
select: SyncOperationSelect
|
|
||||||
): Partial<SyncOperationRecord> {
|
|
||||||
const result: Record<string, unknown> = {};
|
|
||||||
|
|
||||||
for (const key of Object.keys(select) as Array<keyof SyncOperationSelect>) {
|
|
||||||
if (!select[key]) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const recordKey = key as keyof SyncOperationRecord;
|
|
||||||
result[recordKey] = item[recordKey];
|
|
||||||
}
|
|
||||||
|
|
||||||
return result as Partial<SyncOperationRecord>;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
describe("SyncController (integration)", () => {
|
|
||||||
let app: INestApplication;
|
|
||||||
let prismaService: InMemoryPrismaService;
|
|
||||||
|
|
||||||
beforeAll(async () => {
|
|
||||||
prismaService = new InMemoryPrismaService();
|
|
||||||
|
|
||||||
const moduleRef: TestingModule = await Test.createTestingModule({
|
|
||||||
controllers: [SyncController],
|
|
||||||
providers: [SyncService, { provide: PrismaService, useValue: prismaService }]
|
|
||||||
}).compile();
|
|
||||||
|
|
||||||
app = moduleRef.createNestApplication();
|
|
||||||
app.useGlobalPipes(
|
|
||||||
new ValidationPipe({
|
|
||||||
transform: true,
|
|
||||||
whitelist: true,
|
|
||||||
forbidNonWhitelisted: true
|
|
||||||
})
|
|
||||||
);
|
|
||||||
await app.init();
|
|
||||||
});
|
|
||||||
|
|
||||||
afterAll(async () => {
|
|
||||||
await app.close();
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should accept operations once and mark repeated push as duplicate", async () => {
|
|
||||||
const payload = {
|
|
||||||
operations: [
|
|
||||||
{
|
|
||||||
opId: "op-create-1",
|
|
||||||
entityType: "TASK",
|
|
||||||
entityId: "task-1",
|
|
||||||
action: "CREATE",
|
|
||||||
payload: '{"title":"任务一"}',
|
|
||||||
clientTs: 1712419200000,
|
|
||||||
deviceId: "device-a"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
opId: "op-update-1",
|
|
||||||
entityType: "TASK",
|
|
||||||
entityId: "task-1",
|
|
||||||
action: "UPDATE",
|
|
||||||
payload: '{"title":"任务一-更新"}',
|
|
||||||
clientTs: 1712419201000,
|
|
||||||
deviceId: "device-a"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
const firstResponse = await request(app.getHttpServer())
|
|
||||||
.post("/sync/push")
|
|
||||||
.set("x-user-id", "user-1")
|
|
||||||
.send(payload)
|
|
||||||
.expect(201);
|
|
||||||
|
|
||||||
expect(firstResponse.body.acceptedCount).toBe(2);
|
|
||||||
expect(firstResponse.body.duplicateCount).toBe(0);
|
|
||||||
expect(firstResponse.body.failedCount).toBe(0);
|
|
||||||
expect(firstResponse.body.results).toEqual([
|
|
||||||
expect.objectContaining({
|
|
||||||
opId: "op-create-1",
|
|
||||||
status: "accepted"
|
|
||||||
}),
|
|
||||||
expect.objectContaining({
|
|
||||||
opId: "op-update-1",
|
|
||||||
status: "accepted"
|
|
||||||
})
|
|
||||||
]);
|
|
||||||
expect(prismaService.getOperationCount()).toBe(2);
|
|
||||||
|
|
||||||
const secondResponse = await request(app.getHttpServer())
|
|
||||||
.post("/sync/push")
|
|
||||||
.set("x-user-id", "user-1")
|
|
||||||
.send(payload)
|
|
||||||
.expect(201);
|
|
||||||
|
|
||||||
expect(secondResponse.body.acceptedCount).toBe(0);
|
|
||||||
expect(secondResponse.body.duplicateCount).toBe(2);
|
|
||||||
expect(secondResponse.body.failedCount).toBe(0);
|
|
||||||
expect(secondResponse.body.results).toEqual([
|
|
||||||
expect.objectContaining({
|
|
||||||
opId: "op-create-1",
|
|
||||||
status: "duplicate",
|
|
||||||
reason: "already_synced"
|
|
||||||
}),
|
|
||||||
expect.objectContaining({
|
|
||||||
opId: "op-update-1",
|
|
||||||
status: "duplicate",
|
|
||||||
reason: "already_synced"
|
|
||||||
})
|
|
||||||
]);
|
|
||||||
expect(prismaService.getOperationCount()).toBe(2);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should mark duplicated op ids in the same batch as duplicate", async () => {
|
|
||||||
const response = await request(app.getHttpServer())
|
|
||||||
.post("/sync/push")
|
|
||||||
.set("x-user-id", "user-2")
|
|
||||||
.send({
|
|
||||||
operations: [
|
|
||||||
{
|
|
||||||
opId: "op-dup-1",
|
|
||||||
entityType: "TASK",
|
|
||||||
entityId: "task-2",
|
|
||||||
action: "CREATE",
|
|
||||||
payload: '{"title":"任务二"}',
|
|
||||||
clientTs: 1712419300000,
|
|
||||||
deviceId: "device-b"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
opId: "op-dup-1",
|
|
||||||
entityType: "TASK",
|
|
||||||
entityId: "task-2",
|
|
||||||
action: "UPDATE",
|
|
||||||
payload: '{"title":"任务二-重复"}',
|
|
||||||
clientTs: 1712419301000,
|
|
||||||
deviceId: "device-b"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
})
|
|
||||||
.expect(201);
|
|
||||||
|
|
||||||
expect(response.body.acceptedCount).toBe(1);
|
|
||||||
expect(response.body.duplicateCount).toBe(1);
|
|
||||||
expect(response.body.failedCount).toBe(0);
|
|
||||||
expect(response.body.results[0]).toEqual(
|
|
||||||
expect.objectContaining({
|
|
||||||
opId: "op-dup-1",
|
|
||||||
status: "accepted"
|
|
||||||
})
|
|
||||||
);
|
|
||||||
expect(response.body.results[1]).toEqual(
|
|
||||||
expect.objectContaining({
|
|
||||||
opId: "op-dup-1",
|
|
||||||
status: "duplicate",
|
|
||||||
reason: "same_batch_duplicate"
|
|
||||||
})
|
|
||||||
);
|
|
||||||
expect(prismaService.getOperationCount()).toBe(3);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should pull operations incrementally with a stable cursor", async () => {
|
|
||||||
prismaService.seedOperations([
|
|
||||||
{
|
|
||||||
opId: "pull-op-1",
|
|
||||||
userId: "user-pull",
|
|
||||||
deviceId: "device-c",
|
|
||||||
entityType: "TASK",
|
|
||||||
entityId: "task-10",
|
|
||||||
action: "CREATE",
|
|
||||||
payload: '{"title":"任务甲"}',
|
|
||||||
clientTs: new Date("2026-04-06T10:00:00.000Z"),
|
|
||||||
serverTs: new Date("2026-04-06T10:10:00.000Z")
|
|
||||||
},
|
|
||||||
{
|
|
||||||
opId: "pull-op-2",
|
|
||||||
userId: "user-pull",
|
|
||||||
deviceId: "device-c",
|
|
||||||
entityType: "TASK",
|
|
||||||
entityId: "task-10",
|
|
||||||
action: "UPDATE",
|
|
||||||
payload: '{"title":"任务甲-更新"}',
|
|
||||||
clientTs: new Date("2026-04-06T10:01:00.000Z"),
|
|
||||||
serverTs: new Date("2026-04-06T10:10:00.000Z")
|
|
||||||
},
|
|
||||||
{
|
|
||||||
opId: "pull-op-3",
|
|
||||||
userId: "user-pull",
|
|
||||||
deviceId: "device-c",
|
|
||||||
entityType: "TASK",
|
|
||||||
entityId: "task-11",
|
|
||||||
action: "CREATE",
|
|
||||||
payload: '{"title":"任务乙"}',
|
|
||||||
clientTs: new Date("2026-04-06T10:02:00.000Z"),
|
|
||||||
serverTs: new Date("2026-04-06T10:11:00.000Z")
|
|
||||||
},
|
|
||||||
{
|
|
||||||
opId: "pull-op-other-user",
|
|
||||||
userId: "user-other",
|
|
||||||
deviceId: "device-z",
|
|
||||||
entityType: "TASK",
|
|
||||||
entityId: "task-99",
|
|
||||||
action: "CREATE",
|
|
||||||
payload: '{"title":"其他用户任务"}',
|
|
||||||
clientTs: new Date("2026-04-06T10:03:00.000Z"),
|
|
||||||
serverTs: new Date("2026-04-06T10:12:00.000Z")
|
|
||||||
}
|
|
||||||
]);
|
|
||||||
|
|
||||||
const firstResponse = await request(app.getHttpServer())
|
|
||||||
.get("/sync/pull")
|
|
||||||
.set("x-user-id", "user-pull")
|
|
||||||
.query({ limit: 2 })
|
|
||||||
.expect(200);
|
|
||||||
|
|
||||||
expect(firstResponse.body.items.map((item: { opId: string }) => item.opId)).toEqual([
|
|
||||||
"pull-op-1",
|
|
||||||
"pull-op-2"
|
|
||||||
]);
|
|
||||||
expect(firstResponse.body.hasMore).toBe(true);
|
|
||||||
expect(firstResponse.body.nextCursor).toEqual(expect.any(String));
|
|
||||||
|
|
||||||
const secondResponse = await request(app.getHttpServer())
|
|
||||||
.get("/sync/pull")
|
|
||||||
.set("x-user-id", "user-pull")
|
|
||||||
.query({
|
|
||||||
limit: 2,
|
|
||||||
cursor: firstResponse.body.nextCursor
|
|
||||||
})
|
|
||||||
.expect(200);
|
|
||||||
|
|
||||||
expect(secondResponse.body.items.map((item: { opId: string }) => item.opId)).toEqual([
|
|
||||||
"pull-op-3"
|
|
||||||
]);
|
|
||||||
expect(secondResponse.body.hasMore).toBe(false);
|
|
||||||
expect(secondResponse.body.nextCursor).toEqual(expect.any(String));
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should reject invalid cursor payload", async () => {
|
|
||||||
await request(app.getHttpServer())
|
|
||||||
.get("/sync/pull")
|
|
||||||
.set("x-user-id", "user-invalid-cursor")
|
|
||||||
.query({
|
|
||||||
cursor: "not-a-valid-cursor"
|
|
||||||
})
|
|
||||||
.expect(400);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,464 +0,0 @@
|
|||||||
import request from "supertest";
|
|
||||||
import { INestApplication, ValidationPipe } from "@nestjs/common";
|
|
||||||
import { Test, TestingModule } from "@nestjs/testing";
|
|
||||||
import { PrismaService } from "../src/prisma/prisma.service";
|
|
||||||
import { TaskController } from "../src/task/task.controller";
|
|
||||||
import { TaskService } from "../src/task/task.service";
|
|
||||||
import { TaskPriority, TaskStatus } from "../generated/prisma/client";
|
|
||||||
|
|
||||||
type TaskRecord = {
|
|
||||||
id: string;
|
|
||||||
userId: string;
|
|
||||||
title: string;
|
|
||||||
contentJson: unknown | null;
|
|
||||||
contentText: string | null;
|
|
||||||
priority: TaskPriority;
|
|
||||||
status: TaskStatus;
|
|
||||||
ddl: Date | null;
|
|
||||||
completedAt: Date | null;
|
|
||||||
version: number;
|
|
||||||
createdAt: Date;
|
|
||||||
updatedAt: Date;
|
|
||||||
};
|
|
||||||
|
|
||||||
type TagRecord = {
|
|
||||||
id: string;
|
|
||||||
userId: string;
|
|
||||||
name: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
type TaskTagRecord = {
|
|
||||||
taskId: string;
|
|
||||||
tagId: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
type ListWhereInput = {
|
|
||||||
userId?: string;
|
|
||||||
status?: TaskStatus;
|
|
||||||
priority?: TaskPriority;
|
|
||||||
taskTags?: {
|
|
||||||
some: {
|
|
||||||
tag: {
|
|
||||||
name: {
|
|
||||||
in: string[];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
OR?: Array<{
|
|
||||||
title?: {
|
|
||||||
contains: string;
|
|
||||||
mode?: "insensitive";
|
|
||||||
};
|
|
||||||
contentText?: {
|
|
||||||
contains: string;
|
|
||||||
mode?: "insensitive";
|
|
||||||
};
|
|
||||||
}>;
|
|
||||||
};
|
|
||||||
|
|
||||||
class InMemoryPrismaService {
|
|
||||||
private taskIdSequence = 1;
|
|
||||||
private tagIdSequence = 1;
|
|
||||||
private tasks: TaskRecord[] = [];
|
|
||||||
private tags: TagRecord[] = [];
|
|
||||||
private taskTags: TaskTagRecord[] = [];
|
|
||||||
|
|
||||||
readonly task = {
|
|
||||||
findMany: async (args: {
|
|
||||||
where?: ListWhereInput;
|
|
||||||
orderBy?: { createdAt?: "asc" | "desc"; updatedAt?: "asc" | "desc"; ddl?: "asc" | "desc" };
|
|
||||||
skip?: number;
|
|
||||||
take?: number;
|
|
||||||
}) => {
|
|
||||||
const where = args.where;
|
|
||||||
const skip = args.skip ?? 0;
|
|
||||||
const take = args.take ?? 20;
|
|
||||||
let filtered = [...this.tasks];
|
|
||||||
|
|
||||||
if (where?.userId) {
|
|
||||||
filtered = filtered.filter((task) => task.userId === where.userId);
|
|
||||||
}
|
|
||||||
if (where?.status) {
|
|
||||||
filtered = filtered.filter((task) => task.status === where.status);
|
|
||||||
}
|
|
||||||
if (where?.priority) {
|
|
||||||
filtered = filtered.filter((task) => task.priority === where.priority);
|
|
||||||
}
|
|
||||||
if (where?.taskTags?.some.tag.name.in) {
|
|
||||||
const expectedTags = new Set(where.taskTags.some.tag.name.in);
|
|
||||||
filtered = filtered.filter((task) => {
|
|
||||||
const taskTagNames = this.getTaskTagNames(task.id);
|
|
||||||
return taskTagNames.some((tagName) => expectedTags.has(tagName));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (where?.OR && where.OR.length > 0) {
|
|
||||||
filtered = filtered.filter((task) =>
|
|
||||||
where.OR!.some((orCondition) => {
|
|
||||||
if (orCondition.title?.contains) {
|
|
||||||
return task.title.toLowerCase().includes(orCondition.title.contains.toLowerCase());
|
|
||||||
}
|
|
||||||
if (orCondition.contentText?.contains) {
|
|
||||||
return (
|
|
||||||
task.contentText
|
|
||||||
?.toLowerCase()
|
|
||||||
.includes(orCondition.contentText.contains.toLowerCase()) ?? false
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args.orderBy) {
|
|
||||||
const [orderField, orderDirection] = Object.entries(args.orderBy)[0] as [
|
|
||||||
"createdAt" | "updatedAt" | "ddl",
|
|
||||||
"asc" | "desc"
|
|
||||||
];
|
|
||||||
filtered.sort((left, right) => {
|
|
||||||
const leftValue = left[orderField];
|
|
||||||
const rightValue = right[orderField];
|
|
||||||
|
|
||||||
if (leftValue === null && rightValue === null) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if (leftValue === null) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
if (rightValue === null) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
const diff = leftValue.getTime() - rightValue.getTime();
|
|
||||||
return orderDirection === "asc" ? diff : -diff;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return filtered.slice(skip, skip + take).map((task) => this.toTaskWithTags(task));
|
|
||||||
},
|
|
||||||
|
|
||||||
count: async (args: { where?: ListWhereInput }) => {
|
|
||||||
const results = await this.task.findMany({
|
|
||||||
where: args.where,
|
|
||||||
skip: 0,
|
|
||||||
take: Number.MAX_SAFE_INTEGER
|
|
||||||
});
|
|
||||||
return results.length;
|
|
||||||
},
|
|
||||||
|
|
||||||
findFirst: async (args: {
|
|
||||||
where: {
|
|
||||||
id?: string;
|
|
||||||
userId?: string;
|
|
||||||
};
|
|
||||||
select?: {
|
|
||||||
id?: boolean;
|
|
||||||
status?: boolean;
|
|
||||||
};
|
|
||||||
}) => {
|
|
||||||
const task = this.tasks.find(
|
|
||||||
(item) =>
|
|
||||||
(args.where.id === undefined || item.id === args.where.id) &&
|
|
||||||
(args.where.userId === undefined || item.userId === args.where.userId)
|
|
||||||
);
|
|
||||||
if (!task) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args.select) {
|
|
||||||
return {
|
|
||||||
id: args.select.id ? task.id : undefined,
|
|
||||||
status: args.select.status ? task.status : undefined
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return this.toTaskWithTags(task);
|
|
||||||
},
|
|
||||||
|
|
||||||
create: async (args: {
|
|
||||||
data: {
|
|
||||||
userId: string;
|
|
||||||
title: string;
|
|
||||||
contentJson?: unknown;
|
|
||||||
contentText: string | null;
|
|
||||||
priority: TaskPriority;
|
|
||||||
status: TaskStatus;
|
|
||||||
ddl: Date | null;
|
|
||||||
completedAt: Date | null;
|
|
||||||
};
|
|
||||||
}) => {
|
|
||||||
const now = new Date();
|
|
||||||
const task: TaskRecord = {
|
|
||||||
id: `task_${this.taskIdSequence++}`,
|
|
||||||
userId: args.data.userId,
|
|
||||||
title: args.data.title,
|
|
||||||
contentJson: args.data.contentJson ?? null,
|
|
||||||
contentText: args.data.contentText,
|
|
||||||
priority: args.data.priority,
|
|
||||||
status: args.data.status,
|
|
||||||
ddl: args.data.ddl,
|
|
||||||
completedAt: args.data.completedAt,
|
|
||||||
version: 1,
|
|
||||||
createdAt: now,
|
|
||||||
updatedAt: now
|
|
||||||
};
|
|
||||||
this.tasks.push(task);
|
|
||||||
return task;
|
|
||||||
},
|
|
||||||
|
|
||||||
update: async (args: {
|
|
||||||
where: {
|
|
||||||
id: string;
|
|
||||||
};
|
|
||||||
data: {
|
|
||||||
title?: string;
|
|
||||||
contentJson?: unknown;
|
|
||||||
contentText?: string | null;
|
|
||||||
priority?: TaskPriority;
|
|
||||||
status?: TaskStatus;
|
|
||||||
ddl?: Date | null;
|
|
||||||
completedAt?: Date | null;
|
|
||||||
version?: {
|
|
||||||
increment: number;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}) => {
|
|
||||||
const task = this.tasks.find((item) => item.id === args.where.id);
|
|
||||||
if (!task) {
|
|
||||||
throw new Error("task not found");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args.data.title !== undefined) {
|
|
||||||
task.title = args.data.title;
|
|
||||||
}
|
|
||||||
if (args.data.contentJson !== undefined) {
|
|
||||||
task.contentJson = args.data.contentJson;
|
|
||||||
}
|
|
||||||
if (args.data.contentText !== undefined) {
|
|
||||||
task.contentText = args.data.contentText;
|
|
||||||
}
|
|
||||||
if (args.data.priority !== undefined) {
|
|
||||||
task.priority = args.data.priority;
|
|
||||||
}
|
|
||||||
if (args.data.status !== undefined) {
|
|
||||||
task.status = args.data.status;
|
|
||||||
}
|
|
||||||
if (args.data.ddl !== undefined) {
|
|
||||||
task.ddl = args.data.ddl;
|
|
||||||
}
|
|
||||||
if (args.data.completedAt !== undefined) {
|
|
||||||
task.completedAt = args.data.completedAt;
|
|
||||||
}
|
|
||||||
if (args.data.version !== undefined) {
|
|
||||||
task.version += args.data.version.increment;
|
|
||||||
}
|
|
||||||
task.updatedAt = new Date();
|
|
||||||
|
|
||||||
return task;
|
|
||||||
},
|
|
||||||
|
|
||||||
deleteMany: async (args: {
|
|
||||||
where: {
|
|
||||||
id: string;
|
|
||||||
userId: string;
|
|
||||||
};
|
|
||||||
}) => {
|
|
||||||
const beforeCount = this.tasks.length;
|
|
||||||
this.tasks = this.tasks.filter(
|
|
||||||
(task) => !(task.id === args.where.id && task.userId === args.where.userId)
|
|
||||||
);
|
|
||||||
this.taskTags = this.taskTags.filter((taskTag) => taskTag.taskId !== args.where.id);
|
|
||||||
return {
|
|
||||||
count: beforeCount - this.tasks.length
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
findUniqueOrThrow: async (args: {
|
|
||||||
where: {
|
|
||||||
id: string;
|
|
||||||
};
|
|
||||||
}) => {
|
|
||||||
const task = this.tasks.find((item) => item.id === args.where.id);
|
|
||||||
if (!task) {
|
|
||||||
throw new Error("task not found");
|
|
||||||
}
|
|
||||||
|
|
||||||
return this.toTaskWithTags(task);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
readonly tag = {
|
|
||||||
upsert: async (args: {
|
|
||||||
where: {
|
|
||||||
userId_name: {
|
|
||||||
userId: string;
|
|
||||||
name: string;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
create: {
|
|
||||||
userId: string;
|
|
||||||
name: string;
|
|
||||||
};
|
|
||||||
}) => {
|
|
||||||
const existing = this.tags.find(
|
|
||||||
(tag) =>
|
|
||||||
tag.userId === args.where.userId_name.userId && tag.name === args.where.userId_name.name
|
|
||||||
);
|
|
||||||
if (existing) {
|
|
||||||
return existing;
|
|
||||||
}
|
|
||||||
|
|
||||||
const createdTag: TagRecord = {
|
|
||||||
id: `tag_${this.tagIdSequence++}`,
|
|
||||||
userId: args.create.userId,
|
|
||||||
name: args.create.name
|
|
||||||
};
|
|
||||||
this.tags.push(createdTag);
|
|
||||||
return createdTag;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
readonly taskTag = {
|
|
||||||
deleteMany: async (args: {
|
|
||||||
where: {
|
|
||||||
taskId: string;
|
|
||||||
};
|
|
||||||
}) => {
|
|
||||||
const beforeCount = this.taskTags.length;
|
|
||||||
this.taskTags = this.taskTags.filter((taskTag) => taskTag.taskId !== args.where.taskId);
|
|
||||||
return {
|
|
||||||
count: beforeCount - this.taskTags.length
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
createMany: async (args: {
|
|
||||||
data: Array<{
|
|
||||||
taskId: string;
|
|
||||||
tagId: string;
|
|
||||||
}>;
|
|
||||||
}) => {
|
|
||||||
for (const row of args.data) {
|
|
||||||
const existing = this.taskTags.find(
|
|
||||||
(taskTag) => taskTag.taskId === row.taskId && taskTag.tagId === row.tagId
|
|
||||||
);
|
|
||||||
if (!existing) {
|
|
||||||
this.taskTags.push(row);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
count: args.data.length
|
|
||||||
};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
async $transaction<T>(runner: (tx: InMemoryPrismaService) => Promise<T>): Promise<T> {
|
|
||||||
return runner(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
private toTaskWithTags(
|
|
||||||
task: TaskRecord
|
|
||||||
): TaskRecord & { taskTags: Array<{ tag: { name: string } }> } {
|
|
||||||
return {
|
|
||||||
...task,
|
|
||||||
taskTags: this.taskTags
|
|
||||||
.filter((taskTag) => taskTag.taskId === task.id)
|
|
||||||
.map((taskTag) => this.tags.find((tag) => tag.id === taskTag.tagId))
|
|
||||||
.filter((tag): tag is TagRecord => tag !== undefined)
|
|
||||||
.map((tag) => ({
|
|
||||||
tag: {
|
|
||||||
name: tag.name
|
|
||||||
}
|
|
||||||
}))
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private getTaskTagNames(taskId: string): string[] {
|
|
||||||
return this.taskTags
|
|
||||||
.filter((taskTag) => taskTag.taskId === taskId)
|
|
||||||
.map((taskTag) => this.tags.find((tag) => tag.id === taskTag.tagId))
|
|
||||||
.filter((tag): tag is TagRecord => tag !== undefined)
|
|
||||||
.map((tag) => tag.name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
describe("TaskController (integration)", () => {
|
|
||||||
let app: INestApplication;
|
|
||||||
const prismaService = new InMemoryPrismaService();
|
|
||||||
|
|
||||||
beforeAll(async () => {
|
|
||||||
const moduleRef: TestingModule = await Test.createTestingModule({
|
|
||||||
controllers: [TaskController],
|
|
||||||
providers: [
|
|
||||||
TaskService,
|
|
||||||
{ provide: PrismaService, useValue: prismaService as unknown as PrismaService }
|
|
||||||
]
|
|
||||||
}).compile();
|
|
||||||
|
|
||||||
app = moduleRef.createNestApplication();
|
|
||||||
app.useGlobalPipes(
|
|
||||||
new ValidationPipe({
|
|
||||||
transform: true,
|
|
||||||
whitelist: true,
|
|
||||||
forbidNonWhitelisted: true
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
await app.init();
|
|
||||||
});
|
|
||||||
|
|
||||||
afterAll(async () => {
|
|
||||||
await app.close();
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should create, query, update and delete a task", async () => {
|
|
||||||
const createResponse = await request(app.getHttpServer())
|
|
||||||
.post("/tasks")
|
|
||||||
.set("x-user-id", "user_1")
|
|
||||||
.send({
|
|
||||||
title: "准备周会",
|
|
||||||
contentText: "整理本周进度",
|
|
||||||
priority: "HIGH",
|
|
||||||
tagNames: ["工作", "会议"]
|
|
||||||
})
|
|
||||||
.expect(201);
|
|
||||||
|
|
||||||
expect(createResponse.body.id).toBeDefined();
|
|
||||||
expect(createResponse.body.tags).toEqual(["工作", "会议"]);
|
|
||||||
const taskId = createResponse.body.id as string;
|
|
||||||
|
|
||||||
const listResponse = await request(app.getHttpServer())
|
|
||||||
.get("/tasks")
|
|
||||||
.set("x-user-id", "user_1")
|
|
||||||
.query({ tags: "会议" })
|
|
||||||
.expect(200);
|
|
||||||
|
|
||||||
expect(listResponse.body.total).toBe(1);
|
|
||||||
expect(listResponse.body.items[0].id).toBe(taskId);
|
|
||||||
|
|
||||||
const updateResponse = await request(app.getHttpServer())
|
|
||||||
.patch(`/tasks/${taskId}`)
|
|
||||||
.set("x-user-id", "user_1")
|
|
||||||
.send({
|
|
||||||
status: "DONE"
|
|
||||||
})
|
|
||||||
.expect(200);
|
|
||||||
|
|
||||||
expect(updateResponse.body.status).toBe("DONE");
|
|
||||||
expect(updateResponse.body.completedAt).toBeTruthy();
|
|
||||||
expect(updateResponse.body.version).toBe(2);
|
|
||||||
|
|
||||||
await request(app.getHttpServer())
|
|
||||||
.delete(`/tasks/${taskId}`)
|
|
||||||
.set("x-user-id", "user_1")
|
|
||||||
.expect(200)
|
|
||||||
.expect({
|
|
||||||
success: true
|
|
||||||
});
|
|
||||||
|
|
||||||
const listAfterDeleteResponse = await request(app.getHttpServer())
|
|
||||||
.get("/tasks")
|
|
||||||
.set("x-user-id", "user_1")
|
|
||||||
.expect(200);
|
|
||||||
expect(listAfterDeleteResponse.body.total).toBe(0);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://json.schemastore.org/tsconfig",
|
|
||||||
"extends": "./tsconfig.json",
|
|
||||||
"exclude": ["node_modules", "dist", "**/*.spec.ts"]
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://json.schemastore.org/tsconfig",
|
|
||||||
"extends": "../../packages/tsconfig/nest-app.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"rootDir": ".",
|
|
||||||
"outDir": "dist"
|
|
||||||
},
|
|
||||||
"include": ["src/**/*.ts", "generated/prisma/**/*.ts"],
|
|
||||||
"exclude": ["dist", "node_modules"]
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://json.schemastore.org/tsconfig",
|
|
||||||
"extends": "./tsconfig.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"types": ["node", "jest"]
|
|
||||||
},
|
|
||||||
"include": ["src/**/*.ts", "generated/prisma/**/*.ts", "test/**/*.ts"],
|
|
||||||
"exclude": ["dist", "node_modules"]
|
|
||||||
}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# Logs
|
|
||||||
logs
|
|
||||||
*.log
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
pnpm-debug.log*
|
|
||||||
lerna-debug.log*
|
|
||||||
|
|
||||||
node_modules
|
|
||||||
dist
|
|
||||||
dist-ssr
|
|
||||||
*.local
|
|
||||||
|
|
||||||
# Editor directories and files
|
|
||||||
.vscode/*
|
|
||||||
!.vscode/extensions.json
|
|
||||||
.idea
|
|
||||||
.DS_Store
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.sw?
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
# TodoList Web 前端
|
|
||||||
|
|
||||||
这是 TodoList 的用户端前端应用(SPA + PWA),基于 `React + TypeScript + Vite`。
|
|
||||||
|
|
||||||
## 技术栈
|
|
||||||
|
|
||||||
- React
|
|
||||||
- TypeScript
|
|
||||||
- Vite
|
|
||||||
- Tailwind CSS
|
|
||||||
- shadcn/ui
|
|
||||||
|
|
||||||
## 本地开发
|
|
||||||
|
|
||||||
在仓库根目录执行:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pnpm install
|
|
||||||
pnpm --filter web dev
|
|
||||||
```
|
|
||||||
|
|
||||||
默认开发地址:
|
|
||||||
|
|
||||||
- `http://localhost:5173`
|
|
||||||
|
|
||||||
## 后端接口地址
|
|
||||||
|
|
||||||
前端默认请求:
|
|
||||||
|
|
||||||
- `http://localhost:3000`
|
|
||||||
|
|
||||||
如需自定义,请在运行前设置环境变量:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
VITE_API_BASE_URL=http://localhost:3000
|
|
||||||
```
|
|
||||||
|
|
||||||
## 构建与预览
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pnpm --filter web build
|
|
||||||
pnpm --filter web preview
|
|
||||||
```
|
|
||||||
|
|
||||||
## 当前功能进度(阶段性)
|
|
||||||
|
|
||||||
- 邮箱验证码登录页面
|
|
||||||
- OAuth 回调页面
|
|
||||||
- 会话本地缓存与启动恢复
|
|
||||||
- 基础工作台页面骨架
|
|
||||||
|
|
||||||
## 目录说明
|
|
||||||
|
|
||||||
- `src/pages`:页面组件
|
|
||||||
- `src/components`:通用 UI 组件
|
|
||||||
- `src/services`:接口请求与会话处理
|
|
||||||
- `src/lib`:工具函数
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://ui.shadcn.com/schema.json",
|
|
||||||
"style": "base-nova",
|
|
||||||
"rsc": false,
|
|
||||||
"tsx": true,
|
|
||||||
"tailwind": {
|
|
||||||
"config": "tailwind.config.js",
|
|
||||||
"css": "src/index.css",
|
|
||||||
"baseColor": "neutral",
|
|
||||||
"cssVariables": true,
|
|
||||||
"prefix": ""
|
|
||||||
},
|
|
||||||
"iconLibrary": "lucide",
|
|
||||||
"rtl": false,
|
|
||||||
"aliases": {
|
|
||||||
"components": "@/components",
|
|
||||||
"utils": "@/lib/utils",
|
|
||||||
"ui": "@/components/ui",
|
|
||||||
"lib": "@/lib",
|
|
||||||
"hooks": "@/hooks"
|
|
||||||
},
|
|
||||||
"menuColor": "default",
|
|
||||||
"menuAccent": "subtle",
|
|
||||||
"registries": {}
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
import js from "@eslint/js";
|
|
||||||
import globals from "globals";
|
|
||||||
import reactHooks from "eslint-plugin-react-hooks";
|
|
||||||
import reactRefresh from "eslint-plugin-react-refresh";
|
|
||||||
import tseslint from "typescript-eslint";
|
|
||||||
import { defineConfig, globalIgnores } from "eslint/config";
|
|
||||||
|
|
||||||
export default defineConfig([
|
|
||||||
globalIgnores(["dist"]),
|
|
||||||
{
|
|
||||||
files: ["**/*.{ts,tsx}"],
|
|
||||||
extends: [
|
|
||||||
js.configs.recommended,
|
|
||||||
tseslint.configs.recommended,
|
|
||||||
reactHooks.configs.flat.recommended,
|
|
||||||
reactRefresh.configs.vite
|
|
||||||
],
|
|
||||||
languageOptions: {
|
|
||||||
ecmaVersion: 2020,
|
|
||||||
globals: globals.browser
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]);
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="zh-CN">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
||||||
<link rel="apple-touch-icon" href="/favicon.png" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<title>TodoList</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="root"></div>
|
|
||||||
<script type="module" src="/src/main.tsx"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "web",
|
|
||||||
"private": true,
|
|
||||||
"version": "0.0.0",
|
|
||||||
"type": "module",
|
|
||||||
"scripts": {
|
|
||||||
"dev": "vite",
|
|
||||||
"build": "tsc -b && vite build",
|
|
||||||
"lint": "eslint .",
|
|
||||||
"preview": "vite preview"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@base-ui/react": "^1.3.0",
|
|
||||||
"@fontsource-variable/geist": "^5.2.8",
|
|
||||||
"@tiptap/core": "^3.22.2",
|
|
||||||
"@tiptap/extension-image": "^3.22.2",
|
|
||||||
"@tiptap/extension-link": "^3.22.2",
|
|
||||||
"@tiptap/extension-youtube": "^3.22.2",
|
|
||||||
"@tiptap/react": "^3.22.2",
|
|
||||||
"@tiptap/starter-kit": "^3.22.2",
|
|
||||||
"browser-image-compression": "^2.0.2",
|
|
||||||
"class-variance-authority": "^0.7.1",
|
|
||||||
"clsx": "^2.1.1",
|
|
||||||
"dexie": "^4.4.2",
|
|
||||||
"dexie-react-hooks": "^4.4.0",
|
|
||||||
"lucide-react": "^1.7.0",
|
|
||||||
"react": "^19.2.4",
|
|
||||||
"react-dom": "^19.2.4",
|
|
||||||
"react-router-dom": "^7.14.0",
|
|
||||||
"shadcn": "^4.1.2",
|
|
||||||
"tailwind-merge": "^3.5.0",
|
|
||||||
"tw-animate-css": "^1.4.0"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@eslint/js": "^9.39.4",
|
|
||||||
"@types/node": "^24.12.0",
|
|
||||||
"@types/react": "^19.2.14",
|
|
||||||
"@types/react-dom": "^19.2.3",
|
|
||||||
"@vitejs/plugin-react": "^6.0.1",
|
|
||||||
"autoprefixer": "^10.4.27",
|
|
||||||
"eslint": "^9.39.4",
|
|
||||||
"eslint-plugin-react-hooks": "^7.0.1",
|
|
||||||
"eslint-plugin-react-refresh": "^0.5.2",
|
|
||||||
"globals": "^17.4.0",
|
|
||||||
"postcss": "^8.5.8",
|
|
||||||
"tailwindcss": "^3.4.17",
|
|
||||||
"typescript": "~5.9.3",
|
|
||||||
"typescript-eslint": "^8.57.0",
|
|
||||||
"vite": "^8.0.1"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
export default {
|
|
||||||
plugins: {
|
|
||||||
tailwindcss: {},
|
|
||||||
autoprefixer: {}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 199 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 9.3 KiB |
@@ -1,24 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<symbol id="bluesky-icon" viewBox="0 0 16 17">
|
|
||||||
<g clip-path="url(#bluesky-clip)"><path fill="#08060d" d="M7.75 7.735c-.693-1.348-2.58-3.86-4.334-5.097-1.68-1.187-2.32-.981-2.74-.79C.188 2.065.1 2.812.1 3.251s.241 3.602.398 4.13c.52 1.744 2.367 2.333 4.07 2.145-2.495.37-4.71 1.278-1.805 4.512 3.196 3.309 4.38-.71 4.987-2.746.608 2.036 1.307 5.91 4.93 2.746 2.72-2.746.747-4.143-1.747-4.512 1.702.189 3.55-.4 4.07-2.145.156-.528.397-3.691.397-4.13s-.088-1.186-.575-1.406c-.42-.19-1.06-.395-2.741.79-1.755 1.24-3.64 3.752-4.334 5.099"/></g>
|
|
||||||
<defs><clipPath id="bluesky-clip"><path fill="#fff" d="M.1.85h15.3v15.3H.1z"/></clipPath></defs>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="discord-icon" viewBox="0 0 20 19">
|
|
||||||
<path fill="#08060d" d="M16.224 3.768a14.5 14.5 0 0 0-3.67-1.153c-.158.286-.343.67-.47.976a13.5 13.5 0 0 0-4.067 0c-.128-.306-.317-.69-.476-.976A14.4 14.4 0 0 0 3.868 3.77C1.546 7.28.916 10.703 1.231 14.077a14.7 14.7 0 0 0 4.5 2.306q.545-.748.965-1.587a9.5 9.5 0 0 1-1.518-.74q.191-.14.372-.293c2.927 1.369 6.107 1.369 8.999 0q.183.152.372.294-.723.437-1.52.74.418.838.963 1.588a14.6 14.6 0 0 0 4.504-2.308c.37-3.911-.63-7.302-2.644-10.309m-9.13 8.234c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.894 0 1.614.82 1.599 1.82.001 1-.705 1.82-1.6 1.82m5.91 0c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.893 0 1.614.82 1.599 1.82 0 1-.706 1.82-1.6 1.82"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="documentation-icon" viewBox="0 0 21 20">
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="m15.5 13.333 1.533 1.322c.645.555.967.833.967 1.178s-.322.623-.967 1.179L15.5 18.333m-3.333-5-1.534 1.322c-.644.555-.966.833-.966 1.178s.322.623.966 1.179l1.534 1.321"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M17.167 10.836v-4.32c0-1.41 0-2.117-.224-2.68-.359-.906-1.118-1.621-2.08-1.96-.599-.21-1.349-.21-2.848-.21-2.623 0-3.935 0-4.983.369-1.684.591-3.013 1.842-3.641 3.428C3 6.449 3 7.684 3 10.154v2.122c0 2.558 0 3.838.706 4.726q.306.383.713.671c.76.536 1.79.64 3.581.66"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M3 10a2.78 2.78 0 0 1 2.778-2.778c.555 0 1.209.097 1.748-.047.48-.129.854-.503.982-.982.145-.54.048-1.194.048-1.749a2.78 2.78 0 0 1 2.777-2.777"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="github-icon" viewBox="0 0 19 19">
|
|
||||||
<path fill="#08060d" fill-rule="evenodd" d="M9.356 1.85C5.05 1.85 1.57 5.356 1.57 9.694a7.84 7.84 0 0 0 5.324 7.44c.387.079.528-.168.528-.376 0-.182-.013-.805-.013-1.454-2.165.467-2.616-.935-2.616-.935-.349-.91-.864-1.143-.864-1.143-.71-.48.051-.48.051-.48.787.051 1.2.805 1.2.805.695 1.194 1.817.857 2.268.649.064-.507.27-.857.49-1.052-1.728-.182-3.545-.857-3.545-3.87 0-.857.31-1.558.8-2.104-.078-.195-.349-1 .077-2.078 0 0 .657-.208 2.14.805a7.5 7.5 0 0 1 1.946-.26c.657 0 1.328.092 1.946.26 1.483-1.013 2.14-.805 2.14-.805.426 1.078.155 1.883.078 2.078.502.546.799 1.247.799 2.104 0 3.013-1.818 3.675-3.558 3.87.284.247.528.714.528 1.454 0 1.052-.012 1.896-.012 2.156 0 .208.142.455.528.377a7.84 7.84 0 0 0 5.324-7.441c.013-4.338-3.48-7.844-7.773-7.844" clip-rule="evenodd"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="social-icon" viewBox="0 0 20 20">
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M12.5 6.667a4.167 4.167 0 1 0-8.334 0 4.167 4.167 0 0 0 8.334 0"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M2.5 16.667a5.833 5.833 0 0 1 8.75-5.053m3.837.474.513 1.035c.07.144.257.282.414.309l.93.155c.596.1.736.536.307.965l-.723.73a.64.64 0 0 0-.152.531l.207.903c.164.715-.213.991-.84.618l-.872-.52a.63.63 0 0 0-.577 0l-.872.52c-.624.373-1.003.094-.84-.618l.207-.903a.64.64 0 0 0-.152-.532l-.723-.729c-.426-.43-.289-.864.306-.964l.93-.156a.64.64 0 0 0 .412-.31l.513-1.034c.28-.562.735-.562 1.012 0"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="x-icon" viewBox="0 0 19 19">
|
|
||||||
<path fill="#08060d" fill-rule="evenodd" d="M1.893 1.98c.052.072 1.245 1.769 2.653 3.77l2.892 4.114c.183.261.333.48.333.486s-.068.089-.152.183l-.522.593-.765.867-3.597 4.087c-.375.426-.734.834-.798.905a1 1 0 0 0-.118.148c0 .01.236.017.664.017h.663l.729-.83c.4-.457.796-.906.879-.999a692 692 0 0 0 1.794-2.038c.034-.037.301-.34.594-.675l.551-.624.345-.392a7 7 0 0 1 .34-.374c.006 0 .93 1.306 2.052 2.903l2.084 2.965.045.063h2.275c1.87 0 2.273-.003 2.266-.021-.008-.02-1.098-1.572-3.894-5.547-2.013-2.862-2.28-3.246-2.273-3.266.008-.019.282-.332 2.085-2.38l2-2.274 1.567-1.782c.022-.028-.016-.03-.65-.03h-.674l-.3.342a871 871 0 0 1-1.782 2.025c-.067.075-.405.458-.75.852a100 100 0 0 1-.803.91c-.148.172-.299.344-.99 1.127-.304.343-.32.358-.345.327-.015-.019-.904-1.282-1.976-2.808L6.365 1.85H1.8zm1.782.91 8.078 11.294c.772 1.08 1.413 1.973 1.425 1.984.016.017.241.02 1.05.017l1.03-.004-2.694-3.766L7.796 5.75 5.722 2.852l-1.039-.004-1.039-.004z" clip-rule="evenodd"/>
|
|
||||||
</symbol>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -1,184 +0,0 @@
|
|||||||
.counter {
|
|
||||||
font-size: 16px;
|
|
||||||
padding: 5px 10px;
|
|
||||||
border-radius: 5px;
|
|
||||||
color: var(--accent);
|
|
||||||
background: var(--accent-bg);
|
|
||||||
border: 2px solid transparent;
|
|
||||||
transition: border-color 0.3s;
|
|
||||||
margin-bottom: 24px;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
border-color: var(--accent-border);
|
|
||||||
}
|
|
||||||
&:focus-visible {
|
|
||||||
outline: 2px solid var(--accent);
|
|
||||||
outline-offset: 2px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero {
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
.base,
|
|
||||||
.framework,
|
|
||||||
.vite {
|
|
||||||
inset-inline: 0;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.base {
|
|
||||||
width: 170px;
|
|
||||||
position: relative;
|
|
||||||
z-index: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.framework,
|
|
||||||
.vite {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.framework {
|
|
||||||
z-index: 1;
|
|
||||||
top: 34px;
|
|
||||||
height: 28px;
|
|
||||||
transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
|
|
||||||
scale(1.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.vite {
|
|
||||||
z-index: 0;
|
|
||||||
top: 107px;
|
|
||||||
height: 26px;
|
|
||||||
width: auto;
|
|
||||||
transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
|
|
||||||
scale(0.8);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#center {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 25px;
|
|
||||||
place-content: center;
|
|
||||||
place-items: center;
|
|
||||||
flex-grow: 1;
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
padding: 32px 20px 24px;
|
|
||||||
gap: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#next-steps {
|
|
||||||
display: flex;
|
|
||||||
border-top: 1px solid var(--border);
|
|
||||||
text-align: left;
|
|
||||||
|
|
||||||
& > div {
|
|
||||||
flex: 1 1 0;
|
|
||||||
padding: 32px;
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
padding: 24px 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
margin-bottom: 16px;
|
|
||||||
width: 22px;
|
|
||||||
height: 22px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
flex-direction: column;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#docs {
|
|
||||||
border-right: 1px solid var(--border);
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
border-right: none;
|
|
||||||
border-bottom: 1px solid var(--border);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#next-steps ul {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
display: flex;
|
|
||||||
gap: 8px;
|
|
||||||
margin: 32px 0 0;
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
height: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: var(--text-h);
|
|
||||||
font-size: 16px;
|
|
||||||
border-radius: 6px;
|
|
||||||
background: var(--social-bg);
|
|
||||||
display: flex;
|
|
||||||
padding: 6px 12px;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
text-decoration: none;
|
|
||||||
transition: box-shadow 0.3s;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
box-shadow: var(--shadow);
|
|
||||||
}
|
|
||||||
.button-icon {
|
|
||||||
height: 18px;
|
|
||||||
width: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
margin-top: 20px;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
li {
|
|
||||||
flex: 1 1 calc(50% - 8px);
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
width: 100%;
|
|
||||||
justify-content: center;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#spacer {
|
|
||||||
height: 88px;
|
|
||||||
border-top: 1px solid var(--border);
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
height: 48px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ticks {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
&::before,
|
|
||||||
&::after {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
top: -4.5px;
|
|
||||||
border: 5px solid transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
left: 0;
|
|
||||||
border-left-color: var(--border);
|
|
||||||
}
|
|
||||||
&::after {
|
|
||||||
right: 0;
|
|
||||||
border-right-color: var(--border);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,318 +0,0 @@
|
|||||||
import { useEffect, useState } from "react";
|
|
||||||
import type { LucideIcon } from "lucide-react";
|
|
||||||
import {
|
|
||||||
Bell,
|
|
||||||
ChevronLeft,
|
|
||||||
ChevronRight,
|
|
||||||
LayoutDashboard,
|
|
||||||
ListTodo,
|
|
||||||
LogOut,
|
|
||||||
Menu,
|
|
||||||
Moon,
|
|
||||||
Settings,
|
|
||||||
Sparkles,
|
|
||||||
Sun,
|
|
||||||
X
|
|
||||||
} from "lucide-react";
|
|
||||||
import { Navigate, Route, Routes, useLocation, useNavigate } from "react-router-dom";
|
|
||||||
import { Button } from "@/components/ui/button";
|
|
||||||
import { cn } from "@/lib/utils";
|
|
||||||
import { EmailLoginPage } from "@/pages/email-login-page";
|
|
||||||
import { OAuthCallbackPage } from "@/pages/oauth-callback-page";
|
|
||||||
import { TodoShellPage } from "@/pages/todo-shell-page";
|
|
||||||
import { revokeRefreshToken, type EmailLoginResult } from "@/services/auth-api";
|
|
||||||
import {
|
|
||||||
clearSession,
|
|
||||||
loadSession,
|
|
||||||
saveSession,
|
|
||||||
type WebSession
|
|
||||||
} from "@/services/session-storage";
|
|
||||||
import {
|
|
||||||
applyThemeMode,
|
|
||||||
loadThemeMode,
|
|
||||||
saveThemeMode,
|
|
||||||
type ThemeMode
|
|
||||||
} from "@/services/theme-storage";
|
|
||||||
|
|
||||||
type SidebarItem = {
|
|
||||||
key: string;
|
|
||||||
label: string;
|
|
||||||
icon: LucideIcon;
|
|
||||||
};
|
|
||||||
|
|
||||||
const SIDEBAR_ITEMS: SidebarItem[] = [
|
|
||||||
{ key: "dashboard", label: "概览面板", icon: LayoutDashboard },
|
|
||||||
{ key: "todo", label: "待办事项", icon: ListTodo },
|
|
||||||
{ key: "ai", label: "AI 建议", icon: Sparkles },
|
|
||||||
{ key: "notice", label: "提醒中心", icon: Bell },
|
|
||||||
{ key: "settings", label: "系统设置", icon: Settings }
|
|
||||||
];
|
|
||||||
|
|
||||||
function toWebSession(payload: EmailLoginResult): WebSession {
|
|
||||||
return {
|
|
||||||
accessToken: payload.accessToken,
|
|
||||||
refreshToken: payload.refreshToken,
|
|
||||||
user: {
|
|
||||||
id: payload.user.id,
|
|
||||||
email: payload.user.email
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function App() {
|
|
||||||
const [session, setSession] = useState<WebSession | null>(() => loadSession());
|
|
||||||
const [loggingOut, setLoggingOut] = useState(false);
|
|
||||||
const [themeMode, setThemeMode] = useState<ThemeMode>(() => loadThemeMode());
|
|
||||||
const [sidebarCollapsed, setSidebarCollapsed] = useState(false);
|
|
||||||
const [mobileSidebarOpen, setMobileSidebarOpen] = useState(false);
|
|
||||||
const navigate = useNavigate();
|
|
||||||
const location = useLocation();
|
|
||||||
|
|
||||||
const isAuthPage =
|
|
||||||
location.pathname === "/login/email" || location.pathname.startsWith("/auth/callback/");
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
applyThemeMode(themeMode);
|
|
||||||
saveThemeMode(themeMode);
|
|
||||||
}, [themeMode]);
|
|
||||||
|
|
||||||
async function handleLogout(): Promise<void> {
|
|
||||||
if (!session || loggingOut) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
setLoggingOut(true);
|
|
||||||
await revokeRefreshToken(session.refreshToken);
|
|
||||||
} catch {
|
|
||||||
// 无论接口成功与否,都要清理本地会话,避免页面卡在登录态。
|
|
||||||
} finally {
|
|
||||||
clearSession();
|
|
||||||
setSession(null);
|
|
||||||
setLoggingOut(false);
|
|
||||||
setMobileSidebarOpen(false);
|
|
||||||
navigate("/login/email", { replace: true });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleToggleTheme(): void {
|
|
||||||
setThemeMode((currentTheme) => (currentTheme === "dark" ? "light" : "dark"));
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleLoginSuccess(payload: EmailLoginResult): void {
|
|
||||||
const nextSession = toWebSession(payload);
|
|
||||||
saveSession(nextSession);
|
|
||||||
setSession(nextSession);
|
|
||||||
setMobileSidebarOpen(false);
|
|
||||||
navigate("/", { replace: true });
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleBootstrapSession(nextSession: WebSession): void {
|
|
||||||
setSession(nextSession);
|
|
||||||
setMobileSidebarOpen(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
function renderSidebarContent(options: { collapsed: boolean; mobile: boolean }) {
|
|
||||||
const { collapsed, mobile } = options;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="flex h-full min-h-0 flex-col">
|
|
||||||
{mobile ? (
|
|
||||||
<div className="flex h-14 shrink-0 items-center justify-end border-b border-border/70 px-3">
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
size="icon-sm"
|
|
||||||
variant="ghost"
|
|
||||||
className="text-muted-foreground"
|
|
||||||
onClick={() => setMobileSidebarOpen(false)}
|
|
||||||
aria-label="关闭侧边栏"
|
|
||||||
>
|
|
||||||
<X className="size-4" />
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
) : null}
|
|
||||||
|
|
||||||
<div className="min-h-0 flex-1 overflow-y-auto p-2">
|
|
||||||
<nav className="space-y-1">
|
|
||||||
{SIDEBAR_ITEMS.map((item) => {
|
|
||||||
const ItemIcon = item.icon;
|
|
||||||
return (
|
|
||||||
<button
|
|
||||||
key={item.key}
|
|
||||||
type="button"
|
|
||||||
className={cn(
|
|
||||||
"group flex w-full items-center rounded-xl border border-transparent px-3 py-2.5 text-left transition-colors",
|
|
||||||
"gap-3 hover:border-primary/25 hover:bg-primary/10"
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<ItemIcon className="size-5 shrink-0 text-primary" />
|
|
||||||
{collapsed ? null : (
|
|
||||||
<>
|
|
||||||
<span className="text-sm whitespace-nowrap text-foreground">
|
|
||||||
{item.label}
|
|
||||||
</span>
|
|
||||||
<span className="ml-auto whitespace-nowrap rounded-full border border-border bg-card px-2 py-0.5 text-[10px] text-muted-foreground">
|
|
||||||
即将上线
|
|
||||||
</span>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</button>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="shrink-0 space-y-2 border-t border-border/70 p-2">
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
variant="outline"
|
|
||||||
className="w-full justify-start gap-2 border-primary/25 px-3 text-primary hover:bg-primary/10"
|
|
||||||
onClick={handleToggleTheme}
|
|
||||||
>
|
|
||||||
{themeMode === "dark" ? <Sun className="size-4" /> : <Moon className="size-4" />}
|
|
||||||
{collapsed ? null : (
|
|
||||||
<span className="whitespace-nowrap">
|
|
||||||
{themeMode === "dark" ? "浅色模式" : "深色模式"}
|
|
||||||
</span>
|
|
||||||
)}
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
variant="outline"
|
|
||||||
className="w-full justify-start gap-2 border-primary/25 px-3 text-primary hover:bg-primary/10"
|
|
||||||
onClick={handleLogout}
|
|
||||||
disabled={!session || loggingOut}
|
|
||||||
>
|
|
||||||
<LogOut className="size-4" />
|
|
||||||
{collapsed ? null : (
|
|
||||||
<span className="whitespace-nowrap">{loggingOut ? "退出中..." : "退出登录"}</span>
|
|
||||||
)}
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isAuthPage) {
|
|
||||||
return (
|
|
||||||
<div className="min-h-dvh bg-background text-foreground md:min-h-screen">
|
|
||||||
<main className="flex min-h-dvh items-center justify-center px-4 py-8 md:min-h-screen md:px-6">
|
|
||||||
<div className="w-full max-w-md">
|
|
||||||
<Routes>
|
|
||||||
<Route
|
|
||||||
path="/login/email"
|
|
||||||
element={<EmailLoginPage onLoginSuccess={handleLoginSuccess} />}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="/auth/callback/:provider"
|
|
||||||
element={<OAuthCallbackPage onBootstrapSession={handleBootstrapSession} />}
|
|
||||||
/>
|
|
||||||
<Route path="*" element={<Navigate to={session ? "/" : "/login/email"} replace />} />
|
|
||||||
</Routes>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="h-dvh overflow-hidden bg-background text-foreground md:h-screen">
|
|
||||||
<header className="relative z-50 shrink-0 border-b border-border/70 bg-background/80 backdrop-blur-xl">
|
|
||||||
<div className="flex h-16 items-center justify-between px-4 md:px-6">
|
|
||||||
<div className="flex items-center gap-3">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
className="text-primary md:hidden"
|
|
||||||
onClick={() => setMobileSidebarOpen(true)}
|
|
||||||
aria-label="打开侧边栏"
|
|
||||||
>
|
|
||||||
<Menu className="size-12" />
|
|
||||||
</button>
|
|
||||||
<img
|
|
||||||
src="/favicon.png"
|
|
||||||
alt="TodoList"
|
|
||||||
className="h-9 w-9 shrink-0 rounded-xl shadow-sm"
|
|
||||||
/>
|
|
||||||
<span className="text-base font-semibold tracking-tight text-foreground">TodoList</span>
|
|
||||||
</div>
|
|
||||||
<span className="hidden max-w-[280px] truncate text-sm text-muted-foreground md:block">
|
|
||||||
{session ? session.user.email : "未登录"}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
{mobileSidebarOpen ? (
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
className="fixed inset-x-0 bottom-0 top-16 z-30 bg-black/40 backdrop-blur-[2px] md:hidden"
|
|
||||||
aria-label="关闭侧边栏遮罩"
|
|
||||||
onClick={() => setMobileSidebarOpen(false)}
|
|
||||||
/>
|
|
||||||
) : null}
|
|
||||||
|
|
||||||
<aside
|
|
||||||
className={cn(
|
|
||||||
"fixed bottom-0 left-0 top-16 z-40 w-72 border-r border-border/80 bg-card/95 backdrop-blur-xl transition-transform duration-300 md:hidden",
|
|
||||||
mobileSidebarOpen ? "translate-x-0" : "-translate-x-full"
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{renderSidebarContent({ collapsed: false, mobile: true })}
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div className="flex h-[calc(100dvh-4rem)] min-h-0 md:h-[calc(100vh-4rem)]">
|
|
||||||
<aside
|
|
||||||
className={cn(
|
|
||||||
"relative hidden h-full border-r border-border/80 bg-card/88 backdrop-blur-xl transition-[width] duration-300 md:flex md:flex-col",
|
|
||||||
sidebarCollapsed ? "md:w-14" : "md:w-72"
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{renderSidebarContent({ collapsed: sidebarCollapsed, mobile: false })}
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
size="icon-sm"
|
|
||||||
variant="outline"
|
|
||||||
className={cn(
|
|
||||||
"absolute left-full top-1/2 z-20 -ml-px h-14 w-6 -translate-y-1/2 rounded-none border border-border/80",
|
|
||||||
"bg-card/88 text-muted-foreground backdrop-blur-xl transition-colors duration-200 hover:bg-muted/80 hover:text-foreground",
|
|
||||||
"focus-visible:ring-2 focus-visible:ring-ring/45 focus-visible:ring-offset-0"
|
|
||||||
)}
|
|
||||||
onClick={() => setSidebarCollapsed((current) => !current)}
|
|
||||||
aria-label={sidebarCollapsed ? "展开侧边栏" : "收起侧边栏"}
|
|
||||||
>
|
|
||||||
{sidebarCollapsed ? (
|
|
||||||
<ChevronRight className="size-4" />
|
|
||||||
) : (
|
|
||||||
<ChevronLeft className="size-4" />
|
|
||||||
)}
|
|
||||||
</Button>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div className="flex min-h-0 min-w-0 flex-1 flex-col">
|
|
||||||
<main className="min-h-0 flex-1 overflow-y-auto px-4 py-6 md:px-6 md:py-8">
|
|
||||||
<div className="mx-auto w-full max-w-6xl">
|
|
||||||
<Routes>
|
|
||||||
<Route
|
|
||||||
path="/"
|
|
||||||
element={
|
|
||||||
session ? (
|
|
||||||
<TodoShellPage session={session} />
|
|
||||||
) : (
|
|
||||||
<Navigate to="/login/email" replace />
|
|
||||||
)
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
<Route
|
|
||||||
path="*"
|
|
||||||
element={<Navigate to={session ? "/" : "/login/email"} replace />}
|
|
||||||
/>
|
|
||||||
</Routes>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default App;
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 44 KiB |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.0 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 8.5 KiB |
@@ -1,283 +0,0 @@
|
|||||||
import { useEffect, useRef, useState } from "react";
|
|
||||||
import { NodeViewWrapper, type NodeViewProps } from "@tiptap/react";
|
|
||||||
import { cn } from "@/lib/utils";
|
|
||||||
|
|
||||||
type MediaAlign = "left" | "center" | "right";
|
|
||||||
type MediaKind = "image" | "video" | "youtube";
|
|
||||||
type ResizeSide = "left" | "right";
|
|
||||||
|
|
||||||
type ResizableMediaNodeViewProps = NodeViewProps & {
|
|
||||||
mediaKind: MediaKind;
|
|
||||||
};
|
|
||||||
|
|
||||||
type HandleDescriptor = {
|
|
||||||
key: string;
|
|
||||||
side: ResizeSide;
|
|
||||||
className: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
const HANDLE_DESCRIPTORS: HandleDescriptor[] = [
|
|
||||||
{
|
|
||||||
key: "top-left",
|
|
||||||
side: "left",
|
|
||||||
className: "-left-1.5 -top-1.5 cursor-ew-resize"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: "bottom-left",
|
|
||||||
side: "left",
|
|
||||||
className: "-bottom-1.5 -left-1.5 cursor-ew-resize"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: "top-right",
|
|
||||||
side: "right",
|
|
||||||
className: "-right-1.5 -top-1.5 cursor-ew-resize"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: "bottom-right",
|
|
||||||
side: "right",
|
|
||||||
className: "-bottom-1.5 -right-1.5 cursor-ew-resize"
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
function clamp(value: number, min: number, max: number): number {
|
|
||||||
return Math.min(Math.max(value, min), max);
|
|
||||||
}
|
|
||||||
|
|
||||||
function readWidthPercent(value: unknown): number {
|
|
||||||
const numericValue = typeof value === "number" ? value : Number(value);
|
|
||||||
|
|
||||||
if (Number.isNaN(numericValue)) {
|
|
||||||
return 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
return clamp(numericValue, 25, 100);
|
|
||||||
}
|
|
||||||
|
|
||||||
function readAlign(value: unknown): MediaAlign {
|
|
||||||
if (value === "left" || value === "right" || value === "center") {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return "center";
|
|
||||||
}
|
|
||||||
|
|
||||||
function resolveAlignClass(align: MediaAlign): string {
|
|
||||||
if (align === "left") {
|
|
||||||
return "mr-auto";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (align === "right") {
|
|
||||||
return "ml-auto";
|
|
||||||
}
|
|
||||||
|
|
||||||
return "mx-auto";
|
|
||||||
}
|
|
||||||
|
|
||||||
function isStringValue(value: unknown): value is string {
|
|
||||||
return typeof value === "string" && value.trim().length > 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function ResizableMediaNodeView({
|
|
||||||
editor,
|
|
||||||
getPos,
|
|
||||||
mediaKind,
|
|
||||||
node,
|
|
||||||
selected,
|
|
||||||
updateAttributes
|
|
||||||
}: ResizableMediaNodeViewProps) {
|
|
||||||
const [isResizing, setIsResizing] = useState(false);
|
|
||||||
const mediaFrameRef = useRef<HTMLDivElement | null>(null);
|
|
||||||
const cleanupResizeRef = useRef<(() => void) | null>(null);
|
|
||||||
|
|
||||||
const widthPercent = readWidthPercent(node.attrs.widthPercent);
|
|
||||||
const align = readAlign(node.attrs.align);
|
|
||||||
const src = isStringValue(node.attrs.src) ? node.attrs.src : "";
|
|
||||||
const alt = isStringValue(node.attrs.alt) ? node.attrs.alt : "";
|
|
||||||
const title = isStringValue(node.attrs.title) ? node.attrs.title : "";
|
|
||||||
const showControls = selected || isResizing;
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
return () => {
|
|
||||||
cleanupResizeRef.current?.();
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
function selectCurrentNode(): void {
|
|
||||||
const position = getPos();
|
|
||||||
|
|
||||||
if (typeof position !== "number") {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
editor.chain().focus().setNodeSelection(position).run();
|
|
||||||
}
|
|
||||||
|
|
||||||
function applyAlign(nextAlign: MediaAlign): void {
|
|
||||||
selectCurrentNode();
|
|
||||||
updateAttributes({ align: nextAlign });
|
|
||||||
}
|
|
||||||
|
|
||||||
function startResize(side: ResizeSide) {
|
|
||||||
return (event: React.PointerEvent<HTMLButtonElement>): void => {
|
|
||||||
event.preventDefault();
|
|
||||||
event.stopPropagation();
|
|
||||||
|
|
||||||
selectCurrentNode();
|
|
||||||
|
|
||||||
const mediaFrame = mediaFrameRef.current;
|
|
||||||
const editorRoot = mediaFrame?.closest(".ProseMirror") as HTMLElement | null;
|
|
||||||
|
|
||||||
if (!mediaFrame || !editorRoot) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const startX = event.clientX;
|
|
||||||
const startWidth = mediaFrame.getBoundingClientRect().width;
|
|
||||||
const maxWidth = Math.max(editorRoot.clientWidth - 24, 240);
|
|
||||||
|
|
||||||
const handlePointerMove = (moveEvent: PointerEvent): void => {
|
|
||||||
const delta = moveEvent.clientX - startX;
|
|
||||||
const resizedWidth = side === "right" ? startWidth + delta : startWidth - delta;
|
|
||||||
const nextWidth = clamp(resizedWidth, 180, maxWidth);
|
|
||||||
const nextWidthPercent = clamp((nextWidth / maxWidth) * 100, 25, 100);
|
|
||||||
|
|
||||||
updateAttributes({
|
|
||||||
widthPercent: Math.round(nextWidthPercent)
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const handlePointerUp = (): void => {
|
|
||||||
cleanupResizeRef.current?.();
|
|
||||||
cleanupResizeRef.current = null;
|
|
||||||
setIsResizing(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
cleanupResizeRef.current = () => {
|
|
||||||
window.removeEventListener("pointermove", handlePointerMove);
|
|
||||||
window.removeEventListener("pointerup", handlePointerUp);
|
|
||||||
};
|
|
||||||
|
|
||||||
window.addEventListener("pointermove", handlePointerMove);
|
|
||||||
window.addEventListener("pointerup", handlePointerUp, { once: true });
|
|
||||||
setIsResizing(true);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function renderMediaContent() {
|
|
||||||
if (mediaKind === "image") {
|
|
||||||
return (
|
|
||||||
<img
|
|
||||||
src={src}
|
|
||||||
alt={alt}
|
|
||||||
title={title}
|
|
||||||
draggable={false}
|
|
||||||
className="block h-auto w-full rounded-xl object-contain"
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mediaKind === "youtube") {
|
|
||||||
return (
|
|
||||||
<div className="aspect-video w-full overflow-hidden rounded-xl bg-black">
|
|
||||||
<iframe
|
|
||||||
src={src}
|
|
||||||
title={title || "????"}
|
|
||||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
|
||||||
allowFullScreen
|
|
||||||
className="h-full w-full border-0"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<video src={src} title={title} controls className="block h-auto w-full rounded-xl bg-black" />
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<NodeViewWrapper className="my-4" contentEditable={false}>
|
|
||||||
<div
|
|
||||||
ref={mediaFrameRef}
|
|
||||||
className={cn("relative transition-[width] duration-150", resolveAlignClass(align))}
|
|
||||||
style={{ width: `${widthPercent}%` }}
|
|
||||||
onMouseDown={selectCurrentNode}
|
|
||||||
>
|
|
||||||
{showControls ? (
|
|
||||||
<div className="absolute left-0 top-0 z-20 flex -translate-y-[calc(100%+8px)] items-center gap-1 rounded-lg border border-border bg-card/95 px-2 py-1 shadow-sm backdrop-blur">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
className={cn(
|
|
||||||
"rounded px-1.5 py-0.5 text-[11px] transition-colors",
|
|
||||||
align === "left"
|
|
||||||
? "bg-primary/10 text-primary"
|
|
||||||
: "text-muted-foreground hover:bg-muted hover:text-foreground"
|
|
||||||
)}
|
|
||||||
onClick={() => applyAlign("left")}
|
|
||||||
>
|
|
||||||
?
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
className={cn(
|
|
||||||
"rounded px-1.5 py-0.5 text-[11px] transition-colors",
|
|
||||||
align === "center"
|
|
||||||
? "bg-primary/10 text-primary"
|
|
||||||
: "text-muted-foreground hover:bg-muted hover:text-foreground"
|
|
||||||
)}
|
|
||||||
onClick={() => applyAlign("center")}
|
|
||||||
>
|
|
||||||
?
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
className={cn(
|
|
||||||
"rounded px-1.5 py-0.5 text-[11px] transition-colors",
|
|
||||||
align === "right"
|
|
||||||
? "bg-primary/10 text-primary"
|
|
||||||
: "text-muted-foreground hover:bg-muted hover:text-foreground"
|
|
||||||
)}
|
|
||||||
onClick={() => applyAlign("right")}
|
|
||||||
>
|
|
||||||
?
|
|
||||||
</button>
|
|
||||||
<span className="pl-1 text-[11px] text-muted-foreground">{widthPercent}%</span>
|
|
||||||
</div>
|
|
||||||
) : null}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className={cn(
|
|
||||||
"relative rounded-xl border bg-muted/20 transition-colors",
|
|
||||||
showControls ? "border-primary/40 ring-2 ring-primary/20" : "border-border/70"
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{(mediaKind === "video" || mediaKind === "youtube") && !showControls ? (
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
aria-label="????"
|
|
||||||
className="absolute inset-0 z-10 rounded-xl"
|
|
||||||
onClick={selectCurrentNode}
|
|
||||||
/>
|
|
||||||
) : null}
|
|
||||||
|
|
||||||
{renderMediaContent()}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{showControls
|
|
||||||
? HANDLE_DESCRIPTORS.map((handle) => (
|
|
||||||
<button
|
|
||||||
key={handle.key}
|
|
||||||
type="button"
|
|
||||||
aria-label="??????"
|
|
||||||
className={cn(
|
|
||||||
"absolute z-20 h-3 w-3 rounded-full border border-background bg-primary shadow-sm",
|
|
||||||
handle.className
|
|
||||||
)}
|
|
||||||
onPointerDown={startResize(handle.side)}
|
|
||||||
/>
|
|
||||||
))
|
|
||||||
: null}
|
|
||||||
</div>
|
|
||||||
</NodeViewWrapper>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,608 +0,0 @@
|
|||||||
import { memo, useEffect, useRef, useState, type ChangeEvent } from "react";
|
|
||||||
import imageCompression from "browser-image-compression";
|
|
||||||
import type { Editor as TiptapEditor } from "@tiptap/core";
|
|
||||||
import Link from "@tiptap/extension-link";
|
|
||||||
import StarterKit from "@tiptap/starter-kit";
|
|
||||||
import { EditorContent, type JSONContent, useEditor, useEditorState } from "@tiptap/react";
|
|
||||||
import { ResizableImage } from "@/extensions/resizable-image";
|
|
||||||
import { ResizableVideo } from "@/extensions/resizable-video";
|
|
||||||
import { ResizableYoutube } from "@/extensions/resizable-youtube";
|
|
||||||
import { cn } from "@/lib/utils";
|
|
||||||
|
|
||||||
const MAX_IMAGE_UPLOAD_BYTES = 20 * 1024 * 1024;
|
|
||||||
const MAX_VIDEO_UPLOAD_BYTES = 10 * 1024 * 1024;
|
|
||||||
const EDITOR_CHANGE_DEBOUNCE_MS = 120;
|
|
||||||
|
|
||||||
type TaskRichEditorProps = {
|
|
||||||
valueJson: string | null;
|
|
||||||
textFallback: string;
|
|
||||||
onChange: (payload: { json: string | null; text: string }) => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
type ToolbarButtonProps = {
|
|
||||||
label: string;
|
|
||||||
disabled?: boolean;
|
|
||||||
active?: boolean;
|
|
||||||
onClick: () => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
type ToolbarState = {
|
|
||||||
bold: boolean;
|
|
||||||
italic: boolean;
|
|
||||||
heading: boolean;
|
|
||||||
bulletList: boolean;
|
|
||||||
link: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
type EditorToolbarProps = {
|
|
||||||
editor: TiptapEditor | null;
|
|
||||||
onInsertImageUrl: () => void;
|
|
||||||
onOpenImageUpload: () => void;
|
|
||||||
onInsertVideoUrl: () => void;
|
|
||||||
onOpenVideoUpload: () => void;
|
|
||||||
onSetLink: () => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
const DEFAULT_TOOLBAR_STATE: ToolbarState = {
|
|
||||||
bold: false,
|
|
||||||
italic: false,
|
|
||||||
heading: false,
|
|
||||||
bulletList: false,
|
|
||||||
link: false
|
|
||||||
};
|
|
||||||
|
|
||||||
const ToolbarButton = memo(function ToolbarButton({
|
|
||||||
label,
|
|
||||||
disabled = false,
|
|
||||||
active = false,
|
|
||||||
onClick
|
|
||||||
}: ToolbarButtonProps) {
|
|
||||||
return (
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
className={cn(
|
|
||||||
"rounded-md border px-2 py-1 text-xs transition-colors",
|
|
||||||
active
|
|
||||||
? "border-primary/50 bg-primary/10 text-primary"
|
|
||||||
: "border-border bg-background text-foreground hover:border-primary/25 hover:bg-primary/5",
|
|
||||||
disabled && "cursor-not-allowed opacity-50"
|
|
||||||
)}
|
|
||||||
onClick={onClick}
|
|
||||||
disabled={disabled}
|
|
||||||
>
|
|
||||||
{label}
|
|
||||||
</button>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
const EditorToolbar = memo(function EditorToolbar({
|
|
||||||
editor,
|
|
||||||
onInsertImageUrl,
|
|
||||||
onOpenImageUpload,
|
|
||||||
onInsertVideoUrl,
|
|
||||||
onOpenVideoUpload,
|
|
||||||
onSetLink
|
|
||||||
}: EditorToolbarProps) {
|
|
||||||
const toolbarState =
|
|
||||||
useEditorState({
|
|
||||||
editor,
|
|
||||||
selector: ({ editor: currentEditor }) => {
|
|
||||||
if (!currentEditor) {
|
|
||||||
return DEFAULT_TOOLBAR_STATE;
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
bold: currentEditor.isActive("bold"),
|
|
||||||
italic: currentEditor.isActive("italic"),
|
|
||||||
heading: currentEditor.isActive("heading", { level: 2 }),
|
|
||||||
bulletList: currentEditor.isActive("bulletList"),
|
|
||||||
link: currentEditor.isActive("link")
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}) ?? DEFAULT_TOOLBAR_STATE;
|
|
||||||
|
|
||||||
const disabled = !editor;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="flex flex-wrap gap-1 rounded-t-lg border border-input border-b-0 bg-muted/30 px-2 py-2">
|
|
||||||
<ToolbarButton
|
|
||||||
label={"\u7c97\u4f53"}
|
|
||||||
disabled={disabled}
|
|
||||||
active={toolbarState.bold}
|
|
||||||
onClick={() => editor?.chain().focus().toggleBold().run()}
|
|
||||||
/>
|
|
||||||
<ToolbarButton
|
|
||||||
label={"\u659c\u4f53"}
|
|
||||||
disabled={disabled}
|
|
||||||
active={toolbarState.italic}
|
|
||||||
onClick={() => editor?.chain().focus().toggleItalic().run()}
|
|
||||||
/>
|
|
||||||
<ToolbarButton
|
|
||||||
label={"\u6807\u9898"}
|
|
||||||
disabled={disabled}
|
|
||||||
active={toolbarState.heading}
|
|
||||||
onClick={() => editor?.chain().focus().toggleHeading({ level: 2 }).run()}
|
|
||||||
/>
|
|
||||||
<ToolbarButton
|
|
||||||
label={"\u65e0\u5e8f\u5217\u8868"}
|
|
||||||
disabled={disabled}
|
|
||||||
active={toolbarState.bulletList}
|
|
||||||
onClick={() => editor?.chain().focus().toggleBulletList().run()}
|
|
||||||
/>
|
|
||||||
<ToolbarButton
|
|
||||||
label={"\u94fe\u63a5"}
|
|
||||||
disabled={disabled}
|
|
||||||
active={toolbarState.link}
|
|
||||||
onClick={onSetLink}
|
|
||||||
/>
|
|
||||||
<ToolbarButton label={"\u56fe\u7247 URL"} disabled={disabled} onClick={onInsertImageUrl} />
|
|
||||||
<ToolbarButton
|
|
||||||
label={"\u4e0a\u4f20\u56fe\u7247"}
|
|
||||||
disabled={disabled}
|
|
||||||
onClick={onOpenImageUpload}
|
|
||||||
/>
|
|
||||||
<ToolbarButton label={"\u89c6\u9891 URL"} disabled={disabled} onClick={onInsertVideoUrl} />
|
|
||||||
<ToolbarButton
|
|
||||||
label={"\u4e0a\u4f20\u89c6\u9891"}
|
|
||||||
disabled={disabled}
|
|
||||||
onClick={onOpenVideoUpload}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
function resolveEditorContent(
|
|
||||||
valueJson: string | null,
|
|
||||||
textFallback: string
|
|
||||||
): JSONContent | string {
|
|
||||||
if (valueJson) {
|
|
||||||
try {
|
|
||||||
return JSON.parse(valueJson) as JSONContent;
|
|
||||||
} catch {
|
|
||||||
return textFallback;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return textFallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseEditorJson(valueJson: string): JSONContent | null {
|
|
||||||
try {
|
|
||||||
return JSON.parse(valueJson) as JSONContent;
|
|
||||||
} catch {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function formatBytes(bytes: number): string {
|
|
||||||
if (bytes < 1024) {
|
|
||||||
return `${bytes} B`;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bytes < 1024 * 1024) {
|
|
||||||
return `${(bytes / 1024).toFixed(1)} KB`;
|
|
||||||
}
|
|
||||||
|
|
||||||
return `${(bytes / (1024 * 1024)).toFixed(2)} MB`;
|
|
||||||
}
|
|
||||||
|
|
||||||
function isYoutubeUrl(url: string): boolean {
|
|
||||||
return /(youtube\.com|youtu\.be)/i.test(url);
|
|
||||||
}
|
|
||||||
|
|
||||||
function readFileAsDataUrl(file: File): Promise<string> {
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
const reader = new FileReader();
|
|
||||||
|
|
||||||
reader.onload = () => {
|
|
||||||
if (typeof reader.result === "string") {
|
|
||||||
resolve(reader.result);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
reject(new Error("读取文件失败"));
|
|
||||||
};
|
|
||||||
|
|
||||||
reader.onerror = () => {
|
|
||||||
reject(new Error("读取文件失败"));
|
|
||||||
};
|
|
||||||
|
|
||||||
reader.readAsDataURL(file);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function createUploadToken(): string {
|
|
||||||
if (typeof crypto !== "undefined" && typeof crypto.randomUUID === "function") {
|
|
||||||
return crypto.randomUUID();
|
|
||||||
}
|
|
||||||
|
|
||||||
return `upload-${Date.now()}-${Math.random().toString(16).slice(2)}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
function replaceMediaSourceByUploadToken(
|
|
||||||
editor: TiptapEditor,
|
|
||||||
uploadToken: string,
|
|
||||||
attributes: Record<string, string | number | null>
|
|
||||||
): boolean {
|
|
||||||
return editor.commands.command(({ tr, state }) => {
|
|
||||||
let updated = false;
|
|
||||||
|
|
||||||
state.doc.descendants((node, position) => {
|
|
||||||
if (node.attrs.uploadToken !== uploadToken) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.setNodeMarkup(position, undefined, {
|
|
||||||
...node.attrs,
|
|
||||||
...attributes
|
|
||||||
});
|
|
||||||
updated = true;
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
|
|
||||||
return updated;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function removeMediaByUploadToken(editor: TiptapEditor, uploadToken: string): boolean {
|
|
||||||
return editor.commands.command(({ tr, state }) => {
|
|
||||||
let removed = false;
|
|
||||||
|
|
||||||
state.doc.descendants((node, position) => {
|
|
||||||
if (node.attrs.uploadToken !== uploadToken) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr.delete(position, position + node.nodeSize);
|
|
||||||
removed = true;
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
|
|
||||||
return removed;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export const TaskRichEditor = memo(function TaskRichEditor({
|
|
||||||
valueJson,
|
|
||||||
textFallback,
|
|
||||||
onChange
|
|
||||||
}: TaskRichEditorProps) {
|
|
||||||
const [mediaHint, setMediaHint] = useState<string | null>(null);
|
|
||||||
const imageInputRef = useRef<HTMLInputElement | null>(null);
|
|
||||||
const videoInputRef = useRef<HTMLInputElement | null>(null);
|
|
||||||
const changeTimeoutRef = useRef<number | null>(null);
|
|
||||||
const latestOnChangeRef = useRef(onChange);
|
|
||||||
const lastSyncedPayloadRef = useRef<{
|
|
||||||
json: string | null;
|
|
||||||
text: string;
|
|
||||||
}>({
|
|
||||||
json: valueJson,
|
|
||||||
text: textFallback
|
|
||||||
});
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
latestOnChangeRef.current = onChange;
|
|
||||||
}, [onChange]);
|
|
||||||
|
|
||||||
function flushEditorChange(currentEditor: TiptapEditor): void {
|
|
||||||
const nextPayload = {
|
|
||||||
json: JSON.stringify(currentEditor.getJSON()),
|
|
||||||
text: currentEditor.getText()
|
|
||||||
};
|
|
||||||
|
|
||||||
if (
|
|
||||||
nextPayload.json === lastSyncedPayloadRef.current.json &&
|
|
||||||
nextPayload.text === lastSyncedPayloadRef.current.text
|
|
||||||
) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
lastSyncedPayloadRef.current = nextPayload;
|
|
||||||
latestOnChangeRef.current(nextPayload);
|
|
||||||
}
|
|
||||||
|
|
||||||
function scheduleEditorChange(currentEditor: TiptapEditor): void {
|
|
||||||
if (changeTimeoutRef.current !== null) {
|
|
||||||
window.clearTimeout(changeTimeoutRef.current);
|
|
||||||
}
|
|
||||||
|
|
||||||
changeTimeoutRef.current = window.setTimeout(() => {
|
|
||||||
flushEditorChange(currentEditor);
|
|
||||||
changeTimeoutRef.current = null;
|
|
||||||
}, EDITOR_CHANGE_DEBOUNCE_MS);
|
|
||||||
}
|
|
||||||
|
|
||||||
const editor = useEditor({
|
|
||||||
extensions: [
|
|
||||||
StarterKit,
|
|
||||||
Link.configure({
|
|
||||||
openOnClick: true,
|
|
||||||
autolink: true,
|
|
||||||
linkOnPaste: true,
|
|
||||||
HTMLAttributes: {
|
|
||||||
rel: "noopener noreferrer",
|
|
||||||
target: "_blank"
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
ResizableImage,
|
|
||||||
ResizableVideo,
|
|
||||||
ResizableYoutube.configure({
|
|
||||||
controls: true
|
|
||||||
})
|
|
||||||
],
|
|
||||||
content: resolveEditorContent(valueJson, textFallback),
|
|
||||||
editorProps: {
|
|
||||||
attributes: {
|
|
||||||
class:
|
|
||||||
"min-h-40 rounded-b-lg border border-t-0 border-input bg-background px-3 py-2 text-sm text-foreground outline-none"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
shouldRerenderOnTransaction: false,
|
|
||||||
onUpdate({ editor: currentEditor }) {
|
|
||||||
scheduleEditorChange(currentEditor);
|
|
||||||
},
|
|
||||||
onBlur({ editor: currentEditor }) {
|
|
||||||
if (changeTimeoutRef.current !== null) {
|
|
||||||
window.clearTimeout(changeTimeoutRef.current);
|
|
||||||
changeTimeoutRef.current = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
flushEditorChange(currentEditor);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!editor) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
valueJson === lastSyncedPayloadRef.current.json &&
|
|
||||||
textFallback === lastSyncedPayloadRef.current.text
|
|
||||||
) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (changeTimeoutRef.current !== null) {
|
|
||||||
window.clearTimeout(changeTimeoutRef.current);
|
|
||||||
changeTimeoutRef.current = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (valueJson) {
|
|
||||||
const nextJson = parseEditorJson(valueJson);
|
|
||||||
|
|
||||||
if (!nextJson) {
|
|
||||||
if (editor.getText() !== textFallback) {
|
|
||||||
editor.commands.setContent(textFallback, { emitUpdate: false });
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
editor.commands.setContent(nextJson, { emitUpdate: false });
|
|
||||||
lastSyncedPayloadRef.current = {
|
|
||||||
json: valueJson,
|
|
||||||
text: textFallback
|
|
||||||
};
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (editor.getText() !== textFallback) {
|
|
||||||
editor.commands.setContent(textFallback, { emitUpdate: false });
|
|
||||||
}
|
|
||||||
|
|
||||||
lastSyncedPayloadRef.current = {
|
|
||||||
json: valueJson,
|
|
||||||
text: textFallback
|
|
||||||
};
|
|
||||||
}, [editor, textFallback, valueJson]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
return () => {
|
|
||||||
if (changeTimeoutRef.current !== null) {
|
|
||||||
window.clearTimeout(changeTimeoutRef.current);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
async function handleImageFileChange(event: ChangeEvent<HTMLInputElement>): Promise<void> {
|
|
||||||
const file = event.target.files?.[0];
|
|
||||||
event.target.value = "";
|
|
||||||
|
|
||||||
if (!file || !editor) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (file.size > MAX_IMAGE_UPLOAD_BYTES) {
|
|
||||||
setMediaHint(`图片过大,请选择小于 ${formatBytes(MAX_IMAGE_UPLOAD_BYTES)} 的文件。`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const uploadToken = createUploadToken();
|
|
||||||
const previewUrl = URL.createObjectURL(file);
|
|
||||||
|
|
||||||
editor
|
|
||||||
.chain()
|
|
||||||
.focus()
|
|
||||||
.insertContent({
|
|
||||||
type: "image",
|
|
||||||
attrs: {
|
|
||||||
src: previewUrl,
|
|
||||||
alt: file.name,
|
|
||||||
title: file.name,
|
|
||||||
widthPercent: 100,
|
|
||||||
align: "center",
|
|
||||||
uploadToken
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.run();
|
|
||||||
|
|
||||||
try {
|
|
||||||
const compressedImage = await imageCompression(file, {
|
|
||||||
maxSizeMB: 1,
|
|
||||||
maxWidthOrHeight: 1920,
|
|
||||||
useWebWorker: true,
|
|
||||||
initialQuality: 0.8
|
|
||||||
});
|
|
||||||
const imageSource = await imageCompression.getDataUrlFromFile(compressedImage);
|
|
||||||
|
|
||||||
replaceMediaSourceByUploadToken(editor, uploadToken, {
|
|
||||||
src: imageSource,
|
|
||||||
alt: file.name,
|
|
||||||
title: file.name,
|
|
||||||
uploadToken: null
|
|
||||||
});
|
|
||||||
setMediaHint(null);
|
|
||||||
} catch {
|
|
||||||
removeMediaByUploadToken(editor, uploadToken);
|
|
||||||
setMediaHint("图片处理失败,请重试。");
|
|
||||||
} finally {
|
|
||||||
URL.revokeObjectURL(previewUrl);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function handleVideoFileChange(event: ChangeEvent<HTMLInputElement>): Promise<void> {
|
|
||||||
const file = event.target.files?.[0];
|
|
||||||
event.target.value = "";
|
|
||||||
|
|
||||||
if (!file || !editor) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (file.size > MAX_VIDEO_UPLOAD_BYTES) {
|
|
||||||
setMediaHint(`视频过大,请选择小于 ${formatBytes(MAX_VIDEO_UPLOAD_BYTES)} 的文件。`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const uploadToken = createUploadToken();
|
|
||||||
const previewUrl = URL.createObjectURL(file);
|
|
||||||
|
|
||||||
editor
|
|
||||||
.chain()
|
|
||||||
.focus()
|
|
||||||
.insertContent({
|
|
||||||
type: "video",
|
|
||||||
attrs: {
|
|
||||||
src: previewUrl,
|
|
||||||
title: file.name,
|
|
||||||
widthPercent: 100,
|
|
||||||
align: "center",
|
|
||||||
uploadToken
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.run();
|
|
||||||
|
|
||||||
try {
|
|
||||||
const videoSource = await readFileAsDataUrl(file);
|
|
||||||
|
|
||||||
replaceMediaSourceByUploadToken(editor, uploadToken, {
|
|
||||||
src: videoSource,
|
|
||||||
title: file.name,
|
|
||||||
uploadToken: null
|
|
||||||
});
|
|
||||||
setMediaHint(null);
|
|
||||||
} catch {
|
|
||||||
removeMediaByUploadToken(editor, uploadToken);
|
|
||||||
setMediaHint("视频处理失败,请重试。");
|
|
||||||
} finally {
|
|
||||||
URL.revokeObjectURL(previewUrl);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleInsertImageUrl(): void {
|
|
||||||
if (!editor) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const url = window.prompt("请输入图片 URL");
|
|
||||||
|
|
||||||
if (!url) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
editor
|
|
||||||
.chain()
|
|
||||||
.focus()
|
|
||||||
.setImage({
|
|
||||||
src: url
|
|
||||||
})
|
|
||||||
.run();
|
|
||||||
setMediaHint(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleInsertVideoUrl(): void {
|
|
||||||
if (!editor) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const url = window.prompt("请输入视频 URL");
|
|
||||||
|
|
||||||
if (!url) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isYoutubeUrl(url)) {
|
|
||||||
editor
|
|
||||||
.chain()
|
|
||||||
.focus()
|
|
||||||
.setYoutubeVideo({
|
|
||||||
src: url,
|
|
||||||
width: 640,
|
|
||||||
height: 360
|
|
||||||
})
|
|
||||||
.run();
|
|
||||||
setMediaHint(null);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
editor
|
|
||||||
.chain()
|
|
||||||
.focus()
|
|
||||||
.setVideo({
|
|
||||||
src: url
|
|
||||||
})
|
|
||||||
.run();
|
|
||||||
setMediaHint(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<input
|
|
||||||
ref={imageInputRef}
|
|
||||||
type="file"
|
|
||||||
accept="image/*"
|
|
||||||
className="hidden"
|
|
||||||
onChange={handleImageFileChange}
|
|
||||||
/>
|
|
||||||
<input
|
|
||||||
ref={videoInputRef}
|
|
||||||
type="file"
|
|
||||||
accept="video/*"
|
|
||||||
className="hidden"
|
|
||||||
onChange={handleVideoFileChange}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<EditorToolbar
|
|
||||||
editor={editor}
|
|
||||||
onInsertImageUrl={handleInsertImageUrl}
|
|
||||||
onOpenImageUpload={() => imageInputRef.current?.click()}
|
|
||||||
onInsertVideoUrl={handleInsertVideoUrl}
|
|
||||||
onOpenVideoUpload={() => videoInputRef.current?.click()}
|
|
||||||
onSetLink={() => {
|
|
||||||
if (!editor) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const url = window.prompt("\u8bf7\u8f93\u5165\u94fe\u63a5\u5730\u5740");
|
|
||||||
|
|
||||||
if (!url) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
editor.chain().focus().setLink({ href: url }).run();
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<EditorContent editor={editor} />
|
|
||||||
{mediaHint ? <p className="mt-2 text-xs text-muted-foreground">{mediaHint}</p> : null}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
/* eslint-disable react-refresh/only-export-components */
|
|
||||||
import { Button as ButtonPrimitive } from "@base-ui/react/button";
|
|
||||||
import { cva, type VariantProps } from "class-variance-authority";
|
|
||||||
|
|
||||||
import { cn } from "@/lib/utils";
|
|
||||||
|
|
||||||
const buttonVariants = cva(
|
|
||||||
"group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
|
||||||
{
|
|
||||||
variants: {
|
|
||||||
variant: {
|
|
||||||
default: "bg-primary text-primary-foreground [a]:hover:bg-primary/80",
|
|
||||||
outline:
|
|
||||||
"border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50",
|
|
||||||
secondary:
|
|
||||||
"bg-secondary text-secondary-foreground hover:bg-secondary/80 aria-expanded:bg-secondary aria-expanded:text-secondary-foreground",
|
|
||||||
ghost:
|
|
||||||
"hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50",
|
|
||||||
destructive:
|
|
||||||
"bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40",
|
|
||||||
link: "text-primary underline-offset-4 hover:underline"
|
|
||||||
},
|
|
||||||
size: {
|
|
||||||
default:
|
|
||||||
"h-8 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",
|
|
||||||
xs: "h-6 gap-1 rounded-[min(var(--radius-md),10px)] px-2 text-xs in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3",
|
|
||||||
sm: "h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5",
|
|
||||||
lg: "h-9 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",
|
|
||||||
icon: "size-8",
|
|
||||||
"icon-xs":
|
|
||||||
"size-6 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-lg [&_svg:not([class*='size-'])]:size-3",
|
|
||||||
"icon-sm":
|
|
||||||
"size-7 rounded-[min(var(--radius-md),12px)] in-data-[slot=button-group]:rounded-lg",
|
|
||||||
"icon-lg": "size-9"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
defaultVariants: {
|
|
||||||
variant: "default",
|
|
||||||
size: "default"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
function Button({
|
|
||||||
className,
|
|
||||||
variant = "default",
|
|
||||||
size = "default",
|
|
||||||
...props
|
|
||||||
}: ButtonPrimitive.Props & VariantProps<typeof buttonVariants>) {
|
|
||||||
return (
|
|
||||||
<ButtonPrimitive
|
|
||||||
data-slot="button"
|
|
||||||
className={cn(buttonVariants({ variant, size, className }))}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export { Button, buttonVariants };
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
import Image from "@tiptap/extension-image";
|
|
||||||
import { ReactNodeViewRenderer } from "@tiptap/react";
|
|
||||||
import { ResizableMediaNodeView } from "@/components/editor/resizable-media-node-view";
|
|
||||||
|
|
||||||
export const ResizableImage = Image.extend({
|
|
||||||
addAttributes() {
|
|
||||||
return {
|
|
||||||
...(this.parent?.() ?? {}),
|
|
||||||
widthPercent: {
|
|
||||||
default: 100,
|
|
||||||
parseHTML: (element: HTMLElement) =>
|
|
||||||
Number(element.getAttribute("data-width-percent") ?? 100),
|
|
||||||
renderHTML: (attributes: { widthPercent?: number }) => ({
|
|
||||||
"data-width-percent": attributes.widthPercent ?? 100
|
|
||||||
})
|
|
||||||
},
|
|
||||||
align: {
|
|
||||||
default: "center",
|
|
||||||
parseHTML: (element: HTMLElement) => element.getAttribute("data-align") ?? "center",
|
|
||||||
renderHTML: (attributes: { align?: string }) => ({
|
|
||||||
"data-align": attributes.align ?? "center"
|
|
||||||
})
|
|
||||||
},
|
|
||||||
uploadToken: {
|
|
||||||
default: null,
|
|
||||||
parseHTML: (element: HTMLElement) => element.getAttribute("data-upload-token"),
|
|
||||||
renderHTML: (attributes: { uploadToken?: string | null }) =>
|
|
||||||
attributes.uploadToken
|
|
||||||
? {
|
|
||||||
"data-upload-token": attributes.uploadToken
|
|
||||||
}
|
|
||||||
: {}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
addNodeView() {
|
|
||||||
return ReactNodeViewRenderer((props) => (
|
|
||||||
<ResizableMediaNodeView {...props} mediaKind="image" />
|
|
||||||
));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
@@ -1,99 +0,0 @@
|
|||||||
import { Node, mergeAttributes } from "@tiptap/core";
|
|
||||||
import { ReactNodeViewRenderer } from "@tiptap/react";
|
|
||||||
import { ResizableMediaNodeView } from "@/components/editor/resizable-media-node-view";
|
|
||||||
|
|
||||||
declare module "@tiptap/core" {
|
|
||||||
interface Commands<ReturnType> {
|
|
||||||
video: {
|
|
||||||
setVideo: (attributes: {
|
|
||||||
src: string;
|
|
||||||
title?: string | null;
|
|
||||||
widthPercent?: number;
|
|
||||||
align?: "left" | "center" | "right";
|
|
||||||
}) => ReturnType;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export const ResizableVideo = Node.create({
|
|
||||||
name: "video",
|
|
||||||
group: "block",
|
|
||||||
atom: true,
|
|
||||||
selectable: true,
|
|
||||||
draggable: true,
|
|
||||||
|
|
||||||
addAttributes() {
|
|
||||||
return {
|
|
||||||
src: {
|
|
||||||
default: null
|
|
||||||
},
|
|
||||||
title: {
|
|
||||||
default: null
|
|
||||||
},
|
|
||||||
widthPercent: {
|
|
||||||
default: 100,
|
|
||||||
parseHTML: (element: HTMLElement) =>
|
|
||||||
Number(element.getAttribute("data-width-percent") ?? 100),
|
|
||||||
renderHTML: (attributes: { widthPercent?: number }) => ({
|
|
||||||
"data-width-percent": attributes.widthPercent ?? 100
|
|
||||||
})
|
|
||||||
},
|
|
||||||
align: {
|
|
||||||
default: "center",
|
|
||||||
parseHTML: (element: HTMLElement) => element.getAttribute("data-align") ?? "center",
|
|
||||||
renderHTML: (attributes: { align?: string }) => ({
|
|
||||||
"data-align": attributes.align ?? "center"
|
|
||||||
})
|
|
||||||
},
|
|
||||||
uploadToken: {
|
|
||||||
default: null,
|
|
||||||
parseHTML: (element: HTMLElement) => element.getAttribute("data-upload-token"),
|
|
||||||
renderHTML: (attributes: { uploadToken?: string | null }) =>
|
|
||||||
attributes.uploadToken
|
|
||||||
? {
|
|
||||||
"data-upload-token": attributes.uploadToken
|
|
||||||
}
|
|
||||||
: {}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
parseHTML() {
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
tag: "video[src]"
|
|
||||||
}
|
|
||||||
];
|
|
||||||
},
|
|
||||||
|
|
||||||
renderHTML({ HTMLAttributes }) {
|
|
||||||
return [
|
|
||||||
"video",
|
|
||||||
mergeAttributes(HTMLAttributes, {
|
|
||||||
controls: "true"
|
|
||||||
})
|
|
||||||
];
|
|
||||||
},
|
|
||||||
|
|
||||||
addCommands() {
|
|
||||||
return {
|
|
||||||
setVideo:
|
|
||||||
(attributes) =>
|
|
||||||
({ commands }) =>
|
|
||||||
commands.insertContent({
|
|
||||||
type: this.name,
|
|
||||||
attrs: {
|
|
||||||
align: "center",
|
|
||||||
widthPercent: 100,
|
|
||||||
...attributes
|
|
||||||
}
|
|
||||||
})
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
addNodeView() {
|
|
||||||
return ReactNodeViewRenderer((props) => (
|
|
||||||
<ResizableMediaNodeView {...props} mediaKind="video" />
|
|
||||||
));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
import Youtube from "@tiptap/extension-youtube";
|
|
||||||
import { ReactNodeViewRenderer } from "@tiptap/react";
|
|
||||||
import { ResizableMediaNodeView } from "@/components/editor/resizable-media-node-view";
|
|
||||||
|
|
||||||
export const ResizableYoutube = Youtube.extend({
|
|
||||||
addAttributes() {
|
|
||||||
return {
|
|
||||||
...(this.parent?.() ?? {}),
|
|
||||||
widthPercent: {
|
|
||||||
default: 100,
|
|
||||||
parseHTML: (element: HTMLElement) =>
|
|
||||||
Number(element.getAttribute("data-width-percent") ?? 100),
|
|
||||||
renderHTML: (attributes: { widthPercent?: number }) => ({
|
|
||||||
"data-width-percent": attributes.widthPercent ?? 100
|
|
||||||
})
|
|
||||||
},
|
|
||||||
align: {
|
|
||||||
default: "center",
|
|
||||||
parseHTML: (element: HTMLElement) => element.getAttribute("data-align") ?? "center",
|
|
||||||
renderHTML: (attributes: { align?: string }) => ({
|
|
||||||
"data-align": attributes.align ?? "center"
|
|
||||||
})
|
|
||||||
}
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
addNodeView() {
|
|
||||||
return ReactNodeViewRenderer((props) => (
|
|
||||||
<ResizableMediaNodeView {...props} mediaKind="youtube" />
|
|
||||||
));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
@@ -1,296 +0,0 @@
|
|||||||
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
|
||||||
import { useLiveQuery } from "dexie-react-hooks";
|
|
||||||
import {
|
|
||||||
countBlockedSyncOperations,
|
|
||||||
countPendingRemoteOperations,
|
|
||||||
countPendingSyncOperations,
|
|
||||||
getLocalSyncState
|
|
||||||
} from "@/services/local-sync-repo";
|
|
||||||
import type { WebSession } from "@/services/session-storage";
|
|
||||||
import { applyPendingRemoteOperations } from "@/services/sync-merge";
|
|
||||||
import { runSyncWorkerCycle } from "@/services/sync-worker";
|
|
||||||
|
|
||||||
const PERIODIC_SYNC_INTERVAL_MS = 30_000;
|
|
||||||
const MAX_RETRY_DELAY_MS = 60_000;
|
|
||||||
const BASE_RETRY_DELAY_MS = 2_000;
|
|
||||||
|
|
||||||
export type SyncEngineStatus = {
|
|
||||||
isOnline: boolean;
|
|
||||||
phase: "idle" | "syncing" | "offline" | "backoff" | "attention";
|
|
||||||
pendingCount: number;
|
|
||||||
blockedCount: number;
|
|
||||||
pendingRemoteCount: number;
|
|
||||||
lastSyncedAt: number | null;
|
|
||||||
nextRetryAt: number | null;
|
|
||||||
lastError: string | null;
|
|
||||||
};
|
|
||||||
|
|
||||||
function getErrorMessage(error: unknown): string {
|
|
||||||
if (error instanceof Error && error.message.trim()) {
|
|
||||||
return error.message;
|
|
||||||
}
|
|
||||||
|
|
||||||
return "同步失败,请稍后重试";
|
|
||||||
}
|
|
||||||
|
|
||||||
function calculateRetryDelay(attempt: number): number {
|
|
||||||
return Math.min(BASE_RETRY_DELAY_MS * 2 ** Math.max(attempt - 1, 0), MAX_RETRY_DELAY_MS);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function useSyncEngine(session: WebSession | null): {
|
|
||||||
status: SyncEngineStatus;
|
|
||||||
triggerSync: () => void;
|
|
||||||
} {
|
|
||||||
const userId = session?.user.id ?? "";
|
|
||||||
const pendingCount = useLiveQuery(async () => countPendingSyncOperations(), [userId]) ?? 0;
|
|
||||||
const blockedCount = useLiveQuery(async () => countBlockedSyncOperations(), [userId]) ?? 0;
|
|
||||||
const pendingRemoteCount =
|
|
||||||
useLiveQuery(async () => {
|
|
||||||
if (!userId) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return countPendingRemoteOperations(userId);
|
|
||||||
}, [userId]) ?? 0;
|
|
||||||
const storedSyncState =
|
|
||||||
useLiveQuery(async () => {
|
|
||||||
if (!userId) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return getLocalSyncState(userId);
|
|
||||||
}, [userId]) ?? null;
|
|
||||||
|
|
||||||
const [isOnline, setIsOnline] = useState(() => window.navigator.onLine);
|
|
||||||
const [phase, setPhase] = useState<SyncEngineStatus["phase"]>(
|
|
||||||
window.navigator.onLine ? "idle" : "offline"
|
|
||||||
);
|
|
||||||
const [lastError, setLastError] = useState<string | null>(null);
|
|
||||||
const [nextRetryAt, setNextRetryAt] = useState<number | null>(null);
|
|
||||||
const [lastSyncedAt, setLastSyncedAt] = useState<number | null>(null);
|
|
||||||
|
|
||||||
const retryAttemptRef = useRef(0);
|
|
||||||
const runningRef = useRef(false);
|
|
||||||
const mergeRunningRef = useRef(false);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
setLastSyncedAt(storedSyncState?.lastSyncedAt ?? null);
|
|
||||||
}, [storedSyncState]);
|
|
||||||
|
|
||||||
const runCycle = useCallback(async () => {
|
|
||||||
if (!userId || runningRef.current || !window.navigator.onLine) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
runningRef.current = true;
|
|
||||||
setPhase("syncing");
|
|
||||||
setLastError(null);
|
|
||||||
setNextRetryAt(null);
|
|
||||||
|
|
||||||
try {
|
|
||||||
const result = await runSyncWorkerCycle(userId);
|
|
||||||
retryAttemptRef.current = 0;
|
|
||||||
setLastSyncedAt(result.lastSyncedAt);
|
|
||||||
|
|
||||||
if (result.hasFailures) {
|
|
||||||
const nextAttempt = retryAttemptRef.current + 1;
|
|
||||||
retryAttemptRef.current = nextAttempt;
|
|
||||||
const delay = calculateRetryDelay(nextAttempt);
|
|
||||||
setLastError(result.failureMessage ?? "同步失败");
|
|
||||||
setNextRetryAt(Date.now() + delay);
|
|
||||||
setPhase("backoff");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
setPhase(blockedCount > 0 ? "attention" : "idle");
|
|
||||||
} catch (error) {
|
|
||||||
const nextAttempt = retryAttemptRef.current + 1;
|
|
||||||
retryAttemptRef.current = nextAttempt;
|
|
||||||
const delay = calculateRetryDelay(nextAttempt);
|
|
||||||
setLastError(getErrorMessage(error));
|
|
||||||
setNextRetryAt(Date.now() + delay);
|
|
||||||
setPhase("backoff");
|
|
||||||
} finally {
|
|
||||||
runningRef.current = false;
|
|
||||||
}
|
|
||||||
}, [blockedCount, userId]);
|
|
||||||
|
|
||||||
const triggerSync = useCallback(() => {
|
|
||||||
void runCycle();
|
|
||||||
}, [runCycle]);
|
|
||||||
|
|
||||||
const runMerge = useCallback(async () => {
|
|
||||||
if (!userId || mergeRunningRef.current) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
mergeRunningRef.current = true;
|
|
||||||
|
|
||||||
try {
|
|
||||||
await applyPendingRemoteOperations(userId);
|
|
||||||
|
|
||||||
if (!runningRef.current) {
|
|
||||||
setPhase((currentPhase) => {
|
|
||||||
if (!window.navigator.onLine) {
|
|
||||||
return "offline";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (currentPhase === "backoff") {
|
|
||||||
return currentPhase;
|
|
||||||
}
|
|
||||||
|
|
||||||
return blockedCount > 0 ? "attention" : "idle";
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
setLastError(getErrorMessage(error));
|
|
||||||
setPhase("attention");
|
|
||||||
} finally {
|
|
||||||
mergeRunningRef.current = false;
|
|
||||||
}
|
|
||||||
}, [blockedCount, userId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
function handleOnline(): void {
|
|
||||||
setIsOnline(true);
|
|
||||||
setPhase(blockedCount > 0 ? "attention" : "idle");
|
|
||||||
void runCycle();
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleOffline(): void {
|
|
||||||
setIsOnline(false);
|
|
||||||
setNextRetryAt(null);
|
|
||||||
setPhase("offline");
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleVisibilityChange(): void {
|
|
||||||
if (document.visibilityState === "visible" && window.navigator.onLine) {
|
|
||||||
void runCycle();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
window.addEventListener("online", handleOnline);
|
|
||||||
window.addEventListener("offline", handleOffline);
|
|
||||||
document.addEventListener("visibilitychange", handleVisibilityChange);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
window.removeEventListener("online", handleOnline);
|
|
||||||
window.removeEventListener("offline", handleOffline);
|
|
||||||
document.removeEventListener("visibilitychange", handleVisibilityChange);
|
|
||||||
};
|
|
||||||
}, [blockedCount, runCycle]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!userId || !isOnline) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pendingCount === 0 && pendingRemoteCount === 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
void runCycle();
|
|
||||||
}, [isOnline, pendingCount, pendingRemoteCount, runCycle, userId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!userId || !isOnline) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const intervalId = window.setInterval(() => {
|
|
||||||
void runCycle();
|
|
||||||
}, PERIODIC_SYNC_INTERVAL_MS);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
window.clearInterval(intervalId);
|
|
||||||
};
|
|
||||||
}, [isOnline, runCycle, userId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!nextRetryAt || !isOnline) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const timeoutId = window.setTimeout(
|
|
||||||
() => {
|
|
||||||
void runCycle();
|
|
||||||
},
|
|
||||||
Math.max(nextRetryAt - Date.now(), 0)
|
|
||||||
);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
window.clearTimeout(timeoutId);
|
|
||||||
};
|
|
||||||
}, [isOnline, nextRetryAt, runCycle]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!userId || pendingRemoteCount === 0 || runningRef.current) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
void runMerge();
|
|
||||||
}, [pendingRemoteCount, runMerge, userId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!userId) {
|
|
||||||
setLastError(null);
|
|
||||||
setLastSyncedAt(null);
|
|
||||||
setNextRetryAt(null);
|
|
||||||
setPhase(window.navigator.onLine ? "idle" : "offline");
|
|
||||||
retryAttemptRef.current = 0;
|
|
||||||
}
|
|
||||||
}, [userId]);
|
|
||||||
|
|
||||||
const status = useMemo<SyncEngineStatus>(() => {
|
|
||||||
if (!isOnline) {
|
|
||||||
return {
|
|
||||||
isOnline,
|
|
||||||
phase: "offline",
|
|
||||||
pendingCount,
|
|
||||||
blockedCount,
|
|
||||||
pendingRemoteCount,
|
|
||||||
lastSyncedAt,
|
|
||||||
nextRetryAt: null,
|
|
||||||
lastError
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (blockedCount > 0 && phase !== "syncing") {
|
|
||||||
return {
|
|
||||||
isOnline,
|
|
||||||
phase: "attention",
|
|
||||||
pendingCount,
|
|
||||||
blockedCount,
|
|
||||||
pendingRemoteCount,
|
|
||||||
lastSyncedAt,
|
|
||||||
nextRetryAt,
|
|
||||||
lastError
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
isOnline,
|
|
||||||
phase,
|
|
||||||
pendingCount,
|
|
||||||
blockedCount,
|
|
||||||
pendingRemoteCount,
|
|
||||||
lastSyncedAt,
|
|
||||||
nextRetryAt,
|
|
||||||
lastError
|
|
||||||
};
|
|
||||||
}, [
|
|
||||||
blockedCount,
|
|
||||||
isOnline,
|
|
||||||
lastError,
|
|
||||||
lastSyncedAt,
|
|
||||||
nextRetryAt,
|
|
||||||
pendingCount,
|
|
||||||
pendingRemoteCount,
|
|
||||||
phase
|
|
||||||
]);
|
|
||||||
|
|
||||||
return {
|
|
||||||
status,
|
|
||||||
triggerSync
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,77 +0,0 @@
|
|||||||
@import "@fontsource-variable/geist";
|
|
||||||
@tailwind base;
|
|
||||||
@tailwind components;
|
|
||||||
@tailwind utilities;
|
|
||||||
|
|
||||||
html {
|
|
||||||
height: 100%;
|
|
||||||
font-size: 120%;
|
|
||||||
}
|
|
||||||
|
|
||||||
:root {
|
|
||||||
--radius: 0.9rem;
|
|
||||||
--background: 246 100% 98%;
|
|
||||||
--foreground: 248 40% 18%;
|
|
||||||
--card: 0 0% 100%;
|
|
||||||
--border: 248 53% 89%;
|
|
||||||
--input: 248 48% 84%;
|
|
||||||
--ring: 246 53% 53%;
|
|
||||||
--primary: 246 53% 53%;
|
|
||||||
--primary-foreground: 0 0% 100%;
|
|
||||||
--secondary: 250 70% 94%;
|
|
||||||
--secondary-foreground: 248 40% 25%;
|
|
||||||
--muted: 249 78% 95%;
|
|
||||||
--muted-foreground: 248 17% 45%;
|
|
||||||
--accent: 173 56% 66%;
|
|
||||||
--accent-foreground: 248 40% 25%;
|
|
||||||
--destructive: 343 40% 50%;
|
|
||||||
--destructive-foreground: 0 0% 100%;
|
|
||||||
color-scheme: light;
|
|
||||||
font-family: "Geist Variable", "Noto Sans SC", sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dark {
|
|
||||||
--background: 248 46% 10%;
|
|
||||||
--foreground: 240 44% 96%;
|
|
||||||
--card: 249 41% 15%;
|
|
||||||
--border: 249 24% 30%;
|
|
||||||
--input: 249 23% 28%;
|
|
||||||
--ring: 246 76% 68%;
|
|
||||||
--primary: 246 76% 68%;
|
|
||||||
--primary-foreground: 248 43% 12%;
|
|
||||||
--secondary: 249 30% 24%;
|
|
||||||
--secondary-foreground: 240 38% 92%;
|
|
||||||
--muted: 249 29% 20%;
|
|
||||||
--muted-foreground: 247 16% 74%;
|
|
||||||
--accent: 173 52% 58%;
|
|
||||||
--accent-foreground: 248 43% 12%;
|
|
||||||
--destructive: 343 64% 58%;
|
|
||||||
--destructive-foreground: 0 0% 100%;
|
|
||||||
color-scheme: dark;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
height: 100%;
|
|
||||||
overflow: hidden;
|
|
||||||
background:
|
|
||||||
radial-gradient(
|
|
||||||
1100px 620px at -12% -25%,
|
|
||||||
hsl(var(--primary) / 0.2),
|
|
||||||
hsl(var(--primary) / 0) 60%
|
|
||||||
),
|
|
||||||
radial-gradient(
|
|
||||||
900px 540px at 112% -14%,
|
|
||||||
hsl(var(--accent) / 0.35),
|
|
||||||
hsl(var(--accent) / 0) 58%
|
|
||||||
),
|
|
||||||
hsl(var(--background));
|
|
||||||
color: hsl(var(--foreground));
|
|
||||||
transition:
|
|
||||||
background-color 220ms ease,
|
|
||||||
color 220ms ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
#root {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
import { clsx, type ClassValue } from "clsx";
|
|
||||||
import { twMerge } from "tailwind-merge";
|
|
||||||
|
|
||||||
export function cn(...inputs: ClassValue[]) {
|
|
||||||
return twMerge(clsx(inputs));
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
import { StrictMode } from "react";
|
|
||||||
import { createRoot } from "react-dom/client";
|
|
||||||
import { BrowserRouter } from "react-router-dom";
|
|
||||||
import "./index.css";
|
|
||||||
import App from "./App.tsx";
|
|
||||||
import { applyThemeMode, loadThemeMode } from "@/services/theme-storage";
|
|
||||||
|
|
||||||
applyThemeMode(loadThemeMode());
|
|
||||||
|
|
||||||
createRoot(document.getElementById("root")!).render(
|
|
||||||
<StrictMode>
|
|
||||||
<BrowserRouter>
|
|
||||||
<App />
|
|
||||||
</BrowserRouter>
|
|
||||||
</StrictMode>
|
|
||||||
);
|
|
||||||
@@ -1,175 +0,0 @@
|
|||||||
import { useMemo, useState } from "react";
|
|
||||||
import type { FormEvent } from "react";
|
|
||||||
import { Button } from "@/components/ui/button";
|
|
||||||
import { loginWithEmailCode, sendEmailCode, type EmailLoginResult } from "@/services/auth-api";
|
|
||||||
|
|
||||||
type EmailLoginPageProps = {
|
|
||||||
onLoginSuccess: (payload: EmailLoginResult) => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
const DEFAULT_API_BASE_URL = "http://localhost:3000";
|
|
||||||
|
|
||||||
function resolveApiBaseUrl(): string {
|
|
||||||
const envBaseUrl = import.meta.env.VITE_API_BASE_URL as string | undefined;
|
|
||||||
if (!envBaseUrl) {
|
|
||||||
return DEFAULT_API_BASE_URL;
|
|
||||||
}
|
|
||||||
|
|
||||||
return envBaseUrl.replace(/\/+$/, "");
|
|
||||||
}
|
|
||||||
|
|
||||||
export function EmailLoginPage({ onLoginSuccess }: EmailLoginPageProps) {
|
|
||||||
const [email, setEmail] = useState("");
|
|
||||||
const [code, setCode] = useState("");
|
|
||||||
const [sendingCode, setSendingCode] = useState(false);
|
|
||||||
const [loggingIn, setLoggingIn] = useState(false);
|
|
||||||
const [codeCooldown, setCodeCooldown] = useState(0);
|
|
||||||
const [message, setMessage] = useState<string | null>(null);
|
|
||||||
const [error, setError] = useState<string | null>(null);
|
|
||||||
|
|
||||||
const canSendCode = useMemo(() => {
|
|
||||||
return email.trim().length > 0 && !sendingCode && codeCooldown <= 0;
|
|
||||||
}, [codeCooldown, email, sendingCode]);
|
|
||||||
|
|
||||||
const canLogin = useMemo(() => {
|
|
||||||
return email.trim().length > 0 && code.trim().length === 6 && !loggingIn;
|
|
||||||
}, [code, email, loggingIn]);
|
|
||||||
|
|
||||||
async function handleSendCode(event: FormEvent<HTMLFormElement>): Promise<void> {
|
|
||||||
event.preventDefault();
|
|
||||||
if (!canSendCode) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
setSendingCode(true);
|
|
||||||
setError(null);
|
|
||||||
setMessage(null);
|
|
||||||
const result = await sendEmailCode(email.trim());
|
|
||||||
setMessage(`验证码已发送,有效期 ${result.expiresInSeconds} 秒。`);
|
|
||||||
|
|
||||||
let remain = 60;
|
|
||||||
setCodeCooldown(remain);
|
|
||||||
const timer = window.setInterval(() => {
|
|
||||||
remain -= 1;
|
|
||||||
setCodeCooldown(remain);
|
|
||||||
if (remain <= 0) {
|
|
||||||
window.clearInterval(timer);
|
|
||||||
}
|
|
||||||
}, 1000);
|
|
||||||
} catch (err) {
|
|
||||||
setError(err instanceof Error ? err.message : "发送验证码失败");
|
|
||||||
} finally {
|
|
||||||
setSendingCode(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function handleLogin(event: FormEvent<HTMLFormElement>): Promise<void> {
|
|
||||||
event.preventDefault();
|
|
||||||
if (!canLogin) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
setLoggingIn(true);
|
|
||||||
setError(null);
|
|
||||||
setMessage(null);
|
|
||||||
const result = await loginWithEmailCode(email.trim(), code.trim());
|
|
||||||
onLoginSuccess(result);
|
|
||||||
} catch (err) {
|
|
||||||
setError(err instanceof Error ? err.message : "登录失败");
|
|
||||||
} finally {
|
|
||||||
setLoggingIn(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="mx-auto w-full max-w-md rounded-2xl border border-border bg-card/92 p-6 shadow-[0_24px_60px_-36px_hsl(var(--primary)/0.65)] backdrop-blur">
|
|
||||||
<div className="mb-4 flex items-center gap-3">
|
|
||||||
<img src="/favicon.png" alt="TodoList" className="h-10 w-10 rounded-xl shadow-sm" />
|
|
||||||
<div>
|
|
||||||
<h1 className="text-2xl font-semibold text-foreground">邮箱验证码登录</h1>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<form className="mt-6 space-y-3" onSubmit={handleSendCode}>
|
|
||||||
<label className="block text-sm font-medium text-secondary-foreground" htmlFor="email">
|
|
||||||
邮箱
|
|
||||||
</label>
|
|
||||||
<div className="flex items-stretch gap-2">
|
|
||||||
<input
|
|
||||||
id="email"
|
|
||||||
type="email"
|
|
||||||
className="min-w-0 flex-1 rounded-lg border border-input bg-background px-3 py-2 text-sm text-foreground outline-none focus:border-primary focus:ring-3 focus:ring-ring/25"
|
|
||||||
placeholder="you@example.com"
|
|
||||||
value={email}
|
|
||||||
onChange={(event) => setEmail(event.target.value)}
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
type="submit"
|
|
||||||
disabled={!canSendCode}
|
|
||||||
className="shrink-0 bg-primary px-4 text-primary-foreground hover:bg-primary/90"
|
|
||||||
>
|
|
||||||
{sendingCode ? "发送中..." : codeCooldown > 0 ? `${codeCooldown}s` : "发送验证码"}
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<form className="mt-4 space-y-3" onSubmit={handleLogin}>
|
|
||||||
<label className="block text-sm font-medium text-secondary-foreground" htmlFor="code">
|
|
||||||
验证码
|
|
||||||
</label>
|
|
||||||
<input
|
|
||||||
id="code"
|
|
||||||
type="text"
|
|
||||||
inputMode="numeric"
|
|
||||||
maxLength={6}
|
|
||||||
className="w-full rounded-lg border border-input bg-background px-3 py-2 text-sm text-foreground outline-none focus:border-primary focus:ring-3 focus:ring-ring/25"
|
|
||||||
placeholder="6位数字验证码"
|
|
||||||
value={code}
|
|
||||||
onChange={(event) => setCode(event.target.value)}
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
type="submit"
|
|
||||||
disabled={!canLogin}
|
|
||||||
className="w-full bg-gradient-to-r from-primary to-accent text-primary-foreground hover:opacity-95"
|
|
||||||
>
|
|
||||||
{loggingIn ? "登录中..." : "立即登录"}
|
|
||||||
</Button>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<div className="mt-6 grid grid-cols-1 gap-2">
|
|
||||||
<a href={`${resolveApiBaseUrl()}/auth/oauth/github`}>
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
variant="outline"
|
|
||||||
className="w-full border-border bg-card text-foreground"
|
|
||||||
>
|
|
||||||
使用 GitHub 登录
|
|
||||||
</Button>
|
|
||||||
</a>
|
|
||||||
<a href={`${resolveApiBaseUrl()}/auth/oauth/qq`}>
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
variant="outline"
|
|
||||||
className="w-full border-border bg-card text-foreground"
|
|
||||||
>
|
|
||||||
使用 QQ 登录
|
|
||||||
</Button>
|
|
||||||
</a>
|
|
||||||
<a href={`${resolveApiBaseUrl()}/auth/oauth/wechat`}>
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
variant="outline"
|
|
||||||
className="w-full border-border bg-card text-foreground"
|
|
||||||
>
|
|
||||||
使用微信登录
|
|
||||||
</Button>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{message ? <p className="mt-4 text-sm text-primary">{message}</p> : null}
|
|
||||||
{error ? <p className="mt-2 text-sm text-destructive">{error}</p> : null}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,68 +0,0 @@
|
|||||||
import { useMemo } from "react";
|
|
||||||
import { useNavigate, useSearchParams } from "react-router-dom";
|
|
||||||
import { Button } from "@/components/ui/button";
|
|
||||||
import { saveSession, type WebSession } from "@/services/session-storage";
|
|
||||||
|
|
||||||
type OAuthCallbackPageProps = {
|
|
||||||
onBootstrapSession: (session: WebSession) => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
export function OAuthCallbackPage({ onBootstrapSession }: OAuthCallbackPageProps) {
|
|
||||||
const [searchParams] = useSearchParams();
|
|
||||||
const navigate = useNavigate();
|
|
||||||
|
|
||||||
const parseResult = useMemo(() => {
|
|
||||||
const accessToken = searchParams.get("accessToken");
|
|
||||||
const refreshToken = searchParams.get("refreshToken");
|
|
||||||
const userId = searchParams.get("userId");
|
|
||||||
const email = searchParams.get("email");
|
|
||||||
|
|
||||||
if (!accessToken || !refreshToken || !userId || !email) {
|
|
||||||
return {
|
|
||||||
ok: false as const,
|
|
||||||
reason: "回调参数不完整,暂时无法建立会话。"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
ok: true as const,
|
|
||||||
session: {
|
|
||||||
accessToken,
|
|
||||||
refreshToken,
|
|
||||||
user: {
|
|
||||||
id: userId,
|
|
||||||
email
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}, [searchParams]);
|
|
||||||
|
|
||||||
function handleContinue(): void {
|
|
||||||
if (!parseResult.ok) {
|
|
||||||
navigate("/login/email", { replace: true });
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
saveSession(parseResult.session);
|
|
||||||
onBootstrapSession(parseResult.session);
|
|
||||||
navigate("/", { replace: true });
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="mx-auto w-full max-w-md rounded-2xl border border-border bg-card/92 p-6 shadow-[0_24px_60px_-36px_hsl(var(--primary)/0.55)] backdrop-blur">
|
|
||||||
<div className="mb-4 flex items-center gap-3">
|
|
||||||
<img src="/favicon.png" alt="TodoList" className="h-10 w-10 rounded-xl shadow-sm" />
|
|
||||||
<h1 className="text-2xl font-semibold text-foreground">OAuth 回调处理中</h1>
|
|
||||||
</div>
|
|
||||||
<p className="mt-2 text-sm text-muted-foreground">
|
|
||||||
{parseResult.ok ? "已收到回调参数,点击继续进入工作台。" : parseResult.reason}
|
|
||||||
</p>
|
|
||||||
<Button
|
|
||||||
className="mt-6 w-full bg-gradient-to-r from-primary to-accent text-primary-foreground hover:opacity-95"
|
|
||||||
onClick={handleContinue}
|
|
||||||
>
|
|
||||||
{parseResult.ok ? "继续" : "返回邮箱登录"}
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,953 +0,0 @@
|
|||||||
import { memo, useCallback, useEffect, useRef, useState } from "react";
|
|
||||||
import { useLiveQuery } from "dexie-react-hooks";
|
|
||||||
import {
|
|
||||||
CheckCircle2,
|
|
||||||
CircleAlert,
|
|
||||||
CloudOff,
|
|
||||||
LoaderCircle,
|
|
||||||
RefreshCw,
|
|
||||||
ServerCrash
|
|
||||||
} from "lucide-react";
|
|
||||||
import { useSyncEngine, type SyncEngineStatus } from "@/hooks/use-sync-engine";
|
|
||||||
import { TaskRichEditor } from "@/components/task-rich-editor";
|
|
||||||
import { Button } from "@/components/ui/button";
|
|
||||||
import { cn } from "@/lib/utils";
|
|
||||||
import type {
|
|
||||||
LocalTaskDraftRecord,
|
|
||||||
LocalTaskPriority,
|
|
||||||
LocalTaskRecord,
|
|
||||||
LocalTaskStatus
|
|
||||||
} from "@/services/local-db";
|
|
||||||
import {
|
|
||||||
deleteLocalTaskDraft,
|
|
||||||
getLocalTaskDraft,
|
|
||||||
saveLocalTaskDraft
|
|
||||||
} from "@/services/local-task-draft-repo";
|
|
||||||
import {
|
|
||||||
createLocalTask,
|
|
||||||
deleteLocalTask,
|
|
||||||
getLocalTaskById,
|
|
||||||
listLocalTasksByUser,
|
|
||||||
updateLocalTask
|
|
||||||
} from "@/services/local-task-repo";
|
|
||||||
import { formatStorageSize, getStorageQuotaSnapshot } from "@/services/storage-quota";
|
|
||||||
import type { WebSession } from "@/services/session-storage";
|
|
||||||
|
|
||||||
type TodoShellPageProps = {
|
|
||||||
session: WebSession | null;
|
|
||||||
};
|
|
||||||
|
|
||||||
type TaskFormState = {
|
|
||||||
title: string;
|
|
||||||
priority: LocalTaskPriority;
|
|
||||||
status: LocalTaskStatus;
|
|
||||||
ddlInput: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
type TaskEditorState = {
|
|
||||||
contentJson: string | null;
|
|
||||||
contentText: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
type FeedbackNotice = {
|
|
||||||
message: string;
|
|
||||||
tone: "success" | "error";
|
|
||||||
};
|
|
||||||
|
|
||||||
type StorageQuotaSnapshot = Awaited<ReturnType<typeof getStorageQuotaSnapshot>>;
|
|
||||||
|
|
||||||
const DRAFT_PERSIST_DEBOUNCE_MS = 500;
|
|
||||||
|
|
||||||
const DEFAULT_FORM_STATE: TaskFormState = {
|
|
||||||
title: "",
|
|
||||||
priority: "MEDIUM",
|
|
||||||
status: "TODO",
|
|
||||||
ddlInput: ""
|
|
||||||
};
|
|
||||||
|
|
||||||
const DEFAULT_EDITOR_STATE: TaskEditorState = {
|
|
||||||
contentJson: null,
|
|
||||||
contentText: ""
|
|
||||||
};
|
|
||||||
|
|
||||||
const PRIORITY_OPTIONS: Array<{ value: LocalTaskPriority; label: string }> = [
|
|
||||||
{ value: "LOW", label: "低" },
|
|
||||||
{ value: "MEDIUM", label: "中" },
|
|
||||||
{ value: "HIGH", label: "高" },
|
|
||||||
{ value: "URGENT", label: "紧急" }
|
|
||||||
];
|
|
||||||
|
|
||||||
const STATUS_OPTIONS: Array<{ value: LocalTaskStatus; label: string }> = [
|
|
||||||
{ value: "TODO", label: "待办" },
|
|
||||||
{ value: "IN_PROGRESS", label: "进行中" },
|
|
||||||
{ value: "DONE", label: "已完成" },
|
|
||||||
{ value: "ARCHIVED", label: "已归档" }
|
|
||||||
];
|
|
||||||
|
|
||||||
const PRIORITY_LABEL_MAP: Record<LocalTaskPriority, string> = {
|
|
||||||
LOW: "低",
|
|
||||||
MEDIUM: "中",
|
|
||||||
HIGH: "高",
|
|
||||||
URGENT: "紧急"
|
|
||||||
};
|
|
||||||
|
|
||||||
const STATUS_LABEL_MAP: Record<LocalTaskStatus, string> = {
|
|
||||||
TODO: "待办",
|
|
||||||
IN_PROGRESS: "进行中",
|
|
||||||
DONE: "已完成",
|
|
||||||
ARCHIVED: "已归档"
|
|
||||||
};
|
|
||||||
|
|
||||||
function toDatetimeLocalValue(timestamp: number | null): string {
|
|
||||||
if (timestamp === null) {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
const date = new Date(timestamp);
|
|
||||||
const timezoneOffset = date.getTimezoneOffset() * 60_000;
|
|
||||||
return new Date(timestamp - timezoneOffset).toISOString().slice(0, 16);
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseDatetimeLocalValue(value: string): number | null {
|
|
||||||
if (!value) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
const parsed = new Date(value).getTime();
|
|
||||||
if (Number.isNaN(parsed)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return parsed;
|
|
||||||
}
|
|
||||||
|
|
||||||
function formatUpdatedAt(timestamp: number): string {
|
|
||||||
return new Date(timestamp).toLocaleString("zh-CN", {
|
|
||||||
month: "2-digit",
|
|
||||||
day: "2-digit",
|
|
||||||
hour: "2-digit",
|
|
||||||
minute: "2-digit"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function createFormStateFromTask(task: LocalTaskRecord): TaskFormState {
|
|
||||||
return {
|
|
||||||
title: task.title,
|
|
||||||
priority: task.priority,
|
|
||||||
status: task.status,
|
|
||||||
ddlInput: toDatetimeLocalValue(task.ddlAt)
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function createEditorStateFromTask(task: LocalTaskRecord): TaskEditorState {
|
|
||||||
return {
|
|
||||||
contentJson: task.contentJson,
|
|
||||||
contentText: task.contentText ?? ""
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function createFormStateFromDraft(draft: LocalTaskDraftRecord): TaskFormState {
|
|
||||||
return {
|
|
||||||
title: draft.title,
|
|
||||||
priority: draft.priority,
|
|
||||||
status: draft.status,
|
|
||||||
ddlInput: draft.ddlInput
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function createEditorStateFromDraft(draft: LocalTaskDraftRecord): TaskEditorState {
|
|
||||||
return {
|
|
||||||
contentJson: draft.contentJson,
|
|
||||||
contentText: draft.contentText
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function serializeFormState(formState: TaskFormState, editorState: TaskEditorState): string {
|
|
||||||
return JSON.stringify({
|
|
||||||
...formState,
|
|
||||||
...editorState
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function formatSyncTimestamp(timestamp: number | null): string {
|
|
||||||
if (timestamp === null) {
|
|
||||||
return "尚未完成同步";
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Date(timestamp).toLocaleString("zh-CN", {
|
|
||||||
month: "2-digit",
|
|
||||||
day: "2-digit",
|
|
||||||
hour: "2-digit",
|
|
||||||
minute: "2-digit"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function formatRetryTime(timestamp: number | null): string {
|
|
||||||
if (timestamp === null) {
|
|
||||||
return "稍后";
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Date(timestamp).toLocaleTimeString("zh-CN", {
|
|
||||||
hour: "2-digit",
|
|
||||||
minute: "2-digit",
|
|
||||||
second: "2-digit"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function getSyncSummary(status: SyncEngineStatus): {
|
|
||||||
title: string;
|
|
||||||
description: string;
|
|
||||||
accentClassName: string;
|
|
||||||
icon: typeof RefreshCw;
|
|
||||||
iconClassName: string;
|
|
||||||
} {
|
|
||||||
if (status.phase === "offline") {
|
|
||||||
return {
|
|
||||||
title: "离线工作中",
|
|
||||||
description:
|
|
||||||
status.pendingCount > 0
|
|
||||||
? `当前离线,已保留 ${status.pendingCount} 条待上传改动。`
|
|
||||||
: "当前离线,本地仍可继续编辑,联网后会自动同步。",
|
|
||||||
accentClassName: "border-amber-200/80 bg-amber-50/80 text-amber-950",
|
|
||||||
icon: CloudOff,
|
|
||||||
iconClassName: "text-amber-600"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (status.phase === "syncing") {
|
|
||||||
return {
|
|
||||||
title: "正在同步",
|
|
||||||
description: "正在上传本地改动并拉取最新云端增量。",
|
|
||||||
accentClassName: "border-primary/20 bg-primary/10 text-foreground",
|
|
||||||
icon: LoaderCircle,
|
|
||||||
iconClassName: "animate-spin text-primary"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (status.phase === "backoff") {
|
|
||||||
return {
|
|
||||||
title: "同步稍后重试",
|
|
||||||
description: `${status.lastError ?? "同步失败"},系统将在 ${formatRetryTime(
|
|
||||||
status.nextRetryAt
|
|
||||||
)} 再试一次。`,
|
|
||||||
accentClassName: "border-destructive/20 bg-destructive/8 text-foreground",
|
|
||||||
icon: ServerCrash,
|
|
||||||
iconClassName: "text-destructive"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (status.phase === "attention") {
|
|
||||||
return {
|
|
||||||
title: "需要人工关注",
|
|
||||||
description: `有 ${status.blockedCount} 条同步记录已达到重试上限,请检查接口配置或网络环境。`,
|
|
||||||
accentClassName: "border-destructive/20 bg-destructive/8 text-foreground",
|
|
||||||
icon: CircleAlert,
|
|
||||||
iconClassName: "text-destructive"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (status.pendingRemoteCount > 0) {
|
|
||||||
return {
|
|
||||||
title: "云端变更已接收",
|
|
||||||
description: `已收到 ${status.pendingRemoteCount} 条云端变更,后续会进入本地合并流程。`,
|
|
||||||
accentClassName: "border-sky-200/80 bg-sky-50/80 text-sky-950",
|
|
||||||
icon: RefreshCw,
|
|
||||||
iconClassName: "text-sky-600"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
title: "同步状态正常",
|
|
||||||
description:
|
|
||||||
status.pendingCount > 0
|
|
||||||
? `还有 ${status.pendingCount} 条本地改动待处理。`
|
|
||||||
: "本地改动与云端增量传输均处于正常状态。",
|
|
||||||
accentClassName: "border-emerald-200/80 bg-emerald-50/80 text-emerald-950",
|
|
||||||
icon: CheckCircle2,
|
|
||||||
iconClassName: "text-emerald-600"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
type SyncStatusCardProps = {
|
|
||||||
syncStatus: SyncEngineStatus;
|
|
||||||
onTriggerSync: () => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
const SyncStatusCard = memo(function SyncStatusCard({
|
|
||||||
syncStatus,
|
|
||||||
onTriggerSync
|
|
||||||
}: SyncStatusCardProps) {
|
|
||||||
const syncSummary = getSyncSummary(syncStatus);
|
|
||||||
const SyncSummaryIcon = syncSummary.icon;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<section
|
|
||||||
className={cn(
|
|
||||||
"rounded-[1.75rem] border px-4 py-4 shadow-[0_24px_70px_-42px_hsl(var(--primary)/0.38)] backdrop-blur md:px-5",
|
|
||||||
syncSummary.accentClassName
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
<div className="flex flex-col gap-4 md:flex-row md:items-center md:justify-between">
|
|
||||||
<div className="flex items-start gap-3">
|
|
||||||
<div className="rounded-2xl bg-white/70 p-2.5 shadow-sm ring-1 ring-black/5">
|
|
||||||
<SyncSummaryIcon className={cn("h-5 w-5", syncSummary.iconClassName)} />
|
|
||||||
</div>
|
|
||||||
<div className="space-y-1">
|
|
||||||
<p className="text-sm font-semibold">{syncSummary.title}</p>
|
|
||||||
<p className="text-sm leading-6 text-current/80">{syncSummary.description}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="flex flex-wrap items-center gap-2">
|
|
||||||
<span className="rounded-full border border-current/10 bg-white/70 px-3 py-1 text-xs text-current/80">
|
|
||||||
待上传 {syncStatus.pendingCount}
|
|
||||||
</span>
|
|
||||||
<span className="rounded-full border border-current/10 bg-white/70 px-3 py-1 text-xs text-current/80">
|
|
||||||
云端待合并 {syncStatus.pendingRemoteCount}
|
|
||||||
</span>
|
|
||||||
{syncStatus.blockedCount > 0 ? (
|
|
||||||
<span className="rounded-full border border-destructive/20 bg-white/70 px-3 py-1 text-xs text-destructive">
|
|
||||||
阻塞 {syncStatus.blockedCount}
|
|
||||||
</span>
|
|
||||||
) : null}
|
|
||||||
<span className="rounded-full border border-current/10 bg-white/70 px-3 py-1 text-xs text-current/80">
|
|
||||||
上次成功 {formatSyncTimestamp(syncStatus.lastSyncedAt)}
|
|
||||||
</span>
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
variant="outline"
|
|
||||||
className="border-current/15 bg-white/70 text-current hover:bg-white"
|
|
||||||
onClick={onTriggerSync}
|
|
||||||
disabled={!syncStatus.isOnline || syncStatus.phase === "syncing"}
|
|
||||||
>
|
|
||||||
{syncStatus.phase === "syncing" ? "同步中..." : "立即同步"}
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
type TaskListPanelProps = {
|
|
||||||
tasks: LocalTaskRecord[];
|
|
||||||
selectedTaskId: string | null;
|
|
||||||
quotaSnapshot: StorageQuotaSnapshot | null;
|
|
||||||
creating: boolean;
|
|
||||||
onCreateTask: () => void;
|
|
||||||
onSelectTask: (taskId: string) => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
const TaskListPanel = memo(function TaskListPanel({
|
|
||||||
tasks,
|
|
||||||
selectedTaskId,
|
|
||||||
quotaSnapshot,
|
|
||||||
creating,
|
|
||||||
onCreateTask,
|
|
||||||
onSelectTask
|
|
||||||
}: TaskListPanelProps) {
|
|
||||||
return (
|
|
||||||
<section className="rounded-2xl border border-border bg-card/90 p-4 shadow-[0_24px_70px_-42px_hsl(var(--primary)/0.6)] backdrop-blur">
|
|
||||||
<div className="mb-3 flex items-center justify-between gap-2">
|
|
||||||
<h2 className="text-base font-semibold text-foreground">任务列表</h2>
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
size="sm"
|
|
||||||
className="bg-primary text-primary-foreground hover:bg-primary/90"
|
|
||||||
onClick={onCreateTask}
|
|
||||||
disabled={creating}
|
|
||||||
>
|
|
||||||
{creating ? "创建中..." : "新建任务"}
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{quotaSnapshot ? (
|
|
||||||
<p
|
|
||||||
className={cn(
|
|
||||||
"mb-3 text-xs",
|
|
||||||
quotaSnapshot.usedPercent >= 85 ? "text-destructive" : "text-muted-foreground"
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
空间占用(估算):{formatStorageSize(quotaSnapshot.usedBytes)} /{" "}
|
|
||||||
{formatStorageSize(quotaSnapshot.quotaBytes)}({quotaSnapshot.usedPercent.toFixed(1)}%)
|
|
||||||
</p>
|
|
||||||
) : null}
|
|
||||||
|
|
||||||
{tasks.length === 0 ? (
|
|
||||||
<p className="rounded-xl border border-dashed border-border bg-muted/40 p-4 text-sm text-muted-foreground">
|
|
||||||
还没有任务,点击右上角“新建任务”。
|
|
||||||
</p>
|
|
||||||
) : (
|
|
||||||
<div className="space-y-2">
|
|
||||||
{tasks.map((task) => {
|
|
||||||
const isActive = task.id === selectedTaskId;
|
|
||||||
return (
|
|
||||||
<button
|
|
||||||
key={task.id}
|
|
||||||
type="button"
|
|
||||||
className={cn(
|
|
||||||
"w-full rounded-xl border px-3 py-2 text-left transition-colors",
|
|
||||||
isActive
|
|
||||||
? "border-primary/45 bg-primary/10"
|
|
||||||
: "border-border bg-background hover:border-primary/25 hover:bg-primary/5"
|
|
||||||
)}
|
|
||||||
onClick={() => onSelectTask(task.id)}
|
|
||||||
>
|
|
||||||
<p className="truncate text-sm font-medium text-foreground">{task.title}</p>
|
|
||||||
<p className="mt-1 text-xs text-muted-foreground">
|
|
||||||
{STATUS_LABEL_MAP[task.status]} · {PRIORITY_LABEL_MAP[task.priority]} · 更新于{" "}
|
|
||||||
{formatUpdatedAt(task.updatedAt)}
|
|
||||||
</p>
|
|
||||||
</button>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
type TaskDetailPanelProps = {
|
|
||||||
selectedTaskId: string | null;
|
|
||||||
selectedTask: LocalTaskRecord | undefined;
|
|
||||||
formState: TaskFormState;
|
|
||||||
editorKey: string;
|
|
||||||
editorSeedState: TaskEditorState;
|
|
||||||
saving: boolean;
|
|
||||||
deleting: boolean;
|
|
||||||
onSaveTask: () => void;
|
|
||||||
onDeleteTask: () => void;
|
|
||||||
onTitleChange: (value: string) => void;
|
|
||||||
onStatusChange: (value: LocalTaskStatus) => void;
|
|
||||||
onPriorityChange: (value: LocalTaskPriority) => void;
|
|
||||||
onDdlChange: (value: string) => void;
|
|
||||||
onEditorChange: (payload: { json: string | null; text: string }) => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
const TaskDetailPanel = memo(function TaskDetailPanel({
|
|
||||||
selectedTaskId,
|
|
||||||
selectedTask,
|
|
||||||
formState,
|
|
||||||
editorKey,
|
|
||||||
editorSeedState,
|
|
||||||
saving,
|
|
||||||
deleting,
|
|
||||||
onSaveTask,
|
|
||||||
onDeleteTask,
|
|
||||||
onTitleChange,
|
|
||||||
onStatusChange,
|
|
||||||
onPriorityChange,
|
|
||||||
onDdlChange,
|
|
||||||
onEditorChange
|
|
||||||
}: TaskDetailPanelProps) {
|
|
||||||
return (
|
|
||||||
<section className="rounded-2xl border border-border bg-card/90 p-4 shadow-[0_24px_70px_-42px_hsl(var(--primary)/0.6)] backdrop-blur">
|
|
||||||
<div className="mb-4 flex flex-wrap items-center justify-between gap-2">
|
|
||||||
<h2 className="text-base font-semibold text-foreground">任务详情</h2>
|
|
||||||
<div className="flex items-center gap-2">
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
variant="outline"
|
|
||||||
onClick={onSaveTask}
|
|
||||||
disabled={!selectedTaskId || saving}
|
|
||||||
>
|
|
||||||
{saving ? "保存中..." : "保存"}
|
|
||||||
</Button>
|
|
||||||
<Button
|
|
||||||
type="button"
|
|
||||||
variant="outline"
|
|
||||||
className="border-destructive/50 text-destructive hover:bg-destructive/10"
|
|
||||||
onClick={onDeleteTask}
|
|
||||||
disabled={!selectedTaskId || deleting}
|
|
||||||
>
|
|
||||||
{deleting ? "删除中..." : "删除"}
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{!selectedTaskId || !selectedTask ? (
|
|
||||||
<p className="rounded-xl border border-dashed border-border bg-muted/40 p-4 text-sm text-muted-foreground">
|
|
||||||
请选择一个任务进行编辑。
|
|
||||||
</p>
|
|
||||||
) : (
|
|
||||||
<div className="space-y-3">
|
|
||||||
<label className="block text-sm text-muted-foreground">
|
|
||||||
任务标题
|
|
||||||
<input
|
|
||||||
className="mt-1 w-full rounded-lg border border-input bg-background px-3 py-2 text-sm text-foreground outline-none focus:border-primary focus:ring-2 focus:ring-ring/30"
|
|
||||||
value={formState.title}
|
|
||||||
onChange={(event) => onTitleChange(event.target.value)}
|
|
||||||
placeholder="请输入任务标题"
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<div className="grid gap-3 sm:grid-cols-2">
|
|
||||||
<label className="block text-sm text-muted-foreground">
|
|
||||||
状态
|
|
||||||
<select
|
|
||||||
className="mt-1 w-full rounded-lg border border-input bg-background px-3 py-2 text-sm text-foreground outline-none focus:border-primary focus:ring-2 focus:ring-ring/30"
|
|
||||||
value={formState.status}
|
|
||||||
onChange={(event) => onStatusChange(event.target.value as LocalTaskStatus)}
|
|
||||||
>
|
|
||||||
{STATUS_OPTIONS.map((option) => (
|
|
||||||
<option key={option.value} value={option.value}>
|
|
||||||
{option.label}
|
|
||||||
</option>
|
|
||||||
))}
|
|
||||||
</select>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<label className="block text-sm text-muted-foreground">
|
|
||||||
优先级
|
|
||||||
<select
|
|
||||||
className="mt-1 w-full rounded-lg border border-input bg-background px-3 py-2 text-sm text-foreground outline-none focus:border-primary focus:ring-2 focus:ring-ring/30"
|
|
||||||
value={formState.priority}
|
|
||||||
onChange={(event) => onPriorityChange(event.target.value as LocalTaskPriority)}
|
|
||||||
>
|
|
||||||
{PRIORITY_OPTIONS.map((option) => (
|
|
||||||
<option key={option.value} value={option.value}>
|
|
||||||
{option.label}
|
|
||||||
</option>
|
|
||||||
))}
|
|
||||||
</select>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<label className="block text-sm text-muted-foreground">
|
|
||||||
截止时间
|
|
||||||
<input
|
|
||||||
type="datetime-local"
|
|
||||||
className="mt-1 w-full rounded-lg border border-input bg-background px-3 py-2 text-sm text-foreground outline-none focus:border-primary focus:ring-2 focus:ring-ring/30"
|
|
||||||
value={formState.ddlInput}
|
|
||||||
onChange={(event) => onDdlChange(event.target.value)}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<div className="block text-sm text-muted-foreground">
|
|
||||||
<p>任务内容</p>
|
|
||||||
<div className="mt-1">
|
|
||||||
<TaskRichEditor
|
|
||||||
key={editorKey}
|
|
||||||
valueJson={editorSeedState.contentJson}
|
|
||||||
textFallback={editorSeedState.contentText}
|
|
||||||
onChange={onEditorChange}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
export function TodoShellPage({ session }: TodoShellPageProps) {
|
|
||||||
const [selectedTaskId, setSelectedTaskId] = useState<string | null>(null);
|
|
||||||
const [formState, setFormState] = useState<TaskFormState>(DEFAULT_FORM_STATE);
|
|
||||||
const [saving, setSaving] = useState(false);
|
|
||||||
const [creating, setCreating] = useState(false);
|
|
||||||
const [deleting, setDeleting] = useState(false);
|
|
||||||
const [feedback, setFeedback] = useState<FeedbackNotice | null>(null);
|
|
||||||
const [feedbackVisible, setFeedbackVisible] = useState(false);
|
|
||||||
const [draftReadyTaskId, setDraftReadyTaskId] = useState<string | null>(null);
|
|
||||||
const [editorSeedState, setEditorSeedState] = useState<TaskEditorState>(DEFAULT_EDITOR_STATE);
|
|
||||||
const [editorKey, setEditorKey] = useState("editor-empty");
|
|
||||||
const savedTaskSnapshotRef = useRef(serializeFormState(DEFAULT_FORM_STATE, DEFAULT_EDITOR_STATE));
|
|
||||||
const formStateRef = useRef(DEFAULT_FORM_STATE);
|
|
||||||
const editorStateRef = useRef(DEFAULT_EDITOR_STATE);
|
|
||||||
const draftPersistTimeoutRef = useRef<number | null>(null);
|
|
||||||
const { status: syncStatus, triggerSync } = useSyncEngine(session);
|
|
||||||
|
|
||||||
const userId = session?.user.id ?? "";
|
|
||||||
|
|
||||||
const tasks = useLiveQuery(async () => {
|
|
||||||
if (!userId) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
return listLocalTasksByUser(userId);
|
|
||||||
}, [userId]);
|
|
||||||
|
|
||||||
const quotaSnapshot = useLiveQuery(async () => {
|
|
||||||
if (!userId) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return getStorageQuotaSnapshot(userId);
|
|
||||||
}, [userId]);
|
|
||||||
|
|
||||||
const selectedTask = useLiveQuery(async () => {
|
|
||||||
if (!selectedTaskId) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
return getLocalTaskById(selectedTaskId);
|
|
||||||
}, [selectedTaskId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
formStateRef.current = formState;
|
|
||||||
}, [formState]);
|
|
||||||
|
|
||||||
const scheduleDraftPersist = useCallback((): void => {
|
|
||||||
if (!selectedTaskId || draftReadyTaskId !== selectedTaskId || !userId) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (draftPersistTimeoutRef.current !== null) {
|
|
||||||
window.clearTimeout(draftPersistTimeoutRef.current);
|
|
||||||
}
|
|
||||||
|
|
||||||
const currentTaskId = selectedTaskId;
|
|
||||||
const currentUserId = userId;
|
|
||||||
const currentFormState = formStateRef.current;
|
|
||||||
const currentEditorState = editorStateRef.current;
|
|
||||||
const currentSnapshot = serializeFormState(currentFormState, currentEditorState);
|
|
||||||
|
|
||||||
draftPersistTimeoutRef.current = window.setTimeout(() => {
|
|
||||||
async function persistDraft(): Promise<void> {
|
|
||||||
if (currentSnapshot === savedTaskSnapshotRef.current) {
|
|
||||||
await deleteLocalTaskDraft(currentTaskId);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
await saveLocalTaskDraft({
|
|
||||||
taskId: currentTaskId,
|
|
||||||
userId: currentUserId,
|
|
||||||
title: currentFormState.title,
|
|
||||||
contentJson: currentEditorState.contentJson,
|
|
||||||
contentText: currentEditorState.contentText,
|
|
||||||
priority: currentFormState.priority,
|
|
||||||
status: currentFormState.status,
|
|
||||||
ddlInput: currentFormState.ddlInput
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
void persistDraft();
|
|
||||||
draftPersistTimeoutRef.current = null;
|
|
||||||
}, DRAFT_PERSIST_DEBOUNCE_MS);
|
|
||||||
}, [draftReadyTaskId, selectedTaskId, userId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!tasks || tasks.length === 0) {
|
|
||||||
setSelectedTaskId(null);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!selectedTaskId) {
|
|
||||||
setSelectedTaskId(tasks[0].id);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const exists = tasks.some((task) => task.id === selectedTaskId);
|
|
||||||
if (!exists) {
|
|
||||||
setSelectedTaskId(tasks[0].id);
|
|
||||||
}
|
|
||||||
}, [selectedTaskId, tasks]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!selectedTaskId) {
|
|
||||||
setFormState(DEFAULT_FORM_STATE);
|
|
||||||
formStateRef.current = DEFAULT_FORM_STATE;
|
|
||||||
editorStateRef.current = DEFAULT_EDITOR_STATE;
|
|
||||||
setEditorSeedState(DEFAULT_EDITOR_STATE);
|
|
||||||
setEditorKey("editor-empty");
|
|
||||||
setDraftReadyTaskId(null);
|
|
||||||
savedTaskSnapshotRef.current = serializeFormState(DEFAULT_FORM_STATE, DEFAULT_EDITOR_STATE);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!selectedTask) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let cancelled = false;
|
|
||||||
const currentTask = selectedTask;
|
|
||||||
|
|
||||||
async function hydrateFormState(): Promise<void> {
|
|
||||||
const persistedTaskState = createFormStateFromTask(currentTask);
|
|
||||||
const persistedEditorState = createEditorStateFromTask(currentTask);
|
|
||||||
const localDraft = await getLocalTaskDraft(currentTask.id);
|
|
||||||
|
|
||||||
if (cancelled) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const nextFormState = localDraft ? createFormStateFromDraft(localDraft) : persistedTaskState;
|
|
||||||
const nextEditorState = localDraft
|
|
||||||
? createEditorStateFromDraft(localDraft)
|
|
||||||
: persistedEditorState;
|
|
||||||
|
|
||||||
savedTaskSnapshotRef.current = serializeFormState(persistedTaskState, persistedEditorState);
|
|
||||||
formStateRef.current = nextFormState;
|
|
||||||
editorStateRef.current = nextEditorState;
|
|
||||||
setFormState(nextFormState);
|
|
||||||
setEditorSeedState(nextEditorState);
|
|
||||||
setEditorKey(
|
|
||||||
`${currentTask.id}:${currentTask.updatedAt}:${localDraft?.updatedAt ?? currentTask.updatedAt}`
|
|
||||||
);
|
|
||||||
setDraftReadyTaskId(currentTask.id);
|
|
||||||
}
|
|
||||||
|
|
||||||
void hydrateFormState();
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
cancelled = true;
|
|
||||||
};
|
|
||||||
}, [selectedTask, selectedTaskId]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
scheduleDraftPersist();
|
|
||||||
}, [formState, scheduleDraftPersist]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
return () => {
|
|
||||||
if (draftPersistTimeoutRef.current !== null) {
|
|
||||||
window.clearTimeout(draftPersistTimeoutRef.current);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const showFeedback = useCallback((message: string, tone: FeedbackNotice["tone"]): void => {
|
|
||||||
setFeedback({ message, tone });
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!feedback) {
|
|
||||||
setFeedbackVisible(false);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
setFeedbackVisible(false);
|
|
||||||
const enterAnimationId = window.requestAnimationFrame(() => {
|
|
||||||
setFeedbackVisible(true);
|
|
||||||
});
|
|
||||||
|
|
||||||
const visibleDuration = feedback.tone === "success" ? 2200 : 3200;
|
|
||||||
const hideTimeoutId = window.setTimeout(() => {
|
|
||||||
setFeedbackVisible(false);
|
|
||||||
}, visibleDuration);
|
|
||||||
|
|
||||||
const cleanupTimeoutId = window.setTimeout(() => {
|
|
||||||
setFeedback((currentFeedback) =>
|
|
||||||
currentFeedback?.message === feedback.message ? null : currentFeedback
|
|
||||||
);
|
|
||||||
}, visibleDuration + 260);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
window.cancelAnimationFrame(enterAnimationId);
|
|
||||||
window.clearTimeout(hideTimeoutId);
|
|
||||||
window.clearTimeout(cleanupTimeoutId);
|
|
||||||
};
|
|
||||||
}, [feedback]);
|
|
||||||
|
|
||||||
function renderFeedbackBanner() {
|
|
||||||
if (!feedback) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="pointer-events-none fixed inset-x-0 top-0 z-50 flex justify-center px-4 pt-4">
|
|
||||||
<div
|
|
||||||
className={cn(
|
|
||||||
"flex min-w-[240px] max-w-[520px] items-center gap-3 rounded-2xl border px-4 py-3 shadow-[0_18px_50px_-24px_hsl(var(--foreground)/0.35)] backdrop-blur transition-all duration-300 ease-out",
|
|
||||||
feedbackVisible ? "translate-y-0 opacity-100" : "-translate-y-6 opacity-0",
|
|
||||||
feedback.tone === "success"
|
|
||||||
? "border-emerald-200 bg-emerald-50/95 text-emerald-900"
|
|
||||||
: "border-destructive/30 bg-background/95 text-foreground"
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{feedback.tone === "success" ? (
|
|
||||||
<CheckCircle2 className="h-5 w-5 shrink-0 text-emerald-600" />
|
|
||||||
) : (
|
|
||||||
<CircleAlert className="h-5 w-5 shrink-0 text-destructive" />
|
|
||||||
)}
|
|
||||||
<p className="text-sm font-medium">{feedback.message}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const handleCreateTask = useCallback(async (): Promise<void> => {
|
|
||||||
if (creating || !userId) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
setCreating(true);
|
|
||||||
const createdTask = await createLocalTask({ userId });
|
|
||||||
setSelectedTaskId(createdTask.id);
|
|
||||||
showFeedback("已创建新任务。", "success");
|
|
||||||
} finally {
|
|
||||||
setCreating(false);
|
|
||||||
}
|
|
||||||
}, [creating, showFeedback, userId]);
|
|
||||||
|
|
||||||
const handleSaveTask = useCallback(async (): Promise<void> => {
|
|
||||||
if (!selectedTaskId || saving) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
setSaving(true);
|
|
||||||
const currentEditorState = editorStateRef.current;
|
|
||||||
const updatedTask = await updateLocalTask({
|
|
||||||
id: selectedTaskId,
|
|
||||||
title: formState.title,
|
|
||||||
contentText: currentEditorState.contentText || null,
|
|
||||||
contentJson: currentEditorState.contentJson,
|
|
||||||
priority: formState.priority,
|
|
||||||
status: formState.status,
|
|
||||||
ddlAt: parseDatetimeLocalValue(formState.ddlInput)
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!updatedTask) {
|
|
||||||
showFeedback("任务不存在或已被删除。", "error");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
savedTaskSnapshotRef.current = serializeFormState(
|
|
||||||
createFormStateFromTask(updatedTask),
|
|
||||||
createEditorStateFromTask(updatedTask)
|
|
||||||
);
|
|
||||||
await deleteLocalTaskDraft(selectedTaskId);
|
|
||||||
showFeedback("任务已保存。", "success");
|
|
||||||
} finally {
|
|
||||||
setSaving(false);
|
|
||||||
}
|
|
||||||
}, [formState, saving, selectedTaskId, showFeedback]);
|
|
||||||
|
|
||||||
const handleDeleteTask = useCallback(async (): Promise<void> => {
|
|
||||||
if (!selectedTaskId || deleting) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
setDeleting(true);
|
|
||||||
const deleted = await deleteLocalTask(selectedTaskId);
|
|
||||||
if (!deleted) {
|
|
||||||
showFeedback("任务已不存在。", "error");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
await deleteLocalTaskDraft(selectedTaskId);
|
|
||||||
showFeedback("任务已删除。", "success");
|
|
||||||
} finally {
|
|
||||||
setDeleting(false);
|
|
||||||
}
|
|
||||||
}, [deleting, selectedTaskId, showFeedback]);
|
|
||||||
|
|
||||||
const handleEditorChange = useCallback(
|
|
||||||
(payload: { json: string | null; text: string }): void => {
|
|
||||||
editorStateRef.current = {
|
|
||||||
contentJson: payload.json,
|
|
||||||
contentText: payload.text
|
|
||||||
};
|
|
||||||
scheduleDraftPersist();
|
|
||||||
},
|
|
||||||
[scheduleDraftPersist]
|
|
||||||
);
|
|
||||||
|
|
||||||
const handleSelectTask = useCallback((taskId: string): void => {
|
|
||||||
setSelectedTaskId(taskId);
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const handleTitleChange = useCallback((value: string): void => {
|
|
||||||
setFormState((previous) => ({
|
|
||||||
...previous,
|
|
||||||
title: value
|
|
||||||
}));
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const handleStatusChange = useCallback((value: LocalTaskStatus): void => {
|
|
||||||
setFormState((previous) => ({
|
|
||||||
...previous,
|
|
||||||
status: value
|
|
||||||
}));
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const handlePriorityChange = useCallback((value: LocalTaskPriority): void => {
|
|
||||||
setFormState((previous) => ({
|
|
||||||
...previous,
|
|
||||||
priority: value
|
|
||||||
}));
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const handleDdlChange = useCallback((value: string): void => {
|
|
||||||
setFormState((previous) => ({
|
|
||||||
...previous,
|
|
||||||
ddlInput: value
|
|
||||||
}));
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
function handleKeydown(event: KeyboardEvent): void {
|
|
||||||
const isSaveShortcut = (event.ctrlKey || event.metaKey) && event.key.toLowerCase() === "s";
|
|
||||||
|
|
||||||
if (!isSaveShortcut) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
event.preventDefault();
|
|
||||||
|
|
||||||
if (!selectedTaskId || saving) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
void handleSaveTask();
|
|
||||||
}
|
|
||||||
|
|
||||||
window.addEventListener("keydown", handleKeydown);
|
|
||||||
return () => {
|
|
||||||
window.removeEventListener("keydown", handleKeydown);
|
|
||||||
};
|
|
||||||
}, [handleSaveTask, saving, selectedTaskId]);
|
|
||||||
|
|
||||||
if (!session) {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{renderFeedbackBanner()}
|
|
||||||
<div className="rounded-2xl border border-border bg-card/90 p-6 text-sm text-muted-foreground">
|
|
||||||
当前未建立登录会话,请先完成登录。
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const taskList = tasks ?? [];
|
|
||||||
const quotaPanelSnapshot = quotaSnapshot ?? null;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{renderFeedbackBanner()}
|
|
||||||
<div className="space-y-4">
|
|
||||||
<SyncStatusCard syncStatus={syncStatus} onTriggerSync={triggerSync} />
|
|
||||||
|
|
||||||
<div className="grid gap-4 lg:grid-cols-[320px_minmax(0,1fr)]">
|
|
||||||
<TaskListPanel
|
|
||||||
tasks={taskList}
|
|
||||||
selectedTaskId={selectedTaskId}
|
|
||||||
quotaSnapshot={quotaPanelSnapshot}
|
|
||||||
creating={creating}
|
|
||||||
onCreateTask={handleCreateTask}
|
|
||||||
onSelectTask={handleSelectTask}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<TaskDetailPanel
|
|
||||||
selectedTaskId={selectedTaskId}
|
|
||||||
selectedTask={selectedTask}
|
|
||||||
formState={formState}
|
|
||||||
editorKey={editorKey}
|
|
||||||
editorSeedState={editorSeedState}
|
|
||||||
saving={saving}
|
|
||||||
deleting={deleting}
|
|
||||||
onSaveTask={handleSaveTask}
|
|
||||||
onDeleteTask={handleDeleteTask}
|
|
||||||
onTitleChange={handleTitleChange}
|
|
||||||
onStatusChange={handleStatusChange}
|
|
||||||
onPriorityChange={handlePriorityChange}
|
|
||||||
onDdlChange={handleDdlChange}
|
|
||||||
onEditorChange={handleEditorChange}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,98 +0,0 @@
|
|||||||
export type SendEmailCodeResult = {
|
|
||||||
success: boolean;
|
|
||||||
expiresInSeconds: number;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type EmailLoginResult = {
|
|
||||||
accessToken: string;
|
|
||||||
tokenType: "Bearer";
|
|
||||||
expiresInSeconds: number;
|
|
||||||
refreshToken: string;
|
|
||||||
refreshExpiresInSeconds: number;
|
|
||||||
user: {
|
|
||||||
id: string;
|
|
||||||
email: string;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
type RevokeRefreshTokenResult = {
|
|
||||||
success: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
const DEFAULT_API_BASE_URL = "http://localhost:3000";
|
|
||||||
|
|
||||||
function resolveApiBaseUrl(): string {
|
|
||||||
const envBaseUrl = import.meta.env.VITE_API_BASE_URL as string | undefined;
|
|
||||||
if (!envBaseUrl) {
|
|
||||||
return DEFAULT_API_BASE_URL;
|
|
||||||
}
|
|
||||||
|
|
||||||
return envBaseUrl.replace(/\/+$/, "");
|
|
||||||
}
|
|
||||||
|
|
||||||
async function parseErrorMessage(response: Response): Promise<string> {
|
|
||||||
try {
|
|
||||||
const body = (await response.json()) as { message?: string | string[] };
|
|
||||||
if (Array.isArray(body.message)) {
|
|
||||||
return body.message.join(",");
|
|
||||||
}
|
|
||||||
if (typeof body.message === "string" && body.message.trim()) {
|
|
||||||
return body.message;
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
return `请求失败(${response.status})`;
|
|
||||||
}
|
|
||||||
|
|
||||||
return `请求失败(${response.status})`;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function sendEmailCode(email: string): Promise<SendEmailCodeResult> {
|
|
||||||
const response = await fetch(`${resolveApiBaseUrl()}/auth/email/send-code`, {
|
|
||||||
method: "POST",
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json"
|
|
||||||
},
|
|
||||||
body: JSON.stringify({ email })
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(await parseErrorMessage(response));
|
|
||||||
}
|
|
||||||
|
|
||||||
const body = (await response.json()) as SendEmailCodeResult;
|
|
||||||
return body;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function loginWithEmailCode(email: string, code: string): Promise<EmailLoginResult> {
|
|
||||||
const response = await fetch(`${resolveApiBaseUrl()}/auth/email/login`, {
|
|
||||||
method: "POST",
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json"
|
|
||||||
},
|
|
||||||
body: JSON.stringify({ email, code })
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(await parseErrorMessage(response));
|
|
||||||
}
|
|
||||||
|
|
||||||
const body = (await response.json()) as EmailLoginResult;
|
|
||||||
return body;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function revokeRefreshToken(refreshToken: string): Promise<RevokeRefreshTokenResult> {
|
|
||||||
const response = await fetch(`${resolveApiBaseUrl()}/auth/token/revoke`, {
|
|
||||||
method: "POST",
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json"
|
|
||||||
},
|
|
||||||
body: JSON.stringify({ refreshToken })
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(await parseErrorMessage(response));
|
|
||||||
}
|
|
||||||
|
|
||||||
const body = (await response.json()) as RevokeRefreshTokenResult;
|
|
||||||
return body;
|
|
||||||
}
|
|
||||||
@@ -1,128 +0,0 @@
|
|||||||
import Dexie, { type Table } from "dexie";
|
|
||||||
|
|
||||||
export type LocalTaskPriority = "LOW" | "MEDIUM" | "HIGH" | "URGENT";
|
|
||||||
|
|
||||||
export type LocalTaskStatus = "TODO" | "IN_PROGRESS" | "DONE" | "ARCHIVED";
|
|
||||||
|
|
||||||
export type SyncEntityType = "TASK";
|
|
||||||
|
|
||||||
export type SyncActionType = "CREATE" | "UPDATE" | "DELETE";
|
|
||||||
|
|
||||||
export type LocalTaskRecord = {
|
|
||||||
id: string;
|
|
||||||
userId: string;
|
|
||||||
title: string;
|
|
||||||
contentJson: string | null;
|
|
||||||
contentText: string | null;
|
|
||||||
priority: LocalTaskPriority;
|
|
||||||
status: LocalTaskStatus;
|
|
||||||
ddlAt: number | null;
|
|
||||||
version: number;
|
|
||||||
createdAt: number;
|
|
||||||
updatedAt: number;
|
|
||||||
deletedAt: number | null;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type LocalOpLogRecord = {
|
|
||||||
opId: string;
|
|
||||||
entityId: string;
|
|
||||||
entityType: SyncEntityType;
|
|
||||||
action: SyncActionType;
|
|
||||||
payload: string;
|
|
||||||
clientTs: number;
|
|
||||||
deviceId: string;
|
|
||||||
syncedAt: number | null;
|
|
||||||
retryCount: number;
|
|
||||||
errorMessage: string | null;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type LocalTaskDraftRecord = {
|
|
||||||
taskId: string;
|
|
||||||
userId: string;
|
|
||||||
title: string;
|
|
||||||
contentJson: string | null;
|
|
||||||
contentText: string;
|
|
||||||
priority: LocalTaskPriority;
|
|
||||||
status: LocalTaskStatus;
|
|
||||||
ddlInput: string;
|
|
||||||
updatedAt: number;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type LocalSyncStateRecord = {
|
|
||||||
userId: string;
|
|
||||||
cursor: string | null;
|
|
||||||
lastSyncedAt: number | null;
|
|
||||||
updatedAt: number;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type LocalSyncInboxRecord = {
|
|
||||||
opId: string;
|
|
||||||
userId: string;
|
|
||||||
entityId: string;
|
|
||||||
entityType: SyncEntityType;
|
|
||||||
action: SyncActionType;
|
|
||||||
payload: string | null;
|
|
||||||
clientTs: number;
|
|
||||||
deviceId: string;
|
|
||||||
serverTs: number;
|
|
||||||
receivedAt: number;
|
|
||||||
appliedAt: number | null;
|
|
||||||
};
|
|
||||||
|
|
||||||
class TodoLocalDb extends Dexie {
|
|
||||||
declare tasks: Table<LocalTaskRecord, string>;
|
|
||||||
declare opLogs: Table<LocalOpLogRecord, string>;
|
|
||||||
declare taskDrafts: Table<LocalTaskDraftRecord, string>;
|
|
||||||
declare syncStates: Table<LocalSyncStateRecord, string>;
|
|
||||||
declare syncInbox: Table<LocalSyncInboxRecord, string>;
|
|
||||||
|
|
||||||
constructor() {
|
|
||||||
super("todolist-web-db");
|
|
||||||
|
|
||||||
this.version(1).stores({
|
|
||||||
tasks: "&id,userId,status,priority,ddlAt,updatedAt,deletedAt",
|
|
||||||
op_logs: "&opId,entityId,entityType,action,clientTs,syncedAt"
|
|
||||||
});
|
|
||||||
|
|
||||||
this.version(2).stores({
|
|
||||||
tasks: "&id,userId,status,priority,ddlAt,updatedAt,deletedAt",
|
|
||||||
op_logs: "&opId,entityId,entityType,action,clientTs,syncedAt",
|
|
||||||
task_drafts: "&taskId,userId,updatedAt"
|
|
||||||
});
|
|
||||||
|
|
||||||
this.version(3).stores({
|
|
||||||
tasks: "&id,userId,status,priority,ddlAt,updatedAt,deletedAt",
|
|
||||||
op_logs: "&opId,entityId,entityType,action,clientTs,syncedAt",
|
|
||||||
task_drafts: "&taskId,userId,updatedAt",
|
|
||||||
sync_states: "&userId,updatedAt,lastSyncedAt",
|
|
||||||
sync_inbox: "&opId,userId,entityId,serverTs,appliedAt"
|
|
||||||
});
|
|
||||||
|
|
||||||
this.version(4)
|
|
||||||
.stores({
|
|
||||||
tasks: "&id,userId,status,priority,ddlAt,updatedAt,deletedAt",
|
|
||||||
op_logs: "&opId,entityId,entityType,action,clientTs,syncedAt",
|
|
||||||
task_drafts: "&taskId,userId,updatedAt",
|
|
||||||
sync_states: "&userId,updatedAt,lastSyncedAt",
|
|
||||||
sync_inbox: "&opId,userId,entityId,serverTs,appliedAt"
|
|
||||||
})
|
|
||||||
.upgrade(async (tx) => {
|
|
||||||
await tx
|
|
||||||
.table("tasks")
|
|
||||||
.toCollection()
|
|
||||||
.modify((task: Partial<LocalTaskRecord>) => {
|
|
||||||
if (typeof task.version !== "number") {
|
|
||||||
task.version = 1;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
this.tasks = this.table("tasks");
|
|
||||||
this.opLogs = this.table("op_logs");
|
|
||||||
this.taskDrafts = this.table("task_drafts");
|
|
||||||
this.syncStates = this.table("sync_states");
|
|
||||||
this.syncInbox = this.table("sync_inbox");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export const localDb = new TodoLocalDb();
|
|
||||||
@@ -1,167 +0,0 @@
|
|||||||
import {
|
|
||||||
localDb,
|
|
||||||
type LocalOpLogRecord,
|
|
||||||
type LocalSyncInboxRecord,
|
|
||||||
type LocalSyncStateRecord
|
|
||||||
} from "@/services/local-db";
|
|
||||||
import type { SyncPullItem } from "@/services/sync-api";
|
|
||||||
|
|
||||||
export const MAX_SYNC_RETRY_COUNT = 5;
|
|
||||||
|
|
||||||
export async function listPendingSyncOperations(limit = 20): Promise<LocalOpLogRecord[]> {
|
|
||||||
const records = await localDb.opLogs.orderBy("clientTs").toArray();
|
|
||||||
|
|
||||||
return records
|
|
||||||
.filter((record) => record.syncedAt === null && record.retryCount < MAX_SYNC_RETRY_COUNT)
|
|
||||||
.slice(0, limit);
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function countPendingSyncOperations(): Promise<number> {
|
|
||||||
const records = await localDb.opLogs.toArray();
|
|
||||||
return records.filter(
|
|
||||||
(record) => record.syncedAt === null && record.retryCount < MAX_SYNC_RETRY_COUNT
|
|
||||||
).length;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function countBlockedSyncOperations(): Promise<number> {
|
|
||||||
const records = await localDb.opLogs.toArray();
|
|
||||||
return records.filter(
|
|
||||||
(record) => record.syncedAt === null && record.retryCount >= MAX_SYNC_RETRY_COUNT
|
|
||||||
).length;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function markSyncOperationsSucceeded(
|
|
||||||
opIds: string[],
|
|
||||||
syncedAt: number
|
|
||||||
): Promise<void> {
|
|
||||||
if (opIds.length === 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const records = await localDb.opLogs.bulkGet(opIds);
|
|
||||||
const nextRecords = records
|
|
||||||
.filter((record): record is LocalOpLogRecord => record !== undefined)
|
|
||||||
.map((record) => ({
|
|
||||||
...record,
|
|
||||||
syncedAt,
|
|
||||||
errorMessage: null
|
|
||||||
}));
|
|
||||||
|
|
||||||
if (nextRecords.length > 0) {
|
|
||||||
await localDb.opLogs.bulkPut(nextRecords);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function markSyncOperationsFailed(
|
|
||||||
failures: Array<{ opId: string; errorMessage: string }>
|
|
||||||
): Promise<void> {
|
|
||||||
if (failures.length === 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const failureMap = new Map(failures.map((failure) => [failure.opId, failure.errorMessage]));
|
|
||||||
const records = await localDb.opLogs.bulkGet(failures.map((failure) => failure.opId));
|
|
||||||
const nextRecords = records
|
|
||||||
.filter((record): record is LocalOpLogRecord => record !== undefined)
|
|
||||||
.map((record) => ({
|
|
||||||
...record,
|
|
||||||
retryCount: record.retryCount + 1,
|
|
||||||
errorMessage: failureMap.get(record.opId) ?? "同步失败"
|
|
||||||
}));
|
|
||||||
|
|
||||||
if (nextRecords.length > 0) {
|
|
||||||
await localDb.opLogs.bulkPut(nextRecords);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function getLocalSyncState(userId: string): Promise<LocalSyncStateRecord | undefined> {
|
|
||||||
return localDb.syncStates.get(userId);
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function saveLocalSyncState(input: {
|
|
||||||
userId: string;
|
|
||||||
cursor: string | null;
|
|
||||||
lastSyncedAt: number | null;
|
|
||||||
}): Promise<void> {
|
|
||||||
await localDb.syncStates.put({
|
|
||||||
userId: input.userId,
|
|
||||||
cursor: input.cursor,
|
|
||||||
lastSyncedAt: input.lastSyncedAt,
|
|
||||||
updatedAt: Date.now()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function enqueueRemoteSyncOperations(
|
|
||||||
userId: string,
|
|
||||||
operations: SyncPullItem[]
|
|
||||||
): Promise<number> {
|
|
||||||
if (operations.length === 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
const receivedAt = Date.now();
|
|
||||||
const records: LocalSyncInboxRecord[] = operations.map((operation) => ({
|
|
||||||
opId: operation.opId,
|
|
||||||
userId,
|
|
||||||
entityId: operation.entityId,
|
|
||||||
entityType: operation.entityType,
|
|
||||||
action: operation.action,
|
|
||||||
payload: operation.payload,
|
|
||||||
clientTs: operation.clientTs,
|
|
||||||
deviceId: operation.deviceId,
|
|
||||||
serverTs: new Date(operation.serverTs).getTime(),
|
|
||||||
receivedAt,
|
|
||||||
appliedAt: null
|
|
||||||
}));
|
|
||||||
|
|
||||||
await localDb.syncInbox.bulkPut(records);
|
|
||||||
return records.length;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function listPendingRemoteOperations(
|
|
||||||
userId: string,
|
|
||||||
limit = 100
|
|
||||||
): Promise<LocalSyncInboxRecord[]> {
|
|
||||||
const records = await localDb.syncInbox.where("userId").equals(userId).toArray();
|
|
||||||
|
|
||||||
return records
|
|
||||||
.filter((record) => record.appliedAt === null)
|
|
||||||
.sort((left, right) => {
|
|
||||||
if (left.serverTs !== right.serverTs) {
|
|
||||||
return left.serverTs - right.serverTs;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (left.clientTs !== right.clientTs) {
|
|
||||||
return left.clientTs - right.clientTs;
|
|
||||||
}
|
|
||||||
|
|
||||||
return left.opId.localeCompare(right.opId);
|
|
||||||
})
|
|
||||||
.slice(0, limit);
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function markRemoteOperationsApplied(
|
|
||||||
opIds: string[],
|
|
||||||
appliedAt: number
|
|
||||||
): Promise<void> {
|
|
||||||
if (opIds.length === 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const records = await localDb.syncInbox.bulkGet(opIds);
|
|
||||||
const nextRecords = records
|
|
||||||
.filter((record): record is LocalSyncInboxRecord => record !== undefined)
|
|
||||||
.map((record) => ({
|
|
||||||
...record,
|
|
||||||
appliedAt
|
|
||||||
}));
|
|
||||||
|
|
||||||
if (nextRecords.length > 0) {
|
|
||||||
await localDb.syncInbox.bulkPut(nextRecords);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function countPendingRemoteOperations(userId: string): Promise<number> {
|
|
||||||
const records = await localDb.syncInbox.where("userId").equals(userId).toArray();
|
|
||||||
return records.filter((record) => record.appliedAt === null).length;
|
|
||||||
}
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
import { localDb, type LocalTaskDraftRecord } from "@/services/local-db";
|
|
||||||
|
|
||||||
export type SaveLocalTaskDraftInput = {
|
|
||||||
taskId: string;
|
|
||||||
userId: string;
|
|
||||||
title: string;
|
|
||||||
contentJson: string | null;
|
|
||||||
contentText: string;
|
|
||||||
priority: LocalTaskDraftRecord["priority"];
|
|
||||||
status: LocalTaskDraftRecord["status"];
|
|
||||||
ddlInput: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export async function getLocalTaskDraft(taskId: string): Promise<LocalTaskDraftRecord | undefined> {
|
|
||||||
return localDb.taskDrafts.get(taskId);
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function saveLocalTaskDraft(
|
|
||||||
input: SaveLocalTaskDraftInput
|
|
||||||
): Promise<LocalTaskDraftRecord> {
|
|
||||||
const draft: LocalTaskDraftRecord = {
|
|
||||||
...input,
|
|
||||||
updatedAt: Date.now()
|
|
||||||
};
|
|
||||||
|
|
||||||
await localDb.taskDrafts.put(draft);
|
|
||||||
return draft;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function deleteLocalTaskDraft(taskId: string): Promise<void> {
|
|
||||||
await localDb.taskDrafts.delete(taskId);
|
|
||||||
}
|
|
||||||
@@ -1,219 +0,0 @@
|
|||||||
import {
|
|
||||||
localDb,
|
|
||||||
type LocalOpLogRecord,
|
|
||||||
type LocalTaskPriority,
|
|
||||||
type LocalTaskRecord,
|
|
||||||
type LocalTaskStatus,
|
|
||||||
type SyncActionType
|
|
||||||
} from "@/services/local-db";
|
|
||||||
|
|
||||||
const DEVICE_ID_STORAGE_KEY = "todolist.web.device-id";
|
|
||||||
|
|
||||||
export type CreateLocalTaskInput = {
|
|
||||||
userId: string;
|
|
||||||
title?: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type UpdateLocalTaskInput = {
|
|
||||||
id: string;
|
|
||||||
title?: string;
|
|
||||||
contentText?: string | null;
|
|
||||||
contentJson?: string | null;
|
|
||||||
priority?: LocalTaskPriority;
|
|
||||||
status?: LocalTaskStatus;
|
|
||||||
ddlAt?: number | null;
|
|
||||||
};
|
|
||||||
|
|
||||||
type SyncTaskPayload = {
|
|
||||||
id?: string;
|
|
||||||
userId?: string;
|
|
||||||
title: string;
|
|
||||||
contentJson: string | null;
|
|
||||||
contentText?: string | null;
|
|
||||||
priority: LocalTaskPriority;
|
|
||||||
status: LocalTaskStatus;
|
|
||||||
ddlAt: number | null;
|
|
||||||
version: number;
|
|
||||||
createdAt?: number;
|
|
||||||
updatedAt: number;
|
|
||||||
deletedAt?: number | null;
|
|
||||||
};
|
|
||||||
|
|
||||||
function resolveDeviceId(): string {
|
|
||||||
const savedDeviceId = window.localStorage.getItem(DEVICE_ID_STORAGE_KEY);
|
|
||||||
if (savedDeviceId) {
|
|
||||||
return savedDeviceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
const nextDeviceId = crypto.randomUUID();
|
|
||||||
window.localStorage.setItem(DEVICE_ID_STORAGE_KEY, nextDeviceId);
|
|
||||||
return nextDeviceId;
|
|
||||||
}
|
|
||||||
|
|
||||||
function createOpLogRecord(
|
|
||||||
entityId: string,
|
|
||||||
action: SyncActionType,
|
|
||||||
payload: string
|
|
||||||
): LocalOpLogRecord {
|
|
||||||
return {
|
|
||||||
opId: crypto.randomUUID(),
|
|
||||||
entityId,
|
|
||||||
entityType: "TASK",
|
|
||||||
action,
|
|
||||||
payload,
|
|
||||||
clientTs: Date.now(),
|
|
||||||
deviceId: resolveDeviceId(),
|
|
||||||
syncedAt: null,
|
|
||||||
retryCount: 0,
|
|
||||||
errorMessage: null
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function createSyncTaskPayload(payload: SyncTaskPayload): string {
|
|
||||||
const nextPayload: Record<string, unknown> = {
|
|
||||||
...payload
|
|
||||||
};
|
|
||||||
|
|
||||||
if (payload.contentJson !== null) {
|
|
||||||
delete nextPayload.contentText;
|
|
||||||
}
|
|
||||||
|
|
||||||
return JSON.stringify(nextPayload);
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function listLocalTasksByUser(userId: string): Promise<LocalTaskRecord[]> {
|
|
||||||
const tasks = await localDb.tasks.where("userId").equals(userId).toArray();
|
|
||||||
return tasks
|
|
||||||
.filter((task) => task.deletedAt === null)
|
|
||||||
.sort((left, right) => right.updatedAt - left.updatedAt);
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function getLocalTaskById(id: string): Promise<LocalTaskRecord | undefined> {
|
|
||||||
const task = await localDb.tasks.get(id);
|
|
||||||
if (!task || task.deletedAt !== null) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
return task;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function createLocalTask(input: CreateLocalTaskInput): Promise<LocalTaskRecord> {
|
|
||||||
const now = Date.now();
|
|
||||||
const task: LocalTaskRecord = {
|
|
||||||
id: crypto.randomUUID(),
|
|
||||||
userId: input.userId,
|
|
||||||
title: input.title?.trim() ? input.title.trim() : "未命名任务",
|
|
||||||
contentJson: null,
|
|
||||||
contentText: null,
|
|
||||||
priority: "MEDIUM",
|
|
||||||
status: "TODO",
|
|
||||||
ddlAt: null,
|
|
||||||
version: 1,
|
|
||||||
createdAt: now,
|
|
||||||
updatedAt: now,
|
|
||||||
deletedAt: null
|
|
||||||
};
|
|
||||||
|
|
||||||
const opLog = createOpLogRecord(
|
|
||||||
task.id,
|
|
||||||
"CREATE",
|
|
||||||
createSyncTaskPayload({
|
|
||||||
id: task.id,
|
|
||||||
userId: task.userId,
|
|
||||||
title: task.title,
|
|
||||||
contentJson: task.contentJson,
|
|
||||||
contentText: task.contentText,
|
|
||||||
priority: task.priority,
|
|
||||||
status: task.status,
|
|
||||||
ddlAt: task.ddlAt,
|
|
||||||
version: task.version,
|
|
||||||
createdAt: task.createdAt,
|
|
||||||
updatedAt: task.updatedAt,
|
|
||||||
deletedAt: task.deletedAt
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
await localDb.transaction("rw", localDb.tasks, localDb.opLogs, async () => {
|
|
||||||
await localDb.tasks.add(task);
|
|
||||||
await localDb.opLogs.add(opLog);
|
|
||||||
});
|
|
||||||
|
|
||||||
return task;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function updateLocalTask(
|
|
||||||
input: UpdateLocalTaskInput
|
|
||||||
): Promise<LocalTaskRecord | undefined> {
|
|
||||||
const currentTask = await getLocalTaskById(input.id);
|
|
||||||
if (!currentTask) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
const nextVersion = currentTask.version + 1;
|
|
||||||
const nextTask: LocalTaskRecord = {
|
|
||||||
...currentTask,
|
|
||||||
title: input.title !== undefined ? input.title.trim() || "未命名任务" : currentTask.title,
|
|
||||||
contentText: input.contentText !== undefined ? input.contentText : currentTask.contentText,
|
|
||||||
contentJson: input.contentJson !== undefined ? input.contentJson : currentTask.contentJson,
|
|
||||||
priority: input.priority ?? currentTask.priority,
|
|
||||||
status: input.status ?? currentTask.status,
|
|
||||||
ddlAt: input.ddlAt !== undefined ? input.ddlAt : currentTask.ddlAt,
|
|
||||||
version: nextVersion,
|
|
||||||
updatedAt: Date.now()
|
|
||||||
};
|
|
||||||
|
|
||||||
const opLog = createOpLogRecord(
|
|
||||||
nextTask.id,
|
|
||||||
"UPDATE",
|
|
||||||
createSyncTaskPayload({
|
|
||||||
title: nextTask.title,
|
|
||||||
contentJson: nextTask.contentJson,
|
|
||||||
contentText: nextTask.contentText,
|
|
||||||
priority: nextTask.priority,
|
|
||||||
status: nextTask.status,
|
|
||||||
ddlAt: nextTask.ddlAt,
|
|
||||||
version: nextTask.version,
|
|
||||||
updatedAt: nextTask.updatedAt
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
await localDb.transaction("rw", localDb.tasks, localDb.opLogs, async () => {
|
|
||||||
await localDb.tasks.put(nextTask);
|
|
||||||
await localDb.opLogs.add(opLog);
|
|
||||||
});
|
|
||||||
|
|
||||||
return nextTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function deleteLocalTask(id: string): Promise<boolean> {
|
|
||||||
const currentTask = await getLocalTaskById(id);
|
|
||||||
if (!currentTask) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
const deletedAt = Date.now();
|
|
||||||
const nextVersion = currentTask.version + 1;
|
|
||||||
const nextTask: LocalTaskRecord = {
|
|
||||||
...currentTask,
|
|
||||||
version: nextVersion,
|
|
||||||
deletedAt,
|
|
||||||
updatedAt: deletedAt
|
|
||||||
};
|
|
||||||
|
|
||||||
const opLog = createOpLogRecord(
|
|
||||||
id,
|
|
||||||
"DELETE",
|
|
||||||
JSON.stringify({
|
|
||||||
deletedAt,
|
|
||||||
version: nextTask.version,
|
|
||||||
updatedAt: nextTask.updatedAt
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
await localDb.transaction("rw", localDb.tasks, localDb.opLogs, async () => {
|
|
||||||
await localDb.tasks.put(nextTask);
|
|
||||||
await localDb.opLogs.add(opLog);
|
|
||||||
});
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
import type { EmailLoginResult } from "@/services/auth-api";
|
|
||||||
|
|
||||||
const SESSION_STORAGE_KEY = "todolist.web.session";
|
|
||||||
|
|
||||||
export type WebSession = {
|
|
||||||
accessToken: string;
|
|
||||||
refreshToken: string;
|
|
||||||
user: {
|
|
||||||
id: string;
|
|
||||||
email: string;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
function isValidSession(payload: unknown): payload is WebSession {
|
|
||||||
if (!payload || typeof payload !== "object") {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
const data = payload as {
|
|
||||||
accessToken?: unknown;
|
|
||||||
refreshToken?: unknown;
|
|
||||||
user?: {
|
|
||||||
id?: unknown;
|
|
||||||
email?: unknown;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
typeof data.accessToken === "string" &&
|
|
||||||
typeof data.refreshToken === "string" &&
|
|
||||||
typeof data.user?.id === "string" &&
|
|
||||||
typeof data.user?.email === "string"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function loadSession(): WebSession | null {
|
|
||||||
const raw = window.localStorage.getItem(SESSION_STORAGE_KEY);
|
|
||||||
if (!raw) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const parsed = JSON.parse(raw) as unknown;
|
|
||||||
if (!isValidSession(parsed)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return parsed;
|
|
||||||
} catch {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function saveSession(payload: EmailLoginResult | WebSession): void {
|
|
||||||
const session: WebSession = {
|
|
||||||
accessToken: payload.accessToken,
|
|
||||||
refreshToken: payload.refreshToken,
|
|
||||||
user: {
|
|
||||||
id: payload.user.id,
|
|
||||||
email: payload.user.email
|
|
||||||
}
|
|
||||||
};
|
|
||||||
window.localStorage.setItem(SESSION_STORAGE_KEY, JSON.stringify(session));
|
|
||||||
}
|
|
||||||
|
|
||||||
export function clearSession(): void {
|
|
||||||
window.localStorage.removeItem(SESSION_STORAGE_KEY);
|
|
||||||
}
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
import { localDb } from "@/services/local-db";
|
|
||||||
|
|
||||||
export const DEFAULT_CLOUD_QUOTA_BYTES = 100 * 1024 * 1024;
|
|
||||||
|
|
||||||
type StorageQuotaSnapshot = {
|
|
||||||
usedBytes: number;
|
|
||||||
quotaBytes: number;
|
|
||||||
remainingBytes: number;
|
|
||||||
usedPercent: number;
|
|
||||||
};
|
|
||||||
|
|
||||||
function measureTextBytes(value: string | null): number {
|
|
||||||
if (!value) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Blob([value]).size;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function getStorageQuotaSnapshot(userId: string): Promise<StorageQuotaSnapshot> {
|
|
||||||
const tasks = await localDb.tasks.where("userId").equals(userId).toArray();
|
|
||||||
|
|
||||||
const usedBytes = tasks.reduce((total, task) => {
|
|
||||||
if (task.deletedAt !== null) {
|
|
||||||
return total;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
total +
|
|
||||||
measureTextBytes(task.title) +
|
|
||||||
measureTextBytes(task.contentText) +
|
|
||||||
measureTextBytes(task.contentJson)
|
|
||||||
);
|
|
||||||
}, 0);
|
|
||||||
|
|
||||||
const remainingBytes = Math.max(DEFAULT_CLOUD_QUOTA_BYTES - usedBytes, 0);
|
|
||||||
const usedPercent = Math.min((usedBytes / DEFAULT_CLOUD_QUOTA_BYTES) * 100, 100);
|
|
||||||
|
|
||||||
return {
|
|
||||||
usedBytes,
|
|
||||||
quotaBytes: DEFAULT_CLOUD_QUOTA_BYTES,
|
|
||||||
remainingBytes,
|
|
||||||
usedPercent
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export function formatStorageSize(bytes: number): string {
|
|
||||||
if (bytes < 1024) {
|
|
||||||
return `${bytes} B`;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bytes < 1024 * 1024) {
|
|
||||||
return `${(bytes / 1024).toFixed(1)} KB`;
|
|
||||||
}
|
|
||||||
|
|
||||||
return `${(bytes / (1024 * 1024)).toFixed(2)} MB`;
|
|
||||||
}
|
|
||||||
@@ -1,159 +0,0 @@
|
|||||||
import type { LocalOpLogRecord } from "@/services/local-db";
|
|
||||||
|
|
||||||
export type SyncPushResult = {
|
|
||||||
acceptedCount: number;
|
|
||||||
duplicateCount: number;
|
|
||||||
failedCount: number;
|
|
||||||
results: Array<{
|
|
||||||
opId: string;
|
|
||||||
status: "accepted" | "duplicate" | "failed";
|
|
||||||
serverTs: string | null;
|
|
||||||
reason: string | null;
|
|
||||||
}>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type SyncPullItem = {
|
|
||||||
opId: string;
|
|
||||||
entityId: string;
|
|
||||||
entityType: "TASK";
|
|
||||||
action: "CREATE" | "UPDATE" | "DELETE";
|
|
||||||
payload: string | null;
|
|
||||||
clientTs: number;
|
|
||||||
deviceId: string;
|
|
||||||
serverTs: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type SyncPullResult = {
|
|
||||||
items: SyncPullItem[];
|
|
||||||
nextCursor: string | null;
|
|
||||||
hasMore: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
const DEFAULT_API_BASE_URL = "http://localhost:3000";
|
|
||||||
|
|
||||||
function resolveApiBaseUrl(): string {
|
|
||||||
const envBaseUrl = import.meta.env.VITE_API_BASE_URL as string | undefined;
|
|
||||||
if (!envBaseUrl) {
|
|
||||||
return DEFAULT_API_BASE_URL;
|
|
||||||
}
|
|
||||||
|
|
||||||
return envBaseUrl.replace(/\/+$/, "");
|
|
||||||
}
|
|
||||||
|
|
||||||
async function parseErrorMessage(response: Response): Promise<string> {
|
|
||||||
if (response.status === 413) {
|
|
||||||
return "单次同步内容过大,请精简本次任务内容或等待系统分批重试。";
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const body = (await response.json()) as { message?: string | string[] };
|
|
||||||
if (Array.isArray(body.message)) {
|
|
||||||
return body.message.join(",");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof body.message === "string" && body.message.trim()) {
|
|
||||||
return body.message;
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
return `请求失败(${response.status})`;
|
|
||||||
}
|
|
||||||
|
|
||||||
return `请求失败(${response.status})`;
|
|
||||||
}
|
|
||||||
|
|
||||||
type SyncPushOperationRequest = {
|
|
||||||
opId: string;
|
|
||||||
entityId: string;
|
|
||||||
entityType: LocalOpLogRecord["entityType"];
|
|
||||||
action: LocalOpLogRecord["action"];
|
|
||||||
payload: string;
|
|
||||||
clientTs: number;
|
|
||||||
deviceId: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
function compactOperationPayload(payload: string): string {
|
|
||||||
try {
|
|
||||||
const parsed = JSON.parse(payload) as unknown;
|
|
||||||
if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) {
|
|
||||||
return payload;
|
|
||||||
}
|
|
||||||
|
|
||||||
const nextPayload = { ...(parsed as Record<string, unknown>) };
|
|
||||||
if (nextPayload.contentJson !== undefined && nextPayload.contentJson !== null) {
|
|
||||||
delete nextPayload.contentText;
|
|
||||||
}
|
|
||||||
|
|
||||||
return JSON.stringify(nextPayload);
|
|
||||||
} catch {
|
|
||||||
return payload;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function serializeSyncOperationForRequest(
|
|
||||||
operation: LocalOpLogRecord
|
|
||||||
): SyncPushOperationRequest {
|
|
||||||
return {
|
|
||||||
opId: operation.opId,
|
|
||||||
entityId: operation.entityId,
|
|
||||||
entityType: operation.entityType,
|
|
||||||
action: operation.action,
|
|
||||||
payload: compactOperationPayload(operation.payload),
|
|
||||||
clientTs: operation.clientTs,
|
|
||||||
deviceId: operation.deviceId
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function pushSyncOperations(
|
|
||||||
userId: string,
|
|
||||||
operations: LocalOpLogRecord[]
|
|
||||||
): Promise<SyncPushResult> {
|
|
||||||
const requestOperations = operations.map((operation) =>
|
|
||||||
serializeSyncOperationForRequest(operation)
|
|
||||||
);
|
|
||||||
|
|
||||||
const response = await fetch(`${resolveApiBaseUrl()}/sync/push`, {
|
|
||||||
method: "POST",
|
|
||||||
headers: {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
"x-user-id": userId
|
|
||||||
},
|
|
||||||
body: JSON.stringify({
|
|
||||||
operations: requestOperations
|
|
||||||
})
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(await parseErrorMessage(response));
|
|
||||||
}
|
|
||||||
|
|
||||||
return (await response.json()) as SyncPushResult;
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function pullSyncOperations(input: {
|
|
||||||
userId: string;
|
|
||||||
cursor: string | null;
|
|
||||||
limit?: number;
|
|
||||||
}): Promise<SyncPullResult> {
|
|
||||||
const requestUrl = new URL(`${resolveApiBaseUrl()}/sync/pull`);
|
|
||||||
|
|
||||||
if (input.cursor) {
|
|
||||||
requestUrl.searchParams.set("cursor", input.cursor);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (input.limit !== undefined) {
|
|
||||||
requestUrl.searchParams.set("limit", String(input.limit));
|
|
||||||
}
|
|
||||||
|
|
||||||
const response = await fetch(requestUrl, {
|
|
||||||
method: "GET",
|
|
||||||
headers: {
|
|
||||||
"x-user-id": input.userId
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(await parseErrorMessage(response));
|
|
||||||
}
|
|
||||||
|
|
||||||
return (await response.json()) as SyncPullResult;
|
|
||||||
}
|
|
||||||
@@ -1,261 +0,0 @@
|
|||||||
import {
|
|
||||||
localDb,
|
|
||||||
type LocalSyncInboxRecord,
|
|
||||||
type LocalTaskPriority,
|
|
||||||
type LocalTaskRecord,
|
|
||||||
type LocalTaskStatus
|
|
||||||
} from "@/services/local-db";
|
|
||||||
import { listPendingRemoteOperations } from "@/services/local-sync-repo";
|
|
||||||
|
|
||||||
const TASK_PRIORITY_VALUES: LocalTaskPriority[] = ["LOW", "MEDIUM", "HIGH", "URGENT"];
|
|
||||||
const TASK_STATUS_VALUES: LocalTaskStatus[] = ["TODO", "IN_PROGRESS", "DONE", "ARCHIVED"];
|
|
||||||
|
|
||||||
type RemoteTaskPayload = {
|
|
||||||
userId?: unknown;
|
|
||||||
title?: unknown;
|
|
||||||
contentJson?: unknown;
|
|
||||||
contentText?: unknown;
|
|
||||||
priority?: unknown;
|
|
||||||
status?: unknown;
|
|
||||||
ddlAt?: unknown;
|
|
||||||
version?: unknown;
|
|
||||||
createdAt?: unknown;
|
|
||||||
updatedAt?: unknown;
|
|
||||||
deletedAt?: unknown;
|
|
||||||
};
|
|
||||||
|
|
||||||
function normalizePriority(value: unknown, fallback: LocalTaskPriority): LocalTaskPriority {
|
|
||||||
if (typeof value === "string" && TASK_PRIORITY_VALUES.includes(value as LocalTaskPriority)) {
|
|
||||||
return value as LocalTaskPriority;
|
|
||||||
}
|
|
||||||
|
|
||||||
return fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
function normalizeStatus(value: unknown, fallback: LocalTaskStatus): LocalTaskStatus {
|
|
||||||
if (typeof value === "string" && TASK_STATUS_VALUES.includes(value as LocalTaskStatus)) {
|
|
||||||
return value as LocalTaskStatus;
|
|
||||||
}
|
|
||||||
|
|
||||||
return fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
function normalizeStringOrNull(value: unknown, fallback: string | null): string | null {
|
|
||||||
if (typeof value === "string") {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (value === null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
function collectTextFromRichContent(value: unknown, fragments: string[]): void {
|
|
||||||
if (!value || typeof value !== "object") {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const node = value as {
|
|
||||||
text?: unknown;
|
|
||||||
content?: unknown;
|
|
||||||
};
|
|
||||||
|
|
||||||
if (typeof node.text === "string" && node.text.trim().length > 0) {
|
|
||||||
fragments.push(node.text.trim());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Array.isArray(node.content)) {
|
|
||||||
for (const child of node.content) {
|
|
||||||
collectTextFromRichContent(child, fragments);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function extractTextFromContentJson(contentJson: string | null): string | null {
|
|
||||||
if (!contentJson) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const parsed = JSON.parse(contentJson) as unknown;
|
|
||||||
const fragments: string[] = [];
|
|
||||||
collectTextFromRichContent(parsed, fragments);
|
|
||||||
return fragments.length > 0 ? fragments.join(" ") : null;
|
|
||||||
} catch {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function normalizeNullableNumber(value: unknown, fallback: number | null): number | null {
|
|
||||||
if (typeof value === "number" && Number.isFinite(value)) {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (value === null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
function normalizePositiveNumber(value: unknown, fallback: number): number {
|
|
||||||
if (typeof value === "number" && Number.isFinite(value) && value > 0) {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseOperationPayload(operation: LocalSyncInboxRecord): RemoteTaskPayload {
|
|
||||||
if (!operation.payload) {
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
const parsed = JSON.parse(operation.payload) as unknown;
|
|
||||||
if (!parsed || typeof parsed !== "object") {
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
return parsed as RemoteTaskPayload;
|
|
||||||
}
|
|
||||||
|
|
||||||
function createFallbackTask(
|
|
||||||
operation: LocalSyncInboxRecord,
|
|
||||||
userId: string,
|
|
||||||
updatedAt: number,
|
|
||||||
version: number
|
|
||||||
): LocalTaskRecord {
|
|
||||||
return {
|
|
||||||
id: operation.entityId,
|
|
||||||
userId,
|
|
||||||
title: "未命名任务",
|
|
||||||
contentJson: null,
|
|
||||||
contentText: null,
|
|
||||||
priority: "MEDIUM",
|
|
||||||
status: "TODO",
|
|
||||||
ddlAt: null,
|
|
||||||
version,
|
|
||||||
createdAt: updatedAt,
|
|
||||||
updatedAt,
|
|
||||||
deletedAt: null
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function buildIncomingTaskRecord(
|
|
||||||
operation: LocalSyncInboxRecord,
|
|
||||||
currentTask: LocalTaskRecord | undefined
|
|
||||||
): LocalTaskRecord {
|
|
||||||
const payload = parseOperationPayload(operation);
|
|
||||||
const fallbackVersion = currentTask?.version ?? 1;
|
|
||||||
const version = normalizePositiveNumber(payload.version, fallbackVersion);
|
|
||||||
const updatedAt = normalizePositiveNumber(
|
|
||||||
payload.updatedAt,
|
|
||||||
normalizePositiveNumber(payload.deletedAt, operation.clientTs)
|
|
||||||
);
|
|
||||||
const fallbackTask =
|
|
||||||
currentTask ?? createFallbackTask(operation, operation.userId, updatedAt, version);
|
|
||||||
const contentJson = normalizeStringOrNull(payload.contentJson, fallbackTask.contentJson);
|
|
||||||
const contentText = normalizeStringOrNull(
|
|
||||||
payload.contentText,
|
|
||||||
extractTextFromContentJson(contentJson) ?? fallbackTask.contentText
|
|
||||||
);
|
|
||||||
|
|
||||||
if (operation.action === "DELETE") {
|
|
||||||
const deletedAt = normalizePositiveNumber(payload.deletedAt, updatedAt);
|
|
||||||
return {
|
|
||||||
...fallbackTask,
|
|
||||||
version,
|
|
||||||
updatedAt: deletedAt,
|
|
||||||
deletedAt
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
...fallbackTask,
|
|
||||||
userId: typeof payload.userId === "string" ? payload.userId : fallbackTask.userId,
|
|
||||||
title:
|
|
||||||
typeof payload.title === "string" && payload.title.trim().length > 0
|
|
||||||
? payload.title
|
|
||||||
: fallbackTask.title,
|
|
||||||
contentJson,
|
|
||||||
contentText,
|
|
||||||
priority: normalizePriority(payload.priority, fallbackTask.priority),
|
|
||||||
status: normalizeStatus(payload.status, fallbackTask.status),
|
|
||||||
ddlAt: normalizeNullableNumber(payload.ddlAt, fallbackTask.ddlAt),
|
|
||||||
version,
|
|
||||||
createdAt: normalizePositiveNumber(payload.createdAt, fallbackTask.createdAt),
|
|
||||||
updatedAt,
|
|
||||||
deletedAt: normalizeNullableNumber(payload.deletedAt, null)
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function getOperationTieBreaker(operation: LocalSyncInboxRecord): number {
|
|
||||||
if (operation.action === "DELETE") {
|
|
||||||
return 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (operation.action === "UPDATE") {
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
function shouldApplyIncomingTask(
|
|
||||||
currentTask: LocalTaskRecord | undefined,
|
|
||||||
incomingTask: LocalTaskRecord,
|
|
||||||
operation: LocalSyncInboxRecord
|
|
||||||
): boolean {
|
|
||||||
if (!currentTask) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (incomingTask.updatedAt > currentTask.updatedAt) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (incomingTask.updatedAt < currentTask.updatedAt) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (incomingTask.version > currentTask.version) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (incomingTask.version < currentTask.version) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return getOperationTieBreaker(operation) >= (currentTask.deletedAt === null ? 1 : 3);
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function applyPendingRemoteOperations(userId: string): Promise<number> {
|
|
||||||
const pendingOperations = await listPendingRemoteOperations(userId);
|
|
||||||
if (pendingOperations.length === 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
const appliedAt = Date.now();
|
|
||||||
|
|
||||||
await localDb.transaction("rw", localDb.tasks, localDb.syncInbox, async () => {
|
|
||||||
for (const operation of pendingOperations) {
|
|
||||||
if (operation.entityType !== "TASK") {
|
|
||||||
await localDb.syncInbox.update(operation.opId, { appliedAt });
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const currentTask = await localDb.tasks.get(operation.entityId);
|
|
||||||
const incomingTask = buildIncomingTaskRecord(operation, currentTask);
|
|
||||||
|
|
||||||
if (shouldApplyIncomingTask(currentTask, incomingTask, operation)) {
|
|
||||||
await localDb.tasks.put(incomingTask);
|
|
||||||
}
|
|
||||||
|
|
||||||
await localDb.syncInbox.update(operation.opId, { appliedAt });
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return pendingOperations.length;
|
|
||||||
}
|
|
||||||
@@ -1,142 +0,0 @@
|
|||||||
import {
|
|
||||||
enqueueRemoteSyncOperations,
|
|
||||||
getLocalSyncState,
|
|
||||||
listPendingSyncOperations,
|
|
||||||
markSyncOperationsFailed,
|
|
||||||
markSyncOperationsSucceeded,
|
|
||||||
saveLocalSyncState
|
|
||||||
} from "@/services/local-sync-repo";
|
|
||||||
import { applyPendingRemoteOperations } from "@/services/sync-merge";
|
|
||||||
import {
|
|
||||||
pullSyncOperations,
|
|
||||||
pushSyncOperations,
|
|
||||||
serializeSyncOperationForRequest
|
|
||||||
} from "@/services/sync-api";
|
|
||||||
import type { LocalOpLogRecord } from "@/services/local-db";
|
|
||||||
|
|
||||||
const PUSH_BATCH_LIMIT = 20;
|
|
||||||
const PUSH_BATCH_MAX_BYTES = 256 * 1024;
|
|
||||||
const PULL_BATCH_LIMIT = 100;
|
|
||||||
const MAX_PULL_PAGES_PER_CYCLE = 5;
|
|
||||||
|
|
||||||
function estimateOperationBytes(operation: LocalOpLogRecord): number {
|
|
||||||
return new TextEncoder().encode(JSON.stringify(serializeSyncOperationForRequest(operation)))
|
|
||||||
.length;
|
|
||||||
}
|
|
||||||
|
|
||||||
function createPushBatch(operations: LocalOpLogRecord[]): LocalOpLogRecord[] {
|
|
||||||
const batch: LocalOpLogRecord[] = [];
|
|
||||||
let batchBytes = 0;
|
|
||||||
|
|
||||||
for (const operation of operations) {
|
|
||||||
const operationBytes = estimateOperationBytes(operation);
|
|
||||||
if (batch.length > 0 && batchBytes + operationBytes > PUSH_BATCH_MAX_BYTES) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
batch.push(operation);
|
|
||||||
batchBytes += operationBytes;
|
|
||||||
}
|
|
||||||
|
|
||||||
return batch;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type SyncCycleResult = {
|
|
||||||
pushedCount: number;
|
|
||||||
pulledCount: number;
|
|
||||||
appliedRemoteCount: number;
|
|
||||||
lastSyncedAt: number;
|
|
||||||
hasFailures: boolean;
|
|
||||||
failureMessage: string | null;
|
|
||||||
};
|
|
||||||
|
|
||||||
export async function runSyncWorkerCycle(userId: string): Promise<SyncCycleResult> {
|
|
||||||
const lastSyncedAt = Date.now();
|
|
||||||
let pushedCount = 0;
|
|
||||||
let pulledCount = 0;
|
|
||||||
let appliedRemoteCount = 0;
|
|
||||||
let hasFailures = false;
|
|
||||||
let failureMessage: string | null = null;
|
|
||||||
|
|
||||||
for (;;) {
|
|
||||||
const pendingCandidates = await listPendingSyncOperations(PUSH_BATCH_LIMIT);
|
|
||||||
if (pendingCandidates.length === 0) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
const pendingOperations = createPushBatch(pendingCandidates);
|
|
||||||
const pushResult = await pushSyncOperations(userId, pendingOperations);
|
|
||||||
const syncedOperationIds = pushResult.results
|
|
||||||
.filter((result) => result.status === "accepted" || result.status === "duplicate")
|
|
||||||
.map((result) => result.opId);
|
|
||||||
const failedOperations = pushResult.results
|
|
||||||
.filter((result) => result.status === "failed")
|
|
||||||
.map((result) => ({
|
|
||||||
opId: result.opId,
|
|
||||||
errorMessage: result.reason ?? "同步失败"
|
|
||||||
}));
|
|
||||||
|
|
||||||
await markSyncOperationsSucceeded(syncedOperationIds, lastSyncedAt);
|
|
||||||
await markSyncOperationsFailed(failedOperations);
|
|
||||||
|
|
||||||
pushedCount += syncedOperationIds.length;
|
|
||||||
|
|
||||||
if (failedOperations.length > 0) {
|
|
||||||
hasFailures = true;
|
|
||||||
failureMessage = failedOperations[0]?.errorMessage ?? "同步失败";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
pendingCandidates.length < PUSH_BATCH_LIMIT ||
|
|
||||||
pendingOperations.length < pendingCandidates.length
|
|
||||||
) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const currentState = await getLocalSyncState(userId);
|
|
||||||
let nextCursor = currentState?.cursor ?? null;
|
|
||||||
|
|
||||||
for (let page = 0; page < MAX_PULL_PAGES_PER_CYCLE; page += 1) {
|
|
||||||
const pullResult = await pullSyncOperations({
|
|
||||||
userId,
|
|
||||||
cursor: nextCursor,
|
|
||||||
limit: PULL_BATCH_LIMIT
|
|
||||||
});
|
|
||||||
|
|
||||||
if (pullResult.items.length > 0) {
|
|
||||||
pulledCount += await enqueueRemoteSyncOperations(userId, pullResult.items);
|
|
||||||
}
|
|
||||||
|
|
||||||
nextCursor = pullResult.nextCursor;
|
|
||||||
await saveLocalSyncState({
|
|
||||||
userId,
|
|
||||||
cursor: nextCursor,
|
|
||||||
lastSyncedAt
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!pullResult.hasMore) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (currentState === undefined && nextCursor === null) {
|
|
||||||
await saveLocalSyncState({
|
|
||||||
userId,
|
|
||||||
cursor: null,
|
|
||||||
lastSyncedAt
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
appliedRemoteCount = await applyPendingRemoteOperations(userId);
|
|
||||||
|
|
||||||
return {
|
|
||||||
pushedCount,
|
|
||||||
pulledCount,
|
|
||||||
appliedRemoteCount,
|
|
||||||
lastSyncedAt,
|
|
||||||
hasFailures,
|
|
||||||
failureMessage
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
const THEME_STORAGE_KEY = "todolist.web.theme";
|
|
||||||
|
|
||||||
export type ThemeMode = "light" | "dark";
|
|
||||||
|
|
||||||
function isThemeMode(value: string | null): value is ThemeMode {
|
|
||||||
return value === "light" || value === "dark";
|
|
||||||
}
|
|
||||||
|
|
||||||
export function loadThemeMode(): ThemeMode {
|
|
||||||
const savedTheme = window.localStorage.getItem(THEME_STORAGE_KEY);
|
|
||||||
if (isThemeMode(savedTheme)) {
|
|
||||||
return savedTheme;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (window.matchMedia("(prefers-color-scheme: dark)").matches) {
|
|
||||||
return "dark";
|
|
||||||
}
|
|
||||||
|
|
||||||
return "light";
|
|
||||||
}
|
|
||||||
|
|
||||||
export function saveThemeMode(mode: ThemeMode): void {
|
|
||||||
window.localStorage.setItem(THEME_STORAGE_KEY, mode);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function applyThemeMode(mode: ThemeMode): void {
|
|
||||||
document.documentElement.classList.toggle("dark", mode === "dark");
|
|
||||||
document.documentElement.style.colorScheme = mode;
|
|
||||||
}
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
|
||||||
export default {
|
|
||||||
darkMode: "class",
|
|
||||||
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
|
||||||
theme: {
|
|
||||||
extend: {
|
|
||||||
colors: {
|
|
||||||
border: "hsl(var(--border) / <alpha-value>)",
|
|
||||||
input: "hsl(var(--input) / <alpha-value>)",
|
|
||||||
ring: "hsl(var(--ring) / <alpha-value>)",
|
|
||||||
background: "hsl(var(--background) / <alpha-value>)",
|
|
||||||
foreground: "hsl(var(--foreground) / <alpha-value>)",
|
|
||||||
primary: {
|
|
||||||
DEFAULT: "hsl(var(--primary) / <alpha-value>)",
|
|
||||||
foreground: "hsl(var(--primary-foreground) / <alpha-value>)"
|
|
||||||
},
|
|
||||||
secondary: {
|
|
||||||
DEFAULT: "hsl(var(--secondary) / <alpha-value>)",
|
|
||||||
foreground: "hsl(var(--secondary-foreground) / <alpha-value>)"
|
|
||||||
},
|
|
||||||
muted: {
|
|
||||||
DEFAULT: "hsl(var(--muted) / <alpha-value>)",
|
|
||||||
foreground: "hsl(var(--muted-foreground) / <alpha-value>)"
|
|
||||||
},
|
|
||||||
accent: {
|
|
||||||
DEFAULT: "hsl(var(--accent) / <alpha-value>)",
|
|
||||||
foreground: "hsl(var(--accent-foreground) / <alpha-value>)"
|
|
||||||
},
|
|
||||||
destructive: {
|
|
||||||
DEFAULT: "hsl(var(--destructive) / <alpha-value>)",
|
|
||||||
foreground: "hsl(var(--destructive-foreground) / <alpha-value>)"
|
|
||||||
},
|
|
||||||
card: "hsl(var(--card) / <alpha-value>)"
|
|
||||||
},
|
|
||||||
borderRadius: {
|
|
||||||
lg: "var(--radius)",
|
|
||||||
md: "calc(var(--radius) - 2px)",
|
|
||||||
sm: "calc(var(--radius) - 4px)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
plugins: []
|
|
||||||
};
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
||||||
"target": "ES2023",
|
|
||||||
"useDefineForClassFields": true,
|
|
||||||
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
||||||
"module": "ESNext",
|
|
||||||
"types": ["vite/client"],
|
|
||||||
"skipLibCheck": true,
|
|
||||||
|
|
||||||
/* Bundler mode */
|
|
||||||
"moduleResolution": "bundler",
|
|
||||||
"baseUrl": ".",
|
|
||||||
"paths": {
|
|
||||||
"@/*": ["./src/*"]
|
|
||||||
},
|
|
||||||
"allowImportingTsExtensions": true,
|
|
||||||
"verbatimModuleSyntax": true,
|
|
||||||
"moduleDetection": "force",
|
|
||||||
"noEmit": true,
|
|
||||||
"jsx": "react-jsx",
|
|
||||||
|
|
||||||
/* Linting */
|
|
||||||
"strict": true,
|
|
||||||
"noUnusedLocals": true,
|
|
||||||
"noUnusedParameters": true,
|
|
||||||
"erasableSyntaxOnly": true,
|
|
||||||
"noFallthroughCasesInSwitch": true,
|
|
||||||
"noUncheckedSideEffectImports": true
|
|
||||||
},
|
|
||||||
"include": ["src"]
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"baseUrl": ".",
|
|
||||||
"paths": {
|
|
||||||
"@/*": ["./src/*"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"files": [],
|
|
||||||
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }]
|
|
||||||
}
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
||||||
"target": "ES2023",
|
|
||||||
"lib": ["ES2023"],
|
|
||||||
"module": "ESNext",
|
|
||||||
"types": ["node"],
|
|
||||||
"skipLibCheck": true,
|
|
||||||
|
|
||||||
/* Bundler mode */
|
|
||||||
"moduleResolution": "bundler",
|
|
||||||
"allowImportingTsExtensions": true,
|
|
||||||
"verbatimModuleSyntax": true,
|
|
||||||
"moduleDetection": "force",
|
|
||||||
"noEmit": true,
|
|
||||||
|
|
||||||
/* Linting */
|
|
||||||
"strict": true,
|
|
||||||
"noUnusedLocals": true,
|
|
||||||
"noUnusedParameters": true,
|
|
||||||
"erasableSyntaxOnly": true,
|
|
||||||
"noFallthroughCasesInSwitch": true,
|
|
||||||
"noUncheckedSideEffectImports": true
|
|
||||||
},
|
|
||||||
"include": ["vite.config.ts"]
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
import path from "node:path";
|
|
||||||
import { defineConfig } from "vite";
|
|
||||||
import react from "@vitejs/plugin-react";
|
|
||||||
|
|
||||||
// https://vite.dev/config/
|
|
||||||
export default defineConfig({
|
|
||||||
plugins: [react()],
|
|
||||||
resolve: {
|
|
||||||
alias: {
|
|
||||||
"@": path.resolve(__dirname, "./src")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user