Compare commits
33 Commits
v1.1.1
...
5f7756199a
| Author | SHA1 | Date | |
|---|---|---|---|
| 5f7756199a | |||
| 6aa108e8d3 | |||
|
|
8b65a1745c | ||
|
|
5607217625 | ||
| 319baea5e8 | |||
|
|
9a8a1826c9 | ||
|
|
c2a0310ee5 | ||
|
|
8ee8feb2bf | ||
|
|
1e090f5c88 | ||
|
|
665ce79e1d | ||
|
|
93110954bb | ||
|
|
8ce5f99a24 | ||
|
|
e27869fb4a | ||
|
|
01c4afd209 | ||
| 2a959fa9cf | |||
|
|
d9f267e257 | ||
|
|
83530d7f1e | ||
|
|
b2c36196b4 | ||
|
|
d2d6c1709c | ||
|
|
a76e61beb0 | ||
|
|
d83ad11241 | ||
|
|
bce7e41adf | ||
| 2b77ea189b | |||
|
|
82bd8051d8 | ||
|
|
4e27d707ec | ||
|
|
32c08d96d4 | ||
|
|
1031630712 | ||
|
|
31c26e9636 | ||
|
|
333bd3f686 | ||
|
|
9201a819be | ||
|
|
a2187adb05 | ||
|
|
4b18c91157 | ||
|
|
2125f1ef9e |
4
.env.example
Normal file
4
.env.example
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# 开发环境配置
|
||||||
|
API_BASE_URL=http://192.168.3.42:8080
|
||||||
|
CLIENT_ID=web
|
||||||
|
CLIENT_SECRET=web
|
||||||
2
.github/copilot-instructions.md
vendored
2
.github/copilot-instructions.md
vendored
@@ -122,7 +122,7 @@ type UserProfile = ExtraResp<typeof getProfile>
|
|||||||
## 环境变量
|
## 环境变量
|
||||||
|
|
||||||
需要配置:
|
需要配置:
|
||||||
- `NEXT_PUBLIC_API_BASE_URL` - 后端 API 地址
|
- `API_BASE_URL` - 后端 API 地址
|
||||||
- `CLIENT_ID`, `CLIENT_SECRET` - OAuth2 设备认证凭据
|
- `CLIENT_ID`, `CLIENT_SECRET` - OAuth2 设备认证凭据
|
||||||
|
|
||||||
## 部署
|
## 部署
|
||||||
|
|||||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -31,7 +31,7 @@ yarn-error.log*
|
|||||||
.pnpm-debug.log*
|
.pnpm-debug.log*
|
||||||
|
|
||||||
# env files (can opt-in for committing if needed)
|
# env files (can opt-in for committing if needed)
|
||||||
.env*
|
.env
|
||||||
|
|
||||||
# vercel
|
# vercel
|
||||||
.vercel
|
.vercel
|
||||||
|
|||||||
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -7,4 +7,7 @@
|
|||||||
"[json]": {
|
"[json]": {
|
||||||
"editor.defaultFormatter": "vscode.json-language-features"
|
"editor.defaultFormatter": "vscode.json-language-features"
|
||||||
},
|
},
|
||||||
|
"[typescriptreact]": {
|
||||||
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
||||||
|
},
|
||||||
}
|
}
|
||||||
@@ -16,6 +16,7 @@ COPY . .
|
|||||||
|
|
||||||
ENV NEXT_TELEMETRY_DISABLED=1
|
ENV NEXT_TELEMETRY_DISABLED=1
|
||||||
|
|
||||||
|
RUN mv .env.example .env
|
||||||
RUN bun run build
|
RUN bun run build
|
||||||
|
|
||||||
# 生产阶段
|
# 生产阶段
|
||||||
@@ -31,6 +32,7 @@ RUN adduser --system --uid 1001 nextjs
|
|||||||
COPY --from=builder /app/public ./public
|
COPY --from=builder /app/public ./public
|
||||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
||||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
||||||
|
RUN rm .env
|
||||||
|
|
||||||
USER nextjs
|
USER nextjs
|
||||||
|
|
||||||
|
|||||||
133
README.md
133
README.md
@@ -6,41 +6,108 @@
|
|||||||
|
|
||||||
购买页固定套餐
|
购买页固定套餐
|
||||||
|
|
||||||
优惠问题
|
|
||||||
|
|
||||||
### 禁止直接依赖 form
|
|
||||||
|
|
||||||
`\[(.*,)?form(,.*)?\]`
|
|
||||||
|
|
||||||
### 次要
|
|
||||||
|
|
||||||
业务定制页面每月需求用量,可选项需要确认是否合理
|
|
||||||
|
|
||||||
页头高度降低
|
|
||||||
|
|
||||||
帮助中心文档优化
|
|
||||||
|
|
||||||
考虑重新组织导航栏
|
|
||||||
- 产品购买
|
|
||||||
- 提取 IP
|
|
||||||
- 业务场景
|
|
||||||
- 帮助中心
|
|
||||||
- 大客户定制
|
|
||||||
|
|
||||||
购买与提取手机端优化,尽量一页展示全部
|
|
||||||
|
|
||||||
全部替换封装时间范围组件,检查结束时间字段手机端适配问题(需要尾部对齐)
|
|
||||||
|
|
||||||
迁移到 tanstack form
|
|
||||||
|
|
||||||
页尾链接完善跳转地址
|
|
||||||
|
|
||||||
树组件优化
|
树组件优化
|
||||||
|
|
||||||
### 架构改进
|
## 目录结构
|
||||||
|
|
||||||
考虑使用 swr 或 react query 来代替直接的服务端 react cache 缓存以及客户端 zustand 缓存,以将服务端请求的数据能够水合到客户端,避免重复请求
|
```
|
||||||
|
├── node_modules/ # 项目依赖包
|
||||||
|
├── public/ # 静态资源(如 favicon、图片等,可直接通过根路径访问)
|
||||||
|
├── src/ # 源代码目录
|
||||||
|
│ ├── actions/ # 服务端操作或 API 逻辑(如 Server Actions)
|
||||||
|
│ ├── app/ # Next.js 13+ App Router 目录,存放页面、布局、路由等
|
||||||
|
| | ├── (api)/ # API 路由目录
|
||||||
|
| | ├── (auth)/ # 认证相关页面
|
||||||
|
| | ├── (home)/ # 首页模块
|
||||||
|
| | ├── admin/ # 管理后台模块
|
||||||
|
| | ├── effects.tsx # 全局副作用/状态管理(如 Redux、SWR 初始化)
|
||||||
|
| | ├── favicon.ico # 网站图标
|
||||||
|
| | ├── globals.css # 全局样式
|
||||||
|
| | └── layout.tsx # 根布局组件(所有页面共享的布局结构)
|
||||||
|
| |
|
||||||
|
│ ├── assets/ # 项目资源文件(如图片、字体、样式等)
|
||||||
|
│ ├── components/ # 可复用的 React 组件
|
||||||
|
│ ├── lib/ # 工具函数、配置、服务等
|
||||||
|
│ ├── mdx-components.tsx # MDX 组件配置
|
||||||
|
│ └── proxy.ts # 代理配置(如 API 代理)
|
||||||
|
├── .dockerignore # Docker 忽略文件
|
||||||
|
├── .env # 环境变量文件
|
||||||
|
├── .gitignore # Git 忽略文件
|
||||||
|
├── .npmrc # npm 配置
|
||||||
|
├── bun.lock # Bun 包管理器锁文件
|
||||||
|
├── components.json # 组件库配置(如 shadcn/ui)
|
||||||
|
├── Dockerfile # Docker 构建配置
|
||||||
|
├── eslint.config.mjs # ESLint 代码检查配置
|
||||||
|
├── next-env.d.ts # Next.js 类型声明
|
||||||
|
├── next.config.ts # Next.js 配置文件
|
||||||
|
├── package.json # 项目依赖和脚本
|
||||||
|
├── postcss.config.mjs # PostCSS 配置
|
||||||
|
├── publish.ps1 # PowerShell 发布脚本
|
||||||
|
├── README.md # 项目说明文档
|
||||||
|
└── tsconfig.json # TypeScript 配置
|
||||||
|
```
|
||||||
|
|
||||||
### 需要确认
|
## 技术栈
|
||||||
|
| 类别 | 场景/库名 | 推荐方案/用途 |
|
||||||
|
| :--- | :--- | :--- |
|
||||||
|
| **状态管理** | 简单跨组件通信 | React Context |
|
||||||
|
| | 复杂全局状态 | Zustand + persist |
|
||||||
|
| | 服务端状态 | TanStack Query |
|
||||||
|
| | 表单状态 | React Hook Form |
|
||||||
|
| | 路由状态 | Next.js 内置 (useSearchParams, useParams) |
|
||||||
|
| **核心框架** | Next.js | 服务框架 (React 全栈框架) |
|
||||||
|
| **UI / 样式体系** | shadcn/ui | UI 组件库 |
|
||||||
|
| | Radix UI | 无样式基础 UI 组件原语 |
|
||||||
|
| | Tailwind CSS | CSS 框架 (原子化 CSS) |
|
||||||
|
| | lucide-react | 图标库 |
|
||||||
|
| **表单与数据验证** | React Hook Form | 表单状态管理及验证 |
|
||||||
|
| | Zod | 数据验证与类型推断 |
|
||||||
|
| **数据管理与通信** | Zustand | 全局状态管理库 |
|
||||||
|
| | TanStack Query | 服务端状态管理 (数据请求、缓存) |
|
||||||
|
| | TanStack Table | 无头 UI 表格库 |
|
||||||
|
| **图表可视化** | Recharts | 图表库 |
|
||||||
|
| **工具库** | date-fns | 日期时间处理库 |
|
||||||
|
| | qrcode | QR 码生成库 |
|
||||||
|
|
||||||
页面内操作是否需要关联到 url 上,以在使用后退功能时返回到上一次操作
|
## 搭建开发环境
|
||||||
|
|
||||||
|
项目基于 bun 运行,bun 是一个 typescript 原生的运行时环境,用于代替 nodejs,可以带来更高的性能提升。
|
||||||
|
|
||||||
|
1. 拉取项目:`git clone https://43.226.58.254:53000/lanhu/web`
|
||||||
|
2. 安装依赖包:`bun install`
|
||||||
|
3. 创建环境变量文件 .env,复制 .env.example 中的内容到 .env,并根据实际情况修改
|
||||||
|
4. 运行项目 `bun run dev`
|
||||||
|
|
||||||
|
## 构建项目 & 版本管理
|
||||||
|
|
||||||
|
1. 在 package.json 文件中修改版本号
|
||||||
|
2. 构建并上传镜像, 终端运行 `./publish.ps1 <版本号>`
|
||||||
|
3. 终端执行成功后在 `https://43.226.58.254:53000/lanhu/web` 发布最新版本
|
||||||
|
|
||||||
|
生产环境的项目部署通过单独的部署脚本进行管理,前端开发上线只需要构建以及发布版本,无需考虑部署问题。
|
||||||
|
|
||||||
|
## 开发规范 & 主要业务逻辑
|
||||||
|
|
||||||
|
原型图:https://lanhuapp.com/link/#/invite?sid=lxgnSyga
|
||||||
|
|
||||||
|
### 快速创建前台新页面
|
||||||
|
|
||||||
|
wrap.tsx :新页面间距复用组件
|
||||||
|
page.tsx:新页面统一布局
|
||||||
|
stores:共享状态组件
|
||||||
|
|
||||||
|
### 数据流与状态管理: 组件间通信方式
|
||||||
|
|
||||||
|
- 通信方式:Props 父传子 / 回调函数 子传父 / Context 跨组件 useContext() / Zustand Store 全局状态管理useStore() / URL 参数 页面间状态共享 useSearchParams()
|
||||||
|
路由与导航: 路由使用的Next.js App Router 架构 Server Actions 实现。
|
||||||
|
|
||||||
|
### 认证与权限控制:登录流程-路由守卫(中间件)
|
||||||
|
|
||||||
|
### 支付流程实现: 支付二维码生成
|
||||||
|
|
||||||
|
### SSE 支付状态监听
|
||||||
|
|
||||||
|
## 注意事项
|
||||||
|
|
||||||
|
- 图片使用 Next.js Image 组件自动优化
|
||||||
|
- 动态导入 (next/dynamic) 实现纯客户端组件
|
||||||
|
|||||||
3
bun.lock
3
bun.lock
@@ -45,6 +45,7 @@
|
|||||||
"sonner": "^2.0.7",
|
"sonner": "^2.0.7",
|
||||||
"tailwind-merge": "^3.4.0",
|
"tailwind-merge": "^3.4.0",
|
||||||
"tailwindcss-animate": "^1.0.7",
|
"tailwindcss-animate": "^1.0.7",
|
||||||
|
"vaul": "^1.1.2",
|
||||||
"zod": "^3.25.76",
|
"zod": "^3.25.76",
|
||||||
"zustand": "^5.0.9",
|
"zustand": "^5.0.9",
|
||||||
},
|
},
|
||||||
@@ -1399,6 +1400,8 @@
|
|||||||
|
|
||||||
"util-deprecate": ["util-deprecate@1.0.2", "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="],
|
"util-deprecate": ["util-deprecate@1.0.2", "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="],
|
||||||
|
|
||||||
|
"vaul": ["vaul@1.1.2", "https://registry.npmmirror.com/vaul/-/vaul-1.1.2.tgz", { "dependencies": { "@radix-ui/react-dialog": "^1.1.1" }, "peerDependencies": { "react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA=="],
|
||||||
|
|
||||||
"vfile": ["vfile@6.0.3", "https://registry.npmmirror.com/vfile/-/vfile-6.0.3.tgz", { "dependencies": { "@types/unist": "^3.0.0", "vfile-message": "^4.0.0" } }, "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q=="],
|
"vfile": ["vfile@6.0.3", "https://registry.npmmirror.com/vfile/-/vfile-6.0.3.tgz", { "dependencies": { "@types/unist": "^3.0.0", "vfile-message": "^4.0.0" } }, "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q=="],
|
||||||
|
|
||||||
"vfile-message": ["vfile-message@4.0.3", "https://registry.npmmirror.com/vfile-message/-/vfile-message-4.0.3.tgz", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw=="],
|
"vfile-message": ["vfile-message@4.0.3", "https://registry.npmmirror.com/vfile-message/-/vfile-message-4.0.3.tgz", { "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0" } }, "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw=="],
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "lanhu-web",
|
"name": "lanhu-web",
|
||||||
"version": "1.1.1",
|
"version": "1.6.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev -H 0.0.0.0 --turbopack",
|
"dev": "next dev -H 0.0.0.0 --turbopack",
|
||||||
@@ -51,6 +51,7 @@
|
|||||||
"sonner": "^2.0.7",
|
"sonner": "^2.0.7",
|
||||||
"tailwind-merge": "^3.4.0",
|
"tailwind-merge": "^3.4.0",
|
||||||
"tailwindcss-animate": "^1.0.7",
|
"tailwindcss-animate": "^1.0.7",
|
||||||
|
"vaul": "^1.1.2",
|
||||||
"zod": "^3.25.76",
|
"zod": "^3.25.76",
|
||||||
"zustand": "^5.0.9"
|
"zustand": "^5.0.9"
|
||||||
},
|
},
|
||||||
|
|||||||
16
publish.ps1
Normal file
16
publish.ps1
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
if (-not $args) {
|
||||||
|
Write-Error "需要指定版本号"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
$confrim = Read-Host "构建版本为 [web:$($args[0])],是否继续?(y/n)"
|
||||||
|
if ($confrim -ne "y") {
|
||||||
|
Write-Host "已取消构建"
|
||||||
|
exit 0
|
||||||
|
}
|
||||||
|
|
||||||
|
docker build -t repo.lanhuip.com:8554/lanhu/web:latest .
|
||||||
|
docker build -t repo.lanhuip.com:8554/lanhu/web:$($args[0]) .
|
||||||
|
|
||||||
|
docker push repo.lanhuip.com:8554/lanhu/web:latest
|
||||||
|
docker push repo.lanhuip.com:8554/lanhu/web:$($args[0])
|
||||||
@@ -2,15 +2,7 @@
|
|||||||
import {cookies} from 'next/headers'
|
import {cookies} from 'next/headers'
|
||||||
import {ApiResponse, UnauthorizedError} from '@/lib/api'
|
import {ApiResponse, UnauthorizedError} from '@/lib/api'
|
||||||
import {User} from '@/lib/models'
|
import {User} from '@/lib/models'
|
||||||
import {callByDevice, callByUser} from '@/actions/base'
|
import {callByDevice, callByUser, TokenResp} from '@/actions/base'
|
||||||
|
|
||||||
type TokenResp = {
|
|
||||||
access_token: string
|
|
||||||
refresh_token: string
|
|
||||||
expires_in: number
|
|
||||||
token_type: string
|
|
||||||
scope?: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export type LoginMode = 'phone_code' | 'password'
|
export type LoginMode = 'phone_code' | 'password'
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,23 @@
|
|||||||
'use server'
|
'use server'
|
||||||
import {API_BASE_URL, ApiResponse, CLIENT_ID, CLIENT_SECRET} from '@/lib/api'
|
import {API_BASE_URL, ApiResponse, CLIENT_ID, CLIENT_SECRET} from '@/lib/api'
|
||||||
|
import {add, isBefore} from 'date-fns'
|
||||||
import {cookies, headers} from 'next/headers'
|
import {cookies, headers} from 'next/headers'
|
||||||
import {cache} from 'react'
|
import {cache} from 'react'
|
||||||
import {redirect} from 'next/navigation'
|
|
||||||
|
export type TokenResp = {
|
||||||
|
access_token: string
|
||||||
|
refresh_token: string
|
||||||
|
expires_in: number
|
||||||
|
token_type: string
|
||||||
|
scope?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getApiUrl() {
|
||||||
|
return {
|
||||||
|
success: true,
|
||||||
|
data: API_BASE_URL,
|
||||||
|
} satisfies ApiResponse<string>
|
||||||
|
}
|
||||||
|
|
||||||
// ======================
|
// ======================
|
||||||
// public
|
// public
|
||||||
@@ -26,6 +41,9 @@ const _callPublic = cache(async <R = undefined>(
|
|||||||
// device
|
// device
|
||||||
// ======================
|
// ======================
|
||||||
|
|
||||||
|
let token: string | null = null
|
||||||
|
let token_expire: Date | null = null
|
||||||
|
|
||||||
async function callByDevice<R = undefined>(
|
async function callByDevice<R = undefined>(
|
||||||
endpoint: string,
|
endpoint: string,
|
||||||
data: unknown,
|
data: unknown,
|
||||||
@@ -37,18 +55,20 @@ const _callByDevice = cache(async <R = undefined>(
|
|||||||
endpoint: string,
|
endpoint: string,
|
||||||
data?: string,
|
data?: string,
|
||||||
): Promise<ApiResponse<R>> => {
|
): Promise<ApiResponse<R>> => {
|
||||||
// 获取设备令牌
|
if (!token || !token_expire || isBefore(token_expire, new Date())) {
|
||||||
if (!CLIENT_ID || !CLIENT_SECRET) {
|
const basic = Buffer.from(`${CLIENT_ID}:${CLIENT_SECRET}`).toString('base64url')
|
||||||
return {
|
const resp = await call<TokenResp>(`${API_BASE_URL}/api/auth/token`, JSON.stringify({
|
||||||
success: false,
|
grant_type: 'client_credentials',
|
||||||
status: 401,
|
}), `Basic ${basic}`)
|
||||||
message: '未配置 CLIENT_ID 或 CLIENT_SECRET',
|
if (!resp.success) {
|
||||||
|
return resp
|
||||||
}
|
}
|
||||||
|
token = resp.data.access_token
|
||||||
|
token_expire = add(new Date(), {seconds: resp.data.expires_in})
|
||||||
}
|
}
|
||||||
const token = Buffer.from(`${CLIENT_ID}:${CLIENT_SECRET}`).toString('base64url')
|
|
||||||
|
|
||||||
// 发起请求
|
// 发起请求
|
||||||
return call(`${API_BASE_URL}${endpoint}`, data, `Basic ${token}`)
|
return call(`${API_BASE_URL}${endpoint}`, data, `Bearer ${token}`)
|
||||||
})
|
})
|
||||||
|
|
||||||
// ======================
|
// ======================
|
||||||
@@ -149,24 +169,6 @@ async function call<R = undefined>(url: string, body: RequestInit['body'], auth?
|
|||||||
throw new Error(`无法解析响应数据,未处理的 Content-Type: ${type}`)
|
throw new Error(`无法解析响应数据,未处理的 Content-Type: ${type}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function postCall<R = undefined>(rawResp: Promise<ApiResponse<R>>) {
|
|
||||||
const header = await headers()
|
|
||||||
const pathname = header.get('x-pathname') || '/'
|
|
||||||
const resp = await rawResp
|
|
||||||
|
|
||||||
// 重定向到登录页
|
|
||||||
const match = [
|
|
||||||
RegExp(`^/admin.*`),
|
|
||||||
].some(item => item.test(pathname))
|
|
||||||
|
|
||||||
if (match && !resp.success && resp.status === 401) {
|
|
||||||
console.log('🚗🚗🚗🚗🚗 非正常重定向 🚗🚗🚗🚗🚗')
|
|
||||||
redirect('/login?force=true')
|
|
||||||
}
|
|
||||||
|
|
||||||
return resp
|
|
||||||
}
|
|
||||||
|
|
||||||
// 导出
|
// 导出
|
||||||
export {
|
export {
|
||||||
callPublic,
|
callPublic,
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ export async function createChannels(params: {
|
|||||||
city?: string
|
city?: string
|
||||||
isp?: number
|
isp?: number
|
||||||
}) {
|
}) {
|
||||||
return callPublic<CreateChannelsResp[]>('/api/channel/create', params)
|
return callByUser<CreateChannelsResp[]>('/api/channel/create', params)
|
||||||
}
|
}
|
||||||
|
|||||||
12
src/actions/product.ts
Normal file
12
src/actions/product.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import {callByUser, callPublic} from './base'
|
||||||
|
import {Product} from '@/lib/models/product'
|
||||||
|
|
||||||
|
export type ProductItem = Product
|
||||||
|
|
||||||
|
export async function listProduct(props: {}) {
|
||||||
|
return callByUser<Product[]>('/api/product/list', props)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function listProductHome(props: {}) {
|
||||||
|
return callPublic<Product[]>('/api/product/list', props)
|
||||||
|
}
|
||||||
@@ -24,6 +24,7 @@ export async function listResourceShort(props: {
|
|||||||
size: number
|
size: number
|
||||||
resource_no?: string
|
resource_no?: string
|
||||||
type?: number
|
type?: number
|
||||||
|
status?: number
|
||||||
create_after?: Date
|
create_after?: Date
|
||||||
create_before?: Date
|
create_before?: Date
|
||||||
expire_after?: Date
|
expire_after?: Date
|
||||||
@@ -37,6 +38,7 @@ export async function listResourceLong(props: {
|
|||||||
size: number
|
size: number
|
||||||
resource_no?: string
|
resource_no?: string
|
||||||
type?: number
|
type?: number
|
||||||
|
status?: number
|
||||||
create_after?: Date
|
create_after?: Date
|
||||||
create_before?: Date
|
create_before?: Date
|
||||||
expire_after?: Date
|
expire_after?: Date
|
||||||
@@ -87,9 +89,17 @@ export async function payClose(props: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function getPrice(props: CreateResourceReq) {
|
export async function getPrice(props: CreateResourceReq) {
|
||||||
return callByDevice<{
|
return callByUser<{
|
||||||
price: string
|
price: string
|
||||||
discounted_price?: string
|
actual?: string
|
||||||
discounted?: number
|
discounted?: string
|
||||||
|
}>('/api/resource/price', props)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getPriceHome(props: CreateResourceReq) {
|
||||||
|
return callByDevice<{
|
||||||
|
price: string
|
||||||
|
actual?: string
|
||||||
|
discounted?: string
|
||||||
}>('/api/resource/price', props)
|
}>('/api/resource/price', props)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,16 +38,16 @@ export async function Identify(props: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function update(props: {
|
export async function update(props: {
|
||||||
username: string
|
username?: string
|
||||||
email: string
|
email?: string
|
||||||
contact_qq: string
|
contact_qq?: string
|
||||||
contact_wechat: string
|
contact_wechat?: string
|
||||||
}) {
|
}) {
|
||||||
return await callByUser('/api/user/update', props)
|
return await callByUser('/api/user/update', props)
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function updatePassword(props: {
|
export async function updatePassword(props: {
|
||||||
phone: string
|
// phone: string
|
||||||
code: string
|
code: string
|
||||||
password: string
|
password: string
|
||||||
}) {
|
}) {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
'use server'
|
'use server'
|
||||||
import {ApiResponse} from '@/lib/api'
|
import {ApiResponse} from '@/lib/api'
|
||||||
import {callByDevice} from '@/actions/base'
|
import {callByDevice, callByUser} from '@/actions/base'
|
||||||
import {getCap} from '@/lib/cap'
|
import {getCap} from '@/lib/cap'
|
||||||
|
|
||||||
export async function sendSMS(props: {
|
export async function sendSMS(props: {
|
||||||
@@ -28,7 +28,7 @@ export async function sendSMS(props: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 请求发送短信
|
// 请求发送短信
|
||||||
return await callByDevice('/api/auth/verify/sms', {
|
return await callByDevice('/api/verify/sms', {
|
||||||
phone: props.phone,
|
phone: props.phone,
|
||||||
purpose: 0,
|
purpose: 0,
|
||||||
})
|
})
|
||||||
@@ -38,3 +38,35 @@ export async function sendSMS(props: {
|
|||||||
throw new Error('验证码验证失败', {cause: error})
|
throw new Error('验证码验证失败', {cause: error})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function updateSendSMS(props: {
|
||||||
|
captcha: string
|
||||||
|
}): Promise<ApiResponse> {
|
||||||
|
try {
|
||||||
|
// 人机验证
|
||||||
|
if (!props.captcha?.length) {
|
||||||
|
return {
|
||||||
|
success: false,
|
||||||
|
status: 400,
|
||||||
|
message: '请输入验证码',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const cap = await getCap()
|
||||||
|
const valid = await cap.validateToken(props.captcha)
|
||||||
|
if (!valid) {
|
||||||
|
return {
|
||||||
|
success: false,
|
||||||
|
status: 400,
|
||||||
|
message: '验证码错误或已过期',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 请求发送短信
|
||||||
|
return await callByUser('/api/verify/sms/password', {})
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
console.error('验证码验证失败:', error)
|
||||||
|
throw new Error('验证码验证失败', {cause: error})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -34,20 +34,12 @@ export type LoginSchema = zod.infer<typeof smsSchema | typeof pwdSchema>
|
|||||||
export default function LoginCard() {
|
export default function LoginCard() {
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const refreshProfile = useProfileStore(store => store.refreshProfile)
|
const refreshProfile = useProfileStore(store => store.refreshProfile)
|
||||||
const [mode, setMode] = useState<LoginMode>('phone_code')
|
const [mode, setMode] = useState<LoginMode>('password')
|
||||||
const [submitting, setSubmitting] = useState(false)
|
const [submitting, setSubmitting] = useState(false)
|
||||||
|
|
||||||
const updateLoginMode = (mode: LoginMode) => {
|
const updateLoginMode = (mode: LoginMode) => {
|
||||||
sessionStorage.setItem('login_mode', mode)
|
sessionStorage.setItem('login_mode', mode)
|
||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const mode = sessionStorage.getItem('login_mode')
|
|
||||||
if (mode) {
|
|
||||||
setMode(mode as LoginMode)
|
|
||||||
}
|
|
||||||
}, [])
|
|
||||||
|
|
||||||
const form = useForm<LoginSchema>({
|
const form = useForm<LoginSchema>({
|
||||||
resolver: zodResolver(mode === 'phone_code' ? smsSchema : pwdSchema),
|
resolver: zodResolver(mode === 'phone_code' ? smsSchema : pwdSchema),
|
||||||
defaultValues: {
|
defaultValues: {
|
||||||
@@ -55,7 +47,16 @@ export default function LoginCard() {
|
|||||||
password: '',
|
password: '',
|
||||||
remember: false,
|
remember: false,
|
||||||
},
|
},
|
||||||
|
mode: 'onChange',
|
||||||
})
|
})
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const savedMode = sessionStorage.getItem('login_mode') as LoginMode
|
||||||
|
if (savedMode && savedMode === 'phone_code') {
|
||||||
|
setMode(savedMode)
|
||||||
|
}
|
||||||
|
}, [])
|
||||||
|
|
||||||
const handler = form.handleSubmit(async (data) => {
|
const handler = form.handleSubmit(async (data) => {
|
||||||
setSubmitting(true)
|
setSubmitting(true)
|
||||||
try {
|
try {
|
||||||
@@ -93,13 +94,14 @@ export default function LoginCard() {
|
|||||||
<Tabs
|
<Tabs
|
||||||
value={mode}
|
value={mode}
|
||||||
onValueChange={(val) => {
|
onValueChange={(val) => {
|
||||||
setMode(val as typeof mode)
|
setMode(val as LoginMode)
|
||||||
form.reset({username: form.getValues('username'), password: '', remember: false})
|
form.reset({username: '', password: '', remember: false})
|
||||||
|
form.clearErrors()
|
||||||
}}
|
}}
|
||||||
className="mb-6">
|
className="mb-6">
|
||||||
<TabsList className="w-full p-0 bg-white">
|
<TabsList className="w-full p-0 bg-white">
|
||||||
<Tab value="password">密码登录</Tab>
|
<Tab value="password">密码登录</Tab>
|
||||||
<Tab value="phone_code">验证码登录</Tab>
|
<Tab value="phone_code">验证码登录/注册</Tab>
|
||||||
</TabsList>
|
</TabsList>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
<Form<LoginSchema> className="space-y-6" form={form} handler={handler}>
|
<Form<LoginSchema> className="space-y-6" form={form} handler={handler}>
|
||||||
@@ -124,6 +126,7 @@ export default function LoginCard() {
|
|||||||
className="h-10"
|
className="h-10"
|
||||||
placeholder="请输入验证码"
|
placeholder="请输入验证码"
|
||||||
autoComplete="one-time-code"
|
autoComplete="one-time-code"
|
||||||
|
disabled={submitting}
|
||||||
/>
|
/>
|
||||||
<SendMsgByUsername/>
|
<SendMsgByUsername/>
|
||||||
</div>
|
</div>
|
||||||
@@ -137,11 +140,12 @@ export default function LoginCard() {
|
|||||||
placeholder="至少6位密码,需包含字母和数字"
|
placeholder="至少6位密码,需包含字母和数字"
|
||||||
autoComplete="current-password"
|
autoComplete="current-password"
|
||||||
minLength={6}
|
minLength={6}
|
||||||
|
disabled={submitting}
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
tabIndex={-1}
|
tabIndex={-1}
|
||||||
className="absolute right-2 top-1/2 -translate-y-1/2 text-gray-400 hover:text-gray-600"
|
className="absolute right-2 top-1/2 -translate-y-1/2 text-gray-400 hover:text-gray-600 cursor-pointer"
|
||||||
onClick={() => setShowPwd(v => !v)}
|
onClick={() => setShowPwd(v => !v)}
|
||||||
aria-label={showPwd ? '隐藏密码' : '显示密码'}
|
aria-label={showPwd ? '隐藏密码' : '显示密码'}
|
||||||
>
|
>
|
||||||
@@ -162,6 +166,7 @@ export default function LoginCard() {
|
|||||||
id={id}
|
id={id}
|
||||||
checked={field.value}
|
checked={field.value}
|
||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
|
disabled={submitting}
|
||||||
/>
|
/>
|
||||||
<div className="space-y-1 leading-none">
|
<div className="space-y-1 leading-none">
|
||||||
<Label>保持登录</Label>
|
<Label>保持登录</Label>
|
||||||
|
|||||||
@@ -11,21 +11,21 @@ export function ArticlesSection() {
|
|||||||
icon={<BookOpen className="w-12 h-12"/>}
|
icon={<BookOpen className="w-12 h-12"/>}
|
||||||
title="浏览器设置代理教程"
|
title="浏览器设置代理教程"
|
||||||
description="快速上手,5分钟学会在浏览器中配置代理服务器"
|
description="快速上手,5分钟学会在浏览器中配置代理服务器"
|
||||||
href="/docs/client/browser-proxy"
|
href="/docs/browser-proxy"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<ArticleCard
|
<ArticleCard
|
||||||
icon={<Smartphone className="w-12 h-12"/>}
|
icon={<Smartphone className="w-12 h-12"/>}
|
||||||
title="Windows10 代理配置"
|
title="Windows10 代理配置"
|
||||||
description="详细图文教程,帮助你在 Windows 系统中设置代理"
|
description="详细图文教程,帮助你在 Windows 系统中设置代理"
|
||||||
href="/docs/client/windows10-proxy"
|
href="/docs/windows10-proxy"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<ArticleCard
|
<ArticleCard
|
||||||
icon={<HelpCircle className="w-12 h-12"/>}
|
icon={<HelpCircle className="w-12 h-12"/>}
|
||||||
title="常见问题总览"
|
title="常见问题总览"
|
||||||
description="解决使用过程中遇到的各类问题,快速找到答案"
|
description="解决使用过程中遇到的各类问题,快速找到答案"
|
||||||
href="/docs/faqs/faq-general"
|
href="/docs/faq-general"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</PageSection>
|
</PageSection>
|
||||||
|
|||||||
@@ -28,8 +28,8 @@ export function HeroSection() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<FreeTrial className={[
|
<FreeTrial className={[
|
||||||
`mt-32 max-md:mt-20 w-96 max-md:w-full h-16 md:h-24 rounded-lg shadow-lg`,
|
`mt-32 max-md:mt-20 w-96 max-md:w-full h-16 md:h-24 rounded-lg shadow-lg cursor-pointer`,
|
||||||
`bg-linear-to-r from-blue-500 to-cyan-400 text-white text-xl lg:text-4xl`,
|
`bg-linear-to-r from-blue-500 to-cyan-400 text-white text-xl lg:text-4xl cursor-pointer`,
|
||||||
].join(' ')}/>
|
].join(' ')}/>
|
||||||
</Wrap>
|
</Wrap>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ export default function HelpMenu() {
|
|||||||
icon={h01}
|
icon={h01}
|
||||||
title="提取 IP"
|
title="提取 IP"
|
||||||
items={[
|
items={[
|
||||||
{lead: '短效 IP 提取', href: '/collect?type=short'},
|
{lead: '短效/长效 IP 提取', href: '/collect?type=short'},
|
||||||
{lead: '长效 IP 提取', href: '/collect?type=long'},
|
// {lead: '长效 IP 提取', href: '/collect?type=long'},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<Column
|
<Column
|
||||||
|
|||||||
@@ -1,31 +1,313 @@
|
|||||||
import ProductMenu from './menu-product'
|
'use client'
|
||||||
import HelpMenu from './menu-help'
|
|
||||||
import SolutionMenu from './menu-solution'
|
import {useContext, useEffect, useState} from 'react'
|
||||||
|
import {useRouter} from 'next/navigation'
|
||||||
|
import {X} from 'lucide-react'
|
||||||
|
import {HeaderContext} from './common'
|
||||||
|
import Image, {StaticImageData} from 'next/image'
|
||||||
|
import prod from '@/assets/header/product/prod.svg'
|
||||||
|
import custom from '@/assets/header/product/custom.svg'
|
||||||
|
import s01 from '@/assets/header/solution/01.svg'
|
||||||
|
import s02 from '@/assets/header/solution/02.svg'
|
||||||
|
import s03 from '@/assets/header/solution/03.svg'
|
||||||
|
import s04 from '@/assets/header/solution/04.svg'
|
||||||
|
import s05 from '@/assets/header/solution/05.svg'
|
||||||
|
import s06 from '@/assets/header/solution/06.svg'
|
||||||
|
import s07 from '@/assets/header/solution/07.svg'
|
||||||
|
import s08 from '@/assets/header/solution/08.svg'
|
||||||
|
import h01 from '@/assets/header/help/01.svg'
|
||||||
|
import h02 from '@/assets/header/help/02.svg'
|
||||||
|
import h03 from '@/assets/header/help/03.svg'
|
||||||
|
import {merge} from '@/lib/utils'
|
||||||
|
import Link from 'next/link'
|
||||||
|
import logo from '@/assets/logo.webp'
|
||||||
|
import {Product} from '@/lib/models/product'
|
||||||
|
import {listProductHome} from '@/actions/product'
|
||||||
|
|
||||||
export type MobileMenuProps = {}
|
export type MobileMenuProps = {}
|
||||||
|
|
||||||
export default function MobileMenu(props: MobileMenuProps) {
|
export default function MobileMenu(props: MobileMenuProps) {
|
||||||
|
const ctx = useContext(HeaderContext)
|
||||||
|
const router = useRouter()
|
||||||
|
const [productTab, setProductTab] = useState<'domestic' | 'oversea'>('domestic')
|
||||||
|
|
||||||
|
if (!ctx) {
|
||||||
|
throw new Error(`HeaderContext not found`)
|
||||||
|
}
|
||||||
|
|
||||||
|
const navigate = (href: string) => {
|
||||||
|
ctx.setMenu(false)
|
||||||
|
router.push(href)
|
||||||
|
}
|
||||||
|
const [productList, setProductList] = useState<Product[]>([])
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchProducts = async () => {
|
||||||
|
const res = await listProductHome({})
|
||||||
|
if (res.success) {
|
||||||
|
setProductList(res.data)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fetchProducts()
|
||||||
|
}, [])
|
||||||
|
const shortProduct = productList.find(p => p.name?.includes('短效') || p.code === 'short')
|
||||||
|
const longProduct = productList.find(p => p.name?.includes('长效') || p.code === 'long')
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-8">
|
<div className="h-full flex flex-col bg-white">
|
||||||
<div className="flex flex-col gap-4">
|
<div className="flex items-center justify-between px-4 h-16 border-b border-gray-100">
|
||||||
<ProductMenu/>
|
{/* logo */}
|
||||||
|
<Link href="/" className="flex items-center">
|
||||||
|
<Image src={logo} alt="logo" height={40} className="translate-y-0.5"/>
|
||||||
|
</Link>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="rounded-md p-2 text-gray-400 hover:text-gray-600 hover:bg-gray-50 transition-colors"
|
||||||
|
onClick={() => ctx.setMenu(false)}
|
||||||
|
aria-label="关闭菜单"
|
||||||
|
>
|
||||||
|
<X className="h-5 w-5"/>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-4">
|
|
||||||
<MenuTitle title="帮助中心"/>
|
<div className="flex-1 overflow-y-auto px-4 py-6 space-y-8">
|
||||||
<HelpMenu/>
|
<div className="space-y-3">
|
||||||
</div>
|
<h3 className="text-sm font-semibold text-gray-500 tracking-wide">
|
||||||
<div className="flex flex-col gap-4">
|
产品订购
|
||||||
<MenuTitle title="业务场景"/>
|
</h3>
|
||||||
<SolutionMenu/>
|
<div className="flex rounded-lg bg-gray-100">
|
||||||
|
<button
|
||||||
|
className={merge(
|
||||||
|
'flex-1 py-2.5 text-sm font-medium rounded-md transition-all',
|
||||||
|
productTab === 'domestic'
|
||||||
|
? 'bg-white text-blue-600 shadow-sm'
|
||||||
|
: 'text-gray-600 hover:text-gray-900',
|
||||||
|
)}
|
||||||
|
onClick={() => setProductTab('domestic')}
|
||||||
|
>
|
||||||
|
国内代理
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
className={merge(
|
||||||
|
'flex-1 py-2.5 text-sm font-medium rounded-md transition-all',
|
||||||
|
productTab === 'oversea'
|
||||||
|
? 'bg-white text-blue-600 shadow-sm'
|
||||||
|
: 'text-gray-600 hover:text-gray-900',
|
||||||
|
)}
|
||||||
|
onClick={() => setProductTab('oversea')}
|
||||||
|
>
|
||||||
|
海外代理
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{productTab === 'domestic' && (
|
||||||
|
<div className="space-y-2">
|
||||||
|
{shortProduct && (
|
||||||
|
<ProductItem
|
||||||
|
icon={prod}
|
||||||
|
label="短效动态IP"
|
||||||
|
badge="最低4.5折"
|
||||||
|
href={`/product?type=${shortProduct.code}`}
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{longProduct && (
|
||||||
|
<ProductItem
|
||||||
|
icon={prod}
|
||||||
|
label="长效静态IP"
|
||||||
|
badge="最低4.5折"
|
||||||
|
href={`/product?type=${longProduct.code}`}
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
<ProductItem
|
||||||
|
icon={custom}
|
||||||
|
label="优质/企业/精选IP"
|
||||||
|
badge="专属定制"
|
||||||
|
href="/custom"
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{productTab === 'oversea' && (
|
||||||
|
<div className="mt-4 p-4 bg-blue-50 rounded-lg">
|
||||||
|
<p className="text-sm text-blue-600 text-center">
|
||||||
|
更多海外节点即将上线,敬请期待~
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<MenuSection title="业务场景">
|
||||||
|
<div className="grid grid-cols-2 gap-3">
|
||||||
|
<SolutionItem
|
||||||
|
icon={s01}
|
||||||
|
label="数据采集"
|
||||||
|
href="/data-capture"
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
<SolutionItem
|
||||||
|
icon={s02}
|
||||||
|
label="电商运营"
|
||||||
|
href="/e-commerce"
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
<SolutionItem
|
||||||
|
icon={s03}
|
||||||
|
label="市场调研"
|
||||||
|
href="/market-research"
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
<SolutionItem
|
||||||
|
icon={s04}
|
||||||
|
label="SEO优化"
|
||||||
|
href="/seo-optimization"
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
<SolutionItem
|
||||||
|
icon={s05}
|
||||||
|
label="社交媒体"
|
||||||
|
href="/social-media"
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
<SolutionItem
|
||||||
|
icon={s06}
|
||||||
|
label="广告投放"
|
||||||
|
href="/advertising"
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
<SolutionItem
|
||||||
|
icon={s07}
|
||||||
|
label="账号管理"
|
||||||
|
href="/account-management"
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
<SolutionItem
|
||||||
|
icon={s08}
|
||||||
|
label="网络测试"
|
||||||
|
href="/network-testing"
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</MenuSection>
|
||||||
|
|
||||||
|
<MenuSection title="帮助中心">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<HelpItem
|
||||||
|
icon={h01}
|
||||||
|
label="短效IP提取"
|
||||||
|
onClick={() => navigate('/collect?type=short')}
|
||||||
|
/>
|
||||||
|
<HelpItem
|
||||||
|
icon={h02}
|
||||||
|
label="操作指南"
|
||||||
|
onClick={() => navigate('/docs/profile-settings')}
|
||||||
|
/>
|
||||||
|
<HelpItem
|
||||||
|
icon={h03}
|
||||||
|
label="平台教程"
|
||||||
|
onClick={() => navigate('/docs/ios-proxy')}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</MenuSection>
|
||||||
|
|
||||||
|
<div className="space-y-2 pt-2">
|
||||||
|
<OtherLink
|
||||||
|
label="业务定制"
|
||||||
|
href="/custom"
|
||||||
|
onNavigate={navigate}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
function MenuTitle(props: {title: string}) {
|
function MenuSection(props: {title: string, children: React.ReactNode}) {
|
||||||
return (
|
return (
|
||||||
<h3 className="text-xl text-weak px-4">
|
<div className="space-y-3">
|
||||||
{props.title}
|
<h3 className="text-sm font-semibold text-gray-500 tracking-wide">
|
||||||
</h3>
|
{props.title}
|
||||||
|
</h3>
|
||||||
|
{props.children}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function ProductItem(props: {
|
||||||
|
icon: StaticImageData
|
||||||
|
label: string
|
||||||
|
badge?: string
|
||||||
|
href: string
|
||||||
|
onNavigate: (href: string) => void
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="w-full flex items-center gap-3 rounded-lg border border-gray-100 bg-white px-4 py-3 text-left transition-all hover:border-blue-200 hover:shadow-sm"
|
||||||
|
onClick={() => props.onNavigate(props.href)}
|
||||||
|
>
|
||||||
|
<div className="shrink-0 w-8 h-8 bg-linear-to-br from-blue-50 to-cyan-50 rounded-lg flex items-center justify-center">
|
||||||
|
<Image src={props.icon} alt="" width={20} height={20} className="opacity-80"/>
|
||||||
|
</div>
|
||||||
|
<span className="flex-1 font-medium text-sm text-gray-900">{props.label}</span>
|
||||||
|
{props.badge && (
|
||||||
|
<span className="text-xs text-orange-600 bg-orange-50 px-2 py-1 rounded-full">
|
||||||
|
{props.badge}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function SolutionItem(props: {
|
||||||
|
icon: StaticImageData
|
||||||
|
label: string
|
||||||
|
href: string
|
||||||
|
onNavigate: (href: string) => void
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="flex flex-col items-center gap-2 p-3 rounded-lg border border-gray-100 hover:border-blue-200 hover:bg-blue-50/50 transition-all"
|
||||||
|
onClick={() => props.onNavigate(props.href)}
|
||||||
|
>
|
||||||
|
<div className="w-10 h-10 bg-linear-to-br from-blue-50 to-cyan-50 rounded-full flex items-center justify-center">
|
||||||
|
<Image src={props.icon} alt="" width={20} height={20} className="opacity-80"/>
|
||||||
|
</div>
|
||||||
|
<span className="text-xs font-medium text-gray-700">{props.label}</span>
|
||||||
|
</button>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function HelpItem(props: {
|
||||||
|
icon: StaticImageData
|
||||||
|
label: string
|
||||||
|
onClick: () => void
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="w-full flex items-center gap-3 px-3 py-2.5 rounded-lg hover:bg-gray-50 transition-colors"
|
||||||
|
onClick={props.onClick}
|
||||||
|
>
|
||||||
|
<Image src={props.icon} alt="" width={20} height={20} className="opacity-70"/>
|
||||||
|
<span className="text-sm text-gray-700">{props.label}</span>
|
||||||
|
</button>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function OtherLink(props: {
|
||||||
|
label: string
|
||||||
|
href: string
|
||||||
|
onNavigate: (href: string) => void
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="w-full flex items-center px-3 py-2.5 text-sm text-gray-700 rounded-lg hover:bg-gray-50 transition-colors"
|
||||||
|
onClick={() => props.onNavigate(props.href)}
|
||||||
|
>
|
||||||
|
{props.label}
|
||||||
|
</button>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,17 @@
|
|||||||
'use client'
|
'use client'
|
||||||
import {ReactNode, useContext, useState} from 'react'
|
import {ReactNode, useContext, useEffect, useState} from 'react'
|
||||||
import Wrap from '@/components/wrap'
|
import Wrap from '@/components/wrap'
|
||||||
|
import Image, {StaticImageData} from 'next/image'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import {merge} from '@/lib/utils'
|
import {merge} from '@/lib/utils'
|
||||||
import prod from '@/assets/header/product/prod.svg'
|
import prod from '@/assets/header/product/prod.svg'
|
||||||
import custom from '@/assets/header/product/custom.svg'
|
import custom from '@/assets/header/product/custom.svg'
|
||||||
import {useRouter} from 'next/navigation'
|
import {useRouter} from 'next/navigation'
|
||||||
import {FragmentTitle, HeaderContext} from './common'
|
import {HeaderContext} from './common'
|
||||||
|
import {Product} from '@/lib/models/product'
|
||||||
|
import {listProductHome} from '@/actions/product'
|
||||||
|
|
||||||
|
export type ProductItem = Product
|
||||||
type TabType = 'domestic' | 'oversea'
|
type TabType = 'domestic' | 'oversea'
|
||||||
|
|
||||||
export default function ProductMenu() {
|
export default function ProductMenu() {
|
||||||
@@ -52,33 +56,51 @@ export function Tab(props: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function Domestic(props: {}) {
|
export function Domestic(props: {}) {
|
||||||
|
const [productList, setProductList] = useState<Product[]>([])
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchProducts = async () => {
|
||||||
|
const res = await listProductHome({})
|
||||||
|
if (res.success) {
|
||||||
|
setProductList(res.data)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fetchProducts()
|
||||||
|
}, [])
|
||||||
|
const shortProduct = productList.find(p => p.name?.includes('短效') || p.code === 'short')
|
||||||
|
const longProduct = productList.find(p => p.name?.includes('长效') || p.code === 'long')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section role="tabpanel" className="flex-auto flex flex-col lg:flex-row justify-evenly gap-3 lg:gap-0">
|
<section role="tabpanel" className="flex-auto">
|
||||||
<div className="w-full lg:w-64 flex flex-col">
|
<div className="grid grid-cols-1 lg:grid-cols-2 gap-3">
|
||||||
<FragmentTitle img={prod} text="短效 IP"/>
|
<div className="grid grid-cols-1 gap-3">
|
||||||
<DomesticLink
|
{shortProduct && (
|
||||||
label="短效动态 IP"
|
<ProductCard
|
||||||
desc="全国 300+ 城市级定位节点,IP 池资源充足,自动高频切换。适用于数据采集、市场调研、SEO 优化等高并发场景。稳定可靠,响应迅速,助力业务高效运转。"
|
icon={prod}
|
||||||
href="/product?type=short"
|
label="短效动态 IP"
|
||||||
discount={45}
|
discount="最低4.5折"
|
||||||
/>
|
desc="全国 300+ 城市级定位节点,IP 池资源充足,自动高频切换。适用于数据采集、市场调研、SEO 优化等高并发场景。稳定可靠,响应迅速,助力业务高效运转。"
|
||||||
</div>
|
href={`/product?type=${shortProduct.code}`}
|
||||||
<div className="w-full lg:w-64 flex flex-col">
|
/>
|
||||||
<FragmentTitle img={prod} text="长效 IP"/>
|
)}
|
||||||
<DomesticLink
|
{longProduct && (
|
||||||
label="长效动态 IP"
|
<ProductCard
|
||||||
desc="IP 存活时长可达数小时至数天,连接稳定不掉线。适用于账号养号、社交运营、电商管理等需要持续在线的场景。优质线路保障,为您的长期业务保驾护航。"
|
icon={prod}
|
||||||
href="/product?type=long"
|
label="长效动态 IP"
|
||||||
discount={45}
|
discount="最低4.5折"
|
||||||
/>
|
desc="IP 存活时长可达数小时至数天,连接稳定不掉线。适用于账号养号、社交运营、电商管理等需要持续在线的场景。优质线路保障,为您的长期业务保驾护航。"
|
||||||
</div>
|
href={`/product?type=${longProduct.code}`}
|
||||||
<div className="w-full lg:w-64 flex flex-col">
|
/>
|
||||||
<FragmentTitle img={custom} text="业务定制"/>
|
)}
|
||||||
<DomesticLink
|
</div>
|
||||||
label="优质/企业/精选IP"
|
<div className="flex flex-col gap-3">
|
||||||
desc="超 1000 家企业共同信赖之选!大客户经理全程 1 对 1 沟通,随时为您排忧解难,提供 24 小时不间断支持"
|
<ProductCard
|
||||||
href="/custom"
|
icon={custom}
|
||||||
/>
|
label="业务定制"
|
||||||
|
discount="1V1 专属服务"
|
||||||
|
desc="超 1000 家企业共同信赖之选!大客户经理全程 1 对 1 沟通,随时为您排忧解难,提供 24 小时不间断支持"
|
||||||
|
href="/custom"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
)
|
)
|
||||||
@@ -92,11 +114,12 @@ export function Oversea(props: {}) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function DomesticLink(props: {
|
export function ProductCard(props: {
|
||||||
|
icon: StaticImageData
|
||||||
label: string
|
label: string
|
||||||
|
discount: string
|
||||||
desc: string
|
desc: string
|
||||||
href: string
|
href: string
|
||||||
discount?: number
|
|
||||||
}) {
|
}) {
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const ctx = useContext(HeaderContext)
|
const ctx = useContext(HeaderContext)
|
||||||
@@ -116,18 +139,24 @@ export function DomesticLink(props: {
|
|||||||
`transition-colors duration-150 ease-in-out`,
|
`transition-colors duration-150 ease-in-out`,
|
||||||
`p-4 rounded-lg flex flex-col gap-1 hover:bg-blue-50`,
|
`p-4 rounded-lg flex flex-col gap-1 hover:bg-blue-50`,
|
||||||
)}
|
)}
|
||||||
onClick={onClick}>
|
onClick={onClick}
|
||||||
<p className="flex gap-2">
|
>
|
||||||
<span>{props.label}</span>
|
<div className="flex items-start gap-3">
|
||||||
{props.discount && (
|
<div className="flex-none">
|
||||||
<span className="text-orange-500 text-xs text-light px-2 py-1 bg-orange-50 rounded-full">
|
<Image src={props.icon} alt="" width={30} height={30}/>
|
||||||
折扣 {props.discount}%
|
</div>
|
||||||
</span>
|
<div className="flex-1">
|
||||||
)}
|
<div className="flex items-center justify-between gap-3">
|
||||||
</p>
|
<span className="font-bold">{props.label}</span>
|
||||||
<p className="text-gray-400 text-sm">
|
<span className="text-xs font-medium text-orange-600 bg-orange-50 px-2 py-1 rounded-full">
|
||||||
{props.desc}
|
{props.discount}
|
||||||
</p>
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="mt-2 text-sm text-gray-400 space-y-1">
|
||||||
|
{props.desc}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ export default function CollectPage(props: CollectPageProps) {
|
|||||||
// </Wrap>
|
// </Wrap>
|
||||||
// </main>
|
// </main>
|
||||||
<HomePage path={[
|
<HomePage path={[
|
||||||
{label: '短效IP 提取', href: '/collect'},
|
{label: '短效/长效IP 提取', href: '/collect'},
|
||||||
]}>
|
]}>
|
||||||
<Wrap>
|
<Wrap>
|
||||||
<Extract/>
|
<Extract/>
|
||||||
|
|||||||
@@ -2,15 +2,15 @@ import Wrap from '@/components/wrap'
|
|||||||
import {Children} from '@/lib/utils'
|
import {Children} from '@/lib/utils'
|
||||||
import Sidebar from './sidebar'
|
import Sidebar from './sidebar'
|
||||||
import HomePage from '@/components/home/page'
|
import HomePage from '@/components/home/page'
|
||||||
|
import SidebarDrawer from './sidebar-drawer'
|
||||||
|
|
||||||
export default function DocsLayout(props: Children) {
|
export default function DocsLayout(props: Children) {
|
||||||
return (
|
return (
|
||||||
<HomePage path={[
|
<HomePage path={[{label: '帮助中心', href: '/docs'}]}>
|
||||||
{label: '帮助中心', href: '/docs'},
|
<Wrap className="flex gap-3 flex-col md:flex-row">
|
||||||
]}>
|
<SidebarDrawer/>
|
||||||
<Wrap className="flex gap-3">
|
<Sidebar className="hidden md:block w-68"/>
|
||||||
<Sidebar/>
|
<div className="flex-1 bg-white rounded-lg p-4 md:p-6 min-h-[420px]">
|
||||||
<div className="flex-1 bg-white rounded-lg p-6 min-h-[420px]">
|
|
||||||
{props.children}
|
{props.children}
|
||||||
</div>
|
</div>
|
||||||
</Wrap>
|
</Wrap>
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
export default function DocsIndexPage() {
|
export default function DocsIndexPage() {
|
||||||
return (
|
return (
|
||||||
<div></div>
|
<div className="text-center text-slate-500 py-12">
|
||||||
|
<p className="text-lg">欢迎来到帮助中心</p>
|
||||||
|
<p className="text-sm mt-2">请从左侧目录选择需要查看的文档</p>
|
||||||
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
37
src/app/(home)/docs/sidebar-drawer.tsx
Normal file
37
src/app/(home)/docs/sidebar-drawer.tsx
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
'use client'
|
||||||
|
import {useState} from 'react'
|
||||||
|
import {Menu} from 'lucide-react'
|
||||||
|
import {
|
||||||
|
Drawer,
|
||||||
|
DrawerContent,
|
||||||
|
DrawerTrigger,
|
||||||
|
} from '@/components/ui/drawer'
|
||||||
|
import Sidebar from './sidebar'
|
||||||
|
|
||||||
|
export default function SidebarDrawer() {
|
||||||
|
const [open, setOpen] = useState(false)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="md:hidden flex items-center justify-between bg-white rounded-lg p-3">
|
||||||
|
<span className="font-medium text-slate-900">帮助中心</span>
|
||||||
|
<Drawer open={open} onOpenChange={setOpen}>
|
||||||
|
<DrawerTrigger asChild>
|
||||||
|
<button className="flex items-center gap-2 text-slate-600 hover:text-slate-900 p-1 cursor-pointer">
|
||||||
|
<Menu size={20}/>
|
||||||
|
<span className="text-sm">目录</span>
|
||||||
|
</button>
|
||||||
|
</DrawerTrigger>
|
||||||
|
<DrawerContent>
|
||||||
|
<div className="mx-auto w-full max-w-sm">
|
||||||
|
<div className="px-4 py-3 border-b">
|
||||||
|
<h3 className="text-lg font-semibold text-slate-900">帮助中心</h3>
|
||||||
|
</div>
|
||||||
|
<div className="px-2 py-2 max-h-[70vh] overflow-y-auto">
|
||||||
|
<Sidebar onClose={() => setOpen(false)}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</DrawerContent>
|
||||||
|
</Drawer>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -3,10 +3,7 @@ import {useState, useMemo, useCallback} from 'react'
|
|||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import {usePathname} from 'next/navigation'
|
import {usePathname} from 'next/navigation'
|
||||||
import {ChevronRight} from 'lucide-react'
|
import {ChevronRight} from 'lucide-react'
|
||||||
|
import {merge} from '@/lib/utils'
|
||||||
type Props = {
|
|
||||||
collapsed?: boolean
|
|
||||||
}
|
|
||||||
|
|
||||||
// 菜单配置
|
// 菜单配置
|
||||||
const MENU_ITEMS = [
|
const MENU_ITEMS = [
|
||||||
@@ -58,7 +55,12 @@ const MENU_ITEMS = [
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
export default function Sidebar({collapsed = false}: Props) {
|
type Props = {
|
||||||
|
className?: string
|
||||||
|
onClose?: () => void
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function Sidebar({className, onClose}: Props) {
|
||||||
const pathname = usePathname()
|
const pathname = usePathname()
|
||||||
|
|
||||||
// 获取当前文档 key
|
// 获取当前文档 key
|
||||||
@@ -100,9 +102,7 @@ export default function Sidebar({collapsed = false}: Props) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<aside
|
<aside
|
||||||
className={`bg-white rounded-lg p-3 transition-all duration-200 shrink-0 ${
|
className={merge(`bg-white rounded-lg p-3 transition-all duration-200 shrink-0`, className)}
|
||||||
collapsed ? 'w-20' : 'w-68'
|
|
||||||
}`}
|
|
||||||
>
|
>
|
||||||
<nav className="space-y-2">
|
<nav className="space-y-2">
|
||||||
{MENU_ITEMS.map(section => (
|
{MENU_ITEMS.map(section => (
|
||||||
@@ -110,9 +110,7 @@ export default function Sidebar({collapsed = false}: Props) {
|
|||||||
<div
|
<div
|
||||||
onClick={() => toggleGroup(section.group)}
|
onClick={() => toggleGroup(section.group)}
|
||||||
className={`flex items-center gap-2 cursor-pointer px-3 py-2 rounded-sm transition-colors ${
|
className={`flex items-center gap-2 cursor-pointer px-3 py-2 rounded-sm transition-colors ${
|
||||||
finalExpandedGroups[section.group] && !collapsed
|
finalExpandedGroups[section.group] && 'bg-blue-50'
|
||||||
? 'bg-blue-50'
|
|
||||||
: 'hover:bg-slate-50'
|
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
@@ -123,15 +121,13 @@ export default function Sidebar({collapsed = false}: Props) {
|
|||||||
<ChevronRight size={16}/>
|
<ChevronRight size={16}/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{!collapsed && (
|
<div className="text-lg font-semibold text-slate-900">
|
||||||
<div className="text-lg font-semibold text-slate-900">
|
{section.group}
|
||||||
{section.group}
|
</div>
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{finalExpandedGroups[section.group] && (
|
{finalExpandedGroups[section.group] && (
|
||||||
<ul className={`mt-1 text-base ${collapsed ? 'hidden' : 'block'}`}>
|
<ul className="mt-1 text-base">
|
||||||
{section.items.map((item) => {
|
{section.items.map((item) => {
|
||||||
const isActive = currentKey === item.key
|
const isActive = currentKey === item.key
|
||||||
const href = getItemHref(item.key)
|
const href = getItemHref(item.key)
|
||||||
@@ -140,6 +136,7 @@ export default function Sidebar({collapsed = false}: Props) {
|
|||||||
<li key={item.key}>
|
<li key={item.key}>
|
||||||
<Link
|
<Link
|
||||||
href={href}
|
href={href}
|
||||||
|
onClick={() => onClose?.()}
|
||||||
className={`block pl-8 py-2 text-base cursor-pointer transition-colors ${
|
className={`block pl-8 py-2 text-base cursor-pointer transition-colors ${
|
||||||
isActive
|
isActive
|
||||||
? 'bg-blue-50 font-semibold'
|
? 'bg-blue-50 font-semibold'
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ export default function Footer(props: FooterProps) {
|
|||||||
items={[
|
items={[
|
||||||
{name: `产品订购`, href: `/product`},
|
{name: `产品订购`, href: `/product`},
|
||||||
{name: `获取代理`, href: `/collect`},
|
{name: `获取代理`, href: `/collect`},
|
||||||
{name: `帮助中心`, href: `/docs/faqs/faq-general`},
|
{name: `帮助中心`, href: `/docs/faq-general`},
|
||||||
{name: `企业服务`, href: `/custom`},
|
{name: `企业服务`, href: `/custom`},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -69,9 +69,9 @@ export default function Footer(props: FooterProps) {
|
|||||||
<SiteNavList
|
<SiteNavList
|
||||||
title="帮助文档"
|
title="帮助文档"
|
||||||
items={[
|
items={[
|
||||||
{name: `产品功能`, href: `/docs/product/product-features`},
|
{name: `产品功能`, href: `/docs/product-overview`},
|
||||||
{name: `使用教程`, href: `/docs/client/browser-proxy`},
|
{name: `使用教程`, href: `/docs/browser-proxy`},
|
||||||
{name: `行业资讯`, href: `/docs/news/news-latest`},
|
{name: `行业资讯`, href: `/docs/news-latest`},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -164,10 +164,10 @@ export default function Header(props: HeaderProps) {
|
|||||||
</Wrap>
|
</Wrap>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* 下拉菜单 */}
|
{/* 桌面端下拉菜单 */}
|
||||||
<div
|
<div
|
||||||
className={merge(
|
className={merge(
|
||||||
`flex-auto overflow-auto lg:flex-none lg:basis-72 shadow-lg box-content`,
|
`hidden lg:flex flex-auto overflow-auto lg:flex-none lg:basis-72 shadow-lg box-content`,
|
||||||
`bg-[#fffe] backdrop-blur-sm`,
|
`bg-[#fffe] backdrop-blur-sm`,
|
||||||
`transition-[opacity,padding] transition-discrete duration-200 ease-in-out`,
|
`transition-[opacity,padding] transition-discrete duration-200 ease-in-out`,
|
||||||
menu
|
menu
|
||||||
@@ -180,7 +180,20 @@ export default function Header(props: HeaderProps) {
|
|||||||
{pages[page]}
|
{pages[page]}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* 遮罩层 */}
|
{/* 移动端侧边栏菜单 */}
|
||||||
|
{menu && page === 3 && (
|
||||||
|
<div className="lg:hidden fixed inset-0 z-20 flex">
|
||||||
|
<div
|
||||||
|
className="flex-1 bg-black/40"
|
||||||
|
onPointerDown={enterMenuMask}
|
||||||
|
/>
|
||||||
|
<div className="w-72 max-w-[80vw] bg-white shadow-xl overflow-y-auto">
|
||||||
|
{pages[3]}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* 遮罩层(桌面端) */}
|
||||||
<div className="flex-auto" onPointerEnter={enterMenuMask}/>
|
<div className="flex-auto" onPointerEnter={enterMenuMask}/>
|
||||||
|
|
||||||
</HeaderContext.Provider>
|
</HeaderContext.Provider>
|
||||||
@@ -225,7 +238,7 @@ function MenuItem(props: {
|
|||||||
onPointerLeave={props.onPointerLeave}
|
onPointerLeave={props.onPointerLeave}
|
||||||
className={[
|
className={[
|
||||||
`h-full px-4 flex gap-3 items-center cursor-pointer text-lg`,
|
`h-full px-4 flex gap-3 items-center cursor-pointer text-lg`,
|
||||||
`transition-colors duration-200 ease-in-out`,
|
`transition-colors duration-200 ease-in-out cursor-pointer`,
|
||||||
props.active
|
props.active
|
||||||
? `text-blue-500`
|
? `text-blue-500`
|
||||||
: ``,
|
: ``,
|
||||||
@@ -269,7 +282,7 @@ function ProfileOrLogin() {
|
|||||||
<span>登录</span>
|
<span>登录</span>
|
||||||
</Link>
|
</Link>
|
||||||
<Link
|
<Link
|
||||||
href="/login"
|
href="/login?tab=sms"
|
||||||
className={[
|
className={[
|
||||||
`w-20 lg:w-24 h-10 lg:h-12 bg-linear-to-r rounded-sm flex items-center justify-center lg:text-lg text-white`,
|
`w-20 lg:w-24 h-10 lg:h-12 bg-linear-to-r rounded-sm flex items-center justify-center lg:text-lg text-white`,
|
||||||
`transition-colors duration-200 ease-in-out`,
|
`transition-colors duration-200 ease-in-out`,
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import {ReactNode} from 'react'
|
import {ReactNode} from 'react'
|
||||||
import Header from './header'
|
import Header from './header'
|
||||||
import Footer from './footer'
|
import Footer from './footer'
|
||||||
|
import Script from 'next/script'
|
||||||
|
import {MessageCircleMoreIcon} from 'lucide-react'
|
||||||
export type HomeLayoutProps = {
|
export type HomeLayoutProps = {
|
||||||
children: ReactNode
|
children: ReactNode
|
||||||
}
|
}
|
||||||
@@ -17,6 +18,22 @@ export default function HomeLayout(props: HomeLayoutProps) {
|
|||||||
|
|
||||||
{/* 页脚 */}
|
{/* 页脚 */}
|
||||||
<Footer/>
|
<Footer/>
|
||||||
|
|
||||||
|
{/* <Script id="qd2852138148beb7882a4a6a3e5ff5b569436003e7dc" src="https://wp.qiye.qq.com/qidian/2852138148/beb7882a4a6a3e5ff5b569436003e7dc" async defer></Script> */}
|
||||||
|
<a
|
||||||
|
href="https://wpa1.qq.com/K0s0cvwf?_type=wpa&qidian=true"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="fixed bottom-6 right-6 z-50 w-14 h-14 rounded-full bg-blue-600 hover:bg-blue-700 shadow-lg hover:shadow-xl transition-all duration-300 hover:scale-110 flex items-center justify-center group"
|
||||||
|
aria-label="在线客服"
|
||||||
|
>
|
||||||
|
<span className="text-white font-bold text-lg">客</span>
|
||||||
|
<span className="text-white font-bold text-lg">服</span>
|
||||||
|
|
||||||
|
<span className="absolute -top-2 -right-2 flex items-center justify-center w-6 h-6 bg-red-500 rounded-full text-white shadow-md">
|
||||||
|
<MessageCircleMoreIcon size={14}/>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ export default async function UserCenter() {
|
|||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
{/* <div className="flex flex-col gap-1">
|
<div className="flex flex-col gap-1">
|
||||||
<h4 className="text-sm text-weak">账户余额</h4>
|
<h4 className="text-sm text-weak">账户余额</h4>
|
||||||
<div className="flex justify-between items-baseline">
|
<div className="flex justify-between items-baseline">
|
||||||
<p className="text-xl text-accent">
|
<p className="text-xl text-accent">
|
||||||
@@ -68,7 +68,7 @@ export default async function UserCenter() {
|
|||||||
</p>
|
</p>
|
||||||
<RechargeModal/>
|
<RechargeModal/>
|
||||||
</div>
|
</div>
|
||||||
</div> */}
|
</div>
|
||||||
<div className="flex flex-col gap-3">
|
<div className="flex flex-col gap-3">
|
||||||
<h4 className="text-sm text-weak">快捷入口</h4>
|
<h4 className="text-sm text-weak">快捷入口</h4>
|
||||||
<div className="flex justify-around gap-2">
|
<div className="flex justify-around gap-2">
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ export default function BillsPage(props: BillsPageProps) {
|
|||||||
<SelectItem value="all">全部</SelectItem>
|
<SelectItem value="all">全部</SelectItem>
|
||||||
<SelectItem value="3">充值</SelectItem>
|
<SelectItem value="3">充值</SelectItem>
|
||||||
<SelectItem value="1">消费</SelectItem>
|
<SelectItem value="1">消费</SelectItem>
|
||||||
<SelectItem value="2">退款</SelectItem>
|
{/* <SelectItem value="2">退款</SelectItem> */}
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
)}
|
)}
|
||||||
@@ -284,13 +284,13 @@ export default function BillsPage(props: BillsPageProps) {
|
|||||||
format(new Date(row.original.created_at), 'yyyy-MM-dd HH:mm')
|
format(new Date(row.original.created_at), 'yyyy-MM-dd HH:mm')
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
accessorKey: 'action', header: `操作`, cell: item => (
|
// accessorKey: 'action', header: `操作`, cell: item => (
|
||||||
<div className="flex gap-2">
|
// <div className="flex gap-2">
|
||||||
-
|
// -
|
||||||
</div>
|
// </div>
|
||||||
),
|
// ),
|
||||||
},
|
// },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</Page>
|
</Page>
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
import {ReactNode, Suspense, use, useState} from 'react'
|
import {ReactNode, Suspense, use, useState} from 'react'
|
||||||
import Image from 'next/image'
|
import Image from 'next/image'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import {ChangePasswordDialog} from '@/components/composites/dialogs/change-password-dialog'
|
|
||||||
import {RealnameAuthDialog} from '@/components/composites/dialogs/realname-auth-dialog'
|
import {RealnameAuthDialog} from '@/components/composites/dialogs/realname-auth-dialog'
|
||||||
import UserCenter from '@/components/composites/user-center'
|
import UserCenter from '@/components/composites/user-center'
|
||||||
import {Button} from '@/components/ui/button'
|
import {Button} from '@/components/ui/button'
|
||||||
@@ -75,19 +74,20 @@ export function Content(props: {children: ReactNode}) {
|
|||||||
}
|
}
|
||||||
function ContentResolved() {
|
function ContentResolved() {
|
||||||
const profile = use(useProfileStore(store => store.profile))
|
const profile = use(useProfileStore(store => store.profile))
|
||||||
if (!profile) throw new Error('登录状态异常')
|
|
||||||
return (
|
if (profile)
|
||||||
<>
|
return (
|
||||||
<RealnameAuthDialog
|
<>
|
||||||
triggerClassName="hidden"
|
<RealnameAuthDialog
|
||||||
defaultOpen={!profile.id_token}
|
triggerClassName="hidden"
|
||||||
/>
|
defaultOpen={!profile.id_token}
|
||||||
<ChangePasswordDialog
|
/>
|
||||||
triggerClassName="hidden"
|
{/* <ChangePasswordDialog
|
||||||
defaultOpen={!profile.has_password}
|
triggerClassName="hidden"
|
||||||
/>
|
defaultOpen={!profile.has_password}
|
||||||
</>
|
/> */}
|
||||||
)
|
</>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function Header() {
|
export function Header() {
|
||||||
@@ -116,7 +116,14 @@ export function Header() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* right */}
|
{/* right */}
|
||||||
<div className="flex-none flex items-center justify-end pr-4">
|
<div className="flex-none flex items-center justify-end pr-4 max-md:hidden gap-2">
|
||||||
|
<Link
|
||||||
|
href="/"
|
||||||
|
className={merge(
|
||||||
|
`flex-none h-16 flex items-center justify-center`,
|
||||||
|
)}>
|
||||||
|
返回首页
|
||||||
|
</Link>
|
||||||
<Suspense>
|
<Suspense>
|
||||||
<HeaderUserCenter/>
|
<HeaderUserCenter/>
|
||||||
</Suspense>
|
</Suspense>
|
||||||
@@ -127,8 +134,7 @@ export function Header() {
|
|||||||
|
|
||||||
function HeaderUserCenter() {
|
function HeaderUserCenter() {
|
||||||
const profile = use(useProfileStore(store => store.profile))
|
const profile = use(useProfileStore(store => store.profile))
|
||||||
if (!profile) throw new Error('登录状态异常')
|
if (profile) return <UserCenter profile={profile}/>
|
||||||
return <UserCenter profile={profile}/>
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function Navbar() {
|
export function Navbar() {
|
||||||
|
|||||||
@@ -98,6 +98,16 @@ export default function IdentifyPage(props: IdentifyPageProps) {
|
|||||||
const profile = useProfileStore(store => store.profile)
|
const profile = useProfileStore(store => store.profile)
|
||||||
const refreshProfile = useProfileStore(store => store.refreshProfile)
|
const refreshProfile = useProfileStore(store => store.refreshProfile)
|
||||||
|
|
||||||
|
// 重置认证流程
|
||||||
|
const handleDialogOpenChange = async (open: boolean) => {
|
||||||
|
setOpenDialog(open)
|
||||||
|
if (!open) {
|
||||||
|
setStep('form')
|
||||||
|
setTarget('')
|
||||||
|
await refreshProfile()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// ======================
|
// ======================
|
||||||
// render
|
// render
|
||||||
// ======================
|
// ======================
|
||||||
@@ -125,7 +135,7 @@ export default function IdentifyPage(props: IdentifyPageProps) {
|
|||||||
</div>
|
</div>
|
||||||
<Suspense>
|
<Suspense>
|
||||||
<IfNotIdentofy>
|
<IfNotIdentofy>
|
||||||
<Dialog open={openDialog} onOpenChange={setOpenDialog}>
|
<Dialog open={openDialog} onOpenChange={handleDialogOpenChange}>
|
||||||
<DialogTrigger asChild>
|
<DialogTrigger asChild>
|
||||||
<Button className="w-full">去认证</Button>
|
<Button className="w-full">去认证</Button>
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
@@ -165,11 +175,8 @@ export default function IdentifyPage(props: IdentifyPageProps) {
|
|||||||
<div className="flex flex-col gap-4 items-center">
|
<div className="flex flex-col gap-4 items-center">
|
||||||
<canvas ref={canvas} width={256} height={256}/>
|
<canvas ref={canvas} width={256} height={256}/>
|
||||||
<p className="text-sm text-gray-600">请扫码完成认证</p>
|
<p className="text-sm text-gray-600">请扫码完成认证</p>
|
||||||
<Button onClick={async () => {
|
<Button onClick={() => handleDialogOpenChange(false)}>
|
||||||
await refreshProfile()
|
已完成扫脸认证
|
||||||
setOpenDialog(false)
|
|
||||||
}}>
|
|
||||||
已完成认证
|
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
@@ -223,7 +230,7 @@ export default function IdentifyPage(props: IdentifyPageProps) {
|
|||||||
<p className="flex gap-2 items-center justify-between w-56 self-center">
|
<p className="flex gap-2 items-center justify-between w-56 self-center">
|
||||||
<span className="flex gap-2">
|
<span className="flex gap-2">
|
||||||
<span className="bg-primary/25 text-primary w-8 h-8 rounded-full flex items-center justify-center">03</span>
|
<span className="bg-primary/25 text-primary w-8 h-8 rounded-full flex items-center justify-center">03</span>
|
||||||
<span>充值、支付</span>
|
<span>支付订单</span>
|
||||||
</span>
|
</span>
|
||||||
<Image alt="步骤配图" src={step3}/>
|
<Image alt="步骤配图" src={step3}/>
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -78,8 +78,8 @@ export function BasicForm(props: {
|
|||||||
}) {
|
}) {
|
||||||
const schema = z.object({
|
const schema = z.object({
|
||||||
username: z.string(),
|
username: z.string(),
|
||||||
email: z.string(),
|
email: z.string().email('请输入正确的邮箱格式').or(z.literal('')),
|
||||||
contact_qq: z.string(),
|
contact_qq: z.string().regex(/^\d*$/, 'QQ号只能包含数字'),
|
||||||
contact_wechat: z.string(),
|
contact_wechat: z.string(),
|
||||||
})
|
})
|
||||||
type Schema = z.infer<typeof schema>
|
type Schema = z.infer<typeof schema>
|
||||||
|
|||||||
@@ -3,16 +3,17 @@ import {Card, CardContent, CardHeader, CardTitle} from '@/components/ui/card'
|
|||||||
import {CheckCircle} from 'lucide-react'
|
import {CheckCircle} from 'lucide-react'
|
||||||
import Image from 'next/image'
|
import Image from 'next/image'
|
||||||
import banner from '@/app/admin/identify/_assets/banner.webp'
|
import banner from '@/app/admin/identify/_assets/banner.webp'
|
||||||
import RechargeModal from '@/components/composites/recharge'
|
|
||||||
import {RealnameAuthDialog} from '@/components/composites/dialogs/realname-auth-dialog'
|
|
||||||
import {ChangePasswordDialog} from '@/components/composites/dialogs/change-password-dialog'
|
import {ChangePasswordDialog} from '@/components/composites/dialogs/change-password-dialog'
|
||||||
import {getProfile} from '@/actions/auth'
|
import {getProfile} from '@/actions/auth'
|
||||||
import {Aftersale, BasicForm} from './clients'
|
import {Aftersale, BasicForm} from './clients'
|
||||||
|
import {Button} from '@/components/ui/button'
|
||||||
|
import Link from 'next/link'
|
||||||
|
|
||||||
export type ProfilePageProps = {}
|
export type ProfilePageProps = {}
|
||||||
|
|
||||||
export default async function ProfilePage(props: ProfilePageProps) {
|
export default async function ProfilePage(props: ProfilePageProps) {
|
||||||
const profile = await getProfile()
|
const profile = await getProfile()
|
||||||
|
|
||||||
if (!profile.success) {
|
if (!profile.success) {
|
||||||
return (
|
return (
|
||||||
<Page>
|
<Page>
|
||||||
@@ -22,6 +23,7 @@ export default async function ProfilePage(props: ProfilePageProps) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const user = profile.data
|
const user = profile.data
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page className="lg:flex-row lg:items-stretch md:flex-col max-sm:flex-col">
|
<Page className="lg:flex-row lg:items-stretch md:flex-col max-sm:flex-col">
|
||||||
<div className="flex-3/4 flex flex-col gap-4">
|
<div className="flex-3/4 flex flex-col gap-4">
|
||||||
@@ -34,26 +36,13 @@ export default async function ProfilePage(props: ProfilePageProps) {
|
|||||||
|
|
||||||
{/* 块信息 */}
|
{/* 块信息 */}
|
||||||
<div className="flex gap-4 max-md:flex-col max-sm:flex-col">
|
<div className="flex gap-4 max-md:flex-col max-sm:flex-col">
|
||||||
|
|
||||||
{/* <Card className="flex-1 ">
|
|
||||||
<CardHeader>
|
|
||||||
<CardTitle className="font-normal">账户余额(元)</CardTitle>
|
|
||||||
</CardHeader>
|
|
||||||
<CardContent className="flex-auto flex justify-between items-center px-8">
|
|
||||||
<p className="text-xl">{user.balance}</p>
|
|
||||||
<RechargeModal classNames={{
|
|
||||||
trigger: `h-10 px-6`,
|
|
||||||
}}/>
|
|
||||||
</CardContent>
|
|
||||||
</Card> */}
|
|
||||||
|
|
||||||
<Card className="flex-1 ">
|
<Card className="flex-1 ">
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<CardTitle className="font-normal">修改密码</CardTitle>
|
<CardTitle className="font-normal">修改密码</CardTitle>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="flex-auto flex justify-between items-center px-8">
|
<CardContent className="flex-auto flex justify-between items-center px-8">
|
||||||
<p>{user.phone}</p>
|
<p>{user.phone}</p>
|
||||||
<ChangePasswordDialog triggerClassName="w-24 h-9"/>
|
<ChangePasswordDialog triggerClassName="w-24 h-9" phone={user?.phone}/>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
@@ -66,10 +55,13 @@ export default async function ProfilePage(props: ProfilePageProps) {
|
|||||||
? (
|
? (
|
||||||
<>
|
<>
|
||||||
<p className="text-sm">为了保障您的账户安全和正常使用服务,请您尽快完成实名认证</p>
|
<p className="text-sm">为了保障您的账户安全和正常使用服务,请您尽快完成实名认证</p>
|
||||||
<RealnameAuthDialog
|
{/* <RealnameAuthDialog
|
||||||
defaultOpen={!user.id_token}
|
// defaultOpen={!user.id_token}
|
||||||
triggerClassName="w-24"
|
triggerClassName="w-24"
|
||||||
/>
|
/> */}
|
||||||
|
<Link href="/admin/identify">
|
||||||
|
<Button>立即认证</Button>
|
||||||
|
</Link>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
: (
|
: (
|
||||||
|
|||||||
@@ -164,16 +164,21 @@ export default function RecordPage(props: RecordPageProps) {
|
|||||||
cell: ({row}) => <div>{row.original.prov}</div>,
|
cell: ({row}) => <div>{row.original.prov}</div>,
|
||||||
accessorKey: 'prov',
|
accessorKey: 'prov',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
header: '城市',
|
||||||
|
cell: ({row}) => <div>{row.original.city}</div>,
|
||||||
|
accessorKey: 'city',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
header: '提取数量',
|
header: '提取数量',
|
||||||
cell: ({row}) => <div>{row.original.count}</div>,
|
cell: ({row}) => <div>{row.original.count}</div>,
|
||||||
accessorKey: 'count',
|
accessorKey: 'count',
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
header: '资源数量',
|
// header: '资源数量',
|
||||||
cell: ({row}) => <div>{row.original.resource_id}</div>,
|
// cell: ({row}) => <div>{row.original.resource_id}</div>,
|
||||||
accessorKey: 'resource_id',
|
// accessorKey: 'resource_id',
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
header: '提取时间',
|
header: '提取时间',
|
||||||
cell: ({row}) => {
|
cell: ({row}) => {
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import {Eraser, Search} from 'lucide-react'
|
|||||||
export interface ResourceFilterValues {
|
export interface ResourceFilterValues {
|
||||||
resource_no: string
|
resource_no: string
|
||||||
type: 'expire' | 'quota' | 'all'
|
type: 'expire' | 'quota' | 'all'
|
||||||
|
status: '0' | '1' | '2'
|
||||||
create_after?: Date
|
create_after?: Date
|
||||||
create_before?: Date
|
create_before?: Date
|
||||||
expire_after?: Date
|
expire_after?: Date
|
||||||
@@ -41,13 +42,27 @@ export default function ResourceFilter({form, onSubmit, onReset}: ResourceFilter
|
|||||||
<SelectValue placeholder="选择套餐类型"/>
|
<SelectValue placeholder="选择套餐类型"/>
|
||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="all">全部</SelectItem>
|
<SelectItem value="all" >全部</SelectItem>
|
||||||
<SelectItem value="expire">包时</SelectItem>
|
<SelectItem value="expire">包时</SelectItem>
|
||||||
<SelectItem value="quota">包量</SelectItem>
|
<SelectItem value="quota">包量</SelectItem>
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
)}
|
)}
|
||||||
</FormField>
|
</FormField>
|
||||||
|
<FormField name="status" label={<span className="text-sm">状态</span>}>
|
||||||
|
{({field}) => (
|
||||||
|
<Select value={field.value} onValueChange={field.onChange}>
|
||||||
|
<SelectTrigger className="w-24 h-9">
|
||||||
|
<SelectValue placeholder="选择状态"/>
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="0">全部</SelectItem>
|
||||||
|
<SelectItem value="1">可用</SelectItem>
|
||||||
|
<SelectItem value="2">已过期</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
)}
|
||||||
|
</FormField>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label className="text-sm">开通时间</Label>
|
<Label className="text-sm">开通时间</Label>
|
||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ import {
|
|||||||
ExpireBadge,
|
ExpireBadge,
|
||||||
formatDateTime,
|
formatDateTime,
|
||||||
getTodayUsage,
|
getTodayUsage,
|
||||||
|
isValidResourcestatus,
|
||||||
isValidResourceType,
|
isValidResourceType,
|
||||||
ResourceTypeBadge,
|
ResourceTypeBadge,
|
||||||
} from './utils'
|
} from './utils'
|
||||||
@@ -24,6 +25,7 @@ import {
|
|||||||
const filterSchema = zod.object({
|
const filterSchema = zod.object({
|
||||||
resource_no: zod.string().optional().default(''),
|
resource_no: zod.string().optional().default(''),
|
||||||
type: zod.enum(['expire', 'quota', 'all']).default('all'),
|
type: zod.enum(['expire', 'quota', 'all']).default('all'),
|
||||||
|
status: zod.enum(['0', '1', '2']).default('1'),
|
||||||
create_after: zod.date().optional(),
|
create_after: zod.date().optional(),
|
||||||
create_before: zod.date().optional(),
|
create_before: zod.date().optional(),
|
||||||
expire_after: zod.date().optional(),
|
expire_after: zod.date().optional(),
|
||||||
@@ -47,12 +49,13 @@ export default function ResourceList({resourceType}: ResourceListProps) {
|
|||||||
// 从 URL 参数初始化筛选条件
|
// 从 URL 参数初始化筛选条件
|
||||||
const params = useSearchParams()
|
const params = useSearchParams()
|
||||||
const paramType = params.get('type')
|
const paramType = params.get('type')
|
||||||
|
const paramStatus = params.get('status')
|
||||||
const form = useForm<ResourceFilterValues>({
|
const form = useForm<ResourceFilterValues>({
|
||||||
resolver: zodResolver(filterSchema),
|
resolver: zodResolver(filterSchema),
|
||||||
defaultValues: {
|
defaultValues: {
|
||||||
resource_no: params.get('resource_no') || '',
|
resource_no: params.get('resource_no') || '',
|
||||||
type: isValidResourceType(paramType) ? paramType : 'all',
|
type: isValidResourceType(paramType) ? paramType : 'all',
|
||||||
|
status: isValidResourcestatus(paramStatus) ? paramStatus : '1',
|
||||||
create_after: params.get('create_after') ? new Date(params.get('create_after')!) : undefined,
|
create_after: params.get('create_after') ? new Date(params.get('create_after')!) : undefined,
|
||||||
create_before: params.get('create_before') ? new Date(params.get('create_before')!) : undefined,
|
create_before: params.get('create_before') ? new Date(params.get('create_before')!) : undefined,
|
||||||
expire_after: params.get('expire_after') ? new Date(params.get('expire_after')!) : undefined,
|
expire_after: params.get('expire_after') ? new Date(params.get('expire_after')!) : undefined,
|
||||||
@@ -71,6 +74,7 @@ export default function ResourceList({resourceType}: ResourceListProps) {
|
|||||||
expire: 1,
|
expire: 1,
|
||||||
quota: 2,
|
quota: 2,
|
||||||
}[getValues('type')]
|
}[getValues('type')]
|
||||||
|
const status = getValues('status')
|
||||||
const create_after = getValues('create_after')
|
const create_after = getValues('create_after')
|
||||||
const create_before = getValues('create_before')
|
const create_before = getValues('create_before')
|
||||||
const expire_after = getValues('expire_after')
|
const expire_after = getValues('expire_after')
|
||||||
@@ -82,6 +86,7 @@ export default function ResourceList({resourceType}: ResourceListProps) {
|
|||||||
page,
|
page,
|
||||||
size,
|
size,
|
||||||
type,
|
type,
|
||||||
|
status: Number(status),
|
||||||
create_after,
|
create_after,
|
||||||
create_before,
|
create_before,
|
||||||
expire_after,
|
expire_after,
|
||||||
@@ -116,6 +121,7 @@ export default function ResourceList({resourceType}: ResourceListProps) {
|
|||||||
const handleReset = () => {
|
const handleReset = () => {
|
||||||
form.reset({
|
form.reset({
|
||||||
type: 'all',
|
type: 'all',
|
||||||
|
status: '1',
|
||||||
resource_no: '',
|
resource_no: '',
|
||||||
create_after: undefined,
|
create_after: undefined,
|
||||||
create_before: undefined,
|
create_before: undefined,
|
||||||
@@ -159,7 +165,7 @@ export default function ResourceList({resourceType}: ResourceListProps) {
|
|||||||
const live = resourceKey === 'long'
|
const live = resourceKey === 'long'
|
||||||
? (row.original as Resource<2>).long.live
|
? (row.original as Resource<2>).long.live
|
||||||
: (row.original as Resource<1>).short.live
|
: (row.original as Resource<1>).short.live
|
||||||
return <span>{isLong ? `${live}小时` : `${live / 60}分钟`}</span>
|
return <span>{isLong ? `${live}小时` : `${live}分钟`}</span>
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -213,6 +219,17 @@ export default function ResourceList({resourceType}: ResourceListProps) {
|
|||||||
header: '开通时间',
|
header: '开通时间',
|
||||||
cell: ({row}) => formatDateTime(row.original.created_at),
|
cell: ({row}) => formatDateTime(row.original.created_at),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
header: '状态',
|
||||||
|
cell: ({row}) => {
|
||||||
|
const isActive = row.original.active
|
||||||
|
return (
|
||||||
|
<span className={isActive ? 'text-green-500' : 'text-red-500'}>
|
||||||
|
{isActive ? '启用' : '禁用'}
|
||||||
|
</span>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
// 短效资源增加到期时间列
|
// 短效资源增加到期时间列
|
||||||
|
|||||||
@@ -7,6 +7,11 @@ export function isValidResourceType(type: string | null): type is 'expire' | 'qu
|
|||||||
return type === 'expire' || type === 'quota' || type === 'all'
|
return type === 'expire' || type === 'quota' || type === 'all'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 状态
|
||||||
|
export function isValidResourcestatus(status: string | null): status is '0' | '1' | '2' {
|
||||||
|
return status === '0' || status === '1' || status === '2'
|
||||||
|
}
|
||||||
|
|
||||||
// 资源类型徽章
|
// 资源类型徽章
|
||||||
export function ResourceTypeBadge({type}: {type: number}) {
|
export function ResourceTypeBadge({type}: {type: number}) {
|
||||||
if (type === 1) {
|
if (type === 1) {
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 31 KiB |
@@ -8,6 +8,8 @@ import {LayoutStoreProvider} from '@/components/stores/layout'
|
|||||||
import {ClientStoreProvider} from '@/components/stores/client'
|
import {ClientStoreProvider} from '@/components/stores/client'
|
||||||
import {getProfile} from '@/actions/auth'
|
import {getProfile} from '@/actions/auth'
|
||||||
import Script from 'next/script'
|
import Script from 'next/script'
|
||||||
|
import {AppStoreProvider} from '@/components/stores/app'
|
||||||
|
import {getApiUrl} from '@/actions/base'
|
||||||
|
|
||||||
export async function generateMetadata(): Promise<Metadata> {
|
export async function generateMetadata(): Promise<Metadata> {
|
||||||
return {
|
return {
|
||||||
@@ -25,18 +27,19 @@ export default async function RootLayout(props: Readonly<{
|
|||||||
<Effects>{props.children}</Effects>
|
<Effects>{props.children}</Effects>
|
||||||
</StoreProviders>
|
</StoreProviders>
|
||||||
<Toaster position="top-center" richColors expand/>
|
<Toaster position="top-center" richColors expand/>
|
||||||
<Script id="qd2852138148beb7882a4a6a3e5ff5b569436003e7dc" src="https://wp.qiye.qq.com/qidian/2852138148/beb7882a4a6a3e5ff5b569436003e7dc" async defer></Script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
function StoreProviders(props: {children: ReactNode}) {
|
async function StoreProviders(props: {children: ReactNode}) {
|
||||||
return (
|
return (
|
||||||
<ProfileStoreProvider profile={getProfile().then(resp => resp.success ? resp.data : null)}>
|
<ProfileStoreProvider profile={getProfile().then(resp => resp.success ? resp.data : null)}>
|
||||||
<LayoutStoreProvider>
|
<LayoutStoreProvider>
|
||||||
<ClientStoreProvider>
|
<ClientStoreProvider>
|
||||||
{props.children}
|
<AppStoreProvider url={await getApiUrl().then(r => r.data)}>
|
||||||
|
{props.children}
|
||||||
|
</AppStoreProvider>
|
||||||
</ClientStoreProvider>
|
</ClientStoreProvider>
|
||||||
</LayoutStoreProvider>
|
</LayoutStoreProvider>
|
||||||
</ProfileStoreProvider>
|
</ProfileStoreProvider>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import {Dialog, DialogContent, DialogFooter, DialogHeader, DialogTitle, DialogTr
|
|||||||
import {Button} from '@/components/ui/button'
|
import {Button} from '@/components/ui/button'
|
||||||
import {Form, FormField} from '@/components/ui/form'
|
import {Form, FormField} from '@/components/ui/form'
|
||||||
import {Input} from '@/components/ui/input'
|
import {Input} from '@/components/ui/input'
|
||||||
import {useForm, useFormContext, useWatch} from 'react-hook-form'
|
import {useForm, useFormContext} from 'react-hook-form'
|
||||||
import {zodResolver} from '@hookform/resolvers/zod'
|
import {zodResolver} from '@hookform/resolvers/zod'
|
||||||
import * as z from 'zod'
|
import * as z from 'zod'
|
||||||
import {toast} from 'sonner'
|
import {toast} from 'sonner'
|
||||||
@@ -14,7 +14,6 @@ import dynamic from 'next/dynamic'
|
|||||||
|
|
||||||
// 表单验证规则
|
// 表单验证规则
|
||||||
const schema = z.object({
|
const schema = z.object({
|
||||||
phone: z.string().regex(/^1\d{10}$/, `请输入正确的手机号`),
|
|
||||||
captcha: z.string().nonempty('请输入验证码'),
|
captcha: z.string().nonempty('请输入验证码'),
|
||||||
code: z.string().regex(/^\d{6}$/, `请输入正确的验证码`),
|
code: z.string().regex(/^\d{6}$/, `请输入正确的验证码`),
|
||||||
password: z.string().min(6, `密码至少6位`),
|
password: z.string().min(6, `密码至少6位`),
|
||||||
@@ -32,6 +31,7 @@ interface ChangePasswordDialogProps {
|
|||||||
defaultOpen?: boolean
|
defaultOpen?: boolean
|
||||||
onOpenChange?: (open: boolean) => void
|
onOpenChange?: (open: boolean) => void
|
||||||
onSuccess?: () => void
|
onSuccess?: () => void
|
||||||
|
phone?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export function ChangePasswordDialog({
|
export function ChangePasswordDialog({
|
||||||
@@ -40,12 +40,28 @@ export function ChangePasswordDialog({
|
|||||||
defaultOpen,
|
defaultOpen,
|
||||||
onOpenChange,
|
onOpenChange,
|
||||||
onSuccess,
|
onSuccess,
|
||||||
|
phone,
|
||||||
}: ChangePasswordDialogProps) {
|
}: ChangePasswordDialogProps) {
|
||||||
const [internalOpen, setInternalOpen] = useState(defaultOpen || false)
|
const [internalOpen, setInternalOpen] = useState(defaultOpen || false)
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
|
||||||
const actualOpen = open !== undefined ? open : internalOpen
|
const actualOpen = open !== undefined ? open : internalOpen
|
||||||
const actualOnOpenChange = onOpenChange || setInternalOpen
|
const actualOnOpenChange = (open: boolean) => {
|
||||||
|
if (!open) {
|
||||||
|
form.reset({
|
||||||
|
captcha: '',
|
||||||
|
code: '',
|
||||||
|
password: '',
|
||||||
|
confirm_password: '',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
if (onOpenChange) {
|
||||||
|
onOpenChange(open)
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
setInternalOpen(open)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 表单初始化
|
// 表单初始化
|
||||||
const form = useForm<Schema>({
|
const form = useForm<Schema>({
|
||||||
@@ -59,7 +75,6 @@ export function ChangePasswordDialog({
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
defaultValues: {
|
defaultValues: {
|
||||||
phone: '',
|
|
||||||
captcha: '',
|
captcha: '',
|
||||||
code: '',
|
code: '',
|
||||||
password: '',
|
password: '',
|
||||||
@@ -68,10 +83,9 @@ export function ChangePasswordDialog({
|
|||||||
})
|
})
|
||||||
|
|
||||||
// 提交处理
|
// 提交处理
|
||||||
const handler = form.handleSubmit(async (value) => {
|
const handler = async (value: Schema) => {
|
||||||
try {
|
try {
|
||||||
const resp = await updatePassword({
|
const resp = await updatePassword({
|
||||||
phone: value.phone,
|
|
||||||
code: value.code,
|
code: value.code,
|
||||||
password: value.password,
|
password: value.password,
|
||||||
})
|
})
|
||||||
@@ -90,7 +104,7 @@ export function ChangePasswordDialog({
|
|||||||
description: e instanceof Error ? e.message : String(e),
|
description: e instanceof Error ? e.message : String(e),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog open={actualOpen} onOpenChange={actualOnOpenChange}>
|
<Dialog open={actualOpen} onOpenChange={actualOnOpenChange}>
|
||||||
@@ -98,18 +112,22 @@ export function ChangePasswordDialog({
|
|||||||
<Button theme="outline" className={triggerClassName || 'w-24 h-9'}>修改密码</Button>
|
<Button theme="outline" className={triggerClassName || 'w-24 h-9'}>修改密码</Button>
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
<DialogContent>
|
<DialogContent>
|
||||||
<DialogHeader>
|
<Form
|
||||||
<DialogTitle>修改密码</DialogTitle>
|
form={form}
|
||||||
</DialogHeader>
|
handler={async () => {
|
||||||
<Form form={form} handler={handler} className="flex flex-col gap-4 mt-4">
|
const data = form.getValues()
|
||||||
{/* 手机号输入 */}
|
await handler(data)
|
||||||
<FormField<Schema> name="phone" label="手机号" className="flex-auto">
|
}}
|
||||||
{({field}) => (
|
className="flex flex-col gap-4 mt-4">
|
||||||
<Input {...field} placeholder="请输入手机号" autoComplete="tel-national"/>
|
<DialogHeader>
|
||||||
)}
|
<DialogTitle>修改密码</DialogTitle>
|
||||||
</FormField>
|
</DialogHeader>
|
||||||
|
{phone && (
|
||||||
{/* 短信验证码 */}
|
<div className="flex items-center gap-2 p-3 bg-gray-50 rounded-lg">
|
||||||
|
<span className="text-sm text-gray-500">当前用户手机号:</span>
|
||||||
|
<span className="text-sm font-medium">{phone}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
<div className="flex gap-4 items-end">
|
<div className="flex gap-4 items-end">
|
||||||
<FormField<Schema> name="code" label="验证码" className="flex-auto">
|
<FormField<Schema> name="code" label="验证码" className="flex-auto">
|
||||||
{({field}) => (
|
{({field}) => (
|
||||||
@@ -118,36 +136,35 @@ export function ChangePasswordDialog({
|
|||||||
</FormField>
|
</FormField>
|
||||||
<SendMsgByPhone/>
|
<SendMsgByPhone/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* 新密码 */}
|
|
||||||
<FormField<Schema> name="password" label="新密码" className="flex-auto">
|
<FormField<Schema> name="password" label="新密码" className="flex-auto">
|
||||||
{({field}) => (
|
{({field}) => (
|
||||||
<Input {...field} placeholder="请输入新密码" type="password" autoComplete="new-password"/>
|
<Input {...field} placeholder="请输入新密码" type="password" autoComplete="new-password"/>
|
||||||
)}
|
)}
|
||||||
</FormField>
|
</FormField>
|
||||||
|
|
||||||
{/* 确认密码 */}
|
|
||||||
<FormField<Schema> name="confirm_password" label="确认密码" className="flex-auto">
|
<FormField<Schema> name="confirm_password" label="确认密码" className="flex-auto">
|
||||||
{({field}) => (
|
{({field}) => (
|
||||||
<Input {...field} placeholder="请再次输入新密码" type="password" autoComplete="new-password"/>
|
<Input {...field} placeholder="请再次输入新密码" type="password" autoComplete="new-password"/>
|
||||||
)}
|
)}
|
||||||
</FormField>
|
</FormField>
|
||||||
</Form>
|
|
||||||
|
|
||||||
<DialogFooter>
|
<DialogFooter>
|
||||||
<Button
|
<Button
|
||||||
theme="outline"
|
theme="outline"
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
actualOnOpenChange(false)
|
form.reset({
|
||||||
form.reset()
|
captcha: '',
|
||||||
}}>
|
code: '',
|
||||||
关闭
|
password: '',
|
||||||
</Button>
|
confirm_password: '',
|
||||||
<Button onClick={handler}>
|
})
|
||||||
保存
|
actualOnOpenChange(false)
|
||||||
</Button>
|
}}>
|
||||||
</DialogFooter>
|
关闭
|
||||||
|
</Button>
|
||||||
|
<Button type="submit">保存</Button>
|
||||||
|
</DialogFooter>
|
||||||
|
</Form>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
)
|
)
|
||||||
@@ -155,8 +172,7 @@ export function ChangePasswordDialog({
|
|||||||
|
|
||||||
function SendMsgByPhone() {
|
function SendMsgByPhone() {
|
||||||
const {control} = useFormContext<Schema>()
|
const {control} = useFormContext<Schema>()
|
||||||
const phone = useWatch({control, name: 'phone'})
|
return <SendMsg/>
|
||||||
return <SendMsg phone={phone}/>
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const SendMsg = dynamic(() => import('@/components/send-msg'), {ssr: false})
|
const SendMsg = dynamic(() => import('@/components/updateSend-msg'), {ssr: false})
|
||||||
|
|||||||
@@ -337,7 +337,6 @@ function SelectResource() {
|
|||||||
setStatus('load')
|
setStatus('load')
|
||||||
try {
|
try {
|
||||||
const resp = await allResource()
|
const resp = await allResource()
|
||||||
|
|
||||||
if (!resp.success) {
|
if (!resp.success) {
|
||||||
throw new Error('获取套餐失败,请稍后再试')
|
throw new Error('获取套餐失败,请稍后再试')
|
||||||
}
|
}
|
||||||
@@ -381,102 +380,103 @@ function SelectResource() {
|
|||||||
<Loader className="animate-spin" size={20}/>
|
<Loader className="animate-spin" size={20}/>
|
||||||
<span>暂无可用套餐</span>
|
<span>暂无可用套餐</span>
|
||||||
</div>
|
</div>
|
||||||
) : resources.map((resource, i) => (
|
) : (
|
||||||
<>
|
<>
|
||||||
<SelectItem
|
{resources.map(resource => (
|
||||||
key={`${resource.id}`}
|
<SelectItem
|
||||||
value={String(resource.id)}
|
key={resource.id}
|
||||||
className="p-3">
|
value={String(resource.id)}
|
||||||
<div className="flex flex-col gap-2 w-72">
|
className="p-3">
|
||||||
{resource.type === 1 && resource.short.type === 1 && (
|
<div className="flex flex-col gap-2 w-72">
|
||||||
<>
|
{resource.type === 1 && resource.short.type === 1 && (
|
||||||
<div className="flex gap-2 items-center bg-green-50 w-fit px-2 py-1 rounded-md text-sm">
|
<>
|
||||||
<Timer size={20}/>
|
<div className="flex gap-2 items-center bg-green-50 w-fit px-2 py-1 rounded-md text-sm">
|
||||||
<span>{name(resource)}</span>
|
<Timer size={20}/>
|
||||||
</div>
|
<span>{name(resource)}</span>
|
||||||
<div className="flex text-xs text-weak">
|
</div>
|
||||||
<span>{resource.resource_no}</span>
|
<div className="flex text-xs text-weak">
|
||||||
</div>
|
<span>{resource.resource_no}</span>
|
||||||
<div className="flex justify-between gap-2 text-xs text-weak">
|
</div>
|
||||||
<span>
|
<div className="flex justify-between gap-2 text-xs text-weak">
|
||||||
到期时间:
|
<span>
|
||||||
{format(resource.short.expire_at, 'yyyy-MM-dd HH:mm')}
|
到期时间:
|
||||||
</span>
|
{format(resource.short.expire_at, 'yyyy-MM-dd HH:mm')}
|
||||||
<span>{intlFormatDistance(resource.short.expire_at, new Date())}</span>
|
</span>
|
||||||
</div>
|
<span>{intlFormatDistance(resource.short.expire_at, new Date())}</span>
|
||||||
</>
|
</div>
|
||||||
)}
|
</>
|
||||||
{resource.type === 1 && resource.short.type === 2 && (
|
)}
|
||||||
<>
|
{resource.type === 1 && resource.short.type === 2 && (
|
||||||
<div className="flex gap-2 items-center bg-blue-50 w-fit px-2 py-1 rounded-md text-sm">
|
<>
|
||||||
<Box size={20}/>
|
<div className="flex gap-2 items-center bg-blue-50 w-fit px-2 py-1 rounded-md text-sm">
|
||||||
<span>{name(resource)}</span>
|
<Box size={20}/>
|
||||||
</div>
|
<span>{name(resource)}</span>
|
||||||
<div className="flex text-xs text-weak">
|
</div>
|
||||||
<span>{resource.resource_no}</span>
|
<div className="flex text-xs text-weak">
|
||||||
</div>
|
<span>{resource.resource_no}</span>
|
||||||
<div className="flex justify-between gap-2 text-xs text-weak">
|
</div>
|
||||||
<span>
|
<div className="flex justify-between gap-2 text-xs text-weak">
|
||||||
提取数量:
|
<span>
|
||||||
{resource.short.used}
|
提取数量:
|
||||||
{' '}
|
{resource.short.used}
|
||||||
/
|
{' '}
|
||||||
{resource.short.quota}
|
/
|
||||||
</span>
|
{resource.short.quota}
|
||||||
<span>
|
</span>
|
||||||
剩余
|
<span>
|
||||||
{resource.short.quota - resource.short.used}
|
剩余
|
||||||
</span>
|
{resource.short.quota - resource.short.used}
|
||||||
</div>
|
</span>
|
||||||
</>
|
</div>
|
||||||
)}
|
</>
|
||||||
{resource.type === 2 && resource.long.type === 1 && (
|
)}
|
||||||
<>
|
{resource.type === 2 && resource.long.type === 1 && (
|
||||||
<div className="flex gap-2 items-center bg-green-50 w-fit px-2 py-1 rounded-md text-sm">
|
<>
|
||||||
<Timer size={20}/>
|
<div className="flex gap-2 items-center bg-green-50 w-fit px-2 py-1 rounded-md text-sm">
|
||||||
<span>{name(resource)}</span>
|
<Timer size={20}/>
|
||||||
</div>
|
<span>{name(resource)}</span>
|
||||||
<div className="flex text-xs text-weak">
|
</div>
|
||||||
<span>{resource.resource_no}</span>
|
<div className="flex text-xs text-weak">
|
||||||
</div>
|
<span>{resource.resource_no}</span>
|
||||||
<div className="flex justify-between gap-2 text-xs text-weak">
|
</div>
|
||||||
<span>
|
<div className="flex justify-between gap-2 text-xs text-weak">
|
||||||
到期时间:
|
<span>
|
||||||
{format(resource.long.expire_at, 'yyyy-MM-dd HH:mm')}
|
到期时间:
|
||||||
</span>
|
{format(resource.long.expire_at, 'yyyy-MM-dd HH:mm')}
|
||||||
<span>{intlFormatDistance(resource.long.expire_at, new Date())}</span>
|
</span>
|
||||||
</div>
|
<span>{intlFormatDistance(resource.long.expire_at, new Date())}</span>
|
||||||
</>
|
</div>
|
||||||
)}
|
</>
|
||||||
{resource.type === 2 && resource.long.type === 2 && (
|
)}
|
||||||
<>
|
{resource.type === 2 && resource.long.type === 2 && (
|
||||||
<div className="flex gap-2 items-center bg-blue-50 w-fit px-2 py-1 rounded-md text-sm">
|
<>
|
||||||
<Box size={20}/>
|
<div className="flex gap-2 items-center bg-blue-50 w-fit px-2 py-1 rounded-md text-sm">
|
||||||
<span>{name(resource)}</span>
|
<Box size={20}/>
|
||||||
</div>
|
<span>{name(resource)}</span>
|
||||||
<div className="flex text-xs text-weak">
|
</div>
|
||||||
<span>{resource.resource_no}</span>
|
<div className="flex text-xs text-weak">
|
||||||
</div>
|
<span>{resource.resource_no}</span>
|
||||||
<div className="flex justify-between gap-2 text-xs text-weak">
|
</div>
|
||||||
<span>
|
<div className="flex justify-between gap-2 text-xs text-weak">
|
||||||
提取数量:
|
<span>
|
||||||
{resource.long.used}
|
提取数量:
|
||||||
{' '}
|
{resource.long.used}
|
||||||
/
|
{' '}
|
||||||
{resource.long.quota}
|
/
|
||||||
</span>
|
{resource.long.quota}
|
||||||
<span>
|
</span>
|
||||||
剩余
|
<span>
|
||||||
{resource.long.quota - resource.long.used}
|
剩余
|
||||||
</span>
|
{resource.long.quota - resource.long.used}
|
||||||
</div>
|
</span>
|
||||||
</>
|
</div>
|
||||||
)}
|
</>
|
||||||
</div>
|
)}
|
||||||
</SelectItem>
|
</div>
|
||||||
{i < resources.length - 1 && <SelectSeparator className="m-1"/>}
|
</SelectItem>
|
||||||
|
))}
|
||||||
</>
|
</>
|
||||||
))}
|
)}
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
)}
|
)}
|
||||||
@@ -651,9 +651,9 @@ function name(resource: Resource) {
|
|||||||
// 短效套餐
|
// 短效套餐
|
||||||
switch (resource.short.type) {
|
switch (resource.short.type) {
|
||||||
case 1:
|
case 1:
|
||||||
return `短效包时 ${resource.short.live / 60} 分钟`
|
return `短效包时 ${resource.short.live} 分钟`
|
||||||
case 2:
|
case 2:
|
||||||
return `短效包量 ${resource.short.live / 60} 分钟`
|
return `短效包量 ${resource.short.live} 分钟`
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,10 @@ import {Loader} from 'lucide-react'
|
|||||||
import {useState} from 'react'
|
import {useState} from 'react'
|
||||||
import Image from 'next/image'
|
import Image from 'next/image'
|
||||||
import {PaymentModalProps} from './payment-modal'
|
import {PaymentModalProps} from './payment-modal'
|
||||||
|
import {getTradeMethodDecoration} from '@/lib/models/trade'
|
||||||
|
|
||||||
export function DesktopPayment(props: PaymentModalProps) {
|
export function DesktopPayment(props: PaymentModalProps) {
|
||||||
|
const decoration = getTradeMethodDecoration(props.method)
|
||||||
const [loading, setLoading] = useState(false)
|
const [loading, setLoading] = useState(false)
|
||||||
|
|
||||||
const onSubmit = async () => {
|
const onSubmit = async () => {
|
||||||
@@ -19,10 +21,10 @@ export function DesktopPayment(props: PaymentModalProps) {
|
|||||||
<DialogContent>
|
<DialogContent>
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
<DialogTitle className="flex gap-2 items-center">
|
<DialogTitle className="flex gap-2 items-center">
|
||||||
{props.decoration.icon ? (
|
{decoration.icon ? (
|
||||||
<Image
|
<Image
|
||||||
src={props.decoration.icon}
|
src={decoration.icon}
|
||||||
alt={props.decoration.text}
|
alt={decoration.text}
|
||||||
width={24}
|
width={24}
|
||||||
height={24}
|
height={24}
|
||||||
className="rounded-md"
|
className="rounded-md"
|
||||||
@@ -30,7 +32,7 @@ export function DesktopPayment(props: PaymentModalProps) {
|
|||||||
) : (
|
) : (
|
||||||
<div className="w-6 h-6 bg-gray-200 rounded-full"/>
|
<div className="w-6 h-6 bg-gray-200 rounded-full"/>
|
||||||
)}
|
)}
|
||||||
<span>{props.decoration.text}</span>
|
<span>{decoration.text}</span>
|
||||||
</DialogTitle>
|
</DialogTitle>
|
||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
|
|
||||||
@@ -43,8 +45,8 @@ export function DesktopPayment(props: PaymentModalProps) {
|
|||||||
/>
|
/>
|
||||||
<p className="text-sm text-gray-600">
|
<p className="text-sm text-gray-600">
|
||||||
请使用
|
请使用
|
||||||
{props.decoration.text}
|
{decoration.text}
|
||||||
扫码支付
|
{/* 扫码支付 */}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div className="w-full text-center space-y-2">
|
<div className="w-full text-center space-y-2">
|
||||||
|
|||||||
@@ -6,8 +6,10 @@ import {CreditCard, Loader} from 'lucide-react'
|
|||||||
import {useState} from 'react'
|
import {useState} from 'react'
|
||||||
import Image from 'next/image'
|
import Image from 'next/image'
|
||||||
import {PaymentModalProps} from './payment-modal'
|
import {PaymentModalProps} from './payment-modal'
|
||||||
|
import {getTradeMethodDecoration} from '@/lib/models/trade'
|
||||||
|
|
||||||
export function MobilePayment(props: PaymentModalProps) {
|
export function MobilePayment(props: PaymentModalProps) {
|
||||||
|
const decoration = getTradeMethodDecoration(props.method)
|
||||||
const [loading, setLoading] = useState(false) // 加载状态
|
const [loading, setLoading] = useState(false) // 加载状态
|
||||||
const [paymentInitiated, setPaymentInitiated] = useState(false) // 是否已发起支付
|
const [paymentInitiated, setPaymentInitiated] = useState(false) // 是否已发起支付
|
||||||
|
|
||||||
@@ -54,16 +56,16 @@ export function MobilePayment(props: PaymentModalProps) {
|
|||||||
<div className="flex justify-between">
|
<div className="flex justify-between">
|
||||||
<span className="text-gray-600">支付方式</span>
|
<span className="text-gray-600">支付方式</span>
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
{props.decoration.icon && (
|
{decoration.icon && (
|
||||||
<Image
|
<Image
|
||||||
src={props.decoration.icon}
|
src={decoration.icon}
|
||||||
alt={props.decoration.text}
|
alt={decoration.text}
|
||||||
width={28}
|
width={28}
|
||||||
height={28}
|
height={28}
|
||||||
className="rounded-md"
|
className="rounded-md"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
<span>{props.decoration.text}</span>
|
<span>{decoration.text}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex justify-between">
|
<div className="flex justify-between">
|
||||||
|
|||||||
@@ -6,7 +6,8 @@ import {Dialog} from '@/components/ui/dialog'
|
|||||||
import {PaymentProps} from './type'
|
import {PaymentProps} from './type'
|
||||||
import {payClose} from '@/actions/resource'
|
import {payClose} from '@/actions/resource'
|
||||||
import {useEffect} from 'react'
|
import {useEffect} from 'react'
|
||||||
import {useRouter} from 'next/navigation'
|
import {UniversalDesktopPayment} from './universal-desktop-payment'
|
||||||
|
import {useAppStore} from '@/components/stores/app'
|
||||||
|
|
||||||
export type PaymentModalProps = {
|
export type PaymentModalProps = {
|
||||||
onConfirm: (showFail: boolean) => Promise<void>
|
onConfirm: (showFail: boolean) => Promise<void>
|
||||||
@@ -34,9 +35,10 @@ export function PaymentModal(props: PaymentModalProps) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// SSE处理方式检查支付状态
|
// SSE处理方式检查支付状态
|
||||||
|
const apiUrl = useAppStore('apiUrl')
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const eventSource = new EventSource(
|
const eventSource = new EventSource(
|
||||||
`${process.env.NEXT_PUBLIC_API_BASE_URL}/api/trade/check?trade_no=${props.inner_no}&method=${props.method}`,
|
`${apiUrl}/api/trade/check?trade_no=${props.inner_no}&method=${props.method}`,
|
||||||
)
|
)
|
||||||
eventSource.onmessage = async (event) => {
|
eventSource.onmessage = async (event) => {
|
||||||
switch (event.data) {
|
switch (event.data) {
|
||||||
@@ -53,7 +55,7 @@ export function PaymentModal(props: PaymentModalProps) {
|
|||||||
return () => {
|
return () => {
|
||||||
eventSource.close()
|
eventSource.close()
|
||||||
}
|
}
|
||||||
}, [props])
|
}, [apiUrl, props])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog
|
<Dialog
|
||||||
@@ -61,17 +63,13 @@ export function PaymentModal(props: PaymentModalProps) {
|
|||||||
onOpenChange={(open) => {
|
onOpenChange={(open) => {
|
||||||
if (!open) handleClose()
|
if (!open) handleClose()
|
||||||
}}>
|
}}>
|
||||||
{props.platform === TradePlatform.Mobile ? (
|
|
||||||
<MobilePayment
|
{props.platform === TradePlatform.Mobile
|
||||||
{...props}
|
? <MobilePayment {...props} onClose={handleClose}/>
|
||||||
onClose={handleClose}
|
: <DesktopPayment {...props} onClose={handleClose}/>
|
||||||
/>
|
}
|
||||||
) : (
|
|
||||||
<DesktopPayment
|
{/* <UniversalDesktopPayment {...props} onClose={handleClose}/> */}
|
||||||
{...props}
|
|
||||||
onClose={handleClose}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</Dialog>
|
</Dialog>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,8 +8,4 @@ export type PaymentProps = {
|
|||||||
amount: number
|
amount: number
|
||||||
platform: TradePlatform
|
platform: TradePlatform
|
||||||
method: TradeMethod
|
method: TradeMethod
|
||||||
decoration: {
|
|
||||||
icon: StaticImageData
|
|
||||||
text: string
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,83 @@
|
|||||||
|
'use client'
|
||||||
|
import {DialogClose, DialogContent, DialogHeader, DialogTitle} from '@/components/ui/dialog'
|
||||||
|
import {Button} from '@/components/ui/button'
|
||||||
|
import {Loader} from 'lucide-react'
|
||||||
|
import {useState} from 'react'
|
||||||
|
import Image from 'next/image'
|
||||||
|
import {PaymentModalProps} from './payment-modal'
|
||||||
|
import {getTradeMethodDecoration, TradePlatform} from '@/lib/models/trade'
|
||||||
|
|
||||||
|
export function UniversalDesktopPayment(props: PaymentModalProps) {
|
||||||
|
const decoration = getTradeMethodDecoration(props.method)
|
||||||
|
const [loading, setLoading] = useState(false)
|
||||||
|
|
||||||
|
const onSubmit = async () => {
|
||||||
|
setLoading(true)
|
||||||
|
await props.onConfirm(true)
|
||||||
|
setLoading(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DialogContent>
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle className="flex gap-2 items-center">
|
||||||
|
{decoration.icon ? (
|
||||||
|
<Image
|
||||||
|
src={decoration.icon}
|
||||||
|
alt={decoration.text}
|
||||||
|
width={24}
|
||||||
|
height={24}
|
||||||
|
className="rounded-md"
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<div className="w-6 h-6 bg-gray-200 rounded-full"/>
|
||||||
|
)}
|
||||||
|
<span>{decoration.text}</span>
|
||||||
|
</DialogTitle>
|
||||||
|
</DialogHeader>
|
||||||
|
|
||||||
|
<div className="flex flex-col items-center gap-4">
|
||||||
|
<Image
|
||||||
|
src={props.pay_url}
|
||||||
|
width={208}
|
||||||
|
height={208}
|
||||||
|
alt="二维码"
|
||||||
|
/>
|
||||||
|
<div className="flex-none flex flex-col gap-1 items-center">
|
||||||
|
<p className="text-sm text-gray-600">
|
||||||
|
请使用 微信 或 支付宝 扫码支付
|
||||||
|
</p>
|
||||||
|
<p className="text-sm text-gray-600">
|
||||||
|
手机端长按二维码下载并识图
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="w-full text-center space-y-2">
|
||||||
|
<p className="text-sm font-medium">
|
||||||
|
支付金额:
|
||||||
|
<span className="text-accent">
|
||||||
|
¥
|
||||||
|
{props.amount?.toFixed(2) || '0.00'}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<p className="text-xs text-gray-500">
|
||||||
|
订单号:
|
||||||
|
{props.inner_no}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex gap-4 w-full justify-center">
|
||||||
|
<Button onClick={onSubmit}>
|
||||||
|
{loading && <Loader className="animate-spin mr-2"/>}
|
||||||
|
已完成支付
|
||||||
|
</Button>
|
||||||
|
<DialogClose asChild>
|
||||||
|
<Button theme="outline" onClick={() => props.onClose?.()}>
|
||||||
|
关闭
|
||||||
|
</Button>
|
||||||
|
</DialogClose>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</DialogContent>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -1,244 +0,0 @@
|
|||||||
'use client'
|
|
||||||
import {Form, FormField} from '@/components/ui/form'
|
|
||||||
import {Input} from '@/components/ui/input'
|
|
||||||
import {Button} from '@/components/ui/button'
|
|
||||||
import {Select, SelectContent, SelectItem, SelectTrigger, SelectValue} from '@/components/ui/select'
|
|
||||||
import {useForm} from 'react-hook-form'
|
|
||||||
import {z} from 'zod'
|
|
||||||
import {zodResolver} from '@hookform/resolvers/zod'
|
|
||||||
import Image from 'next/image'
|
|
||||||
import check from '@/assets/check-accent.svg'
|
|
||||||
import banner from '../_assets/Mask-group.webp'
|
|
||||||
import group from '../_assets/Group.webp'
|
|
||||||
import {merge} from '@/lib/utils'
|
|
||||||
import FreeTrial from '@/components/free-trial'
|
|
||||||
|
|
||||||
const formSchema = z.object({
|
|
||||||
companyName: z.string().min(2, '企业名称至少2个字符'),
|
|
||||||
contactName: z.string().min(2, '联系人姓名至少2个字符'),
|
|
||||||
phone: z.string().min(11, '请输入11位手机号码').max(11, '手机号码长度不正确'),
|
|
||||||
monthlyUsage: z.string().min(1, '请选择您需要的用量'),
|
|
||||||
purpose: z.string().min(1, '输入用途'),
|
|
||||||
})
|
|
||||||
|
|
||||||
type FormValues = z.infer<typeof formSchema>
|
|
||||||
|
|
||||||
export default function CollectPage() {
|
|
||||||
const form = useForm<FormValues>({
|
|
||||||
resolver: zodResolver(formSchema),
|
|
||||||
defaultValues: {
|
|
||||||
companyName: '',
|
|
||||||
contactName: '',
|
|
||||||
phone: '',
|
|
||||||
monthlyUsage: '',
|
|
||||||
purpose: '',
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<div className="bg-white rounded-lg shadow-md overflow-hidden p-6">
|
|
||||||
<div className="text-center mb-4">
|
|
||||||
<h1 className="text-2xl font-bold">优质代理IP服务商</h1>
|
|
||||||
<p className="text-gray-600 font-medium mt-2">
|
|
||||||
以技术升级为核心,提供优质的IP代理使用体验
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="flex flex-col md:flex-row md:gap-4">
|
|
||||||
<div className="w-full md:w-1/3 mb-6 md:mb-0">
|
|
||||||
<div className="relative h-full w-full min-h-[200px] md:min-h-[300px] rounded-xl overflow-hidden">
|
|
||||||
<Image
|
|
||||||
src={banner}
|
|
||||||
alt="宣传图"
|
|
||||||
fill
|
|
||||||
className="object-cover"
|
|
||||||
priority
|
|
||||||
sizes="(max-width: 768px) 100vw, 33vw"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="w-full md:w-2/3 flex flex-col gap-4">
|
|
||||||
<p className="text-sm md:text-base text-gray-600 leading-relaxed">
|
|
||||||
华连科技公司专注代理IP领域,多年来凭借专业技术与不懈努力,在行业内树立起良好口碑,为众多客户解决网络访问难题。公司拥有海量优质IP资源,涵盖全球多地,能精准匹配不同客户需求,无论是数据采集、网络营销还是突破地域限制,都能提供合适方案。凭借智能分配系统与严密安全防护,确保代理IP稳定、高效、安全运行,让用户使用过程顺畅无忧,数据安全有保障。秉持以客户为中心理念,配备专业客服与技术团队,提供7×24小时服务,助力企业与个人在网络世界畅行无阻,不断开拓业务新边界。
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div className="mt-2 md:mt-4">
|
|
||||||
<Button className="w-full md:w-auto bg-blue-600 hover:bg-blue-700 text-white px-4 md:px-6 py-2 md:py-3 rounded-md">
|
|
||||||
立即咨询
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="grid grid-cols-2 md:grid-cols-3 gap-3 md:gap-4 mt-2 md:mt-6">
|
|
||||||
<div className="flex gap-1 md:gap-2 items-center text-xs md:text-sm">
|
|
||||||
<Image src={check} alt="特性" width={16} height={16} className="w-4 h-4 md:w-5 md:h-5"/>
|
|
||||||
<span>IP时效3-30分钟(可定制)</span>
|
|
||||||
</div>
|
|
||||||
<div className="flex gap-1 md:gap-2 items-center text-xs md:text-sm">
|
|
||||||
<Image src={check} alt="特性" width={16} height={16} className="w-4 h-4 md:w-5 md:h-5"/>
|
|
||||||
<span>IP时效3-30分钟(可定制)</span>
|
|
||||||
</div>
|
|
||||||
<div className="flex gap-1 md:gap-2 items-center text-xs md:text-sm">
|
|
||||||
<Image src={check} alt="特性" width={16} height={16} className="w-4 h-4 md:w-5 md:h-5"/>
|
|
||||||
<span>IP时效3-30分钟(可定制)</span>
|
|
||||||
</div>
|
|
||||||
<div className="flex gap-1 md:gap-2 items-center text-xs md:text-sm">
|
|
||||||
<Image src={check} alt="特性" width={16} height={16} className="w-4 h-4 md:w-5 md:h-5"/>
|
|
||||||
<span>支持高并发提取</span>
|
|
||||||
</div>
|
|
||||||
<div className="flex gap-1 md:gap-2 items-center text-xs md:text-sm">
|
|
||||||
<Image src={check} alt="特性" width={16} height={16} className="w-4 h-4 md:w-5 md:h-5"/>
|
|
||||||
<span>支持高并发提取</span>
|
|
||||||
</div>
|
|
||||||
<div className="flex gap-1 md:gap-2 items-center text-xs md:text-sm">
|
|
||||||
<Image src={check} alt="特性" width={16} height={16} className="w-4 h-4 md:w-5 md:h-5"/>
|
|
||||||
<span>支持高并发提取</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="text-center">
|
|
||||||
<h2 className="text-2xl font-semibold mb-6 mt-6">企业基本信息</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="bg-white rounded-lg shadow-md p-6">
|
|
||||||
<Form form={form}>
|
|
||||||
<div className="mx-auto max-w-xl space-y-6">
|
|
||||||
{/* 企业名称 */}
|
|
||||||
<FormField name="companyName">
|
|
||||||
{({id, field}) => (
|
|
||||||
<div className="flex flex-col md:flex-row items-start md:items-center justify-start md:justify-between">
|
|
||||||
<label
|
|
||||||
htmlFor={id}
|
|
||||||
className="text-sm flex items-center gap-1 mb-2 md:mb-0 md:w-1/3 md:text-right">
|
|
||||||
<span className="text-red-500">*</span>
|
|
||||||
<span>企业名称</span>
|
|
||||||
</label>
|
|
||||||
<Input
|
|
||||||
{...field}
|
|
||||||
id={id}
|
|
||||||
placeholder="请输入企业名称"
|
|
||||||
className="flex-1 w-full md:w-2/3 md:ml-4 md:max-w-xs"/>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
|
|
||||||
{/* 联系人姓名 */}
|
|
||||||
<FormField name="contactName">
|
|
||||||
{({id, field}) => (
|
|
||||||
<div className="flex flex-col md:flex-row items-start md:items-center justify-start md:justify-between">
|
|
||||||
<label
|
|
||||||
htmlFor={id}
|
|
||||||
className="text-sm flex items-center gap-1 mb-2 md:mb-0 md:w-1/3 md:text-right">
|
|
||||||
<span className="text-red-500">*</span>
|
|
||||||
<span>联系人姓名</span>
|
|
||||||
</label>
|
|
||||||
<Input
|
|
||||||
{...field}
|
|
||||||
id={id}
|
|
||||||
placeholder="请输入联系人姓名"
|
|
||||||
className="flex-1 w-full md:w-2/3 md:ml-4 md:max-w-xs"/>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
|
|
||||||
{/* 联系人手机号码 */}
|
|
||||||
<FormField name="phone">
|
|
||||||
{({id, field}) => (
|
|
||||||
<div className="flex flex-col md:flex-row items-start md:items-center justify-start md:justify-between">
|
|
||||||
<label
|
|
||||||
htmlFor={id}
|
|
||||||
className="text-sm flex items-center gap-1 mb-2 md:mb-0 md:w-1/3 md:text-right">
|
|
||||||
<span className="text-red-500">*</span>
|
|
||||||
<span>联系人手机号码</span>
|
|
||||||
</label>
|
|
||||||
<Input
|
|
||||||
{...field}
|
|
||||||
id={id}
|
|
||||||
placeholder="请输入手机号码"
|
|
||||||
className="flex-1 w-full md:w-2/3 md:ml-4 md:max-w-xs"/>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
|
|
||||||
{/* 每月需求用量 */}
|
|
||||||
<FormField name="monthlyUsage">
|
|
||||||
{({id, field}) => (
|
|
||||||
<div className="flex flex-col md:flex-row items-start md:items-center justify-start md:justify-between">
|
|
||||||
<label
|
|
||||||
htmlFor={id}
|
|
||||||
className="text-sm flex items-center gap-1 mb-2 md:mb-0 md:w-1/3 md:text-right">
|
|
||||||
<span className="text-red-500">*</span>
|
|
||||||
<span>每月需求用量</span>
|
|
||||||
</label>
|
|
||||||
<Select onValueChange={field.onChange} value={field.value}>
|
|
||||||
<SelectTrigger
|
|
||||||
id={id}
|
|
||||||
className="flex-1 w-full md:w-2/3 md:ml-4 md:max-w-xs">
|
|
||||||
<SelectValue placeholder="请选择您需要的用量"/>
|
|
||||||
</SelectTrigger>
|
|
||||||
<SelectContent>
|
|
||||||
<SelectItem value="less20">小于20万</SelectItem>
|
|
||||||
<SelectItem value="20-100">20万~100万</SelectItem>
|
|
||||||
<SelectItem value="100-500">100万~500万</SelectItem>
|
|
||||||
<SelectItem value="more500">大于500万</SelectItem>
|
|
||||||
</SelectContent>
|
|
||||||
</Select>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
|
|
||||||
{/* 用途 */}
|
|
||||||
<FormField name="purpose">
|
|
||||||
{({id, field}) => (
|
|
||||||
<div className="flex flex-col md:flex-row items-start md:items-center justify-start md:justify-between">
|
|
||||||
<label
|
|
||||||
htmlFor={id}
|
|
||||||
className="text-sm flex items-center gap-1 mb-2 md:mb-0 md:w-1/3 md:text-right">
|
|
||||||
<span className="text-red-500">*</span>
|
|
||||||
<span>用途</span>
|
|
||||||
</label>
|
|
||||||
<Input
|
|
||||||
{...field}
|
|
||||||
id={id}
|
|
||||||
placeholder="请输入用途,例如:爬虫"
|
|
||||||
className="flex-1 w-full md:w-2/3 md:ml-4 md:max-w-xs"/>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
|
|
||||||
<div className="pt-4 flex justify-center">
|
|
||||||
<Button type="submit" className="bg-blue-600 hover:bg-blue-700 px-8">
|
|
||||||
提交
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Form>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="relative mt-8 rounded-lg overflow-hidden">
|
|
||||||
<div className="h-40 md:h-48 relative">
|
|
||||||
<div
|
|
||||||
className="absolute inset-0 bg-no-repeat"
|
|
||||||
style={{
|
|
||||||
backgroundImage: `url(${group.src})`,
|
|
||||||
backgroundPosition: 'center',
|
|
||||||
backgroundSize: 'cover',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<div className="absolute inset-0 flex items-center justify-center">
|
|
||||||
<div className="w-full max-w-4xl px-6 flex flex-col md:flex-row items-center gap-4 justify-between md:gap-10">
|
|
||||||
<div className="text-blue-600 font-bold text-2xl md:text-2xl text-center md:text-left">
|
|
||||||
现在注册,免费领取5000IP
|
|
||||||
</div>
|
|
||||||
<FreeTrial className={merge('bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md whitespace-nowrap')}/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,11 +1,13 @@
|
|||||||
'use client'
|
'use client'
|
||||||
import {ReactNode} from 'react'
|
import {ReactNode, use, useEffect, useState} from 'react'
|
||||||
import {merge} from '@/lib/utils'
|
import {merge} from '@/lib/utils'
|
||||||
import {Tabs, TabsContent, TabsList, TabsTrigger} from '@/components/ui/tabs'
|
import {Tabs, TabsContent, TabsList, TabsTrigger} from '@/components/ui/tabs'
|
||||||
import LongForm from '@/components/composites/purchase/long/form'
|
import LongForm from '@/components/composites/purchase/long/form'
|
||||||
import ShortForm from '@/components/composites/purchase/short/form'
|
import ShortForm from '@/components/composites/purchase/short/form'
|
||||||
import {usePathname, useRouter, useSearchParams} from 'next/navigation'
|
import {usePathname, useRouter, useSearchParams} from 'next/navigation'
|
||||||
import SelfDesc from '@/components/features/self-desc'
|
import SelfDesc from '@/components/features/self-desc'
|
||||||
|
import {listProduct, listProductHome, ProductItem} from '@/actions/product'
|
||||||
|
import {useProfileStore} from '@/components/stores/profile'
|
||||||
export type TabType = 'short' | 'long' | 'fixed' | 'custom'
|
export type TabType = 'short' | 'long' | 'fixed' | 'custom'
|
||||||
|
|
||||||
export default function Purchase() {
|
export default function Purchase() {
|
||||||
@@ -13,35 +15,57 @@ export default function Purchase() {
|
|||||||
const path = usePathname()
|
const path = usePathname()
|
||||||
const params = useSearchParams()
|
const params = useSearchParams()
|
||||||
|
|
||||||
const tab = params.get('type') as TabType || 'short'
|
const [productList, setProductList] = useState<ProductItem[]>([])
|
||||||
|
const tab = (params.get('type') as TabType) || productList[0]?.code || 'short'
|
||||||
|
|
||||||
const updateTab = (tab: string) => {
|
const updateTab = (tab: string) => {
|
||||||
const newParams = new URLSearchParams(params)
|
const newParams = new URLSearchParams(params)
|
||||||
newParams.set('type', tab)
|
newParams.set('type', tab)
|
||||||
router.push(`${path}?${newParams.toString()}`)
|
router.push(`${path}?${newParams.toString()}`)
|
||||||
}
|
}
|
||||||
|
const profile = use(useProfileStore(store => store.profile))
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchProducts = async () => {
|
||||||
|
const res = profile
|
||||||
|
? await listProduct({})
|
||||||
|
: await listProductHome({})
|
||||||
|
|
||||||
|
if (res.success) {
|
||||||
|
setProductList(res.data)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fetchProducts()
|
||||||
|
}, [profile])
|
||||||
|
|
||||||
|
const componentMap: Record<string, React.FC<{skuList: ProductItem['skus']}>> = {
|
||||||
|
short: ShortForm,
|
||||||
|
long: LongForm,
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-4">
|
<div className="flex flex-col gap-4">
|
||||||
<Tabs value={tab} onValueChange={updateTab} className="gap-4">
|
<Tabs value={tab} onValueChange={updateTab} className="gap-4">
|
||||||
<TabsList className="w-full p-2 bg-white rounded-lg justify-start md:justify-center overflow-auto">
|
<TabsList className="w-full p-2 bg-white rounded-lg justify-start md:justify-center overflow-auto">
|
||||||
<Tab value="short">短效动态</Tab>
|
{productList.map(item => (
|
||||||
<Tab value="long">长效静态</Tab>
|
<Tab key={item.code} value={item.code}>
|
||||||
<Tab value="fixed">固定套餐</Tab>
|
{item.name}
|
||||||
|
</Tab>
|
||||||
|
))}
|
||||||
|
{/* 固定的定制套餐tab */}
|
||||||
<Tab value="custom">定制套餐</Tab>
|
<Tab value="custom">定制套餐</Tab>
|
||||||
</TabsList>
|
</TabsList>
|
||||||
<TabsContent value="short">
|
{productList.map((item) => {
|
||||||
<ShortForm/>
|
const Component = componentMap[item.code]
|
||||||
</TabsContent>
|
const skuList = item.skus || []
|
||||||
<TabsContent value="long">
|
return (
|
||||||
<LongForm/>
|
<TabsContent key={item.code} value={item.code}>
|
||||||
</TabsContent>
|
{Component ? <Component skuList={skuList}/> : <div>页面待开发中</div>}
|
||||||
<TabsContent value="fixed">
|
</TabsContent>
|
||||||
</TabsContent>
|
)
|
||||||
|
})}
|
||||||
|
|
||||||
<TabsContent value="custom">
|
<TabsContent value="custom">
|
||||||
<SelfDesc onInquiry={() => {
|
<SelfDesc onInquiry={() => router.push('/custom')}/>
|
||||||
router.push('/custom')
|
|
||||||
}}/>
|
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,246 +1,164 @@
|
|||||||
'use client'
|
'use client'
|
||||||
import {FormField} from '@/components/ui/form'
|
import {FormField} from '@/components/ui/form'
|
||||||
import {RadioGroup} from '@/components/ui/radio-group'
|
import {RadioGroup} from '@/components/ui/radio-group'
|
||||||
import {Input} from '@/components/ui/input'
|
|
||||||
import {Button} from '@/components/ui/button'
|
|
||||||
import {Minus, Plus} from 'lucide-react'
|
|
||||||
import FormOption from '@/components/composites/purchase/option'
|
import FormOption from '@/components/composites/purchase/option'
|
||||||
import Image from 'next/image'
|
|
||||||
import check from '../_assets/check.svg'
|
|
||||||
import {Schema} from '@/components/composites/purchase/long/form'
|
import {Schema} from '@/components/composites/purchase/long/form'
|
||||||
|
import {useEffect} from 'react'
|
||||||
import {useFormContext, useWatch} from 'react-hook-form'
|
import {useFormContext, useWatch} from 'react-hook-form'
|
||||||
import {Card} from '@/components/ui/card'
|
import {Card} from '@/components/ui/card'
|
||||||
import {useEffect} from 'react'
|
import {BillingMethodField} from '../shared/billing-method-field'
|
||||||
|
import {FeatureList} from '../shared/feature-list'
|
||||||
|
import {NumberStepperField} from '../shared/number-stepper-field'
|
||||||
|
import {getAvailablePurchaseExpires, getAvailablePurchaseLives, getPurchaseSkuPrice, hasPurchaseSku, PurchaseSkuData} from '../shared/sku'
|
||||||
|
|
||||||
|
export default function Center({skuData}: {
|
||||||
|
skuData: PurchaseSkuData
|
||||||
|
}) {
|
||||||
|
const {setValue} = useFormContext<Schema>()
|
||||||
|
const type = useWatch<Schema>({name: 'type'}) as Schema['type']
|
||||||
|
const live = useWatch<Schema>({name: 'live'}) as Schema['live']
|
||||||
|
const expire = useWatch<Schema>({name: 'expire'}) as Schema['expire']
|
||||||
|
const {modeList, priceMap} = skuData
|
||||||
|
const liveList = type === '1'
|
||||||
|
? getAvailablePurchaseLives(skuData, {mode: type, expire})
|
||||||
|
: getAvailablePurchaseLives(skuData, {mode: type})
|
||||||
|
const expireList = type === '1'
|
||||||
|
? getAvailablePurchaseExpires(skuData, {mode: type, live})
|
||||||
|
: []
|
||||||
|
|
||||||
export default function Center() {
|
|
||||||
const form = useFormContext<Schema>()
|
|
||||||
const type = useWatch({name: 'type'})
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (type === '1') {
|
const nextType = modeList.includes(type) ? type : modeList[0]
|
||||||
form.setValue('daily_limit', 100)
|
|
||||||
|
if (!nextType) {
|
||||||
|
return
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
form.setValue('quota', 500)
|
if (nextType !== type) {
|
||||||
|
setValue('type', nextType)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}, [type, form])
|
|
||||||
|
const nextLiveList = nextType === '1'
|
||||||
|
? getAvailablePurchaseLives(skuData, {mode: nextType, expire})
|
||||||
|
: getAvailablePurchaseLives(skuData, {mode: nextType})
|
||||||
|
const nextLive = nextLiveList.includes(live) ? live : nextLiveList[0]
|
||||||
|
|
||||||
|
if (nextLive && nextLive !== live) {
|
||||||
|
setValue('live', nextLive)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nextType === '2') {
|
||||||
|
if (expire !== '0') {
|
||||||
|
setValue('expire', '0')
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const nextExpireList = getAvailablePurchaseExpires(skuData, {mode: nextType, live: nextLive})
|
||||||
|
if (!nextExpireList.includes(expire) && nextExpireList[0]) {
|
||||||
|
setValue('expire', nextExpireList[0])
|
||||||
|
}
|
||||||
|
}, [expire, live, modeList, setValue, skuData, type])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Card className="flex-auto p-6 flex flex-col gap-6 relative">
|
<Card className="flex-auto p-6 flex flex-col gap-6 relative">
|
||||||
|
<BillingMethodField modeList={modeList} timeDailyLimit={100}/>
|
||||||
{/* 计费方式 */}
|
|
||||||
<FormField
|
|
||||||
className="flex flex-col gap-4"
|
|
||||||
name="type"
|
|
||||||
label="计费方式">
|
|
||||||
{({id, field}) => (
|
|
||||||
<RadioGroup
|
|
||||||
id={id}
|
|
||||||
defaultValue={field.value}
|
|
||||||
onValueChange={field.onChange}
|
|
||||||
className="flex gap-4 max-md:flex-col">
|
|
||||||
|
|
||||||
<FormOption
|
|
||||||
id={`${id}-2`}
|
|
||||||
value="2"
|
|
||||||
label="包量套餐"
|
|
||||||
description="适用于短期或不定期高提取业务场景"
|
|
||||||
compare={field.value}/>
|
|
||||||
|
|
||||||
<FormOption
|
|
||||||
id={`${id}-1`}
|
|
||||||
value="1"
|
|
||||||
label="包时套餐"
|
|
||||||
description="适用于每日提取量稳定的业务场景"
|
|
||||||
compare={field.value}/>
|
|
||||||
|
|
||||||
</RadioGroup>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
|
|
||||||
{/* IP 时效 */}
|
{/* IP 时效 */}
|
||||||
<FormField
|
<FormField<Schema, 'live'>
|
||||||
className="space-y-4"
|
className="space-y-4"
|
||||||
name="live"
|
name="live"
|
||||||
label="IP 时效">
|
label="IP 时效">
|
||||||
{({id, field}) => (
|
{({id, field}) => (
|
||||||
<RadioGroup
|
<RadioGroup
|
||||||
id={id}
|
id={id}
|
||||||
defaultValue={field.value}
|
value={field.value}
|
||||||
onValueChange={field.onChange}
|
onValueChange={(value) => {
|
||||||
className="grid grid-cols-[repeat(auto-fill,minmax(120px,1fr))] gap-4">
|
field.onChange(value)
|
||||||
|
|
||||||
<FormOption id={`${id}-1`} value="1" label="1 小时" description="¥0.3/IP" compare={field.value}/>
|
if (type !== '1') {
|
||||||
<FormOption id={`${id}-4`} value="4" label="4 小时" description="¥0.8/IP" compare={field.value}/>
|
return
|
||||||
<FormOption id={`${id}-8`} value="8" label="8 小时" description="¥1.2/IP" compare={field.value}/>
|
}
|
||||||
<FormOption id={`${id}-12`} value="12" label="12 小时" description="¥1.8/IP" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-24`} value="24" label="24 小时" description="¥3.5/IP" compare={field.value}/>
|
const nextExpireList = getAvailablePurchaseExpires(skuData, {mode: type, live: value})
|
||||||
|
if (!nextExpireList.includes(expire) && nextExpireList[0]) {
|
||||||
|
setValue('expire', nextExpireList[0])
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
className="grid grid-cols-[repeat(auto-fill,minmax(120px,1fr))] gap-4">
|
||||||
|
{liveList.map((live) => {
|
||||||
|
const priceExpire = type === '1' && !hasPurchaseSku(skuData, {mode: type, live, expire})
|
||||||
|
? getAvailablePurchaseExpires(skuData, {mode: type, live})[0] || '0'
|
||||||
|
: String(expire)
|
||||||
|
const price = getPurchaseSkuPrice(priceMap, {
|
||||||
|
mode: type,
|
||||||
|
live,
|
||||||
|
expire: priceExpire,
|
||||||
|
})
|
||||||
|
return (
|
||||||
|
<FormOption
|
||||||
|
key={live}
|
||||||
|
id={`${id}-${live}`}
|
||||||
|
value={live}
|
||||||
|
label={`${Number(live) / 60} 小时`}
|
||||||
|
description={price && `¥${price}/IP`}
|
||||||
|
compare={field.value}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
})}
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
)}
|
)}
|
||||||
</FormField>
|
</FormField>
|
||||||
|
|
||||||
{/* 根据套餐类型显示不同表单项 */}
|
{/* 套餐时效 */}
|
||||||
{type === '2' ? (
|
{type === '1' && (
|
||||||
/* 包量:IP 购买数量 */
|
<FormField className="space-y-4" name="expire" label="套餐时效">
|
||||||
<FormField
|
{({id, field}) => (
|
||||||
className="space-y-4"
|
<RadioGroup
|
||||||
name="quota"
|
id={id}
|
||||||
label="IP 购买数量">
|
value={field.value}
|
||||||
{({id, field}) => {
|
onValueChange={(value) => {
|
||||||
const value = Number(field.value) || 500
|
field.onChange(value)
|
||||||
const minValue = 500
|
|
||||||
const step = 100
|
const nextLiveList = getAvailablePurchaseLives(skuData, {mode: type, expire: value})
|
||||||
return (
|
if (!nextLiveList.includes(live) && nextLiveList[0]) {
|
||||||
<div className="flex gap-2 items-center">
|
setValue('live', nextLiveList[0])
|
||||||
<Button
|
}
|
||||||
theme="outline"
|
}}
|
||||||
type="button"
|
className="flex gap-4 flex-wrap">
|
||||||
className="h-10 w-10 border border-gray-200 rounded-sm flex items-center justify-center text-lg"
|
{expireList.map(day => (
|
||||||
onClick={() => form.setValue('quota', Math.max(minValue, value - step))}
|
<FormOption
|
||||||
disabled={value === minValue}>
|
key={day}
|
||||||
<Minus/>
|
id={`${id}-${day}`}
|
||||||
</Button>
|
value={day}
|
||||||
<Input
|
label={`${day} 天`}
|
||||||
{...field}
|
compare={field.value}
|
||||||
id={id}
|
|
||||||
type="number"
|
|
||||||
className="w-40 h-10 border border-gray-200 rounded-sm text-center"
|
|
||||||
min={minValue}
|
|
||||||
step={step}
|
|
||||||
onBlur={(e) => {
|
|
||||||
const value = Number(e.target.value)
|
|
||||||
if (value < 500) {
|
|
||||||
form.setValue('quota', 500)
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
<Button
|
))}
|
||||||
theme="outline"
|
</RadioGroup>
|
||||||
type="button"
|
)}
|
||||||
className="h-10 w-10 border border-gray-200 rounded-sm flex items-center justify-center text-lg"
|
|
||||||
onClick={() => form.setValue('quota', value + step)}>
|
|
||||||
<Plus/>
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}}
|
|
||||||
</FormField>
|
</FormField>
|
||||||
) : (
|
|
||||||
<>
|
|
||||||
{/* 包时:套餐时效 */}
|
|
||||||
<FormField
|
|
||||||
className="space-y-4"
|
|
||||||
name="expire"
|
|
||||||
label="套餐时效">
|
|
||||||
{({id, field}) => (
|
|
||||||
<RadioGroup
|
|
||||||
id={id}
|
|
||||||
defaultValue={field.value}
|
|
||||||
onValueChange={field.onChange}
|
|
||||||
className="flex gap-4 flex-wrap">
|
|
||||||
|
|
||||||
<FormOption id={`${id}-7`} value="7" label="7天" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-15`} value="15" label="15天" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-30`} value="30" label="30天" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-90`} value="90" label="90天" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-180`} value="180" label="180天" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-365`} value="365" label="365天" compare={field.value}/>
|
|
||||||
</RadioGroup>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
|
|
||||||
{/* 包时:每日提取上限 */}
|
|
||||||
<FormField
|
|
||||||
className="space-y-4"
|
|
||||||
name="daily_limit"
|
|
||||||
label="每日提取上限">
|
|
||||||
{({id, field}) => {
|
|
||||||
const value = Number(field.value) || 100
|
|
||||||
const minValue = 100
|
|
||||||
const step = 100
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="flex gap-2 items-center">
|
|
||||||
<Button
|
|
||||||
theme="outline"
|
|
||||||
type="button"
|
|
||||||
className={`h-10 w-10 border border-gray-200 rounded-sm flex items-center justify-center text-lg ${
|
|
||||||
value === minValue ? 'opacity-50 cursor-not-allowed' : ''
|
|
||||||
}`}
|
|
||||||
onClick={() => form.setValue('daily_limit', Math.max(minValue, value - step))}
|
|
||||||
disabled={value === minValue}>
|
|
||||||
<Minus/>
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Input
|
|
||||||
{...field}
|
|
||||||
id={id}
|
|
||||||
type="number"
|
|
||||||
className="w-40 h-10 border border-gray-200 rounded-sm text-center"
|
|
||||||
min={100}
|
|
||||||
step={100}
|
|
||||||
onBlur={(e) => {
|
|
||||||
const value = Number(e.target.value)
|
|
||||||
if (value < 100) {
|
|
||||||
form.setValue('daily_limit', 100)
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
theme="outline"
|
|
||||||
type="button"
|
|
||||||
className="h-10 w-10 border border-gray-200 rounded-sm flex items-center justify-center text-lg"
|
|
||||||
onClick={() => form.setValue('daily_limit', value + step)}>
|
|
||||||
<Plus/>
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}}
|
|
||||||
</FormField>
|
|
||||||
</>
|
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* 产品特性 */}
|
{/* 每日提取上限/购买数量 */}
|
||||||
<div className="space-y-6">
|
{type === '1' ? (
|
||||||
<h3>产品特性</h3>
|
<NumberStepperField
|
||||||
<div className="grid grid-cols-2 md:grid-cols-3 auto-rows-fr gap-4 gap-y-6">
|
name="daily_limit"
|
||||||
<p className="flex gap-2 items-center">
|
label="每日提取上限"
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
min={100}
|
||||||
<span className="text-sm text-gray-500">支持高并发提取</span>
|
step={100}
|
||||||
</p>
|
/>
|
||||||
<p className="flex gap-2 items-center">
|
) : (
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
<NumberStepperField
|
||||||
<span className="text-sm text-gray-500">指定省份、城市或混播</span>
|
name="quota"
|
||||||
</p>
|
label="IP 购买数量"
|
||||||
<p className="flex gap-2 items-center">
|
min={500}
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
step={100}
|
||||||
<span className="text-sm text-gray-500">账密+白名单验证</span>
|
/>
|
||||||
</p>
|
)}
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
<FeatureList/>
|
||||||
<span className="text-sm text-gray-500">完备的API接口</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
|
||||||
<span className="text-sm text-gray-500">IP时效3-30分钟(可定制)</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
|
||||||
<span className="text-sm text-gray-500">IP资源定期筛选</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
|
||||||
<span className="text-sm text-gray-500">完备的API接口</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
|
||||||
<span className="text-sm text-gray-500">包量/包时计费方式</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
|
||||||
<span className="text-sm text-gray-500">每日去重量:500万</span>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Card>
|
</Card>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,40 +1,38 @@
|
|||||||
'use client'
|
'use client'
|
||||||
import {createContext} from 'react'
|
import {useForm} from 'react-hook-form'
|
||||||
import {useForm, UseFormReturn} from 'react-hook-form'
|
|
||||||
import Center from '@/components/composites/purchase/long/center'
|
import Center from '@/components/composites/purchase/long/center'
|
||||||
import Right from '@/components/composites/purchase/long/right'
|
|
||||||
import {Form} from '@/components/ui/form'
|
import {Form} from '@/components/ui/form'
|
||||||
import * as z from 'zod'
|
import * as z from 'zod'
|
||||||
import {zodResolver} from '@hookform/resolvers/zod'
|
import {zodResolver} from '@hookform/resolvers/zod'
|
||||||
|
import {ProductItem} from '@/actions/product'
|
||||||
|
import {getAvailablePurchaseExpires, getAvailablePurchaseLives, parsePurchaseSkuList} from '../shared/sku'
|
||||||
|
import {PurchaseSidePanel} from '../shared/side-panel'
|
||||||
|
|
||||||
// 定义表单验证架构
|
|
||||||
const schema = z.object({
|
const schema = z.object({
|
||||||
type: z.enum(['1', '2']).default('2'),
|
type: z.enum(['1', '2']).default('2'),
|
||||||
live: z.enum(['1', '4', '8', '12', '24']),
|
live: z.string(),
|
||||||
quota: z.number().min(500, '购买数量不能少于 500 个'),
|
quota: z.number().min(500, '购买数量不能少于 500 个'),
|
||||||
expire: z.enum(['7', '15', '30', '90', '180', '365']),
|
expire: z.string(),
|
||||||
daily_limit: z.number().min(100, '每日限额不能少于 100 个'),
|
daily_limit: z.number().min(100, '每日限额不能少于 100 个'),
|
||||||
pay_type: z.enum(['wechat', 'alipay', 'balance']),
|
pay_type: z.enum(['wechat', 'alipay', 'balance']),
|
||||||
})
|
})
|
||||||
|
|
||||||
// 从架构中推断类型
|
|
||||||
export type Schema = z.infer<typeof schema>
|
export type Schema = z.infer<typeof schema>
|
||||||
|
|
||||||
type PurchaseFormContextType = {
|
export default function LongForm({skuList}: {skuList: ProductItem['skus']}) {
|
||||||
form: UseFormReturn<Schema>
|
const skuData = parsePurchaseSkuList('long', skuList)
|
||||||
onSubmit?: () => void
|
const defaultMode = skuData.modeList.includes('2') ? '2' : '1'
|
||||||
}
|
const defaultLive = getAvailablePurchaseLives(skuData, {mode: defaultMode})[0] || ''
|
||||||
|
const defaultExpire = defaultMode === '1'
|
||||||
|
? getAvailablePurchaseExpires(skuData, {mode: defaultMode, live: defaultLive})[0] || '0'
|
||||||
|
: '0'
|
||||||
|
|
||||||
export const LongFormContext = createContext<PurchaseFormContextType | undefined>(undefined)
|
|
||||||
|
|
||||||
export default function LongForm() {
|
|
||||||
const form = useForm<Schema>({
|
const form = useForm<Schema>({
|
||||||
resolver: zodResolver(schema),
|
resolver: zodResolver(schema),
|
||||||
defaultValues: {
|
defaultValues: {
|
||||||
type: '2', // 默认为包量套餐
|
type: defaultMode,
|
||||||
live: '1', // 小时
|
live: defaultLive,
|
||||||
|
expire: defaultExpire,
|
||||||
quota: 500,
|
quota: 500,
|
||||||
expire: '30', // 天
|
|
||||||
daily_limit: 100,
|
daily_limit: 100,
|
||||||
pay_type: 'balance', // 余额支付
|
pay_type: 'balance', // 余额支付
|
||||||
},
|
},
|
||||||
@@ -42,10 +40,8 @@ export default function LongForm() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Form form={form} className="flex flex-col lg:flex-row gap-4">
|
<Form form={form} className="flex flex-col lg:flex-row gap-4">
|
||||||
<LongFormContext.Provider value={{form}}>
|
<Center skuData={skuData}/>
|
||||||
<Center/>
|
<PurchaseSidePanel kind="long"/>
|
||||||
<Right/>
|
|
||||||
</LongFormContext.Provider>
|
|
||||||
</Form>
|
</Form>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,232 +0,0 @@
|
|||||||
'use client'
|
|
||||||
import {Suspense, use, useContext, useEffect, useMemo, useState} from 'react'
|
|
||||||
import {PurchaseFormContext} from '@/components/composites/purchase/short/form'
|
|
||||||
import {RadioGroup} from '@/components/ui/radio-group'
|
|
||||||
import {FormField} from '@/components/ui/form'
|
|
||||||
import FormOption from '@/components/composites/purchase/option'
|
|
||||||
import Image from 'next/image'
|
|
||||||
import alipay from '../_assets/alipay.svg'
|
|
||||||
import wechat from '../_assets/wechat.svg'
|
|
||||||
import balance from '../_assets/balance.svg'
|
|
||||||
import {useProfileStore} from '@/components/stores/profile'
|
|
||||||
import RechargeModal from '@/components/composites/recharge'
|
|
||||||
import Pay from '@/components/composites/purchase/pay'
|
|
||||||
import {buttonVariants} from '@/components/ui/button'
|
|
||||||
import Link from 'next/link'
|
|
||||||
import {merge} from '@/lib/utils'
|
|
||||||
import {useFormContext, useWatch} from 'react-hook-form'
|
|
||||||
import {Schema} from '@/components/composites/purchase/long/form'
|
|
||||||
import {Card} from '@/components/ui/card'
|
|
||||||
import {getPrice, CreateResourceReq} from '@/actions/resource'
|
|
||||||
import {ExtraResp} from '@/lib/api'
|
|
||||||
|
|
||||||
export default function Right() {
|
|
||||||
const {control} = useFormContext<Schema>()
|
|
||||||
const method = useWatch({control, name: 'pay_type'})
|
|
||||||
const mode = useWatch({control, name: 'type'})
|
|
||||||
const live = useWatch({control, name: 'live'})
|
|
||||||
const quota = useWatch({control, name: 'quota'})
|
|
||||||
const expire = useWatch({control, name: 'expire'})
|
|
||||||
const dailyLimit = useWatch({control, name: 'daily_limit'})
|
|
||||||
const [priceData, setPriceData] = useState<ExtraResp<typeof getPrice>>({
|
|
||||||
price: '0.00',
|
|
||||||
discounted_price: '0.00',
|
|
||||||
discounted: 0,
|
|
||||||
})
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const price = async () => {
|
|
||||||
try {
|
|
||||||
const resp = await getPrice({
|
|
||||||
type: 2,
|
|
||||||
long: {
|
|
||||||
live: Number(live),
|
|
||||||
mode: Number(mode),
|
|
||||||
quota: mode === '1' ? Number(dailyLimit) : Number(quota),
|
|
||||||
expire: mode === '1' ? Number(expire) : undefined,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
if (!resp.success) {
|
|
||||||
throw new Error('获取价格失败')
|
|
||||||
}
|
|
||||||
|
|
||||||
setPriceData({
|
|
||||||
price: resp.data.price,
|
|
||||||
discounted_price: resp.data.discounted_price ?? resp.data.price ?? '',
|
|
||||||
discounted: resp.data.discounted,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
catch (error) {
|
|
||||||
setPriceData({
|
|
||||||
price: '0.00',
|
|
||||||
discounted_price: '0.00',
|
|
||||||
discounted: 0,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
price()
|
|
||||||
}, [dailyLimit, expire, live, quota, mode])
|
|
||||||
|
|
||||||
const {price, discounted_price: discountedPrice = '', discounted} = priceData
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card className={merge(
|
|
||||||
`flex-none basis-90 p-6 flex flex-col gap-6 relative`,
|
|
||||||
)}>
|
|
||||||
<h3>订单详情</h3>
|
|
||||||
<ul className="flex flex-col gap-3">
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">套餐名称</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
{mode === '2' ? `包量套餐` : `包时套餐`}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">IP 时效</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
{live}
|
|
||||||
{' '}
|
|
||||||
小时
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
{mode === '2' ? (
|
|
||||||
<>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">购买 IP 量</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
{quota}
|
|
||||||
个
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">实价</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
¥{price}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">套餐时长</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
{expire}
|
|
||||||
天
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">每日限额</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
{dailyLimit}
|
|
||||||
个
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">原价</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
¥{price}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
{discounted === 1 ? '' : (
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">总折扣</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
-¥{discounted}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</ul>
|
|
||||||
<div className="border-b border-gray-200"></div>
|
|
||||||
<p className="flex justify-between items-center">
|
|
||||||
<span>实付价格</span>
|
|
||||||
<span className="text-xl text-orange-500">
|
|
||||||
¥{discountedPrice}
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
<Suspense>
|
|
||||||
<BalanceOrLogin {...{method, discountedPrice, mode, live, quota, expire, dailyLimit}}/>
|
|
||||||
</Suspense>
|
|
||||||
</Card>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function BalanceOrLogin(props: {
|
|
||||||
method: 'wechat' | 'alipay' | 'balance'
|
|
||||||
discountedPrice: string
|
|
||||||
mode: string
|
|
||||||
live: string
|
|
||||||
quota: number
|
|
||||||
expire: string
|
|
||||||
dailyLimit: number
|
|
||||||
}) {
|
|
||||||
const profile = use(useProfileStore(store => store.profile))
|
|
||||||
return profile ? (
|
|
||||||
<>
|
|
||||||
<FormField name="pay_type" label="支付方式" className="flex flex-col gap-6">
|
|
||||||
{({id, field}) => (
|
|
||||||
<RadioGroup
|
|
||||||
id={id}
|
|
||||||
defaultValue={field.value}
|
|
||||||
onValueChange={field.onChange}
|
|
||||||
className="flex flex-col gap-3">
|
|
||||||
|
|
||||||
{/* <div className="w-full p-3 flex flex-col gap-4 bg-gray-100 rounded-md">
|
|
||||||
<p className="flex items-center gap-3">
|
|
||||||
<Image src={balance} alt="余额icon"/>
|
|
||||||
<span className="text-sm text-gray-500">账户余额</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex justify-between items-center">
|
|
||||||
<span className="text-xl">{profile?.balance}</span>
|
|
||||||
<RechargeModal/>
|
|
||||||
</p>
|
|
||||||
</div> */}
|
|
||||||
|
|
||||||
{/* <FormOption
|
|
||||||
id={`${id}-balance`}
|
|
||||||
value="balance"
|
|
||||||
compare={field.value}
|
|
||||||
className="p-3 w-full flex-row gap-2 justify-center">
|
|
||||||
<Image src={balance} alt="余额 icon"/>
|
|
||||||
<span>余额</span>
|
|
||||||
</FormOption> */}
|
|
||||||
<FormOption
|
|
||||||
id={`${id}-wechat`}
|
|
||||||
value="wechat"
|
|
||||||
compare={field.value}
|
|
||||||
className="p-3 w-full flex-row gap-2 justify-center">
|
|
||||||
<Image src={wechat} alt="微信 logo"/>
|
|
||||||
<span>微信</span>
|
|
||||||
</FormOption>
|
|
||||||
<FormOption
|
|
||||||
id={`${id}-alipay`}
|
|
||||||
value="alipay"
|
|
||||||
compare={field.value}
|
|
||||||
className="p-3 w-full flex-row gap-2 justify-center">
|
|
||||||
<Image src={alipay} alt="支付宝 logo"/>
|
|
||||||
<span>支付宝</span>
|
|
||||||
</FormOption>
|
|
||||||
</RadioGroup>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
<Pay
|
|
||||||
method={props.method}
|
|
||||||
balance={profile.balance}
|
|
||||||
amount={props.discountedPrice}
|
|
||||||
resource={{
|
|
||||||
type: 2,
|
|
||||||
long: {
|
|
||||||
mode: Number(props.mode),
|
|
||||||
live: Number(props.live),
|
|
||||||
expire: Number(props.expire),
|
|
||||||
quota: props.mode === '1' ? props.dailyLimit : props.quota,
|
|
||||||
},
|
|
||||||
}}/>
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<Link href="/login" className={buttonVariants()}>
|
|
||||||
登录后支付
|
|
||||||
</Link>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -11,11 +11,10 @@ import {useRouter} from 'next/navigation'
|
|||||||
import {completeResource, createResource, CreateResourceReq, prepareResource} from '@/actions/resource'
|
import {completeResource, createResource, CreateResourceReq, prepareResource} from '@/actions/resource'
|
||||||
import {
|
import {
|
||||||
TradeMethod,
|
TradeMethod,
|
||||||
TradeMethodDecoration,
|
TradePlatform,
|
||||||
} from '@/lib/models/trade'
|
} from '@/lib/models/trade'
|
||||||
import {PaymentModal} from '@/components/composites/payment/payment-modal'
|
import {PaymentModal} from '@/components/composites/payment/payment-modal'
|
||||||
import {PaymentProps} from '@/components/composites/payment/type'
|
import {PaymentProps} from '@/components/composites/payment/type'
|
||||||
import {usePlatformType} from '@/lib/hooks'
|
|
||||||
|
|
||||||
export type PayProps = {
|
export type PayProps = {
|
||||||
amount: string
|
amount: string
|
||||||
@@ -32,37 +31,35 @@ export default function Pay(props: PayProps) {
|
|||||||
const [open, setOpen] = useState(false)
|
const [open, setOpen] = useState(false)
|
||||||
const [trade, setTrade] = useState<PaymentProps | null>(null)
|
const [trade, setTrade] = useState<PaymentProps | null>(null)
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const platform = usePlatformType()
|
|
||||||
|
|
||||||
const onOpen = async () => {
|
const onOpen = async () => {
|
||||||
setOpen(true)
|
setOpen(true)
|
||||||
|
|
||||||
if (props.method === 'balance') return
|
if (props.method === 'balance') {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
const method = props.method === 'alipay'
|
const method = props.method === 'alipay'
|
||||||
? TradeMethod.SftAlipay
|
? TradeMethod.SftAlipay
|
||||||
: TradeMethod.SftWechat
|
: TradeMethod.SftWechat
|
||||||
const req = {
|
const response = await prepareResource({
|
||||||
...props.resource,
|
...props.resource,
|
||||||
payment_method: method,
|
payment_method: method,
|
||||||
payment_platform: platform,
|
payment_platform: TradePlatform.Desktop,
|
||||||
}
|
})
|
||||||
|
|
||||||
const resp = await prepareResource(req)
|
if (!response.success) {
|
||||||
|
toast.error(`创建订单失败: ${response.message}`)
|
||||||
if (!resp.success) {
|
|
||||||
toast.error(`创建订单失败: ${resp.message}`)
|
|
||||||
setOpen(false)
|
setOpen(false)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
setTrade({
|
setTrade({
|
||||||
inner_no: resp.data.trade_no,
|
inner_no: response.data.trade_no,
|
||||||
pay_url: resp.data.pay_url,
|
pay_url: response.data.pay_url,
|
||||||
amount: Number(props.amount),
|
amount: Number(props.amount),
|
||||||
platform: platform,
|
platform: TradePlatform.Desktop,
|
||||||
method: method,
|
method,
|
||||||
decoration: TradeMethodDecoration[props.method],
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -113,7 +110,6 @@ export default function Pay(props: PayProps) {
|
|||||||
立即支付
|
立即支付
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
{/* 余额支付对话框 */}
|
|
||||||
{props.method === 'balance' && (
|
{props.method === 'balance' && (
|
||||||
<Dialog open={open} onOpenChange={setOpen}>
|
<Dialog open={open} onOpenChange={setOpen}>
|
||||||
<DialogContent>
|
<DialogContent>
|
||||||
@@ -179,7 +175,6 @@ export default function Pay(props: PayProps) {
|
|||||||
</Dialog>
|
</Dialog>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* 支付宝/微信支付 */}
|
|
||||||
{props.method !== 'balance' && trade && (
|
{props.method !== 'balance' && trade && (
|
||||||
<PaymentModal
|
<PaymentModal
|
||||||
{...trade}
|
{...trade}
|
||||||
|
|||||||
@@ -0,0 +1,61 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import {useFormContext} from 'react-hook-form'
|
||||||
|
import {FormField} from '@/components/ui/form'
|
||||||
|
import {RadioGroup} from '@/components/ui/radio-group'
|
||||||
|
import FormOption from '../option'
|
||||||
|
import {PurchaseMode} from './resource'
|
||||||
|
import {PurchaseFormValues} from './form-values'
|
||||||
|
|
||||||
|
export function BillingMethodField(props: {
|
||||||
|
modeList: PurchaseMode[]
|
||||||
|
timeDailyLimit: number
|
||||||
|
}) {
|
||||||
|
const {setValue} = useFormContext<PurchaseFormValues>()
|
||||||
|
|
||||||
|
return (
|
||||||
|
<FormField<PurchaseFormValues, 'type'>
|
||||||
|
className="flex flex-col gap-4"
|
||||||
|
name="type"
|
||||||
|
label="计费方式"
|
||||||
|
>
|
||||||
|
{({id, field}) => (
|
||||||
|
<RadioGroup
|
||||||
|
id={id}
|
||||||
|
value={field.value}
|
||||||
|
onValueChange={(value) => {
|
||||||
|
field.onChange(value)
|
||||||
|
|
||||||
|
if (value === '2') {
|
||||||
|
setValue('expire', '0')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
setValue('daily_limit', props.timeDailyLimit)
|
||||||
|
}}
|
||||||
|
className="flex gap-4 max-md:flex-col"
|
||||||
|
>
|
||||||
|
{props.modeList.includes('2') && (
|
||||||
|
<FormOption
|
||||||
|
id={`${id}-2`}
|
||||||
|
value="2"
|
||||||
|
label="包量套餐"
|
||||||
|
description="适用于短期或不定期高提取业务场景"
|
||||||
|
compare={field.value}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{props.modeList.includes('1') && (
|
||||||
|
<FormOption
|
||||||
|
id={`${id}-1`}
|
||||||
|
value="1"
|
||||||
|
label="包时套餐"
|
||||||
|
description="适用于每日提取量稳定的业务场景"
|
||||||
|
compare={field.value}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</RadioGroup>
|
||||||
|
)}
|
||||||
|
</FormField>
|
||||||
|
)
|
||||||
|
}
|
||||||
35
src/components/composites/purchase/shared/feature-list.tsx
Normal file
35
src/components/composites/purchase/shared/feature-list.tsx
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import Image from 'next/image'
|
||||||
|
import check from '../_assets/check.svg'
|
||||||
|
|
||||||
|
const defaultFeatures = [
|
||||||
|
'支持高并发提取',
|
||||||
|
'指定省份、城市或混播',
|
||||||
|
'账密+白名单验证',
|
||||||
|
'完备的API接口',
|
||||||
|
'IP时效3-30分钟(可定制)',
|
||||||
|
'IP资源定期筛选',
|
||||||
|
'包量/包时计费方式',
|
||||||
|
'每日去重量:500万',
|
||||||
|
]
|
||||||
|
|
||||||
|
export function FeatureList(props: {
|
||||||
|
items?: string[]
|
||||||
|
}) {
|
||||||
|
const items = props.items || defaultFeatures
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="space-y-6">
|
||||||
|
<h3>产品特性</h3>
|
||||||
|
<div className="grid grid-cols-2 md:grid-cols-3 auto-rows-fr gap-4 md:gap-y-6">
|
||||||
|
{items.map(item => (
|
||||||
|
<p key={item} className="flex gap-2 items-center">
|
||||||
|
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
||||||
|
<span className="text-sm text-gray-500">{item}</span>
|
||||||
|
</p>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
60
src/components/composites/purchase/shared/field-payment.tsx
Normal file
60
src/components/composites/purchase/shared/field-payment.tsx
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
import FormOption from '../option'
|
||||||
|
import {RadioGroup} from '@/components/ui/radio-group'
|
||||||
|
import {FormField} from '@/components/ui/form'
|
||||||
|
import Image from 'next/image'
|
||||||
|
import alipay from '../_assets/alipay.svg'
|
||||||
|
import wechat from '../_assets/wechat.svg'
|
||||||
|
import balance from '../_assets/balance.svg'
|
||||||
|
import RechargeModal from '@/components/composites/recharge'
|
||||||
|
|
||||||
|
export function FieldPayment(props: {
|
||||||
|
balance: number
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<FormField name="pay_type" label="支付方式" className="flex flex-col gap-6">
|
||||||
|
{({id, field}) => (
|
||||||
|
<RadioGroup
|
||||||
|
id={id}
|
||||||
|
value={field.value}
|
||||||
|
onValueChange={field.onChange}
|
||||||
|
className="flex flex-col gap-3">
|
||||||
|
|
||||||
|
<div className="w-full p-3 flex flex-col gap-4 bg-gray-100 rounded-md">
|
||||||
|
<p className="flex items-center gap-3">
|
||||||
|
<Image src={balance} alt="余额icon"/>
|
||||||
|
<span className="text-sm text-gray-500">账户余额</span>
|
||||||
|
</p>
|
||||||
|
<p className="flex justify-between items-center">
|
||||||
|
<span className="text-xl">{props.balance}</span>
|
||||||
|
<RechargeModal/>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<FormOption
|
||||||
|
id={`${id}-balance`}
|
||||||
|
value="balance"
|
||||||
|
compare={field.value}
|
||||||
|
className="p-3 w-full flex-row gap-2 justify-center">
|
||||||
|
<Image src={balance} alt="余额 icon"/>
|
||||||
|
<span>余额</span>
|
||||||
|
</FormOption>
|
||||||
|
<FormOption
|
||||||
|
id={`${id}-wechat`}
|
||||||
|
value="wechat"
|
||||||
|
compare={field.value}
|
||||||
|
className="p-3 w-full flex-row gap-2 justify-center">
|
||||||
|
<Image src={wechat} alt="微信 logo"/>
|
||||||
|
<span>微信</span>
|
||||||
|
</FormOption>
|
||||||
|
<FormOption
|
||||||
|
id={`${id}-alipay`}
|
||||||
|
value="alipay"
|
||||||
|
compare={field.value}
|
||||||
|
className="p-3 w-full flex-row gap-2 justify-center">
|
||||||
|
<Image src={alipay} alt="支付宝 logo"/>
|
||||||
|
<span>支付宝</span>
|
||||||
|
</FormOption>
|
||||||
|
</RadioGroup>
|
||||||
|
)}
|
||||||
|
</FormField>
|
||||||
|
)
|
||||||
|
}
|
||||||
8
src/components/composites/purchase/shared/form-values.ts
Normal file
8
src/components/composites/purchase/shared/form-values.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
export type PurchaseFormValues = {
|
||||||
|
type: '1' | '2'
|
||||||
|
live: string
|
||||||
|
quota: number
|
||||||
|
expire: string
|
||||||
|
daily_limit: number
|
||||||
|
pay_type: 'wechat' | 'alipay' | 'balance'
|
||||||
|
}
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import {useFormContext} from 'react-hook-form'
|
||||||
|
import {Minus, Plus} from 'lucide-react'
|
||||||
|
import {FormField} from '@/components/ui/form'
|
||||||
|
import {Button} from '@/components/ui/button'
|
||||||
|
import {Input} from '@/components/ui/input'
|
||||||
|
import {PurchaseFormValues} from './form-values'
|
||||||
|
|
||||||
|
type PurchaseStepperFieldName = 'quota' | 'daily_limit'
|
||||||
|
|
||||||
|
type NumberStepperFieldProps = {
|
||||||
|
name: PurchaseStepperFieldName
|
||||||
|
label: string
|
||||||
|
min: number
|
||||||
|
step: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export function NumberStepperField(props: NumberStepperFieldProps) {
|
||||||
|
const form = useFormContext<PurchaseFormValues>()
|
||||||
|
|
||||||
|
const setValue = (value: number) => {
|
||||||
|
form.setValue(props.name, value)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<FormField<PurchaseFormValues, PurchaseStepperFieldName>
|
||||||
|
className="space-y-4"
|
||||||
|
name={props.name}
|
||||||
|
label={props.label}
|
||||||
|
>
|
||||||
|
{({id, field}) => {
|
||||||
|
const value = Number(field.value) || props.min
|
||||||
|
return (
|
||||||
|
<div className="flex gap-2 items-center">
|
||||||
|
<Button
|
||||||
|
theme="outline"
|
||||||
|
type="button"
|
||||||
|
className="h-10 w-10 border border-gray-200 rounded-sm flex items-center justify-center text-lg"
|
||||||
|
onClick={() => setValue(Math.max(props.min, value - props.step))}
|
||||||
|
disabled={value === props.min}
|
||||||
|
>
|
||||||
|
<Minus/>
|
||||||
|
</Button>
|
||||||
|
<Input
|
||||||
|
{...field}
|
||||||
|
id={id}
|
||||||
|
type="number"
|
||||||
|
className="w-40 h-10 border border-gray-200 rounded-sm text-center"
|
||||||
|
min={props.min}
|
||||||
|
step={props.step}
|
||||||
|
onBlur={(event) => {
|
||||||
|
field.onBlur()
|
||||||
|
const nextValue = Number(event.target.value)
|
||||||
|
if (nextValue < props.min) {
|
||||||
|
setValue(props.min)
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
theme="outline"
|
||||||
|
type="button"
|
||||||
|
className="h-10 w-10 border border-gray-200 rounded-sm flex items-center justify-center text-lg"
|
||||||
|
onClick={() => setValue(value + props.step)}
|
||||||
|
>
|
||||||
|
<Plus/>
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}}
|
||||||
|
</FormField>
|
||||||
|
)
|
||||||
|
}
|
||||||
38
src/components/composites/purchase/shared/resource.ts
Normal file
38
src/components/composites/purchase/shared/resource.ts
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
import {CreateResourceReq} from '@/actions/resource'
|
||||||
|
|
||||||
|
export type PurchaseKind = 'short' | 'long'
|
||||||
|
export type PurchaseMode = '1' | '2'
|
||||||
|
|
||||||
|
export type PurchaseSelection = {
|
||||||
|
kind: PurchaseKind
|
||||||
|
mode: PurchaseMode
|
||||||
|
live: string
|
||||||
|
quota: number
|
||||||
|
expire: string
|
||||||
|
dailyLimit: number
|
||||||
|
}
|
||||||
|
|
||||||
|
function getPurchasePayload(selection: PurchaseSelection) {
|
||||||
|
return {
|
||||||
|
mode: Number(selection.mode),
|
||||||
|
live: Number(selection.live),
|
||||||
|
expire: selection.mode === '1' ? Number(selection.expire) : undefined,
|
||||||
|
quota: selection.mode === '1' ? Number(selection.dailyLimit) : Number(selection.quota),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function buildPurchaseResource(selection: PurchaseSelection): CreateResourceReq {
|
||||||
|
const payload = getPurchasePayload(selection)
|
||||||
|
|
||||||
|
if (selection.kind === 'short') {
|
||||||
|
return {
|
||||||
|
type: 1,
|
||||||
|
short: payload,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
type: 2,
|
||||||
|
long: payload,
|
||||||
|
}
|
||||||
|
}
|
||||||
189
src/components/composites/purchase/shared/side-panel.tsx
Normal file
189
src/components/composites/purchase/shared/side-panel.tsx
Normal file
@@ -0,0 +1,189 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import {use, useEffect, useRef, useState} from 'react'
|
||||||
|
import Link from 'next/link'
|
||||||
|
import {useFormContext, useWatch} from 'react-hook-form'
|
||||||
|
import {Card} from '@/components/ui/card'
|
||||||
|
import {buttonVariants} from '@/components/ui/button'
|
||||||
|
import {useProfileStore} from '@/components/stores/profile'
|
||||||
|
import Pay from '@/components/composites/purchase/pay'
|
||||||
|
import {FieldPayment} from './field-payment'
|
||||||
|
import {buildPurchaseResource, PurchaseKind, PurchaseSelection} from './resource'
|
||||||
|
import {getPrice, getPriceHome} from '@/actions/resource'
|
||||||
|
import {ExtraResp} from '@/lib/api'
|
||||||
|
import {formatPurchaseLiveLabel} from './sku'
|
||||||
|
import {User} from '@/lib/models'
|
||||||
|
import {PurchaseFormValues} from './form-values'
|
||||||
|
|
||||||
|
const emptyPrice: ExtraResp<typeof getPrice> = {
|
||||||
|
price: '0.00',
|
||||||
|
actual: '0.00',
|
||||||
|
discounted: '0.00',
|
||||||
|
}
|
||||||
|
|
||||||
|
export type PurchaseSidePanelProps = {
|
||||||
|
kind: PurchaseKind
|
||||||
|
}
|
||||||
|
|
||||||
|
export function PurchaseSidePanel(props: PurchaseSidePanelProps) {
|
||||||
|
const {control} = useFormContext<PurchaseFormValues>()
|
||||||
|
const method = useWatch<PurchaseFormValues>({control, name: 'pay_type'}) as PurchaseFormValues['pay_type']
|
||||||
|
const mode = useWatch<PurchaseFormValues>({control, name: 'type'}) as PurchaseFormValues['type']
|
||||||
|
const live = useWatch<PurchaseFormValues>({control, name: 'live'}) as PurchaseFormValues['live']
|
||||||
|
const quota = useWatch<PurchaseFormValues>({control, name: 'quota'}) as PurchaseFormValues['quota']
|
||||||
|
const expire = useWatch<PurchaseFormValues>({control, name: 'expire'}) as PurchaseFormValues['expire']
|
||||||
|
const dailyLimit = useWatch<PurchaseFormValues>({control, name: 'daily_limit'}) as PurchaseFormValues['daily_limit']
|
||||||
|
const profile = use(useProfileStore(store => store.profile))
|
||||||
|
const selection: PurchaseSelection = {
|
||||||
|
kind: props.kind,
|
||||||
|
mode,
|
||||||
|
live,
|
||||||
|
quota,
|
||||||
|
expire,
|
||||||
|
dailyLimit,
|
||||||
|
}
|
||||||
|
const priceData = usePurchasePrice(profile, selection)
|
||||||
|
const {price, actual: discountedPrice = '0.00'} = priceData
|
||||||
|
const totalDiscount = getTotalDiscount(price, discountedPrice)
|
||||||
|
const hasDiscount = Number(totalDiscount) > 0
|
||||||
|
const liveLabel = formatPurchaseLiveLabel(live, props.kind)
|
||||||
|
const resource = buildPurchaseResource(selection)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card className="flex-none basis-90 p-6 flex flex-col gap-6 relative">
|
||||||
|
<h3>订单详情</h3>
|
||||||
|
<ul className="flex flex-col gap-3">
|
||||||
|
<li className="flex justify-between items-center">
|
||||||
|
<span className="text-sm text-gray-500">套餐名称</span>
|
||||||
|
<span className="text-sm">{mode === '2' ? '包量套餐' : '包时套餐'}</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex justify-between items-center">
|
||||||
|
<span className="text-sm text-gray-500">IP 时效</span>
|
||||||
|
<span className="text-sm">{liveLabel}</span>
|
||||||
|
</li>
|
||||||
|
{mode === '2' ? (
|
||||||
|
<>
|
||||||
|
<li className="flex justify-between items-center">
|
||||||
|
<span className="text-sm text-gray-500">购买 IP 量</span>
|
||||||
|
<span className="text-sm">{quota} 个</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex justify-between items-center">
|
||||||
|
<span className="text-sm text-gray-500">原价</span>
|
||||||
|
<span className="text-sm">¥{price}</span>
|
||||||
|
</li>
|
||||||
|
{hasDiscount && (
|
||||||
|
<li className="flex justify-between items-center">
|
||||||
|
<span className="text-sm text-gray-500">总折扣</span>
|
||||||
|
<span className="text-sm">-¥{totalDiscount}</span>
|
||||||
|
</li>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<li className="flex justify-between items-center">
|
||||||
|
<span className="text-sm text-gray-500">套餐时长</span>
|
||||||
|
<span className="text-sm">{expire} 天</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex justify-between items-center">
|
||||||
|
<span className="text-sm text-gray-500">每日限额</span>
|
||||||
|
<span className="text-sm">{dailyLimit} 个</span>
|
||||||
|
</li>
|
||||||
|
<li className="flex justify-between items-center">
|
||||||
|
<span className="text-sm text-gray-500">原价</span>
|
||||||
|
<span className="text-sm">¥{price}</span>
|
||||||
|
</li>
|
||||||
|
{hasDiscount && (
|
||||||
|
<li className="flex justify-between items-center">
|
||||||
|
<span className="text-sm text-gray-500">总折扣</span>
|
||||||
|
<span className="text-sm">-¥{totalDiscount}</span>
|
||||||
|
</li>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</ul>
|
||||||
|
<div className="border-b border-gray-200"></div>
|
||||||
|
<p className="flex justify-between items-center">
|
||||||
|
<span>实付价格</span>
|
||||||
|
<span className="text-xl text-orange-500">¥{discountedPrice}</span>
|
||||||
|
</p>
|
||||||
|
{profile ? (
|
||||||
|
<>
|
||||||
|
<FieldPayment balance={profile.balance}/>
|
||||||
|
<Pay
|
||||||
|
method={method}
|
||||||
|
balance={profile.balance}
|
||||||
|
amount={discountedPrice}
|
||||||
|
resource={resource}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<Link href="/login" className={buttonVariants()}>
|
||||||
|
登录后支付
|
||||||
|
</Link>
|
||||||
|
)}
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function usePurchasePrice(profile: User | null, selection: PurchaseSelection) {
|
||||||
|
const [priceData, setPriceData] = useState<ExtraResp<typeof getPrice>>(emptyPrice)
|
||||||
|
const requestIdRef = useRef(0)
|
||||||
|
const {kind, mode, live, quota, expire, dailyLimit} = selection
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const requestId = ++requestIdRef.current
|
||||||
|
|
||||||
|
const loadPrice = async () => {
|
||||||
|
try {
|
||||||
|
const resource = buildPurchaseResource({
|
||||||
|
kind,
|
||||||
|
mode,
|
||||||
|
live,
|
||||||
|
quota,
|
||||||
|
expire,
|
||||||
|
dailyLimit,
|
||||||
|
})
|
||||||
|
const response = profile
|
||||||
|
? await getPrice(resource)
|
||||||
|
: await getPriceHome(resource)
|
||||||
|
|
||||||
|
if (requestId !== requestIdRef.current) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!response.success) {
|
||||||
|
throw new Error(response.message || '获取价格失败')
|
||||||
|
}
|
||||||
|
|
||||||
|
setPriceData({
|
||||||
|
price: response.data.price,
|
||||||
|
actual: response.data.actual ?? response.data.price ?? '0.00',
|
||||||
|
discounted: response.data.discounted ?? '0.00',
|
||||||
|
})
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
if (requestId !== requestIdRef.current) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
console.error('获取价格失败:', error)
|
||||||
|
setPriceData(emptyPrice)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
loadPrice()
|
||||||
|
}, [dailyLimit, expire, kind, live, mode, profile, quota])
|
||||||
|
|
||||||
|
return priceData
|
||||||
|
}
|
||||||
|
|
||||||
|
function getTotalDiscount(price: string, discountedPrice: string) {
|
||||||
|
const originalPrice = Number.parseFloat(price)
|
||||||
|
const actualPrice = Number.parseFloat(discountedPrice)
|
||||||
|
|
||||||
|
if (Number.isNaN(originalPrice) || Number.isNaN(actualPrice)) {
|
||||||
|
return '0.00'
|
||||||
|
}
|
||||||
|
|
||||||
|
return (originalPrice - actualPrice).toFixed(2)
|
||||||
|
}
|
||||||
165
src/components/composites/purchase/shared/sku.ts
Normal file
165
src/components/composites/purchase/shared/sku.ts
Normal file
@@ -0,0 +1,165 @@
|
|||||||
|
import {ProductItem} from '@/actions/product'
|
||||||
|
import {PurchaseKind, PurchaseMode} from './resource'
|
||||||
|
|
||||||
|
export type PurchaseSkuItem = {
|
||||||
|
code: string
|
||||||
|
mode: PurchaseMode
|
||||||
|
live: string
|
||||||
|
expire: string
|
||||||
|
price: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export type PurchaseSkuData = {
|
||||||
|
items: PurchaseSkuItem[]
|
||||||
|
priceMap: Map<string, string>
|
||||||
|
modeList: PurchaseMode[]
|
||||||
|
liveList: string[]
|
||||||
|
expireList: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export function parsePurchaseSkuList(kind: PurchaseKind, skuList: ProductItem['skus']): PurchaseSkuData {
|
||||||
|
if (!skuList?.length) {
|
||||||
|
throw new Error('没有套餐数据')
|
||||||
|
}
|
||||||
|
|
||||||
|
const items: PurchaseSkuItem[] = []
|
||||||
|
const priceMap = new Map<string, string>()
|
||||||
|
const modeSet = new Set<PurchaseMode>()
|
||||||
|
const liveSet = new Set<number>()
|
||||||
|
const expireSet = new Set<number>()
|
||||||
|
|
||||||
|
for (const sku of skuList) {
|
||||||
|
const params = new URLSearchParams(sku.code)
|
||||||
|
const mode = parsePurchaseSkuMode(params.get('mode'))
|
||||||
|
const live = Number(params.get('live') || '0')
|
||||||
|
const expire = Number(params.get('expire') || '0')
|
||||||
|
|
||||||
|
if (!mode || live <= 0) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
const liveValue = String(live)
|
||||||
|
const expireValue = mode === '1' ? String(expire || '0') : '0'
|
||||||
|
const code = getPurchaseSkuKey({
|
||||||
|
mode,
|
||||||
|
live: liveValue,
|
||||||
|
expire: expireValue,
|
||||||
|
})
|
||||||
|
|
||||||
|
items.push({
|
||||||
|
code,
|
||||||
|
mode,
|
||||||
|
live: liveValue,
|
||||||
|
expire: expireValue,
|
||||||
|
price: sku.price,
|
||||||
|
})
|
||||||
|
priceMap.set(code, sku.price)
|
||||||
|
modeSet.add(mode)
|
||||||
|
|
||||||
|
liveSet.add(live)
|
||||||
|
|
||||||
|
if (kind === 'short') {
|
||||||
|
if (mode === '1' && expire > 0) {
|
||||||
|
expireSet.add(expire)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (expire > 0) {
|
||||||
|
expireSet.add(expire)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (items.length === 0) {
|
||||||
|
throw new Error('没有可用的套餐数据')
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
items,
|
||||||
|
priceMap,
|
||||||
|
modeList: (['2', '1'] as const).filter(mode => modeSet.has(mode)),
|
||||||
|
liveList: sortNumericValues(liveSet),
|
||||||
|
expireList: sortNumericValues(expireSet),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function parsePurchaseSkuMode(mode: string | null): PurchaseMode | null {
|
||||||
|
if (mode === 'time') {
|
||||||
|
return '1'
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mode === 'quota') {
|
||||||
|
return '2'
|
||||||
|
}
|
||||||
|
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
function sortNumericValues(values: Iterable<number>) {
|
||||||
|
return Array.from(values).sort((a, b) => a - b).map(String)
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getPurchaseSkuKey(props: {
|
||||||
|
mode: PurchaseMode
|
||||||
|
live: string
|
||||||
|
expire: string
|
||||||
|
}) {
|
||||||
|
const params = new URLSearchParams()
|
||||||
|
params.set('mode', props.mode === '1' ? 'time' : 'quota')
|
||||||
|
params.set('live', props.live || '0')
|
||||||
|
params.set('expire', props.mode === '1' ? props.expire || '0' : '0')
|
||||||
|
return params.toString()
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getAvailablePurchaseLives(skuData: PurchaseSkuData, props: {
|
||||||
|
mode: PurchaseMode
|
||||||
|
expire?: string
|
||||||
|
}) {
|
||||||
|
return sortNumericValues(new Set(
|
||||||
|
skuData.items
|
||||||
|
.filter(item => item.mode === props.mode)
|
||||||
|
.filter(item => !props.expire || item.expire === props.expire)
|
||||||
|
.map(item => Number(item.live)),
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getAvailablePurchaseExpires(skuData: PurchaseSkuData, props: {
|
||||||
|
mode: PurchaseMode
|
||||||
|
live?: string
|
||||||
|
}) {
|
||||||
|
return sortNumericValues(new Set(
|
||||||
|
skuData.items
|
||||||
|
.filter(item => item.mode === props.mode)
|
||||||
|
.filter(item => !props.live || item.live === props.live)
|
||||||
|
.filter(item => item.expire !== '0')
|
||||||
|
.map(item => Number(item.expire)),
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
|
export function hasPurchaseSku(skuData: PurchaseSkuData, props: {
|
||||||
|
mode: PurchaseMode
|
||||||
|
live: string
|
||||||
|
expire: string
|
||||||
|
}) {
|
||||||
|
return skuData.priceMap.has(getPurchaseSkuKey(props))
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getPurchaseSkuPrice(priceMap: Map<string, string>, props: {
|
||||||
|
mode: PurchaseMode
|
||||||
|
live: string
|
||||||
|
expire: string
|
||||||
|
}) {
|
||||||
|
return priceMap.get(getPurchaseSkuKey(props))
|
||||||
|
}
|
||||||
|
|
||||||
|
export function formatPurchaseLiveLabel(live: string, kind: PurchaseKind) {
|
||||||
|
const minutes = Number(live)
|
||||||
|
|
||||||
|
if (kind === 'long') {
|
||||||
|
return `${minutes / 60} 小时`
|
||||||
|
}
|
||||||
|
|
||||||
|
if (minutes % 60 === 0) {
|
||||||
|
return `${minutes / 60} 小时`
|
||||||
|
}
|
||||||
|
|
||||||
|
return `${minutes} 分钟`
|
||||||
|
}
|
||||||
@@ -1,60 +1,71 @@
|
|||||||
'use client'
|
'use client'
|
||||||
import {FormField} from '@/components/ui/form'
|
import {FormField} from '@/components/ui/form'
|
||||||
import {RadioGroup} from '@/components/ui/radio-group'
|
import {RadioGroup} from '@/components/ui/radio-group'
|
||||||
import {Input} from '@/components/ui/input'
|
|
||||||
import {Button} from '@/components/ui/button'
|
|
||||||
import {Minus, Plus} from 'lucide-react'
|
|
||||||
import FormOption from '@/components/composites/purchase/option'
|
import FormOption from '@/components/composites/purchase/option'
|
||||||
import Image from 'next/image'
|
import {useEffect} from 'react'
|
||||||
import check from '../_assets/check.svg'
|
|
||||||
import {useFormContext, useWatch} from 'react-hook-form'
|
import {useFormContext, useWatch} from 'react-hook-form'
|
||||||
import {Schema} from '@/components/composites/purchase/short/form'
|
import {Schema} from '@/components/composites/purchase/short/form'
|
||||||
import {Card} from '@/components/ui/card'
|
import {Card} from '@/components/ui/card'
|
||||||
import {useEffect} from 'react'
|
import {BillingMethodField} from '../shared/billing-method-field'
|
||||||
|
import {FeatureList} from '../shared/feature-list'
|
||||||
|
import {NumberStepperField} from '../shared/number-stepper-field'
|
||||||
|
import {getAvailablePurchaseExpires, getAvailablePurchaseLives, getPurchaseSkuPrice, hasPurchaseSku, PurchaseSkuData} from '../shared/sku'
|
||||||
|
|
||||||
|
export default function Center({
|
||||||
|
skuData,
|
||||||
|
}: {
|
||||||
|
skuData: PurchaseSkuData
|
||||||
|
}) {
|
||||||
|
const {setValue} = useFormContext<Schema>()
|
||||||
|
const type = useWatch<Schema>({name: 'type'}) as Schema['type']
|
||||||
|
const live = useWatch<Schema>({name: 'live'}) as Schema['live']
|
||||||
|
const expire = useWatch<Schema>({name: 'expire'}) as Schema['expire']
|
||||||
|
const {modeList, priceMap} = skuData
|
||||||
|
const liveList = type === '1'
|
||||||
|
? getAvailablePurchaseLives(skuData, {mode: type, expire})
|
||||||
|
: getAvailablePurchaseLives(skuData, {mode: type})
|
||||||
|
const expireList = type === '1'
|
||||||
|
? getAvailablePurchaseExpires(skuData, {mode: type, live})
|
||||||
|
: []
|
||||||
|
|
||||||
export default function Center() {
|
|
||||||
const form = useFormContext<Schema>()
|
|
||||||
const type = useWatch({name: 'type'})
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (type === '1') {
|
const nextType = modeList.includes(type) ? type : modeList[0]
|
||||||
form.setValue('daily_limit', 2000)
|
|
||||||
|
if (!nextType) {
|
||||||
|
return
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
form.setValue('quota', 10000)
|
if (nextType !== type) {
|
||||||
|
setValue('type', nextType)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}, [type, form])
|
|
||||||
|
const nextLiveList = nextType === '1'
|
||||||
|
? getAvailablePurchaseLives(skuData, {mode: nextType, expire})
|
||||||
|
: getAvailablePurchaseLives(skuData, {mode: nextType})
|
||||||
|
const nextLive = nextLiveList.includes(live) ? live : nextLiveList[0]
|
||||||
|
|
||||||
|
if (nextLive && nextLive !== live) {
|
||||||
|
setValue('live', nextLive)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nextType === '2') {
|
||||||
|
if (expire !== '0') {
|
||||||
|
setValue('expire', '0')
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const nextExpireList = getAvailablePurchaseExpires(skuData, {mode: nextType, live: nextLive})
|
||||||
|
if (!nextExpireList.includes(expire) && nextExpireList[0]) {
|
||||||
|
setValue('expire', nextExpireList[0])
|
||||||
|
}
|
||||||
|
}, [expire, live, modeList, setValue, skuData, type])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Card className="flex-auto p-6 flex flex-col gap-6 relative">
|
<Card className="flex-auto p-6 flex flex-col gap-6 relative">
|
||||||
|
<BillingMethodField modeList={modeList} timeDailyLimit={2000}/>
|
||||||
{/* 计费方式 */}
|
|
||||||
<FormField<Schema, 'type'>
|
|
||||||
className="flex flex-col gap-4"
|
|
||||||
name="type"
|
|
||||||
label="计费方式">
|
|
||||||
{({id, field}) => (
|
|
||||||
<RadioGroup
|
|
||||||
id={id}
|
|
||||||
defaultValue={field.value}
|
|
||||||
onValueChange={field.onChange}
|
|
||||||
className="flex gap-4 max-md:flex-col">
|
|
||||||
|
|
||||||
<FormOption
|
|
||||||
id={`${id}-2`}
|
|
||||||
value="2"
|
|
||||||
label="包量套餐"
|
|
||||||
description="适用于短期或不定期高提取业务场景"
|
|
||||||
compare={field.value}/>
|
|
||||||
|
|
||||||
<FormOption
|
|
||||||
id={`${id}-1`}
|
|
||||||
value="1"
|
|
||||||
label="包时套餐"
|
|
||||||
description="适用于每日提取量稳定的业务场景"
|
|
||||||
compare={field.value}/>
|
|
||||||
|
|
||||||
</RadioGroup>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
|
|
||||||
{/* IP 时效 */}
|
{/* IP 时效 */}
|
||||||
<FormField<Schema, 'live'>
|
<FormField<Schema, 'live'>
|
||||||
@@ -64,168 +75,95 @@ export default function Center() {
|
|||||||
{({id, field}) => (
|
{({id, field}) => (
|
||||||
<RadioGroup
|
<RadioGroup
|
||||||
id={id}
|
id={id}
|
||||||
defaultValue={field.value}
|
value={field.value}
|
||||||
onValueChange={field.onChange}
|
onValueChange={(value) => {
|
||||||
className="grid grid-cols-[repeat(auto-fill,minmax(120px,1fr))] gap-4">
|
field.onChange(value)
|
||||||
|
|
||||||
<FormOption id={`${id}-3`} value="180" label="3 分钟" description="¥0.005/IP" compare={field.value}/>
|
if (type !== '1') {
|
||||||
<FormOption id={`${id}-5`} value="300" label="5 分钟" description="¥0.01/IP" compare={field.value}/>
|
return
|
||||||
<FormOption id={`${id}-10`} value="600" label="10 分钟" description="¥0.02/IP" compare={field.value}/>
|
}
|
||||||
<FormOption id={`${id}-20`} value="1200" label="20 分钟" description="¥0.03/IP" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-30`} value="1800" label="30 分钟" description="¥0.06/IP" compare={field.value}/>
|
const nextExpireList = getAvailablePurchaseExpires(skuData, {mode: type, live: value})
|
||||||
|
if (!nextExpireList.includes(expire) && nextExpireList[0]) {
|
||||||
|
setValue('expire', nextExpireList[0])
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
className="grid grid-cols-[repeat(auto-fill,minmax(120px,1fr))] gap-4">
|
||||||
|
{liveList.map((live) => {
|
||||||
|
const priceExpire = type === '1' && !hasPurchaseSku(skuData, {mode: type, live, expire})
|
||||||
|
? getAvailablePurchaseExpires(skuData, {mode: type, live})[0] || '0'
|
||||||
|
: String(expire)
|
||||||
|
const price = getPurchaseSkuPrice(priceMap, {
|
||||||
|
mode: type,
|
||||||
|
live,
|
||||||
|
expire: priceExpire,
|
||||||
|
})
|
||||||
|
const minutes = Number(live)
|
||||||
|
const hours = minutes / 60
|
||||||
|
const label = minutes % 60 === 0 ? `${hours} 小时` : `${minutes} 分钟`
|
||||||
|
return (
|
||||||
|
<FormOption
|
||||||
|
key={live}
|
||||||
|
id={`${id}-${live}`}
|
||||||
|
value={live}
|
||||||
|
label={label}
|
||||||
|
description={price && `¥${price}/IP`}
|
||||||
|
compare={field.value}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
})}
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
)}
|
)}
|
||||||
</FormField>
|
</FormField>
|
||||||
|
|
||||||
{/* 根据套餐类型显示不同表单项 */}
|
{/* 套餐时效 */}
|
||||||
{type === '2' ? (
|
{type === '1' && (
|
||||||
/* 包量:IP 购买数量 */
|
<FormField className="space-y-4" name="expire" label="套餐时效">
|
||||||
<FormField
|
|
||||||
className="space-y-4"
|
|
||||||
name="quota"
|
|
||||||
label="IP 购买数量">
|
|
||||||
{({id, field}) => (
|
{({id, field}) => (
|
||||||
<div className="flex gap-2 items-center">
|
<RadioGroup
|
||||||
<Button
|
id={id}
|
||||||
theme="outline"
|
value={field.value}
|
||||||
type="button"
|
onValueChange={(value) => {
|
||||||
className="h-10 w-10 border border-gray-200 rounded-sm flex items-center justify-center text-lg"
|
field.onChange(value)
|
||||||
onClick={() => form.setValue('quota', Math.max(10000, Number(field.value) - 5000))}
|
|
||||||
disabled={Number(field.value) === 10000}>
|
const nextLiveList = getAvailablePurchaseLives(skuData, {mode: type, expire: value})
|
||||||
<Minus/>
|
if (!nextLiveList.includes(live) && nextLiveList[0]) {
|
||||||
</Button>
|
setValue('live', nextLiveList[0])
|
||||||
<Input
|
}
|
||||||
{...field}
|
}}
|
||||||
id={id}
|
className="flex gap-4 flex-wrap">
|
||||||
type="number"
|
{expireList.map(day => (
|
||||||
className="w-40 h-10 border border-gray-200 rounded-sm text-center"
|
<FormOption
|
||||||
min={10000}
|
key={day}
|
||||||
step={5000}
|
id={`${id}-${day}`}
|
||||||
onBlur={(e) => {
|
value={day}
|
||||||
const value = Number(e.target.value)
|
label={`${day} 天`}
|
||||||
if (value < 10000) {
|
compare={field.value}
|
||||||
form.setValue('quota', 10000)
|
/>
|
||||||
}
|
))}
|
||||||
}}
|
</RadioGroup>
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
theme="outline"
|
|
||||||
type="button"
|
|
||||||
className="h-10 w-10 border border-gray-200 rounded-sm flex items-center justify-center text-lg"
|
|
||||||
onClick={() => form.setValue('quota', Number(field.value) + 5000)}>
|
|
||||||
<Plus/>
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
)}
|
)}
|
||||||
</FormField>
|
</FormField>
|
||||||
) : (
|
|
||||||
<>
|
|
||||||
{/* 包时:套餐时效 */}
|
|
||||||
<FormField
|
|
||||||
className="space-y-4"
|
|
||||||
name="expire"
|
|
||||||
label="套餐时效">
|
|
||||||
{({id, field}) => (
|
|
||||||
<RadioGroup
|
|
||||||
id={id}
|
|
||||||
defaultValue={field.value}
|
|
||||||
onValueChange={field.onChange}
|
|
||||||
className="flex gap-4 flex-wrap">
|
|
||||||
|
|
||||||
<FormOption id={`${id}-7`} value="7" label="7天" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-15`} value="15" label="15天" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-30`} value="30" label="30天" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-90`} value="90" label="90天" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-180`} value="180" label="180天" compare={field.value}/>
|
|
||||||
<FormOption id={`${id}-365`} value="365" label="365天" compare={field.value}/>
|
|
||||||
</RadioGroup>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
|
|
||||||
{/* 包时:每日提取上限 */}
|
|
||||||
<FormField
|
|
||||||
className="space-y-4"
|
|
||||||
name="daily_limit"
|
|
||||||
label="每日提取上限">
|
|
||||||
{({id, field}) => (
|
|
||||||
<div className="flex gap-2 items-center">
|
|
||||||
<Button
|
|
||||||
theme="outline"
|
|
||||||
type="button"
|
|
||||||
className="h-10 w-10 border border-gray-200 rounded-sm flex items-center justify-center text-lg"
|
|
||||||
onClick={() => form.setValue('daily_limit', Math.max(2_000, Number(field.value) - 1_000))}
|
|
||||||
disabled={Number(field.value) === 2_000}>
|
|
||||||
<Minus/>
|
|
||||||
</Button>
|
|
||||||
<Input
|
|
||||||
{...field}
|
|
||||||
id={id}
|
|
||||||
type="number"
|
|
||||||
className="w-40 h-10 border border-gray-200 rounded-sm text-center"
|
|
||||||
min={2_000}
|
|
||||||
step={1_000}
|
|
||||||
onBlur={(e) => {
|
|
||||||
const value = Number(e.target.value)
|
|
||||||
if (value < 2_000) {
|
|
||||||
form.setValue('daily_limit', 2_000)
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
theme="outline"
|
|
||||||
type="button"
|
|
||||||
className="h-10 w-10 border border-gray-200 rounded-sm flex items-center justify-center text-lg"
|
|
||||||
onClick={() => form.setValue('daily_limit', Number(field.value) + 1_000)}>
|
|
||||||
<Plus/>
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
</>
|
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{/* 产品特性 */}
|
{/* 每日提取上限/购买数量 */}
|
||||||
<div className="space-y-6">
|
{type === '1' ? (
|
||||||
<h3>产品特性</h3>
|
<NumberStepperField
|
||||||
<div className="grid grid-cols-2 md:grid-cols-3 auto-rows-fr gap-4 md:gap-y-6">
|
name="daily_limit"
|
||||||
<p className="flex gap-2 items-center">
|
label="每日提取上限"
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
min={2000}
|
||||||
<span className="text-sm text-gray-500">支持高并发提取</span>
|
step={1000}
|
||||||
</p>
|
/>
|
||||||
<p className="flex gap-2 items-center">
|
) : (
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
<NumberStepperField
|
||||||
<span className="text-sm text-gray-500">指定省份、城市或混播</span>
|
name="quota"
|
||||||
</p>
|
label="IP 购买数量"
|
||||||
<p className="flex gap-2 items-center">
|
min={10000}
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
step={5000}
|
||||||
<span className="text-sm text-gray-500">账密+白名单验证</span>
|
/>
|
||||||
</p>
|
)}
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
<FeatureList/>
|
||||||
<span className="text-sm text-gray-500">完备的API接口</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
|
||||||
<span className="text-sm text-gray-500">IP时效3-30分钟(可定制)</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
|
||||||
<span className="text-sm text-gray-500">IP资源定期筛选</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
|
||||||
<span className="text-sm text-gray-500">完备的API接口</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
|
||||||
<span className="text-sm text-gray-500">包量/包时计费方式</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex gap-2 items-center">
|
|
||||||
<Image src={check} alt="check" aria-hidden className="w-4 h-4"/>
|
|
||||||
<span className="text-sm text-gray-500">每日去重量:500万</span>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Card>
|
</Card>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,42 +1,38 @@
|
|||||||
'use client'
|
'use client'
|
||||||
import {createContext} from 'react'
|
import {useForm} from 'react-hook-form'
|
||||||
import {useForm, UseFormReturn} from 'react-hook-form'
|
|
||||||
import Center from '@/components/composites/purchase/short/center'
|
import Center from '@/components/composites/purchase/short/center'
|
||||||
import Right from '@/components/composites/purchase/short/right'
|
|
||||||
import {Form} from '@/components/ui/form'
|
import {Form} from '@/components/ui/form'
|
||||||
import * as z from 'zod'
|
import * as z from 'zod'
|
||||||
import {zodResolver} from '@hookform/resolvers/zod'
|
import {zodResolver} from '@hookform/resolvers/zod'
|
||||||
|
import {ProductItem} from '@/actions/product'
|
||||||
|
import {getAvailablePurchaseExpires, getAvailablePurchaseLives, parsePurchaseSkuList} from '../shared/sku'
|
||||||
|
import {PurchaseSidePanel} from '../shared/side-panel'
|
||||||
|
|
||||||
// 定义表单验证架构
|
|
||||||
const schema = z.object({
|
const schema = z.object({
|
||||||
type: z.enum(['1', '2']).default('2'),
|
type: z.enum(['1', '2']).default('2'),
|
||||||
live: z.enum(['180', '300', '600', '1200', '1800']),
|
live: z.string(),
|
||||||
quota: z.number().min(10000, '购买数量不能少于10000个'),
|
quota: z.number().min(10000, '购买数量不能少于 10000 个'),
|
||||||
expire: z.enum(['7', '15', '30', '90', '180', '365']),
|
expire: z.string(),
|
||||||
daily_limit: z.number().min(2000, '每日限额不能少于2000个'),
|
daily_limit: z.number().min(2000, '每日限额不能少于 2000 个'),
|
||||||
pay_type: z.enum(['wechat', 'alipay', 'balance']),
|
pay_type: z.enum(['wechat', 'alipay', 'balance']).default('balance'),
|
||||||
})
|
})
|
||||||
|
|
||||||
// 从架构中推断类型
|
|
||||||
export type Schema = z.infer<typeof schema>
|
export type Schema = z.infer<typeof schema>
|
||||||
|
|
||||||
type PurchaseFormContextType = {
|
export default function ShortForm({skuList}: {skuList: ProductItem['skus']}) {
|
||||||
form: UseFormReturn<Schema>
|
const skuData = parsePurchaseSkuList('short', skuList)
|
||||||
onSubmit?: () => void
|
const defaultMode = skuData.modeList.includes('2') ? '2' : '1'
|
||||||
}
|
const defaultLive = getAvailablePurchaseLives(skuData, {mode: defaultMode})[0] || ''
|
||||||
|
const defaultExpire = defaultMode === '1'
|
||||||
|
? getAvailablePurchaseExpires(skuData, {mode: defaultMode, live: defaultLive})[0] || '0'
|
||||||
|
: '0'
|
||||||
|
|
||||||
export const PurchaseFormContext = createContext<PurchaseFormContextType | undefined>(undefined)
|
|
||||||
|
|
||||||
export type PurchaseFormProps = {}
|
|
||||||
|
|
||||||
export default function PurchaseForm(props: PurchaseFormProps) {
|
|
||||||
const form = useForm<Schema>({
|
const form = useForm<Schema>({
|
||||||
resolver: zodResolver(schema),
|
resolver: zodResolver(schema),
|
||||||
defaultValues: {
|
defaultValues: {
|
||||||
type: '2', // 默认为包量套餐
|
type: defaultMode,
|
||||||
live: '180', // 分钟
|
live: defaultLive,
|
||||||
quota: 10_000, // >= 10000
|
expire: defaultExpire,
|
||||||
expire: '30', // 天
|
quota: 10_000, // >= 10000,
|
||||||
daily_limit: 2_000, // >= 2000
|
daily_limit: 2_000, // >= 2000
|
||||||
pay_type: 'balance', // 余额支付
|
pay_type: 'balance', // 余额支付
|
||||||
},
|
},
|
||||||
@@ -44,8 +40,8 @@ export default function PurchaseForm(props: PurchaseFormProps) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Form form={form} className="flex flex-col lg:flex-row gap-4">
|
<Form form={form} className="flex flex-col lg:flex-row gap-4">
|
||||||
<Center/>
|
<Center skuData={skuData}/>
|
||||||
<Right/>
|
<PurchaseSidePanel kind="short"/>
|
||||||
</Form>
|
</Form>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,233 +0,0 @@
|
|||||||
'use client'
|
|
||||||
import {Suspense, use, useEffect, useMemo, useState} from 'react'
|
|
||||||
import {Schema} from '@/components/composites/purchase/short/form'
|
|
||||||
import {RadioGroup} from '@/components/ui/radio-group'
|
|
||||||
import {FormField} from '@/components/ui/form'
|
|
||||||
import FormOption from '@/components/composites/purchase/option'
|
|
||||||
import Image from 'next/image'
|
|
||||||
import alipay from '../_assets/alipay.svg'
|
|
||||||
import wechat from '../_assets/wechat.svg'
|
|
||||||
import balance from '../_assets/balance.svg'
|
|
||||||
import {useProfileStore} from '@/components/stores/profile'
|
|
||||||
import RechargeModal from '@/components/composites/recharge'
|
|
||||||
import {buttonVariants} from '@/components/ui/button'
|
|
||||||
import Link from 'next/link'
|
|
||||||
import {merge} from '@/lib/utils'
|
|
||||||
import Pay from '@/components/composites/purchase/pay'
|
|
||||||
import {useFormContext, useWatch} from 'react-hook-form'
|
|
||||||
import {Card} from '@/components/ui/card'
|
|
||||||
import {CreateResourceReq, getPrice} from '@/actions/resource'
|
|
||||||
import {ExtraResp} from '@/lib/api'
|
|
||||||
|
|
||||||
export default function Right() {
|
|
||||||
const {control} = useFormContext<Schema>()
|
|
||||||
const method = useWatch({control, name: 'pay_type'})
|
|
||||||
const live = useWatch({control, name: 'live'})
|
|
||||||
const mode = useWatch({control, name: 'type'})
|
|
||||||
const expire = useWatch({control, name: 'expire'})
|
|
||||||
const quota = useWatch({control, name: 'quota'})
|
|
||||||
const dailyLimit = useWatch({control, name: 'daily_limit'})
|
|
||||||
const [priceData, setPriceData] = useState<ExtraResp<typeof getPrice>>({
|
|
||||||
price: '0.00',
|
|
||||||
discounted_price: '0.00',
|
|
||||||
discounted: 0,
|
|
||||||
})
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const price = async () => {
|
|
||||||
try {
|
|
||||||
const priceResponse = await getPrice({
|
|
||||||
type: 1,
|
|
||||||
short: {
|
|
||||||
live: Number(live),
|
|
||||||
mode: Number(mode),
|
|
||||||
quota: mode === '1' ? Number(dailyLimit) : Number(quota),
|
|
||||||
expire: mode === '1' ? Number(expire) : undefined,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
if (!priceResponse.success) {
|
|
||||||
throw new Error('获取价格失败')
|
|
||||||
}
|
|
||||||
|
|
||||||
const data = priceResponse.data
|
|
||||||
setPriceData({
|
|
||||||
price: data.price,
|
|
||||||
discounted_price: data.discounted_price ?? data.price ?? '',
|
|
||||||
discounted: data.discounted,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
catch (error) {
|
|
||||||
console.error('获取价格失败:', error)
|
|
||||||
setPriceData({
|
|
||||||
price: '0.00',
|
|
||||||
discounted_price: '0.00',
|
|
||||||
discounted: 0,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
price()
|
|
||||||
}, [expire, live, quota, mode, dailyLimit])
|
|
||||||
|
|
||||||
const {price, discounted_price: discountedPrice = '', discounted} = priceData
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card className={merge(
|
|
||||||
`flex-none basis-90 p-6 flex flex-col gap-6 relative`,
|
|
||||||
)}>
|
|
||||||
<h3>订单详情</h3>
|
|
||||||
<ul className="flex flex-col gap-3">
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">套餐名称</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
{mode === '2' ? `包量套餐` : `包时套餐`}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">IP 时效</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
{Number(live) / 60}
|
|
||||||
{' '}
|
|
||||||
分钟
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
{mode === '2' ? (
|
|
||||||
<>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">购买 IP 量</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
{quota}
|
|
||||||
个
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">实价</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
¥{price}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">套餐时长</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
{expire}
|
|
||||||
天
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">每日限额</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
{dailyLimit}
|
|
||||||
个
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">原价</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
¥{price}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
{discounted === 1 ? '' : (
|
|
||||||
<li className="flex justify-between items-center">
|
|
||||||
<span className="text-sm text-gray-500">总折扣</span>
|
|
||||||
<span className="text-sm">
|
|
||||||
-¥{discounted === 1 ? '' : discounted}
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</ul>
|
|
||||||
<div className="border-b border-gray-200"></div>
|
|
||||||
<p className="flex justify-between items-center">
|
|
||||||
<span>实付价格</span>
|
|
||||||
<span className="text-xl text-orange-500">
|
|
||||||
¥{discountedPrice}
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
<Suspense>
|
|
||||||
<BalanceOrLogin {...{method, discountedPrice, mode, live, quota, expire, dailyLimit}}/>
|
|
||||||
</Suspense>
|
|
||||||
</Card>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function BalanceOrLogin(props: {
|
|
||||||
method: 'wechat' | 'alipay' | 'balance'
|
|
||||||
discountedPrice: string
|
|
||||||
mode: string
|
|
||||||
live: string
|
|
||||||
quota: number
|
|
||||||
expire: string
|
|
||||||
dailyLimit: number
|
|
||||||
}) {
|
|
||||||
const profile = use(useProfileStore(store => store.profile))
|
|
||||||
return profile ? (
|
|
||||||
<>
|
|
||||||
<FormField name="pay_type" label="支付方式" className="flex flex-col gap-6">
|
|
||||||
{({id, field}) => (
|
|
||||||
<RadioGroup
|
|
||||||
id={id}
|
|
||||||
defaultValue={field.value}
|
|
||||||
onValueChange={field.onChange}
|
|
||||||
className="flex flex-col gap-3">
|
|
||||||
|
|
||||||
{/* <div className="w-full p-3 flex flex-col gap-4 bg-gray-100 rounded-md">
|
|
||||||
<p className="flex items-center gap-3">
|
|
||||||
<Image src={balance} alt="余额icon"/>
|
|
||||||
<span className="text-sm text-gray-500">账户余额</span>
|
|
||||||
</p>
|
|
||||||
<p className="flex justify-between items-center">
|
|
||||||
<span className="text-xl">{profile.balance}</span>
|
|
||||||
<RechargeModal/>
|
|
||||||
</p>
|
|
||||||
</div> */}
|
|
||||||
|
|
||||||
{/* <FormOption
|
|
||||||
id={`${id}-balance`}
|
|
||||||
value="balance"
|
|
||||||
compare={field.value}
|
|
||||||
className="p-3 w-full flex-row gap-2 justify-center">
|
|
||||||
<Image src={balance} alt="余额 icon"/>
|
|
||||||
<span>余额</span>
|
|
||||||
</FormOption> */}
|
|
||||||
<FormOption
|
|
||||||
id={`${id}-wechat`}
|
|
||||||
value="wechat"
|
|
||||||
compare={field.value}
|
|
||||||
className="p-3 w-full flex-row gap-2 justify-center">
|
|
||||||
<Image src={wechat} alt="微信 logo"/>
|
|
||||||
<span>微信</span>
|
|
||||||
</FormOption>
|
|
||||||
<FormOption
|
|
||||||
id={`${id}-alipay`}
|
|
||||||
value="alipay"
|
|
||||||
compare={field.value}
|
|
||||||
className="p-3 w-full flex-row gap-2 justify-center">
|
|
||||||
<Image src={alipay} alt="支付宝 logo"/>
|
|
||||||
<span>支付宝</span>
|
|
||||||
</FormOption>
|
|
||||||
</RadioGroup>
|
|
||||||
)}
|
|
||||||
</FormField>
|
|
||||||
<Pay
|
|
||||||
method={props.method}
|
|
||||||
balance={profile.balance}
|
|
||||||
amount={props.discountedPrice}
|
|
||||||
resource={{
|
|
||||||
type: 1,
|
|
||||||
short: {
|
|
||||||
mode: Number(props.mode),
|
|
||||||
live: Number(props.live),
|
|
||||||
expire: Number(props.expire),
|
|
||||||
quota: props.mode === '1' ? props.dailyLimit : props.quota,
|
|
||||||
},
|
|
||||||
}}/>
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<Link href="/login" className={buttonVariants()}>
|
|
||||||
登录后支付
|
|
||||||
</Link>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -21,7 +21,6 @@ import {merge} from '@/lib/utils'
|
|||||||
import {
|
import {
|
||||||
TradePlatform,
|
TradePlatform,
|
||||||
TradeMethod,
|
TradeMethod,
|
||||||
TradeMethodDecoration,
|
|
||||||
} from '@/lib/models/trade'
|
} from '@/lib/models/trade'
|
||||||
import {PaymentModal} from '@/components/composites/payment/payment-modal'
|
import {PaymentModal} from '@/components/composites/payment/payment-modal'
|
||||||
import Image from 'next/image'
|
import Image from 'next/image'
|
||||||
@@ -77,7 +76,6 @@ export default function RechargeModal(props: RechargeModelProps) {
|
|||||||
amount: data.amount,
|
amount: data.amount,
|
||||||
platform: platform,
|
platform: platform,
|
||||||
method: method,
|
method: method,
|
||||||
decoration: TradeMethodDecoration[data.method],
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
38
src/components/stores/app.tsx
Normal file
38
src/components/stores/app.tsx
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
'use client'
|
||||||
|
import {createStore, StoreApi} from 'zustand/vanilla'
|
||||||
|
import {createContext, ReactNode, useContext, useState} from 'react'
|
||||||
|
import {useStore} from 'zustand/react'
|
||||||
|
|
||||||
|
// store
|
||||||
|
type AppStoreState = {
|
||||||
|
apiUrl: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export function createAppStore(url: string) {
|
||||||
|
return createStore<AppStoreState>()(() => ({
|
||||||
|
apiUrl: url,
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
|
// provider
|
||||||
|
const AppStoreContext = createContext<StoreApi<AppStoreState> | null>(null)
|
||||||
|
|
||||||
|
export function AppStoreProvider(props: {
|
||||||
|
url: string
|
||||||
|
children: ReactNode
|
||||||
|
}) {
|
||||||
|
const [store] = useState(() => createAppStore(props.url))
|
||||||
|
return (
|
||||||
|
<AppStoreContext.Provider value={store}>
|
||||||
|
{props.children}
|
||||||
|
</AppStoreContext.Provider>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useAppStore(name: keyof AppStoreState) {
|
||||||
|
const context = useContext(AppStoreContext)
|
||||||
|
if (!context) {
|
||||||
|
throw new Error('AppStoreContext 没有正确初始化')
|
||||||
|
}
|
||||||
|
return useStore(context, c => c[name])
|
||||||
|
}
|
||||||
@@ -11,6 +11,7 @@ export const buttonVariants = cva(
|
|||||||
'aria-invalid:ring-fail/20 dark:aria-invalid:ring-fail/40 aria-invalid:border-fail', // 无效状态样式
|
'aria-invalid:ring-fail/20 dark:aria-invalid:ring-fail/40 aria-invalid:border-fail', // 无效状态样式
|
||||||
'inline-flex items-center justify-center gap-2', // 布局
|
'inline-flex items-center justify-center gap-2', // 布局
|
||||||
'[&_svg]:pointer-events-none [&_svg:not([class*="size-"])]:size-4 shrink-0 [&_svg]:shrink-0 ',
|
'[&_svg]:pointer-events-none [&_svg:not([class*="size-"])]:size-4 shrink-0 [&_svg]:shrink-0 ',
|
||||||
|
'cursor-pointer',
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
variants: {
|
variants: {
|
||||||
|
|||||||
135
src/components/ui/drawer.tsx
Normal file
135
src/components/ui/drawer.tsx
Normal file
@@ -0,0 +1,135 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import * as React from 'react'
|
||||||
|
import {Drawer as DrawerPrimitive} from 'vaul'
|
||||||
|
|
||||||
|
import {merge} from '@/lib/utils/index'
|
||||||
|
|
||||||
|
function Drawer({
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof DrawerPrimitive.Root>) {
|
||||||
|
return <DrawerPrimitive.Root data-slot="drawer" {...props}/>
|
||||||
|
}
|
||||||
|
|
||||||
|
function DrawerTrigger({
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof DrawerPrimitive.Trigger>) {
|
||||||
|
return <DrawerPrimitive.Trigger data-slot="drawer-trigger" {...props}/>
|
||||||
|
}
|
||||||
|
|
||||||
|
function DrawerPortal({
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof DrawerPrimitive.Portal>) {
|
||||||
|
return <DrawerPrimitive.Portal data-slot="drawer-portal" {...props}/>
|
||||||
|
}
|
||||||
|
|
||||||
|
function DrawerClose({
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof DrawerPrimitive.Close>) {
|
||||||
|
return <DrawerPrimitive.Close data-slot="drawer-close" {...props}/>
|
||||||
|
}
|
||||||
|
|
||||||
|
function DrawerOverlay({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof DrawerPrimitive.Overlay>) {
|
||||||
|
return (
|
||||||
|
<DrawerPrimitive.Overlay
|
||||||
|
data-slot="drawer-overlay"
|
||||||
|
className={merge(
|
||||||
|
'fixed inset-0 z-50 bg-black/50 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:animate-in data-[state=open]:fade-in-0',
|
||||||
|
className,
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function DrawerContent({
|
||||||
|
className,
|
||||||
|
children,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof DrawerPrimitive.Content>) {
|
||||||
|
return (
|
||||||
|
<DrawerPortal data-slot="drawer-portal">
|
||||||
|
<DrawerOverlay/>
|
||||||
|
<DrawerPrimitive.Content
|
||||||
|
data-slot="drawer-content"
|
||||||
|
className={merge(
|
||||||
|
'group/drawer-content fixed z-50 flex h-auto flex-col bg-background',
|
||||||
|
'data-[vaul-drawer-direction=top]:inset-x-0 data-[vaul-drawer-direction=top]:top-0 data-[vaul-drawer-direction=top]:mb-24 data-[vaul-drawer-direction=top]:max-h-[80vh] data-[vaul-drawer-direction=top]:rounded-b-lg data-[vaul-drawer-direction=top]:border-b',
|
||||||
|
'data-[vaul-drawer-direction=bottom]:inset-x-0 data-[vaul-drawer-direction=bottom]:bottom-0 data-[vaul-drawer-direction=bottom]:mt-24 data-[vaul-drawer-direction=bottom]:max-h-[80vh] data-[vaul-drawer-direction=bottom]:rounded-t-lg data-[vaul-drawer-direction=bottom]:border-t',
|
||||||
|
'data-[vaul-drawer-direction=right]:inset-y-0 data-[vaul-drawer-direction=right]:right-0 data-[vaul-drawer-direction=right]:w-3/4 data-[vaul-drawer-direction=right]:border-l data-[vaul-drawer-direction=right]:sm:max-w-sm',
|
||||||
|
'data-[vaul-drawer-direction=left]:inset-y-0 data-[vaul-drawer-direction=left]:left-0 data-[vaul-drawer-direction=left]:w-3/4 data-[vaul-drawer-direction=left]:border-r data-[vaul-drawer-direction=left]:sm:max-w-sm',
|
||||||
|
className,
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<div className="mx-auto mt-4 hidden h-2 w-[100px] shrink-0 rounded-full bg-muted group-data-[vaul-drawer-direction=bottom]/drawer-content:block"/>
|
||||||
|
{children}
|
||||||
|
</DrawerPrimitive.Content>
|
||||||
|
</DrawerPortal>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function DrawerHeader({className, ...props}: React.ComponentProps<'div'>) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="drawer-header"
|
||||||
|
className={merge(
|
||||||
|
'flex flex-col gap-0.5 p-4 group-data-[vaul-drawer-direction=bottom]/drawer-content:text-center group-data-[vaul-drawer-direction=top]/drawer-content:text-center md:gap-1.5 md:text-left',
|
||||||
|
className,
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function DrawerFooter({className, ...props}: React.ComponentProps<'div'>) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="drawer-footer"
|
||||||
|
className={merge('mt-auto flex flex-col gap-2 p-4', className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function DrawerTitle({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof DrawerPrimitive.Title>) {
|
||||||
|
return (
|
||||||
|
<DrawerPrimitive.Title
|
||||||
|
data-slot="drawer-title"
|
||||||
|
className={merge('font-semibold text-foreground', className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function DrawerDescription({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof DrawerPrimitive.Description>) {
|
||||||
|
return (
|
||||||
|
<DrawerPrimitive.Description
|
||||||
|
data-slot="drawer-description"
|
||||||
|
className={merge('text-sm text-muted-foreground', className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
Drawer,
|
||||||
|
DrawerPortal,
|
||||||
|
DrawerOverlay,
|
||||||
|
DrawerTrigger,
|
||||||
|
DrawerClose,
|
||||||
|
DrawerContent,
|
||||||
|
DrawerHeader,
|
||||||
|
DrawerFooter,
|
||||||
|
DrawerTitle,
|
||||||
|
DrawerDescription,
|
||||||
|
}
|
||||||
@@ -107,13 +107,9 @@ function Pagination({
|
|||||||
const paginationItems = generatePaginationItems()
|
const paginationItems = generatePaginationItems()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={`flex flex-wrap items-center justify-end gap-4 ${className || ''}`}>
|
<div className={`flex flex-wrap items-center gap-4 ${className || ''}`}>
|
||||||
<div className="flex-none flex items-center gap-2 text-sm text-muted-foreground">
|
<div className="flex-none flex items-center gap-2 text-sm text-muted-foreground">
|
||||||
共
|
共 {total} 条记录,每页
|
||||||
{' '}
|
|
||||||
{total}
|
|
||||||
{' '}
|
|
||||||
条记录,每页
|
|
||||||
<Select
|
<Select
|
||||||
value={size.toString()}
|
value={size.toString()}
|
||||||
onValueChange={handlePageSizeChange}
|
onValueChange={handlePageSizeChange}
|
||||||
|
|||||||
78
src/components/updateSend-msg.tsx
Normal file
78
src/components/updateSend-msg.tsx
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
'use client'
|
||||||
|
import {useEffect, useRef, useState} from 'react'
|
||||||
|
import Cap from '@cap.js/widget'
|
||||||
|
import {updateSendSMS} from '@/actions/verify'
|
||||||
|
import {toast} from 'sonner'
|
||||||
|
import {Button} from '@/components/ui/button'
|
||||||
|
import {LoaderIcon} from 'lucide-react'
|
||||||
|
|
||||||
|
export default function SendMsg() {
|
||||||
|
const [countdown, setCountdown] = useState(0)
|
||||||
|
const [progress, setProgress] = useState(0)
|
||||||
|
const [mode, setMode] = useState<'ready' | 'wait' | 'check'>('ready')
|
||||||
|
const cap = useRef(new Cap({apiEndpoint: '/'}))
|
||||||
|
cap.current.addEventListener('progress', (event) => {
|
||||||
|
setProgress(event.detail.progress)
|
||||||
|
})
|
||||||
|
|
||||||
|
// 发送验证码
|
||||||
|
const sendCode = async () => {
|
||||||
|
try {
|
||||||
|
setMode('check')
|
||||||
|
|
||||||
|
// 完成挑战
|
||||||
|
const result = await cap.current.solve()
|
||||||
|
if (!result.success || !cap.current.token) {
|
||||||
|
throw new Error('人机验证失败')
|
||||||
|
}
|
||||||
|
|
||||||
|
// 发送验证码
|
||||||
|
const resp = await updateSendSMS({
|
||||||
|
captcha: cap.current.token,
|
||||||
|
})
|
||||||
|
if (!resp.success) {
|
||||||
|
throw new Error(`验证码发送失败: ${resp.message}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
setMode('wait')
|
||||||
|
setCountdown(60)
|
||||||
|
toast.success('验证码已发送')
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
setMode('ready')
|
||||||
|
toast.error('验证码发送失败', {
|
||||||
|
description: (e as Error).message,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 计时
|
||||||
|
useEffect(() => {
|
||||||
|
const interval = setInterval(() => {
|
||||||
|
if (countdown > 0) {
|
||||||
|
setCountdown(countdown - 1)
|
||||||
|
}
|
||||||
|
else if (mode === 'wait') {
|
||||||
|
setMode('ready')
|
||||||
|
}
|
||||||
|
}, 1000)
|
||||||
|
return () => clearInterval(interval)
|
||||||
|
}, [countdown, mode])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Button
|
||||||
|
type="button"
|
||||||
|
theme="outline"
|
||||||
|
className="whitespace-nowrap h-10"
|
||||||
|
disabled={countdown > 0}
|
||||||
|
onClick={sendCode}
|
||||||
|
>
|
||||||
|
{mode === 'check' && <LoaderIcon className="animate-spin"/>}
|
||||||
|
<span>
|
||||||
|
{mode === 'check' && '检查登录环境'}
|
||||||
|
{mode === 'wait' && `${countdown}秒后重发`}
|
||||||
|
{mode === 'ready' && '获取验证码'}
|
||||||
|
</span>
|
||||||
|
</Button>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -1,7 +1,15 @@
|
|||||||
// 定义后端服务URL和OAuth2配置
|
// 定义后端服务URL和OAuth2配置
|
||||||
const API_BASE_URL = process.env.NEXT_PUBLIC_API_BASE_URL
|
const _api_base_url = process.env.API_BASE_URL
|
||||||
const CLIENT_ID = process.env.CLIENT_ID
|
if (!_api_base_url) throw new Error('API_BASE_URL is not set')
|
||||||
const CLIENT_SECRET = process.env.CLIENT_SECRET
|
const API_BASE_URL = _api_base_url
|
||||||
|
|
||||||
|
const _client_id = process.env.CLIENT_ID
|
||||||
|
if (!_client_id) throw new Error('CLIENT_ID is not set')
|
||||||
|
const CLIENT_ID = _client_id
|
||||||
|
|
||||||
|
const _client_secret = process.env.CLIENT_SECRET
|
||||||
|
if (!_client_secret) throw new Error('CLIENT_SECRET is not set')
|
||||||
|
const CLIENT_SECRET = _client_secret
|
||||||
|
|
||||||
// 统一的API响应类型
|
// 统一的API响应类型
|
||||||
type ApiResponse<T = undefined> = {
|
type ApiResponse<T = undefined> = {
|
||||||
|
|||||||
@@ -8,4 +8,5 @@ export type Batch = {
|
|||||||
time: string
|
time: string
|
||||||
user_id: number
|
user_id: number
|
||||||
prov: string
|
prov: string
|
||||||
|
city: string
|
||||||
}
|
}
|
||||||
|
|||||||
10
src/lib/models/product-sku.ts
Normal file
10
src/lib/models/product-sku.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
export type ProductSku = {
|
||||||
|
id: number
|
||||||
|
code: string
|
||||||
|
name: string
|
||||||
|
price: string
|
||||||
|
price_min: string
|
||||||
|
product_id: number
|
||||||
|
discount_id: number
|
||||||
|
status: number
|
||||||
|
}
|
||||||
11
src/lib/models/product.ts
Normal file
11
src/lib/models/product.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import {ProductSku} from './product-sku'
|
||||||
|
|
||||||
|
export type Product = {
|
||||||
|
id: number
|
||||||
|
code: string
|
||||||
|
name: string
|
||||||
|
description: string
|
||||||
|
sort: number
|
||||||
|
status: number
|
||||||
|
skus?: ProductSku[]
|
||||||
|
}
|
||||||
@@ -1,16 +1,26 @@
|
|||||||
import {StaticImageData} from 'next/image'
|
import {StaticImageData} from 'next/image'
|
||||||
import wechat from '@/components/composites/purchase/_assets/wechat.svg'
|
import wechat from '@/components/composites/purchase/_assets/wechat.svg'
|
||||||
import alipay from '@/components/composites/purchase/_assets/alipay.svg'
|
import alipay from '@/components/composites/purchase/_assets/alipay.svg'
|
||||||
|
import balance from '@/components/composites/purchase/_assets/balance.svg'
|
||||||
|
|
||||||
export const TradeMethodDecoration = {
|
export function getTradeMethodDecoration(method: TradeMethod) {
|
||||||
alipay: {
|
switch (method) {
|
||||||
text: '支付宝',
|
case TradeMethod.Alipay:
|
||||||
icon: alipay,
|
return {
|
||||||
},
|
text: '支付宝',
|
||||||
wechat: {
|
icon: alipay,
|
||||||
text: '微信支付',
|
}
|
||||||
icon: wechat,
|
case TradeMethod.Wechat:
|
||||||
},
|
return {
|
||||||
|
text: '微信支付',
|
||||||
|
icon: wechat,
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return {
|
||||||
|
text: '扫码支付',
|
||||||
|
icon: balance,
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 支付方法枚举
|
// 支付方法枚举
|
||||||
|
|||||||
Reference in New Issue
Block a user