mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-04 00:28:33 +00:00
- document folder - full-text search - blob storage - basic edgeless support Co-authored-by: tzhangchi <terry.zhangchi@outlook.com> Co-authored-by: QiShaoXuan <qishaoxuan777@gmail.com> Co-authored-by: DiamondThree <diamond.shx@gmail.com> Co-authored-by: MingLiang Wang <mingliangwang0o0@gmail.com> Co-authored-by: JimmFly <yangjinfei001@gmail.com> Co-authored-by: Yifeng Wang <doodlewind@toeverything.info> Co-authored-by: Himself65 <himself65@outlook.com> Co-authored-by: lawvs <18554747+lawvs@users.noreply.github.com> Co-authored-by: Qi <474021214@qq.com>
91 lines
2.4 KiB
TypeScript
91 lines
2.4 KiB
TypeScript
import React, {
|
|
Dispatch,
|
|
SetStateAction,
|
|
useEffect,
|
|
useRef,
|
|
useState,
|
|
} from 'react';
|
|
import { SearchIcon } from '@blocksuite/icons';
|
|
import { StyledInputContent, StyledLabel } from './style';
|
|
import { Command } from 'cmdk';
|
|
import { useAppState } from '@/providers/app-state-provider';
|
|
export const Input = (props: {
|
|
query: string;
|
|
setQuery: Dispatch<SetStateAction<string>>;
|
|
setLoading: Dispatch<SetStateAction<boolean>>;
|
|
}) => {
|
|
const [isComposition, setIsComposition] = useState(false);
|
|
const [inputValue, setInputValue] = useState('');
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
const { currentWorkspaceId, workspacesMeta, currentWorkspace } =
|
|
useAppState();
|
|
const isPublic = workspacesMeta.find(
|
|
meta => String(meta.id) === String(currentWorkspaceId)
|
|
)?.public;
|
|
useEffect(() => {
|
|
inputRef.current?.addEventListener(
|
|
'blur',
|
|
() => {
|
|
inputRef.current?.focus();
|
|
},
|
|
true
|
|
);
|
|
return inputRef.current?.focus();
|
|
}, [inputRef]);
|
|
useEffect(() => {
|
|
return setInputValue(props.query);
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
return (
|
|
<StyledInputContent>
|
|
<StyledLabel htmlFor=":r5:">
|
|
<SearchIcon />
|
|
</StyledLabel>
|
|
<Command.Input
|
|
ref={inputRef}
|
|
value={inputValue}
|
|
onCompositionStart={() => {
|
|
setIsComposition(true);
|
|
}}
|
|
onCompositionEnd={e => {
|
|
props.setQuery(e.data);
|
|
setIsComposition(false);
|
|
if (!props.query) {
|
|
props.setLoading(true);
|
|
}
|
|
}}
|
|
onValueChange={str => {
|
|
setInputValue(str);
|
|
if (!isComposition) {
|
|
props.setQuery(str);
|
|
if (!props.query) {
|
|
props.setLoading(true);
|
|
}
|
|
}
|
|
}}
|
|
onKeyDown={(e: React.KeyboardEvent) => {
|
|
if (e.key === 'a' && e.metaKey) {
|
|
e.stopPropagation();
|
|
inputRef.current?.select();
|
|
return;
|
|
}
|
|
if (isComposition) {
|
|
if (
|
|
e.key === 'ArrowDown' ||
|
|
e.key === 'ArrowUp' ||
|
|
e.key === 'Enter'
|
|
) {
|
|
e.stopPropagation();
|
|
}
|
|
}
|
|
}}
|
|
placeholder={
|
|
isPublic
|
|
? `Search in ${currentWorkspace?.meta.name}`
|
|
: 'Quick Search...'
|
|
}
|
|
/>
|
|
</StyledInputContent>
|
|
);
|
|
};
|