Skip to content

Instantly share code, notes, and snippets.

@codebytere
Created November 10, 2020 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codebytere/060ad478da5b628726da4b4ea94a16a6 to your computer and use it in GitHub Desktop.
Save codebytere/060ad478da5b628726da4b4ea94a16a6 to your computer and use it in GitHub Desktop.
button-click-drag-browserview
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello World!</title>
</head>
<body>
<div id="drag"></div>
<h1>Hello World?!</h1>
<button>hello</button>
We are using Node.js <span id="node-version"></span>, Chromium
<span id="chrome-version"></span>, and Electron
<span id="electron-version"></span>.
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>
// Modules to control application life and create native browser window
const { app, BrowserWindow, BrowserView } = require('electron')
const path = require('path')
function createWindow() {
// Create the browser window.
const mainWindow = new BrowserWindow({
width: 800,
height: 600,
frame: false,
titleBarStyle: 'hiddenInset'
});
const view = new BrowserView({
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
},
})
mainWindow.setBrowserView(view)
view.setBounds({ x: 0, y: 0, width: 800, height: 600 })
view.setAutoResize({ width: true, height: true })
view.webContents.loadFile('index.html')
// Open the DevTools.
// mainWindow.webContents.openDevTools()
// view.webContents.openDevTools()
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.whenReady().then(() => {
createWindow()
app.on('activate', function () {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (BrowserWindow.getAllWindows().length === 0) createWindow()
})
})
// Quit when all windows are closed, except on macOS. There, it's common
// for applications and their menu bar to stay active until the user quits
// explicitly with Cmd + Q.
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') app.quit()
})
// All of the Node.js APIs are available in the preload process.
// It has the same sandbox as a Chrome extension.
window.addEventListener('DOMContentLoaded', () => {
const replaceText = (selector, text) => {
const element = document.getElementById(selector)
if (element) element.innerText = text
}
for (const type of ['chrome', 'node', 'electron']) {
replaceText(`${type}-version`, process.versions[type])
}
// https://www.electronjs.org/docs/api/frameless-window#draggable-region
const div = document.getElementById('drag')
div.style.height = '200px'
div.style.position = 'absolute'
div.style.top = '0px'
div.style.left = '0px'
div.style.right = '0px'
div.style.webkitAppRegion = 'drag'
div.style.webkitUserpointSelect = 'none'
div.style.pointerEvents = 'none'
document.querySelector('button').onclick = () => alert('hello')
})
// This file is required by the index.html file and will
// be executed in the renderer process for that window.
// All of the Node.js APIs are available in this process.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment