insomnia/packages/insomnia-app/app/ui/components/check-for-updates-button.tsx

71 lines
1.7 KiB
TypeScript
Raw Normal View History

import React, { PureComponent, ReactNode } from 'react';
import { autoBindMethodsForReact } from 'class-autobind-decorator';
import * as electron from 'electron';
import { AUTOBIND_CFG } from '../../common/constants';
interface Props {
children: ReactNode;
className?: string | null;
}
interface State {
status: string;
checking: boolean;
updateAvailable: boolean;
}
@autoBindMethodsForReact(AUTOBIND_CFG)
class CheckForUpdatesButton extends PureComponent<Props, State> {
state: State = {
status: '',
checking: false,
updateAvailable: false,
}
_listenerCheckComplete(_e, updateAvailable: true, status: string) {
this.setState({
status,
updateAvailable,
});
}
_listenerCheckStatus(_e, status: string) {
if (this.state.checking) {
this.setState({
status,
});
}
}
2018-06-25 17:42:50 +00:00
_handleCheckForUpdates() {
electron.ipcRenderer.send('updater.check');
2018-06-25 17:42:50 +00:00
this.setState({ checking: true });
}
2018-06-25 17:42:50 +00:00
componentDidMount() {
electron.ipcRenderer.on('updater.check.status', this._listenerCheckStatus);
2018-10-17 16:42:33 +00:00
electron.ipcRenderer.on('updater.check.complete', this._listenerCheckComplete);
}
componentWillUnmount() {
2018-10-17 16:42:33 +00:00
electron.ipcRenderer.removeListener('updater.check.complete', this._listenerCheckComplete);
electron.ipcRenderer.removeListener('updater.check.status', this._listenerCheckStatus);
}
2018-06-25 17:42:50 +00:00
render() {
const { children, className } = this.props;
const { status, checking } = this.state;
return (
<button
className={className ?? ''}
disabled={checking}
onClick={this._handleCheckForUpdates}
>
2017-11-22 22:43:10 +00:00
{status || children}
</button>
);
}
}
export default CheckForUpdatesButton;