mi6 / ic-ui-kit

Intelligence Community UI Kit (based on StencilJS)
MIT License
25 stars 27 forks source link

[ic-tree-item] Issues with other elements when truncating a tree item #2704

Open GCHQ-Developer-530 opened 2 hours ago

GCHQ-Developer-530 commented 2 hours ago

Summary of the bug

When truncating the text label on a tree item, a tooltip should show.

If you add an icon to a tree item and a really long label, the tooltip shows but the icon is not centred. If you add an extra long label to a parent tree item, the tooltip shows but the arrow dropdown disappears. If you append the dropdown to the tree content before the tooltip e.g.

if (!tooltip) {
        const tooltipEl = document.createElement("ic-tooltip");
        tooltipEl.setAttribute("target", this.el.id);
        tooltipEl.setAttribute("label", typographyEl.textContent);
        tooltipEl.classList.add("ic-tooltip-overflow");
        tooltipEl.setAttribute("placement", "right");
        this.isParent && treeContent.appendChild(this.dropdownSpanEl); // ADD IN THIS LINE
        treeContent.appendChild(tooltipEl);
        tooltipEl.appendChild(typographyEl);
      }

Then the tooltip doesn't show as it's appended after the typography element in the DOM, with nothing inside it.

Separate to all of this behaviour, on our guidance site (v3 tree view branch) if you add a label that's too long, it doesn't truncate at all - just wraps.

📸 Screenshots or code

Guidance site behaviour:

Screenshot 2024-11-01 at 14 02 43

Current storybook behaviour:

Screenshot 2024-11-01 at 14 02 05

Storybook behaviour if you append the dropdown span:

Screenshot 2024-11-01 at 14 51 26

🧐 Expected behaviour

Truncation should work the same for any tree item no matter the other elements in the tree content.

Additional info

When fixing this issue, please check that it works in the design system tree view branch too by doing npm pack in the ui kit canary web components, react and docs folders and installing that locally on the tree view branch.

NOTE: This behaviour has been seen by amending the focus inset storybook example as it represents the guidance site, but the code suggests it's probably an issue when focusInset={false} as well.

GCHQ-Developer-530 commented 2 hours ago

Also check if the icon needs the styles sorting when tree view header is truncated