2020-10-06 19:51:21 +00:00
|
|
|
import React, { useContext, useState, useEffect, ReactElement } from "react";
|
|
|
|
import {
|
|
|
|
Alert,
|
|
|
|
AlertVariant,
|
|
|
|
Form,
|
|
|
|
FormGroup,
|
|
|
|
Select,
|
|
|
|
SelectOption,
|
|
|
|
SelectVariant,
|
|
|
|
Stack,
|
|
|
|
StackItem,
|
|
|
|
TextArea,
|
|
|
|
} from "@patternfly/react-core";
|
2020-10-13 17:57:35 +00:00
|
|
|
import FileSaver from "file-saver";
|
|
|
|
|
2020-10-06 19:51:21 +00:00
|
|
|
import { ConfirmDialogModal } from "../confirm-dialog/ConfirmDialog";
|
2020-10-06 21:42:32 +00:00
|
|
|
import { HttpClientContext } from "../../context/http-service/HttpClientContext";
|
|
|
|
import { RealmContext } from "../../context/realm-context/RealmContext";
|
2020-10-06 19:51:21 +00:00
|
|
|
import { HelpItem } from "../help-enabler/HelpItem";
|
|
|
|
import { useTranslation } from "react-i18next";
|
2020-10-13 17:57:35 +00:00
|
|
|
import { useServerInfo } from "../../context/server-info/ServerInfoProvider";
|
|
|
|
import { HelpContext } from "../help-enabler/HelpHeader";
|
2020-10-06 19:51:21 +00:00
|
|
|
|
|
|
|
export type DownloadDialogProps = {
|
|
|
|
id: string;
|
|
|
|
protocol?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
type DownloadDialogModalProps = DownloadDialogProps & {
|
|
|
|
open: boolean;
|
|
|
|
toggleDialog: () => void;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const useDownloadDialog = (
|
|
|
|
props: DownloadDialogProps
|
|
|
|
): [() => void, () => ReactElement] => {
|
|
|
|
const [show, setShow] = useState(false);
|
|
|
|
|
|
|
|
function toggleDialog() {
|
|
|
|
setShow((show) => !show);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Dialog = () => (
|
|
|
|
<DownloadDialog {...props} open={show} toggleDialog={toggleDialog} />
|
|
|
|
);
|
|
|
|
return [toggleDialog, Dialog];
|
|
|
|
};
|
|
|
|
|
|
|
|
export const DownloadDialog = ({
|
|
|
|
id,
|
|
|
|
open,
|
|
|
|
toggleDialog,
|
|
|
|
protocol = "openid-connect",
|
|
|
|
}: DownloadDialogModalProps) => {
|
|
|
|
const httpClient = useContext(HttpClientContext)!;
|
|
|
|
const { realm } = useContext(RealmContext);
|
|
|
|
const { t } = useTranslation("common");
|
2020-10-13 17:57:35 +00:00
|
|
|
const { enabled } = useContext(HelpContext);
|
|
|
|
const serverInfo = useServerInfo();
|
2020-10-06 19:51:21 +00:00
|
|
|
|
2020-10-13 17:57:35 +00:00
|
|
|
const configFormats = serverInfo.clientInstallations[protocol];
|
2020-10-06 19:51:21 +00:00
|
|
|
const [selected, setSelected] = useState(
|
|
|
|
configFormats[configFormats.length - 1].id
|
|
|
|
);
|
|
|
|
const [snippet, setSnippet] = useState("");
|
|
|
|
const [openType, setOpenType] = useState(false);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
(async () => {
|
|
|
|
const response = await httpClient.doGet<string>(
|
2020-10-13 17:57:35 +00:00
|
|
|
`/admin/realms/${realm}/clients/${id}/installation/providers/${selected}`
|
2020-10-06 19:51:21 +00:00
|
|
|
);
|
2020-10-13 17:57:35 +00:00
|
|
|
setSnippet(await response.text());
|
2020-10-06 19:51:21 +00:00
|
|
|
})();
|
2020-10-13 17:57:35 +00:00
|
|
|
}, [selected, snippet]);
|
2020-10-06 19:51:21 +00:00
|
|
|
return (
|
|
|
|
<ConfirmDialogModal
|
|
|
|
titleKey={t("clients:downloadAdaptorTitle")}
|
|
|
|
continueButtonLabel={t("download")}
|
2020-10-13 17:57:35 +00:00
|
|
|
onConfirm={() => {
|
|
|
|
const config = configFormats.find((config) => config.id === selected)!;
|
|
|
|
FileSaver.saveAs(
|
|
|
|
new Blob([snippet], { type: config.mediaType }),
|
|
|
|
config.filename
|
|
|
|
);
|
|
|
|
}}
|
2020-10-06 19:51:21 +00:00
|
|
|
open={open}
|
|
|
|
toggleDialog={toggleDialog}
|
|
|
|
>
|
|
|
|
<Form>
|
|
|
|
<Stack hasGutter>
|
2020-10-13 17:57:35 +00:00
|
|
|
{enabled && (
|
|
|
|
<StackItem>
|
|
|
|
<Alert
|
|
|
|
id={id}
|
|
|
|
title={t("clients:description")}
|
|
|
|
variant={AlertVariant.info}
|
|
|
|
isInline
|
|
|
|
>
|
|
|
|
{
|
|
|
|
configFormats.find(
|
|
|
|
(configFormat) => configFormat.id === selected
|
|
|
|
)?.helpText
|
|
|
|
}
|
|
|
|
</Alert>
|
|
|
|
</StackItem>
|
|
|
|
)}
|
2020-10-06 19:51:21 +00:00
|
|
|
<StackItem>
|
|
|
|
<FormGroup
|
|
|
|
fieldId="type"
|
|
|
|
label={t("clients:formatOption")}
|
2020-10-09 06:48:50 +00:00
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={t("clients-help:downloadType")}
|
|
|
|
forLabel={t("clients:formatOption")}
|
|
|
|
forID="type"
|
|
|
|
/>
|
|
|
|
}
|
2020-10-06 19:51:21 +00:00
|
|
|
>
|
|
|
|
<Select
|
2020-10-09 06:48:50 +00:00
|
|
|
toggleId="type"
|
2020-10-06 19:51:21 +00:00
|
|
|
isOpen={openType}
|
|
|
|
onToggle={() => {
|
|
|
|
setOpenType(!openType);
|
|
|
|
}}
|
|
|
|
variant={SelectVariant.single}
|
|
|
|
value={selected}
|
|
|
|
selections={selected}
|
|
|
|
onSelect={(_, value) => {
|
|
|
|
setSelected(value as string);
|
|
|
|
setOpenType(false);
|
|
|
|
}}
|
|
|
|
aria-label="Select Input"
|
|
|
|
>
|
|
|
|
{configFormats.map((configFormat) => (
|
|
|
|
<SelectOption
|
|
|
|
key={configFormat.id}
|
|
|
|
value={configFormat.id}
|
|
|
|
isSelected={selected === configFormat.id}
|
|
|
|
>
|
|
|
|
{configFormat.displayType}
|
|
|
|
</SelectOption>
|
|
|
|
))}
|
|
|
|
</Select>
|
|
|
|
</FormGroup>
|
|
|
|
</StackItem>
|
|
|
|
<StackItem isFilled>
|
|
|
|
<FormGroup
|
|
|
|
fieldId="details"
|
|
|
|
label={t("clients:details")}
|
2020-10-09 06:48:50 +00:00
|
|
|
labelIcon={
|
|
|
|
<HelpItem
|
|
|
|
helpText={t("clients-help:details")}
|
|
|
|
forLabel={t("clients:details")}
|
2020-10-13 17:57:35 +00:00
|
|
|
forID="details"
|
2020-10-09 06:48:50 +00:00
|
|
|
/>
|
|
|
|
}
|
2020-10-06 19:51:21 +00:00
|
|
|
>
|
|
|
|
<TextArea
|
|
|
|
id="details"
|
|
|
|
readOnly
|
|
|
|
rows={12}
|
|
|
|
resizeOrientation="vertical"
|
|
|
|
value={snippet}
|
|
|
|
aria-label="text area example"
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
</StackItem>
|
|
|
|
</Stack>
|
|
|
|
</Form>
|
|
|
|
</ConfirmDialogModal>
|
|
|
|
);
|
|
|
|
};
|