7a1e699fc8
# Introduction related to https://github.com/twentyhq/core-team-issues/issues/1833 In this PR we're starting the sync-metadata and standardIds deprecation by introducing `twenty-standard` application that will regroup every standard object such as company and opportunities. But also the `custom-workspace-application` which is an app created at the same time as a workspace and that will regroup everything configure within the workspace ( custom objects fields etc ) ## What's done On both new workspace and seeded workspace creation: - Creating a custom workspace app - Creating a twenty standard app - Refactored the seed core schema and workspace creation to be run within a transaction in order to handle circular dependency foreignkey requirements ( which is deferred for app toward workspace ) - Updated workspace entity to have a custom workspace relation ( nullable for the moment until we implem an upgrade command to handle retro comp ) - Integration testing on user, workspace creation deletion and expected default apps creation - ~~Soft deleted user on `deleteUser`~~ Done by marie and rebased on it ## What's next - Update seeder to propagate the `twenty-standard` workspace `applicationId` to every standard synchronized entities ( cheap and fast iteration through the about to be deprecated sync-metadata as an easy way to synchronize standards metadata entities ). - Update seeder to propagate the `custom-workspace-application` workspace `applicationId` to anything custom ( `pets` and `rockets` ) - Prepend `custom-workspace-application` `applicationId` to every metadata API operations ( create a specific cache etc ) - Upgrade command on all existing workspace to create a custom app and associate its applicationId to any existing custom entities - Make `universalIdentifier` and `applicationId` required for any syncable entity
116 lines
4.7 KiB
TypeScript
116 lines
4.7 KiB
TypeScript
import { msg } from '@lingui/core/macro';
|
|
import { FieldMetadataType, RelationOnDeleteAction } from 'twenty-shared/types';
|
|
|
|
import { RelationType } from 'src/engine/metadata-modules/field-metadata/interfaces/relation-type.interface';
|
|
import { Relation } from 'src/engine/workspace-manager/workspace-sync-metadata/interfaces/relation.interface';
|
|
|
|
import { BaseWorkspaceEntity } from 'src/engine/twenty-orm/base.workspace-entity';
|
|
import { WorkspaceEntity } from 'src/engine/twenty-orm/decorators/workspace-entity.decorator';
|
|
import { WorkspaceField } from 'src/engine/twenty-orm/decorators/workspace-field.decorator';
|
|
import { WorkspaceIsNotAuditLogged } from 'src/engine/twenty-orm/decorators/workspace-is-not-audit-logged.decorator';
|
|
import { WorkspaceIsNullable } from 'src/engine/twenty-orm/decorators/workspace-is-nullable.decorator';
|
|
import { WorkspaceIsSystem } from 'src/engine/twenty-orm/decorators/workspace-is-system.decorator';
|
|
import { WorkspaceJoinColumn } from 'src/engine/twenty-orm/decorators/workspace-join-column.decorator';
|
|
import { WorkspaceRelation } from 'src/engine/twenty-orm/decorators/workspace-relation.decorator';
|
|
import { MESSAGE_PARTICIPANT_STANDARD_FIELD_IDS } from 'src/engine/workspace-manager/workspace-sync-metadata/constants/standard-field-ids';
|
|
import { STANDARD_OBJECT_ICONS } from 'src/engine/workspace-manager/workspace-sync-metadata/constants/standard-object-icons';
|
|
import { STANDARD_OBJECT_IDS } from 'src/engine/workspace-manager/workspace-sync-metadata/constants/standard-object-ids';
|
|
import { MessageWorkspaceEntity } from 'src/modules/messaging/common/standard-objects/message.workspace-entity';
|
|
import { PersonWorkspaceEntity } from 'src/modules/person/standard-objects/person.workspace-entity';
|
|
import { WorkspaceMemberWorkspaceEntity } from 'src/modules/workspace-member/standard-objects/workspace-member.workspace-entity';
|
|
|
|
@WorkspaceEntity({
|
|
standardId: STANDARD_OBJECT_IDS.messageParticipant,
|
|
|
|
namePlural: 'messageParticipants',
|
|
labelSingular: msg`Message Participant`,
|
|
labelPlural: msg`Message Participants`,
|
|
description: msg`Message Participants`,
|
|
icon: STANDARD_OBJECT_ICONS.messageParticipant,
|
|
labelIdentifierStandardId: MESSAGE_PARTICIPANT_STANDARD_FIELD_IDS.handle,
|
|
})
|
|
@WorkspaceIsNotAuditLogged()
|
|
@WorkspaceIsSystem()
|
|
export class MessageParticipantWorkspaceEntity extends BaseWorkspaceEntity {
|
|
@WorkspaceField({
|
|
standardId: MESSAGE_PARTICIPANT_STANDARD_FIELD_IDS.role,
|
|
type: FieldMetadataType.SELECT,
|
|
label: msg`Role`,
|
|
description: msg`Role`,
|
|
icon: 'IconAt',
|
|
options: [
|
|
{ value: 'from', label: 'From', position: 0, color: 'green' },
|
|
{ value: 'to', label: 'To', position: 1, color: 'blue' },
|
|
{ value: 'cc', label: 'Cc', position: 2, color: 'orange' },
|
|
{ value: 'bcc', label: 'Bcc', position: 3, color: 'red' },
|
|
],
|
|
defaultValue: "'from'",
|
|
})
|
|
role: string;
|
|
|
|
@WorkspaceField({
|
|
standardId: MESSAGE_PARTICIPANT_STANDARD_FIELD_IDS.handle,
|
|
type: FieldMetadataType.TEXT,
|
|
label: msg`Handle`,
|
|
description: msg`Handle`,
|
|
icon: 'IconAt',
|
|
})
|
|
handle: string;
|
|
|
|
@WorkspaceField({
|
|
standardId: MESSAGE_PARTICIPANT_STANDARD_FIELD_IDS.displayName,
|
|
type: FieldMetadataType.TEXT,
|
|
label: msg`Display Name`,
|
|
description: msg`Display Name`,
|
|
icon: 'IconUser',
|
|
})
|
|
displayName: string;
|
|
|
|
@WorkspaceRelation({
|
|
standardId: MESSAGE_PARTICIPANT_STANDARD_FIELD_IDS.message,
|
|
type: RelationType.MANY_TO_ONE,
|
|
label: msg`Message`,
|
|
description: msg`Message`,
|
|
icon: 'IconMessage',
|
|
inverseSideTarget: () => MessageWorkspaceEntity,
|
|
inverseSideFieldKey: 'messageParticipants',
|
|
onDelete: RelationOnDeleteAction.CASCADE,
|
|
})
|
|
message: Relation<MessageWorkspaceEntity>;
|
|
|
|
@WorkspaceJoinColumn('message')
|
|
messageId: string;
|
|
|
|
@WorkspaceRelation({
|
|
standardId: MESSAGE_PARTICIPANT_STANDARD_FIELD_IDS.person,
|
|
type: RelationType.MANY_TO_ONE,
|
|
label: msg`Person`,
|
|
description: msg`Person`,
|
|
icon: 'IconUser',
|
|
inverseSideTarget: () => PersonWorkspaceEntity,
|
|
inverseSideFieldKey: 'messageParticipants',
|
|
onDelete: RelationOnDeleteAction.SET_NULL,
|
|
})
|
|
@WorkspaceIsNullable()
|
|
person: Relation<PersonWorkspaceEntity> | null;
|
|
|
|
@WorkspaceJoinColumn('person')
|
|
personId: string | null;
|
|
|
|
@WorkspaceRelation({
|
|
standardId: MESSAGE_PARTICIPANT_STANDARD_FIELD_IDS.workspaceMember,
|
|
type: RelationType.MANY_TO_ONE,
|
|
label: msg`Workspace Member`,
|
|
description: msg`Workspace member`,
|
|
icon: 'IconCircleUser',
|
|
inverseSideTarget: () => WorkspaceMemberWorkspaceEntity,
|
|
inverseSideFieldKey: 'messageParticipants',
|
|
onDelete: RelationOnDeleteAction.SET_NULL,
|
|
})
|
|
@WorkspaceIsNullable()
|
|
workspaceMember: Relation<WorkspaceMemberWorkspaceEntity> | null;
|
|
|
|
@WorkspaceJoinColumn('workspaceMember')
|
|
workspaceMemberId: string | null;
|
|
}
|