Files
webawesome/src/components/tooltip/tooltip.tsx
2020-10-09 17:45:16 -04:00

253 lines
6.5 KiB
TypeScript

import { Component, Element, Event, EventEmitter, Host, Method, Prop, Watch, h } from '@stencil/core';
import Popover from '../../utilities/popover';
let id = 0;
/**
* @since 2.0
* @status stable
*
* @slot - The tooltip's target element. Only the first element will be used as the target.
*
* @part base - The component's base wrapper.
*/
@Component({
tag: 'sl-tooltip',
styleUrl: 'tooltip.scss',
shadow: true
})
export class Tooltip {
componentId = `tooltip-${++id}`;
isShowing = false;
popover: Popover;
tooltipPositioner: HTMLElement;
target: HTMLElement;
tooltip: any;
@Element() host: HTMLSlTooltipElement;
/** The tooltip's content. */
@Prop() content = '';
/**
* The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip
* inside of the viewport.
*/
@Prop() placement:
| 'top'
| 'top-start'
| 'top-end'
| 'right'
| 'right-start'
| 'right-end'
| 'bottom'
| 'bottom-start'
| 'bottom-end'
| 'left'
| 'left-start'
| 'left-end' = 'top';
/** Set to true to disable the tooltip so it won't show when triggered. */
@Prop() disabled = false;
/** The distance in pixels from which to offset the tooltip away from its target. */
@Prop() distance = 10;
/** Indicates whether or not the tooltip is open. You can use this in lieu of the show/hide methods. */
@Prop({ mutable: true, reflect: true }) open = false;
/** The distance in pixels from which to offset the tooltip along its target. */
@Prop() skidding = 0;
/**
* Controls how the tooltip is activated. Possible options include `click`, `hover`, `focus`, and `manual`. Multiple
* options can be passed by separating them with a space. When manual is used, the tooltip must be activated
* programmatically.
*/
@Prop() trigger: string = 'hover focus';
@Watch('open')
handleOpenChange() {
this.open ? this.show() : this.hide();
}
/** Emitted when the tooltip begins to show. Calling `event.preventDefault()` will prevent it from being shown. */
@Event({ eventName: 'sl-show' }) slShow: EventEmitter;
/** Emitted after the tooltip has shown and all transitions are complete. */
@Event({ eventName: 'sl-aftershow' }) slAfterShow: EventEmitter;
/** Emitted when the tooltip begins to hide. Calling `event.preventDefault()` will prevent it from being hidden. */
@Event({ eventName: 'sl-hide' }) slHide: EventEmitter;
/** Emitted after the tooltip has hidden and all transitions are complete. */
@Event({ eventName: 'sl-after-hide' }) slAfterHide: EventEmitter;
connectedCallback() {
this.handleBlur = this.handleBlur.bind(this);
this.handleClick = this.handleClick.bind(this);
this.handleFocus = this.handleFocus.bind(this);
this.handleMouseOver = this.handleMouseOver.bind(this);
this.handleMouseOut = this.handleMouseOut.bind(this);
this.handleSlotChange = this.handleSlotChange.bind(this);
}
componentDidLoad() {
this.target = this.getTarget();
this.popover = new Popover(this.target, this.tooltipPositioner);
this.syncOptions();
this.host.addEventListener('blur', this.handleBlur, true);
this.host.addEventListener('click', this.handleClick, true);
this.host.addEventListener('focus', this.handleFocus, true);
// Show on init if open
this.tooltipPositioner.hidden = !this.open;
if (this.open) {
this.show();
}
}
componentDidUpdate() {
this.syncOptions();
}
disconnectedCallback() {
this.popover.destroy();
this.host.removeEventListener('blur', this.handleBlur, true);
this.host.removeEventListener('click', this.handleClick, true);
this.host.removeEventListener('focus', this.handleFocus, true);
}
/** Shows the tooltip. */
@Method()
async show() {
// Prevent subsequent calls to the method, whether manually or triggered by the `open` watcher
if (this.isShowing) {
return;
}
const slShow = this.slShow.emit();
if (slShow.defaultPrevented) {
this.open = false;
return;
}
this.isShowing = true;
this.open = true;
this.popover.show();
}
/** Shows the tooltip. */
@Method()
async hide() {
// Prevent subsequent calls to the method, whether manually or triggered by the `open` watcher
if (!this.isShowing) {
return;
}
const slHide = this.slHide.emit();
if (slHide.defaultPrevented) {
this.open = true;
return;
}
this.isShowing = false;
this.open = false;
this.popover.hide();
}
getTarget() {
const target = this.host.querySelector('*:not(style)') as HTMLElement;
if (!target) {
throw new Error('Invalid tooltip target: no child element was found.');
}
return target;
}
handleBlur() {
if (this.hasTrigger('focus')) {
this.hide();
}
}
handleClick() {
if (this.hasTrigger('click')) {
this.open ? this.hide() : this.show();
}
}
handleFocus() {
if (this.hasTrigger('focus')) {
this.show();
}
}
handleMouseOver() {
if (this.hasTrigger('hover')) {
this.show();
}
}
handleMouseOut() {
if (this.hasTrigger('hover')) {
this.hide();
}
}
handleSlotChange() {
const oldTarget = this.target;
const newTarget = this.getTarget();
if (oldTarget && newTarget !== oldTarget) {
oldTarget.removeAttribute('aria-describedby');
newTarget.setAttribute('aria-describedby', this.componentId);
}
}
hasTrigger(triggerType: string) {
const triggers = this.trigger.split(' ');
return triggers.includes(triggerType);
}
syncOptions() {
this.popover.setOptions({
placement: this.placement,
distance: this.distance,
skidding: this.skidding,
transitionElement: this.tooltip,
onAfterHide: () => this.slAfterHide.emit(),
onAfterShow: () => this.slAfterShow.emit()
});
}
render() {
return (
<Host onMouseOver={this.handleMouseOver} onMouseOut={this.handleMouseOut}>
<slot aria-describedby={this.componentId} onSlotchange={this.handleSlotChange} />
{!this.disabled && (
<div ref={el => (this.tooltipPositioner = el)} class="tooltip-positioner">
<div
part="base"
ref={el => (this.tooltip = el)}
id={this.componentId}
class={{
tooltip: true,
'tooltip--open': this.open
}}
role="tooltip"
aria-hidden={!this.open}
>
{this.content}
</div>
</div>
)}
</Host>
);
}
}