104 lines
3.3 KiB
TypeScript
104 lines
3.3 KiB
TypeScript
![]() |
import { WindowTitle } from "@saleor/components/WindowTitle";
|
||
|
import useNavigator from "@saleor/hooks/useNavigator";
|
||
|
import useNotifier from "@saleor/hooks/useNotifier";
|
||
|
import useShop from "@saleor/hooks/useShop";
|
||
|
import { commonMessages } from "@saleor/intl";
|
||
|
import { WebhookCreate as WebhookCreateData } from "@saleor/webhooks/types/WebhookCreate";
|
||
|
import React from "react";
|
||
|
import { useIntl } from "react-intl";
|
||
|
|
||
|
import { getMutationState, maybe } from "../../misc";
|
||
|
import WebhookCreatePage, { FormData } from "../components/WebhookCreatePage";
|
||
|
import { TypedWebhookCreate } from "../mutations";
|
||
|
import { TypedServiceListQuery } from "../queries";
|
||
|
import {
|
||
|
webhooksListUrl,
|
||
|
WebhooksListUrlQueryParams,
|
||
|
webhooksUrl
|
||
|
} from "../urls";
|
||
|
|
||
|
export interface WebhooksCreateProps {
|
||
|
id: string;
|
||
|
params: WebhooksListUrlQueryParams;
|
||
|
}
|
||
|
|
||
|
export const WebhooksCreate: React.StatelessComponent<
|
||
|
WebhooksCreateProps
|
||
|
> = () => {
|
||
|
const navigate = useNavigator();
|
||
|
const notify = useNotifier();
|
||
|
const intl = useIntl();
|
||
|
const shop = useShop();
|
||
|
|
||
|
const onSubmit = (data: WebhookCreateData) => {
|
||
|
if (data.webhookCreate.errors.length === 0) {
|
||
|
notify({
|
||
|
text: intl.formatMessage(commonMessages.savedChanges)
|
||
|
});
|
||
|
navigate(webhooksUrl(data.webhookCreate.webhook.id));
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const handleBack = () => navigate(webhooksListUrl());
|
||
|
|
||
|
return (
|
||
|
<TypedWebhookCreate onCompleted={onSubmit}>
|
||
|
{(WebhookCreate, webhookCreateOpts) => {
|
||
|
const handleSubmit = (data: FormData) =>
|
||
|
WebhookCreate({
|
||
|
variables: {
|
||
|
input: {
|
||
|
events: data.events,
|
||
|
isActive: data.isActive,
|
||
|
name: data.name,
|
||
|
secretKey: data.secretKey,
|
||
|
serviceAccount: data.serviceAccount,
|
||
|
targetUrl: data.targetUrl
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
const formTransitionState = getMutationState(
|
||
|
webhookCreateOpts.called,
|
||
|
webhookCreateOpts.loading,
|
||
|
maybe(() => webhookCreateOpts.data.webhookCreate.errors)
|
||
|
);
|
||
|
|
||
|
return (
|
||
|
<TypedServiceListQuery displayLoader variables={{ first: 99 }}>
|
||
|
{({ data, loading }) => {
|
||
|
return (
|
||
|
<>
|
||
|
<WindowTitle
|
||
|
title={intl.formatMessage({
|
||
|
defaultMessage: "Create Webhook",
|
||
|
description: "window title"
|
||
|
})}
|
||
|
/>
|
||
|
<WebhookCreatePage
|
||
|
disabled={false}
|
||
|
errors={maybe(
|
||
|
() => webhookCreateOpts.data.webhookCreate.errors,
|
||
|
[]
|
||
|
)}
|
||
|
services={maybe(() =>
|
||
|
data.serviceAccounts.edges.map(edge => edge.node)
|
||
|
)}
|
||
|
loading={loading}
|
||
|
onBack={handleBack}
|
||
|
onSubmit={handleSubmit}
|
||
|
permissions={maybe(() => shop.permissions)}
|
||
|
saveButtonBarState={formTransitionState}
|
||
|
/>
|
||
|
</>
|
||
|
);
|
||
|
}}
|
||
|
</TypedServiceListQuery>
|
||
|
);
|
||
|
}}
|
||
|
</TypedWebhookCreate>
|
||
|
);
|
||
|
};
|
||
|
WebhooksCreate.displayName = "WebhooksCreate";
|
||
|
export default WebhooksCreate;
|