platform/packages/ui/src/components/PanelInstance.svelte
Alexander Platov 51687d1a2b
UI fixes (#1498)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2022-04-23 10:51:42 +07:00

141 lines
3.5 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 { getResource } from '@anticrm/platform'
import { afterUpdate } from 'svelte'
import { AnySvelteComponent, Spinner } from '..'
import { closePanel, PanelProps, panelstore } from '../panelup'
import { fitPopupElement, popupstore } from '../popups'
export let contentPanel: HTMLElement
let modalHTML: HTMLElement
let componentInstance: any
let show: boolean = false
let component: AnySvelteComponent
let props: PanelProps | undefined
function _close () {
closePanel()
}
$: props = $panelstore.panel
$: if (props !== undefined) {
getResource(props.component).then((r) => {
component = r
})
}
function escapeClose () {
// Check if there is popup visible, then ignore
if ($popupstore.length > 0) {
return
}
if (componentInstance && componentInstance.canClose) {
if (!componentInstance.canClose()) {
console.log('CANT CLOSE')
return
}
}
_close()
}
const fitPopup = (props: PanelProps, contentPanel: HTMLElement): void => {
if (modalHTML) {
show = fitPopupElement(modalHTML, props.element, contentPanel)
}
}
function handleKeydown (ev: KeyboardEvent) {
if (ev.key === 'Escape') {
escapeClose()
}
}
afterUpdate(() => {
if (props) fitPopup(props, contentPanel)
})
export function fitPopupInstance (): void {
if (props) fitPopup(props, contentPanel)
}
</script>
<svelte:window
on:resize={() => {
if (props) fitPopup(props, contentPanel)
}}
on:keydown={(evt) => {
if (props) handleKeydown(evt)
}}
/>
{#if props}
{#if !component}
<Spinner />
{:else}
<slot name='panel-header'/>
<div class="panel-instance" class:bg={props.element === 'content'} bind:this={modalHTML}>
<div class="panel-container" class:padding={props.element === 'content'}>
<svelte:component
this={component}
bind:this={componentInstance}
_id={props._id}
_class={props._class}
rightSection={props.rightSection}
position={props.element}
on:close={_close}
on:update={() => {
if (props) {
fitPopup(props, contentPanel)
}
}}
/>
</div>
</div>
{#if props.element !== 'content'}
<div class="modal-overlay" class:show on:click={() => escapeClose()} />
{/if}
{/if}
{/if}
<style lang="scss">
.panel-instance {
z-index: 401;
position: fixed;
background-color: transparent;
&.bg { background-color: var(--body-color); }
.panel-container {
padding: .5rem;
width: 100%;
height: 100%;
&.padding { padding: .75rem; }
}
}
.modal-overlay {
z-index: 400;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
&.show { background: rgba(0, 0, 0, .5); }
}
</style>