Skip to content

Commit c837ad1

Browse files
committed
Upgrade to delite 0.9.5:
* Function name changes for preRender(), render(), and postRender(). * Remove explicit calls to connectedCallback() and disconnectedCallback(). * Fix Combobox instantiation per connectedCallback() changes in delite.
1 parent 707b156 commit c837ad1

32 files changed

+62
-84
lines changed

Accordion.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ define([
117117

118118
_numOpenPanels: 0,
119119

120-
postRender: function () {
120+
afterInitializeRendering: function () {
121121
this._panelList = [];
122122

123123
// Declarative case (panels specified declaratively inside the declarative Accordion).

BoilerplateTextbox.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ define([
243243
* by boilerplate text.
244244
*
245245
* The editable areas and boilerplate text are children of this widget and must exist by the time
246-
* `render()` completes.
246+
* `initializeRendering()` completes.
247247
*/
248248
var BoilerplateTextbox = register("d-boilerplate-textbox", [HTMLElement, Container, FormValueWidget], {
249249
baseClass: "d-boilerplate-textbox",
@@ -255,7 +255,7 @@ define([
255255
this.on("delite-deactivated", this.deactivatedHandler.bind(this));
256256
},
257257

258-
postRender: function () {
258+
afterInitializeRendering: function () {
259259
this.on("input", this.nestedInputHandler.bind(this), this.containerNode);
260260
this.on("change", this.nestedChangeHandler.bind(this), this.containerNode);
261261
this.on("completed", this.completedHandler.bind(this), this.containerNode);

Button.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,15 @@ define([
9494
}.bind(this));
9595
},
9696

97-
preRender: function () {
97+
beforeInitializeRendering: function () {
9898
// Get label from innerHTML, and then clear it since we are to put the label in a <span>
9999
if (!this.label) {
100100
this.label = this.textContent.trim();
101101
this.innerHTML = "";
102102
}
103103
},
104104

105-
postRender: function () {
105+
afterInitializeRendering: function () {
106106
// Make SPACE/ENTER key cause button click event.
107107
a11yclick(this);
108108
},

Checkbox.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ define([
3333

3434
template: template,
3535

36-
postRender: function () {
36+
afterInitializeRendering: function () {
3737
this._lbl4 = null;
3838
this.on("click", this._inputClickHandler.bind(this), this.focusNode);
3939
this.on("change", this._inputClickHandler.bind(this), this.focusNode);

Combobox.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ define([
202202
};
203203
}),
204204

205-
postRender: function () {
205+
afterInitializeRendering: function () {
206206
if (this._focusOnRender) {
207207
this.focus();
208208
}

Combobox/ComboPopup.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ define([
3434
// Whether or not to display the list. Computed value.
3535
showList: false,
3636

37-
postRender: function () {
37+
afterInitializeRendering: function () {
3838
this._showOrHideList();
3939
},
4040

Combobox/ComboboxAPI.js

+11-8
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ define([
242242
}
243243
},
244244

245-
preRender: function () {
245+
beforeInitializeRendering: function () {
246246
// If the control seems to contain JSON, then parse it as our data source.
247247
if (!this.firstElementChild && this.textContent.trim()) {
248248
var data = JSON.parse("[" + this.textContent + "]");
@@ -276,8 +276,8 @@ define([
276276
};
277277
}),
278278

279-
// If no list specified, then create default one. Do it after arguments parsed but before
280-
// template instantiated (simply because ComboPopup template references {{list.id}}.
279+
// If no list specified, create default one. Do before template instantiated,
280+
// because ComboPopup template references {{list.id}}.
281281
connectedCallback: dcl.before(function () {
282282
if (!this.list) {
283283
var regexp = /^(?!_)(\w)+(?=Attr$|Func$)/;
@@ -286,11 +286,14 @@ define([
286286
};
287287

288288
// attributes
289-
this._parsedAttributes.filter(function (attr) {
290-
return regexp.test(attr.prop);
291-
}).forEach(function (item) {
292-
listArgs[item.prop] = item.value;
293-
}.bind(this));
289+
var attr, idx = 0;
290+
while ((attr = this.attributes[idx++])) {
291+
var name = attr.name.toLowerCase(); // note: will be lower case already except for IE9
292+
var parsedAttr = this.parseAttribute(name, attr.value);
293+
if (parsedAttr && regexp.test(parsedAttr.prop)) {
294+
listArgs[parsedAttr.prop] = parsedAttr.value;
295+
}
296+
}
294297

295298
// properties
296299
for (var prop in this) {

Combobox/ComboboxImplementation.js

-8
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,6 @@ define([
9090
"radio" : "multiple";
9191

9292
this._initHandlers();
93-
94-
// TODO
95-
// This is a workaround waiting for a proper mechanism (at the level
96-
// of delite/Store - delite/StoreMap) to allow a store-based widget
97-
// to delegate the store-related functions to a parent widget (delite#323).
98-
if (!this.list.attached) {
99-
this.list.connectedCallback();
100-
}
10193
}
10294
},
10395

DatePicker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ define([
123123
*/
124124
monthSelected: false,
125125

126-
postRender: function () {
126+
afterInitializeRendering: function () {
127127
// Create the DayPicker initially, and create MonthPicker and YearPicker on demand.
128128
this.dayPicker = new DayPicker({
129129
gridLabel: this.dayPickerLabel,

DatePicker/DayPicker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ define([
175175
}
176176
},
177177

178-
render: dcl.superCall(function (sup) {
178+
initializeRendering: dcl.superCall(function (sup) {
179179
return function () {
180180
sup.apply(this, arguments);
181181

DatePicker/MonthPicker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ define([
3636
*/
3737
month: -1,
3838

39-
render: function () {
39+
initializeRendering: function () {
4040
// Make 3x4 grid of abbreviated month names (Jan, Feb, Mar, ...).
4141
this.setAttribute("role", "grid");
4242
var row;

ProgressBar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ define([
9494

9595
template: template,
9696

97-
postRender: function () {
97+
afterInitializeRendering: function () {
9898
// TODO: move this code to the template
9999
this.setAttribute("aria-valuemin", 0);
100100
},

ProgressIndicator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ define([
134134

135135
template: template,
136136

137-
postRender: function () {
137+
afterInitializeRendering: function () {
138138
this.lineNodeList = this.linesNode.querySelectorAll("line");
139139
var symbolId = this.widgetId + "-symbol";
140140
this.symbolNode.id = symbolId;

ResizeHandle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ define([
6262
*/
6363
resizeClass: "",
6464

65-
postRender: function () {
65+
afterInitializeRendering: function () {
6666
this.on("pointerdown", this._beginSizing.bind(this));
6767
},
6868

ResponsiveColumns.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ define([
5959
*/
6060
screenClass: "",
6161

62-
preRender: function () {
62+
beforeInitializeRendering: function () {
6363
this._breakpoints = {};
6464
this._layouts = [];
6565
// A set of MediaQueryList

Select.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ define([
141141
this.value = this.valueNode.value;
142142
},
143143

144-
postRender: function () {
144+
afterInitializeRendering: function () {
145145
// To provide graphic feedback for focus, react to focus/blur events
146146
// on the underlying native select. The CSS class is used instead
147147
// of the focus pseudo-class because the browsers give the focus

SidePane.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ define([
239239
resolve();
240240
},
241241

242-
preRender: function () {
242+
beforeInitializeRendering: function () {
243243
this._transitionTiming = { "default": 0, "chrome": 20, "ios": 20, "android": 100, "ff": 100 };
244244
for (var o in this._transitionTiming) {
245245
if (has(o) && this._timing < this._transitionTiming[o]) {
@@ -248,7 +248,7 @@ define([
248248
}
249249
},
250250

251-
postRender: function () {
251+
afterInitializeRendering: function () {
252252
this._resetInteractions();
253253
setVisibility(this, false);
254254
},

Slider.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ define([
204204

205205
template: template,
206206

207-
render: dcl.superCall(function (sup) {
207+
initializeRendering: dcl.superCall(function (sup) {
208208
return function () {
209209
sup.call(this);
210210
if (!this.valueNode.parentNode) {
@@ -378,7 +378,7 @@ define([
378378
this.on("keyup", this.keyUpHandler.bind(this));
379379
},
380380

381-
postRender: function () {
381+
afterInitializeRendering: function () {
382382
if (this.valueNode.value) { // INPUT value
383383
// browser back button or value coded on INPUT
384384
// the valueNode value has precedence over the widget markup value

StarRating.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ define([
6161
_hovering: false,
6262
_otherEventsHandles: [],
6363

64-
render: function () {
64+
initializeRendering: function () {
6565
this.focusNode = this.ownerDocument.createElement("div");
6666
this.appendChild(this.focusNode);
6767
// init WAI-ARIA attributes

SwapView.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ define([
5252
this.on("keydown", this._keyDownHandler.bind(this));
5353
},
5454

55-
render: function () {
55+
initializeRendering: function () {
5656
// we want to inherit from ViewStack's CSS (including transitions).
5757
this.addClass("d-view-stack");
5858
},

Switch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ define([
3939

4040
template: template,
4141

42-
postRender: function () {
42+
afterInitializeRendering: function () {
4343
this.on("pointerdown", this._pointerDownHandler.bind(this), this._knobGlassNode);
4444
this.on("click", this._clickPreventer.bind(this), this._knobGlassNode);
4545
},

ToasterMessage.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,6 @@ define([
463463
} else {
464464
wrapper.appendChild(this);
465465
}
466-
this.connectedCallback();
467466

468467
// starting timer
469468
if (this.isExpirable()) {
@@ -538,7 +537,7 @@ define([
538537
this._isRemoved = true;
539538
},
540539
template: template,
541-
postRender: function () {
540+
afterInitializeRendering: function () {
542541
// TODO this should be done only if this.isDismissible()
543542
// but at this stage this.isDismissible() ouput is wrong because members have not been initialized yet
544543

Toggle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ define([
3333
this.checked = this._initState;
3434
},
3535

36-
postRender: function () {
36+
afterInitializeRendering: function () {
3737
// CssState does not handle focused property any more
3838
this.on("focus", function () {
3939
this.addClass("d-focused");

ViewStack.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ define([
166166
};
167167
}),
168168

169-
postRender: function () {
169+
afterInitializeRendering: function () {
170170
this._setChildrenVisibility();
171171
},
172172

docs/ScrollableContainer.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ src="http://jsfiddle.net/ibmjs/RuqVK/embedded/result,js,html">
8787
By default, the scrolling capabilities are added to the widget's root node
8888
(that is, the widget itself). A sublcass of `deliteful/ScrollableContainer`
8989
can chose the node thanks to the property `scrollableNode`.
90-
This property must be set by the subclass at latest in its `render()`
90+
This property must be set by the subclass at latest in its `initializeRendering()`
9191
method.
9292

9393
### Scroll Direction
@@ -130,7 +130,7 @@ responsive manner. For details, see [`Interactions in delite/Scrollable`](/delit
130130
By default, the scrolling capabilities are added to the widget's root node
131131
(that is, the widget itself). A sublcass of `deliteful/ScrollableContainer`
132132
can chose the node thanks to the property `scrollableNode`.
133-
This property must be set by the subclass at latest in its `render()`
133+
This property must be set by the subclass at latest in its `initializeRendering()`
134134
method.
135135

136136
*First use-case: creating a widget extending `deliteful/ScrollableContainer`*
@@ -140,7 +140,7 @@ define(["delite/register", "deliteful/ScrollableContainer", ...],
140140
function (register, Scrollable, ...) {
141141
return register("mywidget", [HTMLElement, ScrollableContainer, ...], {
142142
...
143-
render: dcl.superCall(function (sup) {
143+
initializeRendering: dcl.superCall(function (sup) {
144144
return function () {
145145
// Create a child element:
146146
var myScrollableDiv = document.createElement("div");
@@ -168,7 +168,7 @@ define(["delite/register", "deliteful/ScrollableContainer", ...],
168168
// nor deliteful/ScrollableContainer
169169
return register("mywidget", [HTMLElement, ...], {
170170
...
171-
render: dcl.superCall(function (sup) {
171+
initializeRendering: dcl.superCall(function (sup) {
172172
return function () {
173173
var scrollableNode =
174174
// or your own scrollable widget

list/List.js

+1-8
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ define([
415415
}
416416
},
417417

418-
postRender: function () {
418+
afterInitializeRendering: function () {
419419
// moving down to the containerNode any aria attribute that has been set to the root node.
420420
for (var i = 0; i < this.attributes.length; i++) {
421421
if (/^aria-/.test(this.attributes[i].name)) {
@@ -683,10 +683,6 @@ define([
683683
this._getLastRenderer().item));
684684
}
685685
}
686-
// start renderers
687-
this.findCustomElements(this.containerNode).forEach(function (w) {
688-
w.connectedCallback();
689-
});
690686
},
691687

692688
/**
@@ -736,17 +732,14 @@ define([
736732
if (spec.addCategoryAfter) {
737733
let categoryRenderer = this._createCategoryRenderer(spec.nodeRef.item);
738734
this.containerNode.insertBefore(categoryRenderer, spec.nodeRef);
739-
categoryRenderer.connectedCallback();
740735
}
741736
} else {
742737
this.containerNode.appendChild(renderer);
743738
}
744739
if (spec.addCategoryBefore) {
745740
let categoryRenderer = this._createCategoryRenderer(renderer.item);
746741
this.containerNode.insertBefore(categoryRenderer, renderer);
747-
categoryRenderer.connectedCallback();
748742
}
749-
renderer.connectedCallback();
750743
},
751744

752745
/**

0 commit comments

Comments
 (0)