Add basic views

This commit is contained in:
dominik-zeglen 2019-09-27 14:21:38 +02:00
parent 2f09cab0c3
commit 8990940fc6
14 changed files with 325 additions and 164 deletions

View file

@ -97,6 +97,7 @@ const ServiceDetailsPage: React.FC<ServiceDetailsPageProps> = props => {
onDelete={onTokenDelete} onDelete={onTokenDelete}
/> />
</div> </div>
<div>
<AccountPermissions <AccountPermissions
data={data} data={data}
disabled={disabled} disabled={disabled}
@ -104,7 +105,12 @@ const ServiceDetailsPage: React.FC<ServiceDetailsPageProps> = props => {
onChange={change} onChange={change}
/> />
<CardSpacer /> <CardSpacer />
<AccountStatus data={data} disabled={disabled} onChange={change} /> <AccountStatus
data={data}
disabled={disabled}
onChange={change}
/>
</div>
</Grid> </Grid>
<SaveButtonBar <SaveButtonBar
disabled={disabled || !hasChanged} disabled={disabled || !hasChanged}

View file

@ -9,6 +9,7 @@ import Table from "@material-ui/core/Table";
import TableBody from "@material-ui/core/TableBody"; import TableBody from "@material-ui/core/TableBody";
import TableCell from "@material-ui/core/TableCell"; import TableCell from "@material-ui/core/TableCell";
import TableFooter from "@material-ui/core/TableFooter"; import TableFooter from "@material-ui/core/TableFooter";
import TableHead from "@material-ui/core/TableHead";
import TableRow from "@material-ui/core/TableRow"; import TableRow from "@material-ui/core/TableRow";
import Typography from "@material-ui/core/Typography"; import Typography from "@material-ui/core/Typography";
import DeleteIcon from "@material-ui/icons/Delete"; import DeleteIcon from "@material-ui/icons/Delete";
@ -18,13 +19,12 @@ import { FormattedMessage } from "react-intl";
import Checkbox from "@saleor/components/Checkbox"; import Checkbox from "@saleor/components/Checkbox";
import Skeleton from "@saleor/components/Skeleton"; import Skeleton from "@saleor/components/Skeleton";
import TableHead from "@saleor/components/TableHead";
import TablePagination from "@saleor/components/TablePagination"; import TablePagination from "@saleor/components/TablePagination";
import { maybe, renderCollection } from "@saleor/misc"; import { maybe, renderCollection } from "@saleor/misc";
import { ListActions, ListProps } from "@saleor/types"; import { ListProps } from "@saleor/types";
import { ServiceList_serviceAccounts_edges_node } from "../../types/ServiceList"; import { ServiceList_serviceAccounts_edges_node } from "../../types/ServiceList";
export interface ServiceListProps extends ListProps, ListActions { export interface ServiceListProps extends ListProps {
services: ServiceList_serviceAccounts_edges_node[]; services: ServiceList_serviceAccounts_edges_node[];
onRemove: (id: string) => void; onRemove: (id: string) => void;
} }
@ -51,10 +51,13 @@ const styles = (theme: Theme) =>
}, },
table: { table: {
tableLayout: "fixed" tableLayout: "fixed"
},
tableRow: {
cursor: "pointer"
} }
}); });
const numberOfColumns = 3; const numberOfColumns = 2;
const ServiceList = withStyles(styles, { const ServiceList = withStyles(styles, {
name: "ServiceList" name: "ServiceList"
@ -69,24 +72,12 @@ const ServiceList = withStyles(styles, {
onRemove, onRemove,
onRowClick, onRowClick,
pageInfo, pageInfo,
services, services
isChecked,
selected,
toggle,
toggleAll,
toolbar
}: ServiceListProps & WithStyles<typeof styles>) => ( }: ServiceListProps & WithStyles<typeof styles>) => (
<Table className={classes.table}> <Table className={classes.table}>
<TableHead <TableHead>
colSpan={numberOfColumns}
selected={selected}
disabled={disabled}
items={services}
toggleAll={toggleAll}
toolbar={toolbar}
>
<TableCell className={classes.colName}> <TableCell className={classes.colName}>
<FormattedMessage defaultMessage="Code" description="voucher code" /> <FormattedMessage defaultMessage="Name" description="service name" />
</TableCell> </TableCell>
<TableCell /> <TableCell />
</TableHead> </TableHead>
@ -108,25 +99,13 @@ const ServiceList = withStyles(styles, {
<TableBody> <TableBody>
{renderCollection( {renderCollection(
services, services,
service => { service => (
const isSelected = service ? isChecked(service.id) : false;
return (
<TableRow <TableRow
className={!!service ? classes.tableRow : undefined} className={!!service ? classes.tableRow : undefined}
hover={!!service} hover={!!service}
key={service ? service.id : "skeleton"} key={service ? service.id : "skeleton"}
selected={isSelected}
onClick={service ? onRowClick(service.id) : undefined} onClick={service ? onRowClick(service.id) : undefined}
> >
<TableCell padding="checkbox">
<Checkbox
checked={isSelected}
disabled={disabled}
disableClickPropagation
onChange={() => toggle(service.id)}
/>
</TableCell>
<TableCell className={classes.colName}> <TableCell className={classes.colName}>
<span data-tc="name"> <span data-tc="name">
{maybe<React.ReactNode>(() => service.name, <Skeleton />)} {maybe<React.ReactNode>(() => service.name, <Skeleton />)}
@ -162,8 +141,7 @@ const ServiceList = withStyles(styles, {
</IconButton> </IconButton>
</TableCell> </TableCell>
</TableRow> </TableRow>
); ),
},
() => ( () => (
<TableRow> <TableRow>
<TableCell colSpan={numberOfColumns}> <TableCell colSpan={numberOfColumns}>

View file

@ -8,18 +8,12 @@ import Container from "@saleor/components/Container";
import PageHeader from "@saleor/components/PageHeader"; import PageHeader from "@saleor/components/PageHeader";
import SearchBar from "@saleor/components/SearchBar"; import SearchBar from "@saleor/components/SearchBar";
import { sectionNames } from "@saleor/intl"; import { sectionNames } from "@saleor/intl";
import { import { PageListProps, SearchPageProps, TabPageProps } from "@saleor/types";
ListActions,
PageListProps,
SearchPageProps,
TabPageProps
} from "@saleor/types";
import { ServiceList_serviceAccounts_edges_node } from "../../types/ServiceList"; import { ServiceList_serviceAccounts_edges_node } from "../../types/ServiceList";
import ServiceList from "../ServiceList"; import ServiceList from "../ServiceList";
export interface ServiceListPageProps export interface ServiceListPageProps
extends PageListProps, extends PageListProps,
ListActions,
SearchPageProps, SearchPageProps,
TabPageProps { TabPageProps {
services: ServiceList_serviceAccounts_edges_node[]; services: ServiceList_serviceAccounts_edges_node[];

View file

@ -6,11 +6,13 @@ import { Route, RouteComponentProps, Switch } from "react-router-dom";
import { sectionNames } from "@saleor/intl"; import { sectionNames } from "@saleor/intl";
import { WindowTitle } from "../components/WindowTitle"; import { WindowTitle } from "../components/WindowTitle";
import { import {
serviceAddPath,
serviceListPath, serviceListPath,
ServiceListUrlQueryParams, ServiceListUrlQueryParams,
servicePath, servicePath,
ServiceUrlQueryParams ServiceUrlQueryParams
} from "./urls"; } from "./urls";
import ServiceCreate from "./views/ServiceCreate";
import ServiceDetailsComponent from "./views/ServiceDetails"; import ServiceDetailsComponent from "./views/ServiceDetails";
import ServiceListComponent from "./views/ServiceList"; import ServiceListComponent from "./views/ServiceList";
@ -43,6 +45,7 @@ const ServiceSection = () => {
<WindowTitle title={intl.formatMessage(sectionNames.serviceAccounts)} /> <WindowTitle title={intl.formatMessage(sectionNames.serviceAccounts)} />
<Switch> <Switch>
<Route exact path={serviceListPath} component={ServiceList} /> <Route exact path={serviceListPath} component={ServiceList} />
<Route exact path={serviceAddPath} component={ServiceCreate} />
<Route path={servicePath(":id")} component={ServiceDetails} /> <Route path={servicePath(":id")} component={ServiceDetails} />
</Switch> </Switch>
</> </>

24
src/services/mutations.ts Normal file
View file

@ -0,0 +1,24 @@
import gql from "graphql-tag";
import { TypedMutation } from "../mutations";
import { serviceFragment } from "./queries";
import { ServiceCreate, ServiceCreateVariables } from "./types/ServiceCreate";
export const serviceCreateMutation = gql`
${serviceFragment}
mutation ServiceCreate($input: ServiceAccountInput!) {
serviceAccountCreate(input: $input) {
errors {
field
message
}
serviceAccount {
...ServiceFragment
}
}
}
`;
export const ServiceCreateMutation = TypedMutation<
ServiceCreate,
ServiceCreateVariables
>(serviceCreateMutation);

View file

@ -37,6 +37,9 @@ const serviceList = gql`
...ServiceFragment ...ServiceFragment
} }
} }
pageInfo {
...PageInfoFragment
}
} }
} }
`; `;

View file

@ -0,0 +1,36 @@
/* tslint:disable */
/* eslint-disable */
// This file was automatically generated and should not be edited.
import { ServiceAccountInput } from "./../../types/globalTypes";
// ====================================================
// GraphQL mutation operation: ServiceCreate
// ====================================================
export interface ServiceCreate_serviceAccountCreate_errors {
__typename: "Error";
field: string | null;
message: string | null;
}
export interface ServiceCreate_serviceAccountCreate_serviceAccount {
__typename: "ServiceAccount";
id: string;
name: string | null;
isActive: boolean | null;
}
export interface ServiceCreate_serviceAccountCreate {
__typename: "ServiceAccountCreate";
errors: ServiceCreate_serviceAccountCreate_errors[] | null;
serviceAccount: ServiceCreate_serviceAccountCreate_serviceAccount | null;
}
export interface ServiceCreate {
serviceAccountCreate: ServiceCreate_serviceAccountCreate | null;
}
export interface ServiceCreateVariables {
input: ServiceAccountInput;
}

View file

@ -20,9 +20,18 @@ export interface ServiceList_serviceAccounts_edges {
node: ServiceList_serviceAccounts_edges_node; node: ServiceList_serviceAccounts_edges_node;
} }
export interface ServiceList_serviceAccounts_pageInfo {
__typename: "PageInfo";
endCursor: string | null;
hasNextPage: boolean;
hasPreviousPage: boolean;
startCursor: string | null;
}
export interface ServiceList_serviceAccounts { export interface ServiceList_serviceAccounts {
__typename: "ServiceAccountCountableConnection"; __typename: "ServiceAccountCountableConnection";
edges: ServiceList_serviceAccounts_edges[]; edges: ServiceList_serviceAccounts_edges[];
pageInfo: ServiceList_serviceAccounts_pageInfo;
} }
export interface ServiceList { export interface ServiceList {

View file

@ -0,0 +1,71 @@
import React from "react";
import { useIntl } from "react-intl";
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 { getMutationState, maybe } from "@saleor/misc";
import { ServiceCreateMutation } from "@saleor/services/mutations";
import ServiceCreatePage, {
ServiceCreatePageFormData
} from "../../components/ServiceCreatePage";
import { serviceListUrl, serviceUrl, ServiceUrlQueryParams } from "../../urls";
export const ServiceCreate: React.StatelessComponent = () => {
const navigate = useNavigator();
const notify = useNotifier();
const intl = useIntl();
const shop = useShop();
const onSubmit = () => undefined;
const handleBack = () => navigate(serviceListUrl());
return (
<ServiceCreateMutation onCompleted={onSubmit}>
{(serviceCreate, serviceCreateOpts) => {
const handleSubmit = (data: ServiceCreatePageFormData) =>
serviceCreate({
variables: {
input: {
isActive: data.isActive,
name: data.name,
permissions: data.hasFullAccess
? shop.permissions.map(permission => permission.code)
: data.permissions
}
}
});
const formTransitionState = getMutationState(
serviceCreateOpts.called,
serviceCreateOpts.loading,
maybe(() => serviceCreateOpts.data.serviceAccountCreate.errors)
);
return (
<>
<WindowTitle
title={intl.formatMessage({
defaultMessage: "Create Service Account",
description: "window title"
})}
/>
<ServiceCreatePage
disabled={false}
errors={[]}
onBack={handleBack}
onSubmit={handleSubmit}
permissions={maybe(() => shop.permissions)}
saveButtonBarState={formTransitionState}
/>
</>
);
}}
</ServiceCreateMutation>
);
};
export default ServiceCreate;

View file

@ -0,0 +1,2 @@
export { default } from "./ServiceCreate";
export * from "./ServiceCreate";

View file

@ -11,7 +11,12 @@ import ServiceDetailsPage, {
ServiceDetailsPageFormData ServiceDetailsPageFormData
} from "../../components/ServiceDetailsPage"; } from "../../components/ServiceDetailsPage";
import { ServiceDetailsQuery } from "../../queries"; import { ServiceDetailsQuery } from "../../queries";
import { serviceListUrl, serviceUrl, ServiceUrlQueryParams } from "../../urls"; import {
serviceListUrl,
serviceUrl,
ServiceUrlDialog,
ServiceUrlQueryParams
} from "../../urls";
interface OrderListProps { interface OrderListProps {
id: string; id: string;
@ -27,6 +32,25 @@ export const ServiceDetails: React.StatelessComponent<OrderListProps> = ({
const intl = useIntl(); const intl = useIntl();
const shop = useShop(); const shop = useShop();
const closeModal = () =>
navigate(
serviceUrl(id, {
...params,
action: undefined,
id: undefined
}),
true
);
const openModal = (action: ServiceUrlDialog, tokenId?: string) =>
navigate(
serviceUrl(id, {
...params,
action,
id: tokenId
})
);
return ( return (
<ServiceDetailsQuery <ServiceDetailsQuery
displayLoader displayLoader
@ -50,14 +74,7 @@ export const ServiceDetails: React.StatelessComponent<OrderListProps> = ({
} }
}; };
const handleBack = navigate(serviceListUrl()); const handleBack = () => navigate(serviceListUrl());
const handleDelete = navigate(
serviceUrl(id, {
...params,
action: "remove"
})
);
const handleSubmit = (data: ServiceDetailsPageFormData) => undefined; const handleSubmit = (data: ServiceDetailsPageFormData) => undefined;
@ -68,8 +85,10 @@ export const ServiceDetails: React.StatelessComponent<OrderListProps> = ({
disabled={loading} disabled={loading}
errors={[]} errors={[]}
onBack={handleBack} onBack={handleBack}
onDelete={handleDelete} onDelete={() => openModal("remove")}
onSubmit={handleSubmit} onSubmit={handleSubmit}
onTokenCreate={() => openModal("create-token")}
onTokenDelete={() => openModal("delete-token")}
permissions={maybe(() => shop.permissions)} permissions={maybe(() => shop.permissions)}
service={maybe(() => data.serviceAccount)} service={maybe(() => data.serviceAccount)}
saveButtonBarState="default" saveButtonBarState="default"

View file

@ -20,6 +20,7 @@ import { ListViews } from "@saleor/types";
import ServiceListPage from "../../components/ServiceListPage"; import ServiceListPage from "../../components/ServiceListPage";
import { ServiceListQuery } from "../../queries"; import { ServiceListQuery } from "../../queries";
import { import {
serviceAddUrl,
serviceListUrl, serviceListUrl,
ServiceListUrlDialog, ServiceListUrlDialog,
ServiceListUrlFilters, ServiceListUrlFilters,
@ -118,37 +119,22 @@ export const ServiceList: React.StatelessComponent<ServiceListProps> = ({
return ( return (
<ServiceListQuery displayLoader variables={queryVariables}> <ServiceListQuery displayLoader variables={queryVariables}>
{({ data, loading }) => ( {({ data, loading }) => {
<TypedServiceMemberAddMutation
onCompleted={handleServiceMemberAddSuccess}
>
{(addServiceMember, addServiceMemberData) => {
const handleServiceMemberAdd = (variables: AddServiceMemberForm) =>
addServiceMember({
variables: {
input: {
email: variables.email,
firstName: variables.firstName,
lastName: variables.lastName,
permissions: variables.fullAccess
? maybe(() => shop.permissions.map(perm => perm.code))
: undefined,
sendPasswordEmail: true
}
}
});
const addTransitionState = getMutationState(
addServiceMemberData.called,
addServiceMemberData.loading,
maybe(() => addServiceMemberData.data.serviceCreate.errors)
);
const { loadNextPage, loadPreviousPage, pageInfo } = paginate( const { loadNextPage, loadPreviousPage, pageInfo } = paginate(
maybe(() => data.serviceUsers.pageInfo), maybe(() => data.serviceAccounts.pageInfo),
paginationState, paginationState,
params params
); );
const handleCreate = () => navigate(serviceAddUrl);
const handleRemove = () =>
navigate(
serviceListUrl({
...params,
action: "remove"
})
);
return ( return (
<> <>
<ServiceListPage <ServiceListPage
@ -160,30 +146,23 @@ export const ServiceList: React.StatelessComponent<ServiceListProps> = ({
onTabDelete={() => openModal("delete-search")} onTabDelete={() => openModal("delete-search")}
onTabSave={() => openModal("save-search")} onTabSave={() => openModal("save-search")}
tabs={tabs.map(tab => tab.name)} tabs={tabs.map(tab => tab.name)}
disabled={loading || addServiceMemberData.loading} disabled={loading}
settings={settings} settings={settings}
pageInfo={pageInfo} pageInfo={pageInfo}
serviceMembers={maybe(() => services={maybe(() =>
data.serviceUsers.edges.map(edge => edge.node) data.serviceAccounts.edges.map(edge => edge.node)
)} )}
onAdd={() => onAdd={handleCreate}
navigate(
serviceListUrl({
action: "add"
})
)
}
onBack={() => navigate(configurationMenuUrl)} onBack={() => navigate(configurationMenuUrl)}
onNextPage={loadNextPage} onNextPage={loadNextPage}
onPreviousPage={loadPreviousPage} onPreviousPage={loadPreviousPage}
onUpdateListSettings={updateListSettings} onUpdateListSettings={updateListSettings}
onRowClick={id => () => navigate(serviceUrl(id))} onRowClick={id => () => navigate(serviceUrl(id))}
onRemove={handleRemove}
/> />
</> </>
); );
}} }}
</TypedServiceMemberAddMutation>
)}
</ServiceListQuery> </ServiceListQuery>
); );
}; };

View file

@ -0,0 +1,31 @@
import { ServiceAccountFilterInput } from "@saleor/types/globalTypes";
import {
createFilterTabUtils,
createFilterUtils
} from "../../../utils/filters";
import {
ServiceListUrlFilters,
ServiceListUrlFiltersEnum,
ServiceListUrlQueryParams
} from "../../urls";
export const STAFF_FILTERS_KEY = "staffFilters";
export function getFilterVariables(
params: ServiceListUrlFilters
): ServiceAccountFilterInput {
return {
search: params.query
};
}
export const {
deleteFilterTab,
getFilterTabs,
saveFilterTab
} = createFilterTabUtils<ServiceListUrlFilters>(STAFF_FILTERS_KEY);
export const { areFiltersApplied, getActiveFilters } = createFilterUtils<
ServiceListUrlQueryParams,
ServiceListUrlFilters
>(ServiceListUrlFiltersEnum);

View file

@ -655,6 +655,12 @@ export interface ServiceAccountFilterInput {
isActive?: boolean | null; isActive?: boolean | null;
} }
export interface ServiceAccountInput {
name?: string | null;
isActive?: boolean | null;
permissions?: (PermissionEnum | null)[] | null;
}
export interface ShippingPriceInput { export interface ShippingPriceInput {
name?: string | null; name?: string | null;
price?: any | null; price?: any | null;