2022-07-18 18:33:34 -04:00
|
|
|
import tippy from 'tippy.js';
|
|
|
|
|
2022-08-09 08:37:34 -04:00
|
|
|
export function createTippy(target, opts = {}) {
|
|
|
|
const instance = tippy(target, {
|
2022-07-18 18:33:34 -04:00
|
|
|
appendTo: document.body,
|
2022-09-02 18:06:54 -04:00
|
|
|
placement: target.getAttribute('data-placement') || 'top-start',
|
2022-07-18 18:33:34 -04:00
|
|
|
animation: false,
|
2022-08-23 16:17:42 -04:00
|
|
|
allowHTML: false,
|
2022-12-25 12:17:48 -05:00
|
|
|
hideOnClick: false,
|
2022-09-09 17:03:18 -04:00
|
|
|
interactiveBorder: 30,
|
|
|
|
ignoreAttributes: true,
|
2022-08-09 08:37:34 -04:00
|
|
|
maxWidth: 500, // increase over default 350px
|
2022-07-18 18:33:34 -04:00
|
|
|
arrow: `<svg width="16" height="7"><path d="m0 7 8-7 8 7Z" class="tippy-svg-arrow-outer"/><path d="m0 8 8-7 8 7Z" class="tippy-svg-arrow-inner"/></svg>`,
|
2022-08-09 08:37:34 -04:00
|
|
|
...(opts?.role && {theme: opts.role}),
|
2022-07-18 18:33:34 -04:00
|
|
|
...opts,
|
|
|
|
});
|
2022-08-09 08:37:34 -04:00
|
|
|
|
2022-08-10 10:47:28 -04:00
|
|
|
// for popups where content refers to a DOM element, we use the 'tippy-target' class
|
|
|
|
// to initially hide the content, now we can remove it as the content has been removed
|
|
|
|
// from the DOM by tippy
|
2022-08-09 08:37:34 -04:00
|
|
|
if (opts.content instanceof Element) {
|
2022-08-10 10:47:28 -04:00
|
|
|
opts.content.classList.remove('tippy-target');
|
2022-08-09 08:37:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initTooltip(el, props = {}) {
|
|
|
|
const content = el.getAttribute('data-content') || props.content;
|
|
|
|
if (!content) return null;
|
2022-11-21 04:59:42 -05:00
|
|
|
if (!el.hasAttribute('aria-label')) el.setAttribute('aria-label', content);
|
2022-08-09 08:37:34 -04:00
|
|
|
return createTippy(el, {
|
|
|
|
content,
|
|
|
|
delay: 100,
|
|
|
|
role: 'tooltip',
|
2023-03-16 16:40:56 -04:00
|
|
|
...(el.getAttribute('data-tooltip-interactive') === 'true' ? {interactive: true} : {}),
|
2022-08-09 08:37:34 -04:00
|
|
|
...props,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function showTemporaryTooltip(target, content) {
|
|
|
|
let tippy, oldContent;
|
|
|
|
if (target._tippy) {
|
|
|
|
tippy = target._tippy;
|
|
|
|
oldContent = tippy.props.content;
|
|
|
|
} else {
|
|
|
|
tippy = initTooltip(target, {content});
|
|
|
|
}
|
|
|
|
|
|
|
|
tippy.setContent(content);
|
2022-12-25 12:17:48 -05:00
|
|
|
if (!tippy.state.isShown) tippy.show();
|
2022-08-09 08:37:34 -04:00
|
|
|
tippy.setProps({
|
|
|
|
onHidden: (tippy) => {
|
|
|
|
if (oldContent) {
|
|
|
|
tippy.setContent(oldContent);
|
|
|
|
} else {
|
|
|
|
tippy.destroy();
|
|
|
|
}
|
|
|
|
tippy.setProps({onHidden: undefined});
|
|
|
|
},
|
|
|
|
});
|
2022-07-18 18:33:34 -04:00
|
|
|
}
|