2017-06-26 22:27:55 +00:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import translate from 'translations';
|
2017-06-29 23:03:11 +00:00
|
|
|
import WalletDecrypt from 'components/WalletDecrypt';
|
|
|
|
import BaseWallet from 'libs/wallet/base';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import type { State } from 'reducers';
|
2017-06-26 22:27:55 +00:00
|
|
|
|
2017-06-29 23:03:11 +00:00
|
|
|
type Props = {
|
2017-07-04 03:21:19 +00:00
|
|
|
title: string,
|
|
|
|
wallet: BaseWallet
|
2017-06-29 23:03:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export class UnlockHeader extends React.Component {
|
2017-07-04 03:21:19 +00:00
|
|
|
props: Props;
|
2017-07-02 05:49:06 +00:00
|
|
|
static propTypes = {
|
|
|
|
title: PropTypes.string.isRequired
|
|
|
|
};
|
2017-06-26 22:27:55 +00:00
|
|
|
|
2017-07-02 05:49:06 +00:00
|
|
|
state: {
|
|
|
|
expanded: boolean
|
|
|
|
} = {
|
2017-07-13 21:02:39 +00:00
|
|
|
expanded: !this.props.wallet
|
2017-07-02 05:49:06 +00:00
|
|
|
};
|
2017-06-26 22:27:55 +00:00
|
|
|
|
2017-07-04 03:21:19 +00:00
|
|
|
componentDidUpdate(prevProps: Props) {
|
|
|
|
if (this.props.wallet && this.props.wallet !== prevProps.wallet) {
|
|
|
|
this.setState({ expanded: false });
|
|
|
|
}
|
2017-06-29 23:03:11 +00:00
|
|
|
|
2017-07-04 03:21:19 +00:00
|
|
|
// not sure if could happen
|
|
|
|
if (!this.props.wallet && this.props.wallet !== prevProps.wallet) {
|
|
|
|
this.setState({ expanded: true });
|
2017-06-29 23:03:11 +00:00
|
|
|
}
|
2017-07-04 03:21:19 +00:00
|
|
|
}
|
2017-06-29 23:03:11 +00:00
|
|
|
|
2017-07-02 05:49:06 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<article className="collapse-container">
|
|
|
|
<div onClick={this.toggleExpanded}>
|
|
|
|
<a className="collapse-button">
|
2017-07-04 03:21:19 +00:00
|
|
|
<span>
|
|
|
|
{this.state.expanded ? '-' : '+'}
|
|
|
|
</span>
|
2017-07-02 05:49:06 +00:00
|
|
|
</a>
|
2017-07-04 03:21:19 +00:00
|
|
|
<h1>
|
|
|
|
{translate(this.props.title)}
|
|
|
|
</h1>
|
2017-07-02 05:49:06 +00:00
|
|
|
</div>
|
v3 Style Import (#151)
* Convert bootstrap to sass instead of checked in and less
* Darken body, adjust header.
* First pass at tab styles, each tab will need a lot of individual love tho.
* Update footer to main site content, improve responsiveness.
* Missing key added.
* Fix dropdowns.
* Convert GenerateWallet HTML over, still needs styling.
* Send form.
* Current rates styled.
* CurrencySwap form styles.
* SwapInfoHeader styled.
* Finish up swap restyling, minor usability improvements for mobile.
* Fix up notifications / alert customizations
* Import v3 variables.
* Fix notification spacing.
* Align input height base with buttons.
* Revert height base, add additional bootstrap overrides.
* Grid overrides.
* Move overrides to their own folder. Adjust naming.
* Fix inconsistencies.
* Style generate wallet pt 1.
* Style generate wallet pt 2
* Style generate wallet pt 3
* Fix swap
* Added some missing overries, fixed the fallout.
* Remove header text, indicate alpha version.
* Fix radio / checkbox weights.
* Bind => arrow
* Convert simpledropdown to proper form select, instead of weirdly implemented nonfuncitoning dropdown.
* Fix token balances buttons, footr icons.
2017-09-05 19:52:01 +00:00
|
|
|
{this.state.expanded && <WalletDecrypt />}
|
2017-07-02 05:49:06 +00:00
|
|
|
{this.state.expanded && <hr />}
|
|
|
|
</article>
|
|
|
|
);
|
|
|
|
}
|
2017-06-26 22:27:55 +00:00
|
|
|
|
2017-07-02 05:49:06 +00:00
|
|
|
toggleExpanded = () => {
|
|
|
|
this.setState(state => {
|
|
|
|
return { expanded: !state.expanded };
|
|
|
|
});
|
|
|
|
};
|
2017-06-26 22:27:55 +00:00
|
|
|
}
|
2017-06-29 23:03:11 +00:00
|
|
|
|
|
|
|
function mapStateToProps(state: State) {
|
2017-07-04 03:21:19 +00:00
|
|
|
return {
|
2017-07-13 21:02:39 +00:00
|
|
|
wallet: state.wallet.inst
|
2017-07-04 03:21:19 +00:00
|
|
|
};
|
2017-06-29 23:03:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps)(UnlockHeader);
|