platform/models/workbench/src/index.ts

106 lines
3.3 KiB
TypeScript
Raw Normal View History

//
// Copyright © 2020 Anticrm Platform Contributors.
//
// 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 { Class, DOMAIN_MODEL, Ref, Space } from '@hcengineering/core'
import { Builder, Mixin, Model, Prop, TypeRef, UX } from '@hcengineering/model'
import preference, { TPreference } from '@hcengineering/model-preference'
import { createAction } from '@hcengineering/model-view'
import type { Asset, IntlString } from '@hcengineering/platform'
import view, { KeyBinding } from '@hcengineering/view'
import type {
Application,
ApplicationNavModel,
HiddenApplication,
SpaceView,
ViewConfiguration
} from '@hcengineering/workbench'
import core, { TClass, TDoc } from '@hcengineering/model-core'
import workbench from './plugin'
export { workbenchId } from '@hcengineering/workbench'
export { Application }
@Model(workbench.class.Application, core.class.Doc, DOMAIN_MODEL)
@UX(workbench.string.Application)
export class TApplication extends TDoc implements Application {
label!: IntlString
icon!: Asset
alias!: string
position?: 'top' | 'mid'
hidden!: boolean
}
@Model(workbench.class.ApplicationNavModel, core.class.Doc, DOMAIN_MODEL)
@UX(workbench.string.Application)
export class TApplicationNavModel extends TDoc implements ApplicationNavModel {
extends!: Ref<Application>
}
@Model(workbench.class.HiddenApplication, preference.class.Preference)
export class THiddenApplication extends TPreference implements HiddenApplication {
@Prop(TypeRef(workbench.class.Application), workbench.string.HiddenApplication)
declare attachedTo: Ref<Application>
}
@Mixin(workbench.mixin.SpaceView, core.class.Class)
export class TSpaceView extends TClass implements SpaceView {
view!: ViewConfiguration
}
export function createModel (builder: Builder): void {
builder.createModel(TApplication, TSpaceView, THiddenApplication, TApplicationNavModel)
2023-01-14 10:54:54 +00:00
builder.mixin(workbench.class.Application, core.class.Class, view.mixin.ObjectPresenter, {
presenter: workbench.component.ApplicationPresenter
})
builder.mixin(workbench.class.Application, core.class.Class, view.mixin.IgnoreActions, {
actions: [view.action.Delete]
})
}
export default workbench
export function createNavigateAction (
builder: Builder,
key: KeyBinding,
label: IntlString,
application: Ref<Application>,
props: {
mode: 'app' | 'special' | 'space'
application?: string
special?: string
space?: Ref<Space>
spaceClass?: Ref<Class<Space>>
spaceSpecial?: string
2023-06-03 03:49:20 +00:00
query?: Record<string, string | null>
}
): void {
createAction(builder, {
action: workbench.actionImpl.Navigate,
actionProps: props,
label,
icon: view.icon.ArrowRight,
keyBinding: [key],
input: 'none',
category: view.category.Navigation,
target: core.class.Doc,
context: {
mode: ['workbench', 'browser', 'editor', 'panel', 'popup'],
application
}
})
}