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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global.Bricks = factory());
}(this, (function () { 'use strict';
var _extends = Object.assign || function (target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
var knot = function knot() {
var extended = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var events = Object.create(null);
function on(name, handler) {
events[name] = events[name] || [];
events[name].push(handler);
return this;
}
function once(name, handler) {
handler._once = true;
on(name, handler);
return this;
}
function off(name) {
var handler = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
handler ? events[name].splice(events[name].indexOf(handler), 1) : delete events[name];
return this;
}
function emit(name) {
var _this = this;
for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
args[_key - 1] = arguments[_key];
}
// cache the events, to avoid consequences of mutation
var cache = events[name] && events[name].slice();
// only fire handlers if they exist
cache && cache.forEach(function (handler) {
// remove handlers added with 'once'
handler._once && off(name, handler);
// set 'this' context, pass args to handlers
handler.apply(_this, args);
});
return this;
}
return _extends({}, extended, {
on: on,
once: once,
off: off,
emit: emit
});
};
var bricks = function bricks() {
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
// privates
var persist = void 0; // packing new elements, or all elements?
var ticking = void 0; // for debounced resize
var sizeIndex = void 0;
var sizeDetail = void 0;
var columnTarget = void 0;
var columnHeights = void 0;
var nodeTop = void 0;
var nodeLeft = void 0;
var nodeWidth = void 0;
var nodeHeight = void 0;
var nodes = void 0;
var nodesWidths = void 0;
var nodesHeights = void 0;
// resolve options
var packed = options.packed.indexOf('data-') === 0 ? options.packed : 'data-' + options.packed;
var sizes = options.sizes.slice().reverse();
var position = options.position !== false;
var container = options.container.nodeType ? options.container : document.querySelector(options.container);
var selectors = {
all: function all() {
return toArray(container.children);
},
new: function _new() {
return toArray(container.children).filter(function (node) {
return !node.hasAttribute('' + packed);
});
}
};
// series
var setup = [setSizeIndex, setSizeDetail, setColumns];
var run = [setNodes, setNodesDimensions, setNodesStyles, setContainerStyles];
// instance
var instance = knot({
pack: pack,
update: update,
resize: resize
});
return instance;
// general helpers
function runSeries(functions) {
functions.forEach(function (func) {
return func();
});
}
// array helpers
function toArray(input) {
var scope = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : document;
return Array.prototype.slice.call(input);
}
function fillArray(length) {
return Array.apply(null, Array(length)).map(function () {
return 0;
});
}
// size helpers
function getSizeIndex() {
// find index of widest matching media query
return sizes.map(function (size) {
return size.mq && window.matchMedia('(min-width: ' + size.mq + ')').matches;
}).indexOf(true);
}
function setSizeIndex() {
sizeIndex = getSizeIndex();
}
function setSizeDetail() {
// if no media queries matched, use the base case
sizeDetail = sizeIndex === -1 ? sizes[sizes.length - 1] : sizes[sizeIndex];
}
// column helpers
function setColumns() {
columnHeights = fillArray(sizeDetail.columns);
}
// node helpers
function setNodes() {
nodes = selectors[persist ? 'new' : 'all']();
}
function setNodesDimensions() {
// exit if empty container
if (nodes.length === 0) {
return;
}
nodesWidths = nodes.map(function (element) {
return element.clientWidth;
});
nodesHeights = nodes.map(function (element) {
return element.clientHeight;
});
}
function setNodesStyles() {
nodes.forEach(function (element, index) {
columnTarget = columnHeights.indexOf(Math.min.apply(Math, columnHeights));
element.style.position = 'absolute';
nodeTop = columnHeights[columnTarget] + 'px';
nodeLeft = columnTarget * nodesWidths[index] + columnTarget * sizeDetail.gutter + 'px';
// support positioned elements (default) or transformed elements
if (position) {
element.style.top = nodeTop;
element.style.left = nodeLeft;
} else {
element.style.transform = 'translate3d(' + nodeLeft + ', ' + nodeTop + ', 0)';
}
element.setAttribute(packed, '');
// ignore nodes with no width and/or height
nodeWidth = nodesWidths[index];
nodeHeight = nodesHeights[index];
if (nodeWidth && nodeHeight) {
columnHeights[columnTarget] += nodeHeight + sizeDetail.gutter;
}
});
}
// container helpers
function setContainerStyles() {
container.style.position = 'relative';
container.style.width = sizeDetail.columns * nodeWidth + (sizeDetail.columns - 1) * sizeDetail.gutter + 'px';
container.style.height = Math.max.apply(Math, columnHeights) - sizeDetail.gutter + 'px';
}
// resize helpers
function resizeFrame() {
if (!ticking) {
window.requestAnimationFrame(resizeHandler);
ticking = true;
}
}
function resizeHandler() {
if (sizeIndex !== getSizeIndex()) {
pack();
instance.emit('resize', sizeDetail);
}
ticking = false;
}
// API
function pack() {
persist = false;
runSeries(setup.concat(run));
return instance.emit('pack');
}
function update() {
persist = true;
runSeries(run);
return instance.emit('update');
}
function resize() {
var flag = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
var action = flag ? 'addEventListener' : 'removeEventListener';
window[action]('resize', resizeFrame);
return instance;
}
};
return bricks;
})));
|