77 lines
2.1 KiB
TypeScript
77 lines
2.1 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 React from "react";
|
||
|
import { useIntl } from "react-intl";
|
||
|
|
||
|
import CustomAppCreatePage, {
|
||
|
CustomAppCreatePageFormData
|
||
|
} from "../../components/CustomAppCreatePage";
|
||
|
import { useAppCreateMutation } from "../../mutations";
|
||
|
import { AppCreate } from "../../types/AppCreate";
|
||
|
import { appsListUrl, customAppUrl } from "../../urls";
|
||
|
|
||
|
interface CustomAppCreateProps {
|
||
|
setToken: (token: string) => void;
|
||
|
}
|
||
|
export const CustomAppCreate: React.FC<CustomAppCreateProps> = ({
|
||
|
setToken
|
||
|
}) => {
|
||
|
const navigate = useNavigator();
|
||
|
const notify = useNotifier();
|
||
|
const intl = useIntl();
|
||
|
const shop = useShop();
|
||
|
|
||
|
const onSubmit = (data: AppCreate) => {
|
||
|
if (data.appCreate.errors.length === 0) {
|
||
|
notify({
|
||
|
status: "success",
|
||
|
text: intl.formatMessage(commonMessages.savedChanges)
|
||
|
});
|
||
|
navigate(customAppUrl(data.appCreate.app.id));
|
||
|
setToken(data.appCreate.authToken);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const handleBack = () => navigate(appsListUrl());
|
||
|
|
||
|
const [createApp, createAppOpts] = useAppCreateMutation({
|
||
|
onCompleted: onSubmit
|
||
|
});
|
||
|
|
||
|
const handleSubmit = (data: CustomAppCreatePageFormData) =>
|
||
|
createApp({
|
||
|
variables: {
|
||
|
input: {
|
||
|
name: data.name,
|
||
|
permissions: data.hasFullAccess
|
||
|
? shop.permissions.map(permission => permission.code)
|
||
|
: data.permissions
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<WindowTitle
|
||
|
title={intl.formatMessage({
|
||
|
defaultMessage: "Create App",
|
||
|
description: "window title"
|
||
|
})}
|
||
|
/>
|
||
|
<CustomAppCreatePage
|
||
|
disabled={false}
|
||
|
errors={createAppOpts.data?.appCreate.errors || []}
|
||
|
onBack={handleBack}
|
||
|
onSubmit={handleSubmit}
|
||
|
permissions={shop?.permissions}
|
||
|
saveButtonBarState={createAppOpts.status}
|
||
|
/>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default CustomAppCreate;
|