electron/lib/common/parse-features-string.js

86 lines
2.3 KiB
JavaScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
'use strict';
2016-10-25 01:21:42 +00:00
// parses a feature string that has the format used in window.open()
2016-10-25 01:36:43 +00:00
// - `features` input string
2016-10-25 01:21:42 +00:00
// - `emit` function(key, value) - called for each parsed KV
function parseFeaturesString (features, emit) {
2020-03-20 20:28:31 +00:00
features = `${features}`.trim();
2016-10-25 01:21:42 +00:00
// split the string by ','
features.split(/\s*,\s*/).forEach((feature) => {
2016-10-25 01:36:43 +00:00
// expected form is either a key by itself or a key/value pair in the form of
// 'key=value'
2020-03-20 20:28:31 +00:00
let [key, value] = feature.split(/\s*=\s*/);
if (!key) return;
2016-10-25 01:21:42 +00:00
// interpret the value as a boolean, if possible
2020-03-20 20:28:31 +00:00
value = (value === 'yes' || value === '1') ? true : (value === 'no' || value === '0') ? false : value;
2016-10-25 01:21:42 +00:00
// emit the parsed pair
2020-03-20 20:28:31 +00:00
emit(key, value);
});
}
function convertFeaturesString (features, frameName) {
const options = {};
const ints = ['x', 'y', 'width', 'height', 'minWidth', 'maxWidth', 'minHeight', 'maxHeight', 'zoomFactor'];
const webPreferences = ['zoomFactor', 'nodeIntegration', 'enableRemoteModule', 'preload', 'javascript', 'contextIsolation', 'webviewTag'];
// Used to store additional features
const additionalFeatures = [];
// Parse the features
parseFeaturesString(features, function (key, value) {
if (value === undefined) {
additionalFeatures.push(key);
} else {
// Don't allow webPreferences to be set since it must be an object
// that cannot be directly overridden
if (key === 'webPreferences') return;
if (webPreferences.includes(key)) {
if (options.webPreferences == null) {
options.webPreferences = {};
}
options.webPreferences[key] = value;
} else {
options[key] = value;
}
}
});
if (options.left) {
if (options.x == null) {
options.x = options.left;
}
}
if (options.top) {
if (options.y == null) {
options.y = options.top;
}
}
if (options.title == null) {
options.title = frameName;
}
if (options.width == null) {
options.width = 800;
}
if (options.height == null) {
options.height = 600;
}
for (const name of ints) {
if (options[name] != null) {
options[name] = parseInt(options[name], 10);
}
}
return {
options, additionalFeatures
};
}
module.exports = {
parseFeaturesString, convertFeaturesString
2020-03-20 20:28:31 +00:00
};