mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
Keeps subscription SaaS vision from PRD while adding accurate as-is analysis of existing code. Each story now has an "As-Is" table showing what exists and where the gaps are. Key points: - Story 3.5: Transition from BYOK to system-managed models with token billing. BYOK stays for self-hosted mode (deployment_mode=self-hosted), system models + subscription quota for hosted mode. - Story 5.1: Pricing UI exists (Free/PAYG/Enterprise) but needs redesign to subscription tiers (Free/Pro) with monthly/yearly toggle. - Story 5.2: PAYG checkout exists (mode=payment), need NEW subscription endpoint (mode=subscription) with stripe_customer_id binding. - Story 5.3: Webhook infrastructure exists (signature verify, PAYG handlers). Need subscription event handlers (customer.subscription.*) alongside. - Story 5.4: PageLimitService fully implemented. Gap is HTTP-layer pre-check, plan-based limits, frontend quota indicator, and 402 error handling. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
61 lines
3.7 KiB
Markdown
61 lines
3.7 KiB
Markdown
# Story 5.1: Giao diện Bảng giá & Lựa chọn Gói Cước (Pricing & Plan Selection UI)
|
||
|
||
Status: ready-for-dev
|
||
|
||
## Story
|
||
|
||
As a Khách hàng tiềm năng,
|
||
I want xem một bảng giá rõ ràng về các gói cước (ví dụ: Free, Pro, Team) với quyền lợi tương ứng,
|
||
so that tôi biết chính xác số lượng file/tin nhắn mình nhận được trước khi quyết định nâng cấp hoặc duy trì để quản lý ví (Wallet/Token) của mình.
|
||
|
||
## Acceptance Criteria
|
||
|
||
1. UI hiển thị các mức giá (monthly/yearly) rõ ràng cùng các bullets tính năng.
|
||
2. Thiết kế áp dụng chuẩn UX-DR1 (Dark mode, Base Zinc, Accent Indigo) hiện có của app.
|
||
3. Kèm theo hiệu ứng hover mượt mà cho các Pricing Cards (<150ms delay).
|
||
4. Phân bổ ít nhất 2 gói cước (Free, Pro) gắn liền với Limit.
|
||
|
||
## As-Is (Code hiện tại)
|
||
|
||
| Component | Hiện trạng | File |
|
||
|-----------|-----------|------|
|
||
| Pricing Page | **Đã tồn tại** — route `/pricing` | `surfsense_web/app/(home)/pricing/page.tsx` |
|
||
| Pricing Section | **Đã tồn tại** — 3 tiers (FREE / PAY AS YOU GO / ENTERPRISE) | `surfsense_web/components/pricing/pricing-section.tsx` |
|
||
| Pricing Data | Static `demoPlans` constant — Free=500 pages, PAYG=$1/1000 pages, Enterprise=Contact | `pricing-section.tsx` lines 2–59 |
|
||
| CTA Buttons | Free="Get Started" → `/login`, PAYG="Get Started" → `/login`, Enterprise="Contact Sales" → `/contact` | `pricing-section.tsx` |
|
||
| Monthly/Yearly Toggle | **Không có** — chỉ có `price` và `yearlyPrice` fields nhưng chưa có toggle UI | |
|
||
|
||
**Gap:** UI hiện tại mô hình PAYG (mua page packs 1 lần). Cần chuyển sang **Subscription tiers** (Free/Pro/Team monthly/yearly) theo PRD.
|
||
|
||
## Tasks / Subtasks
|
||
|
||
- [ ] Task 1: Thiết kế lại Pricing Tiers (Frontend)
|
||
- [ ] Subtask 1.1: Cập nhật `demoPlans` constant → đổi sang subscription tiers:
|
||
- **Free**: 500 pages ETL, 50 LLM messages/day, basic models (GPT-3.5), $0/mo
|
||
- **Pro**: 5,000 pages ETL, 1,000 LLM messages/day, premium models (GPT-4, Claude), $X/mo hoặc $Y/year
|
||
- **Team/Enterprise**: Unlimited, custom pricing, SSO, audit logs
|
||
- [ ] Subtask 1.2: Thêm Monthly/Yearly toggle switch — hiển thị `price` vs `yearlyPrice` tương ứng.
|
||
|
||
- [ ] Task 2: Kết nối nút CTA với Stripe Checkout (Frontend)
|
||
- [ ] Subtask 2.1: Nút "Get Started" cho tier Free → redirect `/login` (giữ nguyên).
|
||
- [ ] Subtask 2.2: Nút "Upgrade to Pro" → gọi `POST /api/v1/stripe/create-subscription-checkout` (Story 5.2) với `plan_id` tương ứng. Nếu user chưa login → redirect `/login` trước.
|
||
- [ ] Subtask 2.3: Nút "Contact Sales" cho Enterprise → giữ nguyên `/contact`.
|
||
|
||
- [ ] Task 3: Graceful degradation khi Offline
|
||
- [ ] Subtask 3.1: Pricing data dùng static constant (load được offline). Disable nút "Upgrade" khi offline để tránh lỗi network request.
|
||
|
||
## Dev Notes
|
||
|
||
### Giữ lại hay xóa PAYG?
|
||
Quyết định kinh doanh: PAYG (mua page packs 1 lần) có thể tồn tại song song với subscription, hoặc bị thay thế hoàn toàn. Nếu giữ PAYG → thêm 1 tier "Pay As You Go" bên cạnh Free/Pro. Nếu thay → xóa PAYG flow cũ.
|
||
|
||
### Stripe Price IDs
|
||
Mỗi tier subscription cần 1 Stripe Price ID (tạo trên Stripe Dashboard):
|
||
- `STRIPE_FREE_PRICE_ID` (optional — free tier không cần checkout)
|
||
- `STRIPE_PRO_MONTHLY_PRICE_ID`
|
||
- `STRIPE_PRO_YEARLY_PRICE_ID`
|
||
→ Lưu vào env vars backend, KHÔNG hardcode trong frontend.
|
||
|
||
### References
|
||
- `surfsense_web/components/pricing/pricing-section.tsx` — pricing UI hiện tại
|
||
- `surfsense_web/app/(home)/pricing/page.tsx` — pricing page route
|