mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-14 07:27:05 +03:00
Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9d04482d19 | ||
|
|
7c661f8e67 | ||
|
|
0b7a2fd197 | ||
|
|
3382d8a500 | ||
|
|
5d871d5fe7 | ||
|
|
b7c5737a95 | ||
|
|
0cca1c3566 | ||
|
|
e0fe0fad67 | ||
|
|
c0bc068a18 | ||
|
|
7cb413db15 | ||
|
|
fdf1a6acf9 | ||
|
|
b533c6c1c8 | ||
|
|
926423db5c | ||
|
|
e7d55d2bac | ||
|
|
16f27e5c5c | ||
|
|
88dc8db6e7 | ||
|
|
c69a574379 | ||
|
|
516d624f16 | ||
|
|
a662c3e04f | ||
|
|
985910cbf6 | ||
|
|
feae86f6ea | ||
|
|
1f96e3b117 | ||
|
|
b3b5d46e4e | ||
|
|
c996680a58 | ||
|
|
ade4654ae0 | ||
|
|
4e9e6282f6 | ||
|
|
783326afca | ||
|
|
8dfd06919b | ||
|
|
50ee690717 | ||
|
|
74aebd32a7 | ||
|
|
e489d0f913 | ||
|
|
814df46521 |
@@ -75,4 +75,4 @@ Icons made by:
|
|||||||
|
|
||||||
### License
|
### License
|
||||||
|
|
||||||
This project is licensed under GNU LGPL v3 or any later version
|
This project is licensed under GNU GPL v3 or any later version
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "__MSG_fullName__",
|
"name": "__MSG_fullName__",
|
||||||
"short_name": "SponsorBlock",
|
"short_name": "SponsorBlock",
|
||||||
"version": "5.5",
|
"version": "5.5.5",
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"description": "__MSG_Description__",
|
"description": "__MSG_Description__",
|
||||||
"homepage_url": "https://sponsor.ajay.app",
|
"homepage_url": "https://sponsor.ajay.app",
|
||||||
|
|||||||
Submodule maze-utils updated: 27db39e39b...08d3f65d35
Submodule public/_locales updated: 840b5c3ca2...96f860dc1d
@@ -123,7 +123,7 @@ chrome.runtime.onInstalled.addListener(function () {
|
|||||||
// If there is no userID, then it is the first install.
|
// If there is no userID, then it is the first install.
|
||||||
if (!userID && !Config.local.alreadyInstalled){
|
if (!userID && !Config.local.alreadyInstalled){
|
||||||
//open up the install page
|
//open up the install page
|
||||||
chrome.tabs.create({url: chrome.extension.getURL("/help/index.html")});
|
chrome.tabs.create({url: chrome.runtime.getURL("/help/index.html")});
|
||||||
|
|
||||||
//generate a userID
|
//generate a userID
|
||||||
const newUserID = generateUserID();
|
const newUserID = generateUserID();
|
||||||
@@ -137,7 +137,7 @@ chrome.runtime.onInstalled.addListener(function () {
|
|||||||
|
|
||||||
if (Config.config.supportInvidious) {
|
if (Config.config.supportInvidious) {
|
||||||
if (!(await utils.containsInvidiousPermission())) {
|
if (!(await utils.containsInvidiousPermission())) {
|
||||||
chrome.tabs.create({url: chrome.extension.getURL("/permissions/index.html")});
|
chrome.tabs.create({url: chrome.runtime.getURL("/permissions/index.html")});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, 1500);
|
}, 1500);
|
||||||
@@ -160,8 +160,8 @@ async function registerFirefoxContentScript(options: Registration) {
|
|||||||
ids: [options.id]
|
ids: [options.id]
|
||||||
}).catch(() => []);
|
}).catch(() => []);
|
||||||
|
|
||||||
if (existingRegistrations.length > 0
|
if (existingRegistrations && existingRegistrations.length > 0
|
||||||
&& existingRegistrations[0].matches.every((match) => options.matches.includes(match))) {
|
&& options.matches.every((match) => existingRegistrations[0].matches.includes(match))) {
|
||||||
// No need to register another script, already registered
|
// No need to register another script, already registered
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -222,27 +222,35 @@ async function submitVote(type: number, UUID: string, category: string) {
|
|||||||
|
|
||||||
const typeSection = (type !== undefined) ? "&type=" + type : "&category=" + category;
|
const typeSection = (type !== undefined) ? "&type=" + type : "&category=" + category;
|
||||||
|
|
||||||
//publish this vote
|
try {
|
||||||
const response = await asyncRequestToServer("POST", "/api/voteOnSponsorTime?UUID=" + UUID + "&userID=" + userID + typeSection);
|
const response = await asyncRequestToServer("POST", "/api/voteOnSponsorTime?UUID=" + UUID + "&userID=" + userID + typeSection);
|
||||||
|
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
return {
|
return {
|
||||||
successType: 1,
|
successType: 1,
|
||||||
responseText: await response.text()
|
responseText: await response.text()
|
||||||
};
|
};
|
||||||
} else if (response.status == 405) {
|
} else if (response.status == 405) {
|
||||||
//duplicate vote
|
//duplicate vote
|
||||||
return {
|
return {
|
||||||
successType: 0,
|
successType: 0,
|
||||||
statusCode: response.status,
|
statusCode: response.status,
|
||||||
responseText: await response.text()
|
responseText: await response.text()
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
//error while connect
|
//error while connect
|
||||||
|
return {
|
||||||
|
successType: -1,
|
||||||
|
statusCode: response.status,
|
||||||
|
responseText: await response.text()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
return {
|
return {
|
||||||
successType: -1,
|
successType: -1,
|
||||||
statusCode: response.status,
|
statusCode: -1,
|
||||||
responseText: await response.text()
|
responseText: ""
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import ThumbsUpSvg from "../svg-icons/thumbs_up_svg";
|
|||||||
import ThumbsDownSvg from "../svg-icons/thumbs_down_svg";
|
import ThumbsDownSvg from "../svg-icons/thumbs_down_svg";
|
||||||
import { downvoteButtonColor, SkipNoticeAction } from "../utils/noticeUtils";
|
import { downvoteButtonColor, SkipNoticeAction } from "../utils/noticeUtils";
|
||||||
import { VoteResponse } from "../messageTypes";
|
import { VoteResponse } from "../messageTypes";
|
||||||
import { AnimationUtils } from "../utils/animationUtils";
|
import { AnimationUtils } from "../../maze-utils/src/animationUtils";
|
||||||
import { Tooltip } from "../render/Tooltip";
|
import { Tooltip } from "../render/Tooltip";
|
||||||
import { getErrorMessage } from "../../maze-utils/src/formating";
|
import { getErrorMessage } from "../../maze-utils/src/formating";
|
||||||
|
|
||||||
@@ -53,7 +53,7 @@ class CategoryPillComponent extends React.Component<CategoryPillProps, CategoryP
|
|||||||
|
|
||||||
<span className="sponsorBlockCategoryPillTitleSection">
|
<span className="sponsorBlockCategoryPillTitleSection">
|
||||||
<img className="sponsorSkipLogo sponsorSkipObject"
|
<img className="sponsorSkipLogo sponsorSkipObject"
|
||||||
src={chrome.extension.getURL("icons/IconSponsorBlocker256px.png")}>
|
src={chrome.runtime.getURL("icons/IconSponsorBlocker256px.png")}>
|
||||||
</img>
|
</img>
|
||||||
|
|
||||||
{
|
{
|
||||||
@@ -86,7 +86,7 @@ class CategoryPillComponent extends React.Component<CategoryPillProps, CategoryP
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{/* Close Button */}
|
{/* Close Button */}
|
||||||
<img src={chrome.extension.getURL("icons/close.png")}
|
<img src={chrome.runtime.getURL("icons/close.png")}
|
||||||
className="categoryPillClose"
|
className="categoryPillClose"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
this.setState({ show: false });
|
this.setState({ show: false });
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import ThumbsUpSvg from "../svg-icons/thumbs_up_svg";
|
|||||||
import ThumbsDownSvg from "../svg-icons/thumbs_down_svg";
|
import ThumbsDownSvg from "../svg-icons/thumbs_down_svg";
|
||||||
import { downvoteButtonColor, SkipNoticeAction } from "../utils/noticeUtils";
|
import { downvoteButtonColor, SkipNoticeAction } from "../utils/noticeUtils";
|
||||||
import { VoteResponse } from "../messageTypes";
|
import { VoteResponse } from "../messageTypes";
|
||||||
import { AnimationUtils } from "../utils/animationUtils";
|
import { AnimationUtils } from "../../maze-utils/src/animationUtils";
|
||||||
import { Tooltip } from "../render/Tooltip";
|
import { Tooltip } from "../render/Tooltip";
|
||||||
import { getErrorMessage } from "../../maze-utils/src/formating";
|
import { getErrorMessage } from "../../maze-utils/src/formating";
|
||||||
|
|
||||||
|
|||||||
@@ -207,7 +207,7 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> {
|
|||||||
|
|
||||||
|
|
||||||
{/* Close button */}
|
{/* Close button */}
|
||||||
<img src={chrome.extension.getURL("icons/close.png")}
|
<img src={chrome.runtime.getURL("icons/close.png")}
|
||||||
className={"sponsorSkipObject sponsorSkipNoticeButton sponsorSkipNoticeCloseButton sponsorSkipNoticeRightButton"
|
className={"sponsorSkipObject sponsorSkipNoticeButton sponsorSkipNoticeCloseButton sponsorSkipNoticeRightButton"
|
||||||
+ (this.props.biggerCloseButton ? " biggerCloseButton" : "")}
|
+ (this.props.biggerCloseButton ? " biggerCloseButton" : "")}
|
||||||
onClick={() => this.close()}>
|
onClick={() => this.close()}>
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ export interface SponsorTimeEditState {
|
|||||||
chapterNameSelectorHovering: boolean;
|
chapterNameSelectorHovering: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const categoryNamesGrams: string[] = [].concat(...CompileConfig.categoryList.filter((name) => name !== "chapter")
|
const categoryNamesGrams: string[] = [].concat(...CompileConfig.categoryList.filter((name) => !["chapter", "intro"].includes(name))
|
||||||
.map((name) => chrome.i18n.getMessage("category_" + name).split(/\/|\s|-/)));
|
.map((name) => chrome.i18n.getMessage("category_" + name).split(/\/|\s|-/)));
|
||||||
|
|
||||||
class SponsorTimeEditComponent extends React.Component<SponsorTimeEditProps, SponsorTimeEditState> {
|
class SponsorTimeEditComponent extends React.Component<SponsorTimeEditProps, SponsorTimeEditState> {
|
||||||
@@ -81,13 +81,15 @@ class SponsorTimeEditComponent extends React.Component<SponsorTimeEditProps, Spo
|
|||||||
|
|
||||||
componentDidMount(): void {
|
componentDidMount(): void {
|
||||||
// Prevent inputs from triggering key events
|
// Prevent inputs from triggering key events
|
||||||
document.getElementById("sponsorTimeEditContainer" + this.idSuffix).addEventListener('keydown', function (event) {
|
document.getElementById("sponsorTimeEditContainer" + this.idSuffix).addEventListener('keydown', (e) => {
|
||||||
event.stopPropagation();
|
e.stopPropagation();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Prevent scrolling while changing times
|
// Prevent scrolling while changing times
|
||||||
document.getElementById("sponsorTimesContainer" + this.idSuffix).addEventListener('wheel', function (event) {
|
document.getElementById("sponsorTimesContainer" + this.idSuffix).addEventListener('wheel', (e) => {
|
||||||
event.preventDefault();
|
if (this.state.editing) {
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
}, {passive: false});
|
}, {passive: false});
|
||||||
|
|
||||||
// Add as a config listener
|
// Add as a config listener
|
||||||
@@ -221,7 +223,7 @@ class SponsorTimeEditComponent extends React.Component<SponsorTimeEditProps, Spo
|
|||||||
target="_blank" rel="noreferrer">
|
target="_blank" rel="noreferrer">
|
||||||
<img id={"sponsorTimeCategoriesHelpButton" + this.idSuffix}
|
<img id={"sponsorTimeCategoriesHelpButton" + this.idSuffix}
|
||||||
className="helpButton"
|
className="helpButton"
|
||||||
src={chrome.extension.getURL("icons/help.svg")}
|
src={chrome.runtime.getURL("icons/help.svg")}
|
||||||
title={chrome.i18n.getMessage("categoryGuidelines")} />
|
title={chrome.i18n.getMessage("categoryGuidelines")} />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ export interface SubmissionNoticeProps {
|
|||||||
// Contains functions and variables from the content script needed by the skip notice
|
// Contains functions and variables from the content script needed by the skip notice
|
||||||
contentContainer: ContentContainer;
|
contentContainer: ContentContainer;
|
||||||
|
|
||||||
callback: () => unknown;
|
callback: () => Promise<boolean>;
|
||||||
|
|
||||||
closeListener: () => void;
|
closeListener: () => void;
|
||||||
}
|
}
|
||||||
@@ -69,6 +69,13 @@ class SubmissionNoticeComponent extends React.Component<SubmissionNoticeProps, S
|
|||||||
this.videoObserver.observe(this.contentContainer().v, {
|
this.videoObserver.observe(this.contentContainer().v, {
|
||||||
attributes: true
|
attributes: true
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Prevent zooming while changing times
|
||||||
|
document.getElementById("sponsorSkipNoticeMiddleRow" + this.state.idSuffix).addEventListener('wheel', function (event) {
|
||||||
|
if (event.ctrlKey) {
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
}, {passive: false});
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount(): void {
|
componentWillUnmount(): void {
|
||||||
@@ -100,7 +107,7 @@ class SubmissionNoticeComponent extends React.Component<SubmissionNoticeProps, S
|
|||||||
onClick={() => this.sortSegments()}
|
onClick={() => this.sortSegments()}
|
||||||
title={chrome.i18n.getMessage("sortSegments")}
|
title={chrome.i18n.getMessage("sortSegments")}
|
||||||
key="sortButton"
|
key="sortButton"
|
||||||
src={chrome.extension.getURL("icons/sort.svg")}>
|
src={chrome.runtime.getURL("icons/sort.svg")}>
|
||||||
</img>;
|
</img>;
|
||||||
const exportButton =
|
const exportButton =
|
||||||
<img id={"sponsorSkipExportButton" + this.state.idSuffix}
|
<img id={"sponsorSkipExportButton" + this.state.idSuffix}
|
||||||
@@ -108,7 +115,7 @@ class SubmissionNoticeComponent extends React.Component<SubmissionNoticeProps, S
|
|||||||
onClick={() => this.exportSegments()}
|
onClick={() => this.exportSegments()}
|
||||||
title={chrome.i18n.getMessage("exportSegments")}
|
title={chrome.i18n.getMessage("exportSegments")}
|
||||||
key="exportButton"
|
key="exportButton"
|
||||||
src={chrome.extension.getURL("icons/export.svg")}>
|
src={chrome.runtime.getURL("icons/export.svg")}>
|
||||||
</img>;
|
</img>;
|
||||||
return (
|
return (
|
||||||
<NoticeComponent noticeTitle={this.state.noticeTitle}
|
<NoticeComponent noticeTitle={this.state.noticeTitle}
|
||||||
@@ -232,9 +239,11 @@ class SubmissionNoticeComponent extends React.Component<SubmissionNoticeProps, S
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.props.callback();
|
this.props.callback().then((success) => {
|
||||||
|
if (success) {
|
||||||
this.cancel();
|
this.cancel();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
sortSegments(): void {
|
sortSegments(): void {
|
||||||
|
|||||||
@@ -158,7 +158,7 @@ class CategorySkipOptionsComponent extends React.Component<CategorySkipOptionsPr
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Config.forceLocalUpdate("categorySelections");
|
Config.forceSyncUpdate("categorySelections");
|
||||||
}
|
}
|
||||||
|
|
||||||
getCategorySkipOptions(): JSX.Element[] {
|
getCategorySkipOptions(): JSX.Element[] {
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ import { SkipButtonControlBar } from "./js-components/skipButtonControlBar";
|
|||||||
import { getStartTimeFromUrl } from "./utils/urlParser";
|
import { getStartTimeFromUrl } from "./utils/urlParser";
|
||||||
import { getControls, getExistingChapters, getHashParams, isPlayingPlaylist, isVisible } from "./utils/pageUtils";
|
import { getControls, getExistingChapters, getHashParams, isPlayingPlaylist, isVisible } from "./utils/pageUtils";
|
||||||
import { CategoryPill } from "./render/CategoryPill";
|
import { CategoryPill } from "./render/CategoryPill";
|
||||||
import { AnimationUtils } from "./utils/animationUtils";
|
import { AnimationUtils } from "../maze-utils/src/animationUtils";
|
||||||
import { GenericUtils } from "./utils/genericUtils";
|
import { GenericUtils } from "./utils/genericUtils";
|
||||||
import { logDebug, logWarn } from "./utils/logger";
|
import { logDebug, logWarn } from "./utils/logger";
|
||||||
import { importTimes } from "./utils/exporter";
|
import { importTimes } from "./utils/exporter";
|
||||||
@@ -454,7 +454,9 @@ function videoIDChange(): void {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function handleMobileControlsMutations(): void {
|
function handleMobileControlsMutations(): void {
|
||||||
if (!chrome.runtime?.id) return;
|
// Don't update while scrubbing
|
||||||
|
if (!chrome.runtime?.id
|
||||||
|
|| document.querySelector(".YtProgressBarProgressBarPlayheadDotInDragging")) return;
|
||||||
|
|
||||||
updateVisibilityOfPlayerControlsButton();
|
updateVisibilityOfPlayerControlsButton();
|
||||||
|
|
||||||
@@ -770,6 +772,7 @@ function getVirtualTime(): number {
|
|||||||
|
|
||||||
function inMuteSegment(currentTime: number, includeOverlap: boolean): boolean {
|
function inMuteSegment(currentTime: number, includeOverlap: boolean): boolean {
|
||||||
const checkFunction = (segment) => segment.actionType === ActionType.Mute
|
const checkFunction = (segment) => segment.actionType === ActionType.Mute
|
||||||
|
&& segment.hidden === SponsorHideType.Visible
|
||||||
&& segment.segment[0] <= currentTime
|
&& segment.segment[0] <= currentTime
|
||||||
&& (segment.segment[1] > currentTime || (includeOverlap && segment.segment[1] + 0.02 > currentTime));
|
&& (segment.segment[1] > currentTime || (includeOverlap && segment.segment[1] + 0.02 > currentTime));
|
||||||
return sponsorTimes?.some(checkFunction) || sponsorTimesSubmitting.some(checkFunction);
|
return sponsorTimes?.some(checkFunction) || sponsorTimesSubmitting.some(checkFunction);
|
||||||
@@ -1608,6 +1611,9 @@ function sendTelemetryAndCount(skippingSegments: SponsorTime[], secondsSkipped:
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (fullSkip) asyncRequestToServer("POST", "/api/viewedVideoSponsorTime?UUID=" + segment.UUID);
|
if (fullSkip) asyncRequestToServer("POST", "/api/viewedVideoSponsorTime?UUID=" + segment.UUID);
|
||||||
|
} else if (!previewedSegment && sponsorTimesSubmitting.some((s) => s.segment === segment.segment)) {
|
||||||
|
// Count that as a previewed segment
|
||||||
|
previewedSegment = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1768,7 +1774,7 @@ function createButton(baseID: string, title: string, callback: () => void, image
|
|||||||
newButton.draggable = isDraggable;
|
newButton.draggable = isDraggable;
|
||||||
newButtonImage.id = baseID + "Image";
|
newButtonImage.id = baseID + "Image";
|
||||||
newButtonImage.className = "playerButtonImage";
|
newButtonImage.className = "playerButtonImage";
|
||||||
newButtonImage.src = chrome.extension.getURL("icons/" + imageName);
|
newButtonImage.src = chrome.runtime.getURL("icons/" + imageName);
|
||||||
|
|
||||||
// Append image to button
|
// Append image to button
|
||||||
newButton.appendChild(newButtonImage);
|
newButton.appendChild(newButtonImage);
|
||||||
@@ -1867,10 +1873,10 @@ function updateEditButtonsOnPlayer(): void {
|
|||||||
|
|
||||||
if (buttonsEnabled) {
|
if (buttonsEnabled) {
|
||||||
if (creatingSegment) {
|
if (creatingSegment) {
|
||||||
playerButtons.startSegment.image.src = chrome.extension.getURL("icons/PlayerStopIconSponsorBlocker.svg");
|
playerButtons.startSegment.image.src = chrome.runtime.getURL("icons/PlayerStopIconSponsorBlocker.svg");
|
||||||
playerButtons.startSegment.button.setAttribute("title", chrome.i18n.getMessage("sponsorEnd"));
|
playerButtons.startSegment.button.setAttribute("title", chrome.i18n.getMessage("sponsorEnd"));
|
||||||
} else {
|
} else {
|
||||||
playerButtons.startSegment.image.src = chrome.extension.getURL("icons/PlayerStartIconSponsorBlocker.svg");
|
playerButtons.startSegment.image.src = chrome.runtime.getURL("icons/PlayerStartIconSponsorBlocker.svg");
|
||||||
playerButtons.startSegment.button.setAttribute("title", chrome.i18n.getMessage("sponsorStart"));
|
playerButtons.startSegment.button.setAttribute("title", chrome.i18n.getMessage("sponsorStart"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1983,6 +1989,9 @@ function updateSponsorTimesSubmitting(getFromConfig = true) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (sponsorTimesSubmitting.length > 0) {
|
if (sponsorTimesSubmitting.length > 0) {
|
||||||
|
// Assume they already previewed a segment
|
||||||
|
previewedSegment = true;
|
||||||
|
|
||||||
importExistingChapters(true);
|
importExistingChapters(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2048,7 +2057,7 @@ function openInfoMenu() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
frame.src = chrome.extension.getURL("popup.html");
|
frame.src = chrome.runtime.getURL("popup.html");
|
||||||
popup.appendChild(frame);
|
popup.appendChild(frame);
|
||||||
|
|
||||||
const elemHasChild = (elements: NodeListOf<HTMLElement>): Element => {
|
const elemHasChild = (elements: NodeListOf<HTMLElement>): Element => {
|
||||||
@@ -2257,22 +2266,25 @@ function submitSegments() {
|
|||||||
|
|
||||||
//send the message to the background js
|
//send the message to the background js
|
||||||
//called after all the checks have been made that it's okay to do so
|
//called after all the checks have been made that it's okay to do so
|
||||||
async function sendSubmitMessage() {
|
async function sendSubmitMessage(): Promise<boolean> {
|
||||||
// check if all segments are full video
|
// check if all segments are full video
|
||||||
const onlyFullVideo = sponsorTimesSubmitting.every((segment) => segment.actionType === ActionType.Full);
|
const onlyFullVideo = sponsorTimesSubmitting.every((segment) => segment.actionType === ActionType.Full);
|
||||||
// Block if submitting on a running livestream or premiere
|
// Block if submitting on a running livestream or premiere
|
||||||
if (!onlyFullVideo && (getIsLivePremiere() || isVisible(document.querySelector(".ytp-live-badge")))) {
|
if (!onlyFullVideo && (getIsLivePremiere() || isVisible(document.querySelector(".ytp-live-badge")))) {
|
||||||
alert(chrome.i18n.getMessage("liveOrPremiere"));
|
alert(chrome.i18n.getMessage("liveOrPremiere"));
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!previewedSegment) {
|
if (!previewedSegment
|
||||||
|
&& !sponsorTimesSubmitting.every((segment) =>
|
||||||
|
[ActionType.Full, ActionType.Chapter, ActionType.Poi].includes(segment.actionType)
|
||||||
|
|| segment.segment[1] >= getVideo()?.duration)) {
|
||||||
alert(`${chrome.i18n.getMessage("previewSegmentRequired")} ${keybindToString(Config.config.previewKeybind)}`);
|
alert(`${chrome.i18n.getMessage("previewSegmentRequired")} ${keybindToString(Config.config.previewKeybind)}`);
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add loading animation
|
// Add loading animation
|
||||||
playerButtons.submit.image.src = chrome.extension.getURL("icons/PlayerUploadIconSponsorBlocker.svg");
|
playerButtons.submit.image.src = chrome.runtime.getURL("icons/PlayerUploadIconSponsorBlocker.svg");
|
||||||
const stopAnimation = AnimationUtils.applyLoadingAnimation(playerButtons.submit.button, 1, () => updateEditButtonsOnPlayer());
|
const stopAnimation = AnimationUtils.applyLoadingAnimation(playerButtons.submit.button, 1, () => updateEditButtonsOnPlayer());
|
||||||
|
|
||||||
//check if a sponsor exceeds the duration of the video
|
//check if a sponsor exceeds the duration of the video
|
||||||
@@ -2294,7 +2306,7 @@ async function sendSubmitMessage() {
|
|||||||
const confirmShort = chrome.i18n.getMessage("shortCheck") + "\n\n" +
|
const confirmShort = chrome.i18n.getMessage("shortCheck") + "\n\n" +
|
||||||
getSegmentsMessage(sponsorTimesSubmitting);
|
getSegmentsMessage(sponsorTimesSubmitting);
|
||||||
|
|
||||||
if(!confirm(confirmShort)) return;
|
if(!confirm(confirmShort)) return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2344,10 +2356,12 @@ async function sendSubmitMessage() {
|
|||||||
if (fullVideoSegment) {
|
if (fullVideoSegment) {
|
||||||
categoryPill?.setSegment(fullVideoSegment);
|
categoryPill?.setSegment(fullVideoSegment);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
} else {
|
} else {
|
||||||
// Show that the upload failed
|
// Show that the upload failed
|
||||||
playerButtons.submit.button.style.animation = "unset";
|
playerButtons.submit.button.style.animation = "unset";
|
||||||
playerButtons.submit.image.src = chrome.extension.getURL("icons/PlayerUploadFailedIconSponsorBlocker.svg");
|
playerButtons.submit.image.src = chrome.runtime.getURL("icons/PlayerUploadFailedIconSponsorBlocker.svg");
|
||||||
|
|
||||||
if (response.status === 403 && response.responseText.startsWith("Submission rejected due to a tip from a moderator.")) {
|
if (response.status === 403 && response.responseText.startsWith("Submission rejected due to a tip from a moderator.")) {
|
||||||
openWarningDialog(skipNoticeContentContainer);
|
openWarningDialog(skipNoticeContentContainer);
|
||||||
@@ -2355,6 +2369,8 @@ async function sendSubmitMessage() {
|
|||||||
alert(getErrorMessage(response.status, response.responseText));
|
alert(getErrorMessage(response.status, response.responseText));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
//get the message that visually displays the video times
|
//get the message that visually displays the video times
|
||||||
@@ -2380,6 +2396,8 @@ function getSegmentsMessage(sponsorTimes: SponsorTime[]): string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function updateActiveSegment(currentTime: number): void {
|
function updateActiveSegment(currentTime: number): void {
|
||||||
|
previewBar?.updateChapterText(sponsorTimes, sponsorTimesSubmitting, currentTime);
|
||||||
|
|
||||||
chrome.runtime.sendMessage({
|
chrome.runtime.sendMessage({
|
||||||
message: "time",
|
message: "time",
|
||||||
time: currentTime
|
time: currentTime
|
||||||
@@ -2531,7 +2549,7 @@ function addCSS() {
|
|||||||
|
|
||||||
fileref.rel = "stylesheet";
|
fileref.rel = "stylesheet";
|
||||||
fileref.type = "text/css";
|
fileref.type = "text/css";
|
||||||
fileref.href = chrome.extension.getURL(file);
|
fileref.href = chrome.runtime.getURL(file);
|
||||||
|
|
||||||
head.appendChild(fileref);
|
head.appendChild(fileref);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ import { ActionType, Category, SegmentContainer, SponsorHideType, SponsorSourceT
|
|||||||
import { partition } from "../utils/arrayUtils";
|
import { partition } from "../utils/arrayUtils";
|
||||||
import { DEFAULT_CATEGORY, shortCategoryName } from "../utils/categoryUtils";
|
import { DEFAULT_CATEGORY, shortCategoryName } from "../utils/categoryUtils";
|
||||||
import { normalizeChapterName } from "../utils/exporter";
|
import { normalizeChapterName } from "../utils/exporter";
|
||||||
import { getFormattedTimeToSeconds } from "../../maze-utils/src/formating";
|
|
||||||
import { findValidElement } from "../../maze-utils/src/dom";
|
import { findValidElement } from "../../maze-utils/src/dom";
|
||||||
import { addCleanupListener } from "../../maze-utils/src/cleanup";
|
import { addCleanupListener } from "../../maze-utils/src/cleanup";
|
||||||
|
|
||||||
@@ -125,34 +124,11 @@ class PreviewBar {
|
|||||||
mouseOnSeekBar = false;
|
mouseOnSeekBar = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
const observer = new MutationObserver((mutations) => {
|
seekBar.addEventListener("mousemove", (e: MouseEvent) => {
|
||||||
if (!mouseOnSeekBar || !this.categoryTooltip || !this.categoryTooltipContainer) return;
|
if (!mouseOnSeekBar || !this.categoryTooltip || !this.categoryTooltipContainer || !chrome.runtime?.id) return;
|
||||||
|
|
||||||
// Only care about mutations to time tooltip
|
let noYoutubeChapters = !!tooltipTextWrapper.querySelector(".ytp-tooltip-text.ytp-tooltip-text-no-title");
|
||||||
if (!mutations.some((mutation) => (mutation.target as HTMLElement).classList.contains("ytp-tooltip-text"))) {
|
const timeInSeconds = this.decimalToTime((e.clientX - seekBar.getBoundingClientRect().x) / seekBar.clientWidth);
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const tooltipTextElements = tooltipTextWrapper.querySelectorAll(".ytp-tooltip-text");
|
|
||||||
let timeInSeconds: number | null = null;
|
|
||||||
let noYoutubeChapters = false;
|
|
||||||
|
|
||||||
for (const tooltipTextElement of tooltipTextElements) {
|
|
||||||
if (tooltipTextElement.classList.contains('ytp-tooltip-text-no-title')) noYoutubeChapters = true;
|
|
||||||
|
|
||||||
const tooltipText = tooltipTextElement.textContent;
|
|
||||||
if (tooltipText === null || tooltipText.length === 0) continue;
|
|
||||||
|
|
||||||
timeInSeconds = getFormattedTimeToSeconds(tooltipText);
|
|
||||||
|
|
||||||
if (timeInSeconds !== null) break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (timeInSeconds === null) {
|
|
||||||
originalTooltip.style.removeProperty("display");
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Find the segment at that location, using the shortest if multiple found
|
// Find the segment at that location, using the shortest if multiple found
|
||||||
const [normalSegments, chapterSegments] =
|
const [normalSegments, chapterSegments] =
|
||||||
@@ -198,15 +174,6 @@ class PreviewBar {
|
|||||||
this.chapterTooltip.style.textAlign = titleTooltip.style.textAlign;
|
this.chapterTooltip.style.textAlign = titleTooltip.style.textAlign;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
observer.observe(tooltipTextWrapper, {
|
|
||||||
childList: true,
|
|
||||||
subtree: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
addCleanupListener(() => {
|
|
||||||
observer.disconnect();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private setTooltipTitle(segment: PreviewBarSegment, tooltip: HTMLElement): void {
|
private setTooltipTitle(segment: PreviewBarSegment, tooltip: HTMLElement): void {
|
||||||
@@ -307,6 +274,7 @@ class PreviewBar {
|
|||||||
return (b[1] - b[0]) - (a[1] - a[0]);
|
return (b[1] - b[0]) - (a[1] - a[0]);
|
||||||
});
|
});
|
||||||
for (const segment of sortedSegments) {
|
for (const segment of sortedSegments) {
|
||||||
|
if (segment.actionType === ActionType.Chapter) continue;
|
||||||
const bar = this.createBar(segment);
|
const bar = this.createBar(segment);
|
||||||
|
|
||||||
this.container.appendChild(bar);
|
this.container.appendChild(bar);
|
||||||
@@ -346,7 +314,7 @@ class PreviewBar {
|
|||||||
bar.style.left = this.timeToPercentage(startTime);
|
bar.style.left = this.timeToPercentage(startTime);
|
||||||
|
|
||||||
if (duration > 0) {
|
if (duration > 0) {
|
||||||
bar.style.right = this.timeToPercentage(this.videoDuration - endTime);
|
bar.style.right = this.timeToRightPercentage(endTime);
|
||||||
}
|
}
|
||||||
if (this.chapterFilter(barSegment) && segment[1] < this.videoDuration) {
|
if (this.chapterFilter(barSegment) && segment[1] < this.videoDuration) {
|
||||||
bar.style.marginRight = `${this.chapterMargin}px`;
|
bar.style.marginRight = `${this.chapterMargin}px`;
|
||||||
@@ -919,7 +887,22 @@ class PreviewBar {
|
|||||||
return `${this.timeToDecimal(time) * 100}%`
|
return `${this.timeToDecimal(time) * 100}%`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
timeToRightPercentage(time: number): string {
|
||||||
|
return `${(1 - this.timeToDecimal(time)) * 100}%`
|
||||||
|
}
|
||||||
|
|
||||||
timeToDecimal(time: number): number {
|
timeToDecimal(time: number): number {
|
||||||
|
return this.decimalTimeConverter(time, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
decimalToTime(decimal: number): number {
|
||||||
|
return this.decimalTimeConverter(decimal, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decimal to time or time to decimal
|
||||||
|
*/
|
||||||
|
decimalTimeConverter(value: number, isTime: boolean): number {
|
||||||
if (this.originalChapterBarBlocks?.length > 1 && this.existingChapters.length === this.originalChapterBarBlocks?.length) {
|
if (this.originalChapterBarBlocks?.length > 1 && this.existingChapters.length === this.originalChapterBarBlocks?.length) {
|
||||||
// Parent element to still work when display: none
|
// Parent element to still work when display: none
|
||||||
const totalPixels = this.originalChapterBar.parentElement.clientWidth;
|
const totalPixels = this.originalChapterBar.parentElement.clientWidth;
|
||||||
@@ -929,8 +912,9 @@ class PreviewBar {
|
|||||||
const chapterElement = this.originalChapterBarBlocks[i];
|
const chapterElement = this.originalChapterBarBlocks[i];
|
||||||
const widthPixels = parseFloat(chapterElement.style.width.replace("px", ""));
|
const widthPixels = parseFloat(chapterElement.style.width.replace("px", ""));
|
||||||
|
|
||||||
if (time >= this.existingChapters[i].segment[1]) {
|
const marginPixels = chapterElement.style.marginRight ? parseFloat(chapterElement.style.marginRight.replace("px", "")) : 0;
|
||||||
const marginPixels = chapterElement.style.marginRight ? parseFloat(chapterElement.style.marginRight.replace("px", "")) : 0;
|
if ((isTime && value >= this.existingChapters[i].segment[1])
|
||||||
|
|| (!isTime && value >= (pixelOffset + widthPixels + marginPixels) / totalPixels)) {
|
||||||
pixelOffset += widthPixels + marginPixels;
|
pixelOffset += widthPixels + marginPixels;
|
||||||
lastCheckedChapter = i;
|
lastCheckedChapter = i;
|
||||||
} else {
|
} else {
|
||||||
@@ -944,13 +928,22 @@ class PreviewBar {
|
|||||||
const latestWidth = parseFloat(this.originalChapterBarBlocks[lastCheckedChapter + 1].style.width.replace("px", ""));
|
const latestWidth = parseFloat(this.originalChapterBarBlocks[lastCheckedChapter + 1].style.width.replace("px", ""));
|
||||||
const latestChapterDuration = latestChapter.segment[1] - latestChapter.segment[0];
|
const latestChapterDuration = latestChapter.segment[1] - latestChapter.segment[0];
|
||||||
|
|
||||||
const percentageInCurrentChapter = (time - latestChapter.segment[0]) / latestChapterDuration;
|
if (isTime) {
|
||||||
const sizeOfCurrentChapter = latestWidth / totalPixels;
|
const percentageInCurrentChapter = (value - latestChapter.segment[0]) / latestChapterDuration;
|
||||||
return Math.min(1, ((pixelOffset / totalPixels) + (percentageInCurrentChapter * sizeOfCurrentChapter)));
|
const sizeOfCurrentChapter = latestWidth / totalPixels;
|
||||||
|
return Math.min(1, ((pixelOffset / totalPixels) + (percentageInCurrentChapter * sizeOfCurrentChapter)));
|
||||||
|
} else {
|
||||||
|
const percentageInCurrentChapter = (value * totalPixels - pixelOffset) / latestWidth;
|
||||||
|
return Math.max(0, latestChapter.segment[0] + (percentageInCurrentChapter * latestChapterDuration));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Math.min(1, time / this.videoDuration);
|
if (isTime) {
|
||||||
|
return Math.min(1, value / this.videoDuration);
|
||||||
|
} else {
|
||||||
|
return Math.max(0, value * this.videoDuration);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import Config from "../config";
|
import Config from "../config";
|
||||||
import { SegmentUUID, SponsorTime } from "../types";
|
import { SegmentUUID, SponsorTime } from "../types";
|
||||||
import { getSkippingText } from "../utils/categoryUtils";
|
import { getSkippingText } from "../utils/categoryUtils";
|
||||||
import { AnimationUtils } from "../utils/animationUtils";
|
import { AnimationUtils } from "../../maze-utils/src/animationUtils";
|
||||||
import { keybindToString } from "../../maze-utils/src/config";
|
import { keybindToString } from "../../maze-utils/src/config";
|
||||||
import { isMobileControlsOpen } from "../utils/mobileUtils";
|
import { isMobileControlsOpen } from "../utils/mobileUtils";
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ import {
|
|||||||
VoteResponse,
|
VoteResponse,
|
||||||
} from "./messageTypes";
|
} from "./messageTypes";
|
||||||
import { showDonationLink } from "./utils/configUtils";
|
import { showDonationLink } from "./utils/configUtils";
|
||||||
import { AnimationUtils } from "./utils/animationUtils";
|
import { AnimationUtils } from "../maze-utils/src/animationUtils";
|
||||||
import { shortCategoryName } from "./utils/categoryUtils";
|
import { shortCategoryName } from "./utils/categoryUtils";
|
||||||
import { localizeHtmlPage } from "../maze-utils/src/setup";
|
import { localizeHtmlPage } from "../maze-utils/src/setup";
|
||||||
import { exportTimes } from "./utils/exporter";
|
import { exportTimes } from "./utils/exporter";
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ export class RectangleTooltip {
|
|||||||
className="sponsorBlockRectangleTooltip" >
|
className="sponsorBlockRectangleTooltip" >
|
||||||
<div>
|
<div>
|
||||||
<img className="sponsorSkipLogo sponsorSkipObject"
|
<img className="sponsorSkipLogo sponsorSkipObject"
|
||||||
src={chrome.extension.getURL("icons/IconSponsorBlocker256px.png")}>
|
src={chrome.runtime.getURL("icons/IconSponsorBlocker256px.png")}>
|
||||||
</img>
|
</img>
|
||||||
<span className="sponsorSkipObject">
|
<span className="sponsorSkipObject">
|
||||||
{this.text + (props.link ? ". " : "")}
|
{this.text + (props.link ? ". " : "")}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ class SubmissionNotice {
|
|||||||
// Contains functions and variables from the content script needed by the skip notice
|
// Contains functions and variables from the content script needed by the skip notice
|
||||||
contentContainer: () => unknown;
|
contentContainer: () => unknown;
|
||||||
|
|
||||||
callback: () => unknown;
|
callback: () => Promise<boolean>;
|
||||||
|
|
||||||
noticeRef: React.MutableRefObject<SubmissionNoticeComponent>;
|
noticeRef: React.MutableRefObject<SubmissionNoticeComponent>;
|
||||||
|
|
||||||
@@ -19,7 +19,7 @@ class SubmissionNotice {
|
|||||||
|
|
||||||
root: Root;
|
root: Root;
|
||||||
|
|
||||||
constructor(contentContainer: ContentContainer, callback: () => unknown) {
|
constructor(contentContainer: ContentContainer, callback: () => Promise<boolean>) {
|
||||||
this.noticeRef = React.createRef();
|
this.noticeRef = React.createRef();
|
||||||
|
|
||||||
this.contentContainer = contentContainer;
|
this.contentContainer = contentContainer;
|
||||||
|
|||||||
@@ -1,78 +0,0 @@
|
|||||||
/**
|
|
||||||
* Starts a spinning animation and returns a function to be called when it should be stopped
|
|
||||||
* The callback will be called when the animation is finished
|
|
||||||
* It waits until a full rotation is complete
|
|
||||||
*/
|
|
||||||
function applyLoadingAnimation(element: HTMLElement, time: number, callback?: () => void): () => Promise<void> {
|
|
||||||
element.style.animation = `rotate ${time}s 0s infinite`;
|
|
||||||
|
|
||||||
return async () => new Promise((resolve) => {
|
|
||||||
// Make the animation finite
|
|
||||||
element.style.animation = `rotate ${time}s`;
|
|
||||||
|
|
||||||
// When the animation is over, hide the button
|
|
||||||
const animationEndListener = () => {
|
|
||||||
if (callback) callback();
|
|
||||||
|
|
||||||
element.style.animation = "none";
|
|
||||||
|
|
||||||
element.removeEventListener("animationend", animationEndListener);
|
|
||||||
|
|
||||||
resolve();
|
|
||||||
};
|
|
||||||
|
|
||||||
element.addEventListener("animationend", animationEndListener);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function setupCustomHideAnimation(element: Element, container: Element, enabled = true, rightSlide = true): { hide: () => void; show: () => void } {
|
|
||||||
if (enabled) element.classList.add("autoHiding");
|
|
||||||
element.classList.add("sbhidden");
|
|
||||||
element.classList.add("animationDone");
|
|
||||||
if (!rightSlide) element.classList.add("autoHideLeft");
|
|
||||||
|
|
||||||
let mouseEntered = false;
|
|
||||||
|
|
||||||
return {
|
|
||||||
hide: () => {
|
|
||||||
mouseEntered = false;
|
|
||||||
if (element.classList.contains("autoHiding")) {
|
|
||||||
element.classList.add("sbhidden");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
show: () => {
|
|
||||||
mouseEntered = true;
|
|
||||||
element.classList.remove("animationDone");
|
|
||||||
|
|
||||||
// Wait for next event loop
|
|
||||||
setTimeout(() => {
|
|
||||||
if (mouseEntered) element.classList.remove("sbhidden")
|
|
||||||
}, 10);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
function setupAutoHideAnimation(element: Element, container: Element, enabled = true, rightSlide = true): void {
|
|
||||||
const { hide, show } = this.setupCustomHideAnimation(element, container, enabled, rightSlide);
|
|
||||||
|
|
||||||
container.addEventListener("mouseleave", () => hide());
|
|
||||||
container.addEventListener("mouseenter", () => show());
|
|
||||||
}
|
|
||||||
|
|
||||||
function enableAutoHideAnimation(element: Element): void {
|
|
||||||
element.classList.add("autoHiding");
|
|
||||||
element.classList.add("sbhidden");
|
|
||||||
}
|
|
||||||
|
|
||||||
function disableAutoHideAnimation(element: Element): void {
|
|
||||||
element.classList.remove("autoHiding");
|
|
||||||
element.classList.remove("sbhidden");
|
|
||||||
}
|
|
||||||
|
|
||||||
export const AnimationUtils = {
|
|
||||||
applyLoadingAnimation,
|
|
||||||
setupAutoHideAnimation,
|
|
||||||
setupCustomHideAnimation,
|
|
||||||
enableAutoHideAnimation,
|
|
||||||
disableAutoHideAnimation
|
|
||||||
};
|
|
||||||
@@ -160,7 +160,7 @@ module.exports = env => {
|
|||||||
if (path.match(/(\/|\\)_locales(\/|\\).+/)) {
|
if (path.match(/(\/|\\)_locales(\/|\\).+/)) {
|
||||||
const parsed = JSON.parse(content.toString());
|
const parsed = JSON.parse(content.toString());
|
||||||
if (env.browser.toLowerCase() === "safari") {
|
if (env.browser.toLowerCase() === "safari") {
|
||||||
parsed.fullName.message = parsed.fullName.message.match(/^.+(?= -)/)?.[0] || parsed.fullName.message;
|
parsed.fullName.message = parsed.fullName.message.match(/^.+(?= [-–])/)?.[0] || parsed.fullName.message;
|
||||||
if (parsed.fullName.message.length > 50) {
|
if (parsed.fullName.message.length > 50) {
|
||||||
parsed.fullName.message = parsed.fullName.message.slice(0, 47) + "...";
|
parsed.fullName.message = parsed.fullName.message.slice(0, 47) + "...";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user