From 2db528b8dd65d63257bcb840a575e8e7f8c76b39 Mon Sep 17 00:00:00 2001 From: PikachuEXE Date: Tue, 31 May 2022 02:32:38 +0800 Subject: [PATCH] ! Fix handling of youtube link middle mouse click (#2083) To properly open new windows --- src/main/index.js | 5 ++-- src/renderer/App.js | 59 +++++++++++++++++++++++++++++++++++---------- 2 files changed, 49 insertions(+), 15 deletions(-) diff --git a/src/main/index.js b/src/main/index.js index 900ea2697..dbf6378eb 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -433,10 +433,11 @@ function runApp() { return powerSaveBlocker.start('prevent-display-sleep') }) - ipcMain.on(IpcChannels.CREATE_NEW_WINDOW, () => { + ipcMain.on(IpcChannels.CREATE_NEW_WINDOW, (_e, { windowStartupUrl = null } = { }) => { createWindow({ replaceMainWindow: false, - showWindowNow: true + showWindowNow: true, + windowStartupUrl: windowStartupUrl }) }) diff --git a/src/renderer/App.js b/src/renderer/App.js index b5f11d3c0..747807138 100644 --- a/src/renderer/App.js +++ b/src/renderer/App.js @@ -349,7 +349,11 @@ export default Vue.extend({ const isYoutubeLink = youtubeUrlPattern.test(el.href) if (isYoutubeLink) { - this.handleYoutubeLink(el.href) + // `auxclick` is the event type for non-left click + // https://developer.mozilla.org/en-US/docs/Web/API/Element/auxclick_event + this.handleYoutubeLink(el.href, { + doCreateNewWindow: event.type === 'auxclick' + }) } else if (this.externalLinkHandling === 'doNothing') { // Let user know opening external link is disabled via setting this.showToast({ @@ -366,7 +370,7 @@ export default Vue.extend({ } }, - handleYoutubeLink: function (href) { + handleYoutubeLink: function (href, { doCreateNewWindow = false } = { }) { this.getYoutubeUrlInfo(href).then((result) => { switch (result.urlType) { case 'video': { @@ -379,9 +383,11 @@ export default Vue.extend({ if (playlistId && playlistId.length > 0) { query.playlistId = playlistId } - this.$router.push({ - path: `/watch/${videoId}`, - query: query + const path = `/watch/${videoId}` + this.openInternalPath({ + path, + query, + doCreateNewWindow }) break } @@ -389,9 +395,11 @@ export default Vue.extend({ case 'playlist': { const { playlistId, query } = result - this.$router.push({ - path: `/playlist/${playlistId}`, - query + const path = `/playlist/${playlistId}` + this.openInternalPath({ + path, + query, + doCreateNewWindow }) break } @@ -399,9 +407,11 @@ export default Vue.extend({ case 'search': { const { searchQuery, query } = result - this.$router.push({ - path: `/search/${encodeURIComponent(searchQuery)}`, - query + const path = `/search/${encodeURIComponent(searchQuery)}` + this.openInternalPath({ + path, + query, + doCreateNewWindow }) break } @@ -422,8 +432,10 @@ export default Vue.extend({ case 'channel': { const { channelId, subPath } = result - this.$router.push({ - path: `/channel/${channelId}/${subPath}` + const path = `/channel/${channelId}/${subPath}` + this.openInternalPath({ + path, + doCreateNewWindow }) break } @@ -458,6 +470,27 @@ export default Vue.extend({ }) }, + openInternalPath: function({ path, doCreateNewWindow, query = {} }) { + if (this.usingElectron && doCreateNewWindow) { + const { ipcRenderer } = require('electron') + + // Combine current document path and new "hash" as new window startup URL + const newWindowStartupURL = [ + window.location.href.split('#')[0], + `#${path}?${(new URLSearchParams(query)).toString()}` + ].join('') + ipcRenderer.send(IpcChannels.CREATE_NEW_WINDOW, { + windowStartupUrl: newWindowStartupURL + }) + } else { + // Web + this.$router.push({ + path, + query + }) + } + }, + enableOpenUrl: function () { ipcRenderer.on('openUrl', (event, url) => { if (url) {