mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
* chore: bump electron@18.0.0-beta.4 * Merge commit * chore: update electron@19.0.17 (#161027) * chore: update electron@19.0.17 * chore: update API typings * fix: compilation errors * build: add libcups dependency * chore: update electron@19.1.3 (#164864) * Update yarn Co-authored-by: deepak1556 <hop2deep@gmail.com>
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
// @ts-check
|
|
|
|
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,
|
|
contextIsolation: false,
|
|
enableWebSQL: false
|
|
}
|
|
});
|
|
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());
|