mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-19 01:17:18 +02:00
105 lines
3.7 KiB
TypeScript
105 lines
3.7 KiB
TypeScript
import { useHistory } from 'react-router-dom';
|
|
import { useContextForm } from '../hooks/useContextForm';
|
|
import { ContextForm } from '../ContextForm/ContextForm';
|
|
import { CREATE_CONTEXT_FIELD } from 'component/providers/AccessProvider/permissions';
|
|
import FormTemplate from 'component/common/FormTemplate/FormTemplate';
|
|
import PermissionButton from 'component/common/PermissionButton/PermissionButton';
|
|
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/format-unknown-error';
|
|
|
|
export const CreateContext = () => {
|
|
const { setToastData, setToastApiError } = useToast();
|
|
const { uiConfig } = useUiConfig();
|
|
const history = useHistory();
|
|
const {
|
|
contextName,
|
|
contextDesc,
|
|
legalValues,
|
|
stickiness,
|
|
setContextName,
|
|
setContextDesc,
|
|
setLegalValues,
|
|
setStickiness,
|
|
getContextPayload,
|
|
validateContext,
|
|
clearErrors,
|
|
setErrors,
|
|
errors,
|
|
} = useContextForm();
|
|
const { createContext, loading } = useContextsApi();
|
|
const { refetch } = useUnleashContext();
|
|
|
|
const handleSubmit = async (e: Event) => {
|
|
e.preventDefault();
|
|
const validName = await validateContext();
|
|
|
|
if (validName) {
|
|
const payload = getContextPayload();
|
|
try {
|
|
await createContext(payload);
|
|
refetch();
|
|
history.push('/context');
|
|
setToastData({
|
|
title: 'Context created',
|
|
confetti: true,
|
|
type: 'success',
|
|
});
|
|
} catch (err: unknown) {
|
|
setToastApiError(formatUnknownError(err));
|
|
}
|
|
}
|
|
};
|
|
|
|
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)}'`;
|
|
};
|
|
|
|
const onCancel = () => {
|
|
history.goBack();
|
|
};
|
|
|
|
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/how-to/how-to-define-custom-context-fields"
|
|
formatApiCode={formatApiCode}
|
|
>
|
|
<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}
|
|
>
|
|
<PermissionButton
|
|
permission={CREATE_CONTEXT_FIELD}
|
|
type="submit"
|
|
>
|
|
Create context
|
|
</PermissionButton>
|
|
</ContextForm>
|
|
</FormTemplate>
|
|
);
|
|
};
|