| import clsx from 'clsx'; |
| import React from 'react'; |
| import { MdCheck } from 'react-icons/md'; |
| import { BookSearchConfig } from '@/types/book'; |
| import { useTranslation } from '@/hooks/useTranslation'; |
| import { useDefaultIconSize } from '@/hooks/useResponsiveSize'; |
|
|
| interface SearchOptionsProps { |
| isEink: boolean; |
| searchConfig: BookSearchConfig; |
| menuClassName?: string; |
| onSearchConfigChanged: (searchConfig: BookSearchConfig) => void; |
| setIsDropdownOpen?: (isOpen: boolean) => void; |
| } |
|
|
| interface OptionProps { |
| label: string; |
| isActive: boolean; |
| onClick: () => void; |
| } |
|
|
| const Option: React.FC<OptionProps> = ({ label, isActive, onClick }) => ( |
| <button |
| className='hover:bg-base-300 flex w-full items-center justify-between rounded-md p-2' |
| onClick={onClick} |
| > |
| <div className='flex items-center'> |
| <span style={{ minWidth: `${useDefaultIconSize()}px` }}> |
| {isActive && <MdCheck className='text-base-content' />} |
| </span> |
| <span className='ml-2'>{label}</span> |
| </div> |
| </button> |
| ); |
|
|
| const SearchOptions: React.FC<SearchOptionsProps> = ({ |
| isEink, |
| searchConfig, |
| menuClassName, |
| onSearchConfigChanged, |
| setIsDropdownOpen, |
| }) => { |
| const _ = useTranslation(); |
| const updateConfig = (key: keyof BookSearchConfig, value: boolean | string) => { |
| onSearchConfigChanged({ ...searchConfig, [key]: value }); |
| setIsDropdownOpen?.(false); |
| }; |
|
|
| return ( |
| <div |
| className={clsx( |
| 'search-options dropdown-content border-base-200 z-20 w-56 border shadow-2xl', |
| isEink ? 'bordercolor-content border-base-content !bg-base-100 border' : '', |
| menuClassName, |
| )} |
| > |
| <Option |
| label={_('Book')} |
| isActive={searchConfig.scope === 'book'} |
| onClick={() => updateConfig('scope', 'book')} |
| /> |
| <Option |
| label={_('Chapter')} |
| isActive={searchConfig.scope === 'section'} |
| onClick={() => updateConfig('scope', 'section')} |
| /> |
| <hr aria-hidden='true' className='border-base-200 my-1' /> |
| <Option |
| label={_('Match Case')} |
| isActive={searchConfig.matchCase} |
| onClick={() => updateConfig('matchCase', !searchConfig.matchCase)} |
| /> |
| <Option |
| label={_('Match Whole Words')} |
| isActive={searchConfig.matchWholeWords} |
| onClick={() => updateConfig('matchWholeWords', !searchConfig.matchWholeWords)} |
| /> |
| <Option |
| label={_('Match Diacritics')} |
| isActive={searchConfig.matchDiacritics} |
| onClick={() => updateConfig('matchDiacritics', !searchConfig.matchDiacritics)} |
| /> |
| </div> |
| ); |
| }; |
|
|
| export default SearchOptions; |
|
|