本文整理汇总了TypeScript中electron.shell类的典型用法代码示例。如果您正苦于以下问题:TypeScript shell类的具体用法?TypeScript shell怎么用?TypeScript shell使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了shell类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: async
watcher.on(actions.navigate, async (store, action) => {
let { url, resource, wind, background, replace } = action.payload;
logger.debug(`Navigating to ${url} ${background ? "(in background)" : ""}`);
if (opensInWindow(url)) {
store.dispatch(
actions.openWind({
initialURL: url,
role: "secondary",
})
);
return;
}
const space = Space.fromInstance("fictional-tab", {
history: [{ url, resource }],
currentIndex: 0,
sequence: 0,
});
if (space.protocol() == "mailto:") {
logger.debug(`Is mailto link, opening as external and skipping tab open`);
shell.openExternal(space.suffix);
return;
}
const rs = store.getState();
if (hasMultipleTabs(rs, wind)) {
const nativeWindow = getNativeWindow(rs, "root");
if (
nativeWindow &&
nativeWindow.isFocused() &&
!background &&
url !== "itch://new-tab"
) {
// let it navigate the open tab
} else {
// open a new tab!
const tab = uuid();
store.dispatch(
actions.tabOpened({
wind,
tab,
url,
resource,
background,
})
);
return;
}
}
{
const { navigation } = rs.winds[wind];
const tab = navigation.tab;
// navigate the single tab
store.dispatch(
actions.evolveTab({
tab,
replace,
wind,
url,
resource,
})
);
store.dispatch(
actions.focusWind({
wind,
})
);
}
});
示例2: function
win.on('will-navigate', function(e: Event, url: string){
e.preventDefault();
shell.openExternal(url);
});
示例3:
.then(() => {
shell.showItemInFolder(logPath)
})
示例4:
notifier.on("click", (notifierObject: NodeNotifier, options: Notification) => {
electron.shell.openExternal(options.message + '/live');
});
示例5:
mainWindow.webContents.on('will-navigate', (event: Event, url: string) => {
shell.openExternal(url);
event.preventDefault();
});
示例6: openLink
export function openLink(url: string) { electron.shell.openExternal(url); }
示例7:
editor.store.on('beep', () => shell.beep());
示例8: click
role: 'help',
submenu: [
{
label: '&About',
click () {
dialog.showMessageBox(BrowserWindow.getFocusedWindow(), {
type: 'info',
buttons: ['OK'],
title: 'About',
message: 'GReader is a text reader, thanks for use'
})
}
},
{
label: '&Website',
click () { shell.openExternal('https://github.com/guohr/GReader') }
},
{
label: '&Issues',
click () { shell.openExternal('https://github.com/guohr/GReader/issues') }
}
]
}
]
if (process.platform === 'darwin') {
const name = app.getName()
menuTpl.unshift({
label: name,
submenu: [
{
示例9:
ipcMain.on("openUrl", (event, url) => {
shell.openExternal(url);
});
示例10: fileOpener
export function fileOpener(path: string) {
shell.openItem(path);
}