-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathResponsiveGridContainer.js
193 lines (160 loc) · 5.92 KB
/
ResponsiveGridContainer.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
define(["dojo/_base/lang","dojo/_base/declare", "dojo/dom-class", "dojo/dom-construct", "dijit/layout/ContentPane",
"dojo/_base/array", "dojo/dom-prop", "dojo/dom-style", "dijit/_WidgetBase", "dijit/layout/_LayoutWidget","dojo/domReady!"],
function(lang,declare, domClass, domConstruct, ContentPane, arrayUtil, domProp, domStyle, _WidgetBase, _LayoutWidget){
// summary:
// A container that lays out its child widgets in a responsive grid layout.
// description:
// The ResponsiveGridContainer lays out child widgets in a responsive grid layout.
// Each widget can specify a "label" or a "title" parameter.
// The number of columns is configured using the "cols" attribute.
// example:
// <div dojoType="dijitx.ResponsiveContainer" cols="3>
// <div dojoType="dijit.form.TextInput" value="John" label="First Name:"></div>
// <div dojoType="dijit.form.CheckBox" label="Is Student?:"></div>
// <div dojoType="dojox.form.DateTextBox" label="Date Of Birth:"></div>
// </div>
var ResponsiveGridContainer = declare("dijitx.ResponsiveGridContainer", [ContentPane], {
// Specifies the number of columns in the grid layout.
gridCols: 12,
// customClass: String
// A CSS class that will be applied to child elements. For example, if
// the class is "myClass", the table will have "myClass-table" applied to it,
// each label TD will have "myClass-labelCell" applied, and each
// widget TD will have "myClass-valueCell" applied.
customClass: "",
baseClass: 'dijitResponsiveGridContainer',
constructor: function(){
this.inherited(arguments);
this.gridRows = [];
},
postCreate: function(){
this.inherited(arguments);
this._children = [];
// If the orientation, customClass or cols attributes are changed,
// layout the widgets again.
this.connect(this, "set", function(name, value){
if(value && (name == "orientation" || name == "customClass" || name == "cols")) {
this.layout();
}
});
},
startup: function() {
var children = this.getChildren();
if(children.length < 1) {
return;
}
this._initialized = true;
// Call startup on all child widgets
arrayUtil.forEach(children, function(child){
if(!child.started && !child._started) {
child.startup();
}
});
this.layout();
this.resize();
this.inherited(arguments)
},
resize: function(){
// summary:
// Resizes all children. This widget itself
// does not resize, as it takes up 100% of the
// available width.
arrayUtil.forEach(this.getChildren(), function(child){
if(typeof child.resize == "function") {
child.resize();
}
});
//this.inherited(arguments);
},
// summary:
// Lays out the child widgets.
layout: function(){
if(!this._initialized){
return;
}
var children = this.getChildren();
var childIds = {};
var _this = this;
function addCustomClass(node, type, count) {
if(_this.customClass != "") {
var lowerCaseClass = _this.customClass+ "-" + (type || node.tagName.toLowerCase());
domClass.add(node, lowerCaseClass);
if(arguments.length > 2) {
domClass.add(node, lowerCaseClass + "-" + count);
}
}
}
// Find any new children that have been added since the last layout() call
arrayUtil.forEach(this._children, lang.hitch(this, function(child){
childIds[child.id] = child;
}));
arrayUtil.forEach(children, lang.hitch(this, function(child, index){
if(!childIds[child.id]) {
//Create a parent container div within which new rows along with the responsive columns will be added and
//add this parent container div to the existing domNode
var containerDiv = this.containerDiv || domConstruct.create("div",{
"class":"container-fluid"
}, this.domNode);
this.containerDiv = containerDiv;
//Checks if a new row should be added or not; it is added if the number of rows made so far does not equal the row index
var remainingRows = child.rows - this.gridRows.length;
if(remainingRows > 0){
for (var i = 0; i < remainingRows; i++){
this.gridRows.push(domConstruct.create("div", {
"class":"row"
}, containerDiv))
}
}
/**
This code is used to creaste a seperate container div
That is given the column class col-md-6 col-lg-2 etc.
Not used for now. Can be added as an option later.
//In each row add responsive columns
var columnRow = domConstruct.create("div", {
"class": child.cols || ("col-md-" + this.gridCols),
"id": this.id + "-col-md-" + index
}, this.gridRows[child.rows - 1]);
domClass.add(columnRow, 'col')
columnRow.appendChild(child.domNode);
// Add pre-existing children to the start of the array
this._children.push(child);
**/
var childDomNode = child.domNode;
//col-md-6 etc classes are added to the childWidgets
//DOMNode directly instead of creating a seperate div.
domClass.add(childDomNode, child.cols || ("col-md-" + this.gridCols));
domClass.add(childDomNode, 'col')
if (this.gridRows[child.rows - 1]){
this.gridRows[child.rows - 1].appendChild(child.domNode);
}
// Add pre-existing children to the start of the array
this._children.push(child);
}
}));
// Refresh the layout of any child widgets, allowing them to resize
// to their new parent.
arrayUtil.forEach(children, function(child){
if(typeof child.layout == "function") {
child.layout();
}
});
this.resize();
this.inherited(arguments);
},
// summary:
// Destroys all the widgets inside this.containerNode,
// but not this widget itself
destroyDescendants: function(/*Boolean*/ preserveDom){
arrayUtil.forEach(this._children, function(child){ child.destroyRecursive(preserveDom); });
}
});
// summary:
// Properties to be set on children of TableContainer
ResponsiveGridContainer.ChildWidgetProperties = {
cols: '',
rows: 0
};
// Add to widget base for benefit of parser.
lang.extend(_WidgetBase, /*===== {} || =====*/ ResponsiveGridContainer.ChildWidgetProperties);
return ResponsiveGridContainer;
});