mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
120 lines
3.1 KiB
Svelte
120 lines
3.1 KiB
Svelte
<script context="module">
|
|
/**
|
|
* Computes the depth of a tree leaf node relative to <ul role="tree" />
|
|
* @param {HTMLLIElement} node
|
|
* @returns {number} depth
|
|
*/
|
|
export function computeTreeLeafDepth(node) {
|
|
let depth = 0;
|
|
|
|
if (node == null) return depth;
|
|
|
|
let parentNode = node.parentNode;
|
|
|
|
while (parentNode != null && parentNode.getAttribute("role") !== "tree") {
|
|
parentNode = parentNode.parentNode;
|
|
if (parentNode.tagName === "LI") depth++;
|
|
}
|
|
|
|
return depth;
|
|
}
|
|
|
|
/**
|
|
* Finds the nearest parent tree node
|
|
* @param {HTMLElement} node
|
|
* @returns {null | HTMLElement}
|
|
*/
|
|
function findParentTreeNode(node) {
|
|
if (node.classList.contains("bx--tree-parent-node")) return node;
|
|
if (node.classList.contains("bx--tree")) return null;
|
|
return findParentTreeNode(node.parentNode);
|
|
}
|
|
</script>
|
|
|
|
<script>
|
|
/**
|
|
* @typedef {string | number} TreeNodeId
|
|
*/
|
|
|
|
export let leaf = false;
|
|
|
|
/** @type {TreeNodeId} */
|
|
export let id = "";
|
|
export let text = "";
|
|
export let disabled = false;
|
|
|
|
/**
|
|
* Specify the icon to render
|
|
* @type {typeof import("svelte").SvelteComponent}
|
|
*/
|
|
export let icon = undefined;
|
|
|
|
import { afterUpdate, getContext } from "svelte";
|
|
|
|
let ref = null;
|
|
let refLabel = null;
|
|
let prevActiveId = undefined;
|
|
|
|
const { activeNodeId, selectedNodeIds, clickNode, selectNode, focusNode } =
|
|
getContext("TreeView");
|
|
const offset = () =>
|
|
computeTreeLeafDepth(refLabel) + (leaf && icon ? 2 : 2.5);
|
|
|
|
afterUpdate(() => {
|
|
if (id === $activeNodeId && prevActiveId !== $activeNodeId) {
|
|
if (!$selectedNodeIds.includes(id)) selectNode(node);
|
|
}
|
|
|
|
prevActiveId = $activeNodeId;
|
|
});
|
|
|
|
$: node = { id, text, expanded: false, leaf };
|
|
$: if (refLabel) {
|
|
refLabel.style.marginLeft = `-${offset()}rem`;
|
|
refLabel.style.paddingLeft = `${offset()}rem`;
|
|
}
|
|
</script>
|
|
|
|
<li
|
|
bind:this="{ref}"
|
|
role="treeitem"
|
|
id="{id}"
|
|
tabindex="{disabled ? undefined : -1}"
|
|
aria-current="{id === $activeNodeId || undefined}"
|
|
aria-selected="{disabled ? undefined : $selectedNodeIds.includes(id)}"
|
|
aria-disabled="{disabled}"
|
|
class:bx--tree-node="{true}"
|
|
class:bx--tree-leaf-node="{true}"
|
|
class:bx--tree-node--active="{id === $activeNodeId}"
|
|
class:bx--tree-node--selected="{$selectedNodeIds.includes(id)}"
|
|
class:bx--tree-node--disabled="{disabled}"
|
|
class:bx--tree-node--with-icon="{icon}"
|
|
on:click|stopPropagation="{() => {
|
|
if (disabled) return;
|
|
clickNode(node);
|
|
}}"
|
|
on:keydown="{(e) => {
|
|
if (e.key === 'ArrowLeft' || e.key === 'ArrowRight' || e.key === 'Enter') {
|
|
e.stopPropagation();
|
|
}
|
|
|
|
if (e.key === 'ArrowLeft') {
|
|
const parentNode = findParentTreeNode(ref.parentNode);
|
|
if (parentNode) parentNode.focus();
|
|
}
|
|
|
|
if (e.key === 'Enter' || e.key === ' ') {
|
|
e.preventDefault();
|
|
if (disabled) return;
|
|
clickNode(node);
|
|
}
|
|
}}"
|
|
on:focus="{() => {
|
|
focusNode(node);
|
|
}}"
|
|
>
|
|
<div bind:this="{refLabel}" class:bx--tree-node__label="{true}">
|
|
<svelte:component this="{icon}" class="bx--tree-node__icon" />
|
|
{text}
|
|
</div>
|
|
</li>
|