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