Files
zeroone/src/main.js
2024-03-01 01:16:55 +01:00

249 lines
8.3 KiB
JavaScript

import { app, BrowserWindow, globalShortcut, shell, Menu, MenuItem } from 'electron'
import path from 'path'
import ess from 'electron-squirrel-startup'
import { ipcMain } from 'electron'
import nanodevices from './backend/nanodevices.js'
// Handle creating/removing shortcuts on Windows when installing/uninstalling.
if (ess) {
app.quit()
}
const isDevelopment = process.env.NODE_ENV !== 'production'
// Minimum time to show the splash screen, in milliseconds
const splashTime = isDevelopment ? 4000 : 4000
const loadingWindowWidth = 800 / 2
const loadingWindowHeight = 1100 / 2
const zoomFactor = 1
const mainWindowWidth = 1111
const mainWindowHeight = 666
const appMenu = {
device: {
label: 'Device',
submenu: {
connect: { label: 'Connect', shortcut: 'CmdOrCtrl+D' },
nextDevice: { label: 'Next Device', shortcut: 'CmdOrCtrl+N' },
orientation: { label: 'Orientation', shortcut: 'CmdOrCtrl+R' },
skin: { label: 'Skin', shortcut: 'CmdOrCtrl+S' },
export: { label: 'Export Settings', shortcut: 'CmdOrCtrl+E' },
import: { label: 'Import Settings', shortcut: 'CmdOrCtrl+I' },
quit: { label: 'Quit', shortcut: 'CmdOrCtrl+Q', action: () => app.quit() },
},
},
}
const createMainWindow = () => {
// Create the browser window.
const mainWindow = new BrowserWindow({
show: false,
width: mainWindowWidth,
height: mainWindowHeight,
titleBarStyle: 'hidden',
trafficLightPosition: { x: 10, y: 10 },
resizable: true,
minWidth: mainWindowWidth / 3,
minHeight: mainWindowHeight / 3,
maximizable: true,
fullscreenable: false,
center: true,
backgroundColor: 'black',
icon: path.join(__dirname, `/assets/favicon.png`),
webPreferences: {
devTools: isDevelopment,
preload: path.join(__dirname, 'preload.js'),
zoomFactor: zoomFactor,
},
})
mainWindow.setAspectRatio(mainWindowWidth / mainWindowHeight)
mainWindow.webContents.on('dom-ready', () => {
mainWindow.webContents.setZoomFactor(zoomFactor)
})
mainWindow.on('resize', () => {
mainWindow.webContents.setZoomFactor(zoomFactor * mainWindow.getSize()[0] / mainWindowWidth)
})
mainWindow.on('maximize', () => {
mainWindow.webContents.send('electron:maximized')
})
mainWindow.on('unmaximize', () => {
mainWindow.webContents.send('electron:unmaximized')
})
// and load the index.html of the app.
if (MAIN_WINDOW_VITE_DEV_SERVER_URL) {
mainWindow.loadURL(`${MAIN_WINDOW_VITE_DEV_SERVER_URL}/index.html`)
} else {
mainWindow.loadFile(path.join(__dirname, `../renderer/${MAIN_WINDOW_VITE_NAME}/index.html`))
}
return mainWindow
}
const createLoadingWindow = (mainWindow) => {
const loadingWindow = new BrowserWindow({
show: false,
width: loadingWindowWidth,
height: loadingWindowHeight,
resizable: false,
fullscreenable: false,
maximizable: false,
transparent: true,
frame: false,
center: true,
backgroundColor: 'black',
webPreferences: {
devTools: isDevelopment,
},
})
const startTime = Date.now()
let loadingTimeout
mainWindow.webContents.once('did-finish-load', () => {
loadingTimeout = setTimeout(() => {
mainWindow.show()
mainWindow.focus()
loadingWindow.close()
}, Math.max(0, splashTime - (Date.now() - startTime)))
})
loadingWindow.once('closed', () => {
if (!mainWindow.isFocusable()) {
clearTimeout(loadingTimeout)
mainWindow.close()
}
})
loadingWindow.webContents.once('did-finish-load', () => {
loadingWindow.show()
loadingWindow.focus()
})
if (LOADING_WINDOW_VITE_DEV_SERVER_URL) {
loadingWindow.loadURL(`${LOADING_WINDOW_VITE_DEV_SERVER_URL}/loading.html`)
} else {
loadingWindow.loadFile(path.join(__dirname, `../renderer/${LOADING_WINDOW_VITE_NAME}/loading.html`))
}
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.whenReady().then(() => {
ipcMain.handle('nanodevices:list_devices', ()=>nanodevices.list_devices())
ipcMain.handle('nanodevices:connect', (event, deviceid)=>nanodevices.connect(deviceid))
ipcMain.handle('nanodevices:disconnect', nanodevices.disconnect)
ipcMain.handle('nanodevices:send', nanodevices.send)
const mainWindow = createMainWindow()
createLoadingWindow(mainWindow)
ipcMain.on('electron:minimizeWindow', () => mainWindow.minimize())
ipcMain.on('electron:toggleMaximizeWindow', () => {
if (mainWindow.isMaximized()) {
mainWindow.unmaximize()
} else {
mainWindow.maximize()
}
})
ipcMain.on('electron:closeWindow', () => mainWindow.close())
ipcMain.on('electron:openExternal', (_event, url) => shell.openExternal(url))
ipcMain.on('electron:openDevTools', () => mainWindow.webContents.toggleDevTools())
ipcMain.on('electron:reload', () => mainWindow.webContents.reloadIgnoringCache())
nanodevices.on('nanodevices:device-attached', (deviceid, ...data) => {
console.log('Attached event', deviceid, data)
mainWindow.webContents.send('nanodevices:event', 'device-attached', deviceid, ...data)
})
nanodevices.on('nanodevices:device-detached', (deviceid, ...data) => {
console.log('Detached event', deviceid, data)
mainWindow.webContents.send('nanodevices:event', 'device-detached', deviceid, ...data)
})
nanodevices.on('nanodevices:device-error', (deviceid, ...data) => {
console.log('Error event', deviceid, data)
mainWindow.webContents.send('nanodevices:event', 'device-error', deviceid, ...data)
})
nanodevices.on('nanodevices:connected', (deviceid, ...data) => {
console.log('Connected event', deviceid, data)
mainWindow.webContents.send('nanodevices:event', 'connected', deviceid, ...data)
})
nanodevices.on('nanodevices:disconnected', (deviceid, ...data) => {
console.log('Disconnected event', deviceid, data)
mainWindow.webContents.send('nanodevices:event', 'disconnected', deviceid, ...data)
})
nanodevices.on('nanodevices:update', (deviceid, ...data) => {
console.log('Update event', deviceid, data)
mainWindow.webContents.send('nanodevices:event', 'update', deviceid, ...data)
})
const menu = new Menu()
for (const menuItem of Object.values(appMenu)) {
menu.append(new MenuItem({
label: menuItem.label,
submenu: Object.entries(menuItem.submenu).map(([key, subMenuItem]) => {
return {
label: subMenuItem.label,
accelerator: subMenuItem.shortcut,
click: subMenuItem.action || (() => {
mainWindow.webContents.send('electron:menu', key)
}),
}
}),
}))
}
if (isDevelopment) {
menu.append(new MenuItem({
label: 'Debug',
submenu: [
{
label: 'Developer Tools',
accelerator: 'CmdOrCtrl+Shift+I',
click: () => mainWindow.webContents.toggleDevTools(),
},
],
}))
}
Menu.setApplicationMenu(menu)
//mainWindow.webContents.openDevTools()
setInterval(()=>nanodevices._list(), 1000)
})
// Quit when all windows are closed, except on macOS. There, it's common
// for applications and their menu bar to stay active until the user quits
// explicitly with Cmd + Q.
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (BrowserWindow.getAllWindows().length === 0) {
const mainWindow = createMainWindow()
mainWindow.webContents.once('did-finish-load', () => {
mainWindow.show()
})
}
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and import them here.
// Disable pinch zoom
app.commandLine.appendSwitch('disable-pinch')
// Disable zoom shortcuts
const ZOOM_IN_SHORTCUTS = ['CmdOrCtrl+numadd', 'CmdOrCtrl+Plus']
const ZOOM_OUT_SHORTCUTS = ['CmdOrCtrl+numsub', 'CmdOrCtrl+-']
const ZOOM_RESET_SHORTCUTS = ['CmdOrCtrl+num0', 'CmdOrCtrl+0']
app.on('browser-window-focus', () => {
globalShortcut.registerAll([
...ZOOM_IN_SHORTCUTS,
...ZOOM_OUT_SHORTCUTS,
...ZOOM_RESET_SHORTCUTS,
], () => {
// https://www.youtube.com/watch?v=8An2SxNFvmU
})
})
app.on('browser-window-blur', () => {
globalShortcut.unregisterAll()
})