overhauled tooltips: directional positioning, wrapping to max lines

This commit is contained in:
dragonwocky 2021-12-05 17:52:50 +11:00
parent 7abbb779f5
commit 24bc8bda66
3 changed files with 87 additions and 23 deletions

View File

@ -14,11 +14,16 @@
/** /**
* add a tooltip to show extra information on hover * add a tooltip to show extra information on hover
* @param {HTMLElement} $ref - the element that will trigger the tooltip when hovered * @param {HTMLElement} $ref - the element that will trigger the tooltip when hovered
* @param {string|HTMLElement} $text - the markdown content of the tooltip * @param {string|HTMLElement} $content - markdown or element content of the tooltip
* @param {number} [delay] - the amount of time the element needs to be hovered over * @param {object=} [options] - configuration of how the tooltip should be displayed
* for the tooltip to be shown * @param {number} [options.delay] - the amount of time in ms the element needs to be hovered over
* for the tooltip to be shown (default: 100)
* @param {string} [options.offsetDirection] - which side of the element the tooltip
* should be shown on: 'top', 'bottom', 'left' or 'right' (default: 'bottom')
* @param {number} [options.maxLines] - the max number of lines that the content may be wrapped
* to, used to position and size the tooltip correctly (default: 1)
*/ */
export { setTooltip } from './tooltip.mjs'; export { tooltip } from './tooltip.mjs';
/** /**
* generate an icon from the feather icons set * generate an icon from the feather icons set

View File

@ -16,13 +16,14 @@
line-height: 1.4; line-height: 1.4;
max-width: 20rem; max-width: 20rem;
overflow: hidden; overflow: hidden;
padding: 2px 8px 4px 8px; padding: 4px 8px;
position: absolute; position: absolute;
z-index: 999999999999999999; z-index: 999999999999999999;
pointer-events: none; pointer-events: none;
text-align: center;
} }
#enhancer--tooltip p { #enhancer--tooltip p {
margin: 0.25rem 0; margin: 0;
} }
#enhancer--tooltip b, #enhancer--tooltip b,
#enhancer--tooltip strong { #enhancer--tooltip strong {

View File

@ -15,38 +15,96 @@ import { fmt, web } from '../../index.mjs';
const _$tooltip = web.html`<div id="enhancer--tooltip"></div>`; const _$tooltip = web.html`<div id="enhancer--tooltip"></div>`;
web.loadStylesheet('api/client/components/tooltip.css'); web.loadStylesheet('api/client/components/tooltip.css');
web.render(document.body, _$tooltip);
const countLines = ($el) =>
[...$el.getClientRects()].reduce(
(prev, val) => (prev.some((p) => p.y === val.y) ? prev : [...prev, val]),
[]
).length,
position = async ($ref, offsetDirection, maxLines) => {
_$tooltip.style.top = `0px`;
_$tooltip.style.left = `0px`;
const rect = $ref.getBoundingClientRect(),
{ offsetWidth, offsetHeight } = _$tooltip,
pad = 6;
let x = rect.x,
y = Math.floor(rect.y);
if (['top', 'bottom'].includes(offsetDirection)) {
if (offsetDirection === 'top') y -= offsetHeight + pad;
if (offsetDirection === 'bottom') y += rect.height + pad;
x -= offsetWidth / 2 - rect.width / 2;
_$tooltip.style.left = `${x}px`;
_$tooltip.style.top = `${y}px`;
const testLines = () => countLines(_$tooltip.firstElementChild) > maxLines,
padEdgesX = testLines();
while (testLines()) {
_$tooltip.style.left = `${window.innerWidth - x > x ? x++ : x--}px`;
}
if (padEdgesX) {
x += window.innerWidth - x > x ? pad : -pad;
_$tooltip.style.left = `${x}px`;
}
}
if (['left', 'right'].includes(offsetDirection)) {
y -= offsetHeight / 2 - rect.height / 2;
if (offsetDirection === 'left') x -= offsetWidth + pad;
if (offsetDirection === 'right') x += rect.width + pad;
_$tooltip.style.left = `${x}px`;
_$tooltip.style.top = `${y}px`;
}
return true;
};
/** /**
* add a tooltip to show extra information on hover * add a tooltip to show extra information on hover
* @param {HTMLElement} $ref - the element that will trigger the tooltip when hovered * @param {HTMLElement} $ref - the element that will trigger the tooltip when hovered
* @param {string|HTMLElement} $text - the markdown content of the tooltip * @param {string|HTMLElement} $content - markdown or element content of the tooltip
* @param {number} [delay] - the amount of time the element needs to be hovered over * @param {object=} [options] - configuration of how the tooltip should be displayed
* for the tooltip to be shown * @param {number} [options.delay] - the amount of time in ms the element needs to be hovered over
* for the tooltip to be shown (default: 100)
* @param {string} [options.offsetDirection] - which side of the element the tooltip
* should be shown on: 'top', 'bottom', 'left' or 'right' (default: 'bottom')
* @param {number} [options.maxLines] - the max number of lines that the content may be wrapped
* to, used to position and size the tooltip correctly (default: 1)
*/ */
export const setTooltip = ($ref, $text, delay = 100) => { export const tooltip = (
web.render(document.body, _$tooltip); $ref,
if (!($text instanceof Element)) $text = web.html`${fmt.md.render($text)}`; $content,
{ delay = 100, offsetDirection = 'bottom', maxLines = 1 } = {}
) => {
if (!($content instanceof Element))
$content = web.html`<div style="display:inline">
${$content
.split('\n')
.map((text) => fmt.md.renderInline(text))
.join('<br>')}
</div>`;
let displayDelay; let displayDelay;
$ref.addEventListener('mouseover', (event) => { $ref.addEventListener('mouseover', async (event) => {
web.render(web.empty(_$tooltip), $text);
if (!displayDelay) { if (!displayDelay) {
displayDelay = setTimeout(async () => { displayDelay = setTimeout(async () => {
if ($ref.matches(':hover')) { if ($ref.matches(':hover')) {
_$tooltip.style.display = 'block'; if (_$tooltip.style.display !== 'block') {
_$tooltip.style.top = event.clientY - _$tooltip.clientHeight + 'px'; _$tooltip.style.display = 'block';
_$tooltip.style.left = event.clientX - _$tooltip.clientWidth + 'px'; web.render(web.empty(_$tooltip), $content);
await _$tooltip.animate([{ opacity: 0 }, { opacity: 1 }], { duration: 65 }).finished; position($ref, offsetDirection, maxLines);
await _$tooltip.animate([{ opacity: 0 }, { opacity: 1 }], { duration: 65 })
.finished;
}
} }
displayDelay = undefined; displayDelay = undefined;
}, delay); }, delay);
} }
}); });
$ref.addEventListener('mousemove', (event) => {
_$tooltip.style.top = event.clientY - _$tooltip.clientHeight + 'px';
_$tooltip.style.left = event.clientX - _$tooltip.clientWidth + 'px';
});
$ref.addEventListener('mouseout', async (event) => { $ref.addEventListener('mouseout', async (event) => {
if (!$ref.matches(':hover')) { displayDelay = undefined;
if (_$tooltip.style.display === 'block' && !$ref.matches(':hover')) {
await _$tooltip.animate([{ opacity: 1 }, { opacity: 0 }], { duration: 65 }).finished; await _$tooltip.animate([{ opacity: 1 }, { opacity: 0 }], { duration: 65 }).finished;
_$tooltip.style.display = ''; _$tooltip.style.display = '';
} }