-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
82 lines (72 loc) · 2.41 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const path = require('path')
const { app, BrowserWindow, Menu, screen } = require('electron')
// メニューバーを無効化
// Menu.setApplicationMenu(false)
let mainWindow
function initWindow() {
// メインウィンドウのオプション
// https://www.electronjs.org/ja/docs/latest/api/browser-window#%E3%82%AF%E3%83%A9%E3%82%B9-browserwindow
const options = {
x: 20,
y: 120,
width: 1280,
height: 720,
useContentSize: true,
webPreferences: {
nodeIntegration: true,
preload: path.join(__dirname, 'preload.js'),
},
autoHideMenuBar: true,
}
// マルチディスプレイ環境の場合はセカンドスクリーンに表示したい
// https://www.electronjs.org/ja/docs/latest/api/screen
const displays = screen.getAllDisplays()
const externalDisplay = displays.find((display) => {
return display.bounds.x !== 0 || display.bounds.y !== 0
})
if (externalDisplay) {
options.x += externalDisplay.bounds.x
options.y += externalDisplay.bounds.y
}
// メインブラウザウィンドウを作成
mainWindow = new BrowserWindow(options)
// メニューバーの非表示関連
// F11で全画面などの機能は生かしておきたいため autoHideMenuBar: true でメニューバーを隠すようにした
// mainWindow.setMenu(null)
// mainWindow.setMenuBarVisibility(false)
// mainWindow.removeMenu()
// ページ読み込み
mainWindow.loadURL(`file://${__dirname}/docs/latest/index.html`)
mainWindow.on('closed', () => {
mainWindow = null
})
// 開発者ツールの位置を制御したい
// https://stackoverflow.com/questions/53678438/dev-tools-size-and-position-in-electron
const devtools = new BrowserWindow({
show: false,
parent: mainWindow,
autoHideMenuBar: true,
webPreferences: {
nodeIntegration: true,
},
})
mainWindow.webContents.setDevToolsWebContents(devtools.webContents)
mainWindow.webContents.openDevTools({ mode: 'detach' })
mainWindow.webContents.once('did-finish-load', () => {
const windowBounds = mainWindow.getBounds()
devtools.setPosition(windowBounds.x + windowBounds.width, windowBounds.y)
devtools.setSize(600, windowBounds.height)
devtools.show()
})
}
app.on('ready', initWindow)
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
if (mainWindow === null) {
initWindow()
}
})