forked from akoenig/angular-deckgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
angular-deckgrid.js
362 lines (294 loc) · 10 KB
/
angular-deckgrid.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
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
/*! angular-deckgrid (v0.2.2) - Copyright: 2013 - 2014, André König ([email protected]) - MIT */
/*
* angular-deckgrid
*
* Copyright(c) 2013-2014 André König <[email protected]>
* MIT Licensed
*
*/
/**
* @author André König ([email protected])
*
*/
angular.module('akoenig.deckgrid', []);
angular.module('akoenig.deckgrid').directive('deckgrid', [
'DeckgridDescriptor',
function initialize (DeckgridDescriptor) {
'use strict';
return DeckgridDescriptor.create();
}
]);
/*
* angular-deckgrid
*
* Copyright(c) 2013-2014 André König <[email protected]>
* MIT Licensed
*
*/
/**
* @author André König ([email protected])
*
*/
angular.module('akoenig.deckgrid').factory('DeckgridDescriptor', [
'Deckgrid',
function initialize (Deckgrid) {
'use strict';
/**
* This is a wrapper around the AngularJS
* directive description object.
*
*/
function Descriptor () {
this.restrict = 'AE';
this.template = '<div data-ng-repeat="column in columns" class="{{layout.classList}}">' +
'<div data-ng-repeat="card in column" data-ng-include="cardTemplate"></div>' +
'</div>';
this.scope = {
'model': '=source'
};
//
// Will be created in the linking function.
//
this.$$deckgrid = null;
this.link = this.$$link.bind(this);
}
/**
* @private
*
* Cleanup method. Will be called when the
* deckgrid directive should be destroyed.
*
*/
Descriptor.prototype.$$destroy = function $$destroy () {
this.$$deckgrid.destroy();
};
/**
* @private
*
* The deckgrid link method. Will instantiate the deckgrid.
*
*/
Descriptor.prototype.$$link = function $$link (scope, elem, attrs) {
scope.$on('$destroy', this.$$destroy.bind(this));
scope.cardTemplate = attrs.cardtemplate;
scope.mother = scope.$parent;
this.$$deckgrid = Deckgrid.create(scope, elem[0]);
};
return {
create : function create () {
return new Descriptor();
}
};
}
]);
/*
* angular-deckgrid
*
* Copyright(c) 2013-2014 André König <[email protected]>
* MIT Licensed
*
*/
/**
* @author André König ([email protected])
*
*/
angular.module('akoenig.deckgrid').factory('Deckgrid', [
'$window',
'$log',
function initialize ($window, $log) {
'use strict';
/**
* The deckgrid directive.
*
*/
function Deckgrid (scope, element) {
var self = this,
watcher;
this.$$elem = element;
this.$$watchers = [];
this.$$scope = scope;
this.$$scope.columns = [];
//
// The layout configuration will be parsed from
// the pseudo "before element." There you have to save all
// the column configurations.
//
this.$$scope.layout = this.$$getLayout();
this.$$createColumns();
//
// Register model change.
//
watcher = this.$$scope.$watch('model', this.$$onModelChange.bind(this), true);
this.$$watchers.push(watcher);
//
// Register media query change events.
//
angular.forEach(self.$$getMediaQueries(), function onIteration (rule) {
function onDestroy () {
rule.removeListener(self.$$onMediaQueryChange.bind(self));
}
rule.addListener(self.$$onMediaQueryChange.bind(self));
self.$$watchers.push(onDestroy);
});
}
/**
* @private
*
* Extracts the media queries out of the stylesheets.
*
* This method will fetch the media queries out of the stylesheets that are
* responsible for styling the angular-deckgrid.
*
* @return {array} An array with all respective styles.
*
*/
Deckgrid.prototype.$$getMediaQueries = function $$getMediaQueries () {
var stylesheets = [],
mediaQueries = [];
stylesheets = Array.prototype.concat.call(
Array.prototype.slice.call(document.querySelectorAll('style[type=\'text/css\']')),
Array.prototype.slice.call(document.querySelectorAll('link[rel=\'stylesheet\']'))
);
function extractRules (stylesheet) {
try {
return (stylesheet.sheet.cssRules || []);
} catch (e) {
return [];
}
}
function hasDeckgridStyles (rule) {
var regexe = /\[(\w*-)?deckgrid\]::?before/g,
i = 0,
selector = '';
if (!rule.media && angular.isUndefined(rule.cssRules)) {
return false;
}
i = rule.cssRules.length - 1;
for (i; i >= 0; i = i - 1) {
selector = rule.cssRules[i].selectorText;
if (angular.isDefined(selector) && selector.match(regexe)) {
return true;
}
}
return false;
}
angular.forEach(stylesheets, function onIteration (stylesheet) {
var rules = extractRules(stylesheet);
angular.forEach(rules, function inRuleIteration (rule) {
if (hasDeckgridStyles(rule)) {
mediaQueries.push($window.matchMedia(rule.media.mediaText));
}
});
});
return mediaQueries;
};
/**
* @private
*
* Creates the column segmentation. With other words:
* This method creates the internal data structure from the
* passed "source" attribute. Every card within this "source"
* model will be passed into this internal column structure by
* reference. So if you modify the data within your controller
* this directive will reflect these changes immediately.
*
* NOTE that calling this method will trigger a complete template "redraw".
*
*/
Deckgrid.prototype.$$createColumns = function $$createColumns () {
var self = this;
if (!this.$$scope.layout) {
return $log.error('angular-deckgrid: No CSS configuration found (see ' +
'https://github.com/akoenig/angular-deckgrid#the-grid-configuration)');
}
this.$$scope.columns = [];
angular.forEach(this.$$scope.model, function onIteration (card, index) {
var column = (index % self.$$scope.layout.columns) | 0;
if (!self.$$scope.columns[column]) {
self.$$scope.columns[column] = [];
}
self.$$scope.columns[column].push(card);
});
};
/**
* @private
*
* Parses the configuration out of the configured CSS styles.
*
* Example:
*
* .deckgrid::before {
* content: '3 .column.size-1-3';
* }
*
* Will result in a three column grid where each column will have the
* classes: "column size-1-3".
*
* You are responsible for defining the respective styles within your CSS.
*
*/
Deckgrid.prototype.$$getLayout = function $$getLayout () {
var content = $window.getComputedStyle(this.$$elem, ':before').content,
layout;
if (content) {
content = content.replace(/'/g, ''); // before e.g. '3 .column.size-1of3'
content = content.replace(/"/g, ''); // before e.g. "3 .column.size-1of3"
content = content.split(' ');
if (2 === content.length) {
layout = {};
layout.columns = (content[0] | 0);
layout.classList = content[1].replace(/\./g, ' ').trim();
}
}
return layout;
};
/**
* @private
*
* Event that will be triggered if a CSS media query changed.
*
*/
Deckgrid.prototype.$$onMediaQueryChange = function $$onMediaQueryChange () {
var self = this,
layout = this.$$getLayout();
//
// Okay, the layout has changed.
// Creating a new column structure is not avoidable.
//
if (layout.columns !== this.$$scope.layout.columns) {
self.$$scope.layout = layout;
self.$$scope.$apply(function onApply () {
self.$$createColumns();
});
}
};
/**
* @private
*
* Event that will be triggered when the source model has changed.
*
*/
Deckgrid.prototype.$$onModelChange = function $$onModelChange (oldModel, newModel) {
var self = this;
if (oldModel.length !== newModel.length) {
self.$$createColumns();
}
};
/**
* Destroys the directive. Takes care of cleaning all
* watchers and event handlers.
*
*/
Deckgrid.prototype.destroy = function destroy () {
var i = this.$$watchers.length - 1;
for (i; i >= 0; i = i - 1) {
this.$$watchers[i]();
}
};
return {
create : function create (scope, element) {
return new Deckgrid(scope, element);
}
};
}
]);