完成个人中心页面功能,公共组件部分调整

This commit is contained in:
2025-04-29 18:47:36 +08:00
parent ec7eb7093f
commit 09d6255bd5
13 changed files with 531 additions and 666 deletions

View File

@@ -1,5 +1,9 @@
## TODO ## TODO
验证码读秒用 store 保存到本地,(全局共享读秒时间)
网页标题根据实际页面变化
检查时间范围选择,限定到一定范围内 检查时间范围选择,限定到一定范围内
将翻页操作反映在路由历史中,可以通过后退返回到上一个翻页状态 将翻页操作反映在路由历史中,可以通过后退返回到上一个翻页状态
@@ -21,3 +25,6 @@
- [ ] 提取记录 - [ ] 提取记录
- [ ] 使用记录 - [ ] 使用记录
检查扩大服务端组件边界
检查 Card 替换 section 或 div

View File

@@ -163,6 +163,7 @@ async function postCall<R = undefined>(rawResp: Promise<ApiResponse<R>>) {
].some(item => item.test(pathname)) ].some(item => item.test(pathname))
if (match && !resp.success && resp.status === 401) { if (match && !resp.success && resp.status === 401) {
console.log("!!!!!!!!!redirect", resp.message)
redirect(pathname === '/' ? '/login' : `/login?redirect=${pathname}`) redirect(pathname === '/' ? '/login' : `/login?redirect=${pathname}`)
} }

View File

@@ -1,5 +1,4 @@
'use server' 'use server'
import {callByUser, callPublic} from '@/actions/base' import {callByUser, callPublic} from '@/actions/base'
export async function RechargeByAlipay(props: { export async function RechargeByAlipay(props: {
@@ -51,3 +50,20 @@ export async function IdentifyCallback(props: {
message: string message: string
}>('/api/user/identify/callback', props) }>('/api/user/identify/callback', props)
} }
export async function update(props: {
username: string
email: string
contact_qq: string
contact_wechat: string
}) {
return await callByUser('/api/user/update', props)
}
export async function updatePassword(props: {
phone: string
code: string
password: string
}) {
return await callByUser('/api/user/update/password', props)
}

View File

@@ -18,6 +18,8 @@ import personal from './_assets/personal.webp'
import step1 from './_assets/step1.webp' import step1 from './_assets/step1.webp'
import step2 from './_assets/step2.webp' import step2 from './_assets/step2.webp'
import step3 from './_assets/step3.webp' import step3 from './_assets/step3.webp'
import {Card, CardContent, CardDescription, CardHeader, CardTitle} from '@/components/ui/card'
import {WorkflowIcon} from 'lucide-react'
export type IdentifyPageProps = {} export type IdentifyPageProps = {}
@@ -180,15 +182,21 @@ export default function IdentifyPage(props: IdentifyPageProps) {
</div> </div>
</div> </div>
<section className={`flex-none basis-80 flex flex-col bg-white rounded-lg p-4 gap-6`}> <Card className={`flex-none basis-80`}>
<h3 className={`text-xl font-medium`}></h3> <CardHeader>
<p className={`text-sm text-weak`}>使HTTP代理需完成实名认证</p> <CardTitle>
<div className={`flex flex-col`}> <WorkflowIcon size={18}/>
</CardTitle>
</CardHeader>
<CardContent className={`flex flex-col px-4`}>
<p className={`text-sm text-weak mb-4`}>
使HTTP代理需完成实名认证
</p>
<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`}>
<div 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`}>01</span> <span className={`bg-primary/25 text-primary w-8 h-8 rounded-full flex items-center justify-center`}>01</span>
<span></span> <span></span>
</div> </span>
<Image alt={`步骤配图`} src={step1} aria-hidden/> <Image alt={`步骤配图`} src={step1} aria-hidden/>
</p> </p>
<div className={`h-16 w-56 px-4 flex self-center`}> <div className={`h-16 w-56 px-4 flex self-center`}>
@@ -198,10 +206,10 @@ export default function IdentifyPage(props: IdentifyPageProps) {
)}></div> )}></div>
</div> </div>
<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`}>
<div 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`}>02</span> <span className={`bg-primary/25 text-primary w-8 h-8 rounded-full flex items-center justify-center`}>02</span>
<span></span> <span></span>
</div> </span>
<Image alt={`步骤配图`} src={step2} aria-hidden/> <Image alt={`步骤配图`} src={step2} aria-hidden/>
</p> </p>
<div className={`h-16 w-56 px-4 flex self-center`}> <div className={`h-16 w-56 px-4 flex self-center`}>
@@ -211,14 +219,14 @@ export default function IdentifyPage(props: IdentifyPageProps) {
)}></div> )}></div>
</div> </div>
<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`}>
<div 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>
</div> </span>
<Image alt={`步骤配图`} src={step3} aria-hidden/> <Image alt={`步骤配图`} src={step3} aria-hidden/>
</p> </p>
</div> </CardContent>
</section> </Card>
</Page> </Page>
) )
} }

File diff suppressed because it is too large Load Diff

View File

@@ -9,7 +9,7 @@ import alipay from '@/components/composites/purchase/_assets/alipay.svg'
import wechat from '@/components/composites/purchase/_assets/wechat.svg' import wechat from '@/components/composites/purchase/_assets/wechat.svg'
import balance from '@/components/composites/purchase/_assets/balance.svg' import balance from '@/components/composites/purchase/_assets/balance.svg'
import {useProfileStore} from '@/components/providers/StoreProvider' import {useProfileStore} from '@/components/providers/StoreProvider'
import RechargeModal from '@/components/composites/purchase/_client/recharge' import RechargeModal from '@/components/composites/recharge'
import Pay from '@/components/composites/purchase/_client/pay' import Pay from '@/components/composites/purchase/_client/pay'
import {buttonVariants} from '@/components/ui/button' import {buttonVariants} from '@/components/ui/button'
import Link from 'next/link' import Link from 'next/link'

View File

@@ -17,11 +17,11 @@ import {zodResolver} from '@hookform/resolvers/zod'
import {toast} from 'sonner' import {toast} from 'sonner'
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 {useContext, useRef, useState} from 'react' import {useRef, useState} from 'react'
import {Loader} from 'lucide-react' import {Loader} from 'lucide-react'
import {RechargeByAlipay, RechargeByAlipayConfirm, RechargeByWechat, RechargeByWechatConfirm} from '@/actions/user' import {RechargeByAlipay, RechargeByAlipayConfirm, RechargeByWechat, RechargeByWechatConfirm} from '@/actions/user'
import * as qrcode from 'qrcode' import * as qrcode from 'qrcode'
import {StoreContext, useProfileStore} from '@/components/providers/StoreProvider' import {useProfileStore} from '@/components/providers/StoreProvider'
const schema = zod.object({ const schema = zod.object({
method: zod.enum(['alipay', 'wechat']), method: zod.enum(['alipay', 'wechat']),

View File

@@ -3,33 +3,33 @@ import {merge} from '@/lib/utils'
import {cva} from 'class-variance-authority' import {cva} from 'class-variance-authority'
const buttonVariants = cva( const buttonVariants = cva(
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", 'inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0',
{ {
variants: { variants: {
variant: { variant: {
default: default:
"bg-primary text-primary-foreground shadow hover:bg-primary/90", 'bg-primary text-primary-foreground shadow hover:bg-primary/90',
destructive: destructive:
"bg-fail text-fail-foreground shadow-sm hover:bg-destructive/90", 'bg-fail text-fail-foreground shadow-sm hover:bg-destructive/90',
outline: outline:
"border border-input shadow-sm hover:bg-secondary hover:text-secondary-foreground bg-card", 'border border-input shadow-sm hover:bg-secondary hover:text-secondary-foreground bg-card',
secondary: secondary:
"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80", 'bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80',
ghost: "hover:bg-secondary hover:text-secondary-foreground", ghost: 'hover:bg-secondary hover:text-secondary-foreground',
link: "text-primary underline-offset-4 hover:underline", link: 'text-primary underline-offset-4 hover:underline',
}, },
size: { size: {
default: "h-9 px-4 py-2", default: 'h-9 px-4 py-2',
sm: "h-8 rounded-md px-3 text-xs", sm: 'h-8 rounded-md px-3 text-xs',
lg: "h-10 rounded-md px-8", lg: 'h-10 rounded-md px-8',
icon: "h-9 w-9", icon: 'h-9 w-9',
}, },
}, },
defaultVariants: { defaultVariants: {
variant: "default", variant: 'default',
size: "default", size: 'default',
}, },
} },
) )
type ButtonProps = React.ComponentProps<'button'> & { type ButtonProps = React.ComponentProps<'button'> & {
@@ -40,6 +40,7 @@ function Button(rawProps: ButtonProps) {
const {className, theme, ...props} = rawProps const {className, theme, ...props} = rawProps
return ( return (
<button <button
{...props}
className={merge( className={merge(
`transition-all duration-200 ease-in-out`, `transition-all duration-200 ease-in-out`,
`h-10 px-4 rounded-md cursor-pointer`, `h-10 px-4 rounded-md cursor-pointer`,
@@ -55,11 +56,10 @@ function Button(rawProps: ButtonProps) {
accent: 'bg-accent text-accent-foreground hover:bg-accent/90', accent: 'bg-accent text-accent-foreground hover:bg-accent/90',
error: 'bg-fail text-white hover:bg-fail/90', error: 'bg-fail text-white hover:bg-fail/90',
outline: 'border bg-background hover:bg-secondary hover:text-secondary-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50', outline: 'border bg-background hover:bg-secondary hover:text-secondary-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50',
ghost: "text-foreground hover:bg-muted", ghost: 'text-foreground hover:bg-muted',
}[theme ?? 'default'], }[theme ?? 'default'],
className, className,
)} )}
{...props}
/> />
) )
} }

View File

@@ -1,81 +1,85 @@
import * as React from "react" import * as React from 'react'
import { merge } from "@/lib/utils" import {merge} from '@/lib/utils'
function Card({ className, ...props }: React.ComponentProps<"div">) { function Card({className, ...props}: React.ComponentProps<'div'>) {
return ( return (
<div <article
data-slot="card" data-slot="card"
className={merge( className={merge(
"bg-card text-card-foreground flex flex-col gap-4 rounded-lg py-4", 'bg-card text-card-foreground flex flex-col gap-4 rounded-lg py-4',
className className,
)} )}
{...props} {...props}
/> />
) )
} }
function CardHeader({ className, ...props }: React.ComponentProps<"div">) { function CardHeader({className, ...props}: React.ComponentProps<'div'>) {
return ( return (
<div <header
data-slot="card-header" data-slot="card-header"
className={merge( className={merge(
"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-1.5 px-4 has-[data-slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6", '@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-1 px-4 has-[data-slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6',
className className,
)} )}
{...props} {...props}
/> />
) )
} }
function CardTitle({ className, ...props }: React.ComponentProps<"div">) { function CardTitle({className, ...props}: React.ComponentProps<'div'>) {
return ( return (
<div <h3
data-slot="card-title" data-slot="card-title"
className={merge("leading-none font-semibold", className)} className={merge(
'leading-none font-semibold',
`flex items-center gap-2`,
className,
)}
{...props} {...props}
/> />
) )
} }
function CardDescription({ className, ...props }: React.ComponentProps<"div">) { function CardDescription({className, ...props}: React.ComponentProps<'div'>) {
return ( return (
<div <p
data-slot="card-description" data-slot="card-description"
className={merge("text-muted-foreground text-sm", className)} className={merge('text-muted-foreground text-sm', className)}
{...props} {...props}
/> />
) )
} }
function CardAction({ className, ...props }: React.ComponentProps<"div">) { function CardAction({className, ...props}: React.ComponentProps<'div'>) {
return ( return (
<div <div
data-slot="card-action" data-slot="card-action"
className={merge( className={merge(
"col-start-2 row-span-2 row-start-1 self-start justify-self-end", 'col-start-2 row-span-2 row-start-1 self-start justify-self-end',
className className,
)} )}
{...props} {...props}
/> />
) )
} }
function CardContent({ className, ...props }: React.ComponentProps<"div">) { function CardContent({className, ...props}: React.ComponentProps<'div'>) {
return ( return (
<div <div
data-slot="card-content" data-slot="card-content"
className={merge("px-4", className)} className={merge('px-4', className)}
{...props} {...props}
/> />
) )
} }
function CardFooter({ className, ...props }: React.ComponentProps<"div">) { function CardFooter({className, ...props}: React.ComponentProps<'div'>) {
return ( return (
<div <div
data-slot="card-footer" data-slot="card-footer"
className={merge("flex items-center px-6 [.border-t]:pt-6", className)} className={merge('flex items-center px-6 [.border-t]:pt-6', className)}
{...props} {...props}
/> />
) )

View File

@@ -124,12 +124,10 @@ function DialogDescription({
export { export {
Dialog, Dialog,
DialogClose, DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogOverlay,
DialogPortal,
DialogTitle,
DialogTrigger, DialogTrigger,
DialogHeader,
DialogTitle,
DialogDescription,
DialogContent,
DialogFooter,
} }

View File

@@ -48,16 +48,21 @@ function Form<T extends FieldValues>(rawProps: FormProps<T>) {
type FormFieldProps< type FormFieldProps<
V extends FieldValues = FieldValues, V extends FieldValues = FieldValues,
N extends FieldPath<V> = FieldPath<V>, N extends FieldPath<V> = FieldPath<V>,
> = { > = Omit<ControllerProps<V, N>, 'control' | 'render'> & Omit<ComponentProps<'div'>, 'children'> & {
label?: ReactNode label?: ReactNode
className?: string description?: ReactNode
children: (props: { children: (props: {
id: string id: string
field: ControllerRenderProps<V, N> field: ControllerRenderProps<V, N>
fieldState: ControllerFieldState fieldState: ControllerFieldState
formState: UseFormStateReturn<V> formState: UseFormStateReturn<V>
}) => ReactNode }) => ReactNode
} & Omit<ControllerProps<V, N>, 'control' | 'render'> classNames?: {
label?: string
description?: string
message?: string
}
}
function FormField< function FormField<
V extends FieldValues = FieldValues, V extends FieldValues = FieldValues,
@@ -68,12 +73,15 @@ function FormField<
return ( return (
<Controller<V, N> name={props.name} control={form.control} render={({field, fieldState, formState}) => ( <Controller<V, N> name={props.name} control={form.control} render={({field, fieldState, formState}) => (
<div data-slot="form-field" className={merge('grid gap-2', props.className)}> <div data-slot="form-field" className={merge('grid gap-2', props.className)}>
{/* label */}
{!!props.label && {!!props.label &&
<FormLabel error={fieldState.error}> <FormLabel id={`${id}-label`} error={fieldState.error} className={props.classNames?.label}>
{props.label} {props.label}
</FormLabel> </FormLabel>
} }
{/* control */}
<Slot <Slot
data-slot="form-control" data-slot="form-control"
aria-invalid={!!fieldState.error} aria-invalid={!!fieldState.error}
@@ -85,8 +93,19 @@ function FormField<
{props.children({id, field, fieldState, formState})} {props.children({id, field, fieldState, formState})}
</Slot> </Slot>
{/* description */}
{!!props.description && (
<FormDescription id={`${id}-description`} error={fieldState.error} className={merge(
`text-weak`,
props.classNames?.description,
)}>
{props.description}
</FormDescription>
)}
{/* message */}
{!fieldState.error ? null : ( {!fieldState.error ? null : (
<FormMessage error={fieldState.error}/> <FormMessage id={`${id}-message`} error={fieldState.error} className={props.classNames?.message}/>
)} )}
</div> </div>
)}/> )}/>

View File

@@ -10,7 +10,7 @@ function Input({className, type, ...props}: React.ComponentProps<'input'>) {
className={merge( className={merge(
`transition-[color] duration-200 ease-in-out`, `transition-[color] duration-200 ease-in-out`,
`h-10 min-w-0 w-full`, `h-10 min-w-0 w-full`,
'placeholder:text-muted-foreground', 'placeholder:text-weak',
'selection:bg-primary selection:text-primary-foreground', 'selection:bg-primary selection:text-primary-foreground',
'flex rounded-md border bg-card px-3 py-1 text-base', 'flex rounded-md border bg-card px-3 py-1 text-base',
'outline-none focus-visible:ring-4 ring-ring/50', 'outline-none focus-visible:ring-4 ring-ring/50',

View File

@@ -30,6 +30,8 @@ export async function middleware(request: NextRequest) {
} }
} }
catch (error) { catch (error) {
console.log(error)
console.log("redirect!!!!!!!!!")
return NextResponse.redirect(`${request.nextUrl.origin}/login?redirect=${request.nextUrl.pathname}`) return NextResponse.redirect(`${request.nextUrl.origin}/login?redirect=${request.nextUrl.pathname}`)
} }
} }