rsnext/examples/with-electron/renderer/pages/start.js
Joe Haddad 18a9c7e371
Improve linting rules to catch more errors (#9374)
* Update `packages/`

* Update examples

* Update tests

* Update bench

* Update top level files

* Fix build

* trigger
2019-11-10 19:24:53 -08:00

54 lines
1.2 KiB
JavaScript

import { Component } from 'react'
export default class extends Component {
state = {
input: '',
message: null,
}
componentDidMount() {
// start listening the channel message
global.ipcRenderer.on('message', this.handleMessage)
}
componentWillUnmount() {
// stop listening the channel message
global.ipcRenderer.removeListener('message', this.handleMessage)
}
handleMessage = (event, message) => {
// receive a message from the main process and save it in the local state
this.setState({ message })
}
handleChange = event => {
this.setState({ input: event.target.value })
}
handleSubmit = event => {
event.preventDefault()
global.ipcRenderer.send('message', this.state.input)
this.setState({ message: null })
}
render() {
return (
<div>
<h1>Hello Electron!</h1>
{this.state.message && <p>{this.state.message}</p>}
<form onSubmit={this.handleSubmit}>
<input type="text" onChange={this.handleChange} />
</form>
<style jsx>{`
h1 {
color: red;
font-size: 50px;
}
`}</style>
</div>
)
}
}