在React组件

时间:2016-09-05 14:16:44

标签: javascript node.js reactjs ecmascript-6 electron

我正在尝试创建一个小的 React 应用,捕获并设置全局快捷方式,用于显示和隐藏电子应用窗口。但是当我尝试在 React 组件中使用 ipcRender 时,我已经陷入困境,引发了以下错误。

Uncaught Error: Cannot find module "fs"

我正在使用 Webpack 捆绑我的JS并编译JSX,并使用 ES6 语法导入 Electron ipcRender ,正如您在下面的组件代码中看到的那样。

import React from "react";
import electron, { ipcRenderer } from 'electron';

var event2string = require('key-event-to-string')({});

export default React.createClass({
    getInitialState: function() {
        return {shortcut: this.props.globalShortcut[0]};
    },
    handleOnKeyDown:function(e){
        e.preventDefault();
        var keys = event2string(e);
        this.setState({shortcut:keys});

        this.props.globalShortcut.splice(0, 1);
        this.props.globalShortcut.push(keys);
    },
    handleOnKeyUp:function(){
        this.refs.shortcutInput.value = this.state.shortcut;
        this.refs.shortcutInput.blur();
        ipcRenderer.send('set-new-shortcut', this.props.globalShortcut);
    },
    handleOnFocus:function(){
        this.refs.shortcutInput.value = '';
    },
    render() {
        return (
            <div id="settings-container">
                <h1>The show/hide shortcut is "{this.state.shortcut}"</h1>
                <form role="form">
                    <input type="text" ref="shortcutInput" placeholder="Create new shortcut" onFocus={this.handleOnFocus} onKeyDown={this.handleOnKeyDown} onKeyUp={this.handleOnKeyUp} className="form-control form-field"/>
                </form>
            </div>
        );
    }
});

我尝试过不同的解决方案,例如添加 node-loader &amp; json-loader 到我的 Webpack 文件,添加 fs 设置为&#39;空&#39;的节点对象,包括一个插件告诉 Webpack 忽略 fs ipc 并通过npm安装 fs 。我无法让他们中的任何一个工作。

不幸的是,我没有足够的 Webpack ES6 语法知识来弄清楚发生了什么,以及大多数解决方案我&# 39;我们曾尝试过一种粘贴和希望的方式。时尚。因此,如果有人能够用非专业人士的说法解释发生了什么,我将能够再挖掘一些。

以下是我当前的 Webpack 文件。

var webpack = require('webpack');

module.exports = {
  context: __dirname + '/src/js',
  entry: "./index.js",

  output: {
    filename: 'bundle.js',
    path: __dirname + '/build',
    publicPath: 'http://localhost:8080/build/'
  },

  module: {
    loaders: [
      { test: /\.jsx?$/, loader: 'babel-loader', exclude: /node_modules/, query:{presets:['es2015','react']} },
      { test: /\.scss$/, loader: 'style-loader!css-loader!sass-loader' }
    ]
  },

  // Don't know if below is working, 'Uncaught Error: Cannot find module "fs"' error still thrown when trying to import electron
  plugins: [ 
    new webpack.IgnorePlugin(new RegExp("^(fs|ipc)$"))
  ],

  // Don't know if below is working, 'Uncaught Error: Cannot find module "fs"' error still thrown when trying to import electron
  node: {
    fs: 'empty'
  }
};

2 个答案:

答案 0 :(得分:4)

您需要在Webpack配置中设置target: 'electron-renderer',如果在此之后仍有问题,请查看https://github.com/chentsulin/electron-react-boilerplate

答案 1 :(得分:0)

通过使用 contextBridge 我们可以解决这个问题

const { app, BrowserWindow, ipcMain, Notification } = require("electron");

new BrowserWindow({
    width: 1200,
    height: 800,
    backgroundColor: "white",
    webPreferences: {
      nodeIntegration: false,
      worldSafeExecuteJavaScript: true,
      contextIsolation: true,
      preload: path.join(__dirname, 'preload.js')
    }
  })

//example to display notification
ipcMain.on('notify', (_, message) => {
   new Notification({title: 'Notification', body: message}).show();
})

preload.js

const { ipcRenderer, contextBridge } = require('electron');

contextBridge.exposeInMainWorld('electron', {
  notificationApi: {
    sendNotification(message) {
      ipcRenderer.send('notify', message);
    }
  }
})

然后在您的 reactjs 组件中使用以下代码将触发本机通知消息

import * as React from "react";
import * as ReactDOM from "react-dom";

class App extends React.Component {
  componentDidMount() {
    electron.notificationApi.sendNotification("My custom message!");
  }
  render() {
    return <h1>contextBridge</h1>;
  }
}