electron/lib/browser/api/dialog.js

267 lines
7.8 KiB
JavaScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
'use strict';
2016-03-18 18:51:02 +00:00
2020-03-20 20:28:31 +00:00
const { app, BrowserWindow, deprecate } = require('electron');
const binding = process.electronBinding('dialog');
const v8Util = process.electronBinding('v8_util');
2016-01-12 02:40:23 +00:00
const DialogType = {
OPEN: 'OPEN',
SAVE: 'SAVE'
2020-03-20 20:28:31 +00:00
};
const saveFileDialogProperties = {
createDirectory: 1 << 0,
showHiddenFiles: 1 << 1,
treatPackageAsDirectory: 1 << 2,
showOverwriteConfirmation: 1 << 3,
dontAddToRecent: 1 << 4
2020-03-20 20:28:31 +00:00
};
const openFileDialogProperties = {
2016-01-12 02:40:23 +00:00
openFile: 1 << 0,
openDirectory: 1 << 1,
multiSelections: 1 << 2,
createDirectory: 1 << 3, // macOS
showHiddenFiles: 1 << 4,
promptToCreate: 1 << 5, // Windows
noResolveAliases: 1 << 6, // macOS
treatPackageAsDirectory: 1 << 7, // macOS
dontAddToRecent: 1 << 8 // Windows
2020-03-20 20:28:31 +00:00
};
2016-01-12 02:40:23 +00:00
const normalizeAccessKey = (text) => {
2020-03-20 20:28:31 +00:00
if (typeof text !== 'string') return text;
// macOS does not have access keys so remove single ampersands
// and replace double ampersands with a single ampersand
if (process.platform === 'darwin') {
2020-03-20 20:28:31 +00:00
return text.replace(/&(&?)/g, '$1');
}
// Linux uses a single underscore as an access key prefix so escape
// existing single underscores with a second underscore, replace double
// ampersands with a single ampersand, and replace a single ampersand with
// a single underscore
if (process.platform === 'linux') {
return text.replace(/_/g, '__').replace(/&(.?)/g, (match, after) => {
2020-03-20 20:28:31 +00:00
if (after === '&') return after;
return `_${after}`;
});
}
2020-03-20 20:28:31 +00:00
return text;
};
const checkAppInitialized = function () {
2016-01-12 02:40:23 +00:00
if (!app.isReady()) {
2020-03-20 20:28:31 +00:00
throw new Error('dialog module can only be used after app is ready');
2016-01-12 02:40:23 +00:00
}
2020-03-20 20:28:31 +00:00
};
2016-01-12 02:40:23 +00:00
const setupDialogProperties = (type, properties) => {
2020-03-20 20:28:31 +00:00
const dialogPropertiesTypes = (type === DialogType.OPEN) ? openFileDialogProperties : saveFileDialogProperties;
let dialogProperties = 0;
for (const prop in dialogPropertiesTypes) {
if (properties.includes(prop)) {
2020-03-20 20:28:31 +00:00
dialogProperties |= dialogPropertiesTypes[prop];
}
}
2020-03-20 20:28:31 +00:00
return dialogProperties;
};
const saveDialog = (sync, window, options) => {
2020-03-20 20:28:31 +00:00
checkAppInitialized();
if (window && window.constructor !== BrowserWindow) {
2020-03-20 20:28:31 +00:00
options = window;
window = null;
}
2020-03-20 20:28:31 +00:00
if (options == null) options = { title: 'Save' };
const {
buttonLabel = '',
defaultPath = '',
filters = [],
properties = [],
title = '',
message = '',
securityScopedBookmarks = false,
nameFieldLabel = '',
showsTagField = true
2020-03-20 20:28:31 +00:00
} = options;
2020-03-20 20:28:31 +00:00
if (typeof title !== 'string') throw new TypeError('Title must be a string');
if (typeof buttonLabel !== 'string') throw new TypeError('Button label must be a string');
if (typeof defaultPath !== 'string') throw new TypeError('Default path must be a string');
if (typeof message !== 'string') throw new TypeError('Message must be a string');
if (typeof nameFieldLabel !== 'string') throw new TypeError('Name field label must be a string');
2020-03-20 20:28:31 +00:00
const settings = { buttonLabel, defaultPath, filters, title, message, securityScopedBookmarks, nameFieldLabel, showsTagField, window };
settings.properties = setupDialogProperties(DialogType.SAVE, properties);
2020-03-20 20:28:31 +00:00
return (sync) ? binding.showSaveDialogSync(settings) : binding.showSaveDialog(settings);
};
const openDialog = (sync, window, options) => {
2020-03-20 20:28:31 +00:00
checkAppInitialized();
if (window && window.constructor !== BrowserWindow) {
2020-03-20 20:28:31 +00:00
options = window;
window = null;
}
if (options == null) {
options = {
title: 'Open',
properties: ['openFile']
2020-03-20 20:28:31 +00:00
};
}
const {
buttonLabel = '',
defaultPath = '',
filters = [],
properties = ['openFile'],
title = '',
message = '',
securityScopedBookmarks = false
2020-03-20 20:28:31 +00:00
} = options;
2020-03-20 20:28:31 +00:00
if (!Array.isArray(properties)) throw new TypeError('Properties must be an array');
2020-03-20 20:28:31 +00:00
if (typeof title !== 'string') throw new TypeError('Title must be a string');
if (typeof buttonLabel !== 'string') throw new TypeError('Button label must be a string');
if (typeof defaultPath !== 'string') throw new TypeError('Default path must be a string');
if (typeof message !== 'string') throw new TypeError('Message must be a string');
2020-03-20 20:28:31 +00:00
const settings = { title, buttonLabel, defaultPath, filters, message, securityScopedBookmarks, window };
settings.properties = setupDialogProperties(DialogType.OPEN, properties);
2020-03-20 20:28:31 +00:00
return (sync) ? binding.showOpenDialogSync(settings) : binding.showOpenDialog(settings);
};
const messageBox = (sync, window, options) => {
2020-03-20 20:28:31 +00:00
checkAppInitialized();
if (window && window.constructor !== BrowserWindow) {
2020-03-20 20:28:31 +00:00
options = window;
window = null;
}
2020-03-20 20:28:31 +00:00
if (options == null) options = { type: 'none' };
2020-03-20 20:28:31 +00:00
const messageBoxTypes = ['none', 'info', 'warning', 'error', 'question'];
const messageBoxOptions = { noLink: 1 << 0 };
let {
buttons = [],
cancelId,
checkboxLabel = '',
checkboxChecked,
defaultId = -1,
detail = '',
icon = null,
noLink = false,
message = '',
title = '',
type = 'none'
2020-03-20 20:28:31 +00:00
} = options;
const messageBoxType = messageBoxTypes.indexOf(type);
if (messageBoxType === -1) throw new TypeError('Invalid message box type');
if (!Array.isArray(buttons)) throw new TypeError('Buttons must be an array');
if (options.normalizeAccessKeys) buttons = buttons.map(normalizeAccessKey);
if (typeof title !== 'string') throw new TypeError('Title must be a string');
if (typeof noLink !== 'boolean') throw new TypeError('noLink must be a boolean');
if (typeof message !== 'string') throw new TypeError('Message must be a string');
if (typeof detail !== 'string') throw new TypeError('Detail must be a string');
if (typeof checkboxLabel !== 'string') throw new TypeError('checkboxLabel must be a string');
checkboxChecked = !!checkboxChecked;
if (checkboxChecked && !checkboxLabel) {
2020-03-20 20:28:31 +00:00
throw new Error('checkboxChecked requires that checkboxLabel also be passed');
}
// Choose a default button to get selected when dialog is cancelled.
if (cancelId == null) {
// If the defaultId is set to 0, ensure the cancel button is a different index (1)
2020-03-20 20:28:31 +00:00
cancelId = (defaultId === 0 && buttons.length > 1) ? 1 : 0;
for (let i = 0; i < buttons.length; i++) {
2020-03-20 20:28:31 +00:00
const text = buttons[i].toLowerCase();
if (text === 'cancel' || text === 'no') {
2020-03-20 20:28:31 +00:00
cancelId = i;
break;
}
}
}
const settings = {
window,
messageBoxType,
buttons,
defaultId,
cancelId,
noLink,
title,
message,
detail,
checkboxLabel,
checkboxChecked,
icon
2020-03-20 20:28:31 +00:00
};
if (sync) {
2020-03-20 20:28:31 +00:00
return binding.showMessageBoxSync(settings);
} else {
2020-03-20 20:28:31 +00:00
return binding.showMessageBox(settings);
}
2020-03-20 20:28:31 +00:00
};
module.exports = {
showOpenDialog: function (window, options) {
2020-03-20 20:28:31 +00:00
return openDialog(false, window, options);
},
showOpenDialogSync: function (window, options) {
2020-03-20 20:28:31 +00:00
return openDialog(true, window, options);
2016-01-12 02:40:23 +00:00
},
showSaveDialog: function (window, options) {
2020-03-20 20:28:31 +00:00
return saveDialog(false, window, options);
},
showSaveDialogSync: function (window, options) {
2020-03-20 20:28:31 +00:00
return saveDialog(true, window, options);
2016-01-12 02:40:23 +00:00
},
2016-03-18 18:51:02 +00:00
showMessageBox: function (window, options) {
2020-03-20 20:28:31 +00:00
return messageBox(false, window, options);
},
showMessageBoxSync: function (window, options) {
2020-03-20 20:28:31 +00:00
return messageBox(true, window, options);
2016-01-12 02:40:23 +00:00
},
2016-03-18 18:51:02 +00:00
showErrorBox: function (...args) {
2020-03-20 20:28:31 +00:00
return binding.showErrorBox(...args);
2017-04-03 19:25:06 +00:00
},
showCertificateTrustDialog: function (window, options) {
2020-03-20 20:28:31 +00:00
if (window && window.constructor !== BrowserWindow) options = window;
if (options == null || typeof options !== 'object') {
2020-03-20 20:28:31 +00:00
throw new TypeError('options must be an object');
}
2020-03-20 20:28:31 +00:00
const { certificate, message = '' } = options;
2017-04-04 15:45:27 +00:00
if (certificate == null || typeof certificate !== 'object') {
2020-03-20 20:28:31 +00:00
throw new TypeError('certificate must be an object');
}
2020-03-20 20:28:31 +00:00
if (typeof message !== 'string') throw new TypeError('message must be a string');
2020-03-20 20:28:31 +00:00
return binding.showCertificateTrustDialog(window, certificate, message);
2016-01-12 02:40:23 +00:00
}
2020-03-20 20:28:31 +00:00
};