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

46 lines
1.0 KiB
JavaScript
Raw Normal View History

2015-07-17 15:02:44 +02:00
'use strict';
import React from 'react';
import { History } from 'react-router';
2015-07-17 15:02:44 +02:00
2015-10-16 13:10:18 +02:00
import AscribeSpinner from './ascribe_spinner';
2015-07-17 15:02:44 +02:00
import UserActions from '../actions/user_actions';
2015-10-16 13:10:18 +02:00
import { getLangText } from '../utils/lang_utils';
import { setDocumentTitle } from '../utils/dom_utils';
2015-10-16 13:10:18 +02:00
2015-07-17 15:02:44 +02:00
let LogoutContainer = React.createClass({
propTypes: {
// Provided from AscribeApp
currentUser: React.PropTypes.object,
whitelabel: React.PropTypes.object,
2016-01-11 16:26:36 +01:00
// Provided from router
location: React.PropTypes.object
},
mixins: [History],
2015-07-17 15:02:44 +02:00
componentDidMount() {
2015-10-07 09:39:30 +02:00
UserActions.logoutCurrentUser();
2015-07-17 15:02:44 +02:00
},
render() {
setDocumentTitle(getLangText('Log out'));
2015-10-16 13:10:18 +02:00
return (
<div className="ascribe-loading-position">
<AscribeSpinner color='dark-blue' size='lg'/>
<h3 className="text-center">
{getLangText('Just a sec, we\'re logging you out...')}
</h3>
</div>
);
2015-07-17 15:02:44 +02:00
}
});
export default LogoutContainer;