mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-07 03:57:09 +03:00
95 lines
3.3 KiB
TypeScript
95 lines
3.3 KiB
TypeScript
import * as React from "react";
|
|
import * as ReactDOM from "react-dom";
|
|
|
|
export interface RectangleTooltipProps {
|
|
text: string,
|
|
link?: string,
|
|
referenceNode: HTMLElement,
|
|
prependElement?: HTMLElement, // Element to append before
|
|
bottomOffset?: string,
|
|
leftOffset?: string,
|
|
timeout?: number,
|
|
htmlId?: string,
|
|
maxHeight?: string,
|
|
maxWidth?: string,
|
|
backgroundColor?: string,
|
|
fontSize?: string,
|
|
buttonFunction?: () => void;
|
|
}
|
|
|
|
export class RectangleTooltip {
|
|
text: string;
|
|
container: HTMLDivElement;
|
|
|
|
timer: NodeJS.Timeout;
|
|
|
|
constructor(props: RectangleTooltipProps) {
|
|
props.bottomOffset ??= "0px";
|
|
props.leftOffset ??= "0px";
|
|
props.maxHeight ??= "100px";
|
|
props.maxWidth ??= "300px";
|
|
props.backgroundColor ??= "rgba(28, 28, 28, 0.7)";
|
|
this.text = props.text;
|
|
props.fontSize ??= "10px";
|
|
|
|
this.container = document.createElement('div');
|
|
props.htmlId ??= props.text;
|
|
this.container.id = "sponsorRectangleTooltip" + props.htmlId;
|
|
this.container.style.display = "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);
|
|
}
|
|
|
|
ReactDOM.render(
|
|
<div style={{
|
|
bottom: props.bottomOffset,
|
|
left: props.leftOffset,
|
|
maxHeight: props.maxHeight,
|
|
maxWidth: props.maxWidth,
|
|
backgroundColor: props.backgroundColor,
|
|
fontSize: props.fontSize}}
|
|
className="sponsorBlockRectangleTooltip" >
|
|
<div>
|
|
<img className="sponsorSkipLogo sponsorSkipObject"
|
|
src={chrome.extension.getURL("icons/IconSponsorBlocker256px.png")}>
|
|
</img>
|
|
<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>
|
|
<button className="sponsorSkipObject sponsorSkipNoticeButton"
|
|
style ={{float: "right" }}
|
|
onClick={() => {
|
|
if (props.buttonFunction) props.buttonFunction();
|
|
this.close();
|
|
}}>
|
|
|
|
{chrome.i18n.getMessage("GotIt")}
|
|
</button>
|
|
</div>,
|
|
this.container
|
|
)
|
|
}
|
|
|
|
close(): void {
|
|
ReactDOM.unmountComponentAtNode(this.container);
|
|
this.container.remove();
|
|
|
|
if (this.timer) clearTimeout(this.timer);
|
|
}
|
|
} |