-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresponsiveBlock.js
250 lines (216 loc) · 8.4 KB
/
responsiveBlock.js
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
import _ from 'lodash';
import React from 'react';
import ReactDOM from 'react-dom';
import createReactClass from 'create-react-class';
export default function(options) {
var elq = options.elq;
if (!elq) {
throw new Error('ResponsiveBlock: ELQ is required.');
}
var ResponsiveBlock = createReactClass({
getInitialState: function() {
this.validateBreakpoints(this.props.sizeBreakpoints);
return {
size: null,
};
},
componentWillReceiveProps: function(nextProps) {
if (_.isEqual(this.props.sizeBreakpoints, nextProps.sizeBreakpoints)) {
return;
}
// If the sizeBreakpoints have changed, we want to re-initialize ELQ with the new breakpoints.
this.validateBreakpoints(nextProps.sizeBreakpoints);
elq.deactivate(this.refs.container);
this.attachBreakpointStatesChangedHandler();
elq.activate(this.refs.container);
},
render: function() {
// Since ELQ cannot be started before the first render, there will be no state.size until shortly after (when the second render is triggered).
// Delay the rendering of the content until there is a size.
var content;
if (this.state.size) {
content = React.Children.map(
this.props.children,
function(child) {
return React.cloneElement(child, {
size: this.state.size,
});
},
this,
);
}
var breakpoints = this.getBreakpoints().join(' ');
return (
<div
className={this.props.className}
ref="container"
data-elq-breakpoints
data-elq-breakpoints-widths={breakpoints}
>
{content}
<div style={{ position: 'absolute', visibility: 'hidden' }} ref="renderDetector"></div>
</div>
);
},
componentDidMount: function() {
function isDetached(element) {
function isInDocument(element) {
return element === element.ownerDocument.body || element.ownerDocument.body.contains(element);
}
return !isInDocument(element);
}
function isUnrendered(el) {
return getComputedStyle(el).width.indexOf('px') === -1;
}
function ensureRendered(el, callback) {
var alteredParents = [];
var parent = el;
while ((parent = parent.parentElement)) {
// eslint-disable-line no-cond-assign
if (!isUnrendered(parent)) {
break;
}
if (getComputedStyle(parent).display === 'none') {
var styleDisplay = parent.style.display;
parent.style.display = 'block';
alteredParents.push({
el: parent,
styleDisplay: styleDisplay,
});
}
}
if (isUnrendered(el)) {
console.warn('Invariant: Parents rendered but the element still has no width'); // eslint-disable-line no-console
}
callback();
alteredParents.reverse().forEach(function(parent) {
var el = parent.el;
var styleDisplay = parent.styleDisplay || ''; // Default to empty string so that the value is removed from the inline style. Null is not accepted by IE.
el.style.display = styleDisplay;
});
}
function ensureAttached(el, callback) {
function raf(fn) {
if (window.requestAnimationFrame) {
window.requestAnimationFrame(fn);
} else {
setTimeout(fn, 16); // 60 fps
}
}
// Need to do this with polling :(
function checkAttachment() {
if (isDetached(el)) {
raf(checkAttachment);
} else {
callback();
}
}
checkAttachment();
}
this.attachBreakpointStatesChangedHandler();
var node = ReactDOM.findDOMNode(this);
ensureAttached(
node,
function whileAttached() {
ensureRendered(
node,
function whileRendered() {
elq.activate(this.refs.container);
}.bind(this),
);
}.bind(this),
);
},
componentWillUnmount: function() {
elq.deactivate(this.refs.container);
},
validateBreakpoints: function(sizeBreakpoints) {
var breakpoints = Object.keys(sizeBreakpoints).map(function(k) {
return sizeBreakpoints[k];
}, this);
var foundStart = false;
var sameUnit = true;
var overallUnit;
if (!breakpoints.length) {
console.warn(
'ResponsiveBlock: There are no size breakpoints defined. If you do not need breakpoints, then use a <div> instead.',
); // eslint-disable-line no-console
return;
}
breakpoints.forEach(function(bp) {
if (!bp) {
// Any falsy value is treated as start (since 0 is falsy).
foundStart = true;
} else {
var unit = 'px';
if (bp.match) {
var parts = bp.match(/(\d*\.?\d*)(.*)/);
unit = parts[parts.length - 1];
}
if (!overallUnit) {
overallUnit = unit;
} else {
if (overallUnit !== unit) {
sameUnit = false;
}
}
}
});
if (!foundStart) {
throw new Error(
'ResponsiveBlock: You need to define a starting size breakpoint. For example, "small: 0". Given size breakpoints:',
this.props.sizeBreakpoints,
);
}
if (!sameUnit) {
throw new Error(
'ResponsiveBlock: All breakpoints need to have the same unit. Given size breakpoints:',
this.props.sizeBreakpoints,
);
}
},
getOrderedSizes: function() {
var breakpoints = Object.keys(this.props.sizeBreakpoints).map(function(k) {
var bp = parseInt(this.props.sizeBreakpoints[k] || 0, 10);
var size = k;
return {
size: size,
breakpoint: bp,
};
}, this);
breakpoints.sort(function(a, b) {
return a.bp - b.bp;
});
return breakpoints.map(function(tuple) {
return tuple.size;
});
},
getBreakpoints: function() {
return Object.keys(this.props.sizeBreakpoints).map(function(k) {
return this.props.sizeBreakpoints[k] || 0;
}, this);
},
attachBreakpointStatesChangedHandler: function() {
var sizes = this.getOrderedSizes();
elq.listenTo(
this.refs.container,
'breakpointStatesChanged',
function(e, breakpointStates) {
var size = sizes[0];
breakpointStates.width.forEach(function(state, index) {
if (state.over) {
size = sizes[index];
}
}, this);
this.setState({
size: size,
});
}.bind(this),
);
},
});
ResponsiveBlock.defaultProps = {
sizeBreakpoints: {},
};
return ResponsiveBlock;
}