mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
* fix(data-table): type DataTableRowId as "any" #530 Fixes #530 * fix(tree-view): make first node focusable if activeId does not match selected * fix(overflow-menu): set type="button" to prevent default submit behavior #554 Fixes #554 * fix(overflow-menu): update semantic attributes in OverflowMenuItem * fix(number-input): do not dispatch change event on initialization #561 Fixes #561 * fix(tree-view): make first focusable node tabbable regardless of active/selected states * fix(date-picker): load rangePlugin dynamically * build(rollup): enable inlineDynamicImports * build(rollup): remove "clipboard-copy" global * fix(overflow-menu): do not render title if using a slot #537 Fixes #537 * fix(select): forward missing focus, input events #501 Fixes #501
245 lines
6 KiB
Svelte
245 lines
6 KiB
Svelte
<script>
|
|
/**
|
|
* @event {{ index: number; text: string; }} close
|
|
*/
|
|
|
|
/**
|
|
* Specify the size of the overflow menu
|
|
* @type {"sm" | "xl"}
|
|
*/
|
|
export let size = undefined;
|
|
|
|
/**
|
|
* Specify the direction of the overflow menu relative to the button
|
|
* @type {"top" | "bottom"}
|
|
*/
|
|
export let direction = "bottom";
|
|
|
|
/** Set to `true` to open the menu */
|
|
export let open = false;
|
|
|
|
/** Set to `true` to enable the light variant */
|
|
export let light = false;
|
|
|
|
/** Set to `true` to flip the menu relative to the button */
|
|
export let flipped = false;
|
|
|
|
/**
|
|
* Specify the menu options class
|
|
* @type {string}
|
|
*/
|
|
export let menuOptionsClass = undefined;
|
|
|
|
/**
|
|
* Specify the icon from `carbon-icons-svelte` to render
|
|
* @type {typeof import("carbon-icons-svelte").CarbonIcon}
|
|
*/
|
|
export let icon = OverflowMenuVertical16;
|
|
|
|
/**
|
|
* Specify the icon class
|
|
* @type {string}
|
|
*/
|
|
export let iconClass = undefined;
|
|
|
|
/** Specify the ARIA label for the icon */
|
|
export let iconDescription = "Open and close list of options";
|
|
|
|
/** Set an id for the button element */
|
|
export let id = "ccs-" + Math.random().toString(36);
|
|
|
|
/** Obtain a reference to the trigger button element */
|
|
export let buttonRef = null;
|
|
|
|
/** Obtain a reference to the overflow menu element */
|
|
export let menuRef = null;
|
|
|
|
import {
|
|
createEventDispatcher,
|
|
getContext,
|
|
setContext,
|
|
afterUpdate,
|
|
} from "svelte";
|
|
import { writable } from "svelte/store";
|
|
import OverflowMenuVertical16 from "carbon-icons-svelte/lib/OverflowMenuVertical16/OverflowMenuVertical16.svelte";
|
|
import OverflowMenuHorizontal16 from "carbon-icons-svelte/lib/OverflowMenuHorizontal16/OverflowMenuHorizontal16.svelte";
|
|
|
|
import { formatStyle } from "./formatStyle";
|
|
|
|
const ctxBreadcrumbItem = getContext("BreadcrumbItem");
|
|
const dispatch = createEventDispatcher();
|
|
const items = writable([]);
|
|
const currentId = writable(undefined);
|
|
const focusedId = writable(undefined);
|
|
const currentIndex = writable(-1);
|
|
|
|
let buttonWidth = undefined;
|
|
let onMountAfterUpdate = true;
|
|
|
|
$: if (ctxBreadcrumbItem) {
|
|
icon = OverflowMenuHorizontal16;
|
|
}
|
|
|
|
setContext("OverflowMenu", {
|
|
focusedId,
|
|
add: ({ id, text, primaryFocus }) => {
|
|
items.update((_) => {
|
|
if (primaryFocus) {
|
|
currentIndex.set(_.length);
|
|
}
|
|
|
|
return [..._, { id, text, primaryFocus, index: _.length }];
|
|
});
|
|
},
|
|
update: (id) => {
|
|
currentId.set(id);
|
|
},
|
|
change: (direction) => {
|
|
// TODO: skip disabled
|
|
let index = $currentIndex + direction;
|
|
|
|
if (index < 0) {
|
|
index = $items.length - 1;
|
|
} else if (index >= $items.length) {
|
|
index = 0;
|
|
}
|
|
|
|
currentIndex.set(index);
|
|
},
|
|
});
|
|
|
|
afterUpdate(() => {
|
|
if ($currentId) {
|
|
const { index, text } = $items.filter((_) => _.id === $currentId)[0];
|
|
dispatch("close", { index, text });
|
|
open = false;
|
|
}
|
|
|
|
if (open) {
|
|
const { width, height } = buttonRef.getBoundingClientRect();
|
|
|
|
buttonWidth = width;
|
|
|
|
if (!onMountAfterUpdate && $currentIndex < 0) {
|
|
menuRef.focus();
|
|
}
|
|
|
|
if (flipped) {
|
|
menuRef.style.left = "auto";
|
|
menuRef.style.right = 0;
|
|
}
|
|
|
|
if (direction === "top") {
|
|
menuRef.style.top = "auto";
|
|
menuRef.style.bottom = height + "px";
|
|
} else if (direction === "bottom") {
|
|
menuRef.style.top = height + "px";
|
|
}
|
|
|
|
if (ctxBreadcrumbItem) {
|
|
menuRef.style.top = height + 10 + "px";
|
|
menuRef.style.left = -11 + "px";
|
|
}
|
|
}
|
|
|
|
if (!open) {
|
|
items.set([]);
|
|
currentId.set(undefined);
|
|
currentIndex.set(0);
|
|
}
|
|
|
|
onMountAfterUpdate = false;
|
|
});
|
|
|
|
$: ariaLabel = $$props["aria-label"] || "menu";
|
|
$: if ($items[$currentIndex]) {
|
|
focusedId.set($items[$currentIndex].id);
|
|
}
|
|
$: dynamicPseudoWidth = `#${id} .bx--overflow-menu-options.bx--overflow-menu-options:after {
|
|
width: ${buttonWidth ? buttonWidth + "px" : "2rem"};
|
|
}`;
|
|
$: styles = formatStyle(dynamicPseudoWidth);
|
|
</script>
|
|
|
|
<svelte:head>
|
|
{@html styles}
|
|
</svelte:head>
|
|
|
|
<svelte:body
|
|
on:click="{({ target }) => {
|
|
if (buttonRef && buttonRef.contains(target)) return;
|
|
if (menuRef && !menuRef.contains(target)) {
|
|
open = false;
|
|
}
|
|
}}" />
|
|
|
|
<button
|
|
bind:this="{buttonRef}"
|
|
type="button"
|
|
aria-haspopup
|
|
aria-expanded="{open}"
|
|
aria-label="{ariaLabel}"
|
|
id="{id}"
|
|
class:bx--overflow-menu="{true}"
|
|
class:bx--overflow-menu--open="{open}"
|
|
class:bx--overflow-menu--light="{light}"
|
|
class:bx--overflow-menu--sm="{size === 'sm'}"
|
|
class:bx--overflow-menu--xl="{size === 'xl'}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:click="{({ target }) => {
|
|
if (!(menuRef && menuRef.contains(target))) {
|
|
open = !open;
|
|
}
|
|
}}"
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
on:keydown
|
|
on:keydown="{(e) => {
|
|
if (open) {
|
|
if (['ArrowDown', 'ArrowLeft', 'ArrowRight', 'ArrowUp'].includes(e.key)) {
|
|
e.preventDefault();
|
|
} else if (e.key === 'Escape') {
|
|
e.stopPropagation();
|
|
open = false;
|
|
buttonRef.focus();
|
|
}
|
|
}
|
|
}}"
|
|
on:focusout="{(e) => {
|
|
if (open) {
|
|
if (!buttonRef.contains(e.relatedTarget)) {
|
|
open = false;
|
|
}
|
|
}
|
|
}}"
|
|
>
|
|
<slot name="menu">
|
|
<svelte:component
|
|
this="{icon}"
|
|
aria-label="{iconDescription}"
|
|
title="{iconDescription}"
|
|
class="bx--overflow-menu__icon {iconClass}"
|
|
/>
|
|
</slot>
|
|
{#if open}
|
|
<ul
|
|
bind:this="{menuRef}"
|
|
role="menu"
|
|
tabindex="-1"
|
|
aria-label="{ariaLabel}"
|
|
data-floating-menu-direction="{direction}"
|
|
class:bx--overflow-menu-options="{true}"
|
|
class:bx--overflow-menu--flip="{flipped}"
|
|
class:bx--overflow-menu-options--open="{open}"
|
|
class:bx--overflow-menu-options--light="{light}"
|
|
class:bx--overflow-menu-options--sm="{size === 'sm'}"
|
|
class:bx--overflow-menu-options--xl="{size === 'xl'}"
|
|
class:bx--breadcrumb-menu-options="{!!ctxBreadcrumbItem}"
|
|
class:menuOptionsClass
|
|
>
|
|
<slot />
|
|
</ul>
|
|
{/if}
|
|
</button>
|