platform/plugins/request/src/index.ts
Denis Bykhov 42e354f0ff
Show request comment (#2525)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-01-20 14:45:43 +07:00

77 lines
1.8 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'
}
/**
* @public
*/
export const requestId = 'request' as Plugin
/**
* @public
*/
const request = plugin(requestId, {
class: {
Request: '' as Ref<Class<Request>>
},
mixin: {
RequestDecisionComment: '' as Ref<Mixin<RequestDecisionComment>>
},
component: {
RequestsPopup: '' as AnyComponent
},
string: {
Requests: '' as IntlString
},
icon: {
Requests: '' as Asset
}
})
export default request