mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-23 15:30:34 -04:00
130 lines
3.8 KiB
TypeScript
130 lines
3.8 KiB
TypeScript
/*
|
|
* Kyoo - A portable and vast media library solution.
|
|
* Copyright (c) Kyoo.
|
|
*
|
|
* See AUTHORS.md and LICENSE file in the project root for full license information.
|
|
*
|
|
* Kyoo is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* Kyoo is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Kyoo. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import {
|
|
QueryIdentifier,
|
|
ServerInfo,
|
|
ServerInfoP,
|
|
queryFn,
|
|
useAccount,
|
|
useFetch,
|
|
} from "@kyoo/models";
|
|
import { Button, IconButton, Link, Skeleton, tooltip, ts } from "@kyoo/primitives";
|
|
import { useTranslation } from "react-i18next";
|
|
import { ImageBackground } from "react-native";
|
|
import { rem, useYoshiki } from "yoshiki/native";
|
|
import { ErrorView } from "../errors";
|
|
import { Preference, SettingsContainer } from "./base";
|
|
|
|
import Badge from "@material-symbols/svg-400/outlined/badge.svg";
|
|
import OpenProfile from "@material-symbols/svg-400/outlined/open_in_new.svg";
|
|
import Remove from "@material-symbols/svg-400/outlined/close.svg";
|
|
import { useMutation, useQueryClient } from "@tanstack/react-query";
|
|
|
|
export const OidcSettings = () => {
|
|
const account = useAccount()!;
|
|
const { css } = useYoshiki();
|
|
const { t } = useTranslation();
|
|
const { data, error } = useFetch(OidcSettings.query());
|
|
const queryClient = useQueryClient();
|
|
const { mutateAsync: unlinkAccount } = useMutation({
|
|
mutationFn: async (provider: string) =>
|
|
await queryFn({
|
|
path: ["auth", "login", provider],
|
|
method: "DELETE",
|
|
}),
|
|
onSettled: async () => await queryClient.invalidateQueries({ queryKey: ["auth", "me"] }),
|
|
});
|
|
|
|
return (
|
|
<SettingsContainer title={t("settings.oidc.label")}>
|
|
{error ? (
|
|
<ErrorView error={error} />
|
|
) : data ? (
|
|
Object.entries(data.oidc).map(([id, x]) => {
|
|
const acc = account.externalId[id];
|
|
return (
|
|
<Preference
|
|
key={x.displayName}
|
|
icon={Badge}
|
|
label={x.displayName}
|
|
description={
|
|
acc
|
|
? t("settings.oidc.connected", { username: acc.username })
|
|
: t("settings.oidc.not-connected")
|
|
}
|
|
customIcon={
|
|
x.logoUrl != null && (
|
|
<ImageBackground
|
|
source={{ uri: x.logoUrl }}
|
|
{...css({ width: ts(3), height: ts(3), marginRight: ts(2) })}
|
|
/>
|
|
)
|
|
}
|
|
>
|
|
{acc ? (
|
|
<>
|
|
{acc.profileUrl && (
|
|
<IconButton
|
|
icon={OpenProfile}
|
|
as={Link}
|
|
href={acc.profileUrl}
|
|
target="_blank"
|
|
{...tooltip(t("settings.oidc.open-profile", { provider: x.displayName }))}
|
|
/>
|
|
)}
|
|
<IconButton
|
|
icon={Remove}
|
|
onPress={() => unlinkAccount(id)}
|
|
{...tooltip(t("settings.oidc.delete", { provider: x.displayName }))}
|
|
/>
|
|
</>
|
|
) : (
|
|
<Button
|
|
text={t("settings.oidc.link")}
|
|
as={Link}
|
|
href={x.link}
|
|
target="_blank"
|
|
{...css({ minWidth: rem(6) })}
|
|
/>
|
|
)}
|
|
</Preference>
|
|
);
|
|
})
|
|
) : (
|
|
[...Array(3)].map((_, i) => (
|
|
<Preference
|
|
key={i}
|
|
customIcon={<Skeleton {...css({ width: ts(3), height: ts(3) })} />}
|
|
icon={null!}
|
|
label={<Skeleton {...css({ width: rem(6) })} />}
|
|
description={<Skeleton {...css({ width: rem(7), height: rem(0.8) })} />}
|
|
/>
|
|
))
|
|
)}
|
|
</SettingsContainer>
|
|
);
|
|
};
|
|
|
|
OidcSettings.query = (): QueryIdentifier<ServerInfo> => ({
|
|
path: ["info"],
|
|
parser: ServerInfoP,
|
|
});
|