本文整理匯總了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);
}