Switch to integrated redux devtools

This commit is contained in:
GHOSCHT 2021-12-31 22:09:29 +01:00
parent 42abc1b572
commit ef131929b9
No known key found for this signature in database
GPG key ID: A35BD466B8871994
2 changed files with 6 additions and 6 deletions

View file

@ -6,7 +6,7 @@ const { app, Tray, Menu } = require("electron");
const isDev = require("electron-is-dev");
const screenz = require("screenz");
const els = require("electron-localshortcut");
const devTools = require("electron-devtools-installer");
const { default: installExtension, REDUX_DEVTOOLS, REACT_DEVELOPER_TOOLS } = require("electron-devtools-installer");
const chalk = require("chalk");
const windowWidth = 900;
@ -16,9 +16,7 @@ let tray = null;
let mainWindow = null;
const gotTheLock = app.requestSingleInstanceLock();
// Conditionally include the dev tools installer to load React Dev Tools
const installExtension = devTools.default;
const { REACT_DEVELOPER_TOOLS } = devTools;
const extensions = [REDUX_DEVTOOLS, REACT_DEVELOPER_TOOLS];
// Handle creating/removing shortcuts on Windows when installing/uninstalling
if (require("electron-squirrel-startup")) {
@ -146,9 +144,10 @@ if (!gotTheLock) {
app.allowRendererProcessReuse = false;
mainWindow = createWindow();
installExtension(REACT_DEVELOPER_TOOLS)
console.log("Installing extensions");
installExtension(extensions)
.then((name) => console.log(`Added Extension: ${name}`))
.catch((error) => console.log(`An error occurred: , ${error}`));
.catch((err) => console.log("An error occurred: ", err));
mainWindow.setMenu(null);

View file

@ -9,6 +9,7 @@ const store = configureStore(
{
reducer: rootReducer,
middleware: (getDefaultMiddleware) => getDefaultMiddleware().concat(middlewares),
devTools: true,
},
);