platform/plugins/request/src/index.ts
Denis Bykhov f24e3e6743
Requests inbox ()
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-05-03 13:32:23 +06:00

87 lines
2.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 { EmployeeAccount } from '@hcengineering/contact'
import type { AttachedDoc, Class, Doc, Mixin, Ref, TxCUD } from '@hcengineering/core'
import type { Asset, IntlString, Plugin } from '@hcengineering/platform'
import { plugin } from '@hcengineering/platform'
import { AnyComponent } from '@hcengineering/ui'
import { Comment } from '@hcengineering/chunter'
/**
* @public
*/
export interface Request extends AttachedDoc {
requested: Ref<EmployeeAccount>[]
approved: Ref<EmployeeAccount>[]
requiredApprovesCount: number
rejected?: Ref<EmployeeAccount>
status: RequestStatus
tx: TxCUD<Doc>
comments?: number
}
/**
* @public
*/
export interface RequestDecisionComment extends Comment {}
/**
* @public
*/
export enum RequestStatus {
Active = 'Active',
Completed = 'Completed',
Rejected = 'Rejected',
Cancelled = 'Cancelled'
}
/**
* @public
*/
export interface RequestPresenter extends Class<Doc> {
presenter: AnyComponent
}
/**
* @public
*/
export const requestId = 'request' as Plugin
/**
* @public
*/
const request = plugin(requestId, {
class: {
Request: '' as Ref<Class<Request>>
},
mixin: {
RequestDecisionComment: '' as Ref<Mixin<RequestDecisionComment>>,
RequestPresenter: '' as Ref<Mixin<RequestPresenter>>
},
component: {
RequestPresenter: '' as AnyComponent,
RequestView: '' as AnyComponent
},
string: {
Requests: '' as IntlString
},
icon: {
Requests: '' as Asset
}
})
export default request