mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-06 11:37:02 +03:00
87 lines
2.9 KiB
TypeScript
87 lines
2.9 KiB
TypeScript
import * as React from "react";
|
|
import * as ReactDOM from "react-dom";
|
|
|
|
export interface TooltipProps {
|
|
text: string,
|
|
link?: string,
|
|
referenceNode: HTMLElement,
|
|
prependElement?: HTMLElement, // Element to append before
|
|
bottomOffset?: string
|
|
timeout?: number;
|
|
opacity?: number;
|
|
displayTriangle?: boolean;
|
|
showLogo?: boolean;
|
|
showGotIt?: boolean;
|
|
}
|
|
|
|
export class Tooltip {
|
|
text: string;
|
|
container: HTMLDivElement;
|
|
|
|
timer: NodeJS.Timeout;
|
|
|
|
constructor(props: TooltipProps) {
|
|
props.bottomOffset ??= "70px";
|
|
props.opacity ??= 0.7;
|
|
props.displayTriangle ??= true;
|
|
props.showLogo ??= true;
|
|
props.showGotIt ??= true;
|
|
this.text = props.text;
|
|
|
|
this.container = document.createElement('div');
|
|
this.container.id = "sponsorTooltip" + props.text;
|
|
this.container.style.position = "relative";
|
|
|
|
if (props.prependElement) {
|
|
props.referenceNode.insertBefore(this.container, props.prependElement);
|
|
} else {
|
|
props.referenceNode.appendChild(this.container);
|
|
}
|
|
|
|
if (props.timeout) {
|
|
this.timer = setTimeout(() => this.close(), props.timeout * 1000);
|
|
}
|
|
|
|
const backgroundColor = `rgba(28, 28, 28, ${props.opacity})`;
|
|
|
|
ReactDOM.render(
|
|
<div style={{bottom: props.bottomOffset, backgroundColor}}
|
|
className={"sponsorBlockTooltip" + (props.displayTriangle ? " sbTriangle" : "")} >
|
|
<div>
|
|
{props.showLogo ?
|
|
<img className="sponsorSkipLogo sponsorSkipObject"
|
|
src={chrome.extension.getURL("icons/IconSponsorBlocker256px.png")}>
|
|
</img>
|
|
: null}
|
|
<span className="sponsorSkipObject">
|
|
{this.text + (props.link ? ". " : "")}
|
|
{props.link ?
|
|
<a style={{textDecoration: "underline"}}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href={props.link}>
|
|
{chrome.i18n.getMessage("LearnMore")}
|
|
</a>
|
|
: null}
|
|
</span>
|
|
</div>
|
|
{props.showGotIt ?
|
|
<button className="sponsorSkipObject sponsorSkipNoticeButton"
|
|
style ={{float: "right" }}
|
|
onClick={() => this.close()}>
|
|
|
|
{chrome.i18n.getMessage("GotIt")}
|
|
</button>
|
|
: null}
|
|
</div>,
|
|
this.container
|
|
)
|
|
}
|
|
|
|
close(): void {
|
|
ReactDOM.unmountComponentAtNode(this.container);
|
|
this.container.remove();
|
|
|
|
if (this.timer) clearTimeout(this.timer);
|
|
}
|
|
} |