admin管理员组文章数量:1340292
How do I add a filter by extension in an Electron file dialog. For example:
function openDialogExample() {
var remote = require('remote');
var dialog = remote.require('dialog');
return dialog.showOpenDialog(
remote.getCurrentWindow(),
{
defaultPath: 'c:/',
filters: [
{ name: 'All Files', extensions: ['*'] },
{ name: 'Images', extensions: ['jpg', 'png', 'gif'] },
{ name: 'Movies', extensions: ['mkv', 'avi', 'mp4'] }
],
properties: ['openFile']
}
);
}
How do I implement it into my codebase?
const app = require('electron').remote
const fs = require('fs')
const dialog = app.dialog
document.getElementById('importWallet').onclick = () => {
dialog.showOpenDialog((fileName) => {
if(fileName !== undefined) {
readWallet(fileName[0])
}
});
}
function readWallet(filePath) {
fs.readFile(filePath, 'utf-8', (err, data) => {
if(err) {
alert('An error occured while importing your wallet', err)
return
}
})
}
How do I add a filter by extension in an Electron file dialog. For example:
function openDialogExample() {
var remote = require('remote');
var dialog = remote.require('dialog');
return dialog.showOpenDialog(
remote.getCurrentWindow(),
{
defaultPath: 'c:/',
filters: [
{ name: 'All Files', extensions: ['*'] },
{ name: 'Images', extensions: ['jpg', 'png', 'gif'] },
{ name: 'Movies', extensions: ['mkv', 'avi', 'mp4'] }
],
properties: ['openFile']
}
);
}
How do I implement it into my codebase?
const app = require('electron').remote
const fs = require('fs')
const dialog = app.dialog
document.getElementById('importWallet').onclick = () => {
dialog.showOpenDialog((fileName) => {
if(fileName !== undefined) {
readWallet(fileName[0])
}
});
}
function readWallet(filePath) {
fs.readFile(filePath, 'utf-8', (err, data) => {
if(err) {
alert('An error occured while importing your wallet', err)
return
}
})
}
Share
Improve this question
asked Jan 25, 2018 at 22:39
methuselahmethuselah
13.2k53 gold badges177 silver badges333 bronze badges
6
- 1 Hmm, I am still not sure what you are trying to do. Do you want to build the options object on the spot? – Rhayene Commented Jan 26, 2018 at 7:42
- Yes, I want to integrate it so that it gets picked up by the instance of the file dialog? Is that the correct way of doing things? – methuselah Commented Jan 26, 2018 at 8:08
- Ok, my english is not my strong point, so let's talk about it until I get it ^^" Normally you get a dropdown menu where you can choose between the defined filters (which you can name as you like btw.) So you want to add your unicorn filter on the fly because you don't know which kind of files you want the unicorn filter to show until in runtime? (unicorn because I like unicorns xD) – Rhayene Commented Jan 26, 2018 at 9:22
- Yes exactly. Well either way, I would like to filter out all the files in the dialog that dont match my defined filters – methuselah Commented Jan 26, 2018 at 9:27
- Do you only match by extension (like the standard)? Then you don't have to do the filtering yourself. The dialoge window will only show files that match the choosen filter. – Rhayene Commented Jan 26, 2018 at 9:30
2 Answers
Reset to default 5You can add as many filters to your options object as you like. You just have to make sure you don't add them more than once - because there is no check on uniqueness.
index.html
<!DOCTYPE html>
<html>
<body>
<button id="importWallet">Import wallet</button>
<script src="./index.js"></script>
</body>
</html>
index.js
const app = require("electron").remote;
const fs = require("fs");
const dialog = app.dialog;
//customize this one as you like
const dialogOptions = {
defaultPath: "c:/",
filters: [
{ name: "All Files", extensions: ["*"] },
{ name: "Images", extensions: ["jpg", "png", "gif"] },
{ name: "Movies", extensions: ["mkv", "avi", "mp4"] }
],
properties: ["openFile"]
};
document.getElementById("importWallet").onclick = () => {
const unicornFilter = dialogOptions.filters.find(item => {
if (item.name === "Unicorn") {
return item;
} else {
return undefined;
}
});
if (!unicornFilter) {
const myUnicornFilter = {
name: "Unicorn",
extensions: ["unicorn", "horse"]
};
dialogOptions.filters.push(myUnicornFilter);
}
dialog.showOpenDialog(dialogOptions, fileName => {
if (fileName !== undefined) {
console.log(fileName);
readWallet(fileName[0]);
}
});
};
function readWallet(filePath) {
fs.readFile(filePath, "utf-8", (err, data) => {
if (err) {
alert("An error occured while importing your wallet", err);
return;
}
});
}
step one: you must send a IPC from (main process) main.js to the (render Process) index.js. for more details read this, this and this.
step two: now you can processing openFile or openDirectory or ...
an example (of my code):
main.js: (with win.webContents.send(...); i send an ipc)
... after require some library in app.on("ready", () => {
let appMenu = [
{
"label": "file",
"submenu":
[
{
"label": "open file",
"accelerator": "CmdOrCtrl+o",
click() {
showDialog("openFile");
},
}, // end ofshowSaveDialog "open file"
{
"label": "save file",
"accelerator": "CmdOrCtrl+s",
click() {
showDialog("saveFile");
},
}, // end of "save file"
{
"type": "separator"
},
{
"label": "open Directory",
"accelerator": "CmdOrCtrl+k+o",
click() {
showDialog("openDirectory");
},
}, // end ofshowSaveDialog "openDirectory"
{
"type": "separator"
},
{
"label": "exit app",
"accelerator": "CmdOrCtrl+X",
"role": "quit",
} // end of "exit"
], // end of "submenu file"
}, // end of "file"
]
})
function showDialog(typeShowDialog) {
switch (typeShowDialog) {
case "openFile":
case "openDirectory":
dialog.showOpenDialog(
{
"title": `${typeShowDialog}`,
"properties": [`${typeShowDialog}`], // openDirectory, multiSelection, openFile
"filters":
[
{
"name": "all",
"extensions": ["*"]
},
{
"name": "text file",
"extensions": ["txt", "text"]
},
{
"name": "html",
"extensions": ["htm", "html"]
},
{
"name": "style sheet",
"extensions": ["css"]
},
{
"name": "javascript",
"extensions": ["js"]
},
{
"name": "c++",
"extensions": ["cpp", "cc", "C", "cxx"],
},
{
"name": "json",
"extensions": ["json"]
},
],
}, // end of options: electron.OpenDialogOptions
(filename) => {
if (filename === undefined) {
return;
}
win.webContents.send(`${typeShowDialog}`, filename); // Sending Content to the Renderer Process this is a IPC
}
); // end of "dialog.showOpenDialog"
break;
case "saveFile":
dialog.showSaveDialog(
{
"title": `${typeShowDialog}`,
"filters":
[
{
"name": "all",
"extensions": ["*"]
},
{
"name": "text file",
"extensions": ["txt", "text"]
},
{
"name": "html",
"extensions": ["htm", "html"]
},
{
"name": "style sheet",
"extensions": ["css"]
},
{
"name": "javascript",
"extensions": ["js"]
},
{
"name": "c++",
"extensions": ["cpp", "cc", "C", "cxx"],
},
{
"name": "json",
"extensions": ["json"]
},
],
}, // end of options: electron.SaveDialogOptions
(filename) => {
if (filename === undefined) {
return;
}
win.webContents.send(`${typeShowDialog}`, filename); // Sending Content to the Renderer Process this is a IPC
}
); // end of "dialog.showSaveDialog"
break;
} // end of "switch"
} // end of "showDialog"
index.js: (with ipcRenderer.on(...); i receive ipc)
ipcRenderer.on("openFile", (event, arg) => {
// some sttements;
});
ipcRenderer.on("openDirectory", (event, arg) => {
// some statements;
});
ipcRenderer.on("saveFile", (event, arg) => {
// some statements;
});
and this is a example about ipc
本文标签: javascriptFilter by extension in Electron file dialogStack Overflow
版权声明:本文标题:javascript - Filter by extension in Electron file dialog - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743630685a2513057.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论