mirror of
https://github.com/hcengineering/platform.git
synced 2025-06-04 23:04:47 +00:00
345 lines
10 KiB
TypeScript
345 lines
10 KiB
TypeScript
//
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
//
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License. You may
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
//
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import type {
|
|
Channel,
|
|
ChannelProvider,
|
|
Contact,
|
|
Employee,
|
|
EmployeeAccount,
|
|
Organization,
|
|
Organizations,
|
|
Person,
|
|
Persons,
|
|
Status
|
|
} from '@anticrm/contact'
|
|
import type { Class, Domain, Ref, Timestamp } from '@anticrm/core'
|
|
import { DOMAIN_MODEL, IndexKind } from '@anticrm/core'
|
|
import { Builder, Collection, Index, Model, Prop, TypeRef, TypeString, TypeTimestamp, UX } from '@anticrm/model'
|
|
import attachment from '@anticrm/model-attachment'
|
|
import chunter from '@anticrm/model-chunter'
|
|
import core, { TAccount, TAttachedDoc, TDoc, TSpace } from '@anticrm/model-core'
|
|
import presentation from '@anticrm/model-presentation'
|
|
import view, { actionTemplates, createAction } from '@anticrm/model-view'
|
|
import workbench from '@anticrm/model-workbench'
|
|
import type { Asset, IntlString } from '@anticrm/platform'
|
|
import contact from './plugin'
|
|
import setting from '@anticrm/setting'
|
|
|
|
export const DOMAIN_CONTACT = 'contact' as Domain
|
|
export const DOMAIN_CHANNEL = 'channel' as Domain
|
|
|
|
@Model(contact.class.ChannelProvider, core.class.Doc, DOMAIN_MODEL)
|
|
export class TChannelProvider extends TDoc implements ChannelProvider {
|
|
label!: IntlString
|
|
icon?: Asset
|
|
placeholder!: IntlString
|
|
}
|
|
|
|
@Model(contact.class.Contact, core.class.Doc, DOMAIN_CONTACT)
|
|
@UX(contact.string.Contact, contact.icon.Person, undefined, 'name')
|
|
export class TContact extends TDoc implements Contact {
|
|
@Prop(TypeString(), contact.string.Name)
|
|
@Index(IndexKind.FullText)
|
|
name!: string
|
|
|
|
avatar?: string | null
|
|
|
|
@Prop(Collection(contact.class.Channel), contact.string.ContactInfo)
|
|
channels?: number
|
|
|
|
@Prop(Collection(attachment.class.Attachment), attachment.string.Attachments, undefined, attachment.string.Files)
|
|
attachments?: number
|
|
|
|
@Prop(Collection(chunter.class.Comment), chunter.string.Comments)
|
|
comments?: number
|
|
|
|
@Prop(TypeString(), contact.string.Location)
|
|
@Index(IndexKind.FullText)
|
|
city!: string
|
|
|
|
@Prop(TypeRef(core.class.Class), core.string.ClassLabel)
|
|
declare _class: Ref<Class<this>>
|
|
}
|
|
|
|
@Model(contact.class.Channel, core.class.AttachedDoc, DOMAIN_CHANNEL)
|
|
@UX(contact.string.Channel, contact.icon.Person, undefined, 'lastMessage')
|
|
export class TChannel extends TAttachedDoc implements Channel {
|
|
@Prop(TypeRef(contact.class.ChannelProvider), contact.string.ChannelProvider)
|
|
provider!: Ref<ChannelProvider>
|
|
|
|
@Prop(TypeString(), contact.string.Value)
|
|
@Index(IndexKind.FullText)
|
|
value!: string
|
|
|
|
items?: number
|
|
|
|
@Prop(TypeTimestamp(), core.string.Modified)
|
|
lastMessage?: Timestamp
|
|
}
|
|
|
|
@Model(contact.class.Person, contact.class.Contact)
|
|
@UX(contact.string.Person, contact.icon.Person, undefined, 'name')
|
|
export class TPerson extends TContact implements Person {}
|
|
|
|
@Model(contact.class.Organization, contact.class.Contact)
|
|
@UX(contact.string.Organization, contact.icon.Company, undefined, 'name')
|
|
export class TOrganization extends TContact implements Organization {}
|
|
|
|
@Model(contact.class.Status, core.class.AttachedDoc, DOMAIN_CONTACT)
|
|
export class TStatus extends TAttachedDoc implements Status {
|
|
attachedTo!: Ref<Employee>
|
|
attachedToClass!: Ref<Class<Employee>>
|
|
name!: string
|
|
dueDate!: Timestamp
|
|
}
|
|
|
|
@Model(contact.class.Employee, contact.class.Person)
|
|
@UX(contact.string.Employee, contact.icon.Person, undefined, 'name')
|
|
export class TEmployee extends TPerson implements Employee {
|
|
@Prop(Collection(contact.class.Status), contact.string.Status)
|
|
statuses?: number
|
|
}
|
|
|
|
@Model(contact.class.EmployeeAccount, core.class.Account)
|
|
export class TEmployeeAccount extends TAccount implements EmployeeAccount {
|
|
employee!: Ref<Employee>
|
|
name!: string
|
|
}
|
|
|
|
@Model(contact.class.Organizations, core.class.Space)
|
|
@UX(contact.string.OrganizationsFolder, contact.icon.Company)
|
|
export class TOrganizations extends TSpace implements Organizations {}
|
|
|
|
@Model(contact.class.Persons, core.class.Space)
|
|
@UX(contact.string.PersonsFolder, contact.icon.Person)
|
|
export class TPersons extends TSpace implements Persons {}
|
|
|
|
export function createModel (builder: Builder): void {
|
|
builder.createModel(
|
|
TChannelProvider,
|
|
TContact,
|
|
TPerson,
|
|
TPersons,
|
|
TOrganization,
|
|
TOrganizations,
|
|
TEmployee,
|
|
TEmployeeAccount,
|
|
TChannel,
|
|
TStatus
|
|
)
|
|
|
|
builder.mixin(contact.class.Person, core.class.Class, view.mixin.ObjectFactory, {
|
|
component: contact.component.CreatePerson
|
|
})
|
|
|
|
builder.mixin(contact.class.Organization, core.class.Class, view.mixin.ObjectFactory, {
|
|
component: contact.component.CreateOrganization
|
|
})
|
|
|
|
builder.createDoc(
|
|
workbench.class.Application,
|
|
core.space.Model,
|
|
{
|
|
label: contact.string.Contacts,
|
|
icon: contact.icon.Person,
|
|
hidden: false,
|
|
component: contact.component.Contacts
|
|
},
|
|
contact.app.Contacts
|
|
)
|
|
|
|
builder.createDoc(view.class.Viewlet, core.space.Model, {
|
|
attachTo: contact.class.Contact,
|
|
descriptor: view.viewlet.Table,
|
|
config: [
|
|
'',
|
|
'$lookup._class',
|
|
'city',
|
|
'attachments',
|
|
'modifiedOn',
|
|
{ key: '', presenter: view.component.RolePresenter, label: view.string.Role },
|
|
'$lookup.channels'
|
|
],
|
|
hiddenKeys: ['name']
|
|
})
|
|
|
|
builder.mixin(contact.class.Person, core.class.Class, view.mixin.ObjectEditor, {
|
|
editor: contact.component.EditPerson
|
|
})
|
|
|
|
builder.mixin(contact.class.Employee, core.class.Class, view.mixin.ObjectEditor, {
|
|
editor: contact.component.EditPerson
|
|
})
|
|
|
|
builder.mixin(contact.class.Organization, core.class.Class, view.mixin.ObjectEditor, {
|
|
editor: contact.component.EditOrganization
|
|
})
|
|
|
|
builder.mixin(contact.class.Organization, core.class.Class, view.mixin.AttributeEditor, {
|
|
editor: contact.component.OrganizationEditor
|
|
})
|
|
|
|
builder.mixin(contact.class.Person, core.class.Class, view.mixin.AttributeEditor, {
|
|
editor: contact.component.PersonEditor
|
|
})
|
|
|
|
builder.mixin(contact.class.Employee, core.class.Class, view.mixin.AttributeEditor, {
|
|
editor: contact.component.PersonEditor
|
|
})
|
|
|
|
builder.mixin(contact.class.Channel, core.class.Class, view.mixin.AttributePresenter, {
|
|
presenter: contact.component.ChannelsPresenter
|
|
})
|
|
|
|
builder.createDoc(
|
|
contact.class.ChannelProvider,
|
|
core.space.Model,
|
|
{
|
|
label: contact.string.Phone,
|
|
icon: contact.icon.Phone,
|
|
placeholder: contact.string.PhonePlaceholder
|
|
},
|
|
contact.channelProvider.Phone
|
|
)
|
|
|
|
builder.createDoc(
|
|
contact.class.ChannelProvider,
|
|
core.space.Model,
|
|
{
|
|
label: contact.string.LinkedIn,
|
|
icon: contact.icon.LinkedIn,
|
|
placeholder: contact.string.LinkedInPlaceholder
|
|
},
|
|
contact.channelProvider.LinkedIn
|
|
)
|
|
|
|
builder.createDoc(
|
|
contact.class.ChannelProvider,
|
|
core.space.Model,
|
|
{
|
|
label: contact.string.Twitter,
|
|
icon: contact.icon.Twitter,
|
|
placeholder: contact.string.AtPlaceHolder
|
|
},
|
|
contact.channelProvider.Twitter
|
|
)
|
|
|
|
builder.createDoc(
|
|
contact.class.ChannelProvider,
|
|
core.space.Model,
|
|
{
|
|
label: contact.string.GitHub,
|
|
icon: contact.icon.GitHub,
|
|
placeholder: contact.string.AtPlaceHolder
|
|
},
|
|
contact.channelProvider.GitHub
|
|
)
|
|
|
|
builder.createDoc(
|
|
contact.class.ChannelProvider,
|
|
core.space.Model,
|
|
{
|
|
label: contact.string.Facebook,
|
|
icon: contact.icon.Facebook,
|
|
placeholder: contact.string.FacebookPlaceholder
|
|
},
|
|
contact.channelProvider.Facebook
|
|
)
|
|
|
|
builder.createDoc(
|
|
contact.class.ChannelProvider,
|
|
core.space.Model,
|
|
{
|
|
label: contact.string.Homepage,
|
|
icon: contact.icon.Homepage,
|
|
placeholder: contact.string.HomepagePlaceholder
|
|
},
|
|
contact.channelProvider.Homepage
|
|
)
|
|
|
|
builder.mixin(contact.class.Person, core.class.Class, view.mixin.AttributePresenter, {
|
|
presenter: contact.component.PersonPresenter
|
|
})
|
|
|
|
builder.mixin(core.class.Account, core.class.Class, view.mixin.AttributePresenter, {
|
|
presenter: contact.component.EmployeeAccountPresenter
|
|
})
|
|
|
|
builder.mixin(contact.class.Organization, core.class.Class, view.mixin.AttributePresenter, {
|
|
presenter: contact.component.OrganizationPresenter
|
|
})
|
|
|
|
builder.mixin(contact.class.Contact, core.class.Class, view.mixin.AttributePresenter, {
|
|
presenter: contact.component.ContactPresenter
|
|
})
|
|
|
|
builder.mixin(contact.class.Employee, core.class.Class, view.mixin.AttributePresenter, {
|
|
presenter: contact.component.EmployeePresenter
|
|
})
|
|
|
|
builder.mixin(contact.class.Employee, core.class.Class, view.mixin.IgnoreActions, {
|
|
actions: [view.action.Delete]
|
|
})
|
|
|
|
builder.mixin(contact.class.Contact, core.class.Class, view.mixin.ClassFilters, {
|
|
filters: ['_class', 'city', 'modifiedOn']
|
|
})
|
|
|
|
builder.mixin(contact.class.Contact, core.class.Class, setting.mixin.Editable, {})
|
|
|
|
builder.createDoc(
|
|
presentation.class.ObjectSearchCategory,
|
|
core.space.Model,
|
|
{
|
|
icon: contact.icon.Person,
|
|
label: contact.string.SearchEmployee,
|
|
query: contact.completion.EmployeeQuery
|
|
},
|
|
contact.completion.EmployeeCategory
|
|
)
|
|
|
|
builder.createDoc(
|
|
presentation.class.ObjectSearchCategory,
|
|
core.space.Model,
|
|
{
|
|
icon: contact.icon.Person,
|
|
label: contact.string.SearchPerson,
|
|
query: contact.completion.PersonQuery
|
|
},
|
|
contact.completion.PersonCategory
|
|
)
|
|
|
|
builder.createDoc(
|
|
presentation.class.ObjectSearchCategory,
|
|
core.space.Model,
|
|
{
|
|
icon: contact.icon.Company,
|
|
label: contact.string.SearchOrganization,
|
|
query: contact.completion.OrganizationQuery
|
|
},
|
|
contact.completion.OrganizationCategory
|
|
)
|
|
|
|
createAction(builder, {
|
|
...actionTemplates.open,
|
|
target: contact.class.Contact,
|
|
context: { mode: ['browser', 'context'] }
|
|
})
|
|
}
|
|
|
|
export { contactOperation } from './migration'
|
|
export { contact as default }
|