url_handling_strategy.js
2.06 KB
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
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* \@whatItDoes Provides a way to migrate Angular 1 applications to Angular 2.
*
* \@experimental
* @abstract
*/
export var UrlHandlingStrategy = (function () {
function UrlHandlingStrategy() {
}
/**
* Tells the router if this URL should be processed.
*
* When it returns true, the router will execute the regular navigation.
* When it returns false, the router will set the router state to an empty state.
* As a result, all the active components will be destroyed.
*
* @abstract
* @param {?} url
* @return {?}
*/
UrlHandlingStrategy.prototype.shouldProcessUrl = function (url) { };
/**
* Extracts the part of the URL that should be handled by the router.
* The rest of the URL will remain untouched.
* @abstract
* @param {?} url
* @return {?}
*/
UrlHandlingStrategy.prototype.extract = function (url) { };
/**
* Merges the URL fragment with the rest of the URL.
* @abstract
* @param {?} newUrlPart
* @param {?} rawUrl
* @return {?}
*/
UrlHandlingStrategy.prototype.merge = function (newUrlPart, rawUrl) { };
return UrlHandlingStrategy;
}());
/**
* \@experimental
*/
export var DefaultUrlHandlingStrategy = (function () {
function DefaultUrlHandlingStrategy() {
}
/**
* @param {?} url
* @return {?}
*/
DefaultUrlHandlingStrategy.prototype.shouldProcessUrl = function (url) { return true; };
/**
* @param {?} url
* @return {?}
*/
DefaultUrlHandlingStrategy.prototype.extract = function (url) { return url; };
/**
* @param {?} newUrlPart
* @param {?} wholeUrl
* @return {?}
*/
DefaultUrlHandlingStrategy.prototype.merge = function (newUrlPart, wholeUrl) { return newUrlPart; };
return DefaultUrlHandlingStrategy;
}());
//# sourceMappingURL=url_handling_strategy.js.map