mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-04-24 15:31:50 +01:00
58 lines
1.9 KiB
TypeScript
58 lines
1.9 KiB
TypeScript
import { Icon, Link, Stack, Text } from "@fluentui/react";
|
|
import { Keys, t } from "Localization";
|
|
import React from "react";
|
|
import { useNotificationConsole } from "../../hooks/useNotificationConsole";
|
|
|
|
export interface PanelInfoErrorProps {
|
|
message: string;
|
|
messageType: string;
|
|
showErrorDetails: boolean;
|
|
link?: string;
|
|
linkText?: string;
|
|
formError?: boolean;
|
|
}
|
|
|
|
export const PanelInfoErrorComponent: React.FunctionComponent<PanelInfoErrorProps> = ({
|
|
message,
|
|
messageType,
|
|
showErrorDetails,
|
|
link,
|
|
linkText,
|
|
}: PanelInfoErrorProps): JSX.Element => {
|
|
const expandConsole = useNotificationConsole((state) => state.expandConsole);
|
|
|
|
let icon: JSX.Element = (
|
|
<Icon iconName="InfoSolid" className="panelLargeInfoIcon" aria-label={t(Keys.panes.panelInfo.information)} />
|
|
);
|
|
if (messageType === "error") {
|
|
icon = <Icon iconName="StatusErrorFull" className="panelErrorIcon" aria-label="error" />;
|
|
} else if (messageType === "warning") {
|
|
icon = <Icon iconName="WarningSolid" className="panelWarningIcon" aria-label="warning" />;
|
|
} else if (messageType === "info") {
|
|
icon = (
|
|
<Icon iconName="InfoSolid" className="panelLargeInfoIcon" aria-label={t(Keys.panes.panelInfo.information)} />
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Stack className="panelInfoErrorContainer" horizontal verticalAlign="center">
|
|
{icon}
|
|
<span className="panelWarningErrorDetailsLinkContainer" role="alert" aria-live="assertive">
|
|
<Text aria-label={message} className="panelWarningErrorMessage" variant="small">
|
|
{message}
|
|
{link && linkText && (
|
|
<Link target="_blank" href={link}>
|
|
{" " + linkText}
|
|
</Link>
|
|
)}
|
|
</Text>
|
|
{showErrorDetails && (
|
|
<a className="paneErrorLink" role="button" onClick={expandConsole} tabIndex={0} onKeyPress={expandConsole}>
|
|
{t(Keys.panes.panelInfo.moreDetails)}
|
|
</a>
|
|
)}
|
|
</span>
|
|
</Stack>
|
|
);
|
|
};
|