* - Changed to objectNameSingular always defined - Added ErrorCatchAll * - Added mock mode for companies logged out - Added a proper ErrorBoundary component * Removed react-error-boundary * Implemented proper ErrorBoundary * Fixes * Change strategy about mocks --------- Co-authored-by: Charles Bochet <charles@twenty.com>
115 lines
3.9 KiB
TypeScript
115 lines
3.9 KiB
TypeScript
import { useState } from 'react';
|
|
import { useNavigate } from 'react-router-dom';
|
|
import { DateTime } from 'luxon';
|
|
|
|
import { useCreateOneRecord } from '@/object-record/hooks/useCreateOneRecord';
|
|
import { SaveAndCancelButtons } from '@/settings/components/SaveAndCancelButtons/SaveAndCancelButtons';
|
|
import { SettingsHeaderContainer } from '@/settings/components/SettingsHeaderContainer';
|
|
import { SettingsPageContainer } from '@/settings/components/SettingsPageContainer';
|
|
import { ExpirationDates } from '@/settings/developers/constants/expirationDates';
|
|
import { useGeneratedApiKeys } from '@/settings/developers/hooks/useGeneratedApiKeys';
|
|
import { ApiKey } from '@/settings/developers/types/ApiKey';
|
|
import { IconSettings } from '@/ui/display/icon';
|
|
import { H2Title } from '@/ui/display/typography/components/H2Title';
|
|
import { Select } from '@/ui/input/components/Select';
|
|
import { TextInput } from '@/ui/input/components/TextInput';
|
|
import { SubMenuTopBarContainer } from '@/ui/layout/page/SubMenuTopBarContainer';
|
|
import { Section } from '@/ui/layout/section/components/Section';
|
|
import { Breadcrumb } from '@/ui/navigation/bread-crumb/components/Breadcrumb';
|
|
import { useGenerateApiKeyTokenMutation } from '~/generated/graphql';
|
|
|
|
export const SettingsDevelopersApiKeysNew = () => {
|
|
const [generateOneApiKeyToken] = useGenerateApiKeyTokenMutation();
|
|
const navigate = useNavigate();
|
|
const setGeneratedApi = useGeneratedApiKeys();
|
|
const [formValues, setFormValues] = useState<{
|
|
name: string;
|
|
expirationDate: number | null;
|
|
}>({
|
|
expirationDate: ExpirationDates[0].value,
|
|
name: '',
|
|
});
|
|
|
|
const { createOneRecord: createOneApiKey } = useCreateOneRecord<ApiKey>({
|
|
objectNameSingular: 'apiKey',
|
|
});
|
|
|
|
const onSave = async () => {
|
|
const expiresAt = DateTime.now()
|
|
.plus({ days: formValues.expirationDate ?? 30 })
|
|
.toString();
|
|
const newApiKey = await createOneApiKey?.({
|
|
name: formValues.name,
|
|
expiresAt,
|
|
});
|
|
|
|
if (!newApiKey) {
|
|
return;
|
|
}
|
|
|
|
const tokenData = await generateOneApiKeyToken({
|
|
variables: {
|
|
apiKeyId: newApiKey.id,
|
|
expiresAt: expiresAt,
|
|
},
|
|
});
|
|
if (tokenData.data?.generateApiKeyToken) {
|
|
setGeneratedApi(newApiKey.id, tokenData.data.generateApiKeyToken.token);
|
|
navigate(`/settings/developers/api-keys/${newApiKey.id}`);
|
|
}
|
|
};
|
|
const canSave = !!formValues.name && createOneApiKey;
|
|
return (
|
|
<SubMenuTopBarContainer Icon={IconSettings} title="Settings">
|
|
<SettingsPageContainer>
|
|
<SettingsHeaderContainer>
|
|
<Breadcrumb
|
|
links={[
|
|
{ children: 'APIs', href: '/settings/developers/api-keys' },
|
|
{ children: 'New' },
|
|
]}
|
|
/>
|
|
<SaveAndCancelButtons
|
|
isSaveDisabled={!canSave}
|
|
onCancel={() => {
|
|
navigate('/settings/developers/api-keys');
|
|
}}
|
|
onSave={onSave}
|
|
/>
|
|
</SettingsHeaderContainer>
|
|
<Section>
|
|
<H2Title title="Name" description="Name of your API key" />
|
|
<TextInput
|
|
placeholder="E.g. backoffice integration"
|
|
value={formValues.name}
|
|
onChange={(value) => {
|
|
setFormValues((prevState) => ({
|
|
...prevState,
|
|
name: value,
|
|
}));
|
|
}}
|
|
fullWidth
|
|
/>
|
|
</Section>
|
|
<Section>
|
|
<H2Title
|
|
title="Expiration Date"
|
|
description="When the API key will expire."
|
|
/>
|
|
<Select
|
|
dropdownScopeId="object-field-type-select"
|
|
options={ExpirationDates}
|
|
value={formValues.expirationDate}
|
|
onChange={(value) => {
|
|
setFormValues((prevState) => ({
|
|
...prevState,
|
|
expirationDate: value,
|
|
}));
|
|
}}
|
|
/>
|
|
</Section>
|
|
</SettingsPageContainer>
|
|
</SubMenuTopBarContainer>
|
|
);
|
|
};
|