Add a Bun script to apply and normalize AGPL copyright headers across the default frontend source files. The script keeps headers idempotent, upgrades existing headers to the 2023-2026 QuantumNous range, and is exposed through `bun run copyright` for future maintenance.
58 lines
2.1 KiB
TypeScript
Vendored
58 lines
2.1 KiB
TypeScript
Vendored
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
import { SearchIcon } from 'lucide-react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { cn } from '@/lib/utils'
|
|
import { useSearch } from '@/context/search-provider'
|
|
import { Button } from './ui/button'
|
|
|
|
type SearchProps = {
|
|
className?: string
|
|
type?: React.HTMLInputTypeAttribute
|
|
placeholder?: string
|
|
}
|
|
|
|
export function Search({ className = '', placeholder }: SearchProps) {
|
|
const { t } = useTranslation()
|
|
const { setOpen } = useSearch()
|
|
const resolvedPlaceholder = placeholder ?? t('Search')
|
|
return (
|
|
<Button
|
|
variant='outline'
|
|
className={cn(
|
|
'bg-muted/25 group text-muted-foreground hover:bg-accent relative h-8 w-full flex-1 justify-start rounded-md text-sm font-normal shadow-none sm:w-40 sm:pe-12 md:flex-none lg:w-52 xl:w-64',
|
|
className
|
|
)}
|
|
onClick={() => setOpen(true)}
|
|
aria-label={resolvedPlaceholder}
|
|
>
|
|
<SearchIcon
|
|
aria-hidden='true'
|
|
className='absolute start-1.5 top-1/2 -translate-y-1/2'
|
|
size={16}
|
|
/>
|
|
<span className='ms-4'>{resolvedPlaceholder}</span>
|
|
<kbd className='bg-muted group-hover:bg-accent pointer-events-none absolute end-[0.3rem] top-[0.3rem] hidden h-5 items-center gap-1 rounded border px-1.5 font-mono text-[10px] font-medium opacity-100 select-none sm:flex'>
|
|
<span className='text-xs'>⌘</span>
|
|
{t('K')}
|
|
</kbd>
|
|
</Button>
|
|
)
|
|
}
|