mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-01 05:29:29 +00:00

Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com> Signed-off-by: Alexander Platov <alexander.platov@hardcoreeng.com>
86 lines
2.7 KiB
Svelte
86 lines
2.7 KiB
Svelte
<!--
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
// Copyright © 2021 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 { IntlString } from '@hcengineering/platform'
|
|
import { createEventDispatcher } from 'svelte'
|
|
import { Button, Label, IconClose, IconScale, IconScaleFull, resizeObserver, tooltip } from '..'
|
|
|
|
export let label: IntlString | undefined = undefined
|
|
export let isFullSize: boolean = false
|
|
export let padding: string = '1rem'
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
let fullSize: boolean = false
|
|
</script>
|
|
|
|
<form
|
|
class="antiDialog"
|
|
class:fullsize={fullSize}
|
|
on:submit|preventDefault={() => {}}
|
|
use:resizeObserver={() => {
|
|
dispatch('changeContent')
|
|
}}
|
|
>
|
|
<div class="flex-between header">
|
|
<div class="flex-row-center gap-1-5">
|
|
<Button icon={IconClose} kind={'ghost'} size={'medium'} on:click={() => dispatch('close')} />
|
|
{#if label}
|
|
<span class="title" use:tooltip={{ label }}><Label {label} /></span>
|
|
{/if}
|
|
{#if $$slots.title}<slot name="title" />{/if}
|
|
</div>
|
|
<div class="flex-row-center flex-no-shrink gap-1-5">
|
|
{#if $$slots.utils}
|
|
<slot name="utils" />
|
|
{/if}
|
|
{#if $$slots.utils && isFullSize}
|
|
<div class="buttons-divider" />
|
|
{/if}
|
|
{#if isFullSize}
|
|
<Button
|
|
focusIndex={100010}
|
|
icon={fullSize ? IconScale : IconScaleFull}
|
|
kind={'ghost'}
|
|
size={'medium'}
|
|
selected={fullSize}
|
|
on:click={() => {
|
|
fullSize = !fullSize
|
|
dispatch('fullsize')
|
|
}}
|
|
/>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
<div class="content" class:rounded={!($$slots.footerLeft || $$slots.footerRight)} style:padding>
|
|
<slot />
|
|
</div>
|
|
{#if $$slots.footerLeft || $$slots.footerRight}
|
|
<div class="footer">
|
|
{#if $$slots.footerLeft}
|
|
<div class="flex-row-center gap-2">
|
|
<slot name="footerLeft" />
|
|
</div>
|
|
{:else}<div />{/if}
|
|
{#if $$slots.footerRight}
|
|
<div class="flex-row-center gap-2">
|
|
<slot name="footerRight" />
|
|
</div>
|
|
{:else}<div />{/if}
|
|
</div>
|
|
{/if}
|
|
</form>
|