saleor-dashboard/src/webhooks/components/WebhookCreatePage/WebhookCreatePage.tsx
Krzysztof Bialoglowicz 8d1890162c Fix webhook events type
2019-10-10 13:40:31 +02:00

111 lines
3.2 KiB
TypeScript

import AppHeader from "@saleor/components/AppHeader";
import { ConfirmButtonTransitionState } from "@saleor/components/ConfirmButton";
import Container from "@saleor/components/Container";
import Form from "@saleor/components/Form";
import FormSpacer from "@saleor/components/FormSpacer";
import Grid from "@saleor/components/Grid";
import PageHeader from "@saleor/components/PageHeader";
import SaveButtonBar from "@saleor/components/SaveButtonBar";
import { sectionNames } from "@saleor/intl";
import { maybe } from "@saleor/misc";
import { UserError } from "@saleor/types";
import { WebhookEventTypeEnum } from "@saleor/types/globalTypes";
import React from "react";
import { useIntl } from "react-intl";
import { ServiceList_serviceAccounts_edges_node } from "../../types/ServiceList";
import WebhookEvents from "../WebhookEvents";
import WebhookInfo from "../WebhookInfo";
import WebhookStatus from "../WebhookStatus";
export interface FormData {
id: string;
events: WebhookEventTypeEnum[];
isActive: boolean;
name: string;
secretKey: string | null;
targetUrl: string;
serviceAccount: string;
allEvents: boolean;
}
export interface WebhookCreatePageProps {
disabled: boolean;
errors: UserError[];
services: ServiceList_serviceAccounts_edges_node[];
saveButtonBarState: ConfirmButtonTransitionState;
onBack: () => void;
onSubmit: (data: FormData) => void;
}
const WebhookCreatePage: React.StatelessComponent<WebhookCreatePageProps> = ({
disabled,
errors,
saveButtonBarState,
services,
onBack,
onSubmit
}) => {
const intl = useIntl();
const initialForm: FormData = {
allEvents: false,
events: [],
id: null,
isActive: false,
name: null,
secretKey: "",
serviceAccount: "",
targetUrl: ""
};
return (
<Form errors={errors} initial={initialForm} onSubmit={onSubmit}>
{({ data, errors, hasChanged, submit, change }) => {
return (
<Container>
<AppHeader onBack={onBack}>
{intl.formatMessage(sectionNames.plugins)}
</AppHeader>
<PageHeader
title={intl.formatMessage({
defaultMessage: "Create Webhook",
description: "header"
})}
/>
<Grid>
<div>
<WebhookInfo
data={data}
disabled={disabled}
services={maybe(() => services, [])}
errors={errors}
onChange={change}
/>
</div>
<div>
<WebhookEvents
data={data}
disabled={disabled}
onChange={change}
/>
<FormSpacer />
<WebhookStatus
data={data}
disabled={disabled}
onChange={change}
/>
</div>
</Grid>
<SaveButtonBar
disabled={disabled || !hasChanged}
state={saveButtonBarState}
onCancel={onBack}
onSave={submit}
/>
</Container>
);
}}
</Form>
);
};
WebhookCreatePage.displayName = "WebhookCreatePage";
export default WebhookCreatePage;