-
Notifications
You must be signed in to change notification settings - Fork 78
/
jquery.row-grid.js
140 lines (129 loc) · 5.17 KB
/
jquery.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
(function($){
$.fn.rowGrid = function( options ) {
return this.each(function() {
var $this = $(this);
if(options === 'appended') {
options = $this.data('grid-options');
var $lastRow = $this.children('.' + options.lastRowClass);
var items = $lastRow.nextAll(options.itemSelector).add($lastRow);
layout(this, options, items);
} else {
options = $.extend( {}, $.fn.rowGrid.defaults, options );
$this.data('grid-options', options);
layout(this, options);
if(options.resize) {
$(window).on('resize.rowGrid', {container: this}, function(event) {
layout(event.data.container, options);
});
}
}
});
};
$.fn.rowGrid.defaults = {
minMargin: null,
maxMargin: null,
resize: true,
lastRowClass: 'last-row',
firstItemClass: null,
lastItemClass: null
};
function layout(container, options, items) {
var rowWidth = 0,
rowElems = [],
items = jQuery.makeArray(items || container.querySelectorAll(options.itemSelector)),
itemsSize = items.length;
// read
var containerBoundingRect = container.getBoundingClientRect();
var containerWidth = Math.floor(containerBoundingRect.right - containerBoundingRect.left)-parseFloat($(container).css('padding-left'))-parseFloat($(container).css('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
};
}
itemsSize = items.length;
// write
for(var index = 0; index < itemsSize; ++index) {
if (items[index].classList) {
items[index].classList.remove(options.firstItemClass);
items[index].classList.remove(options.lastItemClass);
items[index].classList.remove(options.lastRowClass);
} else {
// IE <10
items[index].className = items[index].className.replace(new RegExp('(^|\\b)' + options.firstItemClass + '|' + options.lastItemClass + '|' + options.lastRowClass + '(\\b|$)', 'gi'), ' ');
}
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;
}
rowElems[rowElemIndex].style.cssText =
'width: ' + itemAttrs[index+parseInt(rowElemIndex)-rowElems.length+1].width + 'px;' +
'height: ' + itemAttrs[index+parseInt(rowElemIndex)-rowElems.length+1].height + 'px;' +
'margin-right:' + ((rowElemIndex < rowElems.length - 1)?options.minMargin+'px' : 0);
}
}
// check whether width of row is too high
if(rowWidth + options.maxMargin * (rowElems.length - 1) > containerWidth) {
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,
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;
var 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);
}
rowElem.style.cssText =
'width: ' + newWidth + 'px;' +
'height: ' + newHeight + 'px;' +
'margin-right: ' + ((rowElemIndex < rowElems.length - 1)?rowMargin : 0) + 'px';
if(rowElemIndex === 0) {
rowElem.className += ' ' + options.firstItemClass;
}
if(rowElemIndex == rowElems.length-1) {
rowElem.className += ' ' + options.lastItemClass;
}
}
rowElems = [],
rowWidth = 0;
}
}
}
})(jQuery);