mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 12:52:05 +02:00
131 lines
3.9 KiB
JavaScript
131 lines
3.9 KiB
JavaScript
/** @odoo-module **/
|
|
import {Component, EventBus, useRef, useState} from "@odoo/owl";
|
|
import {registry} from "@web/core/registry";
|
|
|
|
export class Highlighter extends Component {
|
|
setup() {
|
|
this.state = useState({visible: false});
|
|
this.bus = this.props.bus;
|
|
this.bus.on("hide", this, () => this.hide());
|
|
this.bus.on("highlight", this, (options) => this.highlight(options));
|
|
this.highlightRef = useRef("highlightRef");
|
|
this.overlayRef = useRef("overlay");
|
|
}
|
|
|
|
hide() {
|
|
this.state.visible = false;
|
|
this.resetAnimation();
|
|
}
|
|
|
|
_getBoundsOfElement($el) {
|
|
const bounds = {
|
|
x: Number.MAX_SAFE_INTEGER,
|
|
y: Number.MAX_SAFE_INTEGER,
|
|
};
|
|
|
|
let xEnd = 0,
|
|
yEnd = 0;
|
|
|
|
$el.filter(":visible").each(function () {
|
|
const elementBounds = this.getBoundingClientRect();
|
|
if (elementBounds.x < bounds.x) {
|
|
bounds.x = elementBounds.x;
|
|
}
|
|
if (elementBounds.y < bounds.y) {
|
|
bounds.y = elementBounds.y;
|
|
}
|
|
if (xEnd < elementBounds.x + elementBounds.width) {
|
|
xEnd = elementBounds.x + elementBounds.width;
|
|
}
|
|
if (yEnd < elementBounds.y + elementBounds.height) {
|
|
yEnd = elementBounds.y + elementBounds.height;
|
|
}
|
|
});
|
|
|
|
bounds.width = xEnd - bounds.x;
|
|
bounds.height = yEnd - bounds.y;
|
|
return bounds;
|
|
}
|
|
|
|
highlight({selector, content, animate = 250, padding = 10}) {
|
|
const selection = $(selector);
|
|
|
|
if (!selection.length) {
|
|
return console.error("Element not found.", selector);
|
|
}
|
|
const bounds = this._getBoundsOfElement(selection);
|
|
this.state.visible = true;
|
|
this.animate(content, bounds, animate, padding);
|
|
}
|
|
|
|
animate(content, bounds, animate = 250, padding = 10) {
|
|
const $el = $(this.highlightRef.el);
|
|
|
|
$el.popover("dispose");
|
|
$el.animate(
|
|
{
|
|
top: _.str.sprintf("%spx", Math.floor(bounds.y) - padding),
|
|
left: _.str.sprintf("%spx", Math.floor(bounds.x) - padding),
|
|
width: _.str.sprintf("%spx", Math.floor(bounds.width) + padding * 2),
|
|
height: _.str.sprintf("%spx", Math.floor(bounds.height) + padding * 2),
|
|
},
|
|
animate ? animate : 0,
|
|
function () {
|
|
$el.popover(
|
|
_.extend(this._getPopoverOptions(), {
|
|
content: content,
|
|
})
|
|
).popover("show");
|
|
}.bind(this)
|
|
);
|
|
}
|
|
|
|
_getPopoverOptions() {
|
|
return {
|
|
container: $(this.overlayRef.el),
|
|
placement: "auto",
|
|
html: true,
|
|
trigger: "manual",
|
|
boundary: "viewport",
|
|
sanitize: false,
|
|
template:
|
|
'<div class="popover" role="tooltip"><div class="popover-body"></div></div>',
|
|
};
|
|
}
|
|
|
|
resetAnimation() {
|
|
const $el = $(this.highlightRef.el);
|
|
$el.popover("dispose");
|
|
$el.css({
|
|
top: 0,
|
|
left: 0,
|
|
width: 0,
|
|
height: 0,
|
|
});
|
|
}
|
|
}
|
|
Highlighter.template = "web_help.Highlighter";
|
|
|
|
export const highlighterService = {
|
|
start() {
|
|
const bus = new EventBus();
|
|
|
|
registry.category("main_components").add("Highlighter", {
|
|
Component: Highlighter,
|
|
props: {bus},
|
|
});
|
|
|
|
return {
|
|
hide: () => bus.trigger("hide"),
|
|
highlight: (selector, content, animate = 250, padding = 10) =>
|
|
bus.trigger("highlight", {
|
|
selector: selector,
|
|
content: content,
|
|
animate: animate,
|
|
padding: padding,
|
|
}),
|
|
};
|
|
},
|
|
};
|
|
|
|
registry.category("services").add("highlighter", highlighterService);
|