mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-24 05:12:24 +02:00
52 lines
1.7 KiB
Svelte
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 { createEventDispatcher, afterUpdate } from 'svelte'
|
|
import type { Class, Doc, Ref } from '@anticrm/core'
|
|
import type { Asset } from '@anticrm/platform'
|
|
import { getClient } from '@anticrm/presentation'
|
|
import { Action, Menu } from '@anticrm/ui'
|
|
import type { ViewContextType } from '@anticrm/view'
|
|
import { getActions, invokeAction } from '../actions'
|
|
|
|
export let object: Doc | Doc[]
|
|
export let baseMenuClass: Ref<Class<Doc>> | undefined = undefined
|
|
export let actions: Action[] = []
|
|
export let mode: ViewContextType | undefined = undefined
|
|
|
|
const client = getClient()
|
|
const dispatch = createEventDispatcher()
|
|
|
|
let loaded = 0
|
|
|
|
getActions(client, object, baseMenuClass, mode).then((result) => {
|
|
actions = result.map((a) => ({
|
|
label: a.label,
|
|
icon: a.icon as Asset,
|
|
inline: a.inline,
|
|
action: async (_: any, evt: Event) => {
|
|
invokeAction(object, evt, a.action, a.actionProps)
|
|
}
|
|
}))
|
|
loaded = 1
|
|
})
|
|
|
|
afterUpdate(() => dispatch('changeContent'))
|
|
</script>
|
|
|
|
{#if loaded}
|
|
<Menu {actions} on:close />
|
|
{/if}
|