2021-11-29 11:11:27 +00:00
|
|
|
<!--
|
|
|
|
// 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 { Asset,IntlString } from '@anticrm/platform'
|
|
|
|
import { createEventDispatcher } from 'svelte'
|
|
|
|
import { AnySvelteComponent } from '../types'
|
|
|
|
import Icon from './Icon.svelte'
|
|
|
|
import Label from './Label.svelte'
|
|
|
|
|
|
|
|
export let actions: {
|
|
|
|
label: IntlString
|
|
|
|
icon?: Asset | AnySvelteComponent
|
2021-12-21 09:08:22 +00:00
|
|
|
action: (ctx?: any) => void | Promise<void>
|
2021-11-29 11:11:27 +00:00
|
|
|
}[] = []
|
2021-12-21 09:08:22 +00:00
|
|
|
export let ctx: any = undefined
|
2021-11-29 11:11:27 +00:00
|
|
|
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="flex-col popup">
|
|
|
|
{#each actions as action}
|
|
|
|
<div class="flex-row-center menu-item" on:click={() => {
|
|
|
|
dispatch('close')
|
2021-12-21 09:08:22 +00:00
|
|
|
action.action(ctx)
|
2021-11-29 11:11:27 +00:00
|
|
|
}}>
|
|
|
|
{#if action.icon}
|
2021-12-22 09:03:28 +00:00
|
|
|
<Icon icon={action.icon} size={'small'} />
|
2021-11-29 11:11:27 +00:00
|
|
|
{/if}
|
2021-11-30 11:12:14 +00:00
|
|
|
<div class="ml-3"><Label label={action.label} /></div>
|
2021-11-29 11:11:27 +00:00
|
|
|
</div>
|
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.popup {
|
|
|
|
padding: .5rem;
|
|
|
|
height: 100%;
|
|
|
|
background-color: var(--theme-button-bg-focused);
|
|
|
|
border: 1px solid var(--theme-button-border-enabled);
|
|
|
|
border-radius: .75rem;
|
|
|
|
box-shadow: 0 .75rem 1.25rem rgba(0, 0, 0, .2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: .375rem 1rem .375rem .5rem;
|
2021-11-30 11:12:14 +00:00
|
|
|
color: var(--theme-content-color);
|
2021-11-29 11:11:27 +00:00
|
|
|
border-radius: .5rem;
|
|
|
|
cursor: pointer;
|
|
|
|
|
2021-11-30 11:12:14 +00:00
|
|
|
&:hover {
|
|
|
|
background-color: var(--theme-button-bg-hovered);
|
|
|
|
color: var(--theme-caption-color);
|
2021-11-29 11:11:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|