mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 15:48:05 +00:00
84 lines
2.3 KiB
TypeScript
84 lines
2.3 KiB
TypeScript
import type { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
|
|
import type * as NotificationsType from "expo-notifications";
|
|
import type { TFunction } from "i18next";
|
|
import { Platform } from "react-native";
|
|
|
|
// Conditionally import expo-notifications only on non-TV platforms
|
|
const Notifications = Platform.isTV
|
|
? null
|
|
: (require("expo-notifications") as typeof NotificationsType);
|
|
|
|
/**
|
|
* Generate notification content based on item type
|
|
*/
|
|
export function getNotificationContent(
|
|
item: BaseItemDto,
|
|
isSuccess: boolean,
|
|
t: TFunction,
|
|
): { title: string; body: string } {
|
|
if (item.Type === "Episode") {
|
|
const season = item.ParentIndexNumber
|
|
? String(item.ParentIndexNumber).padStart(2, "0")
|
|
: "??";
|
|
const episode = item.IndexNumber
|
|
? String(item.IndexNumber).padStart(2, "0")
|
|
: "??";
|
|
const subtitle = `${item.Name} - [S${season}E${episode}] (${item.SeriesName})`;
|
|
|
|
return {
|
|
title: isSuccess
|
|
? t("home.downloads.toasts.download_completed")
|
|
: t("home.downloads.toasts.download_failed"),
|
|
body: subtitle,
|
|
};
|
|
}
|
|
|
|
if (item.Type === "Movie") {
|
|
const year = item.ProductionYear ? ` (${item.ProductionYear})` : "";
|
|
const subtitle = `${item.Name}${year}`;
|
|
|
|
return {
|
|
title: isSuccess
|
|
? t("home.downloads.toasts.download_completed")
|
|
: t("home.downloads.toasts.download_failed"),
|
|
body: subtitle,
|
|
};
|
|
}
|
|
|
|
return {
|
|
title: isSuccess
|
|
? t("home.downloads.toasts.download_completed_for_item", {
|
|
item: item.Name,
|
|
})
|
|
: t("home.downloads.toasts.download_failed_for_item", {
|
|
item: item.Name,
|
|
}),
|
|
body: item.Name || "Unknown item",
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Send a local notification for download events
|
|
*/
|
|
export async function sendDownloadNotification(
|
|
title: string,
|
|
body: string,
|
|
data?: Record<string, any>,
|
|
): Promise<void> {
|
|
if (Platform.isTV || !Notifications) return;
|
|
|
|
try {
|
|
await Notifications.scheduleNotificationAsync({
|
|
content: {
|
|
title,
|
|
body,
|
|
data: data || {}, // iOS requires data to be an object, not undefined
|
|
...(Platform.OS === "android" && { channelId: "downloads" }),
|
|
},
|
|
trigger: null,
|
|
});
|
|
} catch (error) {
|
|
console.error("Failed to send notification:", error);
|
|
}
|
|
}
|