7fd89678b7
# Introduction Avoid having multiple `isDefined` definition across our pacakges Also avoid importing `isDefined` from `twenty-ui` which exposes a huge barrel for a such little util function ## In a nutshell Removed own `isDefined.ts` definition from `twenty-ui` `twenty-front` and `twenty-server` to move it to `twenty-shared`. Updated imports for each packages, and added explicit dependencies to `twenty-shared` if not already in place Related PR https://github.com/twentyhq/twenty/pull/9941
145 lines
4.5 KiB
TypeScript
145 lines
4.5 KiB
TypeScript
import { DateTime } from 'luxon';
|
|
import { useState } from 'react';
|
|
import { H2Title, Section } from 'twenty-ui';
|
|
|
|
import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular';
|
|
import { useCreateOneRecord } from '@/object-record/hooks/useCreateOneRecord';
|
|
import { SaveAndCancelButtons } from '@/settings/components/SaveAndCancelButtons/SaveAndCancelButtons';
|
|
import { SettingsPageContainer } from '@/settings/components/SettingsPageContainer';
|
|
import { EXPIRATION_DATES } from '@/settings/developers/constants/ExpirationDates';
|
|
import { apiKeyTokenFamilyState } from '@/settings/developers/states/apiKeyTokenFamilyState';
|
|
import { ApiKey } from '@/settings/developers/types/api-key/ApiKey';
|
|
import { SettingsPath } from '@/types/SettingsPath';
|
|
import { Select } from '@/ui/input/components/Select';
|
|
import { TextInput } from '@/ui/input/components/TextInput';
|
|
import { SubMenuTopBarContainer } from '@/ui/layout/page/components/SubMenuTopBarContainer';
|
|
import { useLingui } from '@lingui/react/macro';
|
|
import { useRecoilCallback } from 'recoil';
|
|
import { Key } from 'ts-key-enum';
|
|
import { isDefined } from 'twenty-shared';
|
|
import { useGenerateApiKeyTokenMutation } from '~/generated/graphql';
|
|
import { useNavigateSettings } from '~/hooks/useNavigateSettings';
|
|
import { getSettingsPath } from '~/utils/navigation/getSettingsPath';
|
|
|
|
export const SettingsDevelopersApiKeysNew = () => {
|
|
const { t } = useLingui();
|
|
const [generateOneApiKeyToken] = useGenerateApiKeyTokenMutation();
|
|
const navigateSettings = useNavigateSettings();
|
|
const [formValues, setFormValues] = useState<{
|
|
name: string;
|
|
expirationDate: number | null;
|
|
}>({
|
|
expirationDate: EXPIRATION_DATES[5].value,
|
|
name: '',
|
|
});
|
|
|
|
const { createOneRecord: createOneApiKey } = useCreateOneRecord<ApiKey>({
|
|
objectNameSingular: CoreObjectNameSingular.ApiKey,
|
|
});
|
|
|
|
const setApiKeyTokenCallback = useRecoilCallback(
|
|
({ set }) =>
|
|
(apiKeyId: string, token: string) => {
|
|
set(apiKeyTokenFamilyState(apiKeyId), token);
|
|
},
|
|
[],
|
|
);
|
|
|
|
const handleSave = 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 (isDefined(tokenData.data?.generateApiKeyToken)) {
|
|
setApiKeyTokenCallback(
|
|
newApiKey.id,
|
|
tokenData.data.generateApiKeyToken.token,
|
|
);
|
|
navigateSettings(SettingsPath.DevelopersApiKeyDetail, {
|
|
apiKeyId: newApiKey.id,
|
|
});
|
|
}
|
|
};
|
|
const canSave = !!formValues.name && createOneApiKey;
|
|
return (
|
|
<SubMenuTopBarContainer
|
|
title={t`New key`}
|
|
links={[
|
|
{
|
|
children: t`Workspace`,
|
|
href: getSettingsPath(SettingsPath.Workspace),
|
|
},
|
|
{
|
|
children: t`Developers`,
|
|
href: getSettingsPath(SettingsPath.Developers),
|
|
},
|
|
{ children: t`New Key` },
|
|
]}
|
|
actionButton={
|
|
<SaveAndCancelButtons
|
|
isSaveDisabled={!canSave}
|
|
onCancel={() => {
|
|
navigateSettings(SettingsPath.Developers);
|
|
}}
|
|
onSave={handleSave}
|
|
/>
|
|
}
|
|
>
|
|
<SettingsPageContainer>
|
|
<Section>
|
|
<H2Title title={t`Name`} description={t`Name of your API key`} />
|
|
<TextInput
|
|
placeholder={t`E.g. backoffice integration`}
|
|
value={formValues.name}
|
|
onKeyDown={(e) => {
|
|
if (e.key === Key.Enter) {
|
|
handleSave();
|
|
}
|
|
}}
|
|
onChange={(value) => {
|
|
setFormValues((prevState) => ({
|
|
...prevState,
|
|
name: value,
|
|
}));
|
|
}}
|
|
fullWidth
|
|
/>
|
|
</Section>
|
|
<Section>
|
|
<H2Title
|
|
title={t`Expiration Date`}
|
|
description={t`When the API key will expire.`}
|
|
/>
|
|
<Select
|
|
dropdownId="object-field-type-select"
|
|
options={EXPIRATION_DATES}
|
|
value={formValues.expirationDate}
|
|
onChange={(value) => {
|
|
setFormValues((prevState) => ({
|
|
...prevState,
|
|
expirationDate: value,
|
|
}));
|
|
}}
|
|
/>
|
|
</Section>
|
|
</SettingsPageContainer>
|
|
</SubMenuTopBarContainer>
|
|
);
|
|
};
|