mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-22 04:13:44 +00:00
62 lines
2.3 KiB
Svelte
62 lines
2.3 KiB
Svelte
<!--
|
|
// 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 bgetObjectLinkFragmentr 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.
|
|
-->
|
|
<script lang="ts">
|
|
import { Doc, Hierarchy } from '@hcengineering/core'
|
|
import { NavLink, getClient } from '@hcengineering/presentation'
|
|
import { AnyComponent, getPanelURI, locationToUrl } from '@hcengineering/ui'
|
|
import view from '../plugin'
|
|
import { getObjectLinkFragment, restrictionStore } from '../utils'
|
|
|
|
export let object: Doc | undefined
|
|
export let disabled: boolean = false
|
|
export let onClick: ((event: MouseEvent) => void) | undefined = undefined
|
|
export let noUnderline = disabled
|
|
export let inline = false
|
|
export let colorInherit: boolean = false
|
|
export let component: AnyComponent = view.component.EditDoc
|
|
export let props: Record<string, any> = {}
|
|
export let shrink: number = 1
|
|
export let accent: boolean = false
|
|
export let noOverflow: boolean = false
|
|
|
|
let _disabled = disabled || $restrictionStore.disableNavigation
|
|
$: _disabled = disabled || $restrictionStore.disableNavigation
|
|
|
|
const client = getClient()
|
|
const hierarchy = client.getHierarchy()
|
|
|
|
let href: string | undefined =
|
|
object !== undefined
|
|
? '#' + getPanelURI(component, object._id, Hierarchy.mixinOrClass(object), 'content')
|
|
: undefined
|
|
|
|
async function getHref (object: Doc): Promise<void> {
|
|
if (_disabled) {
|
|
href = undefined
|
|
return
|
|
}
|
|
const panelComponent = hierarchy.classHierarchyMixin(object._class, view.mixin.ObjectPanel)
|
|
const comp = panelComponent?.component ?? component
|
|
const loc = await getObjectLinkFragment(hierarchy, object, props, comp)
|
|
href = `${window.location.origin}${locationToUrl(loc)}`
|
|
}
|
|
|
|
$: if (object !== undefined) getHref(object)
|
|
</script>
|
|
|
|
<NavLink disabled={_disabled} {onClick} {noUnderline} {inline} {shrink} {href} {colorInherit} {accent} {noOverflow}>
|
|
<slot />
|
|
</NavLink>
|