@ -5,16 +5,26 @@ import { WorkflowRunRecordActionMenuEntrySetterEffect } from '@/action-menu/acti
|
|||||||
import { contextStoreCurrentObjectMetadataIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataIdComponentState';
|
import { contextStoreCurrentObjectMetadataIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataIdComponentState';
|
||||||
import { contextStoreTargetedRecordsRuleComponentState } from '@/context-store/states/contextStoreTargetedRecordsRuleComponentState';
|
import { contextStoreTargetedRecordsRuleComponentState } from '@/context-store/states/contextStoreTargetedRecordsRuleComponentState';
|
||||||
import { useObjectMetadataItemById } from '@/object-metadata/hooks/useObjectMetadataItemById';
|
import { useObjectMetadataItemById } from '@/object-metadata/hooks/useObjectMetadataItemById';
|
||||||
|
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
|
||||||
import { useRecoilComponentValueV2 } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValueV2';
|
import { useRecoilComponentValueV2 } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValueV2';
|
||||||
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
|
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
|
||||||
|
import { useRecoilValue } from 'recoil';
|
||||||
import { isDefined } from 'twenty-ui';
|
import { isDefined } from 'twenty-ui';
|
||||||
|
|
||||||
export const RecordActionMenuEntriesSetter = () => {
|
export const RecordActionMenuEntriesSetter = () => {
|
||||||
const contextStoreCurrentObjectMetadataId = useRecoilComponentValueV2(
|
const contextStoreCurrentObjectMetadataId = useRecoilComponentValueV2(
|
||||||
contextStoreCurrentObjectMetadataIdComponentState,
|
contextStoreCurrentObjectMetadataIdComponentState,
|
||||||
);
|
);
|
||||||
|
const objectMetadataItems = useRecoilValue(objectMetadataItemsState);
|
||||||
|
|
||||||
if (!isDefined(contextStoreCurrentObjectMetadataId)) {
|
const objectMetadataItem = objectMetadataItems.find(
|
||||||
|
(item) => item.id === contextStoreCurrentObjectMetadataId,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (
|
||||||
|
!isDefined(contextStoreCurrentObjectMetadataId) ||
|
||||||
|
!isDefined(objectMetadataItem)
|
||||||
|
) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
import styled from '@emotion/styled';
|
import styled from '@emotion/styled';
|
||||||
import { getImageAbsoluteURI, isDefined } from 'twenty-ui';
|
import { isNonEmptyString } from '@sniptt/guards';
|
||||||
|
import { getImageAbsoluteURI } from 'twenty-ui';
|
||||||
|
|
||||||
type LogoProps = {
|
type LogoProps = {
|
||||||
primaryLogo?: string | null;
|
primaryLogo?: string | null;
|
||||||
@ -48,7 +49,7 @@ export const Logo = (props: LogoProps) => {
|
|||||||
const primaryLogoUrl = getImageAbsoluteURI(
|
const primaryLogoUrl = getImageAbsoluteURI(
|
||||||
props.primaryLogo ?? defaultPrimaryLogoUrl,
|
props.primaryLogo ?? defaultPrimaryLogoUrl,
|
||||||
);
|
);
|
||||||
const secondaryLogoUrl = isDefined(props.secondaryLogo)
|
const secondaryLogoUrl = isNonEmptyString(props.secondaryLogo)
|
||||||
? getImageAbsoluteURI(props.secondaryLogo)
|
? getImageAbsoluteURI(props.secondaryLogo)
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
|
|||||||
@ -42,9 +42,9 @@ import { getTimeFormatFromWorkspaceTimeFormat } from '@/localization/utils/getTi
|
|||||||
import { currentUserState } from '../states/currentUserState';
|
import { currentUserState } from '../states/currentUserState';
|
||||||
import { tokenPairState } from '../states/tokenPairState';
|
import { tokenPairState } from '../states/tokenPairState';
|
||||||
|
|
||||||
import { useLastAuthenticatedWorkspaceDomain } from '@/domain-manager/hooks/useLastAuthenticatedWorkspaceDomain';
|
|
||||||
import { isMultiWorkspaceEnabledState } from '@/client-config/states/isMultiWorkspaceEnabledState';
|
import { isMultiWorkspaceEnabledState } from '@/client-config/states/isMultiWorkspaceEnabledState';
|
||||||
import { useIsCurrentLocationOnAWorkspaceSubdomain } from '@/domain-manager/hooks/useIsCurrentLocationOnAWorkspaceSubdomain';
|
import { useIsCurrentLocationOnAWorkspaceSubdomain } from '@/domain-manager/hooks/useIsCurrentLocationOnAWorkspaceSubdomain';
|
||||||
|
import { useLastAuthenticatedWorkspaceDomain } from '@/domain-manager/hooks/useLastAuthenticatedWorkspaceDomain';
|
||||||
import { useReadWorkspaceSubdomainFromCurrentLocation } from '@/domain-manager/hooks/useReadWorkspaceSubdomainFromCurrentLocation';
|
import { useReadWorkspaceSubdomainFromCurrentLocation } from '@/domain-manager/hooks/useReadWorkspaceSubdomainFromCurrentLocation';
|
||||||
import { domainConfigurationState } from '@/domain-manager/states/domainConfigurationState';
|
import { domainConfigurationState } from '@/domain-manager/states/domainConfigurationState';
|
||||||
|
|
||||||
|
|||||||
@ -1,59 +1,35 @@
|
|||||||
import { useEffect } from 'react';
|
import { useEffect } from 'react';
|
||||||
import { useRecoilCallback, useRecoilValue } from 'recoil';
|
import { useRecoilValue } from 'recoil';
|
||||||
|
|
||||||
import { useIsLogged } from '@/auth/hooks/useIsLogged';
|
|
||||||
import { currentUserState } from '@/auth/states/currentUserState';
|
import { currentUserState } from '@/auth/states/currentUserState';
|
||||||
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
|
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
|
||||||
import { useFindManyObjectMetadataItems } from '@/object-metadata/hooks/useFindManyObjectMetadataItems';
|
import { useLoadMockedObjectMetadataItems } from '@/object-metadata/hooks/useLoadMockedObjectMetadataItems';
|
||||||
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
|
import { useRefreshObjectMetadataItems } from '@/object-metadata/hooks/useRefreshObjectMetadataItem';
|
||||||
import { WorkspaceActivationStatus } from '~/generated/graphql';
|
import { WorkspaceActivationStatus } from '~/generated/graphql';
|
||||||
import { generatedMockObjectMetadataItems } from '~/testing/mock-data/generatedMockObjectMetadataItems';
|
|
||||||
import { isDeeplyEqual } from '~/utils/isDeeplyEqual';
|
|
||||||
import { isUndefinedOrNull } from '~/utils/isUndefinedOrNull';
|
import { isUndefinedOrNull } from '~/utils/isUndefinedOrNull';
|
||||||
|
|
||||||
export const ObjectMetadataItemsLoadEffect = () => {
|
export const ObjectMetadataItemsLoadEffect = () => {
|
||||||
const currentUser = useRecoilValue(currentUserState);
|
const currentUser = useRecoilValue(currentUserState);
|
||||||
const currentWorkspace = useRecoilValue(currentWorkspaceState);
|
const currentWorkspace = useRecoilValue(currentWorkspaceState);
|
||||||
const isLoggedIn = useIsLogged();
|
|
||||||
|
|
||||||
const {
|
const { refreshObjectMetadataItems } = useRefreshObjectMetadataItems();
|
||||||
objectMetadataItems: newObjectMetadataItems,
|
const { loadMockedObjectMetadataItems } = useLoadMockedObjectMetadataItems();
|
||||||
loading: isObjectMetadataLoading,
|
|
||||||
} = useFindManyObjectMetadataItems({
|
|
||||||
skip: !isLoggedIn,
|
|
||||||
});
|
|
||||||
|
|
||||||
const updateObjectMetadataItems = useRecoilCallback(
|
|
||||||
({ set, snapshot }) =>
|
|
||||||
() => {
|
|
||||||
const toSetObjectMetadataItems =
|
|
||||||
isUndefinedOrNull(currentUser) ||
|
|
||||||
currentWorkspace?.activationStatus !==
|
|
||||||
WorkspaceActivationStatus.Active
|
|
||||||
? generatedMockObjectMetadataItems
|
|
||||||
: newObjectMetadataItems;
|
|
||||||
|
|
||||||
if (
|
|
||||||
!isObjectMetadataLoading &&
|
|
||||||
!isDeeplyEqual(
|
|
||||||
snapshot.getLoadable(objectMetadataItemsState).getValue(),
|
|
||||||
toSetObjectMetadataItems,
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
set(objectMetadataItemsState, toSetObjectMetadataItems);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[
|
|
||||||
currentUser,
|
|
||||||
currentWorkspace?.activationStatus,
|
|
||||||
isObjectMetadataLoading,
|
|
||||||
newObjectMetadataItems,
|
|
||||||
],
|
|
||||||
);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
updateObjectMetadataItems();
|
if (
|
||||||
}, [updateObjectMetadataItems]);
|
isUndefinedOrNull(currentUser) ||
|
||||||
|
currentWorkspace?.activationStatus !== WorkspaceActivationStatus.Active
|
||||||
|
) {
|
||||||
|
loadMockedObjectMetadataItems();
|
||||||
|
} else {
|
||||||
|
refreshObjectMetadataItems();
|
||||||
|
}
|
||||||
|
}, [
|
||||||
|
currentUser,
|
||||||
|
currentWorkspace?.activationStatus,
|
||||||
|
loadMockedObjectMetadataItems,
|
||||||
|
refreshObjectMetadataItems,
|
||||||
|
]);
|
||||||
|
|
||||||
return <></>;
|
return <></>;
|
||||||
};
|
};
|
||||||
|
|||||||
@ -0,0 +1,24 @@
|
|||||||
|
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
|
||||||
|
import { useRecoilCallback } from 'recoil';
|
||||||
|
import { generatedMockObjectMetadataItems } from '~/testing/mock-data/generatedMockObjectMetadataItems';
|
||||||
|
import { isDeeplyEqual } from '~/utils/isDeeplyEqual';
|
||||||
|
|
||||||
|
export const useLoadMockedObjectMetadataItems = () => {
|
||||||
|
const loadMockedObjectMetadataItems = useRecoilCallback(
|
||||||
|
({ set, snapshot }) =>
|
||||||
|
() => {
|
||||||
|
if (
|
||||||
|
!isDeeplyEqual(
|
||||||
|
snapshot.getLoadable(objectMetadataItemsState).getValue(),
|
||||||
|
generatedMockObjectMetadataItems,
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
set(objectMetadataItemsState, generatedMockObjectMetadataItems);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
return {
|
||||||
|
loadMockedObjectMetadataItems,
|
||||||
|
};
|
||||||
|
};
|
||||||
@ -0,0 +1,44 @@
|
|||||||
|
import { FIND_MANY_OBJECT_METADATA_ITEMS } from '@/object-metadata/graphql/queries';
|
||||||
|
import { useApolloMetadataClient } from '@/object-metadata/hooks/useApolloMetadataClient';
|
||||||
|
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
|
||||||
|
import { ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
|
||||||
|
import { mapPaginatedObjectMetadataItemsToObjectMetadataItems } from '@/object-metadata/utils/mapPaginatedObjectMetadataItemsToObjectMetadataItems';
|
||||||
|
import { useRecoilCallback } from 'recoil';
|
||||||
|
import { ObjectMetadataItemsQuery } from '~/generated-metadata/graphql';
|
||||||
|
import { isDeeplyEqual } from '~/utils/isDeeplyEqual';
|
||||||
|
|
||||||
|
export const useRefreshObjectMetadataItems = () => {
|
||||||
|
const client = useApolloMetadataClient();
|
||||||
|
|
||||||
|
const refreshObjectMetadataItems = async () => {
|
||||||
|
const result = await client.query<ObjectMetadataItemsQuery>({
|
||||||
|
query: FIND_MANY_OBJECT_METADATA_ITEMS,
|
||||||
|
variables: {},
|
||||||
|
});
|
||||||
|
|
||||||
|
const objectMetadataItems =
|
||||||
|
mapPaginatedObjectMetadataItemsToObjectMetadataItems({
|
||||||
|
pagedObjectMetadataItems: result.data,
|
||||||
|
});
|
||||||
|
|
||||||
|
replaceObjectMetadataItemIfDifferent(objectMetadataItems);
|
||||||
|
};
|
||||||
|
|
||||||
|
const replaceObjectMetadataItemIfDifferent = useRecoilCallback(
|
||||||
|
({ set, snapshot }) =>
|
||||||
|
(toSetObjectMetadataItems: ObjectMetadataItem[]) => {
|
||||||
|
if (
|
||||||
|
!isDeeplyEqual(
|
||||||
|
snapshot.getLoadable(objectMetadataItemsState).getValue(),
|
||||||
|
toSetObjectMetadataItems,
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
set(objectMetadataItemsState, toSetObjectMetadataItems);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[],
|
||||||
|
);
|
||||||
|
return {
|
||||||
|
refreshObjectMetadataItems,
|
||||||
|
};
|
||||||
|
};
|
||||||
@ -1,5 +1,6 @@
|
|||||||
import { useTheme } from '@emotion/react';
|
import { useTheme } from '@emotion/react';
|
||||||
import styled from '@emotion/styled';
|
import styled from '@emotion/styled';
|
||||||
|
import { isNonEmptyString } from '@sniptt/guards';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
@ -115,7 +116,9 @@ export const ImageInput = ({
|
|||||||
hiddenFileInput.current?.click();
|
hiddenFileInput.current?.click();
|
||||||
};
|
};
|
||||||
|
|
||||||
const pictureURI = isDefined(picture) ? getImageAbsoluteURI(picture) : null;
|
const pictureURI = isNonEmptyString(picture)
|
||||||
|
? getImageAbsoluteURI(picture)
|
||||||
|
: null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<StyledContainer className={className}>
|
<StyledContainer className={className}>
|
||||||
|
|||||||
@ -68,15 +68,15 @@ const testCases = [
|
|||||||
{ loc: AppPath.Verify, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.Completed, res: false },
|
{ loc: AppPath.Verify, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.Completed, res: false },
|
||||||
|
|
||||||
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: undefined, onboardingStatus: OnboardingStatus.PlanRequired, res: true },
|
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: undefined, onboardingStatus: OnboardingStatus.PlanRequired, res: true },
|
||||||
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Canceled, onboardingStatus: OnboardingStatus.Completed, res: false },
|
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Canceled, onboardingStatus: OnboardingStatus.Completed, res: true },
|
||||||
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Unpaid, onboardingStatus: OnboardingStatus.Completed, res: false },
|
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Unpaid, onboardingStatus: OnboardingStatus.Completed, res: true },
|
||||||
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.PastDue, onboardingStatus: OnboardingStatus.Completed, res: false },
|
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.PastDue, onboardingStatus: OnboardingStatus.Completed, res: true },
|
||||||
{ loc: AppPath.SignInUp, isLogged: false, subscriptionStatus: undefined, onboardingStatus: undefined, res: true },
|
{ loc: AppPath.SignInUp, isLogged: false, subscriptionStatus: undefined, onboardingStatus: undefined, res: true },
|
||||||
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.WorkspaceActivation, res: true },
|
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.WorkspaceActivation, res: true },
|
||||||
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.ProfileCreation, res: true },
|
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.ProfileCreation, res: true },
|
||||||
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.SyncEmail, res: true },
|
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.SyncEmail, res: true },
|
||||||
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.InviteTeam, res: true },
|
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.InviteTeam, res: true },
|
||||||
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.Completed, res: false },
|
{ loc: AppPath.SignInUp, isLogged: true, subscriptionStatus: SubscriptionStatus.Active, onboardingStatus: OnboardingStatus.Completed, res: true },
|
||||||
|
|
||||||
{ loc: AppPath.Invite, isLogged: true, subscriptionStatus: undefined, onboardingStatus: OnboardingStatus.PlanRequired, res: true },
|
{ loc: AppPath.Invite, isLogged: true, subscriptionStatus: undefined, onboardingStatus: OnboardingStatus.PlanRequired, res: true },
|
||||||
{ loc: AppPath.Invite, isLogged: true, subscriptionStatus: SubscriptionStatus.Canceled, onboardingStatus: OnboardingStatus.Completed, res: true },
|
{ loc: AppPath.Invite, isLogged: true, subscriptionStatus: SubscriptionStatus.Canceled, onboardingStatus: OnboardingStatus.Completed, res: true },
|
||||||
|
|||||||
@ -21,6 +21,10 @@ export const useShowAuthModal = () => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
return useMemo(() => {
|
return useMemo(() => {
|
||||||
|
if (isMatchingLocation(AppPath.SignInUp)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (isMatchingLocation(AppPath.Verify)) {
|
if (isMatchingLocation(AppPath.Verify)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -143,6 +143,9 @@ export default defineConfig(({ command, mode }) => {
|
|||||||
envPrefix: 'REACT_APP_',
|
envPrefix: 'REACT_APP_',
|
||||||
|
|
||||||
define: {
|
define: {
|
||||||
|
_env_: {
|
||||||
|
REACT_APP_SERVER_BASE_URL,
|
||||||
|
},
|
||||||
'process.env': {
|
'process.env': {
|
||||||
REACT_APP_SERVER_BASE_URL,
|
REACT_APP_SERVER_BASE_URL,
|
||||||
},
|
},
|
||||||
|
|||||||
@ -27,6 +27,7 @@ export class FileController {
|
|||||||
@Req() req: Request,
|
@Req() req: Request,
|
||||||
) {
|
) {
|
||||||
const folderPath = checkFilePath(params[0]);
|
const folderPath = checkFilePath(params[0]);
|
||||||
|
|
||||||
const filename = checkFilename(params['filename']);
|
const filename = checkFilename(params['filename']);
|
||||||
|
|
||||||
const workspaceId = (req as any)?.workspaceId;
|
const workspaceId = (req as any)?.workspaceId;
|
||||||
|
|||||||
@ -12,35 +12,35 @@ import { FileUpload, GraphQLUpload } from 'graphql-upload';
|
|||||||
|
|
||||||
import { FileFolder } from 'src/engine/core-modules/file/interfaces/file-folder.interface';
|
import { FileFolder } from 'src/engine/core-modules/file/interfaces/file-folder.interface';
|
||||||
|
|
||||||
|
import { LoginTokenService } from 'src/engine/core-modules/auth/token/services/login-token.service';
|
||||||
import { BillingSubscription } from 'src/engine/core-modules/billing/entities/billing-subscription.entity';
|
import { BillingSubscription } from 'src/engine/core-modules/billing/entities/billing-subscription.entity';
|
||||||
import { BillingSubscriptionService } from 'src/engine/core-modules/billing/services/billing-subscription.service';
|
import { BillingSubscriptionService } from 'src/engine/core-modules/billing/services/billing-subscription.service';
|
||||||
|
import { DomainManagerService } from 'src/engine/core-modules/domain-manager/service/domain-manager.service';
|
||||||
import { EnvironmentService } from 'src/engine/core-modules/environment/environment.service';
|
import { EnvironmentService } from 'src/engine/core-modules/environment/environment.service';
|
||||||
import { FileUploadService } from 'src/engine/core-modules/file/file-upload/services/file-upload.service';
|
import { FileUploadService } from 'src/engine/core-modules/file/file-upload/services/file-upload.service';
|
||||||
import { FileService } from 'src/engine/core-modules/file/services/file.service';
|
import { FileService } from 'src/engine/core-modules/file/services/file.service';
|
||||||
import { UserWorkspaceService } from 'src/engine/core-modules/user-workspace/user-workspace.service';
|
import { UserWorkspaceService } from 'src/engine/core-modules/user-workspace/user-workspace.service';
|
||||||
import { User } from 'src/engine/core-modules/user/user.entity';
|
import { User } from 'src/engine/core-modules/user/user.entity';
|
||||||
import { ActivateWorkspaceInput } from 'src/engine/core-modules/workspace/dtos/activate-workspace-input';
|
import { ActivateWorkspaceInput } from 'src/engine/core-modules/workspace/dtos/activate-workspace-input';
|
||||||
|
import { ActivateWorkspaceOutput } from 'src/engine/core-modules/workspace/dtos/activate-workspace-output';
|
||||||
|
import { PublicWorkspaceDataOutput } from 'src/engine/core-modules/workspace/dtos/public-workspace-data.output';
|
||||||
import { UpdateWorkspaceInput } from 'src/engine/core-modules/workspace/dtos/update-workspace-input';
|
import { UpdateWorkspaceInput } from 'src/engine/core-modules/workspace/dtos/update-workspace-input';
|
||||||
|
import { getAuthProvidersByWorkspace } from 'src/engine/core-modules/workspace/utils/getAuthProvidersByWorkspace';
|
||||||
|
import { workspaceGraphqlApiExceptionHandler } from 'src/engine/core-modules/workspace/utils/workspaceGraphqlApiExceptionHandler';
|
||||||
|
import {
|
||||||
|
WorkspaceException,
|
||||||
|
WorkspaceExceptionCode,
|
||||||
|
} from 'src/engine/core-modules/workspace/workspace.exception';
|
||||||
|
import { workspaceValidator } from 'src/engine/core-modules/workspace/workspace.validate';
|
||||||
import { AuthUser } from 'src/engine/decorators/auth/auth-user.decorator';
|
import { AuthUser } from 'src/engine/decorators/auth/auth-user.decorator';
|
||||||
import { AuthWorkspace } from 'src/engine/decorators/auth/auth-workspace.decorator';
|
import { AuthWorkspace } from 'src/engine/decorators/auth/auth-workspace.decorator';
|
||||||
|
import { OriginHeader } from 'src/engine/decorators/auth/origin-header.decorator';
|
||||||
import { DemoEnvGuard } from 'src/engine/guards/demo.env.guard';
|
import { DemoEnvGuard } from 'src/engine/guards/demo.env.guard';
|
||||||
import { UserAuthGuard } from 'src/engine/guards/user-auth.guard';
|
import { UserAuthGuard } from 'src/engine/guards/user-auth.guard';
|
||||||
import { WorkspaceAuthGuard } from 'src/engine/guards/workspace-auth.guard';
|
import { WorkspaceAuthGuard } from 'src/engine/guards/workspace-auth.guard';
|
||||||
import { assert } from 'src/utils/assert';
|
import { assert } from 'src/utils/assert';
|
||||||
import { isDefined } from 'src/utils/is-defined';
|
import { isDefined } from 'src/utils/is-defined';
|
||||||
import { streamToBuffer } from 'src/utils/stream-to-buffer';
|
import { streamToBuffer } from 'src/utils/stream-to-buffer';
|
||||||
import {
|
|
||||||
WorkspaceException,
|
|
||||||
WorkspaceExceptionCode,
|
|
||||||
} from 'src/engine/core-modules/workspace/workspace.exception';
|
|
||||||
import { PublicWorkspaceDataOutput } from 'src/engine/core-modules/workspace/dtos/public-workspace-data.output';
|
|
||||||
import { ActivateWorkspaceOutput } from 'src/engine/core-modules/workspace/dtos/activate-workspace-output';
|
|
||||||
import { OriginHeader } from 'src/engine/decorators/auth/origin-header.decorator';
|
|
||||||
import { workspaceValidator } from 'src/engine/core-modules/workspace/workspace.validate';
|
|
||||||
import { LoginTokenService } from 'src/engine/core-modules/auth/token/services/login-token.service';
|
|
||||||
import { DomainManagerService } from 'src/engine/core-modules/domain-manager/service/domain-manager.service';
|
|
||||||
import { getAuthProvidersByWorkspace } from 'src/engine/core-modules/workspace/utils/getAuthProvidersByWorkspace';
|
|
||||||
import { workspaceGraphqlApiExceptionHandler } from 'src/engine/core-modules/workspace/utils/workspaceGraphqlApiExceptionHandler';
|
|
||||||
|
|
||||||
import { Workspace } from './workspace.entity';
|
import { Workspace } from './workspace.entity';
|
||||||
|
|
||||||
@ -193,9 +193,23 @@ export class WorkspaceResolver {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
let workspaceLogoWithToken = '';
|
||||||
|
|
||||||
|
if (workspace.logo) {
|
||||||
|
try {
|
||||||
|
const workspaceLogoToken = await this.fileService.encodeFileToken({
|
||||||
|
workspaceId: workspace.id,
|
||||||
|
});
|
||||||
|
|
||||||
|
workspaceLogoWithToken = `${workspace.logo}?token=${workspaceLogoToken}`;
|
||||||
|
} catch (e) {
|
||||||
|
workspaceLogoWithToken = workspace.logo;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
id: workspace.id,
|
id: workspace.id,
|
||||||
logo: workspace.logo,
|
logo: workspaceLogoWithToken,
|
||||||
displayName: workspace.displayName,
|
displayName: workspace.displayName,
|
||||||
subdomain: workspace.subdomain,
|
subdomain: workspace.subdomain,
|
||||||
authProviders: getAuthProvidersByWorkspace(workspace),
|
authProviders: getAuthProvidersByWorkspace(workspace),
|
||||||
|
|||||||
Reference in New Issue
Block a user