mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 21:24:31 +00:00
30 lines
784 B
TypeScript
30 lines
784 B
TypeScript
import { Reactions } from "./zca-client.js";
|
|
|
|
const REACTION_ALIAS_MAP = new Map<string, string>([
|
|
["like", Reactions.LIKE],
|
|
["👍", Reactions.LIKE],
|
|
[":+1:", Reactions.LIKE],
|
|
["heart", Reactions.HEART],
|
|
["❤️", Reactions.HEART],
|
|
["<3", Reactions.HEART],
|
|
["haha", Reactions.HAHA],
|
|
["laugh", Reactions.HAHA],
|
|
["😂", Reactions.HAHA],
|
|
["wow", Reactions.WOW],
|
|
["😮", Reactions.WOW],
|
|
["cry", Reactions.CRY],
|
|
["😢", Reactions.CRY],
|
|
["angry", Reactions.ANGRY],
|
|
["😡", Reactions.ANGRY],
|
|
]);
|
|
|
|
export function normalizeZaloReactionIcon(raw: string): string {
|
|
const trimmed = raw.trim();
|
|
if (!trimmed) {
|
|
return Reactions.LIKE;
|
|
}
|
|
return (
|
|
REACTION_ALIAS_MAP.get(trimmed.toLowerCase()) ?? REACTION_ALIAS_MAP.get(trimmed) ?? trimmed
|
|
);
|
|
}
|