Add create service account page
This commit is contained in:
parent
76ca1f9446
commit
d4c75db41f
3 changed files with 129 additions and 0 deletions
|
@ -0,0 +1,26 @@
|
||||||
|
import { storiesOf } from "@storybook/react";
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
import { permissions } from "@saleor/fixtures";
|
||||||
|
import Decorator from "@saleor/storybook/Decorator";
|
||||||
|
import { formError } from "@saleor/storybook/misc";
|
||||||
|
import ServiceCreatePage, { ServiceCreatePageProps } from "./ServiceCreatePage";
|
||||||
|
|
||||||
|
const props: ServiceCreatePageProps = {
|
||||||
|
disabled: false,
|
||||||
|
errors: [],
|
||||||
|
onBack: () => undefined,
|
||||||
|
onSubmit: () => undefined,
|
||||||
|
permissions,
|
||||||
|
saveButtonBarState: "default"
|
||||||
|
};
|
||||||
|
storiesOf("Views / Services / Create service", module)
|
||||||
|
.addDecorator(Decorator)
|
||||||
|
.add("default", () => <ServiceCreatePage {...props} />)
|
||||||
|
.add("loading", () => <ServiceCreatePage {...props} disabled={true} />)
|
||||||
|
.add("form errors", () => (
|
||||||
|
<ServiceCreatePage
|
||||||
|
{...props}
|
||||||
|
errors={["name"].map(field => formError(field))}
|
||||||
|
/>
|
||||||
|
));
|
101
src/services/components/ServiceCreatePage/ServiceCreatePage.tsx
Normal file
101
src/services/components/ServiceCreatePage/ServiceCreatePage.tsx
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
import React from "react";
|
||||||
|
import { useIntl } from "react-intl";
|
||||||
|
|
||||||
|
import AccountPermissions from "@saleor/components/AccountPermissions";
|
||||||
|
import AccountStatus from "@saleor/components/AccountStatus";
|
||||||
|
import AppHeader from "@saleor/components/AppHeader";
|
||||||
|
import CardSpacer from "@saleor/components/CardSpacer";
|
||||||
|
import { ConfirmButtonTransitionState } from "@saleor/components/ConfirmButton";
|
||||||
|
import Container from "@saleor/components/Container";
|
||||||
|
import Form from "@saleor/components/Form";
|
||||||
|
import Grid from "@saleor/components/Grid";
|
||||||
|
import PageHeader from "@saleor/components/PageHeader";
|
||||||
|
import SaveButtonBar from "@saleor/components/SaveButtonBar";
|
||||||
|
import { ShopInfo_shop_permissions } from "@saleor/components/Shop/types/ShopInfo";
|
||||||
|
import { sectionNames } from "@saleor/intl";
|
||||||
|
import { UserError } from "@saleor/types";
|
||||||
|
import { PermissionEnum } from "@saleor/types/globalTypes";
|
||||||
|
import ServiceInfo from "../ServiceInfo";
|
||||||
|
|
||||||
|
export interface ServiceDetailsPageFormData {
|
||||||
|
hasFullAccess: boolean;
|
||||||
|
isActive: boolean;
|
||||||
|
name: string;
|
||||||
|
permissions: PermissionEnum[];
|
||||||
|
}
|
||||||
|
export interface ServiceCreatePageProps {
|
||||||
|
disabled: boolean;
|
||||||
|
errors: UserError[];
|
||||||
|
permissions: ShopInfo_shop_permissions[];
|
||||||
|
saveButtonBarState: ConfirmButtonTransitionState;
|
||||||
|
onBack: () => void;
|
||||||
|
onSubmit: (data: ServiceDetailsPageFormData) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ServiceCreatePage: React.FC<ServiceCreatePageProps> = props => {
|
||||||
|
const {
|
||||||
|
disabled,
|
||||||
|
errors: formErrors,
|
||||||
|
permissions,
|
||||||
|
saveButtonBarState,
|
||||||
|
onBack,
|
||||||
|
onSubmit
|
||||||
|
} = props;
|
||||||
|
const intl = useIntl();
|
||||||
|
|
||||||
|
const initialForm: ServiceDetailsPageFormData = {
|
||||||
|
hasFullAccess: false,
|
||||||
|
isActive: false,
|
||||||
|
name: "",
|
||||||
|
permissions: []
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
<Form
|
||||||
|
errors={formErrors}
|
||||||
|
initial={initialForm}
|
||||||
|
onSubmit={onSubmit}
|
||||||
|
confirmLeave
|
||||||
|
>
|
||||||
|
{({ data, change, errors, hasChanged, submit }) => (
|
||||||
|
<Container>
|
||||||
|
<AppHeader onBack={onBack}>
|
||||||
|
{intl.formatMessage(sectionNames.serviceAccounts)}
|
||||||
|
</AppHeader>
|
||||||
|
<PageHeader
|
||||||
|
title={intl.formatMessage({
|
||||||
|
defaultMessage: "Create New Account",
|
||||||
|
description: "header"
|
||||||
|
})}
|
||||||
|
/>
|
||||||
|
<Grid>
|
||||||
|
<div>
|
||||||
|
<ServiceInfo
|
||||||
|
data={data}
|
||||||
|
disabled={disabled}
|
||||||
|
errors={errors}
|
||||||
|
onChange={change}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<AccountPermissions
|
||||||
|
data={data}
|
||||||
|
disabled={disabled}
|
||||||
|
permissions={permissions}
|
||||||
|
onChange={change}
|
||||||
|
/>
|
||||||
|
<CardSpacer />
|
||||||
|
<AccountStatus data={data} disabled={disabled} onChange={change} />
|
||||||
|
</Grid>
|
||||||
|
<SaveButtonBar
|
||||||
|
disabled={disabled || !hasChanged}
|
||||||
|
state={saveButtonBarState}
|
||||||
|
onCancel={onBack}
|
||||||
|
onSave={submit}
|
||||||
|
/>
|
||||||
|
</Container>
|
||||||
|
)}
|
||||||
|
</Form>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
ServiceCreatePage.displayName = "ServiceCreatePage";
|
||||||
|
export default ServiceCreatePage;
|
2
src/services/components/ServiceCreatePage/index.ts
Normal file
2
src/services/components/ServiceCreatePage/index.ts
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
export { default } from "./ServiceCreatePage";
|
||||||
|
export * from "./ServiceCreatePage";
|
Loading…
Reference in a new issue