mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-13 02:41:11 +00:00
87 lines
2.8 KiB
TypeScript
87 lines
2.8 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 '@hcengineering/platform'
|
|
import { Class, DOMAIN_MODEL, Ref, Space } from '@hcengineering/core'
|
|
import { Model, Mixin, Builder, UX, Prop, TypeRef } from '@hcengineering/model'
|
|
import type { Application, SpaceView, ViewConfiguration, HiddenApplication } from '@hcengineering/workbench'
|
|
import view, { KeyBinding } from '@hcengineering/view'
|
|
import { createAction } from '@hcengineering/model-view'
|
|
import preference, { TPreference } from '@hcengineering/model-preference'
|
|
|
|
import core, { TDoc, TClass } from '@hcengineering/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
|
|
}
|
|
|
|
@Model(workbench.class.HiddenApplication, preference.class.Preference)
|
|
export class THiddenApplication extends TPreference implements HiddenApplication {
|
|
@Prop(TypeRef(workbench.class.Application), workbench.string.HiddenApplication)
|
|
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)
|
|
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
|
|
}
|
|
})
|
|
}
|