This repository was archived by the owner on Feb 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjquery.wrecker.js
227 lines (167 loc) · 4.12 KB
/
jquery.wrecker.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
/**
* jQuery Wrecker v0.4
* Responsive Equal-Height Columns and Rows
* http://www.svachon.com/blog/wrecker-responsive-equal-height-columns-and-rows
*
* Licensed under the MIT license.
* Copyright 2013 Steven Vachon
*/
(function($)
{
$.Wrecker = function()
{
// Variables
var columnCount = 0;
var element;
var previousColumnCount = 0;
var settings = {
itemSelector : "",
maxColumns : 1,
responsiveColumns : [ /*{800:1}*/ ], // Had to nest this way because not all browsers loop through objects in correct order
excludeLastSingleItem : false
};
function init(options, $element)
{
element = $( $element );
changeSettings(options);
$(window).on("resize", handleResize);
calculateGrid();
}
function calculateGrid()
{
var newColumnCount = settings.maxColumns;
var windowWidth = $(window).innerWidth();
for (var i=0, numResponsiveColumns=settings.responsiveColumns.length; i<numResponsiveColumns; i++)
{
var currentSize = settings.responsiveColumns[i];
for (var j in currentSize)
{
if (j >= windowWidth)
{
newColumnCount = currentSize[j];
}
}
}
if (newColumnCount!=columnCount && newColumnCount>0)
{
previousColumnCount = columnCount;
columnCount = newColumnCount;
updateGrid();
}
}
function changeSettings(options)
{
// IE6-8 do not support responsive CSS, so the columns should be set to default (max) size
if (!$.support.leadingWhitespace)
{
options.responsiveColumns = [];
}
settings = $.extend(settings, options);
}
function destroy()
{
$(window).off("resize", handleResize);
columnCount = 0;
updateGrid();
element.removeData("wrecker");
}
function handleResize(event)
{
calculateGrid();
}
function updateGrid()
{
// Remove any row containers
element.children("div.wrecker-row").children().unwrap();
var cells = element.children(settings.itemSelector);
if (columnCount > 1)
{
var numCells = cells.length;
var startIndex = 0;
var count = 0;
var numCellsIsEven = numCells % 2 === 0;
var excludeLastItem = false;
if (settings.excludeLastSingleItem && !numCellsIsEven) {
excludeLastItem = true;
var lastCell = cells.last().addClass("wrecker-single-last");
}
// Add row containers
cells.each(function(i)
{
if (++count == 1)
{
startIndex = i;
}
if (!excludeLastItem || i < numCells-1)
{
if (count>=columnCount || i>=numCells-1)
{
cells.slice(startIndex,i+1).wrapAll('<div class="wrecker-row" style="display:table-row"/>');
count = 0;
}
// Since Wrecker styles are removed for single columns, they must be re-added
if (previousColumnCount <= 1)
{
$(this).addClass("wrecker-cell").css({display:"table-cell", float:"none"});
}
}else{
$(this).remove();
}
});
element.addClass("wrecker").css("display", "table");
if (excludeLastItem) {
lastCell.insertAfter(element);
}
}
else
{
// Remove Wrecker styles
cells.removeClass("wrecker-cell").css({display:"", float:""});
element.removeClass("wrecker").css("display", "");
}
}
// Public Methods
this.changeSettings = changeSettings;
this.destroy = destroy;
this.reload = updateGrid;
// Initiate
init.apply(this, arguments);
};
$.fn.wrecker = function(options)
{
var optionsString = (typeof options === "string");
var args = Array.prototype.slice.call(arguments, 1);
this.each(function(i)
{
var $this = $(this);
var instance = $this.data("wrecker");
if (optionsString)
{
if (!instance)
{
console.error("Cannot call Wrecker methods prior to initialization; attempted to call method \""+ options +"\"");
return;
}
if (!$.isFunction(instance[options]))
{
console.error("No such Wrecker method \""+ options +"\"");
return;
}
instance[options].apply(instance, args);
}
else
{
options = options || {};
if (!instance)
{
$this.data("wrecker", new $.Wrecker(options,this) );
}
else
{
instance.changeSettings(options);
}
}
});
return this;
}
})(jQuery);