platform/packages/ui/src/components/notifications/Notification.svelte
Alexander Platov a3a11310a0
TSK-812: Opening images in the center. Minor design corrections. (#2755)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2023-03-17 09:52:32 +06:00

32 lines
849 B
Svelte

<script lang="ts">
import { onDestroy } from 'svelte'
import { Notification } from './Notification'
import Component from '../Component.svelte'
import store from './store'
export let notification: Notification
const { id, closeTimeout } = notification
const removeNotificationHandler = () => store.removeNotification(id)
let timeout: number | null = null
if (closeTimeout) {
timeout = setTimeout(removeNotificationHandler, closeTimeout)
}
onDestroy(() => {
if (closeTimeout && timeout) {
clearTimeout(timeout)
}
})
</script>
{#if typeof notification.component === 'string'}
<Component is={notification.component} props={{ notification, onRemove: removeNotificationHandler }} />
{:else}
<svelte:component this={notification.component} {notification} onRemove={removeNotificationHandler} />
{/if}