mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
* feat(toast-notification): add `fullWidth` prop * Run "yarn build:docs" * test(toast-notification): assert `fullWidth` prop * docs(toast-notification): add "Full width" example
113 lines
3 KiB
Svelte
113 lines
3 KiB
Svelte
<script>
|
|
/**
|
|
* @event {{ timeout: boolean }} close
|
|
*/
|
|
|
|
/**
|
|
* Specify the kind of notification
|
|
* @type {"error" | "info" | "info-square" | "success" | "warning" | "warning-alt"}
|
|
*/
|
|
export let kind = "error";
|
|
|
|
/** Set to `true` to use the low contrast variant */
|
|
export let lowContrast = false;
|
|
|
|
/** Set the timeout duration (ms) to hide the notification after opening it */
|
|
export let timeout = 0;
|
|
|
|
/** Set the `role` attribute */
|
|
export let role = "alert";
|
|
|
|
/** Specify the title text */
|
|
export let title = "";
|
|
|
|
/** Specify the subtitle text */
|
|
export let subtitle = "";
|
|
|
|
/** Specify the caption text */
|
|
export let caption = "";
|
|
|
|
/** Specify the ARIA label for the icon */
|
|
export let iconDescription = "Closes notification";
|
|
|
|
/** Set to `true` to hide the close button */
|
|
export let hideCloseButton = false;
|
|
|
|
/**
|
|
* Set to `true` for the notification to span
|
|
* the full width of its containing element.
|
|
*/
|
|
export let fullWidth = false;
|
|
|
|
import { createEventDispatcher, onMount } from "svelte";
|
|
import NotificationButton from "./NotificationButton.svelte";
|
|
import NotificationIcon from "./NotificationIcon.svelte";
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
let open = true;
|
|
let timeoutId = undefined;
|
|
|
|
function close(closeFromTimeout) {
|
|
const shouldContinue = dispatch(
|
|
"close",
|
|
{ timeout: closeFromTimeout === true },
|
|
{ cancelable: true }
|
|
);
|
|
if (shouldContinue) {
|
|
open = false;
|
|
}
|
|
}
|
|
|
|
onMount(() => {
|
|
if (timeout) {
|
|
timeoutId = setTimeout(() => close(true), timeout);
|
|
}
|
|
|
|
return () => {
|
|
clearTimeout(timeoutId);
|
|
};
|
|
});
|
|
</script>
|
|
|
|
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
|
|
{#if open}
|
|
<div
|
|
role="{role}"
|
|
kind="{kind}"
|
|
class:bx--toast-notification="{true}"
|
|
class:bx--toast-notification--low-contrast="{lowContrast}"
|
|
class:bx--toast-notification--error="{kind === 'error'}"
|
|
class:bx--toast-notification--info="{kind === 'info'}"
|
|
class:bx--toast-notification--info-square="{kind === 'info-square'}"
|
|
class:bx--toast-notification--success="{kind === 'success'}"
|
|
class:bx--toast-notification--warning="{kind === 'warning'}"
|
|
class:bx--toast-notification--warning-alt="{kind === 'warning-alt'}"
|
|
{...$$restProps}
|
|
style="{fullWidth && 'width: 100%;'}{$$restProps.style}"
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<NotificationIcon kind="{kind}" />
|
|
<div class:bx--toast-notification__details="{true}">
|
|
<h3 class:bx--toast-notification__title="{true}">
|
|
<slot name="title">{title}</slot>
|
|
</h3>
|
|
<div class:bx--toast-notification__subtitle="{true}">
|
|
<slot name="subtitle">{subtitle}</slot>
|
|
</div>
|
|
<div class:bx--toast-notification__caption="{true}">
|
|
<slot name="caption">{caption}</slot>
|
|
</div>
|
|
<slot />
|
|
</div>
|
|
{#if !hideCloseButton}
|
|
<NotificationButton
|
|
iconDescription="{iconDescription}"
|
|
on:click="{close}"
|
|
/>
|
|
{/if}
|
|
</div>
|
|
{/if}
|