
* Bump macaw version * Add changeset * CRM update spacing mapping * Update spacing mapping for invoices app * Update products feed spacing mapping * Fix accordion in webhook status, add trigger button * Update search spacing mapping * Improve the changelog message * Update spacing mapping in EAM app
79 lines
2.7 KiB
TypeScript
79 lines
2.7 KiB
TypeScript
import { SendgridConfiguration } from "../configuration/sendgrid-config-schema";
|
|
import { BoxWithBorder } from "../../../components/box-with-border";
|
|
import { Box, Button, Text } from "@saleor/macaw-ui/next";
|
|
import { defaultPadding } from "../../../components/ui-defaults";
|
|
import { useDashboardNotification } from "@saleor/apps-shared";
|
|
import { trpcClient } from "../../trpc/trpc-client";
|
|
import {
|
|
SendgridUpdateApiConnection,
|
|
sendgridUpdateApiConnectionSchema,
|
|
} from "../configuration/sendgrid-config-input-schema";
|
|
import { useForm } from "react-hook-form";
|
|
import { BoxFooter } from "../../../components/box-footer";
|
|
import { SectionWithDescription } from "../../../components/section-with-description";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { setBackendErrors } from "../../../lib/set-backend-errors";
|
|
import { Input } from "@saleor/react-hook-form-macaw";
|
|
|
|
interface ApiConnectionSectionProps {
|
|
configuration: SendgridConfiguration;
|
|
}
|
|
|
|
export const ApiConnectionSection = ({ configuration }: ApiConnectionSectionProps) => {
|
|
const { notifySuccess, notifyError } = useDashboardNotification();
|
|
|
|
const { handleSubmit, control, setError, register } = useForm<SendgridUpdateApiConnection>({
|
|
defaultValues: {
|
|
id: configuration.id,
|
|
apiKey: configuration.apiKey,
|
|
sandboxMode: configuration.sandboxMode,
|
|
},
|
|
resolver: zodResolver(sendgridUpdateApiConnectionSchema),
|
|
});
|
|
|
|
const trpcContext = trpcClient.useContext();
|
|
const { mutate } = trpcClient.sendgridConfiguration.updateApiConnection.useMutation({
|
|
onSuccess: async (data, variables) => {
|
|
notifySuccess("Configuration saved");
|
|
trpcContext.sendgridConfiguration.invalidate();
|
|
},
|
|
onError(error) {
|
|
setBackendErrors<SendgridUpdateApiConnection>({
|
|
error,
|
|
setError,
|
|
notifyError,
|
|
});
|
|
},
|
|
});
|
|
|
|
return (
|
|
<SectionWithDescription title="API Connection">
|
|
<BoxWithBorder>
|
|
<form
|
|
onSubmit={handleSubmit((data, event) => {
|
|
mutate({
|
|
...data,
|
|
});
|
|
})}
|
|
>
|
|
<Box padding={defaultPadding} display="flex" flexDirection="column" gap={7}>
|
|
<Input
|
|
label="API Key"
|
|
name="apiKey"
|
|
control={control}
|
|
helperText="Name of the configuration, for example 'Production' or 'Test'"
|
|
/>
|
|
|
|
<label>
|
|
<input type="checkbox" {...register("sandboxMode")} />
|
|
<Text paddingLeft={defaultPadding}>Sandbox mode</Text>
|
|
</label>
|
|
</Box>
|
|
<BoxFooter>
|
|
<Button type="submit">Save provider</Button>
|
|
</BoxFooter>
|
|
</form>
|
|
</BoxWithBorder>
|
|
</SectionWithDescription>
|
|
);
|
|
};
|