Skip to content

Commit

Permalink
chore: add cursor pointer for option card
Browse files Browse the repository at this point in the history
  • Loading branch information
AkaraChen committed Dec 26, 2024
1 parent 8339d2c commit d56c9b4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions web/app/components/datasets/create/step-two/option-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ type OptionCardHeaderProps = {
isActive?: boolean
activeClassName?: string
effectImg?: string
disabled?: boolean
}

export const OptionCardHeader: FC<OptionCardHeaderProps> = (props) => {
const { icon, title, description, isActive, activeClassName, effectImg } = props
const { icon, title, description, isActive, activeClassName, effectImg, disabled } = props
return <div className={classNames(
'flex h-full overflow-hidden rounded-t-xl relative',
isActive && activeClassName,
!disabled && 'cursor-pointer',
)}>
<div className='size-14 flex items-center justify-center relative overflow-hidden'>
{isActive && effectImg && <Image src={effectImg} className='absolute top-0 left-0 w-full h-full' alt='' width={56} height={56} />}
Expand Down Expand Up @@ -63,7 +65,7 @@ export const OptionCard: FC<OptionCardProps> = forwardRef((props, ref) => {
(isActive && !noHighlight)
? 'border-[1.5px] border-components-option-card-option-selected-border'
: 'border border-components-option-card-option-border',
disabled && 'opacity-50',
disabled && 'opacity-50 cursor-not-allowed',
className,
)}
style={{
Expand All @@ -83,6 +85,7 @@ export const OptionCard: FC<OptionCardProps> = forwardRef((props, ref) => {
isActive={isActive && !noHighlight}
activeClassName={activeHeaderClassName}
effectImg={effectImg}
disabled={disabled}
/>
{/** Body */}
{isActive && (children || actions) && <div className='py-3 px-4 bg-components-panel-bg rounded-b-xl'>
Expand Down

0 comments on commit d56c9b4

Please sign in to comment.