Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(electron): detect electron context #1856

Merged
merged 7 commits into from
May 6, 2024
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions src/lib/is-browser.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
const isStandardBrowserEnv = () =>
typeof window !== 'undefined' && typeof window.document !== 'undefined'
const isStandardBrowserEnv = () => {
// window is only defined when it is a browser
if (typeof window !== 'undefined') {
// Is the process an electron application
const electronMainCheck = Object.prototype.hasOwnProperty.call(
process.versions,
'electron',
)
// In case of electron the userAgent contains a string formated like: 'Electron/<version>'
// we can search for that to detect if it is an electron application
const electronRenderCheck =
navigator.userAgent.toLowerCase().indexOf(' electron/') > -1
if (electronMainCheck && electronRenderCheck) {
// Both electron checks are only true if the following webPreferences are set in the main electron BrowserWindow()
// webPreferences: {
// sandbox: false,
// nodeIntegration: true
// contextIsolation: false
// }
return false
}
return typeof window.document !== 'undefined'
axi92 marked this conversation as resolved.
Show resolved Hide resolved
}
// return false if nothing is detected
return false
}

const isWebWorkerEnv = () =>
Boolean(
Expand Down
Loading