astro-ghostcms/.pnpm-store/v3/files/61/d5d3d177cbe0e038d46577433c3...

52 lines
1.3 KiB
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import { emojiComponents } from '../data.mjs';
const nameSplit = ": ";
const variationSplit = ", ";
const ignoredVariations = /* @__PURE__ */ new Set(["person"]);
function splitEmojiNameVariations(name, sequence, componentsData) {
const parts = name.split(nameSplit);
const base = parts.shift();
if (!parts.length) {
return {
base,
key: base
};
}
const variations = parts.join(nameSplit).split(variationSplit).filter((text) => {
const type = componentsData.types[text];
if (!type) {
return !ignoredVariations.has(text);
}
return false;
});
const key = base + (variations.length ? nameSplit + variations.join(variationSplit) : "");
const result = {
base,
key
};
let components = 0;
for (let index = 0; index < sequence.length; index++) {
const num = sequence[index];
for (const key2 in emojiComponents) {
const type = key2;
const range = emojiComponents[type];
if (num >= range[0] && num < range[1]) {
variations.push({
index,
type
});
components++;
}
}
}
if (variations.length) {
result.variations = variations;
}
if (components) {
result.components = components;
}
return result;
}
export { splitEmojiNameVariations };