mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-24 01:07:50 +00:00
157 lines
4.3 KiB
TypeScript
157 lines
4.3 KiB
TypeScript
//
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
// Copyright © 2021 Hardcore Engineering Inc.
|
|
//
|
|
// 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 {
|
|
ArrOf,
|
|
type Builder,
|
|
Collection,
|
|
Hidden,
|
|
Mixin,
|
|
Model,
|
|
Prop,
|
|
ReadOnly,
|
|
TypeRef,
|
|
TypeString,
|
|
UX
|
|
} from '@hcengineering/model'
|
|
import core, { TAttachedDoc, TDoc } from '@hcengineering/model-core'
|
|
import bitrix from './plugin'
|
|
|
|
import {
|
|
type BitrixEntityMapping,
|
|
type BitrixFieldMapping,
|
|
type BitrixSyncDoc,
|
|
type Fields
|
|
} from '@hcengineering/bitrix'
|
|
import {
|
|
type AnyAttribute,
|
|
type Class,
|
|
type Mixin as CoreMixin,
|
|
type Doc,
|
|
type Domain,
|
|
type Ref
|
|
} from '@hcengineering/core'
|
|
|
|
import view, { createAction } from '@hcengineering/model-view'
|
|
|
|
import { getEmbeddedLabel } from '@hcengineering/platform'
|
|
import setting from '@hcengineering/setting'
|
|
|
|
export { bitrixId } from '@hcengineering/bitrix'
|
|
export { bitrixOperation } from './migration'
|
|
export { default } from './plugin'
|
|
|
|
const DOMAIN_BITRIX = 'bitrix' as Domain
|
|
|
|
@Mixin(bitrix.mixin.BitrixSyncDoc, core.class.Doc)
|
|
@UX(getEmbeddedLabel('Bitrix'))
|
|
export class TBitrixSyncDoc extends TDoc implements BitrixSyncDoc {
|
|
type!: string
|
|
|
|
@Prop(TypeString(), getEmbeddedLabel('BitrixId'))
|
|
@ReadOnly()
|
|
@Hidden()
|
|
bitrixId!: string
|
|
}
|
|
|
|
@Model(bitrix.class.EntityMapping, core.class.Doc, DOMAIN_BITRIX)
|
|
export class TBitrixEntityMapping extends TDoc implements BitrixEntityMapping {
|
|
@Prop(TypeRef(core.class.Attribute), core.string.ClassPropertyLabel)
|
|
ofClass!: Ref<Class<Doc>>
|
|
|
|
type!: string
|
|
|
|
@Prop(Collection(bitrix.class.FieldMapping), bitrix.string.FieldMapping)
|
|
fields!: number
|
|
|
|
bitrixFields!: Fields
|
|
comments!: boolean
|
|
activity!: boolean
|
|
attachments!: boolean
|
|
|
|
@Prop(ArrOf(TypeRef(core.class.Mixin)), core.string.Class)
|
|
// If specified, will include this mixins in any case.
|
|
mixins!: Ref<CoreMixin<Doc>>[]
|
|
}
|
|
|
|
@Model(bitrix.class.FieldMapping, core.class.Doc, DOMAIN_BITRIX)
|
|
export class TBitrixFieldMapping extends TAttachedDoc implements BitrixFieldMapping {
|
|
@Prop(TypeRef(core.class.Attribute), core.string.ClassPropertyLabel)
|
|
ofClass!: Ref<Class<Doc>>
|
|
|
|
@Prop(TypeString(), core.string.ClassPropertyLabel)
|
|
attributeName!: Ref<AnyAttribute>
|
|
|
|
bitrixTitle!: string
|
|
bitrixType!: string
|
|
operation!: any
|
|
}
|
|
|
|
export function createModel (builder: Builder): void {
|
|
builder.createModel(TBitrixEntityMapping, TBitrixFieldMapping, TBitrixSyncDoc)
|
|
|
|
builder.createDoc(
|
|
setting.class.IntegrationType,
|
|
core.space.Model,
|
|
{
|
|
label: bitrix.string.Bitrix,
|
|
description: bitrix.string.BitrixDesc,
|
|
icon: bitrix.component.BitrixIcon,
|
|
allowMultiple: false,
|
|
createComponent: bitrix.component.BitrixConnect,
|
|
configureComponent: bitrix.component.BitrixConfigure
|
|
},
|
|
bitrix.integrationType.Bitrix
|
|
)
|
|
|
|
createAction(
|
|
builder,
|
|
{
|
|
action: view.actionImpl.ShowPopup,
|
|
actionProps: {
|
|
component: bitrix.component.BitrixImport
|
|
},
|
|
label: bitrix.string.BitrixImport,
|
|
icon: bitrix.icon.Bitrix,
|
|
input: 'none',
|
|
category: view.category.General,
|
|
target: core.class.Doc,
|
|
context: { mode: ['workbench', 'browser', 'editor', 'panel', 'popup'], group: 'create' }
|
|
},
|
|
bitrix.action.BitrixImport
|
|
)
|
|
builder.createDoc(core.class.DomainIndexConfiguration, core.space.Model, {
|
|
domain: DOMAIN_BITRIX,
|
|
disabled: [
|
|
{ _id: 1 },
|
|
{ _class: 1 },
|
|
{ space: 1 },
|
|
{ modifiedBy: 1 },
|
|
{ createdBy: 1 },
|
|
{ createdOn: -1 },
|
|
{ modifiedOn: 1 }
|
|
]
|
|
})
|
|
builder.mixin(bitrix.class.FieldMapping, core.class.Class, core.mixin.IndexConfiguration, {
|
|
indexes: [],
|
|
searchDisabled: true
|
|
})
|
|
builder.mixin(bitrix.class.EntityMapping, core.class.Class, core.mixin.IndexConfiguration, {
|
|
indexes: [],
|
|
searchDisabled: true
|
|
})
|
|
}
|