mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-09-13 14:22:25 +03:00
133 lines
4.5 KiB
TypeScript
133 lines
4.5 KiB
TypeScript
import React, { KeyboardEvent as ReactKeyboardEvent, useEffect, useMemo } from 'react';
|
|
import { Editor } from 'slate';
|
|
import { Box, MenuItem, Text, toRem } from 'folds';
|
|
import { Room } from 'matrix-js-sdk';
|
|
|
|
import { AutocompleteQuery } from './autocompleteQuery';
|
|
import { AutocompleteMenu } from './AutocompleteMenu';
|
|
import { useMatrixClient } from '../../../hooks/useMatrixClient';
|
|
import {
|
|
SearchItemStrGetter,
|
|
UseAsyncSearchOptions,
|
|
useAsyncSearch,
|
|
} from '../../../hooks/useAsyncSearch';
|
|
import { onTabPress } from '../../../utils/keyboard';
|
|
import { createEmoticonElement, moveCursor, replaceWithElement } from '../utils';
|
|
import { useRecentEmoji } from '../../../hooks/useRecentEmoji';
|
|
import { useRelevantImagePacks } from '../../../hooks/useImagePacks';
|
|
import { IEmoji, emojis } from '../../../plugins/emoji';
|
|
import { useKeyDown } from '../../../hooks/useKeyDown';
|
|
import { mxcUrlToHttp } from '../../../utils/matrix';
|
|
import { useMediaAuthentication } from '../../../hooks/useMediaAuthentication';
|
|
import { ImageUsage, PackImageReader } from '../../../plugins/custom-emoji';
|
|
|
|
type EmoticonCompleteHandler = (key: string, shortcode: string) => void;
|
|
|
|
type EmoticonSearchItem = PackImageReader | IEmoji;
|
|
|
|
type EmoticonAutocompleteProps = {
|
|
imagePackRooms: Room[];
|
|
editor: Editor;
|
|
query: AutocompleteQuery<string>;
|
|
requestClose: () => void;
|
|
};
|
|
|
|
const SEARCH_OPTIONS: UseAsyncSearchOptions = {
|
|
limit: 20,
|
|
matchOptions: {
|
|
contain: true,
|
|
},
|
|
};
|
|
|
|
const getEmoticonStr: SearchItemStrGetter<EmoticonSearchItem> = (emoticon) => [
|
|
`:${emoticon.shortcode}:`,
|
|
];
|
|
|
|
export function EmoticonAutocomplete({
|
|
imagePackRooms,
|
|
editor,
|
|
query,
|
|
requestClose,
|
|
}: EmoticonAutocompleteProps) {
|
|
const mx = useMatrixClient();
|
|
const useAuthentication = useMediaAuthentication();
|
|
|
|
const imagePacks = useRelevantImagePacks(ImageUsage.Emoticon, imagePackRooms);
|
|
const recentEmoji = useRecentEmoji(mx, 20);
|
|
|
|
const searchList = useMemo(() => {
|
|
const list: Array<EmoticonSearchItem> = [];
|
|
return list.concat(
|
|
imagePacks.flatMap((pack) => pack.getImages(ImageUsage.Emoticon)),
|
|
emojis
|
|
);
|
|
}, [imagePacks]);
|
|
|
|
const [result, search, resetSearch] = useAsyncSearch(searchList, getEmoticonStr, SEARCH_OPTIONS);
|
|
const autoCompleteEmoticon = result ? result.items : recentEmoji;
|
|
|
|
useEffect(() => {
|
|
if (query.text) search(query.text);
|
|
else resetSearch();
|
|
}, [query.text, search, resetSearch]);
|
|
|
|
const handleAutocomplete: EmoticonCompleteHandler = (key, shortcode) => {
|
|
const emoticonEl = createEmoticonElement(key, shortcode);
|
|
replaceWithElement(editor, query.range, emoticonEl);
|
|
moveCursor(editor, true);
|
|
requestClose();
|
|
};
|
|
|
|
useKeyDown(window, (evt: KeyboardEvent) => {
|
|
onTabPress(evt, () => {
|
|
if (autoCompleteEmoticon.length === 0) return;
|
|
const emoticon = autoCompleteEmoticon[0];
|
|
const key = 'url' in emoticon ? emoticon.url : emoticon.unicode;
|
|
handleAutocomplete(key, emoticon.shortcode);
|
|
});
|
|
});
|
|
|
|
return autoCompleteEmoticon.length === 0 ? null : (
|
|
<AutocompleteMenu headerContent={<Text size="L400">Emojis</Text>} requestClose={requestClose}>
|
|
{autoCompleteEmoticon.map((emoticon) => {
|
|
const isCustomEmoji = 'url' in emoticon;
|
|
const key = isCustomEmoji ? emoticon.url : emoticon.unicode;
|
|
return (
|
|
<MenuItem
|
|
key={emoticon.shortcode + key}
|
|
as="button"
|
|
radii="300"
|
|
onKeyDown={(evt: ReactKeyboardEvent<HTMLButtonElement>) =>
|
|
onTabPress(evt, () => handleAutocomplete(key, emoticon.shortcode))
|
|
}
|
|
onClick={() => handleAutocomplete(key, emoticon.shortcode)}
|
|
before={
|
|
isCustomEmoji ? (
|
|
<Box
|
|
shrink="No"
|
|
as="img"
|
|
src={mxcUrlToHttp(mx, key, useAuthentication) || key}
|
|
alt={emoticon.shortcode}
|
|
style={{ width: toRem(24), height: toRem(24), objectFit: 'contain' }}
|
|
/>
|
|
) : (
|
|
<Box
|
|
shrink="No"
|
|
as="span"
|
|
display="InlineFlex"
|
|
style={{ fontSize: toRem(24), lineHeight: toRem(24) }}
|
|
>
|
|
{key}
|
|
</Box>
|
|
)
|
|
}
|
|
>
|
|
<Text style={{ flexGrow: 1 }} size="B400" truncate>
|
|
:{emoticon.shortcode}:
|
|
</Text>
|
|
</MenuItem>
|
|
);
|
|
})}
|
|
</AutocompleteMenu>
|
|
);
|
|
}
|