saleor-dashboard/src/custom-apps/components/WebhookInfo/WebhookInfo.tsx
Patryk Andrzejewski 3789f5bb52
New macaw ui (#3069)
Co-authored-by: Krzysztof Żuraw <9116238+krzysztofzuraw@users.noreply.github.com>
Co-authored-by: Michał Droń <dron.official@yahoo.com>
Co-authored-by: Paweł Chyła <chyla1988@gmail.com>
2023-02-20 16:21:28 +01:00

135 lines
4.2 KiB
TypeScript

import CardTitle from "@dashboard/components/CardTitle";
import FormSpacer from "@dashboard/components/FormSpacer";
import Hr from "@dashboard/components/Hr";
import Link from "@dashboard/components/Link";
import { WebhookErrorFragment } from "@dashboard/graphql";
import { commonMessages } from "@dashboard/intl";
import { getFormErrors } from "@dashboard/utils/errors";
import getWebhookErrorMessage from "@dashboard/utils/errors/webhooks";
import {
Card,
CardContent,
Popper,
TextField,
Typography,
} from "@material-ui/core";
import { Pill } from "@saleor/macaw-ui";
import React from "react";
import { FormattedMessage, useIntl } from "react-intl";
import { WebhookFormData } from "../WebhookDetailsPage";
import { messages } from "./messages";
import { useStyles } from "./styles";
interface WebhookInfoProps {
data: WebhookFormData;
disabled: boolean;
errors: WebhookErrorFragment[];
onChange: (event: React.ChangeEvent<any>) => void;
}
const WebhookInfo: React.FC<WebhookInfoProps> = ({
data,
disabled,
errors,
onChange,
}) => {
const intl = useIntl();
const classes = useStyles();
const formErrors = getFormErrors(["name", "targetUrl", "secretKey"], errors);
const [isPopupOpen, setPopupOpen] = React.useState(false);
const anchor = React.useRef<HTMLDivElement>(null);
return (
<Card className={classes.card}>
<CardTitle
title={intl.formatMessage(messages.webhookInformation)}
className={classes.cardTitle}
/>
<CardContent className={classes.card}>
<Typography variant="caption">
{intl.formatMessage(commonMessages.generalInformations)}
</Typography>
<FormSpacer />
<TextField
disabled={disabled}
error={!!formErrors.name}
helperText={getWebhookErrorMessage(formErrors.name, intl)}
label={intl.formatMessage(messages.webhookName)}
fullWidth
name="name"
value={data.name}
onChange={onChange}
/>
<FormSpacer />
<Hr />
<FormSpacer />
<TextField
disabled={disabled}
error={!!formErrors.targetUrl}
helperText={
getWebhookErrorMessage(formErrors.targetUrl, intl) ||
intl.formatMessage(messages.targetUrlDescription)
}
label={intl.formatMessage(messages.targetUrl)}
fullWidth
name="targetUrl"
value={data.targetUrl}
onChange={onChange}
/>
<FormSpacer />
<TextField
disabled={disabled}
error={!!formErrors.secretKey}
helperText={
getWebhookErrorMessage(formErrors.secretKey, intl) ||
intl.formatMessage(messages.secretKeyDescription)
}
label={intl.formatMessage(messages.secretKey)}
fullWidth
name="secretKey"
value={data.secretKey}
onChange={onChange}
InputProps={{
endAdornment: (
<div
ref={anchor}
onMouseOver={() => setPopupOpen(true)}
onMouseLeave={() => setPopupOpen(false)}
>
<Pill
label={intl.formatMessage(commonMessages.deprecated)}
color={"error"}
outlined
size="small"
/>
<Popper
anchorEl={anchor.current}
open={isPopupOpen}
placement={"top"}
>
<Card elevation={8} className={classes.toolbar}>
<Typography>
<FormattedMessage {...messages.useSignature} />
</Typography>
<Link
target="_blank"
rel="noopener noreferrer"
href="https://docs.saleor.io/docs/3.x/developer/extending/apps/synchronous-webhooks/key-concepts#payload-signature"
>
<FormattedMessage {...messages.learnMore} />
</Link>
</Card>
</Popper>
</div>
),
}}
/>
</CardContent>
</Card>
);
};
WebhookInfo.displayName = "WebhookInfo";
export default WebhookInfo;