mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-06 11:37:02 +03:00
436 lines
17 KiB
TypeScript
436 lines
17 KiB
TypeScript
import * as React from "react";
|
|
import { ActionType, SegmentUUID, SponsorHideType, SponsorTime, VideoID } from "../types";
|
|
import Config from "../config";
|
|
import { waitFor } from "../../maze-utils/src";
|
|
import { shortCategoryName } from "../utils/categoryUtils";
|
|
import { getErrorMessage, getFormattedTime } from "../../maze-utils/src/formating";
|
|
import { AnimationUtils } from "../../maze-utils/src/animationUtils";
|
|
import { asyncRequestToServer } from "../utils/requests";
|
|
import { Message, MessageResponse, VoteResponse } from "../messageTypes";
|
|
import { LoadingStatus } from "./PopupComponent";
|
|
import GenericNotice from "../render/GenericNotice";
|
|
import { exportTimes } from "../utils/exporter";
|
|
import { copyToClipboardPopup } from "./popupUtils";
|
|
|
|
interface SegmentListComponentProps {
|
|
videoID: VideoID;
|
|
currentTime: number;
|
|
status: LoadingStatus;
|
|
segments: SponsorTime[];
|
|
loopedChapter: SegmentUUID | null;
|
|
|
|
sendMessage: (request: Message) => Promise<MessageResponse>;
|
|
}
|
|
|
|
enum SegmentListTab {
|
|
Segments,
|
|
Chapter
|
|
}
|
|
|
|
export const SegmentListComponent = (props: SegmentListComponentProps) => {
|
|
const [tab, setTab] = React.useState(SegmentListTab.Segments);
|
|
const [isVip, setIsVip] = React.useState(Config.config?.isVip ?? false);
|
|
|
|
React.useEffect(() => {
|
|
if (!Config.isReady()) {
|
|
waitFor(() => Config.isReady()).then(() => {
|
|
setIsVip(Config.config.isVip);
|
|
});
|
|
} else {
|
|
setIsVip(Config.config.isVip);
|
|
}
|
|
}, []);
|
|
|
|
React.useEffect(() => {
|
|
setTab(SegmentListTab.Segments);
|
|
}, [props.videoID]);
|
|
|
|
const tabFilter = (segment: SponsorTime) => {
|
|
if (tab === SegmentListTab.Chapter) {
|
|
return segment.actionType === ActionType.Chapter;
|
|
} else {
|
|
return segment.actionType !== ActionType.Chapter;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div id="issueReporterContainer">
|
|
<div id="issueReporterTabs" className={props.segments && props.segments.find(s => s.actionType === ActionType.Chapter) ? "" : "hidden"}>
|
|
<span id="issueReporterTabSegments" className={tab === SegmentListTab.Segments ? "sbSelected" : ""} onClick={() => {
|
|
setTab(SegmentListTab.Segments);
|
|
}}>
|
|
<span>{chrome.i18n.getMessage("SegmentsCap")}</span>
|
|
</span>
|
|
<span id="issueReporterTabChapters" className={tab === SegmentListTab.Chapter ? "sbSelected" : ""} onClick={() => {
|
|
setTab(SegmentListTab.Chapter);
|
|
}}>
|
|
<span>{chrome.i18n.getMessage("Chapters")}</span>
|
|
</span>
|
|
</div>
|
|
<div id="issueReporterTimeButtons"
|
|
onMouseLeave={() => selectSegment({
|
|
segment: null,
|
|
sendMessage: props.sendMessage
|
|
})}>
|
|
{
|
|
props.segments.map((segment) => (
|
|
<SegmentListItem
|
|
key={segment.UUID}
|
|
videoID={props.videoID}
|
|
segment={segment}
|
|
currentTime={props.currentTime}
|
|
isVip={isVip}
|
|
startingLooped={props.loopedChapter === segment.UUID}
|
|
|
|
tabFilter={tabFilter}
|
|
sendMessage={props.sendMessage}
|
|
/>
|
|
))
|
|
}
|
|
</div>
|
|
|
|
<ImportSegments
|
|
status={props.status}
|
|
segments={props.segments}
|
|
sendMessage={props.sendMessage}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
function SegmentListItem({ segment, videoID, currentTime, isVip, startingLooped, tabFilter, sendMessage }: {
|
|
segment: SponsorTime;
|
|
videoID: VideoID;
|
|
currentTime: number;
|
|
isVip: boolean;
|
|
startingLooped: boolean;
|
|
|
|
tabFilter: (segment: SponsorTime) => boolean;
|
|
sendMessage: (request: Message) => Promise<MessageResponse>;
|
|
}) {
|
|
const [voteMessage, setVoteMessage] = React.useState<string | null>(null);
|
|
const [hidden, setHidden] = React.useState(segment.hidden || SponsorHideType.Visible);
|
|
const [isLooped, setIsLooped] = React.useState(startingLooped);
|
|
|
|
let extraInfo = "";
|
|
if (segment.hidden === SponsorHideType.Downvoted) {
|
|
// This one is downvoted
|
|
extraInfo = " (" + chrome.i18n.getMessage("hiddenDueToDownvote") + ")";
|
|
} else if (segment.hidden === SponsorHideType.MinimumDuration) {
|
|
// This one is too short
|
|
extraInfo = " (" + chrome.i18n.getMessage("hiddenDueToDuration") + ")";
|
|
} else if (segment.hidden === SponsorHideType.Hidden) {
|
|
extraInfo = " (" + chrome.i18n.getMessage("manuallyHidden") + ")";
|
|
}
|
|
|
|
return (
|
|
<details data-uuid={segment.UUID}
|
|
onDoubleClick={() => skipSegment({
|
|
segment,
|
|
sendMessage
|
|
})}
|
|
onMouseEnter={() => {
|
|
selectSegment({
|
|
segment,
|
|
sendMessage
|
|
});
|
|
}}
|
|
className={"votingButtons " + (!tabFilter(segment) ? "hidden" : "")}>
|
|
<summary className={"segmentSummary " + (
|
|
currentTime >= segment.segment[0] ? (
|
|
currentTime < segment.segment[1] ? "segmentActive" : "segmentPassed"
|
|
) : ""
|
|
)}>
|
|
<div>
|
|
{
|
|
segment.actionType !== ActionType.Chapter &&
|
|
<span className="sponsorTimesCategoryColorCircle dot" style={{ backgroundColor: Config.config.barTypes[segment.category]?.color }}></span>
|
|
}
|
|
<span className="summaryLabel">{(segment.description || shortCategoryName(segment.category)) + extraInfo}</span>
|
|
</div>
|
|
|
|
<div style={{ margin: "5px" }}>
|
|
{
|
|
segment.actionType === ActionType.Full ? chrome.i18n.getMessage("full") :
|
|
(getFormattedTime(segment.segment[0], true) +
|
|
(segment.actionType !== ActionType.Poi
|
|
? " " + chrome.i18n.getMessage("to") + " " + getFormattedTime(segment.segment[1], true)
|
|
: ""))
|
|
}
|
|
</div>
|
|
</summary>
|
|
|
|
<div className={"sbVoteButtonsContainer " + (voteMessage ? "hidden" : "")}>
|
|
<img
|
|
className="voteButton"
|
|
title="Upvote"
|
|
src={chrome.runtime.getURL("icons/thumbs_up.svg")}
|
|
onClick={() => {
|
|
vote({
|
|
type: 1,
|
|
UUID: segment.UUID,
|
|
setVoteMessage: setVoteMessage,
|
|
sendMessage
|
|
});
|
|
}}/>
|
|
<img
|
|
className="voteButton"
|
|
title="Downvote"
|
|
src={segment.locked && isVip ? chrome.runtime.getURL("icons/thumbs_down_locked.svg") : chrome.runtime.getURL("icons/thumbs_down.svg")}
|
|
onClick={() => {
|
|
vote({
|
|
type: 0,
|
|
UUID: segment.UUID,
|
|
setVoteMessage: setVoteMessage,
|
|
sendMessage
|
|
});
|
|
}}/>
|
|
<img
|
|
className="voteButton"
|
|
title="Copy Segment ID"
|
|
src={chrome.runtime.getURL("icons/clipboard.svg")}
|
|
onClick={async (e) => {
|
|
const stopAnimation = AnimationUtils.applyLoadingAnimation(e.currentTarget, 0.3);
|
|
|
|
if (segment.UUID.length > 60) {
|
|
copyToClipboardPopup(segment.UUID, sendMessage);
|
|
} else {
|
|
const segmentIDData = await asyncRequestToServer("GET", "/api/segmentID", {
|
|
UUID: segment.UUID,
|
|
videoID: videoID
|
|
});
|
|
|
|
if (segmentIDData.ok && segmentIDData.responseText) {
|
|
copyToClipboardPopup(segmentIDData.responseText, sendMessage);
|
|
}
|
|
}
|
|
|
|
stopAnimation();
|
|
}}/>
|
|
{
|
|
segment.actionType === ActionType.Chapter &&
|
|
<img
|
|
className="voteButton"
|
|
title={isLooped ? chrome.i18n.getMessage("unloopChapter") : chrome.i18n.getMessage("loopChapter")}
|
|
src={isLooped ? chrome.runtime.getURL("icons/looped.svg") : chrome.runtime.getURL("icons/loop.svg")}
|
|
onClick={(e) => {
|
|
if (isLooped) {
|
|
loopChapter({
|
|
segment: null,
|
|
element: e.currentTarget,
|
|
sendMessage
|
|
});
|
|
} else {
|
|
loopChapter({
|
|
segment,
|
|
element: e.currentTarget,
|
|
sendMessage
|
|
});
|
|
}
|
|
|
|
setIsLooped(!isLooped);
|
|
}}/>
|
|
}
|
|
{
|
|
(segment.actionType === ActionType.Skip || segment.actionType === ActionType.Mute
|
|
|| segment.actionType === ActionType.Poi
|
|
&& [SponsorHideType.Visible, SponsorHideType.Hidden].includes(segment.hidden)) &&
|
|
<img
|
|
className="voteButton"
|
|
title={chrome.i18n.getMessage("hideSegment")}
|
|
src={hidden === SponsorHideType.Hidden ? chrome.runtime.getURL("icons/not_visible.svg") : chrome.runtime.getURL("icons/visible.svg")}
|
|
onClick={(e) => {
|
|
const stopAnimation = AnimationUtils.applyLoadingAnimation(e.currentTarget, 0.4);
|
|
stopAnimation();
|
|
|
|
if (segment.hidden === SponsorHideType.Hidden) {
|
|
segment.hidden = SponsorHideType.Visible;
|
|
setHidden(SponsorHideType.Visible);
|
|
} else {
|
|
segment.hidden = SponsorHideType.Hidden;
|
|
setHidden(SponsorHideType.Hidden);
|
|
}
|
|
|
|
sendMessage({
|
|
message: "hideSegment",
|
|
type: segment.hidden,
|
|
UUID: segment.UUID
|
|
});
|
|
}}/>
|
|
}
|
|
{
|
|
segment.actionType !== ActionType.Full &&
|
|
<img
|
|
className="voteButton"
|
|
title={segment.actionType === ActionType.Chapter ? chrome.i18n.getMessage("playChapter") : chrome.i18n.getMessage("skipSegment")}
|
|
src={chrome.runtime.getURL("icons/skip.svg")}
|
|
onClick={(e) => {
|
|
skipSegment({
|
|
segment,
|
|
element: e.currentTarget,
|
|
sendMessage
|
|
});
|
|
}}/>
|
|
}
|
|
</div>
|
|
|
|
<div className={"sponsorTimesVoteStatusContainer " + (voteMessage ? "" : "hidden")}>
|
|
<div className="sponsorTimesThanksForVotingText">
|
|
{voteMessage}
|
|
</div>
|
|
</div>
|
|
</details>
|
|
);
|
|
}
|
|
|
|
async function vote(props: {
|
|
type: number;
|
|
UUID: SegmentUUID;
|
|
setVoteMessage: (message: string | null) => void;
|
|
sendMessage: (request: Message) => Promise<MessageResponse>;
|
|
}): Promise<void> {
|
|
props.setVoteMessage(chrome.i18n.getMessage("Loading"));
|
|
|
|
const response = await props.sendMessage({
|
|
message: "submitVote",
|
|
type: props.type,
|
|
UUID: props.UUID
|
|
}) as VoteResponse;
|
|
|
|
if (response != undefined) {
|
|
// See if it was a success or failure
|
|
if (response.successType == 1 || (response.successType == -1 && response.statusCode == 429)) {
|
|
// Success (treat rate limits as a success)
|
|
props.setVoteMessage(chrome.i18n.getMessage("voted"));
|
|
} else if (response.successType == -1) {
|
|
props.setVoteMessage(getErrorMessage(response.statusCode, response.responseText));
|
|
}
|
|
setTimeout(() => props.setVoteMessage(null), 1500);
|
|
}
|
|
}
|
|
|
|
function skipSegment({ segment, element, sendMessage }: {
|
|
segment: SponsorTime;
|
|
element?: HTMLElement;
|
|
|
|
sendMessage: (request: Message) => Promise<MessageResponse>;
|
|
}): void {
|
|
if (segment.actionType === ActionType.Chapter) {
|
|
sendMessage({
|
|
message: "unskip",
|
|
UUID: segment.UUID
|
|
});
|
|
} else {
|
|
sendMessage({
|
|
message: "reskip",
|
|
UUID: segment.UUID
|
|
});
|
|
}
|
|
|
|
if (element) {
|
|
const stopAnimation = AnimationUtils.applyLoadingAnimation(element, 0.3);
|
|
stopAnimation();
|
|
}
|
|
}
|
|
|
|
function selectSegment({ segment, sendMessage }: {
|
|
segment: SponsorTime | null;
|
|
|
|
sendMessage: (request: Message) => Promise<MessageResponse>;
|
|
}): void {
|
|
sendMessage({
|
|
message: "selectSegment",
|
|
UUID: segment?.UUID
|
|
});
|
|
}
|
|
|
|
function loopChapter({ segment, element, sendMessage }: {
|
|
segment: SponsorTime;
|
|
element: HTMLElement;
|
|
|
|
sendMessage: (request: Message) => Promise<MessageResponse>;
|
|
}): void {
|
|
sendMessage({
|
|
message: "loopChapter",
|
|
UUID: segment?.UUID
|
|
});
|
|
|
|
if (element) {
|
|
const stopAnimation = AnimationUtils.applyLoadingAnimation(element, 0.3);
|
|
stopAnimation();
|
|
}
|
|
}
|
|
|
|
interface ImportSegmentsProps {
|
|
status: LoadingStatus;
|
|
segments: SponsorTime[];
|
|
|
|
sendMessage: (request: Message) => Promise<MessageResponse>;
|
|
}
|
|
|
|
function ImportSegments(props: ImportSegmentsProps) {
|
|
const [importMenuVisible, setImportMenuVisible] = React.useState(false);
|
|
const textArea = React.useRef<HTMLTextAreaElement>(null);
|
|
|
|
return (
|
|
<div id="issueReporterImportExport" className={props.status === LoadingStatus.Loading ? "hidden" : ""}>
|
|
<div id="importExportButtons">
|
|
<button id="importSegmentsButton"
|
|
className={props.status === LoadingStatus.SegmentsFound || props.status === LoadingStatus.NoSegmentsFound ? "" : "hidden"}
|
|
title={chrome.i18n.getMessage("importSegments")}
|
|
onClick={() => {
|
|
setImportMenuVisible(!importMenuVisible);
|
|
}}>
|
|
<img src="/icons/import.svg" alt="Import icon" id="importSegments" />
|
|
</button>
|
|
<button id="exportSegmentsButton"
|
|
className={props.segments.length === 0 ? "hidden" : ""}
|
|
title={chrome.i18n.getMessage("exportSegments")}
|
|
onClick={(e) => {
|
|
copyToClipboardPopup(exportTimes(props.segments), props.sendMessage);
|
|
|
|
const stopAnimation = AnimationUtils.applyLoadingAnimation(e.currentTarget, 0.3);
|
|
stopAnimation();
|
|
new GenericNotice(null, "exportCopied", {
|
|
title: chrome.i18n.getMessage(`CopiedExclamation`),
|
|
timed: true,
|
|
maxCountdownTime: () => 0.6,
|
|
referenceNode: e.currentTarget.parentElement,
|
|
dontPauseCountdown: true,
|
|
style: {
|
|
top: 0,
|
|
bottom: 0,
|
|
minWidth: 0,
|
|
right: "30px",
|
|
margin: "auto",
|
|
height: "max-content"
|
|
},
|
|
hideLogo: true,
|
|
hideRightInfo: true
|
|
});
|
|
}}>
|
|
<img src="/icons/export.svg" alt="Export icon" id="exportSegments" />
|
|
</button>
|
|
</div>
|
|
|
|
<span id="importSegmentsMenu" className={importMenuVisible ? "" : "hidden"}>
|
|
<textarea id="importSegmentsText" rows={5} style={{ width: "80%" }} ref={textArea}></textarea>
|
|
|
|
<button id="importSegmentsSubmit"
|
|
title={chrome.i18n.getMessage("importSegments")}
|
|
onClick={() => {
|
|
const text = textArea.current.value;
|
|
|
|
props.sendMessage({
|
|
message: "importSegments",
|
|
data: text
|
|
});
|
|
|
|
setImportMenuVisible(false);
|
|
}}>
|
|
{chrome.i18n.getMessage("Import")}
|
|
</button>
|
|
</span>
|
|
</div>
|
|
)
|
|
} |