platform/plugins/view-resources/src/components/Menu.svelte
Andrey Sobolev 0188f2dcc3
Selection/Navigation fixes (#1500)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2022-04-24 12:18:03 +07:00

52 lines
1.7 KiB
Svelte

<!--
// 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.
-->
<script lang="ts">
import type { Class, Doc, Ref } from '@anticrm/core'
import type { Asset } from '@anticrm/platform'
import { getResource } from '@anticrm/platform'
import { getClient } from '@anticrm/presentation'
import { Action, Menu } from '@anticrm/ui'
import { ViewAction } from '@anticrm/view'
import { getActions } from '../actions'
export let object: Doc | Doc[]
export let baseMenuClass: Ref<Class<Doc>> | undefined = undefined
export let actions: Action[] = []
const client = getClient()
async function invokeAction (evt: Event, action: ViewAction) {
const impl = await getResource(action)
await impl(Array.isArray(object) && object.length === 1 ? object[0] : object, evt)
}
let loaded = 0
getActions(client, object, baseMenuClass, !Array.isArray(object) || object.length === 1).then(result => {
actions = result.map(a => ({
label: a.label,
icon: a.icon as Asset,
action: async (props:any, evt: Event) => { invokeAction(evt, a.action) }
}))
loaded = 1
})
</script>
{#if loaded}
<Menu {actions} on:close/>
{/if}