Fix: Home and team page style adjustment, and some bug fixes #10703 (#10805)

### What problem does this PR solve?

Fix: Home and team page style adjustment, and some bug fixes #10703

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
chanx
2025-10-27 15:15:12 +08:00
committed by GitHub
parent 33a189f620
commit 5312b75362
26 changed files with 628 additions and 276 deletions

View File

@ -13,6 +13,33 @@ export interface SegmentedLabeledOption {
title?: string;
}
declare type SegmentedOptions = (SegmentedRawOption | SegmentedLabeledOption)[];
const segmentedVariants = {
round: {
default: 'rounded-md',
none: 'rounded-none',
sm: 'rounded-sm',
md: 'rounded-md',
lg: 'rounded-lg',
xl: 'rounded-xl',
xxl: 'rounded-2xl',
xxxl: 'rounded-3xl',
full: 'rounded-full',
},
size: {
default: 'px-1 py-1',
sm: 'px-1 py-1',
md: 'px-2 py-1.5',
lg: 'px-4 px-2',
xl: 'px-5 py-2.5',
xxl: 'px-6 py-3',
},
buttonSize: {
default: 'px-2 py-1',
md: 'px-2 py-1',
lg: 'px-4 px-1.5',
xl: 'px-6 py-2',
},
};
export interface SegmentedProps
extends Omit<React.HTMLProps<HTMLDivElement>, 'onChange'> {
options: SegmentedOptions;
@ -24,6 +51,9 @@ export interface SegmentedProps
direction?: 'ltr' | 'rtl';
motionName?: string;
activeClassName?: string;
rounded?: keyof typeof segmentedVariants.round;
sizeType?: keyof typeof segmentedVariants.size;
buttonSize?: keyof typeof segmentedVariants.buttonSize;
}
export function Segmented({
@ -32,6 +62,9 @@ export function Segmented({
onChange,
className,
activeClassName,
rounded = 'default',
sizeType = 'default',
buttonSize = 'default',
}: SegmentedProps) {
const [selectedValue, setSelectedValue] = React.useState<
SegmentedValue | undefined
@ -45,7 +78,9 @@ export function Segmented({
return (
<div
className={cn(
'flex items-center rounded-3xl p-1 gap-2 bg-bg-card px-5 py-2.5',
'flex items-center p-1 gap-2 bg-bg-card',
segmentedVariants.round[rounded],
segmentedVariants.size[sizeType],
className,
)}
>
@ -57,10 +92,11 @@ export function Segmented({
<div
key={actualValue}
className={cn(
'inline-flex items-center px-6 py-2 text-base font-normal rounded-3xl cursor-pointer',
'inline-flex items-center text-base font-normal cursor-pointer',
segmentedVariants.round[rounded],
segmentedVariants.buttonSize[buttonSize],
{
'text-bg-base bg-metallic-gradient border-b-[#00BEB4] border-b-2':
selectedValue === actualValue,
'text-text-primary bg-bg-base': selectedValue === actualValue,
},
activeClassName && selectedValue === actualValue
? activeClassName