As per title, add ~200 missing translations in different places of app. Most places are now available for translation with AI but still some aren't available - some enums (like in MenuItemSelectColor.tsx) or values in complex types (like in SettingsNonCompositeFieldTypeConfigs.ts) or values where are injected some variables (like in SettingsDataModelFieldNumberForm.tsx) --------- Co-authored-by: Félix Malfait <felix@twenty.com>
197 lines
6.2 KiB
TypeScript
197 lines
6.2 KiB
TypeScript
import { canManageFeatureFlagsState } from '@/client-config/states/canManageFeatureFlagsState';
|
|
import { SettingsAdminWorkspaceContent } from '@/settings/admin-panel/components/SettingsAdminWorkspaceContent';
|
|
import { SETTINGS_ADMIN_USER_LOOKUP_WORKSPACE_TABS_ID } from '@/settings/admin-panel/constants/SettingsAdminUserLookupWorkspaceTabsId';
|
|
import { userLookupResultState } from '@/settings/admin-panel/states/userLookupResultState';
|
|
import { SnackBarVariant } from '@/ui/feedback/snack-bar-manager/components/SnackBar';
|
|
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
|
|
import { TextInput } from '@/ui/input/components/TextInput';
|
|
import { TabList } from '@/ui/layout/tab/components/TabList';
|
|
import { useTabList } from '@/ui/layout/tab/hooks/useTabList';
|
|
import { DEFAULT_WORKSPACE_LOGO } from '@/ui/navigation/navigation-drawer/constants/DefaultWorkspaceLogo';
|
|
import styled from '@emotion/styled';
|
|
import { isNonEmptyString } from '@sniptt/guards';
|
|
import { useState } from 'react';
|
|
import { useRecoilState, useRecoilValue } from 'recoil';
|
|
import { getImageAbsoluteURI, isDefined } from 'twenty-shared';
|
|
import {
|
|
Button,
|
|
GithubVersionLink,
|
|
H1Title,
|
|
H1TitleFontColor,
|
|
H2Title,
|
|
IconSearch,
|
|
Section,
|
|
} from 'twenty-ui';
|
|
import { REACT_APP_SERVER_BASE_URL } from '~/config';
|
|
import { useUserLookupAdminPanelMutation } from '~/generated/graphql';
|
|
import { t } from '@lingui/core/macro';
|
|
|
|
import packageJson from '../../../../../package.json';
|
|
|
|
const StyledContainer = styled.div`
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: ${({ theme }) => theme.spacing(2)};
|
|
`;
|
|
|
|
const StyledUserInfo = styled.div`
|
|
margin-bottom: ${({ theme }) => theme.spacing(5)};
|
|
`;
|
|
|
|
const StyledTabListContainer = styled.div`
|
|
align-items: center;
|
|
border-bottom: ${({ theme }) => `1px solid ${theme.border.color.light}`};
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
gap: ${({ theme }) => theme.spacing(2)};
|
|
`;
|
|
|
|
const StyledContentContainer = styled.div`
|
|
flex: 1;
|
|
width: 100%;
|
|
padding: ${({ theme }) => theme.spacing(4)} 0;
|
|
`;
|
|
|
|
export const SettingsAdminGeneral = () => {
|
|
const [userIdentifier, setUserIdentifier] = useState('');
|
|
const { enqueueSnackBar } = useSnackBar();
|
|
|
|
const { activeTabId, setActiveTabId } = useTabList(
|
|
SETTINGS_ADMIN_USER_LOOKUP_WORKSPACE_TABS_ID,
|
|
);
|
|
const [userLookupResult, setUserLookupResult] = useRecoilState(
|
|
userLookupResultState,
|
|
);
|
|
const [isUserLookupLoading, setIsUserLookupLoading] = useState(false);
|
|
|
|
const [userLookup] = useUserLookupAdminPanelMutation();
|
|
|
|
const canManageFeatureFlags = useRecoilValue(canManageFeatureFlagsState);
|
|
|
|
const handleSearch = async () => {
|
|
setActiveTabId('');
|
|
setIsUserLookupLoading(true);
|
|
setUserLookupResult(null);
|
|
|
|
const response = await userLookup({
|
|
variables: { userIdentifier },
|
|
onCompleted: (data) => {
|
|
setIsUserLookupLoading(false);
|
|
if (isDefined(data?.userLookupAdminPanel)) {
|
|
setUserLookupResult(data.userLookupAdminPanel);
|
|
}
|
|
},
|
|
onError: (error) => {
|
|
setIsUserLookupLoading(false);
|
|
enqueueSnackBar(error.message, {
|
|
variant: SnackBarVariant.Error,
|
|
});
|
|
},
|
|
});
|
|
|
|
const result = response.data?.userLookupAdminPanel;
|
|
|
|
if (isDefined(result?.workspaces) && result.workspaces.length > 0) {
|
|
setActiveTabId(result.workspaces[0].id);
|
|
}
|
|
};
|
|
|
|
const activeWorkspace = userLookupResult?.workspaces.find(
|
|
(workspace) => workspace.id === activeTabId,
|
|
);
|
|
|
|
const tabs =
|
|
userLookupResult?.workspaces.map((workspace) => ({
|
|
id: workspace.id,
|
|
title: workspace.name,
|
|
logo:
|
|
getImageAbsoluteURI({
|
|
imageUrl: isNonEmptyString(workspace.logo)
|
|
? workspace.logo
|
|
: DEFAULT_WORKSPACE_LOGO,
|
|
baseUrl: REACT_APP_SERVER_BASE_URL,
|
|
}) ?? '',
|
|
})) ?? [];
|
|
|
|
const userFullName = `${userLookupResult?.user.firstName || ''} ${
|
|
userLookupResult?.user.lastName || ''
|
|
}`.trim();
|
|
|
|
return (
|
|
<>
|
|
<Section>
|
|
<H2Title title={t`About`} description={t`Version of the application`} />
|
|
<GithubVersionLink version={packageJson.version} />
|
|
</Section>
|
|
|
|
<Section>
|
|
<H2Title
|
|
title={
|
|
canManageFeatureFlags
|
|
? t`Feature Flags & Impersonation`
|
|
: t`User Impersonation`
|
|
}
|
|
description={
|
|
canManageFeatureFlags
|
|
? t`Look up users and manage their workspace feature flags or impersonate them.`
|
|
: t`Look up users to impersonate them.`
|
|
}
|
|
/>
|
|
|
|
<StyledContainer>
|
|
<TextInput
|
|
value={userIdentifier}
|
|
onChange={setUserIdentifier}
|
|
onInputEnter={handleSearch}
|
|
placeholder={t`Enter user ID or email address`}
|
|
fullWidth
|
|
disabled={isUserLookupLoading}
|
|
/>
|
|
<Button
|
|
Icon={IconSearch}
|
|
variant="primary"
|
|
accent="blue"
|
|
title={t`Search`}
|
|
onClick={handleSearch}
|
|
disabled={!userIdentifier.trim() || isUserLookupLoading}
|
|
/>
|
|
</StyledContainer>
|
|
</Section>
|
|
|
|
{isDefined(userLookupResult) && (
|
|
<Section>
|
|
<StyledUserInfo>
|
|
<H1Title
|
|
title={t`User Info`}
|
|
fontColor={H1TitleFontColor.Primary}
|
|
/>
|
|
<H2Title title={userFullName} description={t`User Name`} />
|
|
<H2Title
|
|
title={userLookupResult.user.email}
|
|
description={t`User Email`}
|
|
/>
|
|
<H2Title
|
|
title={userLookupResult.user.id}
|
|
description={t`User ID`}
|
|
/>
|
|
</StyledUserInfo>
|
|
|
|
<H1Title title={t`Workspaces`} fontColor={H1TitleFontColor.Primary} />
|
|
<StyledTabListContainer>
|
|
<TabList
|
|
tabs={tabs}
|
|
tabListInstanceId={SETTINGS_ADMIN_USER_LOOKUP_WORKSPACE_TABS_ID}
|
|
behaveAsLinks={false}
|
|
/>
|
|
</StyledTabListContainer>
|
|
|
|
<StyledContentContainer>
|
|
<SettingsAdminWorkspaceContent activeWorkspace={activeWorkspace} />
|
|
</StyledContentContainer>
|
|
</Section>
|
|
)}
|
|
</>
|
|
);
|
|
};
|