-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
421 lines (356 loc) · 13.6 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
"use strict";
const { app, BrowserWindow, ipcMain, Menu } = require('electron');
const common = require('./common');
const menu = require('./menu');
const config = require('./config');
const dialog = require('./dialog');
const path = require('path');
const i18n = require('./i18n');
const dggRecord = require('./dggRecord');
//------------------------------------
// グローバル変数
//------------------------------------
// ウィンドウ管理用
// ここではまだウインドウが初期化されていないのでオブジェクトをセットできない
common.app = app;
common.browserWindow = BrowserWindow;
common.i18n = i18n;
common.dialog = dialog;
common.config = config;
common.menu = menu;
common.lang = config.get('locale') || app.getLocale();
function createWindow() {
//console.log("load size width: "+config.get('windowSizeWidth') + " height: "+ config.get('windowSizeHeight'));
//console.log("load pose top: "+config.get('windowPosTop') + " left: "+ config.get('windowPosLeft'));
const mainWin = new BrowserWindow({
width: config.get('windowSizeWidth'),
height: config.get('windowSizeHeight'),
backgroundColor: 'white',
webPreferences: {
worldSafeExecuteJavaScript: true,
nodeIntegration: false,
sandbox: false, //Electron20への一時対処
enableRemoteModule: true,
contextIsolation: true,
preload: path.join(__dirname, './preload.js')
}
});
mainWin.loadFile('./index.html');
mainWin.setMinimumSize(800,600);
//mainWin.setPosition(config.get('windowPosTop'),config.get('windowPosLeft'));
//------------------------------------
// [mainWin] 準備できたら呼ばれる
//------------------------------------
mainWin.on('ready-to-show', () => {
let top = config.get('windowPosTop');
let left = config.get('windowPosLeft');
common.setAutoSaveInterval(config.get('autoSaveInterval'));
if (top != undefined && left != undefined) {
mainWin.setPosition(top, left);
}
if (!app.isPackaged) {
mainWin.webContents.openDevTools(); //Devツールを開く
}
});
//------------------------------------
// [mainWin] 設定保存
//------------------------------------
// ウィンドウが閉じられたとき処理
mainWin.on('close', (event) => {
//console.log("save size width: "+ (mainWin.getSize()[0]-1) + " height: "+ (mainWin.getSize()[1]+20));
//最小の800x600を下回らないよう補正
config.set('windowSizeWidth',mainWin.getSize()[0]-1);
config.set('windowSizeHeight',mainWin.getSize()[1]-2);
//console.log("save pos top: "+ (mainWin.getPosition()[0]) + " left: "+ (mainWin.getPosition()[1]));
config.set('windowPosTop',mainWin.getPosition()[0]);
config.set('windowPosLeft',mainWin.getPosition()[1]);
//未保存データがある時は確認
// if (common.isDirty == true) {
common.handleUnsavedLog(event);
// const lang = config.get('locale') || app.getLocale();
// const _ = new i18n(lang, 'dialog');
// const options = {
// type: 'warning',
// buttons: [_.t('UNSAVED_DATA_SAVE'), _.t('UNSAVED_DATA_DISPOSE'), _.t('UNSAVED_DATA_CANCEL')],
// title: _.t('UNSAVED_DATA_TITLE'),
// message: _.t('UNSAVED_DATA_MESSAGE').replace('%1', path.basename(common.mediaPath).replace(path.extname(common.mediaPath),".dggn.txt")),
// };
// switch (dialog.showConfirmation(options)) {
// case 0: //上書き保存して終了
// common.saveLog();
// break;
// case 1: //破棄して終了
// break;
// case 2: //キャンセル
// event.preventDefault();
// break;
// }
//}
})
//common下に参照を渡す
//common.mainWin = mainWin;
common.mainWin = mainWin;
}
app.whenReady().then(()=>{
// 言語設定を取得する
const locale = config.get('locale') || app.getLocale();
//const locale = 'en'; //英語UIテスト時に有効化する
// メニューを適用する
menu.setTemplate(locale);
// ウィンドウを開く
createWindow();
});
//------------------------------------
// [app] イベント処理
//------------------------------------
//メインウインドウが閉じられようとする時
app.on("BrowserWindow.close", () => {
if (process.platform == 'darwin') {
//TouchBarオブジェクトを破棄
common.mainWin.setTouchBar(null);
}
common.mainWin = null;
});
// すべてのウィンドウが閉じられたときの処理
app.on('window-all-closed', () => {
// macOS以外はアプリを終了する
//if (process.platform !== 'darwin') {
app.quit();
//}
})
// アプリがアクティブになった時の処理
// (macOSはDocのアイコンがクリックされたとき)
app.on('activate', () => {
// ウィンドウがすべて閉じられている場合は新しく開く
if (BrowserWindow.getAllWindows().length === 0) {
createWindow()
}
})
//----------------------------------------
// IPC通信
//----------------------------------------
//レンダラー -> メイン
// ipcMain.handle('getSomeInfoFromMain', (event) => {
// return "hogefuga";
// });
// 設定情報を取得
ipcMain.handle('getConfig', (event, key) => {
//console.log(`getConfig key:${key} result:` + common.config.get(key));
return (common.config.get(key))
});
//設定を保存
ipcMain.handle('setConfig', (event, key, value) => {
//console.log(`setConfig: key:${key} value:${value}`);
return( config.set(key, value) ); //boolean
//return 'en'; //英語環境テスト用
});
// 言語設定を保存
ipcMain.handle('setLocale', async (event, data) => {
common.config.set('locale', data);
dialog.reboot(common.mainWin); // 再起動する?
});
//ドロップされたメディアファイルを開く
ipcMain.handle('openDroppedFile', (event, mediaPath) => {
//未保存データの処理
if (common.isDirty == true) {
const lang = common.config.get('locale') || app.getLocale();
const _ = new i18n(lang, 'dialog');
const options = {
type: 'warning',
buttons: [_.t('UNSAVED_DATA_SAVE_CONTINUE'), _.t('UNSAVED_DATA_DISPOSE_CONTINUE'), _.t('UNSAVED_DATA_CANCEL')],
title: _.t('UNSAVED_DATA_TITLE'),
message: _.t('UNSAVED_DATA_MESSAGE_CONTINUE').replace('%1', path.basename(common.mediaPath).replace(path.extname(common.mediaPath),".dggn.txt")),
defaultId: 3,
cancelId: 2
};
switch (dialog.showConfirmation(options)) {
case 0: //上書き保存して開く
common.saveLog();
break;
case 1: //破棄して開く
break;
case 2: //キャンセル
return;
}
}
common.clearLog();
common.openMediaFile(mediaPath);
//Macでドラッグ&ドロップ時、フォーカスがFinderのままになるので明示的にフォアグラウンドフロントにする
if (process.platform == 'darwin') {
app.focus({ steal: true });
}
});
//レンダラーから新規メモを受け取る
ipcMain.handle('addNewMemoFromGUI', (event, inTime, script, speaker) => {
common.addNewMemoFromGUI(inTime, script, speaker);
});
//レンダラーからキャプチャー画像を受け取る
ipcMain.handle('saveCapture', (event, dataURL, currentSec) => {
common.saveCapture(dataURL, currentSec);
});
//レンダラーから通知されたメディアの総再生時間を保存
ipcMain.handle('setMediaDuration', (event, duration) => {
common.setMediaDuration(duration);
});
//レンダラーからリスト内のログが更新されたら受け取る
ipcMain.on('memoChanged', (event, id, script) => {
common.memoChanged(id,script);
});
//「新規メモ欄」メニューのチェック状態を更新
ipcMain.on('toggleNewMemoBlockMenu', async (event, data) => {
menu.toggleNewMemoBlockMenu(data);
//設定保存
config.set('newMemoBlockShown', data);
});
//GUIでスキップ秒数を変更したらメニューにも反映
ipcMain.on('setSkipTimeFromGUI', (event, direction, idx) => {
menu.setSkipTimeFromGUI(direction, idx);
});
//現在の再生位置にもっとも近いレコードのIDを返す
ipcMain.handle('getCurrentRecordId', (event, position) => {return common.getCurrentRecordId(position);});
//OSがmacOSかどうかを返す
ipcMain.handle('isDarwin', () => {
if (process.platform == 'darwin') {
console.log("macOS");
return true;
} else {
console.log("not macOS");
return false;
}
});
// #endregion
//レンダラーからメニュー項目を有効化・無効化する
ipcMain.on('enableOrDisableMenuItemMerge', (event, arg) => {
const bool = JSON.parse(arg);
menu.enableOrDisableMenuItemMerge(bool.key);
});
//--------------------------------
// 選択中のセルと次のセルを結合する(次のセルの中身を末尾に連結し、次のセルを削除)
//--------------------------------
ipcMain.on('mergeCurrentAndNextCells',(event, arg) => {
//実際の処理はレンダラー(renderer.js)側でtextareaのキーボードイベントから呼んで処理
const id = JSON.parse(arg);
//console.log("id:"+id.key);
common.mergeCurrentAndNextCells(id.key);
});
//--------------------------------
// #region ログ(タイムスタンプ)上のコンテクストメニューを開く
//--------------------------------
ipcMain.on('openContextMenuOn', (event, id) => {
const lang = config.get('locale') || app.getLocale();
const _ = new i18n(lang, 'menu');
const template = [
{
label: _.t('SPEAKERLABEL'),
submenu: [
{id:'SPK_0', label: '0', type: 'checkbox', click: ()=>{
common.setSpeakerOfRow(id, 0);
}},
{id:'SPK_1', label: '1', type: 'checkbox', click: ()=>{
common.setSpeakerOfRow(id, 1);
}},
{id:'SPK_2', label: '2', type: 'checkbox', click: ()=>{
common.setSpeakerOfRow(id, 2);
}},
{id:'SPK_3', label: '3', type: 'checkbox', click: ()=>{
common.setSpeakerOfRow(id, 3);
}},
{id:'SPK_4', label: '4', type: 'checkbox', click: ()=>{
common.setSpeakerOfRow(id, 4);
}},
{id:'SPK_5', label: '5', type: 'checkbox', click: ()=>{
common.setSpeakerOfRow(id, 5);
}},
{id:'SPK_6', label: '6', type: 'checkbox', click: ()=>{
common.setSpeakerOfRow(id, 6);
}},
{id:'SPK_7', label: '7', type: 'checkbox', click: ()=>{
common.setSpeakerOfRow(id, 7);
}}
]
},
{
label: _.t('DELETE_ITEM'), click: ()=>{
common.deleteRow(id);
}
},
];
//--------------------------------
// #region 右クリックメニュー
//--------------------------------
const m = Menu.buildFromTemplate(template);
//recordsから現在のspeakerを調べてチェックをする
m.getMenuItemById('SPK_' + common.getSpeakerFromId(id)).checked = true;
//コンテクストメニューを表示
m.popup(BrowserWindow.fromWebContents(event.sender));
});
// #endregion
//--------------------------------
// #region ログ(テキストボックス)上のコンテクストメニューを開く
//--------------------------------
ipcMain.on('openContextMenuOnText', (event, id, selectionStart, selectionEnd) => {
const lang = config.get('locale') || app.getLocale();
const _ = new i18n(lang, 'menu');
const template = [
{id:'CUT', label: _.t('CUT'), role: 'cut'},
{id:'COPY', label: _.t('COPY'), role: 'copy'},
{id:'PASTE', label: _.t('PASTE'), role: 'paste'},
{type: 'separator'},
{
label: _.t('MERGE')+'(^F)', click: ()=>{
common.mergeCurrentAndNextCells(id);
}
},
{
label: _.t('SPLIT_HERE'), click: ()=>{
common.splitLog(id, selectionStart, selectionEnd);
}
}
];
//--------------------------------
// #region 右クリックメニュー
//--------------------------------
const m = Menu.buildFromTemplate(template);
//コンテクストメニューを表示
m.popup(BrowserWindow.fromWebContents(event.sender));
});
// #endregion
//--------------------------------
// #region 置換ダイアログ用
//--------------------------------
/**
* 検索語に対してマッチしたrowの数を返す
*/
ipcMain.handle('getMatchCount', async (event, word) => {
return common.getMatchCount(word);
});
ipcMain.handle('executeRaplace', async (event, before, after ) => {
common.executeReplace(before, after);
});
// #endregion
//--------------------------------
// #region 設定ダイアログ用
//--------------------------------
ipcMain.on('setAutoSaveIntervalOnMemory', () => {
common.setAutoSaveInterval(config.get('autoSaveInterval'));
});
// #endregion
//--------------------------------
// #region タイムスタンプ変換ダイアログ用
//--------------------------------
ipcMain.handle('getMediaFileName', async (event, ) => {
return common.getMediaFileName();
});
ipcMain.handle('getMediaBirthDateTime', async (event, ) => {
return common.getMediaBirthDateTime();
});
ipcMain.handle('setTimeOffset', async (event, offset) => {
return common.setTimeOffset(offset);
});
// #endregion
//--------------------------------
// exports
//--------------------------------
// module.exports = {
// common: common,
// }