mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-13 23:37:46 +03:00
fix(core): use openExternal in electron (#8323)
This commit is contained in:
parent
8d4cc6a1db
commit
ec7c63019f
@ -1,3 +1,8 @@
|
||||
import { DebugLogger } from '@affine/debug';
|
||||
import { apis } from '@affine/electron-api';
|
||||
|
||||
const logger = new DebugLogger('popup');
|
||||
|
||||
export function popupWindow(target: string) {
|
||||
target = /^https?:\/\//.test(target)
|
||||
? target
|
||||
@ -14,5 +19,11 @@ export function popupWindow(target: string) {
|
||||
url = builder.toString();
|
||||
}
|
||||
|
||||
return window.open(url, '_blank', `noreferrer noopener`);
|
||||
if (BUILD_CONFIG.isElectron) {
|
||||
apis?.ui.openExternal(url).catch(e => {
|
||||
logger.error('Failed to open external URL', e);
|
||||
});
|
||||
} else {
|
||||
window.open(url, '_blank', `noreferrer noopener`);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user