-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_CommonPropsMixin.js
93 lines (74 loc) · 2.25 KB
/
_CommonPropsMixin.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
define([
"dojo/_base/array",
"dojo/_base/declare",
"dojox/mobile/ListItem",
"dojo/dom-construct",
"dojo/dom-attr",
"dojo/_base/lang",
"dojox/mobile/ProgressIndicator"
], function(array, declare, ListItem, domConstruct, domAttr, lang, ProgressIndicator){
// module:
// dijitx/_CommonPropsMixin
return declare(null, {
_commonProps: {},
emptyMessage: '',
createListItem: function(/*Object*/item){
// summary:
// Creates a list item widget.
if (item){
item = lang.mixin(this._commonProps, item);
}
var props = {};
if(!item["label"]){
props["label"] = item[this.labelProperty];
}
for(var name in item){
//Incase item is a filterfunction
if (typeof item[name] == 'function'){
//Execute the filter function and value of item
//would be the return value of the function.
props[(this.itemMap && this.itemMap[name]) || name] = item[name](item)
}
else {
props[(this.itemMap && this.itemMap[name]) || name] = item[name];
}
}
var _listItem = new ListItem(props)
if(this.get('iconNew')) {
var _this = this;
setTimeout(function() {
var _dom = domConstruct.create('span')
domAttr.set(_dom, 'class', _this.get('iconNew'))
// console.log(_listItem.domNode.children[1])
domConstruct.place(_dom, _listItem.domNode.children[1], "first")
}, 100)
}
// console.log('image', _listItem)
return _listItem;
},
progressIndicator : new ProgressIndicator(),
refresh: function () {
//Hide the List and start the loading screen
this.domNode.style.visibility = "hidden";
//Attach the Progress Indicator (Golu) to the List's parent via DOM
this.getParent().domNode.appendChild(this.progressIndicator.domNode);
this.progressIndicator.start();
//Call the actual refresh function
this.inherited(arguments);
},
onComplete: function () {
var _this = this;
//Remove the Progress Indicator
this.progressIndicator.stop();
//Show the list again!
this.domNode.style.visibility = "visible";
this.inherited(arguments)
//If there are no children and an empty message is defined
if ((this.getChildren().length == 0) && this.emptyMessage) {
this.addChild(new ListItem({
label: _this.emptyMessage
}))
}
}
});
});