import WalletDecrypt from 'components/WalletDecrypt'; import { IWallet } from 'libs/wallet/IWallet'; import React from 'react'; import { connect } from 'react-redux'; import { AppState } from 'reducers'; interface Props { title: React.ReactElement; wallet: IWallet; allowReadOnly?: boolean; } interface State { expanded: boolean; } export class UnlockHeader extends React.Component { public state = { expanded: !this.props.wallet }; public componentDidUpdate(prevProps: Props) { if (this.props.wallet && this.props.wallet !== prevProps.wallet) { this.setState({ expanded: false }); } // not sure if could happen if (!this.props.wallet && this.props.wallet !== prevProps.wallet) { this.setState({ expanded: true }); } } public render() { const { title, allowReadOnly } = this.props; return ( ); } public toggleExpanded = () => { this.setState(state => { return { expanded: !state.expanded }; }); }; } function mapStateToProps(state: AppState) { return { wallet: state.wallet.inst }; } export default connect(mapStateToProps)(UnlockHeader);