1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00
unleash.unleash/frontend/src/component/context/CreateUnleashContext/CreateUnleashContext.tsx
Nuno Góis 4167a60588
feat: biome lint frontend (#4903)
Follows up on https://github.com/Unleash/unleash/pull/4853 to add Biome
to the frontend as well.


![image](https://github.com/Unleash/unleash/assets/14320932/1906faf1-fc29-4172-a4d4-b2716d72cd65)

Added a few `biome-ignore` to speed up the process but we may want to
check and fix them in the future.
2023-10-02 13:25:46 +01:00

108 lines
3.7 KiB
TypeScript

import { CreateButton } from 'component/common/CreateButton/CreateButton';
import FormTemplate from 'component/common/FormTemplate/FormTemplate';
import { useContextForm } from '../hooks/useContextForm';
import { ContextForm } from '../ContextForm/ContextForm';
import { CREATE_CONTEXT_FIELD } from 'component/providers/AccessProvider/permissions';
import useContextsApi from 'hooks/api/actions/useContextsApi/useContextsApi';
import useUiConfig from 'hooks/api/getters/useUiConfig/useUiConfig';
import useUnleashContext from 'hooks/api/getters/useUnleashContext/useUnleashContext';
import useToast from 'hooks/useToast';
import { formatUnknownError } from 'utils/formatUnknownError';
interface ICreateContextProps {
onSubmit: () => void;
onCancel: () => void;
modal?: boolean;
}
export const CreateUnleashContext = ({
onSubmit,
onCancel,
modal,
}: ICreateContextProps) => {
const { setToastData, setToastApiError } = useToast();
const { uiConfig } = useUiConfig();
const {
contextName,
contextDesc,
legalValues,
stickiness,
setContextName,
setContextDesc,
setLegalValues,
setStickiness,
getContextPayload,
validateContext,
clearErrors,
setErrors,
errors,
} = useContextForm();
const { createContext, loading } = useContextsApi();
const { refetchUnleashContext } = useUnleashContext();
const handleSubmit = async (e: Event) => {
e.preventDefault();
e.stopPropagation();
const validName = await validateContext();
if (validName) {
const payload = getContextPayload();
try {
await createContext(payload);
refetchUnleashContext();
setToastData({
title: 'Context created',
confetti: true,
type: 'success',
});
onSubmit();
} catch (error: unknown) {
setToastApiError(formatUnknownError(error));
}
}
};
const formatApiCode = () => {
return `curl --location --request POST '${uiConfig.unleashUrl}/api/admin/context' \\
--header 'Authorization: INSERT_API_KEY' \\
--header 'Content-Type: application/json' \\
--data-raw '${JSON.stringify(getContextPayload(), undefined, 2)}'`;
};
return (
<FormTemplate
loading={loading}
title='Create context'
description='Context fields are a basic building block used in Unleash to control roll-out.
They can be used together with strategy constraints as part of the activation strategy evaluation.'
documentationLink='https://docs.getunleash.io/reference/unleash-context#custom-context-fields'
documentationLinkLabel='Context fields documentation'
formatApiCode={formatApiCode}
modal={modal}
>
<ContextForm
errors={errors}
handleSubmit={handleSubmit}
onCancel={onCancel}
contextName={contextName}
setContextName={setContextName}
contextDesc={contextDesc}
setContextDesc={setContextDesc}
legalValues={legalValues}
setLegalValues={setLegalValues}
stickiness={stickiness}
setStickiness={setStickiness}
mode='Create'
validateContext={validateContext}
setErrors={setErrors}
clearErrors={clearErrors}
>
<CreateButton
name='context'
permission={CREATE_CONTEXT_FIELD}
/>
</ContextForm>
</FormTemplate>
);
};