-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathviewDirective.ts
582 lines (522 loc) · 20 KB
/
viewDirective.ts
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
/** @publicapi @module directives */ /** */
import {
$QLike,
Category,
extend,
filter,
HookRegOptions,
isDefined,
isFunction,
isString,
kebobString,
maxLength,
noop,
Obj,
Param,
parse,
PathNode,
ResolveContext,
StateDeclaration,
tail,
trace,
Transition,
TransitionService,
TypedMap,
UIViewPortalRenderCommand,
unnestR,
ViewConfig,
ViewContext,
ViewService,
} from '@uirouter/core';
import { UIViewPortalRegistration } from '@uirouter/core/lib/view/interface';
import { IAugmentedJQuery, IInterpolateService, IScope, ITranscludeFunction } from 'angular';
import { ng as angular } from '../angular';
import { Ng1Controller, Ng1StateDeclaration } from '../interface';
import { getLocals } from '../services';
import { Ng1ViewConfig } from '../statebuilders/views';
import { ng1_directive } from './stateDirectives';
/** @hidden */
export type UIViewData = {
$renderCommand: UIViewPortalRenderCommand;
$cfg: Ng1ViewConfig; // for backwards compat
$uiView: ActiveUIView; // for backwards compat
};
/** @hidden */
export type UIViewAnimData = {
$animEnter: Promise<any>;
$animLeave: Promise<any>;
$$animLeave: { resolve: () => any }; // "deferred"
};
/**
* `ui-view`: A viewport directive which is filled in by a view from the active state.
*
* ### Attributes
*
* - `name`: (Optional) A view name.
* The name should be unique amongst the other views in the same state.
* You can have views of the same name that live in different states.
* The ui-view can be targeted in a View using the name ([[Ng1StateDeclaration.views]]).
*
* - `autoscroll`: an expression. When it evaluates to true, the `ui-view` will be scrolled into view when it is activated.
* Uses [[$uiViewScroll]] to do the scrolling.
*
* - `onload`: Expression to evaluate whenever the view updates.
*
* #### Example:
* A view can be unnamed or named.
* ```html
* <!-- Unnamed -->
* <div ui-view></div>
*
* <!-- Named -->
* <div ui-view="viewName"></div>
*
* <!-- Named (different style) -->
* <ui-view name="viewName"></ui-view>
* ```
*
* You can only have one unnamed view within any template (or root html). If you are only using a
* single view and it is unnamed then you can populate it like so:
*
* ```html
* <div ui-view></div>
* $stateProvider.state("home", {
* template: "<h1>HELLO!</h1>"
* })
* ```
*
* The above is a convenient shortcut equivalent to specifying your view explicitly with the
* [[Ng1StateDeclaration.views]] config property, by name, in this case an empty name:
*
* ```js
* $stateProvider.state("home", {
* views: {
* "": {
* template: "<h1>HELLO!</h1>"
* }
* }
* })
* ```
*
* But typically you'll only use the views property if you name your view or have more than one view
* in the same template. There's not really a compelling reason to name a view if its the only one,
* but you could if you wanted, like so:
*
* ```html
* <div ui-view="main"></div>
* ```
*
* ```js
* $stateProvider.state("home", {
* views: {
* "main": {
* template: "<h1>HELLO!</h1>"
* }
* }
* })
* ```
*
* Really though, you'll use views to set up multiple views:
*
* ```html
* <div ui-view></div>
* <div ui-view="chart"></div>
* <div ui-view="data"></div>
* ```
*
* ```js
* $stateProvider.state("home", {
* views: {
* "": {
* template: "<h1>HELLO!</h1>"
* },
* "chart": {
* template: "<chart_thing/>"
* },
* "data": {
* template: "<data_thing/>"
* }
* }
* })
* ```
*
* #### Examples for `autoscroll`:
* ```html
* <!-- If autoscroll present with no expression,
* then scroll ui-view into view -->
* <ui-view autoscroll/>
*
* <!-- If autoscroll present with valid expression,
* then scroll ui-view into view if expression evaluates to true -->
* <ui-view autoscroll='true'/>
* <ui-view autoscroll='false'/>
* <ui-view autoscroll='scopeVariable'/>
* ```
*
* Resolve data:
*
* The resolved data from the state's `resolve` block is placed on the scope as `$resolve` (this
* can be customized using [[Ng1ViewDeclaration.resolveAs]]). This can be then accessed from the template.
*
* Note that when `controllerAs` is being used, `$resolve` is set on the controller instance *after* the
* controller is instantiated. The `$onInit()` hook can be used to perform initialization code which
* depends on `$resolve` data.
*
* #### Example:
* ```js
* $stateProvider.state('home', {
* template: '<my-component user="$resolve.user"></my-component>',
* resolve: {
* user: function(UserService) { return UserService.fetchUser(); }
* }
* });
* ```
*/
export let uiView: ng1_directive;
// No longer exported from @uirouter/core
// for backwards compat only
export interface ActiveUIView {
/** type of framework, e.g., "ng1" or "ng2" */
$type: string;
/** An auto-incremented id */
id: number | string;
/** The ui-view short name */
name: string;
/** The ui-view's fully qualified name */
fqn: string;
/** The ViewConfig that is currently loaded into the ui-view */
config: ViewConfig;
/** The state context in which the ui-view tag was created. */
creationContext: ViewContext;
/** A callback that should apply a ViewConfig (or clear the ui-view, if config is undefined) */
configUpdated: (config: ViewConfig) => void;
}
// eslint-disable-next-line prefer-const
uiView = [
'$view',
'$animate',
'$uiViewScroll',
'$interpolate',
'$q',
function $ViewDirective(
$view: ViewService,
$animate: any,
$uiViewScroll: any,
$interpolate: IInterpolateService,
$q: $QLike
) {
function getRenderer() {
return {
enter: function (element: JQuery, target: any, cb: Function) {
if (angular.version.minor > 2) {
$animate.enter(element, null, target).then(cb);
} else {
$animate.enter(element, null, target, cb);
}
},
leave: function (element: JQuery, cb: Function) {
if (angular.version.minor > 2) {
$animate.leave(element).then(cb);
} else {
$animate.leave(element, cb);
}
},
};
}
const rootData = {
$cfg: { viewDecl: { $context: $view._pluginapi._rootViewContext() } },
$uiView: {},
};
const directive = {
restrict: 'ECA',
terminal: true,
priority: 400,
transclude: 'element',
compile: function (tElement: JQuery, tAttrs: Obj, $transclude: ITranscludeFunction) {
return function (scope: IScope, $element: IAugmentedJQuery, attrs: Obj) {
const onloadExp = attrs['onload'] || '',
autoScrollExp = attrs['autoscroll'],
renderer = getRenderer(),
inherited = $element.inheritedData('$uiView') || rootData,
name = $interpolate(attrs['uiView'] || attrs['name'] || '')(scope) || '$default';
let previousEl: JQuery, currentEl: JQuery, currentScope: IScope;
const activeUIView: ActiveUIView = {
$type: 'ng1',
id: null, // filled in later
name: name, // ui-view name (<div ui-view="name"></div>
fqn: inherited.$uiView.fqn ? inherited.$uiView.fqn + '.' + name : name, // fully qualified name, describes location in DOM
config: null, // The ViewConfig loaded (from a state.views definition)
configUpdated: undefined, // unused in core
creationContext: undefined, // unused in core
// configUpdated: configUpdatedCallback, // Called when the matching ViewConfig changes
// get creationContext() {
// The context in which this ui-view "tag" was created
// const fromParentTagConfig = parse('$cfg.viewDecl.$context')(inherited);
// Allow <ui-view name="foo"><ui-view name="bar"></ui-view></ui-view>
// See https://github.com/angular-ui/ui-router/issues/3355
// const fromParentTag = parse('$uiView.creationContext')(inherited);
// return fromParentTagConfig || fromParentTag;
// },
};
const uiViewId = $view._pluginapi._registerView(
'ng1',
inherited.$uiView.id,
name,
renderContentIntoUIViewPortal
);
const traceUiViewEvent = (message: string, extra?: string) =>
$view._pluginapi._traceUIViewEvent(uiViewId, message, extra);
traceUiViewEvent('Linking');
scope.$on('$destroy', function () {
traceUiViewEvent('Destroying/Unregistering');
$view._pluginapi._deregisterView(uiViewId);
});
// backwards compat
$element.data('$uiView', { $uiView: activeUIView });
function cleanupLastView() {
if (previousEl) {
traceUiViewEvent('Removing (previous) el', previousEl.data('$uiView'));
previousEl.remove();
previousEl = null;
}
if (currentScope) {
traceUiViewEvent('Destroying scope');
currentScope.$destroy();
currentScope = null;
}
if (currentEl) {
const _viewData = currentEl.data('$uiViewAnim');
traceUiViewEvent('Animate out', _viewData);
renderer.leave(currentEl, function () {
_viewData.$$animLeave.resolve();
previousEl = null;
});
previousEl = currentEl;
currentEl = null;
}
}
function renderContentIntoUIViewPortal(renderCommand: UIViewPortalRenderCommand) {
const renderCmdViewId = renderCommand.uiViewPortalRegistration.id;
if (isString(activeUIView.id) && activeUIView.id !== renderCmdViewId) {
throw new Error(
`Received a render command for wrong UIView. Render command id: ${renderCmdViewId}, but this UIView id: ${activeUIView.id}`
);
}
activeUIView.id = renderCmdViewId;
const viewConfig =
renderCommand.portalContentType === 'RENDER_ROUTED_VIEW'
? (renderCommand.uiViewPortalRegistration.viewConfig as Ng1ViewConfig)
: undefined;
const newScope = scope.$new();
const animEnter = $q.defer(),
animLeave = $q.defer();
const $uiViewData: UIViewData = {
$renderCommand: renderCommand,
$cfg: viewConfig,
$uiView: activeUIView,
};
const $uiViewAnim: UIViewAnimData = {
$animEnter: animEnter.promise,
$animLeave: animLeave.promise,
$$animLeave: animLeave,
};
/**
* @ngdoc event
* @name ui.router.state.directive:ui-view#$viewContentLoading
* @eventOf ui.router.state.directive:ui-view
* @eventType emits on ui-view directive scope
* @description
*
* Fired once the view **begins loading**, *before* the DOM is rendered.
*
* @param {Object} event Event object.
* @param {string} viewName Name of the view.
*/
newScope.$emit('$viewContentLoading', name);
const cloned = $transclude(newScope, function (clone) {
clone.data('$uiViewAnim', $uiViewAnim);
clone.data('$uiView', $uiViewData);
renderer.enter(clone, $element, function onUIViewEnter() {
animEnter.resolve();
if (currentScope) currentScope.$emit('$viewContentAnimationEnded');
if ((isDefined(autoScrollExp) && !autoScrollExp) || scope.$eval(autoScrollExp)) {
$uiViewScroll(clone);
}
});
cleanupLastView();
});
currentEl = cloned;
currentScope = newScope;
/**
* @ngdoc event
* @name ui.router.state.directive:ui-view#$viewContentLoaded
* @eventOf ui.router.state.directive:ui-view
* @eventType emits on ui-view directive scope
* @description *
* Fired once the view is **loaded**, *after* the DOM is rendered.
*
* @param {Object} event Event object.
*/
currentScope.$emit('$viewContentLoaded', viewConfig);
currentScope.$eval(onloadExp);
}
};
},
};
return directive;
},
];
$ViewDirectiveFill.$inject = ['$compile', '$controller', '$transitions', '$view', '$q'];
/** @hidden */
function $ViewDirectiveFill(
$compile: angular.ICompileService,
$controller: angular.IControllerService,
$transitions: TransitionService,
$view: ViewService,
$q: angular.IQService
) {
const getControllerAs = parse('viewDecl.controllerAs');
const getResolveAs = parse('viewDecl.resolveAs');
return {
restrict: 'ECA',
priority: -400,
compile: function (tElement: JQuery) {
const initial = tElement.html();
tElement.empty();
return function (scope: IScope, $element: JQuery) {
const data: UIViewData = $element.data('$uiView') || {};
const { $renderCommand, $uiView } = data;
if (!$renderCommand || $renderCommand.portalContentType === 'RENDER_DEFAULT_CONTENT') {
$element.html(initial);
$compile($element.contents() as any)(scope);
return;
} else if ($renderCommand.portalContentType === 'RENDER_INTEROP_DIV') {
$element.html('<div></div>');
$renderCommand.giveDiv($element.find('div')[0]);
return;
}
const { uiViewPortalRegistration } = $renderCommand;
const { viewConfig } = uiViewPortalRegistration;
const cfg: Ng1ViewConfig = viewConfig || ({ viewDecl: {}, getTemplate: noop } as any);
const resolveCtx: ResolveContext = cfg.path && new ResolveContext(cfg.path);
$element.html(cfg.getTemplate($element, resolveCtx) || initial);
if (trace.enabled(Category.UIVIEW)) {
$view._pluginapi._traceUIViewEvent($uiView.id as string, 'Fill', ` with: ${maxLength(200, $element.html())}`);
}
const link = $compile($element.contents() as any);
const controller = cfg.controller as angular.IControllerService;
const controllerAs: string = getControllerAs(cfg);
const resolveAs: string = getResolveAs(cfg);
const locals = resolveCtx && getLocals(resolveCtx);
scope[resolveAs] = locals;
if (controller) {
const controllerInstance = <Ng1Controller>(
$controller(controller, extend({}, locals, { $scope: scope, $element: $element }))
);
if (controllerAs) {
scope[controllerAs] = controllerInstance;
scope[controllerAs][resolveAs] = locals;
}
// TODO: Use $view service as a central point for registering component-level hooks
// Then, when a component is created, tell the $view service, so it can invoke hooks
// $view.componentLoaded(controllerInstance, { $scope: scope, $element: $element });
// scope.$on('$destroy', () => $view.componentUnloaded(controllerInstance, { $scope: scope, $element: $element }));
$element.data('$ngControllerController', controllerInstance);
$element.children().data('$ngControllerController', controllerInstance);
registerControllerCallbacks($q, $transitions, controllerInstance, scope, cfg);
}
// Wait for the component to appear in the DOM
if (isString(cfg.component)) {
const kebobName = kebobString(cfg.component);
const tagRegexp = new RegExp(`^(x-|data-)?${kebobName}$`, 'i');
const getComponentController = () => {
const directiveEl = [].slice
.call($element[0].children)
.filter((el: Element) => el && el.tagName && tagRegexp.exec(el.tagName));
return directiveEl && angular.element(directiveEl).data(`$${cfg.component}Controller`);
};
const deregisterWatch = scope.$watch(getComponentController, function (ctrlInstance) {
if (!ctrlInstance) return;
registerControllerCallbacks($q, $transitions, ctrlInstance, scope, cfg);
deregisterWatch();
});
}
link(scope);
};
},
};
}
/** @hidden */
const hasComponentImpl = typeof (angular as any).module('ui.router')['component'] === 'function';
/** @hidden incrementing id */
let _uiCanExitId = 0;
/** @hidden TODO: move these callbacks to $view and/or `/hooks/components.ts` or something */
function registerControllerCallbacks(
$q: angular.IQService,
$transitions: TransitionService,
controllerInstance: Ng1Controller,
$scope: IScope,
cfg: Ng1ViewConfig
) {
// Call $onInit() ASAP
if (
isFunction(controllerInstance.$onInit) &&
!((cfg.viewDecl.component || cfg.viewDecl.componentProvider) && hasComponentImpl)
) {
controllerInstance.$onInit();
}
const viewState: Ng1StateDeclaration = tail(cfg.path).state.self;
const hookOptions: HookRegOptions = { bind: controllerInstance };
// Add component-level hook for onUiParamsChanged
if (isFunction(controllerInstance.uiOnParamsChanged)) {
const resolveContext: ResolveContext = new ResolveContext(cfg.path);
const viewCreationTrans = resolveContext.getResolvable('$transition$').data;
// Fire callback on any successful transition
const paramsUpdated = ($transition$: Transition) => {
// Exit early if the $transition$ is the same as the view was created within.
// Exit early if the $transition$ will exit the state the view is for.
if ($transition$ === viewCreationTrans || $transition$.exiting().indexOf(viewState as StateDeclaration) !== -1)
return;
const toParams = $transition$.params('to') as TypedMap<any>;
const fromParams = $transition$.params<TypedMap<any>>('from') as TypedMap<any>;
const getNodeSchema = (node: PathNode) => node.paramSchema;
const toSchema: Param[] = $transition$.treeChanges('to').map(getNodeSchema).reduce(unnestR, []);
const fromSchema: Param[] = $transition$.treeChanges('from').map(getNodeSchema).reduce(unnestR, []);
// Find the to params that have different values than the from params
const changedToParams = toSchema.filter((param: Param) => {
const idx = fromSchema.indexOf(param);
return idx === -1 || !fromSchema[idx].type.equals(toParams[param.id], fromParams[param.id]);
});
// Only trigger callback if a to param has changed or is new
if (changedToParams.length) {
const changedKeys: string[] = changedToParams.map((x) => x.id);
// Filter the params to only changed/new to params. `$transition$.params()` may be used to get all params.
const newValues = filter(toParams, (val, key) => changedKeys.indexOf(key) !== -1);
controllerInstance.uiOnParamsChanged(newValues, $transition$);
}
};
$scope.$on('$destroy', <any>$transitions.onSuccess({}, paramsUpdated, hookOptions));
}
// Add component-level hook for uiCanExit
if (isFunction(controllerInstance.uiCanExit)) {
const id = _uiCanExitId++;
const cacheProp = '_uiCanExitIds';
// Returns true if a redirect transition already answered truthy
const prevTruthyAnswer = (trans: Transition) =>
!!trans && ((trans[cacheProp] && trans[cacheProp][id] === true) || prevTruthyAnswer(trans.redirectedFrom()));
// If a user answered yes, but the transition was later redirected, don't also ask for the new redirect transition
const wrappedHook = (trans: Transition) => {
let promise;
const ids = (trans[cacheProp] = trans[cacheProp] || {});
if (!prevTruthyAnswer(trans)) {
promise = $q.when(controllerInstance.uiCanExit(trans));
promise.then((val) => (ids[id] = val !== false));
}
return promise;
};
const criteria = { exiting: viewState.name };
$scope.$on('$destroy', <any>$transitions.onBefore(criteria, wrappedHook, hookOptions));
}
}
angular.module('ui.router.state').directive('uiView', <any>uiView);
angular.module('ui.router.state').directive('uiView', <any>$ViewDirectiveFill);