-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
94 lines (81 loc) · 2.24 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
83
84
85
86
87
88
89
90
91
92
93
94
/**
* スプラッシュ画面を表示してから起動する
*
*/
//------------------------------------
// モジュール
//------------------------------------
const { app, BrowserWindow } = require('electron')
//------------------------------------
// グローバル変数
//------------------------------------
// ウィンドウ管理用
let mainWin
let splashWin
/**
* スプラッシュ画面を作成する
*/
function createSplash () {
// ウィンドウを新たに開く
splashWin = new BrowserWindow({
show: false,
frame: false, // フレームレスにする
width: 800,
height: 322,
})
// スプラッシュ用のHTMLを表示
splashWin.loadFile('public/splash.html')
// 準備が整ったら表示
splashWin.once('ready-to-show', () => {
splashWin.show()
})
}
/**
* メインウィンドウを作成する
*/
function createWindow () {
// ウィンドウを新たに開く
mainWin = new BrowserWindow({
show: false,
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
}
})
// アプリ本体のHTMLを表示
mainWin.loadFile('public/index.html')
// 準備が整ったら表示
mainWin.once('ready-to-show', () => {
mainWin.show()
})
}
//------------------------------------
// [app] イベント処理
//------------------------------------
// 初期化が終了したらウィンドウを新規に作成する
app.whenReady().then(()=>{
// スプラッシュを最初に表示
createSplash()
// 2秒経過したらアプリ画面を表示
setTimeout(()=>{
splashWin.hide() // スプラッシュを非表示
createWindow() // アプリを開始
splashWin.destroy() // スプラッシュを削除
}, 2000)
})
// すべてのウィンドウが閉じられたときの処理
app.on('window-all-closed', () => {
// macOS以外はアプリを終了する
if (process.platform !== 'darwin') {
app.quit()
}
})
// アプリがアクティブになった時の処理
// (macOSはDocのアイコンがクリックされたとき)
app.on('activate', () => {
// ウィンドウがすべて閉じられている場合は新しく開く
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})