platform/models/request/src/index.ts
Kristina 734177f3ea
UBERF-5811: rework backlinks (#4887)
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
2024-03-07 13:53:07 +07:00

165 lines
5.1 KiB
TypeScript

//
// Copyright © 2022 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 activity from '@hcengineering/activity'
import type { PersonAccount } from '@hcengineering/contact'
import contact from '@hcengineering/contact'
import { type Domain, IndexKind, type Ref, type Tx } from '@hcengineering/core'
import {
ArrOf,
type Builder,
Collection,
Index,
Mixin,
Model,
Prop,
ReadOnly,
TypeRef,
TypeString,
UX
} from '@hcengineering/model'
import chunter, { TChatMessage } from '@hcengineering/model-chunter'
import core, { TAttachedDoc, TClass } from '@hcengineering/model-core'
import { generateClassNotificationTypes } from '@hcengineering/model-notification'
import view from '@hcengineering/model-view'
import notification from '@hcengineering/notification'
import {
type Request,
type RequestDecisionComment,
type RequestPresenter,
type RequestStatus
} from '@hcengineering/request'
import { type AnyComponent } from '@hcengineering/ui/src/types'
import request from './plugin'
export { requestId } from '@hcengineering/request'
export { default } from './plugin'
export const DOMAIN_REQUEST = 'request' as Domain
@Model(request.class.Request, core.class.AttachedDoc, DOMAIN_REQUEST)
@UX(request.string.Request, request.icon.Requests)
export class TRequest extends TAttachedDoc implements Request {
@Prop(ArrOf(TypeRef(contact.class.PersonAccount)), request.string.Requested)
@Index(IndexKind.Indexed)
requested!: Ref<PersonAccount>[]
@Prop(ArrOf(TypeRef(contact.class.PersonAccount)), request.string.Approved)
@ReadOnly()
approved!: Ref<PersonAccount>[]
requiredApprovesCount!: number
@Prop(TypeString(), request.string.Status)
@Index(IndexKind.Indexed)
status!: RequestStatus
tx!: Tx
@Prop(TypeRef(contact.class.PersonAccount), request.string.Rejected)
@ReadOnly()
rejected?: Ref<PersonAccount>
@Prop(Collection(chunter.class.ChatMessage), chunter.string.Comments)
comments?: number
}
@Mixin(request.mixin.RequestDecisionComment, chunter.class.ChatMessage)
export class TRequestDecisionComment extends TChatMessage implements RequestDecisionComment {}
@Mixin(request.mixin.RequestPresenter, core.class.Class)
export class TRequestPresenter extends TClass implements RequestPresenter {
presenter!: AnyComponent
}
export function createModel (builder: Builder): void {
builder.createModel(TRequest, TRequestDecisionComment, TRequestPresenter)
builder.mixin(request.class.Request, core.class.Class, activity.mixin.IgnoreActivity, {})
builder.mixin(request.class.Request, core.class.Class, view.mixin.ObjectEditor, {
editor: request.component.EditRequest
})
builder.mixin(request.class.Request, core.class.Class, view.mixin.ObjectPresenter, {
presenter: request.component.RequestPresenter
})
builder.mixin(request.class.Request, core.class.Class, notification.mixin.NotificationObjectPresenter, {
presenter: request.component.NotificationRequestView
})
builder.mixin(request.class.Request, core.class.Class, request.mixin.RequestPresenter, {
presenter: request.component.RequestView
})
builder.mixin(request.class.Request, core.class.Class, notification.mixin.ClassCollaborators, {
fields: ['requested', 'createdBy']
})
builder.createDoc(
notification.class.NotificationGroup,
core.space.Model,
{
label: request.string.Requests,
icon: request.icon.Requests,
objectClass: request.class.Request
},
request.ids.RequestNotificationGroup
)
builder.createDoc(
notification.class.NotificationType,
core.space.Model,
{
hidden: false,
objectClass: request.class.Request,
txClasses: [core.class.TxCreateDoc, core.class.TxUpdateDoc],
field: 'requested',
generated: false,
group: request.ids.RequestNotificationGroup,
label: request.string.Request,
allowedForAuthor: true,
providers: {
[notification.providers.PlatformNotification]: true
}
},
request.ids.CreateRequestNotification
)
generateClassNotificationTypes(
builder,
request.class.Request,
request.ids.RequestNotificationGroup,
['requested'],
['comments', 'approved', 'rejected', 'status']
)
builder.createDoc(
activity.class.TxViewlet,
core.space.Model,
{
objectClass: request.class.Request,
icon: request.icon.Requests,
txClass: core.class.TxCreateDoc,
component: request.activity.TxCreateRequest,
label: request.string.CreatedRequest,
labelComponent: request.activity.RequestLabel,
display: 'emphasized'
},
request.ids.TxRequestCreate
)
}