platform/models/workbench/src/index.ts
Anna No 3b25cc2b83
[TSK-223] Workbench: App alias (Part 1) (#2162)
Signed-off-by: Anna <anna.no@xored.com>
2022-06-29 15:08:59 +07:00

80 lines
2.4 KiB
TypeScript

//
// 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 type { IntlString, Asset } from '@anticrm/platform'
import { Class, DOMAIN_MODEL, Ref, Space } from '@anticrm/core'
import { Model, Mixin, Builder, UX } from '@anticrm/model'
import type { Application, SpaceView, ViewConfiguration } from '@anticrm/workbench'
import view, { KeyBinding } from '@anticrm/view'
import { createAction } from '@anticrm/model-view'
import core, { TDoc, TClass } from '@anticrm/model-core'
import workbench from './plugin'
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
hidden!: boolean
}
@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)
builder.mixin(workbench.class.Application, core.class.Class, view.mixin.AttributePresenter, {
presenter: workbench.component.ApplicationPresenter
})
}
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
}
): 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
}
})
}