/* eslint-disable */
// @ts-nocheck
import { AlertVariant, Divider, DropdownItem } from "../../../shared/@patternfly/react-core";
import { useFormContext, useWatch } from "react-hook-form";
import { useTranslation } from "react-i18next";
import { useParams } from "react-router-dom";
import { useAdminClient } from "../../admin-client";
import { useAlerts } from "../../../shared/keycloak-ui-shared";
import { useConfirmDialog } from "../../components/confirm-dialog/ConfirmDialog";
import { Header } from "./Header";
type ExtendedHeaderProps = {
provider: string;
editMode?: string | string[];
save: () => void;
noDivider?: boolean;
};
export const ExtendedHeader = ({
provider,
editMode,
save,
noDivider = false,
}: ExtendedHeaderProps) => {
const { adminClient } = useAdminClient();
const { t } = useTranslation();
const { id } = useParams<{ id: string }>();
const { addAlert, addError } = useAlerts();
const { control } = useFormContext();
const hasImportUsers = useWatch({
name: "config.importEnabled",
control,
defaultValue: ["true"],
})[0];
const [toggleUnlinkUsersDialog, UnlinkUsersDialog] = useConfirmDialog({
titleKey: "userFedUnlinkUsersConfirmTitle",
messageKey: "userFedUnlinkUsersConfirm",
continueButtonLabel: "unlinkUsers",
onConfirm: () => unlinkUsers(),
});
const [toggleRemoveUsersDialog, RemoveUsersConfirm] = useConfirmDialog({
titleKey: t("removeImportedUsers"),
messageKey: t("removeImportedUsersMessage"),
continueButtonLabel: "remove",
onConfirm: async () => {
await removeImportedUsers();
},
});
const removeImportedUsers = async () => {
try {
if (id) {
await adminClient.userStorageProvider.removeImportedUsers({ id });
addAlert(t("removeImportedUsersSuccess"), AlertVariant.success);
}
} catch (error) {
addError("removeImportedUsersError", error);
}
};
const syncChangedUsers = async () => {
try {
if (id) {
addAlert(t("syncUsersStarted"), AlertVariant.info);
const response = await adminClient.userStorageProvider.sync({
id: id,
action: "triggerChangedUsersSync",
});
if (response.ignored) {
addAlert(`${response.status}.`, AlertVariant.warning);
} else {
addAlert(
t("syncUsersSuccess") +
`${response.added} users added, ${response.updated} users updated, ${response.removed} users removed, ${response.failed} users failed.`,
AlertVariant.success,
);
}
}
} catch (error) {
addError("syncUsersError", error);
}
};
const syncAllUsers = async () => {
try {
if (id) {
addAlert(t("syncUsersStarted"), AlertVariant.info);
const response = await adminClient.userStorageProvider.sync({
id: id,
action: "triggerFullSync",
});
if (response.ignored) {
addAlert(`${response.status}.`, AlertVariant.warning);
} else {
addAlert(
t("syncUsersSuccess") +
`${response.added} users added, ${response.updated} users updated, ${response.removed} users removed, ${response.failed} users failed.`,
AlertVariant.success,
);
}
}
} catch (error) {
addError("syncUsersError", error);
}
};
const unlinkUsers = async () => {
try {
if (id) {
await adminClient.userStorageProvider.unlinkUsers({ id });
}
addAlert(t("unlinkUsersSuccess"), AlertVariant.success);
} catch (error) {
addError("unlinkUsersError", error);
}
};
return (
<>
{t("syncChangedUsers")}
,
{t("syncAllUsers")}
,
{t("unlinkUsers")}
,
{t("removeImported")}
,
,
]}
/>
>
);
};