Files
huly-platform/packages/ui/src/components/Component.svelte
T
2025-05-02 09:01:01 +07:00

155 lines
4.2 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
// See https://github.com/sveltejs/svelte/issues/4068
// When passing undefined prop value, then Svelte uses default value only first time when
// component is instantiated. On the next update the value will be set to undefined.
// Here we filter out undefined values from props on updates to ensure we don't overwrite them.
const filterDefaultUndefined = (pnew: any, pold: any): any =>
pnew != null
? Object.fromEntries(Object.entries(pnew).filter(([k, v]) => v !== undefined || pold?.[k] !== undefined))
: pnew
$: if (!deepEqual(_is, is)) {
_is = is
}
$: {
const p = filterDefaultUndefined(props, _props)
if (!deepEqual(_props, p)) {
_props = p
}
}
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
_props = filterDefaultUndefined(props, props)
loading = false
}
})
.catch((err) => {
if (current === counter) {
error = err
}
})
} else {
loading = false
Ctor = component
_props = filterDefaultUndefined(props, props)
}
} else {
Ctor = _is
_props = filterDefaultUndefined(props, props)
}
}
$: 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
on:select
on:loaded
>
<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
on:select
on:loaded
/>
{/if}
</ErrorBoundary>
{/if}
{/if}
{#if error != null}
<pre style="max-height: 140px; overflow: auto;">
<ErrorPresenter {error} />
</pre>
{/if}