IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 line
502B

  1. import { h, Component } from 'preact';
  2. import { route } from 'preact-router';
  3. class WBSignOut extends Component {
  4. componentDidMount() {
  5. const { app } = this.props;
  6. const keys = ['arvHost', 'arvToken', 'currentUser'];
  7. for (let i = 0; i < keys.length; i++) {
  8. delete app.state[keys[i]];
  9. delete window.localStorage[keys[i]];
  10. }
  11. route('/sign-in');
  12. }
  13. render() {
  14. return (
  15. <div>Signing out...</div>
  16. );
  17. }
  18. }
  19. export default WBSignOut;