1
+ 'use strict' ;
2
+
3
+ Object . defineProperty ( exports , '__esModule' , {
4
+ value : true
5
+ } ) ;
6
+
7
+ var _createClass = ( function ( ) { function defineProperties ( target , props ) { for ( var i = 0 ; i < props . length ; i ++ ) { var descriptor = props [ i ] ; descriptor . enumerable = descriptor . enumerable || false ; descriptor . configurable = true ; if ( 'value' in descriptor ) descriptor . writable = true ; Object . defineProperty ( target , descriptor . key , descriptor ) ; } } return function ( Constructor , protoProps , staticProps ) { if ( protoProps ) defineProperties ( Constructor . prototype , protoProps ) ; if ( staticProps ) defineProperties ( Constructor , staticProps ) ; return Constructor ; } ; } ) ( ) ;
8
+
9
+ var _get = function get ( _x , _x2 , _x3 ) { var _again = true ; _function: while ( _again ) { var object = _x , property = _x2 , receiver = _x3 ; desc = parent = getter = undefined ; _again = false ; if ( object === null ) object = Function . prototype ; var desc = Object . getOwnPropertyDescriptor ( object , property ) ; if ( desc === undefined ) { var parent = Object . getPrototypeOf ( object ) ; if ( parent === null ) { return undefined ; } else { _x = parent ; _x2 = property ; _x3 = receiver ; _again = true ; continue _function; } } else if ( 'value' in desc ) { return desc . value ; } else { var getter = desc . get ; if ( getter === undefined ) { return undefined ; } return getter . call ( receiver ) ; } } } ;
10
+
11
+ function _interopRequireDefault ( obj ) { return obj && obj . __esModule ? obj : { 'default' : obj } ; }
12
+
13
+ function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( 'Cannot call a class as a function' ) ; } }
14
+
15
+ function _inherits ( subClass , superClass ) { if ( typeof superClass !== 'function' && superClass !== null ) { throw new TypeError ( 'Super expression must either be null or a function, not ' + typeof superClass ) ; } subClass . prototype = Object . create ( superClass && superClass . prototype , { constructor : { value : subClass , enumerable : false , writable : true , configurable : true } } ) ; if ( superClass ) subClass . __proto__ = superClass ; }
16
+
17
+ var _react = require ( 'react' ) ;
18
+
19
+ var _react2 = _interopRequireDefault ( _react ) ;
20
+
21
+ var getDimensions = function getDimensions ( el ) {
22
+ var el_style = window . getComputedStyle ( el ) ,
23
+ el_display = el_style . display ,
24
+ el_position = el_style . position ,
25
+ el_visibility = el_style . visibility ,
26
+ el_max_height = el_style . maxHeight . replace ( 'px' , '' ) . replace ( '%' , '' ) ,
27
+ wanted_dimensions = { } ;
28
+
29
+ // if its not hidden we just return normal height
30
+ if ( el_display !== 'none' && el_max_height !== '0' ) {
31
+ return el . offsetHeight ;
32
+ }
33
+
34
+ // the element is hidden so:
35
+ // making the el block so we can measure its height but still be hidden
36
+ el . style . position = 'absolute' ;
37
+ el . style . visibility = 'hidden' ;
38
+ el . style . display = 'block' ;
39
+
40
+ wanted_dimensions [ 'height' ] = el . offsetHeight ;
41
+ wanted_dimensions [ 'width' ] = el . offsetWidth ;
42
+
43
+ // reverting to the original values
44
+ el . style . display = el_display ;
45
+ el . style . position = el_position ;
46
+ el . style . visibility = el_visibility ;
47
+
48
+ return wanted_dimensions ;
49
+ } ;
50
+
51
+ var Popover = ( function ( _React$Component ) {
52
+ function Popover ( props ) {
53
+ _classCallCheck ( this , Popover ) ;
54
+
55
+ _get ( Object . getPrototypeOf ( Popover . prototype ) , 'constructor' , this ) . call ( this , props ) ;
56
+
57
+ this . handleClick = this . handleClick . bind ( this ) ;
58
+ }
59
+
60
+ _inherits ( Popover , _React$Component ) ;
61
+
62
+ _createClass ( Popover , [ {
63
+ key : 'componentDidMount' ,
64
+ value : function componentDidMount ( ) {
65
+ var _this = this ;
66
+
67
+ this . buttonHeight = _react2 [ 'default' ] . findDOMNode ( this . refs . toggleButton ) . offsetHeight ;
68
+ this . buttonWidth = _react2 [ 'default' ] . findDOMNode ( this . refs . toggleButton ) . offsetWidth ;
69
+
70
+ var dimensions = getDimensions ( _react2 [ 'default' ] . findDOMNode ( this . refs . popover ) ) ;
71
+
72
+ this . popoverHeight = dimensions . height ;
73
+ this . popoverWidth = dimensions . width ;
74
+
75
+ document . addEventListener ( 'click' , function ( ev ) {
76
+ ev . stopPropagation ( ) ;
77
+ _this . handleClick ( true ) ;
78
+ } ) ;
79
+
80
+ _react2 [ 'default' ] . findDOMNode ( this . refs . popover ) . addEventListener ( 'click' , function ( ev ) {
81
+ ev . stopPropagation ( ) ;
82
+ _this . handleClick ( _this . props . isOpen ) ;
83
+ } ) ;
84
+
85
+ _react2 [ 'default' ] . findDOMNode ( this . refs . toggleButton ) . addEventListener ( 'click' , function ( ev ) {
86
+ ev . stopPropagation ( ) ;
87
+ _this . handleClick ( _this . props . isOpen ) ;
88
+ } ) ;
89
+ }
90
+ } , {
91
+ key : 'handleClick' ,
92
+ value : function handleClick ( value ) {
93
+ this . props . handleClick ( value ) ;
94
+ }
95
+ } , {
96
+ key : 'calculateTopOffset' ,
97
+ value : function calculateTopOffset ( ) {
98
+ var offset = '0px' ;
99
+
100
+ switch ( this . props . position ) {
101
+ case 'top' :
102
+ offset = '-' + ( this . popoverHeight + 10 ) + 'px' ;
103
+ break ;
104
+ case 'bottom' :
105
+ offset = this . buttonHeight + 10 + 'px' ;
106
+ break ;
107
+ case 'left' :
108
+ offset = '0px' ;
109
+ break ;
110
+ case 'right' :
111
+ offset = '0px' ;
112
+ break ;
113
+ default :
114
+ offset = 0 ;
115
+ }
116
+
117
+ return offset ;
118
+ }
119
+ } , {
120
+ key : 'calculateLeftOffset' ,
121
+ value : function calculateLeftOffset ( ) {
122
+ var offset = '0px' ;
123
+
124
+ switch ( this . props . position ) {
125
+ case 'top' :
126
+ offset = '0px' ;
127
+ break ;
128
+ case 'bottom' :
129
+ offset = '0px' ;
130
+ break ;
131
+ case 'left' :
132
+ offset = '-' + ( this . popoverWidth + 10 ) + 'px' ;
133
+ break ;
134
+ case 'right' :
135
+ offset = this . popoverWidth + 'px' ;
136
+ break ;
137
+ default :
138
+ offset = 0 ;
139
+ }
140
+
141
+ return offset ;
142
+ }
143
+ } , {
144
+ key : 'render' ,
145
+ value : function render ( ) {
146
+ var toggleButton = _react2 [ 'default' ] . cloneElement ( this . props . toggleButton , {
147
+ ref : 'toggleButton'
148
+ } ) ;
149
+
150
+ var contentClass = 'popover-content ' + this . props . position + ' ' + ( this . props . isOpen ? 'show' : '' ) ;
151
+ var contentStyles = {
152
+ top : this . calculateTopOffset ( ) ,
153
+ left : this . calculateLeftOffset ( )
154
+ } ;
155
+
156
+ return _react2 [ 'default' ] . createElement (
157
+ 'div' ,
158
+ { className : 'popover-menu' } ,
159
+ toggleButton ,
160
+ _react2 [ 'default' ] . createElement (
161
+ 'section' ,
162
+ { className : contentClass , style : contentStyles , ref : 'popover' } ,
163
+ this . props . children
164
+ )
165
+ ) ;
166
+ }
167
+ } ] , [ {
168
+ key : 'defaultProps' ,
169
+ value : {
170
+ toggleButton : _react2 [ 'default' ] . createElement (
171
+ 'button' ,
172
+ { className : 'btn btn-lrg btn-success' } ,
173
+ 'Toggle Menu'
174
+ ) ,
175
+ isOpen : false ,
176
+ position : 'bottom'
177
+ } ,
178
+ enumerable : true
179
+ } ] ) ;
180
+
181
+ return Popover ;
182
+ } ) ( _react2 [ 'default' ] . Component ) ;
183
+
184
+ exports [ 'default' ] = Popover ;
185
+ module . exports = exports [ 'default' ] ;
0 commit comments