1
0
mirror of https://github.com/mgerb/ps-launcher synced 2026-01-09 01:52:57 +00:00
Files
ps-launcher/app/components/Header/Header.tsx
2017-10-26 21:27:14 -05:00

57 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { remote, shell } from 'electron';
import React from 'react';
import { observer, inject } from 'mobx-react';
import { AppState } from '../../state/AppState';
import headerIcon from '../../assets/icons/png/24x24.png';
import './Header.scss';
interface Props {
AppState?: AppState;
}
@inject('AppState')
@observer
export class Header extends React.Component<Props, any> {
constructor(props: Props) {
super(props);
}
private exit(): void {
window.close();
}
private maximize(): void {
if (remote.getCurrentWindow().isMaximized()) {
remote.getCurrentWindow().restore();
} else {
remote.getCurrentWindow().maximize();
}
}
private minimize(): void {
remote.getCurrentWindow().minimize();
}
private openGithub(): void {
shell.openExternal('https://github.com/mgerb/ps-launcher/releases');
}
public render(): any {
return (
<div className="header">
<div className="header__version">
{/* <i className="fa fa-2x fa-github"/> */}
<img src={headerIcon}/>
<span style={{ fontSize: '10px' }}>v{VERSION}</span>
</div>
<div className="header__draggable-region"></div>
<i className="fa fa-lg fa-github header-icon" onClick={this.openGithub.bind(this)}/>
<div className="header-icon header-icon--minimize" onClick={this.minimize.bind(this)}/>
<div className="header-icon header-icon--maximize" onClick={this.maximize.bind(this)}/>
<div className="header-icon header-icon--close" onClick={() => this.exit()}>×</div>
</div>
);
}
}