aboutsummaryrefslogtreecommitdiffstats
path: root/ui/responsive/app/components/dropdown.js
blob: 6e09cd13393176052be9c5bd04efd44a012e0b3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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',
        },
      },
      [
        h(
          'style',
          `
          li.dropdown-menu-item:hover { color:rgb(225, 225, 225); }
          li.dropdown-menu-item { color: rgb(185, 185, 185); }
          `
        ),
        ...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.dropdown-menu-item',
      {
        onClick,
        closeMenu,
        style: {
          listStyle: 'none',
          padding: '8px 0px 8px 0px',
          fontSize: '12px',
          fontStyle: 'normal',
          fontFamily: 'Montserrat Regular',
          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,
};