diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-15 14:39:22 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 14:39:22 -0800 |
commit | d5ea31920caa2eade6015ad59122f06a8b280ab9 (patch) | |
tree | 59b5b1a7817bbb7315bf8cfea80911a3d875a6c0 /src/view/com/composer/text-input/TextInput.web.tsx | |
parent | 839e8e8d0ade22ce47678229a98fe602c31601c3 (diff) | |
download | voidsky-d5ea31920caa2eade6015ad59122f06a8b280ab9.tar.zst |
Autocomplete updates (react-query refactor) (#1911)
* Unify the autocomplete code; drop fuse * Persist autocomplete results while they're in progress * Commit lockfile * Use ReturnType helper --------- Co-authored-by: Eric Bailey <git@esb.lol>
Diffstat (limited to 'src/view/com/composer/text-input/TextInput.web.tsx')
-rw-r--r-- | src/view/com/composer/text-input/TextInput.web.tsx | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/view/com/composer/text-input/TextInput.web.tsx b/src/view/com/composer/text-input/TextInput.web.tsx index 7690a5876..4c31da338 100644 --- a/src/view/com/composer/text-input/TextInput.web.tsx +++ b/src/view/com/composer/text-input/TextInput.web.tsx @@ -17,9 +17,7 @@ import {isUriImage, blobToDataUri} from 'lib/media/util' import {Emoji} from './web/EmojiPicker.web' import {LinkDecorator} from './web/LinkDecorator' import {generateJSON} from '@tiptap/html' -import {ActorAutocomplete} from '#/state/queries/actor-autocomplete' -import {useSession} from '#/state/session' -import {useMyFollowsQuery} from '#/state/queries/my-follows' +import {useActorAutocompleteFn} from '#/state/queries/actor-autocomplete' export interface TextInputRef { focus: () => void @@ -52,15 +50,7 @@ export const TextInput = React.forwardRef(function TextInputImpl( TextInputProps, ref, ) { - const {agent} = useSession() - const autocomplete = React.useMemo( - () => new ActorAutocomplete(agent), - [agent], - ) - const {data: follows} = useMyFollowsQuery() - if (follows) { - autocomplete.setFollows(follows) - } + const autocomplete = useActorAutocompleteFn() const modeClass = useColorSchemeStyle('ProseMirror-light', 'ProseMirror-dark') const extensions = React.useMemo( |