数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

51 lines
1.3 KiB

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 };