配置 mdx 与 turbopack 继承;修复退出登录后循环跳转的问题;button 统一复用可导出样式并微调样式
This commit is contained in:
@@ -4,11 +4,13 @@ import remarkGfm from 'remark-gfm'
|
|||||||
|
|
||||||
const nextConfig: NextConfig = {
|
const nextConfig: NextConfig = {
|
||||||
output: "standalone",
|
output: "standalone",
|
||||||
pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'],
|
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
|
||||||
|
experimental: {
|
||||||
|
mdxRs: true,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const withMdx = createMDX({
|
const withMdx = createMDX({
|
||||||
extension: /\.(md|mdx)$/,
|
|
||||||
options: {
|
options: {
|
||||||
remarkPlugins: [remarkGfm],
|
remarkPlugins: [remarkGfm],
|
||||||
rehypePlugins: [],
|
rehypePlugins: [],
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev -H 0.0.0.0",
|
"dev": "next dev -H 0.0.0.0 --turbo",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "next lint"
|
"lint": "next lint"
|
||||||
|
|||||||
@@ -44,7 +44,6 @@ const _callByDevice = cache(async <R = undefined>(
|
|||||||
endpoint: string,
|
endpoint: string,
|
||||||
data?: string,
|
data?: string,
|
||||||
): Promise<ApiResponse<R>> => {
|
): Promise<ApiResponse<R>> => {
|
||||||
|
|
||||||
// 获取设备令牌
|
// 获取设备令牌
|
||||||
if (!CLIENT_ID || !CLIENT_SECRET) {
|
if (!CLIENT_ID || !CLIENT_SECRET) {
|
||||||
return {
|
return {
|
||||||
@@ -74,7 +73,7 @@ async function callByUser<R = undefined>(
|
|||||||
endpoint: string,
|
endpoint: string,
|
||||||
data?: unknown,
|
data?: unknown,
|
||||||
): Promise<ApiResponse<R>> {
|
): Promise<ApiResponse<R>> {
|
||||||
return postCall(_callByUser(endpoint, data ? JSON.stringify(data) : undefined))
|
return _callByUser(endpoint, data ? JSON.stringify(data) : undefined)
|
||||||
}
|
}
|
||||||
|
|
||||||
const _callByUser = cache(async <R = undefined>(
|
const _callByUser = cache(async <R = undefined>(
|
||||||
@@ -107,7 +106,6 @@ const _callByUser = cache(async <R = undefined>(
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
// ======================
|
// ======================
|
||||||
// call
|
// call
|
||||||
// ======================
|
// ======================
|
||||||
@@ -150,7 +148,7 @@ async function call<R = undefined>(url: string, request: RequestInit): Promise<A
|
|||||||
return {
|
return {
|
||||||
success: false,
|
success: false,
|
||||||
status: response.status,
|
status: response.status,
|
||||||
message: json.message || json.error_description || '请求失败' // 业务错误(message)或者 oauth 错误(error_description)
|
message: json.message || json.error_description || '请求失败', // 业务错误(message)或者 oauth 错误(error_description)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
@@ -162,7 +160,6 @@ async function call<R = undefined>(url: string, request: RequestInit): Promise<A
|
|||||||
throw new Error(`无法解析响应数据,未处理的 Content-Type: ${type}`)
|
throw new Error(`无法解析响应数据,未处理的 Content-Type: ${type}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
async function postCall<R = undefined>(rawResp: Promise<ApiResponse<R>>) {
|
async function postCall<R = undefined>(rawResp: Promise<ApiResponse<R>>) {
|
||||||
const header = await headers()
|
const header = await headers()
|
||||||
const pathname = header.get('x-pathname') || '/'
|
const pathname = header.get('x-pathname') || '/'
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ export default function Provider(props: ProviderProps) {
|
|||||||
// 用户信息
|
// 用户信息
|
||||||
// ======================
|
// ======================
|
||||||
|
|
||||||
const profile = useProfileStore(store=>store.profile)
|
const profile = useProfileStore(store => store.profile)
|
||||||
|
|
||||||
// ======================
|
// ======================
|
||||||
// render
|
// render
|
||||||
@@ -144,7 +144,7 @@ export default function Provider(props: ProviderProps) {
|
|||||||
</>
|
</>
|
||||||
: (
|
: (
|
||||||
<Link href={`/admin`}>
|
<Link href={`/admin`}>
|
||||||
<Button theme={`gradient`}>
|
<Button theme={`gradient`} className={`h-12`}>
|
||||||
进入控制台
|
进入控制台
|
||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
|
|||||||
@@ -3,22 +3,23 @@ import {Button} from '@/components/ui/button'
|
|||||||
import {logout} from '@/actions/auth'
|
import {logout} from '@/actions/auth'
|
||||||
import {useProfileStore} from '@/components/providers/StoreProvider'
|
import {useProfileStore} from '@/components/providers/StoreProvider'
|
||||||
import {useRouter} from 'next/navigation'
|
import {useRouter} from 'next/navigation'
|
||||||
import {toast} from 'sonner'
|
|
||||||
|
|
||||||
export type ProfileProps = {}
|
export type ProfileProps = {}
|
||||||
|
|
||||||
export default function Profile(props: ProfileProps) {
|
export default function Profile(props: ProfileProps) {
|
||||||
|
const router = useRouter()
|
||||||
const refreshProfile = useProfileStore(store => store.refreshProfile)
|
const refreshProfile = useProfileStore(store => store.refreshProfile)
|
||||||
const doLogout = async () => {
|
const doLogout = async () => {
|
||||||
const resp = await logout()
|
const resp = await logout()
|
||||||
if (resp.success) {
|
if (resp.success) {
|
||||||
await refreshProfile()
|
refreshProfile().then()
|
||||||
|
router.replace('/')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex gap-2 items-center">
|
<div className="flex gap-2 items-center">
|
||||||
<Button theme={`error`} onClick={doLogout}>
|
<Button theme={`fail`} onClick={doLogout}>
|
||||||
退出登录
|
退出登录
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -231,7 +231,7 @@ export default function WhitelistPage(props: WhitelistPageProps) {
|
|||||||
添加白名单
|
添加白名单
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
theme={`error`}
|
theme={`fail`}
|
||||||
className={`ml-2`}
|
className={`ml-2`}
|
||||||
disabled={selection.size === 0 || wait}
|
disabled={selection.size === 0 || wait}
|
||||||
onClick={() => confirmRemove()}>
|
onClick={() => confirmRemove()}>
|
||||||
@@ -277,7 +277,7 @@ export default function WhitelistPage(props: WhitelistPageProps) {
|
|||||||
<Button
|
<Button
|
||||||
className={`h-9 w-9`}
|
className={`h-9 w-9`}
|
||||||
onClick={() => confirmRemove(row.original.id)}
|
onClick={() => confirmRemove(row.original.id)}
|
||||||
theme={`error`}
|
theme={`fail`}
|
||||||
disabled={wait}
|
disabled={wait}
|
||||||
>
|
>
|
||||||
<Trash2 className="w-4 h-4"/>
|
<Trash2 className="w-4 h-4"/>
|
||||||
@@ -332,7 +332,7 @@ export default function WhitelistPage(props: WhitelistPageProps) {
|
|||||||
</AlertDialogHeader>
|
</AlertDialogHeader>
|
||||||
<AlertDialogFooter>
|
<AlertDialogFooter>
|
||||||
<Button theme="outline" onClick={() => setAlertVisible(false)}>取消</Button>
|
<Button theme="outline" onClick={() => setAlertVisible(false)}>取消</Button>
|
||||||
<Button theme="error" onClick={() => remove()}>删除</Button>
|
<Button theme="fail" onClick={() => remove()}>删除</Button>
|
||||||
</AlertDialogFooter>
|
</AlertDialogFooter>
|
||||||
</AlertDialogContent>
|
</AlertDialogContent>
|
||||||
</AlertDialog>
|
</AlertDialog>
|
||||||
|
|||||||
129
src/components/date-range-picker.tsx
Normal file
129
src/components/date-range-picker.tsx
Normal file
@@ -0,0 +1,129 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import * as React from "react"
|
||||||
|
import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover'
|
||||||
|
import { Button } from './ui/button'
|
||||||
|
import { merge } from '@/lib/utils'
|
||||||
|
import { CalendarIcon } from 'lucide-react'
|
||||||
|
import { format, isValid } from 'date-fns'
|
||||||
|
import { Calendar } from './ui/calendar'
|
||||||
|
import { DateRange } from 'react-day-picker'
|
||||||
|
|
||||||
|
export type DateRangePickerProps = {
|
||||||
|
className?: string
|
||||||
|
onChange?: (dateRange: DateRange | undefined) => void
|
||||||
|
value?: DateRange
|
||||||
|
disabled?: boolean
|
||||||
|
required?: boolean
|
||||||
|
placeholder?: string
|
||||||
|
error?: boolean
|
||||||
|
errorMessage?: string
|
||||||
|
description?: string
|
||||||
|
helperText?: string
|
||||||
|
format?: string
|
||||||
|
name?: string
|
||||||
|
fromDate?: Date
|
||||||
|
toDate?: Date
|
||||||
|
numberOfMonths?: number
|
||||||
|
showOutsideDays?: boolean
|
||||||
|
fixedWeeks?: boolean
|
||||||
|
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6
|
||||||
|
onBlur?: () => void
|
||||||
|
calendarClassName?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function DateRangePicker({
|
||||||
|
className,
|
||||||
|
onChange,
|
||||||
|
value,
|
||||||
|
disabled,
|
||||||
|
required,
|
||||||
|
placeholder = "选择日期范围",
|
||||||
|
format: dateFormat = "yyyy-MM-dd",
|
||||||
|
name,
|
||||||
|
fromDate,
|
||||||
|
toDate,
|
||||||
|
numberOfMonths = 2,
|
||||||
|
showOutsideDays = true,
|
||||||
|
fixedWeeks = false,
|
||||||
|
weekStartsOn = 1,
|
||||||
|
onBlur,
|
||||||
|
calendarClassName,
|
||||||
|
}: DateRangePickerProps) {
|
||||||
|
const [open, setOpen] = React.useState(false)
|
||||||
|
|
||||||
|
const handleSelectRange = (range: DateRange | undefined) => {
|
||||||
|
onChange?.(range)
|
||||||
|
if (range?.from && range?.to) {
|
||||||
|
setOpen(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const formatDate = (date: Date | undefined) => {
|
||||||
|
return date && isValid(date) ? format(date, dateFormat) : ''
|
||||||
|
}
|
||||||
|
|
||||||
|
// 格式化显示的日期范围
|
||||||
|
const displayValue = React.useMemo(() => {
|
||||||
|
if (!value?.from) return placeholder
|
||||||
|
|
||||||
|
if (!value.to) {
|
||||||
|
return `${formatDate(value.from)}`
|
||||||
|
}
|
||||||
|
|
||||||
|
return `${formatDate(value.from)} ~ ${formatDate(value.to)}`
|
||||||
|
}, [value, placeholder, dateFormat])
|
||||||
|
|
||||||
|
const handleOpenChange = (isOpen: boolean) => {
|
||||||
|
setOpen(isOpen)
|
||||||
|
if (!isOpen) {
|
||||||
|
onBlur?.()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Popover open={open} onOpenChange={handleOpenChange}>
|
||||||
|
<PopoverTrigger asChild>
|
||||||
|
<Button
|
||||||
|
theme="outline"
|
||||||
|
className={merge(
|
||||||
|
'w-full justify-start text-left font-normal h-9',
|
||||||
|
!value && 'text-muted-foreground',
|
||||||
|
disabled && 'cursor-not-allowed opacity-70',
|
||||||
|
className,
|
||||||
|
)}
|
||||||
|
disabled={disabled}
|
||||||
|
>
|
||||||
|
<CalendarIcon className="mr-2 h-4 w-4" />
|
||||||
|
<span className={merge('flex-1', !value?.from && 'text-muted-foreground')}>
|
||||||
|
{displayValue}
|
||||||
|
</span>
|
||||||
|
</Button>
|
||||||
|
</PopoverTrigger>
|
||||||
|
<PopoverContent className="w-auto p-0" align="start">
|
||||||
|
<Calendar
|
||||||
|
mode="range"
|
||||||
|
defaultMonth={value?.from}
|
||||||
|
selected={value}
|
||||||
|
onSelect={handleSelectRange}
|
||||||
|
numberOfMonths={numberOfMonths}
|
||||||
|
showOutsideDays={showOutsideDays}
|
||||||
|
fixedWeeks={fixedWeeks}
|
||||||
|
weekStartsOn={weekStartsOn}
|
||||||
|
disabled={
|
||||||
|
!!fromDate && !!toDate ? {
|
||||||
|
before: fromDate,
|
||||||
|
after: toDate
|
||||||
|
} : !!fromDate ? {
|
||||||
|
before: fromDate
|
||||||
|
} : !!toDate ? {
|
||||||
|
after: toDate
|
||||||
|
} : undefined
|
||||||
|
}
|
||||||
|
initialFocus
|
||||||
|
className={calendarClassName}
|
||||||
|
/>
|
||||||
|
</PopoverContent>
|
||||||
|
</Popover>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -1,67 +1,44 @@
|
|||||||
import * as React from 'react'
|
import * as React from 'react'
|
||||||
import {merge} from '@/lib/utils'
|
import {merge} from '@/lib/utils'
|
||||||
import {cva} from 'class-variance-authority'
|
import {cva, VariantProps} from 'class-variance-authority'
|
||||||
|
|
||||||
const buttonVariants = cva(
|
export 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',
|
[
|
||||||
|
`transition-all duration-200 ease-in-out`,
|
||||||
|
`h-10 px-4 rounded-md cursor-pointer whitespace-nowrap`,
|
||||||
|
'inline-flex items-center justify-center gap-2',
|
||||||
|
'[&_svg]:pointer-events-none [&_svg:not([class*=\'size-\'])]:size-4 shrink-0 [&_svg]:shrink-0 ',
|
||||||
|
'outline-none focus-visible:ring-4 ring-blue-200',
|
||||||
|
'disabled:pointer-events-none disabled:opacity-50 ',
|
||||||
|
'aria-invalid:ring-fail/20 dark:aria-invalid:ring-fail/40 aria-invalid:border-fail',
|
||||||
|
],
|
||||||
{
|
{
|
||||||
variants: {
|
variants: {
|
||||||
variant: {
|
theme: {
|
||||||
default:
|
gradient: 'bg-gradient-to-r from-blue-400 to-cyan-300 text-white ring-offset-2',
|
||||||
'bg-primary text-primary-foreground shadow hover:bg-primary/90',
|
default: 'bg-primary text-primary-foreground hover:bg-primary/90',
|
||||||
destructive:
|
outline: 'border bg-background hover:bg-secondary hover:text-secondary-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50',
|
||||||
'bg-fail text-fail-foreground shadow-sm hover:bg-destructive/90',
|
ghost: 'text-foreground hover:bg-muted',
|
||||||
outline:
|
accent: 'bg-accent text-accent-foreground hover:bg-accent/90',
|
||||||
'border border-input shadow-sm hover:bg-secondary hover:text-secondary-foreground bg-card',
|
fail: 'bg-fail text-white hover:bg-fail/90',
|
||||||
secondary:
|
warn: '',
|
||||||
'bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80',
|
done: '',
|
||||||
ghost: 'hover:bg-secondary hover:text-secondary-foreground',
|
|
||||||
link: 'text-primary underline-offset-4 hover:underline',
|
|
||||||
},
|
|
||||||
size: {
|
|
||||||
default: 'h-9 px-4 py-2',
|
|
||||||
sm: 'h-8 rounded-md px-3 text-xs',
|
|
||||||
lg: 'h-10 rounded-md px-8',
|
|
||||||
icon: 'h-9 w-9',
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
defaultVariants: {
|
defaultVariants: {
|
||||||
variant: 'default',
|
theme: 'default',
|
||||||
size: 'default',
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
type ButtonProps = React.ComponentProps<'button'> & {
|
type ButtonProps = React.ComponentProps<'button'> & VariantProps<typeof buttonVariants>
|
||||||
theme?: 'default' | 'outline' | 'gradient' | 'error' | 'accent' | 'ghost'
|
|
||||||
}
|
|
||||||
|
|
||||||
function Button(rawProps: ButtonProps) {
|
export function Button(rawProps: ButtonProps) {
|
||||||
const {className, theme, ...props} = rawProps
|
const {className, theme, ...props} = rawProps
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
{...props}
|
{...props}
|
||||||
className={merge(
|
className={merge(buttonVariants({theme}), className)}
|
||||||
`transition-all duration-200 ease-in-out`,
|
|
||||||
`h-10 px-4 rounded-md cursor-pointer`,
|
|
||||||
'whitespace-nowrap',
|
|
||||||
'inline-flex items-center justify-center gap-2',
|
|
||||||
'disabled:pointer-events-none disabled:opacity-50 ',
|
|
||||||
'[&_svg]:pointer-events-none [&_svg:not([class*=\'size-\'])]:size-4 shrink-0 [&_svg]:shrink-0 ',
|
|
||||||
'outline-none focus-visible:ring-4 ring-blue-200',
|
|
||||||
'aria-invalid:ring-fail/20 dark:aria-invalid:ring-fail/40 aria-invalid:border-fail',
|
|
||||||
{
|
|
||||||
gradient: 'bg-gradient-to-r from-blue-400 to-cyan-300 text-white ring-offset-2',
|
|
||||||
default: 'bg-primary text-primary-foreground hover:bg-primary/90',
|
|
||||||
accent: 'bg-accent text-accent-foreground hover:bg-accent/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',
|
|
||||||
ghost: 'text-foreground hover:bg-muted',
|
|
||||||
}[theme ?? 'default'],
|
|
||||||
className,
|
|
||||||
)}
|
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
export {Button, buttonVariants}
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ function Calendar({
|
|||||||
caption_label: "text-sm font-medium",
|
caption_label: "text-sm font-medium",
|
||||||
nav: "flex items-center gap-1",
|
nav: "flex items-center gap-1",
|
||||||
nav_button: merge(
|
nav_button: merge(
|
||||||
buttonVariants({ variant: "outline" }),
|
buttonVariants({ theme: "outline" }),
|
||||||
"size-7 bg-transparent p-0 opacity-50 hover:opacity-100"
|
"size-7 bg-transparent p-0 opacity-50 hover:opacity-100"
|
||||||
),
|
),
|
||||||
nav_button_previous: "absolute left-1",
|
nav_button_previous: "absolute left-1",
|
||||||
@@ -41,7 +41,7 @@ function Calendar({
|
|||||||
: "[&:has([aria-selected])]:rounded-md"
|
: "[&:has([aria-selected])]:rounded-md"
|
||||||
),
|
),
|
||||||
day: merge(
|
day: merge(
|
||||||
buttonVariants({ variant: "ghost" }),
|
buttonVariants({ theme: "ghost" }),
|
||||||
"size-8 p-0 font-normal aria-selected:opacity-100"
|
"size-8 p-0 font-normal aria-selected:opacity-100"
|
||||||
),
|
),
|
||||||
day_range_start:
|
day_range_start:
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ function TabsList({
|
|||||||
<TabsPrimitive.List
|
<TabsPrimitive.List
|
||||||
data-slot="tabs-list"
|
data-slot="tabs-list"
|
||||||
className={merge(
|
className={merge(
|
||||||
"bg-muted text-muted-foreground inline-flex w-fit items-center justify-center rounded-lg p-1 h-10",
|
"bg-muted text-muted-foreground inline-flex w-fit items-center justify-center rounded-lg p-1",
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
|
|||||||
@@ -18,8 +18,9 @@ export const createProfileStore = (init: User|null) => {
|
|||||||
profile: init,
|
profile: init,
|
||||||
refreshProfile: async () => {
|
refreshProfile: async () => {
|
||||||
const profile = await getProfile()
|
const profile = await getProfile()
|
||||||
if (!profile.success) return
|
setState({
|
||||||
setState({profile: profile.data})
|
profile: profile.success ? profile.data : null,
|
||||||
|
})
|
||||||
},
|
},
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user