mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
68 lines
2.4 KiB
TypeScript
68 lines
2.4 KiB
TypeScript
import React, { type ChangeEvent, type FC, useCallback, useRef } from 'react';
|
|
import AlphaPicker from 'components/alphaPicker/AlphaPickerComponent';
|
|
import Input from 'elements/emby-input/Input';
|
|
import globalize from 'lib/globalize';
|
|
import layoutManager from 'components/layoutManager';
|
|
import browser from 'scripts/browser';
|
|
import 'material-design-icons-iconfont';
|
|
import 'styles/flexstyles.scss';
|
|
import './searchfields.scss';
|
|
|
|
interface SearchFieldsProps {
|
|
query: string,
|
|
onSearch?: (query: string) => void
|
|
}
|
|
|
|
const SearchFields: FC<SearchFieldsProps> = ({
|
|
onSearch = () => { /* no-op */ },
|
|
query
|
|
}) => {
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
|
|
const onAlphaPicked = useCallback((e: Event) => {
|
|
const value = (e as CustomEvent).detail.value;
|
|
const inputValue = inputRef.current?.value || '';
|
|
|
|
if (value === 'backspace') {
|
|
onSearch(inputValue.length ? inputValue.substring(0, inputValue.length - 1) : '');
|
|
} else {
|
|
onSearch(inputValue + value);
|
|
}
|
|
}, [onSearch]);
|
|
|
|
const onChange = useCallback((e: ChangeEvent<HTMLInputElement>) => {
|
|
onSearch(e.target.value);
|
|
}, [ onSearch ]);
|
|
|
|
return (
|
|
<div className='padded-left padded-right searchFields'>
|
|
<div className='searchFieldsInner flex align-items-center justify-content-center'>
|
|
<span className='searchfields-icon material-icons search' aria-hidden='true' />
|
|
<div
|
|
className='inputContainer flex-grow'
|
|
style={{ marginBottom: 0 }}
|
|
>
|
|
<Input
|
|
ref={inputRef}
|
|
id='searchTextInput'
|
|
className='searchfields-txtSearch'
|
|
type='text'
|
|
data-keyboard='true'
|
|
placeholder={globalize.translate('Search')}
|
|
autoComplete='off'
|
|
maxLength={40}
|
|
// eslint-disable-next-line jsx-a11y/no-autofocus
|
|
autoFocus
|
|
value={query}
|
|
onChange={onChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
{layoutManager.tv && !browser.tv
|
|
&& <AlphaPicker onAlphaPicked={onAlphaPicked} />
|
|
}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default SearchFields;
|