1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/lock/lock.component.js
2021-04-28 14:53:59 -05:00

27 lines
657 B
JavaScript

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import Loading from '../../components/ui/loading-screen';
import { DEFAULT_ROUTE } from '../../helpers/constants/routes';
export default class Lock extends PureComponent {
static propTypes = {
history: PropTypes.object,
isUnlocked: PropTypes.bool,
lockMetamask: PropTypes.func,
};
componentDidMount() {
const { lockMetamask, isUnlocked, history } = this.props;
if (isUnlocked) {
lockMetamask().then(() => history.push(DEFAULT_ROUTE));
} else {
history.replace(DEFAULT_ROUTE);
}
}
render() {
return <Loading />;
}
}