* feat: wip server folder structure * fix: merge * fix: wrong merge * fix: remove unused file * fix: comment * fix: lint * fix: merge * fix: remove console.log * fix: metadata graphql arguments broken
89 lines
3.4 KiB
TypeScript
89 lines
3.4 KiB
TypeScript
import { FieldMetadataType } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity';
|
|
import { messageParticipantStandardFieldIds } from 'src/engine/workspace-manager/workspace-sync-metadata/constants/standard-field-ids';
|
|
import { standardObjectIds } from 'src/engine/workspace-manager/workspace-sync-metadata/constants/standard-object-ids';
|
|
import { FieldMetadata } from 'src/engine/workspace-manager/workspace-sync-metadata/decorators/field-metadata.decorator';
|
|
import { IsNullable } from 'src/engine/workspace-manager/workspace-sync-metadata/decorators/is-nullable.decorator';
|
|
import { IsSystem } from 'src/engine/workspace-manager/workspace-sync-metadata/decorators/is-system.decorator';
|
|
import { ObjectMetadata } from 'src/engine/workspace-manager/workspace-sync-metadata/decorators/object-metadata.decorator';
|
|
import { BaseObjectMetadata } from 'src/engine/workspace-manager/workspace-sync-metadata/standard-objects/base.object-metadata';
|
|
import { MessageObjectMetadata } from 'src/modules/messaging/standard-objects/message.object-metadata';
|
|
import { PersonObjectMetadata } from 'src/modules/person/standard-objects/person.object-metadata';
|
|
import { WorkspaceMemberObjectMetadata } from 'src/modules/workspace-member/standard-objects/workspace-member.object-metadata';
|
|
|
|
@ObjectMetadata({
|
|
standardId: standardObjectIds.messageParticipant,
|
|
namePlural: 'messageParticipants',
|
|
labelSingular: 'Message Participant',
|
|
labelPlural: 'Message Participants',
|
|
description: 'Message Participants',
|
|
icon: 'IconUserCircle',
|
|
})
|
|
@IsSystem()
|
|
export class MessageParticipantObjectMetadata extends BaseObjectMetadata {
|
|
@FieldMetadata({
|
|
standardId: messageParticipantStandardFieldIds.message,
|
|
type: FieldMetadataType.RELATION,
|
|
label: 'Message',
|
|
description: 'Message',
|
|
icon: 'IconMessage',
|
|
joinColumn: 'messageId',
|
|
})
|
|
message: MessageObjectMetadata;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageParticipantStandardFieldIds.role,
|
|
type: FieldMetadataType.SELECT,
|
|
label: 'Role',
|
|
description: '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: { value: 'from' },
|
|
})
|
|
role: string;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageParticipantStandardFieldIds.handle,
|
|
type: FieldMetadataType.TEXT,
|
|
label: 'Handle',
|
|
description: 'Handle',
|
|
icon: 'IconAt',
|
|
})
|
|
handle: string;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageParticipantStandardFieldIds.displayName,
|
|
type: FieldMetadataType.TEXT,
|
|
label: 'Display Name',
|
|
description: 'Display Name',
|
|
icon: 'IconUser',
|
|
})
|
|
displayName: string;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageParticipantStandardFieldIds.person,
|
|
type: FieldMetadataType.RELATION,
|
|
label: 'Person',
|
|
description: 'Person',
|
|
icon: 'IconUser',
|
|
joinColumn: 'personId',
|
|
})
|
|
@IsNullable()
|
|
person: PersonObjectMetadata;
|
|
|
|
@FieldMetadata({
|
|
standardId: messageParticipantStandardFieldIds.workspaceMember,
|
|
type: FieldMetadataType.RELATION,
|
|
label: 'Workspace Member',
|
|
description: 'Workspace member',
|
|
icon: 'IconCircleUser',
|
|
joinColumn: 'workspaceMemberId',
|
|
})
|
|
@IsNullable()
|
|
workspaceMember: WorkspaceMemberObjectMetadata;
|
|
}
|