1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-15 17:46:55 +00:00

- Emotes now appear in the auto complete list if the given sequence of characters exist anywhere in the emote name.

This commit is contained in:
OMGparticles 2023-04-03 17:55:08 -07:00
parent 21bc0a704f
commit ce25a81208

View file

@ -19,9 +19,10 @@ const localeCaseInsensitive = Intl.Collator(undefined, {sensitivity: 'accent'});
// Describes how an emote matches against a given input
// Higher values represent a more exact match
const NO_MATCH = 0;
const NON_PREFIX_MATCH = 1;
const CASE_INSENSITIVE_PREFIX_MATCH = 2;
const EXACT_PREFIX_MATCH = 3;
const SUBSTRING_MATCH = 1;
const NON_PREFIX_MATCH = 2;
const CASE_INSENSITIVE_PREFIX_MATCH = 3;
const EXACT_PREFIX_MATCH = 4;
function getNodeText(node) {
if ( ! node )
@ -829,6 +830,9 @@ export default class Input extends Module {
if (idx !== -1 && emote_lower.slice(idx + 1).startsWith(term_lower.slice(1)))
return NON_PREFIX_MATCH;
if (emote_lower.includes(term_lower))
return SUBSTRING_MATCH;
return NO_MATCH;
}