mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
* fix(types): update description for icon props #865 * docs(component-api): remove hardcoded Carbon Svelte icon description
107 lines
2.6 KiB
Svelte
107 lines
2.6 KiB
Svelte
<script>
|
|
/**
|
|
* @typedef {{ delay?: number; duration?: number; easing?: (t: number) => number; }} HeaderActionSlideTransition
|
|
*/
|
|
|
|
/** Set to `true` to open the panel */
|
|
export let isOpen = false;
|
|
|
|
/**
|
|
* Specify the icon to render
|
|
* @type {typeof import("svelte").SvelteComponent}
|
|
*/
|
|
export let icon = AppSwitcher20;
|
|
|
|
/**
|
|
* Specify the icon to render when the action panel is open
|
|
* @type {typeof import("svelte").SvelteComponent}
|
|
*/
|
|
export let closeIcon = Close20;
|
|
|
|
/**
|
|
* Specify the text
|
|
* Alternatively, use the named slot "text" (e.g., <div slot="text">...</div>)
|
|
* @type {string}
|
|
*/
|
|
export let text = undefined;
|
|
|
|
/** Obtain a reference to the button HTML element */
|
|
export let ref = null;
|
|
|
|
/**
|
|
* Customize the panel transition (i.e., `transition:slide`)
|
|
* Set to `false` to disable the transition
|
|
* @type {false | HeaderActionSlideTransition}
|
|
*/
|
|
export let transition = { duration: 200 };
|
|
|
|
import { createEventDispatcher } from "svelte";
|
|
import { slide } from "svelte/transition";
|
|
import Close20 from "carbon-icons-svelte/lib/Close20/Close20.svelte";
|
|
import AppSwitcher20 from "carbon-icons-svelte/lib/AppSwitcher20/AppSwitcher20.svelte";
|
|
import Icon from "../../Icon/Icon.svelte";
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
let refPanel = null;
|
|
</script>
|
|
|
|
<svelte:window
|
|
on:click="{({ target }) => {
|
|
if (isOpen && !ref.contains(target) && !refPanel.contains(target)) {
|
|
isOpen = false;
|
|
dispatch('close');
|
|
}
|
|
}}"
|
|
/>
|
|
|
|
<div>
|
|
<button
|
|
bind:this="{ref}"
|
|
type="button"
|
|
class:bx--header__action="{true}"
|
|
class:bx--header__action--active="{isOpen}"
|
|
class:action-text="{text}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:click="{() => {
|
|
isOpen = !isOpen;
|
|
dispatch(isOpen ? 'open' : 'close');
|
|
}}"
|
|
>
|
|
<Icon render="{icon}" style="{isOpen ? 'display: none' : ''}" />
|
|
<Icon render="{closeIcon}" style="{!isOpen ? 'display: none' : ''}" />
|
|
<slot name="text">
|
|
{#if text}<span>{text}</span>{/if}
|
|
</slot>
|
|
</button>
|
|
{#if isOpen}
|
|
<div
|
|
bind:this="{refPanel}"
|
|
class:bx--header-panel="{true}"
|
|
class:bx--header-panel--expanded="{true}"
|
|
transition:slide="{{
|
|
...transition,
|
|
duration: transition === false ? 0 : transition.duration,
|
|
}}"
|
|
>
|
|
<slot />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
<style>
|
|
.action-text {
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
text-decoration: none;
|
|
color: #fff;
|
|
width: 100%;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.action-text > span {
|
|
margin-left: 0.75rem;
|
|
vertical-align: top;
|
|
}
|
|
</style>
|