1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
FrankerFaceZ/src/modules/tooltips.js

116 lines
2.8 KiB
JavaScript
Raw Normal View History

2017-11-13 01:23:39 -05:00
'use strict';
// ============================================================================
// Tooltip Handling
// ============================================================================
import {createElement, sanitize} from 'utilities/dom';
import {has, maybe_call} from 'utilities/object';
2017-11-13 01:23:39 -05:00
import Tooltip from 'utilities/tooltip';
import Module from 'utilities/module';
export default class TooltipProvider extends Module {
constructor(...args) {
super(...args);
this.types = {};
this.should_enable = true;
this.types.json = target => {
const title = target.dataset.title;
return [
title && createElement('strong', null, title),
createElement('code', {
2017-11-13 01:23:39 -05:00
className: `block${title ? ' pd-t-05 border-t mg-t-05' : ''}`,
style: {
fontFamily: 'monospace',
textAlign: 'left'
}
}, target.dataset.data)
]
}
this.types.text = target => sanitize(target.dataset.title);
this.types.html = target => target.dataset.title;
2017-11-13 01:23:39 -05:00
}
onEnable() {
const container = document.querySelector('#root>div') || document.querySelector('#root') || document.querySelector('.clips-root') || document.body,
is_minimal = false; //container && container.classList.contains('twilight-minimal-root');
this.tips = new Tooltip(container, 'ffz-tooltip', {
2017-11-13 01:23:39 -05:00
html: true,
delayHide: this.checkDelayHide.bind(this),
delayShow: this.checkDelayShow.bind(this),
2017-11-13 01:23:39 -05:00
content: this.process.bind(this),
interactive: this.checkInteractive.bind(this),
2017-11-13 01:23:39 -05:00
popper: {
placement: 'top',
modifiers: {
flip: {
behavior: ['top', 'bottom', 'left', 'right']
},
preventOverflow: {
boundariesElement: container
}
}
2017-11-13 01:23:39 -05:00
}
});
this.on(':cleanup', this.cleanup);
}
cleanup() {
this.tips.cleanup();
2017-11-13 01:23:39 -05:00
}
checkDelayShow(target, tip) {
const type = target.dataset.tooltipType,
handler = this.types[type];
if ( has(handler, 'delayShow') )
return maybe_call(handler.delayShow, null, target, tip);
return 0;
}
checkDelayHide(target, tip) {
const type = target.dataset.tooltipType,
handler = this.types[type];
if ( has(handler, 'delayHide') )
return maybe_call(handler.delayHide, null, target, tip);
return 0;
}
checkInteractive(target, tip) {
const type = target.dataset.tooltipType,
handler = this.types[type];
if ( has(handler, 'interactive') )
return maybe_call(handler.interactive, null, target, tip);
return false;
}
process(target, tip) {
const type = target.dataset.tooltipType || 'text',
2017-11-13 01:23:39 -05:00
handler = this.types[type];
if ( ! handler )
return [
createElement('strong', null, 'Unhandled Tooltip Type'),
createElement('code', {
2017-11-13 01:23:39 -05:00
className: 'block pd-t-05 border-t mg-t-05',
style: {
fontFamily: 'monospace',
textAlign: 'left'
}
}, JSON.stringify(target.dataset, null, 4))
];
return handler(target, tip);
}
}