-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrow-grid.js
168 lines (141 loc) · 5.72 KB
/
row-grid.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
var rowGrid = function(container, options) {
if (container === null || container === undefined) {
return;
}
if (options === 'appended') {
options = JSON.parse(container.getAttribute('data-row-grid'));
var lastRow = container.getElementsByClassName(options.lastRowClass)[0];
var items = nextAll(lastRow, options.itemSelector);
layout(container, options, items);
} else {
if (!options) {
options = JSON.parse(container.getAttribute('data-row-grid'));
} else {
if (options.minWidth === undefined) options.minWidth = 0;
if (options.lastRowClass === undefined) options.lastRowClass = 'last-row';
container.setAttribute('data-row-grid', JSON.stringify(options));
window.addEventListener('resize', function(event) {
layout(container, options);
});
}
layout(container, options);
}
/* Get elem and all following siblings of elem */
function nextAll(elem, selector) {
var matched = [elem];
while (elem = elem.nextElementSibling) {
if (matches(elem, selector)) matched.push(elem);
}
return matched;
}
function layout(container, options, items) {
var rowWidth = 0,
rowElems = [],
items = Array.prototype.slice.call(items || container.querySelectorAll(options.itemSelector)),
itemsSize = items.length
singleImagePerRow = !!window.matchMedia && !window.matchMedia('(min-width:' + options.minWidth + 'px)').matches;
// read
var containerStyle = getComputedStyle(container);
var containerWidth = Math.floor(container.getBoundingClientRect().width) - parseFloat(containerStyle.getPropertyValue('padding-left')) - parseFloat(containerStyle.getPropertyValue('padding-right'));
var itemAttrs = [];
var theImage, w, h;
for (var i = 0; i < itemsSize; ++i) {
theImage = items[i].getElementsByTagName('img')[0];
if (!theImage) {
items.splice(i, 1);
--i;
--itemsSize;
continue;
}
// get width and height via attribute or js value
if (!(w = parseInt(theImage.getAttribute('width')))) {
theImage.setAttribute('width', w = theImage.offsetWidth);
}
if (!(h = parseInt(theImage.getAttribute('height')))) {
theImage.setAttribute('height', h = theImage.offsetHeight);
}
itemAttrs[i] = {
width: w,
height: h
};
}
// write
for (var index = 0; index < itemsSize; ++index) {
if (items[index].classList) {
items[index].classList.remove(options.firstItemClass);
items[index].classList.remove(options.lastRowClass);
} else {
// IE <10
items[index].className = items[index].className.replace(new RegExp('(^|\\b)' + options.firstItemClass + '|' + options.lastRowClass + '(\\b|$)', 'gi'), ' ');
}
// add element to row
rowWidth += itemAttrs[index].width;
rowElems.push(items[index]);
// check if it is the last element
if (index === itemsSize - 1) {
for (var rowElemIndex = 0; rowElemIndex < rowElems.length; rowElemIndex++) {
// if first element in row
if (rowElemIndex === 0) {
rowElems[rowElemIndex].className += ' ' + options.lastRowClass;
}
var css = 'width: ' + itemAttrs[index + parseInt(rowElemIndex) - rowElems.length + 1].width + 'px;' +
'height: ' + itemAttrs[index + parseInt(rowElemIndex) - rowElems.length + 1].height + 'px;';
if (rowElemIndex < rowElems.length - 1) {
css += 'margin-right:' + options.minMargin + 'px';
}
rowElems[rowElemIndex].style.cssText = css;
}
}
// check whether width of row is too high
if (rowWidth + options.maxMargin * (rowElems.length - 1) > containerWidth || singleImagePerRow) {
var diff = rowWidth + options.maxMargin * (rowElems.length - 1) - containerWidth;
var nrOfElems = rowElems.length;
// change margin
var maxSave = (options.maxMargin - options.minMargin) * (nrOfElems - 1);
if (maxSave < diff) {
var rowMargin = options.minMargin;
diff -= (options.maxMargin - options.minMargin) * (nrOfElems - 1);
} else {
var rowMargin = options.maxMargin - diff / (nrOfElems - 1);
diff = 0;
}
var rowElem,
newHeight = null,
widthDiff = 0;
for (var rowElemIndex = 0; rowElemIndex < rowElems.length; rowElemIndex++) {
rowElem = rowElems[rowElemIndex];
var rowElemWidth = itemAttrs[index + parseInt(rowElemIndex) - rowElems.length + 1].width;
var newWidth = rowElemWidth - (rowElemWidth / rowWidth) * diff;
newHeight = newHeight || Math.round(itemAttrs[index + parseInt(rowElemIndex) - rowElems.length + 1].height * (newWidth / rowElemWidth));
if (widthDiff + 1 - newWidth % 1 >= 0.5) {
widthDiff -= newWidth % 1;
newWidth = Math.floor(newWidth);
} else {
widthDiff += 1 - newWidth % 1;
newWidth = Math.ceil(newWidth);
}
var css = 'width: ' + newWidth + 'px;' +
'height: ' + newHeight + 'px;';
if (rowElemIndex < rowElems.length - 1) {
css += 'margin-right: ' + rowMargin + 'px';
}
rowElem.style.cssText = css;
if (rowElemIndex === 0 && !!options.firstItemClass) {
rowElem.className += ' ' + options.firstItemClass;
}
}
rowElems = [],
rowWidth = 0;
}
}
}
function matches(elem, selector) {
return (Element.prototype.matches
|| Element.prototype.msMatchesSelector
|| Element.prototype.webkitMatchesSelector)
.call(elem, selector);
}
};
if (typeof exports === 'object') {
module.exports = rowGrid;
}