From 8a3caa43972be9fc8e4fb728f8dde72997d69249 Mon Sep 17 00:00:00 2001 From: Fatih Erikli Date: Mon, 4 Sep 2023 16:36:48 +0300 Subject: [PATCH] Delete tooltip component --- src/fontra/client/web-components/tooltip.js | 63 --------------------- 1 file changed, 63 deletions(-) delete mode 100644 src/fontra/client/web-components/tooltip.js diff --git a/src/fontra/client/web-components/tooltip.js b/src/fontra/client/web-components/tooltip.js deleted file mode 100644 index 8704b9c766..0000000000 --- a/src/fontra/client/web-components/tooltip.js +++ /dev/null @@ -1,63 +0,0 @@ -import { UnlitElement } from "/core/unlit.js"; -import * as html from "/core/unlit.js"; - -export class Tooltip extends UnlitElement { - static styles = ` - .tooltip { - background: #f2f2f2; - position: absolute; - width: 200px; - padding: 9px; - margin: 6px 0; - box-shadow: 0 0 4px 0 #686868; - } - - .hidden { - display: none; - } - `; - - constructor() { - super(); - this.x = 0; - this.y = 0; - } - - connectedCallback() { - const showFor = this.parentElement.querySelector(this.showFor); - const observer = new ResizeObserver(() => { - if (!this._element) { - return; - } - const boundingClientRect = showFor.getBoundingClientRect(); - this.x = boundingClientRect.x; - this.y = boundingClientRect.y + boundingClientRect.height; - this._element.style.top = this.y + "px"; - this._element.style.left = this.x + "px"; - }); - observer.observe(showFor); - showFor.addEventListener("mouseover", () => { - this._element.classList.remove("hidden"); - }); - showFor.addEventListener("mouseout", () => { - this._element.classList.add("hidden"); - }); - } - - static properties = { - text: { type: String }, - showFor: { type: String }, - }; - - render() { - this._element = html.div( - { - class: "tooltip hidden", - }, - this.text - ); - return this._element; - } -} - -customElements.define("tool-tip", Tooltip);