2021-04-08 13:42:24 +00:00
|
|
|
import { app, BrowserWindow, Menu, ipcMain, screen } from 'electron'
|
2020-09-20 18:54:23 +00:00
|
|
|
import Datastore from 'nedb'
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
if (process.argv.includes('--version')) {
|
|
|
|
console.log(`v${app.getVersion()}`)
|
|
|
|
app.exit(0)
|
2020-10-15 13:33:25 +00:00
|
|
|
} else {
|
2021-03-07 16:07:09 +00:00
|
|
|
runApp()
|
2020-10-15 13:33:25 +00:00
|
|
|
}
|
2020-10-04 20:31:07 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
function runApp() {
|
|
|
|
require('@electron/remote/main').initialize()
|
|
|
|
|
|
|
|
require('electron-context-menu')({
|
|
|
|
showSearchWithGoogle: false,
|
|
|
|
showSaveImageAs: true,
|
|
|
|
showCopyImageAddress: true,
|
|
|
|
prepend: (params, browserWindow) => []
|
|
|
|
})
|
|
|
|
|
|
|
|
const localDataStorage = app.getPath('userData') // Grabs the userdata directory based on the user's OS
|
|
|
|
|
|
|
|
const settingsDb = new Datastore({
|
|
|
|
filename: localDataStorage + '/settings.db',
|
|
|
|
autoload: true
|
|
|
|
})
|
|
|
|
|
|
|
|
// disable electron warning
|
|
|
|
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = 'true'
|
|
|
|
const path = require('path')
|
|
|
|
const isDev = process.env.NODE_ENV === 'development'
|
|
|
|
const isDebug = process.argv.includes('--debug')
|
|
|
|
let mainWindow
|
2021-04-15 18:28:35 +00:00
|
|
|
let openedWindows = []
|
2021-03-07 16:07:09 +00:00
|
|
|
let startupUrl
|
|
|
|
|
|
|
|
// CORS somehow gets re-enabled in Electron v9.0.4
|
|
|
|
// This line disables it.
|
|
|
|
// This line can possible be removed if the issue is fixed upstream
|
|
|
|
app.commandLine.appendSwitch('disable-features', 'OutOfBlinkCors')
|
|
|
|
|
|
|
|
app.commandLine.appendSwitch('enable-accelerated-video-decode')
|
2021-04-08 03:07:15 +00:00
|
|
|
app.commandLine.appendSwitch('enable-file-cookies')
|
2021-03-07 16:07:09 +00:00
|
|
|
app.commandLine.appendSwitch('ignore-gpu-blacklist')
|
|
|
|
|
|
|
|
// See: https://stackoverflow.com/questions/45570589/electron-protocol-handler-not-working-on-windows
|
|
|
|
// remove so we can register each time as we run the app.
|
|
|
|
app.removeAsDefaultProtocolClient('freetube')
|
|
|
|
|
|
|
|
// If we are running a non-packaged version of the app && on windows
|
|
|
|
if (isDev && process.platform === 'win32') {
|
|
|
|
// Set the path of electron.exe and your app.
|
|
|
|
// These two additional parameters are only available on windows.
|
|
|
|
app.setAsDefaultProtocolClient('freetube', process.execPath, [path.resolve(process.argv[1])])
|
|
|
|
} else {
|
|
|
|
app.setAsDefaultProtocolClient('freetube')
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Uncomment if needed
|
|
|
|
// only allow single instance of application
|
|
|
|
if (!isDev) {
|
|
|
|
const gotTheLock = app.requestSingleInstanceLock()
|
|
|
|
|
|
|
|
if (gotTheLock) {
|
|
|
|
app.on('second-instance', (event, commandLine, workingDirectory) => {
|
|
|
|
// Someone tried to run a second instance, we should focus our window.
|
|
|
|
if (mainWindow && typeof (commandLine) !== 'undefined') {
|
|
|
|
if (mainWindow.isMinimized()) mainWindow.restore()
|
|
|
|
mainWindow.focus()
|
|
|
|
|
|
|
|
const url = getLinkUrl(commandLine)
|
|
|
|
if (url) {
|
|
|
|
mainWindow.webContents.send('openUrl', url)
|
|
|
|
}
|
2020-10-15 13:33:25 +00:00
|
|
|
}
|
2021-03-07 16:07:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
app.on('ready', (event, commandLine, workingDirectory) => {
|
|
|
|
settingsDb.find({
|
|
|
|
$or: [
|
|
|
|
{ _id: 'disableSmoothScrolling' },
|
|
|
|
{ _id: 'useProxy' },
|
|
|
|
{ _id: 'proxyProtocol' },
|
|
|
|
{ _id: 'proxyHostname' },
|
|
|
|
{ _id: 'proxyPort' }
|
|
|
|
]
|
|
|
|
}, function (err, doc) {
|
|
|
|
if (err) {
|
|
|
|
app.exit(0)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let disableSmoothScrolling = false
|
|
|
|
let useProxy = false
|
|
|
|
let proxyProtocol = 'socks5'
|
|
|
|
let proxyHostname = '127.0.0.1'
|
|
|
|
let proxyPort = '9050'
|
|
|
|
|
|
|
|
if (typeof doc === 'object' && doc.length > 0) {
|
|
|
|
doc.forEach((dbItem) => {
|
|
|
|
switch (dbItem._id) {
|
|
|
|
case 'disableSmoothScrolling':
|
|
|
|
disableSmoothScrolling = dbItem.value
|
|
|
|
break
|
|
|
|
case 'useProxy':
|
|
|
|
useProxy = dbItem.value
|
|
|
|
break
|
|
|
|
case 'proxyProtocol':
|
|
|
|
proxyProtocol = dbItem.value
|
|
|
|
break
|
|
|
|
case 'proxyHostname':
|
|
|
|
proxyHostname = dbItem.value
|
|
|
|
break
|
|
|
|
case 'proxyPort':
|
|
|
|
proxyPort = dbItem.value
|
|
|
|
break
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if (disableSmoothScrolling) {
|
|
|
|
app.commandLine.appendSwitch('disable-smooth-scrolling')
|
|
|
|
} else {
|
|
|
|
app.commandLine.appendSwitch('enable-smooth-scrolling')
|
|
|
|
}
|
|
|
|
|
|
|
|
const proxyUrl = `${proxyProtocol}://${proxyHostname}:${proxyPort}`
|
|
|
|
|
|
|
|
createWindow(useProxy, proxyUrl)
|
|
|
|
|
|
|
|
if (isDev) {
|
|
|
|
installDevTools()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isDebug) {
|
|
|
|
mainWindow.webContents.openDevTools()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
app.quit()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
require('electron-debug')({
|
|
|
|
showDevTools: !(process.env.RENDERER_REMOTE_DEBUGGING === 'true')
|
2020-10-04 20:31:07 +00:00
|
|
|
})
|
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
app.on('ready', () => {
|
2021-01-14 18:51:33 +00:00
|
|
|
settingsDb.find({
|
|
|
|
$or: [
|
|
|
|
{ _id: 'disableSmoothScrolling' },
|
|
|
|
{ _id: 'useProxy' },
|
|
|
|
{ _id: 'proxyProtocol' },
|
|
|
|
{ _id: 'proxyHostname' },
|
|
|
|
{ _id: 'proxyPort' }
|
|
|
|
]
|
2020-10-07 13:57:22 +00:00
|
|
|
}, function (err, doc) {
|
|
|
|
if (err) {
|
|
|
|
app.exit(0)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-14 18:51:33 +00:00
|
|
|
let disableSmoothScrolling = false
|
|
|
|
let useProxy = false
|
|
|
|
let proxyProtocol = 'socks5'
|
|
|
|
let proxyHostname = '127.0.0.1'
|
|
|
|
let proxyPort = '9050'
|
|
|
|
|
|
|
|
if (typeof doc === 'object' && doc.length > 0) {
|
|
|
|
doc.forEach((dbItem) => {
|
|
|
|
switch (dbItem._id) {
|
|
|
|
case 'disableSmoothScrolling':
|
|
|
|
disableSmoothScrolling = dbItem.value
|
|
|
|
break
|
|
|
|
case 'useProxy':
|
|
|
|
useProxy = dbItem.value
|
|
|
|
break
|
|
|
|
case 'proxyProtocol':
|
|
|
|
proxyProtocol = dbItem.value
|
|
|
|
break
|
|
|
|
case 'proxyHostname':
|
|
|
|
proxyHostname = dbItem.value
|
|
|
|
break
|
|
|
|
case 'proxyPort':
|
|
|
|
proxyPort = dbItem.value
|
|
|
|
break
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if (disableSmoothScrolling) {
|
2020-10-07 13:57:22 +00:00
|
|
|
app.commandLine.appendSwitch('disable-smooth-scrolling')
|
2020-10-09 13:35:04 +00:00
|
|
|
} else {
|
|
|
|
app.commandLine.appendSwitch('enable-smooth-scrolling')
|
2020-10-07 13:57:22 +00:00
|
|
|
}
|
|
|
|
|
2021-01-14 18:51:33 +00:00
|
|
|
const proxyUrl = `${proxyProtocol}://${proxyHostname}:${proxyPort}`
|
|
|
|
|
|
|
|
createWindow(useProxy, proxyUrl)
|
2020-10-07 13:57:22 +00:00
|
|
|
|
|
|
|
if (isDev) {
|
|
|
|
installDevTools()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isDebug) {
|
|
|
|
mainWindow.webContents.openDevTools()
|
|
|
|
}
|
|
|
|
})
|
2020-10-04 20:31:07 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
async function installDevTools () {
|
|
|
|
try {
|
|
|
|
/* eslint-disable */
|
|
|
|
require('vue-devtools').install()
|
|
|
|
/* eslint-enable */
|
|
|
|
} catch (err) {
|
|
|
|
console.log(err)
|
|
|
|
}
|
|
|
|
}
|
2020-10-04 20:31:07 +00:00
|
|
|
|
2021-04-15 18:28:35 +00:00
|
|
|
function createWindow (useProxy = false, proxyUrl = '', replaceMainWindow = true) {
|
2021-03-07 16:07:09 +00:00
|
|
|
/**
|
|
|
|
* Initial window options
|
|
|
|
*/
|
2021-04-15 18:28:35 +00:00
|
|
|
const newWindow = new BrowserWindow({
|
2021-03-07 16:07:09 +00:00
|
|
|
backgroundColor: '#fff',
|
|
|
|
icon: isDev
|
|
|
|
? path.join(__dirname, '../../_icons/iconColor.png')
|
|
|
|
/* eslint-disable-next-line */
|
|
|
|
: `${__dirname}/_icons/iconColor.png`,
|
|
|
|
autoHideMenuBar: true,
|
|
|
|
// useContentSize: true,
|
|
|
|
webPreferences: {
|
|
|
|
nodeIntegration: true,
|
|
|
|
nodeIntegrationInWorker: false,
|
|
|
|
webSecurity: false,
|
|
|
|
backgroundThrottling: false,
|
|
|
|
enableRemoteModule: true,
|
|
|
|
contextIsolation: false
|
|
|
|
},
|
|
|
|
show: false
|
|
|
|
})
|
2021-04-15 18:28:35 +00:00
|
|
|
openedWindows.push(newWindow)
|
|
|
|
if (replaceMainWindow) {
|
|
|
|
mainWindow = newWindow
|
|
|
|
}
|
2021-01-14 18:51:33 +00:00
|
|
|
|
2021-04-15 18:28:35 +00:00
|
|
|
newWindow.setBounds({
|
2021-03-07 16:07:09 +00:00
|
|
|
width: 1200,
|
|
|
|
height: 800
|
|
|
|
})
|
2020-10-04 20:31:07 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
if (useProxy) {
|
2021-04-15 18:28:35 +00:00
|
|
|
newWindow.webContents.session.setProxy({
|
2021-03-07 16:07:09 +00:00
|
|
|
proxyRules: proxyUrl
|
|
|
|
})
|
|
|
|
}
|
2021-04-08 03:13:40 +00:00
|
|
|
|
2021-04-08 03:07:15 +00:00
|
|
|
// Set CONSENT cookie on reasonable domains
|
|
|
|
[
|
|
|
|
'http://www.youtube.com',
|
|
|
|
'https://www.youtube.com',
|
|
|
|
'http://youtube.com',
|
|
|
|
'https://youtube.com'
|
|
|
|
].forEach(url => {
|
2021-04-15 18:28:35 +00:00
|
|
|
newWindow.webContents.session.cookies.set({
|
2021-04-08 03:07:15 +00:00
|
|
|
url: url,
|
|
|
|
name: 'CONSENT',
|
|
|
|
value: 'YES+'
|
|
|
|
})
|
|
|
|
})
|
2021-01-14 18:51:33 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
settingsDb.findOne({
|
|
|
|
_id: 'bounds'
|
|
|
|
}, function (err, doc) {
|
|
|
|
if (doc === null || err) {
|
|
|
|
return
|
|
|
|
}
|
2020-10-07 13:57:22 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
if (typeof doc !== 'object' || typeof doc.value !== 'object') {
|
|
|
|
return
|
2020-10-07 13:57:22 +00:00
|
|
|
}
|
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
const { maximized, ...bounds } = doc.value
|
|
|
|
const allDisplaysSummaryWidth = screen
|
|
|
|
.getAllDisplays()
|
|
|
|
.reduce((accumulator, { size: { width } }) => accumulator + width, 0)
|
|
|
|
|
|
|
|
if (allDisplaysSummaryWidth >= bounds.x) {
|
2021-04-15 18:28:35 +00:00
|
|
|
newWindow.setBounds({
|
2021-03-07 16:07:09 +00:00
|
|
|
x: bounds.x,
|
|
|
|
y: bounds.y,
|
|
|
|
width: bounds.width,
|
|
|
|
height: bounds.height
|
|
|
|
})
|
|
|
|
}
|
|
|
|
if (maximized) {
|
2021-04-15 18:28:35 +00:00
|
|
|
newWindow.maximize()
|
2020-10-07 13:57:22 +00:00
|
|
|
}
|
|
|
|
})
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-04-15 18:28:35 +00:00
|
|
|
// If called multiple times
|
|
|
|
// Duplicate menu items will be added
|
|
|
|
if (replaceMainWindow) {
|
|
|
|
// eslint-disable-next-line
|
|
|
|
setMenu()
|
|
|
|
}
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
// load root file/url
|
|
|
|
if (isDev) {
|
2021-04-15 18:28:35 +00:00
|
|
|
newWindow.loadURL('http://localhost:9080')
|
2021-03-07 16:07:09 +00:00
|
|
|
} else {
|
2020-10-27 17:47:40 +00:00
|
|
|
/* eslint-disable-next-line */
|
2021-04-15 18:28:35 +00:00
|
|
|
newWindow.loadFile(`${__dirname}/index.html`)
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
global.__static = path
|
|
|
|
.join(__dirname, '/static')
|
|
|
|
.replace(/\\/g, '\\\\')
|
|
|
|
}
|
2020-09-20 18:54:23 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
// Show when loaded
|
2021-04-15 18:28:35 +00:00
|
|
|
newWindow.on('ready-to-show', () => {
|
|
|
|
newWindow.show()
|
|
|
|
newWindow.focus()
|
2021-01-14 18:51:33 +00:00
|
|
|
})
|
|
|
|
|
2021-05-01 02:43:28 +00:00
|
|
|
newWindow.on('close', () => {
|
2021-05-10 05:01:35 +00:00
|
|
|
// Clear cache and storage if it's the last window
|
|
|
|
if (openedWindows.length === 1) {
|
|
|
|
newWindow.webContents.session.clearCache()
|
|
|
|
newWindow.webContents.session.clearStorageData({
|
|
|
|
storages: [
|
|
|
|
'appcache',
|
|
|
|
'cookies',
|
|
|
|
'filesystem',
|
|
|
|
'indexdb',
|
|
|
|
'shadercache',
|
|
|
|
'websql',
|
|
|
|
'serviceworkers',
|
|
|
|
'cachestorage'
|
|
|
|
]
|
|
|
|
})
|
|
|
|
}
|
2021-05-01 02:43:28 +00:00
|
|
|
})
|
|
|
|
|
2021-04-15 18:28:35 +00:00
|
|
|
newWindow.on('closed', () => {
|
|
|
|
// Remove closed window
|
|
|
|
openedWindows = openedWindows.filter((window) => window !== newWindow)
|
|
|
|
if (newWindow === mainWindow) {
|
|
|
|
// Replace mainWindow to avoid accessing `mainWindow.webContents`
|
|
|
|
// Which raises "Object has been destroyed" error
|
|
|
|
mainWindow = openedWindows[0]
|
|
|
|
}
|
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
console.log('closed')
|
|
|
|
})
|
2021-04-15 18:28:35 +00:00
|
|
|
}
|
2020-09-20 18:54:23 +00:00
|
|
|
|
2021-04-15 18:28:35 +00:00
|
|
|
// Save closing window bounds & maximized status
|
|
|
|
ipcMain.on('setBounds', (_e, data) => {
|
|
|
|
const value = {
|
|
|
|
...mainWindow.getNormalBounds(),
|
|
|
|
maximized: mainWindow.isMaximized()
|
|
|
|
}
|
2020-09-20 18:54:23 +00:00
|
|
|
|
2021-04-15 18:28:35 +00:00
|
|
|
settingsDb.findOne({
|
|
|
|
_id: 'bounds'
|
|
|
|
}, function (err, doc) {
|
|
|
|
if (err) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (doc !== null) {
|
|
|
|
settingsDb.update({
|
|
|
|
_id: 'bounds'
|
|
|
|
}, {
|
|
|
|
$set: {
|
2021-03-07 16:07:09 +00:00
|
|
|
value
|
2021-04-15 18:28:35 +00:00
|
|
|
}
|
|
|
|
}, {})
|
|
|
|
} else {
|
|
|
|
settingsDb.insert({
|
|
|
|
_id: 'bounds',
|
|
|
|
value
|
|
|
|
})
|
2021-03-07 16:07:09 +00:00
|
|
|
}
|
|
|
|
})
|
2021-04-15 18:28:35 +00:00
|
|
|
})
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-04-15 18:28:35 +00:00
|
|
|
ipcMain.on('appReady', () => {
|
|
|
|
if (startupUrl) {
|
|
|
|
mainWindow.webContents.send('openUrl', startupUrl)
|
|
|
|
}
|
|
|
|
})
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-04-15 18:28:35 +00:00
|
|
|
ipcMain.on('disableSmoothScrolling', () => {
|
|
|
|
app.commandLine.appendSwitch('disable-smooth-scrolling')
|
|
|
|
mainWindow.close()
|
|
|
|
createWindow()
|
|
|
|
})
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-04-15 18:28:35 +00:00
|
|
|
ipcMain.on('enableSmoothScrolling', () => {
|
|
|
|
app.commandLine.appendSwitch('enable-smooth-scrolling')
|
|
|
|
mainWindow.close()
|
|
|
|
createWindow()
|
|
|
|
})
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-04-15 18:28:35 +00:00
|
|
|
ipcMain.on('enableProxy', (event, url) => {
|
|
|
|
console.log(url)
|
|
|
|
mainWindow.webContents.session.setProxy({
|
|
|
|
proxyRules: url
|
2021-03-07 16:07:09 +00:00
|
|
|
})
|
2021-04-15 18:28:35 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
ipcMain.on('disableProxy', () => {
|
|
|
|
mainWindow.webContents.session.setProxy({})
|
|
|
|
})
|
|
|
|
|
|
|
|
ipcMain.on('createNewWindow', () => {
|
|
|
|
createWindow(false, '', false)
|
|
|
|
})
|
2020-09-20 18:54:23 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
app.on('window-all-closed', () => {
|
|
|
|
if (process.platform !== 'darwin') {
|
|
|
|
app.quit()
|
2020-09-20 18:54:23 +00:00
|
|
|
}
|
|
|
|
})
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
app.on('activate', () => {
|
2021-04-29 20:51:23 +00:00
|
|
|
if (mainWindow === null || mainWindow === undefined) {
|
2021-03-07 16:07:09 +00:00
|
|
|
createWindow()
|
2020-10-04 20:31:07 +00:00
|
|
|
}
|
|
|
|
})
|
2020-10-07 13:57:22 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
/*
|
|
|
|
* Callback when processing a freetube:// link (macOS)
|
|
|
|
*/
|
|
|
|
app.on('open-url', (event, url) => {
|
|
|
|
event.preventDefault()
|
2021-01-14 18:51:33 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
if (mainWindow && mainWindow.webContents) {
|
|
|
|
mainWindow.webContents.send('openUrl', baseUrl(url))
|
|
|
|
} else {
|
|
|
|
startupUrl = baseUrl(url)
|
|
|
|
}
|
2021-01-14 18:51:33 +00:00
|
|
|
})
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
/*
|
|
|
|
* Check if an argument was passed and send it over to the GUI (Linux / Windows).
|
|
|
|
* Remove freetube:// protocol if present
|
|
|
|
*/
|
|
|
|
const url = getLinkUrl(process.argv)
|
|
|
|
if (url) {
|
|
|
|
startupUrl = url
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
2020-08-21 01:20:22 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
function baseUrl(arg) {
|
|
|
|
return arg.replace('freetube://', '')
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
2020-10-15 13:33:25 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
function getLinkUrl(argv) {
|
|
|
|
if (argv.length > 1) {
|
|
|
|
return baseUrl(argv[argv.length - 1])
|
|
|
|
} else {
|
|
|
|
return null
|
|
|
|
}
|
2020-10-15 13:33:25 +00:00
|
|
|
}
|
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
/**
|
|
|
|
* Auto Updater
|
|
|
|
*
|
|
|
|
* Uncomment the following code below and install `electron-updater` to
|
|
|
|
* support auto updating. Code Signing with a valid certificate is required.
|
|
|
|
* https://simulatedgreg.gitbooks.io/electron-vue/content/en/using-electron-builder.html#auto-updating
|
|
|
|
*/
|
2020-10-15 13:33:25 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
/*
|
|
|
|
import { autoUpdater } from 'electron-updater'
|
|
|
|
autoUpdater.on('update-downloaded', () => {
|
|
|
|
autoUpdater.quitAndInstall()
|
|
|
|
})
|
2020-10-15 13:33:25 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
app.on('ready', () => {
|
|
|
|
if (process.env.NODE_ENV === 'production') autoUpdater.checkForUpdates()
|
|
|
|
})
|
|
|
|
*/
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
/* eslint-disable-next-line */
|
|
|
|
const sendMenuEvent = async data => {
|
|
|
|
mainWindow.webContents.send('change-view', data)
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
2021-03-07 16:07:09 +00:00
|
|
|
|
|
|
|
const template = [{
|
|
|
|
label: 'File',
|
|
|
|
submenu: [
|
|
|
|
{
|
|
|
|
role: 'quit'
|
|
|
|
}
|
|
|
|
]
|
2020-02-16 18:30:00 +00:00
|
|
|
},
|
|
|
|
{
|
2021-03-07 16:07:09 +00:00
|
|
|
label: 'Edit',
|
|
|
|
submenu: [{
|
|
|
|
role: 'cut'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'copy',
|
|
|
|
accelerator: 'CmdOrCtrl+C',
|
|
|
|
selector: 'copy:'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'paste',
|
|
|
|
accelerator: 'CmdOrCtrl+V',
|
|
|
|
selector: 'paste:'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'pasteandmatchstyle'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'delete'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'selectall'
|
|
|
|
}
|
|
|
|
]
|
2020-02-16 18:30:00 +00:00
|
|
|
},
|
|
|
|
{
|
2021-03-07 16:07:09 +00:00
|
|
|
label: 'View',
|
|
|
|
submenu: [{
|
|
|
|
role: 'reload'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'forcereload',
|
|
|
|
accelerator: 'CmdOrCtrl+Shift+R'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'toggledevtools'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'separator'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'resetzoom'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'zoomin'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'zoomout'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'separator'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'togglefullscreen'
|
|
|
|
}
|
|
|
|
]
|
2020-02-16 18:30:00 +00:00
|
|
|
},
|
|
|
|
{
|
2021-03-07 16:07:09 +00:00
|
|
|
role: 'window',
|
|
|
|
submenu: [{
|
|
|
|
role: 'minimize'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
role: 'close'
|
|
|
|
}
|
|
|
|
]
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
function setMenu () {
|
|
|
|
if (process.platform === 'darwin') {
|
|
|
|
template.unshift({
|
|
|
|
label: app.getName(),
|
|
|
|
submenu: [
|
|
|
|
{ role: 'about' },
|
|
|
|
{ type: 'separator' },
|
|
|
|
{ role: 'services' },
|
|
|
|
{ type: 'separator' },
|
|
|
|
{ role: 'hide' },
|
|
|
|
{ role: 'hideothers' },
|
|
|
|
{ role: 'unhide' },
|
|
|
|
{ type: 'separator' },
|
|
|
|
{ role: 'quit' }
|
|
|
|
]
|
|
|
|
})
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
template.push({
|
|
|
|
role: 'window'
|
|
|
|
})
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
template.push({
|
|
|
|
role: 'help'
|
|
|
|
})
|
2020-02-16 18:30:00 +00:00
|
|
|
|
2021-03-07 16:07:09 +00:00
|
|
|
template.push({ role: 'services' })
|
|
|
|
}
|
|
|
|
|
|
|
|
const menu = Menu.buildFromTemplate(template)
|
|
|
|
Menu.setApplicationMenu(menu)
|
|
|
|
}
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|