mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-17 20:44:15 -04:00
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import type { Subtitle, Track } from "@kyoo/models";
|
|
|
|
import intl from "langmap";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export const useLanguageName = () => {
|
|
return (lang: string) => intl[lang]?.nativeName;
|
|
};
|
|
|
|
export const useDisplayName = () => {
|
|
const getLanguageName = useLanguageName();
|
|
const { t } = useTranslation();
|
|
|
|
return (sub: Track) => {
|
|
const lng = sub.language ? getLanguageName(sub.language) : null;
|
|
|
|
if (lng && sub.title && sub.title !== lng) return `${lng} - ${sub.title}`;
|
|
if (lng) return lng;
|
|
if (sub.title) return sub.title;
|
|
if (sub.index !== null) return `${t("mediainfo.unknown")} (${sub.index})`;
|
|
return t("mediainfo.unknown");
|
|
};
|
|
};
|
|
|
|
export const useSubtitleName = () => {
|
|
const getDisplayName = useDisplayName();
|
|
const { t } = useTranslation();
|
|
|
|
return (sub: Subtitle) => {
|
|
const name = getDisplayName(sub);
|
|
const attributes = [name];
|
|
|
|
if (sub.isDefault) attributes.push(t("mediainfo.default"));
|
|
if (sub.isForced) attributes.push(t("mediainfo.forced"));
|
|
if (sub.isHearingImpaired) attributes.push(t("mediainfo.hearing-impaired"));
|
|
if (sub.isExternal) attributes.push(t("mediainfo.external"));
|
|
|
|
return attributes.join(" - ");
|
|
};
|
|
};
|
|
|
|
const seenNativeNames = new Set();
|
|
|
|
export const languageCodes = Object.keys(intl)
|
|
.filter((x) => {
|
|
const nativeName = intl[x]?.nativeName;
|
|
|
|
// Only include if nativeName is unique and defined
|
|
if (nativeName && !seenNativeNames.has(nativeName)) {
|
|
seenNativeNames.add(nativeName);
|
|
return true;
|
|
}
|
|
return false;
|
|
})
|
|
.filter((x) => !x.includes("@"));
|