直播功能

This commit is contained in:
chc
2026-07-01 18:07:51 +08:00
parent 6654c1de51
commit 3a44b7243d
14 changed files with 3125 additions and 24 deletions

View File

@@ -0,0 +1,27 @@
/**
* 直播 MQTT 推荐消息解析(商品 / 优惠券)
*/
export function toBoolean(value) {
if (typeof value === "boolean") return value;
if (typeof value === "number") return value === 1;
if (typeof value === "string") {
const normalized = value.trim().toLowerCase();
return normalized === "true" || normalized === "1";
}
return false;
}
export function parseRecommendMessageArray(message) {
try {
const parsed = JSON.parse(message);
return Array.isArray(parsed) ? parsed : [];
} catch (error) {
console.warn("MQTT 消息解析失败:", error);
return [];
}
}
export function findRecommendPayload(list) {
return list.find((item) => toBoolean(item.recommend) && !toBoolean(item.hideFlag));
}