aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-07-13 15:40:00 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-07-13 15:40:00 +0800
commita49e5e158a03d4c2d89ddbeba853325d6f35cf29 (patch)
treef02513eab18a16357e434c36e6a5967592bb9886 /ui
parented8a71d35074c5ee0a6c4c03ae366f59ab6bc519 (diff)
downloadtangerine-wallet-browser-a49e5e158a03d4c2d89ddbeba853325d6f35cf29.tar
tangerine-wallet-browser-a49e5e158a03d4c2d89ddbeba853325d6f35cf29.tar.gz
tangerine-wallet-browser-a49e5e158a03d4c2d89ddbeba853325d6f35cf29.tar.bz2
tangerine-wallet-browser-a49e5e158a03d4c2d89ddbeba853325d6f35cf29.tar.lz
tangerine-wallet-browser-a49e5e158a03d4c2d89ddbeba853325d6f35cf29.tar.xz
tangerine-wallet-browser-a49e5e158a03d4c2d89ddbeba853325d6f35cf29.tar.zst
tangerine-wallet-browser-a49e5e158a03d4c2d89ddbeba853325d6f35cf29.zip
Implement redesigned dropdown
Diffstat (limited to 'ui')
-rw-r--r--ui/responsive/app/components/dropdown.js71
1 files changed, 71 insertions, 0 deletions
diff --git a/ui/responsive/app/components/dropdown.js b/ui/responsive/app/components/dropdown.js
new file mode 100644
index 000000000..d7f0e158a
--- /dev/null
+++ b/ui/responsive/app/components/dropdown.js
@@ -0,0 +1,71 @@
+const Component = require('react').Component;
+const PropTypes = require('react').PropTypes;
+const h = require('react-hyperscript');
+const MenuDroppo = require('menu-droppo');
+
+class Dropdown extends Component {
+ render() {
+ const { isOpen, onClickOutside, style, children } = this.props;
+
+ return h(
+ MenuDroppo,
+ {
+ isOpen,
+ zIndex: 11,
+ onClickOutside,
+ style,
+ innerStyle: {
+ borderRadius: '4px',
+ padding: '8px 16px',
+ background: 'rgba(0, 0, 0, 0.8)',
+ boxShadow: 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px',
+ },
+ },
+ children,
+ );
+ }
+}
+
+Dropdown.propTypes = {
+ isOpen: PropTypes.func.isRequired,
+ onClick: PropTypes.func.isRequired,
+ children: PropTypes.node,
+ style: PropTypes.object.isRequired,
+}
+
+class DropdownMenuItem extends Component {
+ render() {
+ const { onClick, closeMenu, children } = this.props;
+
+ return h(
+ 'li',
+ {
+ onClick,
+ closeMenu,
+ style: {
+ listStyle: 'none',
+ padding: '8px 0px 8px 0px',
+ fontSize: '12px',
+ fontStyle: 'normal',
+ fontFamily: 'Montserrat Regular',
+ color: 'rgb(185, 185, 185)',
+ cursor: 'pointer',
+ display: 'flex',
+ justifyContent: 'flex-start',
+ },
+ },
+ children
+ );
+ }
+}
+
+DropdownMenuItem.propTypes = {
+ closeMenu: PropTypes.func.isRequired,
+ onClick: PropTypes.func.isRequired,
+ children: PropTypes.node,
+};
+
+module.exports = {
+ Dropdown,
+ DropdownMenuItem,
+}; \ No newline at end of file