eae5d8c807
These conflicts will be resolved in the following commits. We do it this way so that PR review is possible.
34 lines
1.2 KiB
JavaScript
34 lines
1.2 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
const { app, BrowserWindow, ipcMain, dialog } = require('electron');
|
|
const url = require('url');
|
|
const path = require('path');
|
|
|
|
let window = null;
|
|
|
|
ipcMain.handle('pickdir', async () => {
|
|
const result = await dialog.showOpenDialog(window, {
|
|
title: 'Choose Folder',
|
|
properties: ['openDirectory']
|
|
});
|
|
|
|
if (result.canceled || result.filePaths.length < 1) {
|
|
return undefined;
|
|
}
|
|
|
|
return result.filePaths[0];
|
|
});
|
|
|
|
app.once('ready', () => {
|
|
window = new BrowserWindow({ width: 800, height: 600, webPreferences: { nodeIntegration: true, webviewTag: true, enableWebSQL: false, nativeWindowOpen: true } });
|
|
window.setMenuBarVisibility(false);
|
|
window.loadURL(url.format({ pathname: path.join(__dirname, 'index.html'), protocol: 'file:', slashes: true }));
|
|
// window.webContents.openDevTools();
|
|
window.once('closed', () => window = null);
|
|
});
|
|
|
|
app.on('window-all-closed', () => app.quit());
|