@nysds/nys-tooltip 1.12.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nys-tooltip.js +8 -2
- package/dist/nys-tooltip.js.map +1 -1
- package/package.json +1 -1
package/dist/nys-tooltip.js
CHANGED
|
@@ -8,7 +8,10 @@ var w = Object.defineProperty, b = Object.getOwnPropertyDescriptor, c = (f, t, e
|
|
|
8
8
|
};
|
|
9
9
|
let x = 0;
|
|
10
10
|
const d = class d extends m {
|
|
11
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Lifecycle Methods
|
|
13
|
+
* --------------------------------------------------------------------------
|
|
14
|
+
*/
|
|
12
15
|
constructor() {
|
|
13
16
|
super(), this.id = "", this.text = "", this.inverted = !1, this.for = "", this._active = !1, this._userHasSetPosition = !1, this._originalUserPosition = null, this._internallyUpdatingPosition = !1, this._hideTimeout = null, this._position = null, this._showTooltip = () => {
|
|
14
17
|
if (this._active = !0, this._addScrollListeners(), this._userHasSetPosition && this._originalUserPosition && this._doesPositionFit(this._originalUserPosition)) {
|
|
@@ -79,7 +82,10 @@ const d = class d extends m {
|
|
|
79
82
|
_removeScrollListeners() {
|
|
80
83
|
window.removeEventListener("scroll", this._handleScrollOrResize, !0), window.removeEventListener("resize", this._handleScrollOrResize);
|
|
81
84
|
}
|
|
82
|
-
|
|
85
|
+
/**
|
|
86
|
+
* Functions
|
|
87
|
+
* --------------------------------------------------------------------------
|
|
88
|
+
*/
|
|
83
89
|
_getReferenceElement() {
|
|
84
90
|
const t = this.for;
|
|
85
91
|
if (!t) return null;
|
package/dist/nys-tooltip.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nys-tooltip.js","sources":["../src/nys-tooltip.ts"],"sourcesContent":["import { LitElement, html, unsafeCSS } from \"lit\";\nimport { property, state } from \"lit/decorators.js\";\n// @ts-ignore: SCSS module imported via bundler as inline\nimport styles from \"./nys-tooltip.scss?inline\";\n\nlet tooltipIdCounter = 0; // Counter for generating unique IDs\n\nexport class NysTooltip extends LitElement {\n static styles = unsafeCSS(styles);\n\n @property({ type: String, reflect: true }) id = \"\";\n @property({ type: String }) text = \"\";\n @property({ type: Boolean, reflect: true }) inverted = false;\n @property({ type: String }) for = \"\";\n\n // Track if tooltip is active (hovered or focused)\n @state()\n private _active = false;\n\n // Track if user set position is set explicitly\n private _userHasSetPosition = false;\n private _originalUserPosition: typeof this._position | null = null;\n // Internal flag to prevent dynamic positioning when not needed\n private _internallyUpdatingPosition = false;\n // Flag for hiding the timeout\n private _hideTimeout: number | null = null;\n\n // Position Logic\n private _position: \"top\" | \"bottom\" | \"left\" | \"right\" | null = null;\n\n @property({ type: String, reflect: true })\n get position() {\n return this._position;\n }\n\n set position(value) {\n const oldVal = this._position;\n this._position = value;\n this.requestUpdate(\"position\", oldVal);\n\n // The \"_internallyUpdatingPosition\" flag allows user's set position to take preference\n if (!this._internallyUpdatingPosition) {\n this._userHasSetPosition = value !== null;\n this._originalUserPosition = value;\n }\n }\n\n // Lifecycle Methods\n constructor() {\n super();\n }\n\n connectedCallback() {\n super.connectedCallback();\n\n // Generate a unique ID if not provided\n if (!this.id) {\n this.id = `nys-tooltip-${Date.now()}-${tooltipIdCounter++}`;\n }\n\n window.addEventListener(\"keydown\", this._handleEscapeKey);\n }\n\n disconnectedCallback() {\n super.disconnectedCallback();\n const ref = this._getReferenceElement();\n const tooltip = this.shadowRoot?.querySelector(\".nys-tooltip__content\");\n\n if (ref && tooltip) {\n ref.removeEventListener(\"mouseenter\", this._showTooltip);\n ref.removeEventListener(\"mouseenter\", this._cancelFadeOut);\n ref.removeEventListener(\"mouseleave\", this._handleBlurOrMouseLeave);\n ref.removeEventListener(\"focusin\", this._showTooltip);\n ref.removeEventListener(\"focusout\", this._handleBlurOrMouseLeave);\n tooltip.removeEventListener(\"mouseenter\", this._cancelFadeOut);\n tooltip.removeEventListener(\"mouseleave\", this._handleBlurOrMouseLeave);\n }\n window.removeEventListener(\"keydown\", this._handleEscapeKey);\n }\n\n async firstUpdated() {\n await this.updateComplete;\n const ref = this._getReferenceElement();\n const tooltip = this.shadowRoot?.querySelector(\".nys-tooltip__content\");\n\n if (!ref || !tooltip) return;\n\n this.applyInverseTransform();\n this._applyTooltipPropToFormComponent(ref);\n\n if (\n ref.tagName.toLowerCase() === \"nys-button\" ||\n ref.tagName.toLowerCase() === \"nys-icon\"\n ) {\n this._applyFocusBehavior(ref);\n ref.addEventListener(\"mouseenter\", this._showTooltip);\n ref.addEventListener(\"mouseenter\", this._cancelFadeOut);\n ref.addEventListener(\"mouseleave\", this._handleBlurOrMouseLeave);\n ref.addEventListener(\"focusin\", this._showTooltip);\n ref.addEventListener(\"focusout\", this._handleBlurOrMouseLeave);\n tooltip.addEventListener(\"mouseenter\", this._cancelFadeOut);\n tooltip.addEventListener(\"mouseleave\", this._handleBlurOrMouseLeave);\n }\n }\n\n updated(changedProps: Map<string, unknown>) {\n super.updated(changedProps);\n\n const ref = this._getReferenceElement();\n if (!ref) return;\n\n this._positionStartingBase();\n\n // Accounts for tooltip's text change (for code editor changes & VO)\n if (changedProps.has(\"text\")) {\n this._applyTooltipPropToFormComponent(ref);\n }\n }\n\n // Event Handlers\n // When toggling tooltip, check if user has set position to give it preference it space allows. Otherwise dynamically position tooltip.\n private _showTooltip = () => {\n this._active = true;\n this._addScrollListeners();\n\n // Try to honor user's original preference first\n if (this._userHasSetPosition && this._originalUserPosition) {\n if (this._doesPositionFit(this._originalUserPosition)) {\n this.position = this._originalUserPosition;\n // Check if current tooltip position overflows to edge of screen\n this.updateComplete.then(() => {\n this._userPositionTooltip();\n });\n return;\n }\n }\n\n // Otherwise fall back to auto logic\n this._autoPositionTooltip();\n };\n\n private _handleBlurOrMouseLeave = () => {\n const ref = this._getReferenceElement();\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n\n if (ref === document.activeElement) return;\n if (!ref || !tooltip) return;\n\n this._triggerFadeOut(tooltip);\n };\n\n private _triggerFadeOut(tooltip: HTMLElement) {\n if (!tooltip || this._hideTimeout) return;\n\n tooltip.classList.add(\"fade-out\");\n\n this._hideTimeout = window.setTimeout(() => {\n this._active = false;\n this._removeScrollListeners();\n this._positionStartingBase();\n this._resetTooltipPositioningStyles(tooltip);\n\n tooltip.classList.remove(\"fade-out\");\n this._hideTimeout = null;\n }, 200);\n }\n\n private _cancelFadeOut = () => {\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n const ref = this._getReferenceElement();\n\n if (!tooltip || !ref) return;\n\n const isPointerInsideTooltip = tooltip.matches(\":hover\");\n const isPointerInsideRef = ref.matches(\":hover\");\n\n const isTouched = document.activeElement === ref;\n\n if (!isPointerInsideTooltip && !isPointerInsideRef && !isTouched) {\n return;\n }\n\n if (this._hideTimeout) {\n clearTimeout(this._hideTimeout);\n this._hideTimeout = null;\n }\n\n tooltip.classList.remove(\"fade-out\");\n this._active = true;\n };\n\n // Listen to window scroll so a focus tooltip can auto position even when user move across the page\n private _addScrollListeners() {\n window.addEventListener(\"scroll\", this._handleScrollOrResize, true);\n window.addEventListener(\"resize\", this._handleScrollOrResize);\n }\n\n private _removeScrollListeners() {\n window.removeEventListener(\"scroll\", this._handleScrollOrResize, true);\n window.removeEventListener(\"resize\", this._handleScrollOrResize);\n }\n\n private _handleScrollOrResize = () => {\n if (!this._active || this._hideTimeout) return;\n\n this._showTooltip();\n };\n\n private _handleEscapeKey = (e: KeyboardEvent) => {\n if (e.key === \"Escape\" && this._active) {\n this._active = false;\n this._removeScrollListeners();\n\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n if (tooltip) {\n this._resetTooltipPositioningStyles(tooltip);\n }\n }\n };\n\n // Functions\n private _getReferenceElement() {\n const targetId = this.for;\n if (!targetId) return null;\n\n // lightDOM search\n let htmlElement = document.getElementById(targetId);\n if (htmlElement) return htmlElement;\n\n // Search recursively through shadow DOMs (e.g. for nys-label within other component's shadowDOM)\n const findInShadows = (root: ParentNode): HTMLElement | null => {\n for (const el of Array.from(root.querySelectorAll(\"*\"))) {\n const shadowElement = el.shadowRoot;\n if (shadowElement) {\n const found = shadowElement.getElementById(targetId);\n if (found) return found;\n\n const deeper = findInShadows(shadowElement);\n if (deeper) return deeper;\n }\n }\n return null;\n };\n\n return findInShadows(document);\n }\n\n // We need to pass `ariaLabel` or `ariaDescription` to the nys-components so they can announce both their label and the tooltip's text\n private async _passAria(el: HTMLElement) {\n const tagName = el.tagName.toLowerCase();\n\n if (tagName === \"nys-icon\") {\n // For nys-icon, use ariaLabel instead\n el.setAttribute(\"ariaLabel\", `Hint: ${this.text}`);\n } else if (tagName === \"nys-button\") {\n // For other components like nys-button, use ariaDescription\n el.setAttribute(\"ariaDescription\", `, Hint: ${this.text}`);\n }\n }\n\n /**\n * In React, the reference element found is often the native HTML element within the nys-component.\n * Therefore, this function accounts for the closest NYS component ancestor that supports a tooltip prop.\n */\n private _applyTooltipPropToFormComponent(ref: HTMLElement) {\n const tagName = ref.tagName.toLowerCase();\n if (!tagName.startsWith(\"nys-\")) return;\n\n if (tagName === \"nys-button\" || tagName === \"nys-icon\") {\n // Already handled elsewhere in this component; we just ensure we attach listeners\n this._applyFocusBehavior(ref);\n this._passAria(ref);\n return;\n }\n\n if (\"tooltip\" in ref) {\n ref.tooltip = this.text;\n }\n }\n\n // Applies focus behavior to an otherwise non focus element (i.e. nys-icon is non focusable by default)\n private async _applyFocusBehavior(el: HTMLElement) {\n el.style.cursor = \"pointer\";\n const tagName = el.tagName.toLowerCase();\n\n if (tagName === \"nys-icon\") {\n if (\"updateComplete\" in el) {\n await (el as any).updateComplete;\n }\n const svg = el.shadowRoot?.querySelector(\"svg\");\n if (svg) {\n svg.setAttribute(\"tabindex\", \"0\");\n }\n }\n }\n\n /**\n * Checks if the tooltip fits inside the viewport on the given side of the trigger.\n * Used for auto-positioning. Ignores text overflow for now.\n */\n private _doesPositionFit(position: typeof this._position) {\n const ref = this._getReferenceElement();\n const tooltip = this.shadowRoot?.querySelector(\".nys-tooltip__content\");\n\n if (!ref || !tooltip || position == null) return;\n\n const refRect = ref.getBoundingClientRect();\n const tooltipRect = tooltip.getBoundingClientRect();\n\n // Define some margin buffer between tooltip and trigger (to avoid touching the edges too tightly)\n const margin = 8;\n\n // Available space on each side relative to trigger rect and viewport\n const spaceAvailable = {\n top: refRect.top - margin,\n left: refRect.left - margin,\n bottom: window.innerHeight - refRect.bottom - margin,\n right: window.innerWidth - refRect.right - margin,\n };\n\n // Check if tooltip fits on each side (compare available space vs tooltip size)\n const fits = {\n top: spaceAvailable.top >= tooltipRect.height,\n bottom: spaceAvailable.bottom >= tooltipRect.height,\n left: spaceAvailable.left >= tooltipRect.width,\n right: spaceAvailable.right >= tooltipRect.width,\n };\n\n return fits[position];\n }\n\n private _userPositionTooltip() {\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n const ref = this._getReferenceElement();\n if (tooltip && ref) {\n this._positionTooltipElement(ref, tooltip, this.position);\n this._shiftTooltipIntoViewport(tooltip);\n }\n }\n\n // Calculates the best placement based on available space (flips placement if it doesn't fit)\n private async _autoPositionTooltip() {\n const ref = this._getReferenceElement();\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n\n if (!ref || !tooltip) return;\n\n const refRect = ref.getBoundingClientRect();\n const margin = 8;\n\n const spaceAvailable = {\n top: refRect.top - margin,\n left: refRect.left - margin,\n bottom: window.innerHeight - refRect.bottom - margin,\n right: window.innerWidth - refRect.right - margin,\n };\n\n // Default tryOrder for auto mode\n let tryOrder: Array<keyof typeof spaceAvailable> = [\n \"top\",\n \"bottom\",\n \"right\",\n \"left\",\n ];\n\n // If user explicitly set a preferred position (even if it didn’t fit),\n // favor it first before trying others\n if (this._userHasSetPosition && this._originalUserPosition) {\n const userPosition = this._originalUserPosition;\n if (userPosition === \"left\") {\n tryOrder = [\"left\", \"right\", \"top\", \"bottom\"];\n } else if (userPosition === \"right\") {\n tryOrder = [\"right\", \"left\", \"top\", \"bottom\"];\n } else if (userPosition === \"top\") {\n tryOrder = [\"top\", \"bottom\", \"right\", \"left\"];\n } else if (userPosition === \"bottom\") {\n tryOrder = [\"bottom\", \"top\", \"right\", \"left\"];\n }\n }\n\n // 1) Try to find the first side that fits\n for (const pos of tryOrder) {\n if (this._doesPositionFit(pos)) {\n this._setInternalPosition(pos);\n await this.updateComplete;\n this._positionTooltipElement(ref, tooltip, pos);\n this._shiftTooltipIntoViewport(tooltip);\n return;\n }\n }\n\n // 2) Fallback: pick the side with the most space\n let bestPosition: keyof typeof spaceAvailable = \"top\";\n let maxSpace = spaceAvailable.top;\n\n for (const pos of tryOrder) {\n if (spaceAvailable[pos] > maxSpace) {\n maxSpace = spaceAvailable[pos];\n bestPosition = pos;\n }\n }\n this._setInternalPosition(bestPosition);\n await this.updateComplete;\n this._positionTooltipElement(ref, tooltip, bestPosition);\n this._shiftTooltipIntoViewport(tooltip);\n }\n\n private _positionStartingBase() {\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n\n if (!tooltip) return;\n\n tooltip.style.top = \"0px\";\n tooltip.style.left = \"0px\";\n }\n\n private _positionTooltipElement(\n ref: HTMLElement,\n tooltip: HTMLElement,\n bestPosition: typeof this._position,\n ) {\n const refRect = ref.getBoundingClientRect();\n const tooltipRect = tooltip.getBoundingClientRect();\n const margin = 8;\n\n let top = 0;\n let left = 0;\n\n switch (bestPosition) {\n case \"top\":\n top = refRect.top - tooltipRect.height - margin;\n left = refRect.left + refRect.width / 2 - tooltipRect.width / 2;\n break;\n case \"bottom\":\n top = refRect.bottom + margin;\n left = refRect.left + refRect.width / 2 - tooltipRect.width / 2;\n break;\n case \"left\":\n top = refRect.top + refRect.height / 2 - tooltipRect.height / 2;\n left = refRect.left - tooltipRect.width - margin;\n break;\n case \"right\":\n top = refRect.top + refRect.height / 2 - tooltipRect.height / 2;\n left = refRect.right + margin;\n break;\n default:\n // Default to top\n top = refRect.top - tooltipRect.height - margin;\n left = refRect.left + refRect.width / 2 - tooltipRect.width / 2;\n break;\n }\n\n tooltip.style.top = `${top}px`;\n tooltip.style.left = `${left}px`;\n }\n\n // Like storybook, some user's parent container may contain transform styling, which sets a new coordinate system.\n // This function reverse any container of that scale to not interfere with tooltip calculation.\n private applyInverseTransform() {\n document.querySelectorAll('div[scale=\"1\"]').forEach((el) => {\n (el as HTMLElement).style.transform = \"none\";\n });\n }\n\n private _setInternalPosition(bestPosition: typeof this._position) {\n this._internallyUpdatingPosition = true;\n this.position = bestPosition;\n this._internallyUpdatingPosition = false;\n }\n\n // Determines if text of tooltip over-extends outside of viewport edge and adjust tooltip for horizontal overflow\n private _shiftTooltipIntoViewport(tooltip: HTMLElement) {\n const ref = this._getReferenceElement();\n if (!ref) return;\n\n const refRect = ref.getBoundingClientRect();\n const tooltipRect = tooltip.getBoundingClientRect();\n\n const refCenter = refRect.left + refRect.width / 2;\n\n const overflowLeft = tooltipRect.left < 0;\n const overflowRight = tooltipRect.right > window.innerWidth;\n\n // Tooltip is past the viewport edge, shift it inwards\n if (overflowLeft) {\n tooltip.style.left = \"10px\";\n tooltip.style.transform = \"none\";\n } else if (overflowRight) {\n tooltip.style.right = \"0px\";\n tooltip.style.left = \"auto\";\n tooltip.style.transform = \"none\";\n }\n\n // Recalculate tooltip rect after any shift\n const newTooltipRect = tooltip.getBoundingClientRect();\n\n // Arrow offset relative to tooltip width to maintain accuracy on zoom and out-of-bounds\n const arrowOffsetRatio =\n (refCenter - newTooltipRect.left) / newTooltipRect.width;\n const arrowOffsetPercent = Math.max(0, Math.min(1, arrowOffsetRatio)) * 100;\n\n tooltip.style.setProperty(\"--arrow-offset-x\", `${arrowOffsetPercent}%`);\n }\n\n // Reposition tooltip back to original set position (e.g. top, left, bottom, right) to avoid positioning issue base on last position\n private _resetTooltipPositioningStyles(tooltip: HTMLElement) {\n tooltip.style.left = \"\";\n tooltip.style.right = \"\";\n tooltip.style.top = \"\";\n tooltip.style.transform = \"\";\n tooltip.style.removeProperty(\"--arrow-offset-x\");\n }\n\n render() {\n return html`\n <div class=\"nys-tooltip__main\">\n ${this.text?.trim()\n ? html`<div\n id=${this.id}\n class=\"nys-tooltip__content\"\n role=\"tooltip\"\n aria-hidden=${this._active && !this._hideTimeout\n ? \"false\"\n : \"true\"}\n ?active=${this._active}\n style=\"visibility: ${this._active ? \"visible\" : \"hidden\"}; \"\n >\n <div class=\"nys-tooltip__inner\">${this.text}</div>\n <span class=\"nys-tooltip__arrow\"></span>\n </div>`\n : \"\"}\n </div>\n `;\n }\n}\n\nif (!customElements.get(\"nys-tooltip\")) {\n customElements.define(\"nys-tooltip\", NysTooltip);\n}\n"],"names":["tooltipIdCounter","_NysTooltip","LitElement","ref","tooltip","isPointerInsideTooltip","isPointerInsideRef","isTouched","e","value","oldVal","changedProps","targetId","htmlElement","findInShadows","root","el","shadowElement","found","deeper","tagName","svg","position","refRect","tooltipRect","margin","spaceAvailable","tryOrder","userPosition","pos","bestPosition","maxSpace","top","left","refCenter","overflowLeft","overflowRight","newTooltipRect","arrowOffsetRatio","arrowOffsetPercent","html","unsafeCSS","styles","NysTooltip","__decorateClass","property","state"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"nys-tooltip.js","sources":["../src/nys-tooltip.ts"],"sourcesContent":["import { LitElement, html, unsafeCSS } from \"lit\";\nimport { property, state } from \"lit/decorators.js\";\n// @ts-ignore: SCSS module imported via bundler as inline\nimport styles from \"./nys-tooltip.scss?inline\";\n\nlet tooltipIdCounter = 0;\n\n/**\n * `<nys-tooltip>` is a custom tooltip component for NYS design system elements.\n * It supports dynamic positioning, screen-reader accessibility, keyboard interaction,\n * and viewport overflow handling.\n *\n * The tooltip automatically positions itself relative to a target element specified\n * via the `for` attribute, but can also respect a user-defined position.\n *\n * @fires nys-focus - Dispatched when the reference element receives focus (via keyboard or programmatically).\n * @fires nys-blur - Dispatched when the reference element loses focus or mouse leaves the tooltip.\n *\n * Notes:\n * - Tooltip visibility is automatically managed on hover/focus of the reference element.\n * - The component adjusts position dynamically to prevent overflow off-screen.\n * - Supports keyboard dismissal with the Escape key.\n */\n\nexport class NysTooltip extends LitElement {\n static styles = unsafeCSS(styles);\n\n @property({ type: String, reflect: true }) id = \"\";\n @property({ type: String }) text = \"\";\n @property({ type: Boolean, reflect: true }) inverted = false;\n @property({ type: String }) for = \"\";\n\n // Track if tooltip is active (hovered or focused)\n @state()\n private _active = false;\n\n // Track if user set position is set explicitly\n private _userHasSetPosition = false;\n private _originalUserPosition: typeof this._position | null = null;\n // Internal flag to prevent dynamic positioning when not needed\n private _internallyUpdatingPosition = false;\n // Flag for hiding the timeout\n private _hideTimeout: number | null = null;\n\n // Position Logic\n private _position: \"top\" | \"bottom\" | \"left\" | \"right\" | null = null;\n\n @property({ type: String, reflect: true })\n get position() {\n return this._position;\n }\n\n set position(value) {\n const oldVal = this._position;\n this._position = value;\n this.requestUpdate(\"position\", oldVal);\n\n // The \"_internallyUpdatingPosition\" flag allows user's set position to take preference\n if (!this._internallyUpdatingPosition) {\n this._userHasSetPosition = value !== null;\n this._originalUserPosition = value;\n }\n }\n\n /**\n * Lifecycle Methods\n * --------------------------------------------------------------------------\n */\n\n constructor() {\n super();\n }\n\n connectedCallback() {\n super.connectedCallback();\n\n // Generate a unique ID if not provided\n if (!this.id) {\n this.id = `nys-tooltip-${Date.now()}-${tooltipIdCounter++}`;\n }\n\n window.addEventListener(\"keydown\", this._handleEscapeKey);\n }\n\n disconnectedCallback() {\n super.disconnectedCallback();\n const ref = this._getReferenceElement();\n const tooltip = this.shadowRoot?.querySelector(\".nys-tooltip__content\");\n\n if (ref && tooltip) {\n ref.removeEventListener(\"mouseenter\", this._showTooltip);\n ref.removeEventListener(\"mouseenter\", this._cancelFadeOut);\n ref.removeEventListener(\"mouseleave\", this._handleBlurOrMouseLeave);\n ref.removeEventListener(\"focusin\", this._showTooltip);\n ref.removeEventListener(\"focusout\", this._handleBlurOrMouseLeave);\n tooltip.removeEventListener(\"mouseenter\", this._cancelFadeOut);\n tooltip.removeEventListener(\"mouseleave\", this._handleBlurOrMouseLeave);\n }\n window.removeEventListener(\"keydown\", this._handleEscapeKey);\n }\n\n async firstUpdated() {\n await this.updateComplete;\n const ref = this._getReferenceElement();\n const tooltip = this.shadowRoot?.querySelector(\".nys-tooltip__content\");\n\n if (!ref || !tooltip) return;\n\n this.applyInverseTransform();\n this._applyTooltipPropToFormComponent(ref);\n\n if (\n ref.tagName.toLowerCase() === \"nys-button\" ||\n ref.tagName.toLowerCase() === \"nys-icon\"\n ) {\n this._applyFocusBehavior(ref);\n ref.addEventListener(\"mouseenter\", this._showTooltip);\n ref.addEventListener(\"mouseenter\", this._cancelFadeOut);\n ref.addEventListener(\"mouseleave\", this._handleBlurOrMouseLeave);\n ref.addEventListener(\"focusin\", this._showTooltip);\n ref.addEventListener(\"focusout\", this._handleBlurOrMouseLeave);\n tooltip.addEventListener(\"mouseenter\", this._cancelFadeOut);\n tooltip.addEventListener(\"mouseleave\", this._handleBlurOrMouseLeave);\n }\n }\n\n updated(changedProps: Map<string, unknown>) {\n super.updated(changedProps);\n\n const ref = this._getReferenceElement();\n if (!ref) return;\n\n this._positionStartingBase();\n\n // Accounts for tooltip's text change (for code editor changes & VO)\n if (changedProps.has(\"text\")) {\n this._applyTooltipPropToFormComponent(ref);\n }\n }\n\n /**\n * Event Handlers\n * --------------------------------------------------------------------------\n */\n\n // When toggling tooltip, check if user has set position to give it preference it space allows. Otherwise dynamically position tooltip.\n private _showTooltip = () => {\n this._active = true;\n this._addScrollListeners();\n\n // Try to honor user's original preference first\n if (this._userHasSetPosition && this._originalUserPosition) {\n if (this._doesPositionFit(this._originalUserPosition)) {\n this.position = this._originalUserPosition;\n // Check if current tooltip position overflows to edge of screen\n this.updateComplete.then(() => {\n this._userPositionTooltip();\n });\n return;\n }\n }\n\n // Otherwise fall back to auto logic\n this._autoPositionTooltip();\n };\n\n private _handleBlurOrMouseLeave = () => {\n const ref = this._getReferenceElement();\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n\n if (ref === document.activeElement) return;\n if (!ref || !tooltip) return;\n\n this._triggerFadeOut(tooltip);\n };\n\n private _triggerFadeOut(tooltip: HTMLElement) {\n if (!tooltip || this._hideTimeout) return;\n\n tooltip.classList.add(\"fade-out\");\n\n this._hideTimeout = window.setTimeout(() => {\n this._active = false;\n this._removeScrollListeners();\n this._positionStartingBase();\n this._resetTooltipPositioningStyles(tooltip);\n\n tooltip.classList.remove(\"fade-out\");\n this._hideTimeout = null;\n }, 200);\n }\n\n private _cancelFadeOut = () => {\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n const ref = this._getReferenceElement();\n\n if (!tooltip || !ref) return;\n\n const isPointerInsideTooltip = tooltip.matches(\":hover\");\n const isPointerInsideRef = ref.matches(\":hover\");\n\n const isTouched = document.activeElement === ref;\n\n if (!isPointerInsideTooltip && !isPointerInsideRef && !isTouched) {\n return;\n }\n\n if (this._hideTimeout) {\n clearTimeout(this._hideTimeout);\n this._hideTimeout = null;\n }\n\n tooltip.classList.remove(\"fade-out\");\n this._active = true;\n };\n\n // Listen to window scroll so a focus tooltip can auto position even when user move across the page\n private _addScrollListeners() {\n window.addEventListener(\"scroll\", this._handleScrollOrResize, true);\n window.addEventListener(\"resize\", this._handleScrollOrResize);\n }\n\n private _removeScrollListeners() {\n window.removeEventListener(\"scroll\", this._handleScrollOrResize, true);\n window.removeEventListener(\"resize\", this._handleScrollOrResize);\n }\n\n private _handleScrollOrResize = () => {\n if (!this._active || this._hideTimeout) return;\n\n this._showTooltip();\n };\n\n private _handleEscapeKey = (e: KeyboardEvent) => {\n if (e.key === \"Escape\" && this._active) {\n this._active = false;\n this._removeScrollListeners();\n\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n if (tooltip) {\n this._resetTooltipPositioningStyles(tooltip);\n }\n }\n };\n\n /**\n * Functions\n * --------------------------------------------------------------------------\n */\n\n private _getReferenceElement() {\n const targetId = this.for;\n if (!targetId) return null;\n\n // lightDOM search\n let htmlElement = document.getElementById(targetId);\n if (htmlElement) return htmlElement;\n\n // Search recursively through shadow DOMs (e.g. for nys-label within other component's shadowDOM)\n const findInShadows = (root: ParentNode): HTMLElement | null => {\n for (const el of Array.from(root.querySelectorAll(\"*\"))) {\n const shadowElement = el.shadowRoot;\n if (shadowElement) {\n const found = shadowElement.getElementById(targetId);\n if (found) return found;\n\n const deeper = findInShadows(shadowElement);\n if (deeper) return deeper;\n }\n }\n return null;\n };\n\n return findInShadows(document);\n }\n\n // We need to pass `ariaLabel` or `ariaDescription` to the nys-components so they can announce both their label and the tooltip's text\n private async _passAria(el: HTMLElement) {\n const tagName = el.tagName.toLowerCase();\n\n if (tagName === \"nys-icon\") {\n // For nys-icon, use ariaLabel instead\n el.setAttribute(\"ariaLabel\", `Hint: ${this.text}`);\n } else if (tagName === \"nys-button\") {\n // For other components like nys-button, use ariaDescription\n el.setAttribute(\"ariaDescription\", `, Hint: ${this.text}`);\n }\n }\n\n /**\n * In React, the reference element found is often the native HTML element within the nys-component.\n * Therefore, this function accounts for the closest NYS component ancestor that supports a tooltip prop.\n */\n private _applyTooltipPropToFormComponent(ref: HTMLElement) {\n const tagName = ref.tagName.toLowerCase();\n if (!tagName.startsWith(\"nys-\")) return;\n\n if (tagName === \"nys-button\" || tagName === \"nys-icon\") {\n // Already handled elsewhere in this component; we just ensure we attach listeners\n this._applyFocusBehavior(ref);\n this._passAria(ref);\n return;\n }\n\n if (\"tooltip\" in ref) {\n ref.tooltip = this.text;\n }\n }\n\n // Applies focus behavior to an otherwise non focus element (i.e. nys-icon is non focusable by default)\n private async _applyFocusBehavior(el: HTMLElement) {\n el.style.cursor = \"pointer\";\n const tagName = el.tagName.toLowerCase();\n\n if (tagName === \"nys-icon\") {\n if (\"updateComplete\" in el) {\n await (el as any).updateComplete;\n }\n const svg = el.shadowRoot?.querySelector(\"svg\");\n if (svg) {\n svg.setAttribute(\"tabindex\", \"0\");\n }\n }\n }\n\n /**\n * Checks if the tooltip fits inside the viewport on the given side of the trigger.\n * Used for auto-positioning. Ignores text overflow for now.\n */\n private _doesPositionFit(position: typeof this._position) {\n const ref = this._getReferenceElement();\n const tooltip = this.shadowRoot?.querySelector(\".nys-tooltip__content\");\n\n if (!ref || !tooltip || position == null) return;\n\n const refRect = ref.getBoundingClientRect();\n const tooltipRect = tooltip.getBoundingClientRect();\n\n // Define some margin buffer between tooltip and trigger (to avoid touching the edges too tightly)\n const margin = 8;\n\n // Available space on each side relative to trigger rect and viewport\n const spaceAvailable = {\n top: refRect.top - margin,\n left: refRect.left - margin,\n bottom: window.innerHeight - refRect.bottom - margin,\n right: window.innerWidth - refRect.right - margin,\n };\n\n // Check if tooltip fits on each side (compare available space vs tooltip size)\n const fits = {\n top: spaceAvailable.top >= tooltipRect.height,\n bottom: spaceAvailable.bottom >= tooltipRect.height,\n left: spaceAvailable.left >= tooltipRect.width,\n right: spaceAvailable.right >= tooltipRect.width,\n };\n\n return fits[position];\n }\n\n private _userPositionTooltip() {\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n const ref = this._getReferenceElement();\n if (tooltip && ref) {\n this._positionTooltipElement(ref, tooltip, this.position);\n this._shiftTooltipIntoViewport(tooltip);\n }\n }\n\n // Calculates the best placement based on available space (flips placement if it doesn't fit)\n private async _autoPositionTooltip() {\n const ref = this._getReferenceElement();\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n\n if (!ref || !tooltip) return;\n\n const refRect = ref.getBoundingClientRect();\n const margin = 8;\n\n const spaceAvailable = {\n top: refRect.top - margin,\n left: refRect.left - margin,\n bottom: window.innerHeight - refRect.bottom - margin,\n right: window.innerWidth - refRect.right - margin,\n };\n\n // Default tryOrder for auto mode\n let tryOrder: Array<keyof typeof spaceAvailable> = [\n \"top\",\n \"bottom\",\n \"right\",\n \"left\",\n ];\n\n // If user explicitly set a preferred position (even if it didn’t fit),\n // favor it first before trying others\n if (this._userHasSetPosition && this._originalUserPosition) {\n const userPosition = this._originalUserPosition;\n if (userPosition === \"left\") {\n tryOrder = [\"left\", \"right\", \"top\", \"bottom\"];\n } else if (userPosition === \"right\") {\n tryOrder = [\"right\", \"left\", \"top\", \"bottom\"];\n } else if (userPosition === \"top\") {\n tryOrder = [\"top\", \"bottom\", \"right\", \"left\"];\n } else if (userPosition === \"bottom\") {\n tryOrder = [\"bottom\", \"top\", \"right\", \"left\"];\n }\n }\n\n // 1) Try to find the first side that fits\n for (const pos of tryOrder) {\n if (this._doesPositionFit(pos)) {\n this._setInternalPosition(pos);\n await this.updateComplete;\n this._positionTooltipElement(ref, tooltip, pos);\n this._shiftTooltipIntoViewport(tooltip);\n return;\n }\n }\n\n // 2) Fallback: pick the side with the most space\n let bestPosition: keyof typeof spaceAvailable = \"top\";\n let maxSpace = spaceAvailable.top;\n\n for (const pos of tryOrder) {\n if (spaceAvailable[pos] > maxSpace) {\n maxSpace = spaceAvailable[pos];\n bestPosition = pos;\n }\n }\n this._setInternalPosition(bestPosition);\n await this.updateComplete;\n this._positionTooltipElement(ref, tooltip, bestPosition);\n this._shiftTooltipIntoViewport(tooltip);\n }\n\n private _positionStartingBase() {\n const tooltip = this.shadowRoot?.querySelector(\n \".nys-tooltip__content\",\n ) as HTMLElement;\n\n if (!tooltip) return;\n\n tooltip.style.top = \"0px\";\n tooltip.style.left = \"0px\";\n }\n\n private _positionTooltipElement(\n ref: HTMLElement,\n tooltip: HTMLElement,\n bestPosition: typeof this._position,\n ) {\n const refRect = ref.getBoundingClientRect();\n const tooltipRect = tooltip.getBoundingClientRect();\n const margin = 8;\n\n let top = 0;\n let left = 0;\n\n switch (bestPosition) {\n case \"top\":\n top = refRect.top - tooltipRect.height - margin;\n left = refRect.left + refRect.width / 2 - tooltipRect.width / 2;\n break;\n case \"bottom\":\n top = refRect.bottom + margin;\n left = refRect.left + refRect.width / 2 - tooltipRect.width / 2;\n break;\n case \"left\":\n top = refRect.top + refRect.height / 2 - tooltipRect.height / 2;\n left = refRect.left - tooltipRect.width - margin;\n break;\n case \"right\":\n top = refRect.top + refRect.height / 2 - tooltipRect.height / 2;\n left = refRect.right + margin;\n break;\n default:\n // Default to top\n top = refRect.top - tooltipRect.height - margin;\n left = refRect.left + refRect.width / 2 - tooltipRect.width / 2;\n break;\n }\n\n tooltip.style.top = `${top}px`;\n tooltip.style.left = `${left}px`;\n }\n\n // Like storybook, some user's parent container may contain transform styling, which sets a new coordinate system.\n // This function reverse any container of that scale to not interfere with tooltip calculation.\n private applyInverseTransform() {\n document.querySelectorAll('div[scale=\"1\"]').forEach((el) => {\n (el as HTMLElement).style.transform = \"none\";\n });\n }\n\n private _setInternalPosition(bestPosition: typeof this._position) {\n this._internallyUpdatingPosition = true;\n this.position = bestPosition;\n this._internallyUpdatingPosition = false;\n }\n\n // Determines if text of tooltip over-extends outside of viewport edge and adjust tooltip for horizontal overflow\n private _shiftTooltipIntoViewport(tooltip: HTMLElement) {\n const ref = this._getReferenceElement();\n if (!ref) return;\n\n const refRect = ref.getBoundingClientRect();\n const tooltipRect = tooltip.getBoundingClientRect();\n\n const refCenter = refRect.left + refRect.width / 2;\n\n const overflowLeft = tooltipRect.left < 0;\n const overflowRight = tooltipRect.right > window.innerWidth;\n\n // Tooltip is past the viewport edge, shift it inwards\n if (overflowLeft) {\n tooltip.style.left = \"10px\";\n tooltip.style.transform = \"none\";\n } else if (overflowRight) {\n tooltip.style.right = \"0px\";\n tooltip.style.left = \"auto\";\n tooltip.style.transform = \"none\";\n }\n\n // Recalculate tooltip rect after any shift\n const newTooltipRect = tooltip.getBoundingClientRect();\n\n // Arrow offset relative to tooltip width to maintain accuracy on zoom and out-of-bounds\n const arrowOffsetRatio =\n (refCenter - newTooltipRect.left) / newTooltipRect.width;\n const arrowOffsetPercent = Math.max(0, Math.min(1, arrowOffsetRatio)) * 100;\n\n tooltip.style.setProperty(\"--arrow-offset-x\", `${arrowOffsetPercent}%`);\n }\n\n // Reposition tooltip back to original set position (e.g. top, left, bottom, right) to avoid positioning issue base on last position\n private _resetTooltipPositioningStyles(tooltip: HTMLElement) {\n tooltip.style.left = \"\";\n tooltip.style.right = \"\";\n tooltip.style.top = \"\";\n tooltip.style.transform = \"\";\n tooltip.style.removeProperty(\"--arrow-offset-x\");\n }\n\n render() {\n return html`\n <div class=\"nys-tooltip__main\">\n ${this.text?.trim()\n ? html`<div\n id=${this.id}\n class=\"nys-tooltip__content\"\n role=\"tooltip\"\n aria-hidden=${this._active && !this._hideTimeout\n ? \"false\"\n : \"true\"}\n ?active=${this._active}\n style=\"visibility: ${this._active ? \"visible\" : \"hidden\"}; \"\n >\n <div class=\"nys-tooltip__inner\">${this.text}</div>\n <span class=\"nys-tooltip__arrow\"></span>\n </div>`\n : \"\"}\n </div>\n `;\n }\n}\n\nif (!customElements.get(\"nys-tooltip\")) {\n customElements.define(\"nys-tooltip\", NysTooltip);\n}\n"],"names":["tooltipIdCounter","_NysTooltip","LitElement","ref","tooltip","isPointerInsideTooltip","isPointerInsideRef","isTouched","e","value","oldVal","changedProps","targetId","htmlElement","findInShadows","root","el","shadowElement","found","deeper","tagName","svg","position","refRect","tooltipRect","margin","spaceAvailable","tryOrder","userPosition","pos","bestPosition","maxSpace","top","left","refCenter","overflowLeft","overflowRight","newTooltipRect","arrowOffsetRatio","arrowOffsetPercent","html","unsafeCSS","styles","NysTooltip","__decorateClass","property","state"],"mappings":"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"}
|