carbon-components-svelte/src/InlineLoading/InlineLoading.svelte
2020-09-04 16:35:49 -07:00

73 lines
1.8 KiB
Svelte

<script>
/**
* Set the loading status
* @type {"active" | "inactive" | "finished" | "error"} [status="active"]
*/
export let status = "active";
/**
* Set the loading description
* @type {string} [description]
*/
export let description = undefined;
/**
* Specify the ARIA label for the loading icon
* @type {string} [iconDescription="Expand/Collapse"]
*/
export let iconDescription = undefined;
/**
* Specify the timeout delay (ms) after `status` is set to "success"
* @type {number} [successDelay=1500]
*/
export let successDelay = 1500;
import { createEventDispatcher, afterUpdate, onMount } from "svelte";
import CheckmarkFilled16 from "carbon-icons-svelte/lib/CheckmarkFilled16";
import Error20 from "carbon-icons-svelte/lib/Error20";
import { Loading } from "../Loading";
const dispatch = createEventDispatcher();
let timeout = undefined;
onMount(() => {
return () => {
clearTimeout(timeout);
};
});
afterUpdate(() => {
if (status === "finished") {
timeout = setTimeout(() => {
dispatch("success");
}, successDelay);
}
});
</script>
<div
aria-live="assertive"
{...$$restProps}
on:click
on:mouseover
on:mouseenter
on:mouseleave>
<div class:bx--inline-loading__animation="{true}">
{#if status === 'error'}
<Error20 class="bx--inline-loading--error" />
{:else if status === 'finished'}
<CheckmarkFilled16 class="bx--inline-loading__checkmark-container" />
{:else if status === 'inactive' || status === 'active'}
<Loading
small
description="{iconDescription}"
withOverlay="{false}"
active="{status === 'active'}" />
{/if}
</div>
{#if description}
<div class:bx--inline-loading__text="{true}">{description}</div>
{/if}
</div>