feat: type selector

This commit is contained in:
Joel
2024-02-21 11:33:25 +08:00
parent 71d3f71e22
commit db7dccf349
3 changed files with 81 additions and 1 deletions

View File

@ -7,6 +7,7 @@ import Base from './base'
type Props = {
value: string
onChange: (value: string) => void
title: JSX.Element
codeLanguage: string
onCodeLanguageChange: (codeLanguage: CodeLanguage) => void
}
@ -14,13 +15,14 @@ type Props = {
const CodeEditor: FC<Props> = ({
value,
onChange,
title,
}) => {
const [isFocus, setIsFocus] = React.useState(false)
return (
<div>
<Base
title={<div>Code</div>}
title={title}
value={value}
isFocus={isFocus}
minHeight={86}

View File

@ -0,0 +1,59 @@
'use client'
import type { FC } from 'react'
import React from 'react'
import { useBoolean, useClickAway } from 'ahooks'
import cn from 'classnames'
import { ChevronSelectorVertical } from '@/app/components/base/icons/src/vender/line/arrows'
type Item = {
value: string
label: string
}
type Props = {
list: Item[]
value: string
onChange: (value: any) => void
uppercase?: boolean
popupClassName?: string
}
const TypeSelector: FC<Props> = ({
list,
value,
onChange,
uppercase,
popupClassName,
}) => {
const item = list.find(item => item.value === value)
const [showOption, { setFalse: setHide, toggle: toggleShow }] = useBoolean(false)
const ref = React.useRef(null)
useClickAway(() => {
setHide()
}, ref)
return (
<div className='relative left-[-8px]' ref={ref}>
<div
onClick={toggleShow}
className={cn(showOption && 'bg-black/5', 'flex items-center h-5 pl-1 pr-0.5 rounded-md text-xs font-semibold text-gray-700 cursor-pointer hover:bg-black/5')}>
<div className={cn('text-sm font-semibold', uppercase && 'uppercase')}>{item?.label}</div>
<ChevronSelectorVertical className='w-3 h-3 ' />
</div>
{showOption && (
<div className={cn(popupClassName, 'absolute z-10 top-[24px] w-[120px] p-1 border border-gray-200 shadow-lg rounded-lg bg-white')}>
{list.map(item => (
<div
key={item.value}
onClick={() => {
setHide()
onChange(item.value)
}}
className={cn(uppercase && 'uppercase', 'flex items-center h-[30px] min-w-[44px] px-3 rounded-lg cursor-pointer text-[13px] font-medium text-gray-700 hover:bg-gray-50')}
>{item.label}</div>
))
}
</div>
)
}
</div>
)
}
export default React.memo(TypeSelector)