platform/models/inventory/src/plugin.ts
Kristina a85db1b78a
UBERF-5594: render mentions before object is loaded (#4738)
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
2024-02-21 11:52:19 +07:00

60 lines
2.2 KiB
TypeScript

//
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021, 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 ChatMessageViewlet } from '@hcengineering/chunter'
import type { Client, Doc, Ref } from '@hcengineering/core'
import { inventoryId } from '@hcengineering/inventory'
import inventory from '@hcengineering/inventory-resources/src/plugin'
import { type IntlString, mergeIds, type Resource } from '@hcengineering/platform'
import type { AnyComponent } from '@hcengineering/ui/src/types'
import { type Action, type ActionCategory, type ViewAction, type Viewlet } from '@hcengineering/view'
export default mergeIds(inventoryId, inventory, {
action: {
CreateSubcategory: '' as Ref<Action>
},
actionImpl: {
CreateSubcategory: '' as ViewAction
},
category: {
Inventory: '' as Ref<ActionCategory>
},
component: {
Categories: '' as AnyComponent,
CreateProduct: '' as AnyComponent,
EditProduct: '' as AnyComponent,
CategoryPresenter: '' as AnyComponent,
CategoryRefPresenter: '' as AnyComponent,
Variants: '' as AnyComponent,
ProductPresenter: '' as AnyComponent,
VariantPresenter: '' as AnyComponent
},
viewlet: {
TableProduct: '' as Ref<Viewlet>
},
string: {
ConfigLabel: '' as IntlString,
ConfigDescription: '' as IntlString
},
ids: {
ProductChatMessageViewlet: '' as Ref<ChatMessageViewlet>,
CategoryChatMessageViewlet: '' as Ref<ChatMessageViewlet>
},
function: {
ProductIdProvider: '' as Resource<(client: Client, ref: Ref<Doc>, doc?: Doc) => Promise<string>>,
CategoryIdProvider: '' as Resource<(client: Client, ref: Ref<Doc>, doc?: Doc) => Promise<string>>
}
})