2017-05-23 23:06:01 +00:00
|
|
|
// @flow
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
2017-07-04 01:25:01 +00:00
|
|
|
type Props<T> = {
|
2017-07-04 03:21:19 +00:00
|
|
|
value: T,
|
|
|
|
options: T[],
|
|
|
|
ariaLabel: string,
|
|
|
|
formatTitle: (option: T) => any,
|
|
|
|
extra?: any,
|
|
|
|
onChange: (value: T) => void
|
|
|
|
};
|
2017-05-23 23:06:01 +00:00
|
|
|
|
2017-07-04 01:25:01 +00:00
|
|
|
type State = {
|
2017-07-04 03:21:19 +00:00
|
|
|
expanded: boolean
|
|
|
|
};
|
2017-07-04 01:25:01 +00:00
|
|
|
|
2017-07-04 03:21:19 +00:00
|
|
|
export default class DropdownComponent<T: *> extends Component<
|
|
|
|
void,
|
|
|
|
Props<T>,
|
|
|
|
State
|
|
|
|
> {
|
|
|
|
props: Props<T>;
|
2017-05-23 23:06:01 +00:00
|
|
|
|
2017-07-02 05:49:06 +00:00
|
|
|
state = {
|
|
|
|
expanded: false
|
|
|
|
};
|
2017-05-23 23:06:01 +00:00
|
|
|
|
2017-07-02 05:49:06 +00:00
|
|
|
render() {
|
|
|
|
const { options, value, ariaLabel, extra } = this.props;
|
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
|
|
|
const { expanded } = this.state;
|
2017-05-23 23:06:01 +00:00
|
|
|
|
2017-07-02 05:49:06 +00:00
|
|
|
return (
|
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
|
|
|
<span className={`dropdown ${expanded ? 'open' : ''}`}>
|
2017-07-02 05:49:06 +00:00
|
|
|
<a
|
|
|
|
tabIndex="0"
|
|
|
|
aria-haspopup="true"
|
|
|
|
aria-expanded="false"
|
|
|
|
aria-label={ariaLabel}
|
|
|
|
className="dropdown-toggle"
|
|
|
|
onClick={this.toggleExpanded}
|
|
|
|
>
|
|
|
|
{this.formatTitle(value)}
|
|
|
|
<i className="caret" />
|
|
|
|
</a>
|
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
|
|
|
{expanded &&
|
2017-07-02 05:49:06 +00:00
|
|
|
<ul className="dropdown-menu">
|
|
|
|
{options.map((option, i) => {
|
|
|
|
return (
|
|
|
|
<li key={i}>
|
|
|
|
<a
|
|
|
|
className={option === value ? 'active' : ''}
|
|
|
|
onClick={this.onChange.bind(null, option)}
|
|
|
|
>
|
|
|
|
{this.formatTitle(option)}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
{extra}
|
|
|
|
</ul>}
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
2017-05-23 23:06:01 +00:00
|
|
|
|
2017-07-02 05:49:06 +00:00
|
|
|
formatTitle(option: any) {
|
|
|
|
return this.props.formatTitle(option);
|
|
|
|
}
|
2017-05-23 23:06:01 +00:00
|
|
|
|
2017-07-02 05:49:06 +00:00
|
|
|
toggleExpanded = () => {
|
|
|
|
this.setState(state => {
|
|
|
|
return {
|
|
|
|
expanded: !state.expanded
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
2017-05-23 23:06:01 +00:00
|
|
|
|
2017-07-02 05:49:06 +00:00
|
|
|
onChange = (value: any) => {
|
|
|
|
this.props.onChange(value);
|
|
|
|
this.setState({ expanded: false });
|
|
|
|
};
|
2017-05-23 23:06:01 +00:00
|
|
|
}
|