Portal Windows
Render and position windows as simply as you render and position tooltips in your React app.
Getting started
To use Portal Windows, you'll need to hook up your code in three places:
1. The root window
The constructor for your main/root window (found in node.ts
in examples
), needs its constructor changed and some listeners attached, in order for portal windows to work:
2. The preload script
The preload script just adds listeners for communicating between the node and renderer code. You can add it to your existing preload file (or make an new one) with these two lines:
3. Initialize windowStore in the renderer, and use Portal Windows!
Now, you can use portal windows! Somewhere inside your main window, call windowActions.init
, and you're ready to use portal windows. Here's a simple example (found in simpleApp.tsx
in the examples
folder). It creates a demo window positioned next to the main window, with the same size as the main window (resize and see!) and basic bounds correction:
Check out the examples
folder for more details, and a more complex example!
Contributing
First set up yarn berry and import workspace-tools
yarn set version berry
yarn plugin import workspace-tools
And using yarn workspaces, so if you're using VS code, you'll need to run the following command to get auto-complete to work: (see here for other editors):
yarn dlx @yarnpkg/sdks vscode