1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 01:22:49 +00:00

thread page in progress

This commit is contained in:
2018-01-07 22:58:10 -06:00
parent 98f682fdce
commit 5ffa2753ed
51 changed files with 356 additions and 18 deletions

View File

@@ -0,0 +1,31 @@
import React from 'react';
interface Props {
className?: string;
}
interface State {}
// TODO: add prod url
const oauthUrl: string =
process.env.NODE_ENV === 'production'
? ''
: 'https://us.battle.net/oauth/authorize?redirect_uri=https://localhost/oauth&scope=wow.profile&client_id=2pfsnmd57svcpr5c93k7zb5zrug29xvp&response_type=code';
export class LoginButton extends React.Component<Props, State> {
login() {
window.open(oauthUrl, '_blank', 'resizeable=yes, height=900, width=1200');
}
render() {
console.log(process.env);
return (
<div {...this.props}>
<img src={require('../../assets/login-bot-left.gif')} />
<img src={require('../../assets/login-bot-login.gif')} style={{ cursor: 'pointer' }} onClick={this.login.bind(this)} />
<img src={require('../../assets/login-bot-right.gif')} />
</div>
);
}
}