1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 00:28:00 +02:00

fix: ikonotv redirect to collection if logged in

This commit is contained in:
diminator 2015-09-28 16:57:35 +02:00
parent 0a0a34b0e3
commit 19f94110b7

View File

@ -6,6 +6,7 @@ import Router from 'react-router';
import ButtonLink from 'react-router-bootstrap/lib/ButtonLink';
import UserStore from '../../../../../stores/user_store';
import UserActions from '../../../../../actions/user_actions';
import { getLangText } from '../../../../../utils/lang_utils';
@ -20,6 +21,7 @@ let IkonotvLanding = React.createClass({
componentDidMount() {
UserStore.listen(this.onChange);
UserActions.fetchCurrentUser();
},
componentWillUnmount() {
@ -32,7 +34,7 @@ let IkonotvLanding = React.createClass({
getEnterButton() {
let redirect = 'login';
console.log(this.state)
if(this.state.currentUser && this.state.currentUser.email) {
redirect = 'pieces';
}