Files
AFFiNE-Mirror/libs/components/editor-plugins/src/search/Search.tsx
T
2022-08-19 06:17:30 +08:00

126 lines
3.5 KiB
TypeScript

import { BlockPreview } from '@toeverything/components/common';
import {
MuiBox as Box,
MuiBox,
styled,
TransitionsModal,
} from '@toeverything/components/ui';
import { BlockEditor, Virgo } from '@toeverything/framework/virgo';
import { throttle } from '@toeverything/utils';
import { useCallback, useEffect, useState } from 'react';
import { useNavigate, useParams } from 'react-router';
import style9 from 'style9';
const styles = style9.create({
wrapper: {
position: 'absolute',
top: '20%',
left: '50%',
transform: 'translate(-50%, -50%)',
width: '50vw',
display: 'flex',
flexDirection: 'column',
},
resultItem: {
width: '100%',
},
resultHide: {
opacity: 0,
},
});
export type QueryResult = Awaited<ReturnType<BlockEditor['search']>>;
const query_blocks = (
editor: Virgo,
search: string,
callback: (result: QueryResult) => void
) => {
(editor as BlockEditor).search(search).then(pages => callback(pages));
};
export const QueryBlocks = throttle(query_blocks, 500);
type SearchProps = {
onClose: () => void;
editor: Virgo;
};
export const Search = (props: SearchProps) => {
const { workspace_id } = useParams();
const navigate = useNavigate();
const [open, set_open] = useState(true);
const [search, set_search] = useState('');
const [result, set_result] = useState<QueryResult>([]);
useEffect(() => {
QueryBlocks(props.editor, search, result => {
set_result(result);
});
}, [props.editor, search]);
const handle_navigate = useCallback(
(id: string) => navigate(`/${workspace_id}/${id}`),
[navigate, workspace_id]
);
return (
<TransitionsModal
open={open}
onClose={() => {
set_open(false);
props.onClose();
}}
>
<Box className={styles('wrapper')}>
<SearchInput
autoFocus
value={search}
onChange={e => set_search(e.target.value)}
/>
<ResultContainer
sx={{ maxHeight: `${result.length * 28 + 32 + 20}px` }}
className={styles({
resultHide: !result.length,
})}
>
{result.map(block => (
<BlockPreview
className={styles('resultItem')}
key={block.id}
block={block}
onClick={() => {
handle_navigate(block.id);
props.onClose();
}}
/>
))}
</ResultContainer>
</Box>
</TransitionsModal>
);
};
const SearchInput = styled('input')(({ theme }) => ({
margin: '0.5em',
backgroundColor: 'white',
boxShadow: theme.affine.shadows.shadow1,
padding: '16px 32px',
borderRadius: '10px',
}));
const ResultContainer = styled(MuiBox)(({ theme }) => ({
margin: '0.5em',
backgroundColor: 'white',
boxShadow: theme.affine.shadows.shadow1,
padding: '16px 32px',
borderRadius: '10px',
transitionProperty: 'max-height',
transitionDuration: '300ms',
transitionTimingFunction: 'cubic-bezier(0.4, 0, 0.2, 1)',
transitionDelay: '0ms',
overflowX: 'hidden',
overflowY: 'hidden',
}));