mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 01:25:17 +01:00
fad6caca63
Conflicts: js/components/ascribe_detail/edition_container.js js/components/logout_container.js
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import { History } from 'react-router';
|
|
|
|
import AscribeSpinner from './ascribe_spinner';
|
|
|
|
import UserActions from '../actions/user_actions';
|
|
import { alt, altWhitelabel, altUser, altThirdParty } from '../alt';
|
|
|
|
import { getLangText } from '../utils/lang_utils';
|
|
import { setDocumentTitle } from '../utils/dom_utils';
|
|
|
|
|
|
let LogoutContainer = React.createClass({
|
|
mixins: [History],
|
|
|
|
componentDidMount() {
|
|
UserActions.logoutCurrentUser();
|
|
alt.flush();
|
|
altWhitelabel.flush();
|
|
altUser.flush();
|
|
altThirdParty.flush();
|
|
// kill intercom (with fire)
|
|
window.Intercom('shutdown');
|
|
},
|
|
|
|
render() {
|
|
setDocumentTitle(getLangText('Log out'));
|
|
|
|
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>
|
|
);
|
|
}
|
|
});
|
|
|
|
|
|
export default LogoutContainer;
|