mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-04 15:03:55 +00:00
93 lines
2.7 KiB
Svelte
93 lines
2.7 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 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 } from '@anticrm/platform'
|
|
import { createEventDispatcher } from 'svelte'
|
|
import { AnySvelteComponent } from '../types'
|
|
import ActionIcon from './ActionIcon.svelte'
|
|
import Icon from './Icon.svelte'
|
|
import IconClose from './icons/Close.svelte'
|
|
|
|
export let title: string | undefined = undefined
|
|
export let subtitle: string | undefined = undefined
|
|
export let icon: Asset | AnySvelteComponent | undefined = undefined
|
|
export let rightSection: boolean = false
|
|
export let reverseCommands = false
|
|
|
|
const dispatch = createEventDispatcher()
|
|
</script>
|
|
|
|
<div class="antiPanel antiComponent">
|
|
<div class:panel-content={!rightSection} class:ad-section-50={rightSection} class:divide={rightSection}>
|
|
<div class="ac-header short mirror divide">
|
|
<div class="ac-header__wrap-title">
|
|
{#if icon}<div class="ac-header__icon"><Icon {icon} size={'large'} /></div>{/if}
|
|
<div class="ac-header__wrap-description">
|
|
{#if title}
|
|
<span class="ac-header__title">{title}</span>
|
|
{/if}
|
|
{#if subtitle}<span class="ac-header__description">{subtitle}</span>{/if}
|
|
</div>
|
|
</div>
|
|
{#if rightSection}
|
|
<div class="flex">
|
|
<slot name="commands" />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{#if $$slots.subtitle}
|
|
<div class="ac-subtitle">
|
|
<div class="ac-subtitle-content">
|
|
<slot name="subtitle" />
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
<div class='flex-col'>
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
|
|
{#if rightSection}
|
|
<slot name='rightSection'/>
|
|
{/if}
|
|
|
|
<div class="ad-tools" class:grow-reverse={reverseCommands}>
|
|
{#if !rightSection && $$slots.commands}
|
|
<div class="flex">
|
|
<slot name="commands" />
|
|
</div>
|
|
{/if}
|
|
<slot name='actions'/>
|
|
<div class="tool">
|
|
<ActionIcon
|
|
icon={IconClose}
|
|
size={'medium'}
|
|
action={() => {
|
|
dispatch('close')
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.panel-content {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-direction: column;
|
|
align-content: stretch;
|
|
}
|
|
</style>
|