-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathangular-winjs.js
402 lines (379 loc) · 14.5 KB
/
angular-winjs.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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
(function (global) {
"use strict;"
var module = angular.module("winjs", []);
module.run(function ($rootScope) {
var Scope = Object.getPrototypeOf($rootScope);
var Scope$eval= Scope.$eval;
Scope.$eval = function (expr, locals) {
var that = this;
return MSApp.execUnsafeLocalFunction(function () {
return Scope$eval.call(this, expr, locals);
});
};
})
function getTemplate(elementType, transclude) {
var template = "";
if (elementType) {
if (transclude) {
template = "<" + elementType + " ng-transclude='true'></" + elementType + ">";
} else {
template = "<" + elementType + "></" + elementType + ">";
}
}
return template;
}
function getBindableApi(ctor) {
var properties = [];
var events = [];
var prototype = ctor.prototype;
do {
for (var key in prototype) {
var pd = Object.getOwnPropertyDescriptor(prototype, key);
if (pd && pd.get && pd.set) {
if (key[0] === "o" && key[1] === "n") {
events.push(key);
} else if (key[0] !== "_") {
properties.push(key);
}
}
}
} while (prototype = Object.getPrototypeOf(prototype));
var api = {};
properties.forEach(function (key) {
api[key] = "=?";
});
events.forEach(function (key) {
api[key] = "&";
});
return api;
}
function createOptions(processors, $scope, keys, getControl) {
processors = processors || {};
function update(key, $new, $old) {
if ($new !== $old) {
getControl()[key] = (processors[key] || angular.identity)($new, $old, getControl);
}
}
return keys.reduce(function (options, key) {
var value = $scope[key];
if (value) {
options[key] = (processors[key] || angular.identity)(value, null, getControl);
}
$scope.$watch(key, function ($new, $old) {
update(key, $new, $old);
});
return options;
}, {});
}
function controlDirectiveModel(ctor, createOptions, preLink, postLink, elementType, transclude) {
var scopeSpec = getBindableApi(ctor);
var scopeSpecKeys = Object.keys(scopeSpec);
var template = getTemplate(elementType, transclude);
return {
restrict: "E", // @TODO, consider AE
transclude: !!transclude,
template: template,
replace: !!elementType,
scope: scopeSpec,
link: function ($scope, elements, attrs) {
var element = elements[0];
var control;
var options = createOptions($scope, scopeSpecKeys, function () { return control; });
preLink.forEach(function (f) { f($scope, options); });
control = new ctor(element, options);
postLink.forEach(function (f) { f($scope, control); });
$scope.$on("$destroy", function () {
if (control.dispose) {
control.dispose();
}
});
return control;
},
};
}
// spec is an object which has:
// {
// elementType?: string, /* default is DIV */
// transclude?: boolean, /* default is false */
// optionsProcessors?: { name: (value) => value }, /* record of funcs by name */
// model?: [(model) => model], /* default is [] */
// preLink?: [($scope, options) => void], /* default is [] */
// postLink?: [($scope, control) => void], /* default is [] */
// }
function directive(modelGenerator, name, spec) {
var shortName = "win" + name.substr(name.lastIndexOf(".") + 1);
module.directive(shortName, function () {
var ctor = WinJS.Utilities.getMember(name, global);
var model = modelGenerator(
ctor,
createOptions.bind(null, spec.optionsProcessors || {}),
spec.preLink || [],
spec.postLink || [],
spec.elementType || "DIV",
spec.transclude || false
);
(spec.model || []).forEach(function (transform) {
model = transform(model);
});
return model;
})
}
function eventAction(eventName, action) {
return function ($scope, control) {
control.addEventListener(eventName, function () {
$scope.$apply(function () {
action($scope, control);
});
});
};
}
function eventPropertySet(eventName, property) {
return eventAction(eventName, function ($scope, control) {
$scope[property] = control[property];
});
}
function anchorUpdate($new, $old, getControl) {
$new = typeof $new === "string" ? document.querySelector($new) : $new;
$old = typeof $old === "string" ? document.querySelector($old) : $old;
if ($old && $old._anchorClick) {
$old.removeEventListener("click", $old._anchorClick);
$old._anchorClick = null;
}
if ($new && !$new._anchorClick) {
$new._anchorClick = function () { getControl().show(); };
$new.addEventListener("click", $new._anchorClick);
}
return $new;
}
function anchorWireup($scope, control) {
if (control.anchor && control.anchor instanceof HTMLElement && !control.anchor._anchorClick) {
control.anchor._anchorClick = function () { control.show(); };
control.anchor.addEventListener("click", control.anchor._anchorClick);
}
}
function bindingList($new, $old, getControl) {
if ($new && Array.isArray($new)) {
$new = new WinJS.Binding.List($new, { proxy: true });
}
return $new;
}
function dataSource($new, $old, getControl) {
$new = bindingList($new);
if ($new && $new.dataSource) {
$new = $new.dataSource;
}
return $new;
}
function controller(contentProperties) {
return function (model) {
contentProperties.forEach(function (property) {
model.scope[property] = "=?";
});
model.controller = function ($scope) {
var that = this;
contentProperties.forEach(function (property) {
var _value;
Object.defineProperty(that, property, {
get: function () { return $scope[property]; },
set: function (value) { $scope[property] = value; }
});
})
};
return model;
};
}
var controls = {
"WinJS.UI.AppBar": {
transclude: true
},
"WinJS.UI.AppBarCommand": {
elementType: "BUTTON",
transclude: true,
},
"WinJS.UI.BackButton": {
elementType: "BUTTON",
},
"WinJS.UI.DatePicker": {
postLink: [eventPropertySet("change", "current")],
},
"WinJS.UI.FlipView": {
model: [controller(["itemTemplate"])],
optionsProcessors: {
itemDataSource: dataSource,
},
transclude: true,
},
"WinJS.UI.Flyout": {
optionsProcessors: { anchor: anchorUpdate, },
postLink: [anchorWireup],
transclude: true,
},
"WinJS.UI.Hub": {
model: [controller(["headerTemplate"])],
postLink: [eventPropertySet("loadingstatechanged", "loadingState")],
transclude: true,
},
"WinJS.UI.HubSection": {
transclude: true
},
"WinJS.UI.ItemContainer": {
postLink: [eventPropertySet("selectionchanged", "selection")],
transclude: true,
},
"WinJS.UI.ListView": {
// @TODO, can we get things like selection bound?
model: [controller(["itemTemplate", "groupHeaderTemplate", "layout"])],
optionsProcessors: {
itemDataSource: dataSource,
groupDataSource: dataSource,
},
transclude: true,
},
"WinJS.UI.Menu": {
optionsProcessors: { anchor: anchorUpdate, },
postLink: [anchorWireup],
transclude: true,
},
"WinJS.UI.MenuCommand": {
elementType: "BUTTON",
},
"WinJS.UI.NavBar": {
transclude: true
},
"WinJS.UI.NavBarContainer": {
model: [controller(["template"])],
optionsProcessors: {
data: bindingList,
},
transclude: true,
},
"WinJS.UI.NavBarCommand": {
transclude: true
},
"WinJS.UI.Rating": {
postLink: [eventPropertySet("change", "userRating")],
},
"WinJS.UI.SearchBox": {
postLink: [eventPropertySet("querychanged", "queryText")],
},
"WinJS.UI.SemanticZoom": {
transclude: true,
},
"WinJS.UI.TimePicker": {
postLink: [eventPropertySet("change", "current")],
},
"WinJS.UI.ToggleSwitch": {
postLink: [eventPropertySet("change", "checked")],
},
"WinJS.UI.Tooltip": {
model: [controller(["contentElement"])],
transclude: true,
},
};
Object.keys(controls).forEach(function (key) {
directive(controlDirectiveModel, key, controls[key]);
});
// Tooltop is a little odd because you have to be able to specify both the element
// which has a tooltip (the content) and the tooltip's content itself. We specify
// a special directive <win-tooltip-content /> which represents the latter.
function tooltipContentModel() {
return {
require: "^winTooltip",
restrict: "E",
transclude: true,
link: function ($scope, elements, attrs, tooltip) {
tooltip.contentElement = elements[0].firstElementChild;
},
template: "\
<div style='display:none'>\
<div ng-transclude='true'></div>\
</div>",
replace: true,
};
}
module.directive("winTooltipContent", tooltipContentModel);
// Templates are needed for the ListView and FlipView, this makes directives which
// can be specified within a ListView or FlipView as item or group header templates
// which themselves simply contain angular bindings.
function templateDirective(name, parents) {
module.directive("win" + name[0].toUpperCase() + name.substr(1), function () {
return {
require: parents.map(function (item) { return "^?" + item; }),
restrict: "E",
compile: function (tElement, tAttrs, transclude) {
var rootElement = document.createElement("div");
Object.keys(tAttrs).forEach(function (key) {
if (key[0] !== '$') {
rootElement.setAttribute(key, tAttrs[key]);
}
});
var immediateToken;
return function ($scope, elements, attrs, parents) {
var parent = parents.reduce(function (found, item) { return found || item; });
parent[name] = function (itemPromise) {
return itemPromise.then(function (item) {
var itemScope = $scope.$new();
itemScope.item = item;
var result = rootElement.cloneNode(false);
transclude(itemScope, function (clonedElement) {
for (var i = 0, len = clonedElement.length; i < len; i++) {
result.appendChild(clonedElement[i]);
}
});
WinJS.Utilities.markDisposable(result, function () {
itemScope.$destroy();
});
immediateToken = immediateToken || setImmediate(function () {
immediateToken = null;
itemScope.$apply();
});
return result;
})
};
};
},
replace: true,
transclude: true,
};
});
}
templateDirective("itemTemplate", ["winListView", "winFlipView"]);
templateDirective("groupHeaderTemplate", ["winListView"]);
// @TODO, make these work
//templateDirective("headerTemplate", ["winHub"]);
//templateDirective("template", ["winNavBarContainer"]);
function layoutDirectiveModel(ctor, createOptions, preLink, postLink) {
var scopeSpec = getBindableApi(ctor);
var scopeSpecKeys = Object.keys(scopeSpec);
return {
require: "^winListView",
restrict: "E",
transclude: false,
replace: true,
template: "",
scope: scopeSpec,
link: function ($scope, elements, attrs, listView) {
var layout;
var options = createOptions($scope, scopeSpecKeys, function () { return layout; });
preLink.forEach(function (f) { f($scope, options); });
layout = new ctor(options);
postLink.forEach(function (f) { f($scope, layout); });
listView.layout = layout;
return layout;
}
}
}
var layouts = {
"WinJS.UI.CellSpanningLayout": {},
"WinJS.UI.GridLayout": {},
"WinJS.UI.ListLayout": {}
};
Object.keys(layouts).forEach(function (key) {
directive(layoutDirectiveModel, key, layouts[key]);
});
// This guy is a real odd-ball, you really need to coordinate with the settings
// event which fires, I need to think more about this.
WinJS.UI.SettingsFlyout;
// Do not support explicitly, use ng-repeat
//WinJS.UI.Repeater;
}(this));