fixed first-run contextmenu not shown bug

master
and94x 2 years ago
parent 09e788a37e
commit 470ae7e8d0

@ -1,51 +1,51 @@
chrome.contextMenus.onClicked.addListener(addToStammTV);
let WEBSOCKET_URL = "";
let WEBSOCKET_URL;
let websocket;
const CONTEXT_MENU_ID = "STAMMTV_ADD_URL_TO_PLAYLIST";
chrome.storage.local.get('firstRun', function (result) {
if (result.firstRun === false) {
chrome.storage.local.set({'firstRun': false}, function (result) {
chrome.runtime.onInstalled.addListener(function (details) {
if (details.reason === "install") {
chrome.runtime.openOptionsPage();
});
} else {
} else if (details.reason === "update") {
chrome.storage.local.get(['baseURL', 'wssURL'], function (items) {
if (items.wssURL !== undefined && items.wssURL.startsWith('wss://')) {
WEBSOCKET_URL = items.wssURL;
init();
} else {
chrome.runtime.openOptionsPage();
}
});
}
});
})
function init() {
chrome.contextMenus.removeAll(function() {
chrome.contextMenus.removeAll(function () {
chrome.contextMenus.create({
title: "Zu StammTV Playlist hinzufügen...",
contexts: ["link"],
id: CONTEXT_MENU_ID
});
});
}
});
function parseYoutubeURL(url) {
const YOUTUBE_URL_REGEX = /^(?:https?:\/\/(?:www\.)?youtu(?:\.be\/|be\.com\/watch\?v=|be\.com\/shorts\/)){1}([^#&?]*)(?:[?&]t=\d+)?.*/;
const YOUTUBE_URL_REGEX = /^https?:\/\/(?:www\.)?youtu(?:\.be\/|be\.com\/watch\?v=|be\.com\/shorts\/)([^#&?]*)(?:[?&]t=\d+)?.*/;
let match = url.match(YOUTUBE_URL_REGEX);
return (match && match[1].length === 11) ? match[1] : false;
}
function addToStammTV(info, tab) {
if (info.menuItemId === CONTEXT_MENU_ID) { //if OUR menu item was clicked
let videoId = parseYoutubeURL(info.linkUrl)
if (videoId) {
if (websocket === undefined
|| websocket.readyState !== WebSocket.OPEN) {
chrome.storage.local.get('wssURL', function (result) {
if (result.wssURL) {
WEBSOCKET_URL = result.wssURL;
} else {
chrome.runtime.openOptionsPage();
}
});
websocket = new WebSocket(WEBSOCKET_URL);
console.log('websocket created');
} else {

@ -46,6 +46,5 @@
<script src="/i18n.js"></script>
<script src="settings.js"></script>
<script src="/script.js"></script>
</body>
</html>

@ -28,7 +28,6 @@ function validateAndSave() {
if (valid) {
save();
init();
} else {
console.log('Failed to save settings - form validation was not successful.')
saveButton.classList.replace('btn-primary', 'btn-danger');

Loading…
Cancel
Save