mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-13 11:50:56 +00:00
136 lines
3.4 KiB
Svelte
136 lines
3.4 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 { getResourceP } from '@hcengineering/platform'
|
|
import { deepEqual } from 'fast-equals'
|
|
import { SvelteComponent } from 'svelte'
|
|
import type { AnyComponent, AnySvelteComponent } from '../types'
|
|
import ErrorPresenter from './ErrorPresenter.svelte'
|
|
import Loading from './Loading.svelte'
|
|
import ErrorBoundary from './internal/ErrorBoundary'
|
|
|
|
// Reference to rendered component instance
|
|
export let innerRef: SvelteComponent | undefined = undefined
|
|
export let is: AnyComponent | AnySvelteComponent
|
|
export let props = {}
|
|
export let shrink: boolean = false
|
|
export let showLoading = true
|
|
export let inline: boolean = false
|
|
export let disabled: boolean = false
|
|
|
|
let _is: AnyComponent | AnySvelteComponent = is
|
|
let _props: any = props
|
|
|
|
$: if (!deepEqual(_is, is)) {
|
|
_is = is
|
|
}
|
|
$: if (!deepEqual(_props, props)) {
|
|
_props = props
|
|
}
|
|
|
|
let Ctor: any
|
|
let loading = false
|
|
let error: any
|
|
let counter = 0
|
|
|
|
function updateComponent (_is: AnyComponent | AnySvelteComponent): void {
|
|
const current = ++counter
|
|
if (_is == null) {
|
|
Ctor = undefined
|
|
error = new Error('is not defined')
|
|
return
|
|
}
|
|
if (typeof _is === 'string') {
|
|
const component = getResourceP<any>(_is)
|
|
if (component instanceof Promise) {
|
|
loading = true
|
|
Ctor = undefined
|
|
void component
|
|
.then((res) => {
|
|
if (current === counter) {
|
|
Ctor = res
|
|
loading = false
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
if (current === counter) {
|
|
error = err
|
|
}
|
|
})
|
|
} else {
|
|
loading = false
|
|
Ctor = component
|
|
}
|
|
} else {
|
|
Ctor = _is
|
|
}
|
|
}
|
|
|
|
$: updateComponent(_is)
|
|
</script>
|
|
|
|
{#if _is != null}
|
|
{#if loading}
|
|
{#if showLoading}
|
|
<Loading {shrink} />
|
|
{/if}
|
|
{:else if Ctor != null}
|
|
<ErrorBoundary bind:error>
|
|
{#if $$slots.default !== undefined}
|
|
<svelte:component
|
|
this={Ctor}
|
|
bind:this={innerRef}
|
|
{..._props}
|
|
{inline}
|
|
{disabled}
|
|
on:change
|
|
on:close
|
|
on:open
|
|
on:click
|
|
on:delete
|
|
on:action
|
|
on:valid
|
|
on:validate
|
|
on:submit
|
|
>
|
|
<slot />
|
|
</svelte:component>
|
|
{:else}
|
|
<svelte:component
|
|
this={Ctor}
|
|
bind:this={innerRef}
|
|
{..._props}
|
|
{inline}
|
|
{disabled}
|
|
on:change
|
|
on:close
|
|
on:open
|
|
on:click
|
|
on:delete
|
|
on:action
|
|
on:valid
|
|
on:validate
|
|
on:submit
|
|
/>
|
|
{/if}
|
|
</ErrorBoundary>
|
|
{/if}
|
|
{/if}
|
|
{#if error != null}
|
|
<pre style="max-height: 140px; overflow: auto;">
|
|
<ErrorPresenter {error} />
|
|
</pre>
|
|
{/if}
|