Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

feat(ngRoute): cancel $routeChangeStart via $event.preventDefault() #5714

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions src/ngRoute/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -375,11 +375,31 @@ function $RouteProvider(){
* defined in `resolve` route property. Once all of the dependencies are resolved
* `$routeChangeSuccess` is fired.
*
* The route change may be cancelled with angularEvent.preventDefault(), which will
* in turn trigger a {@link ngRoute.$route#events_$routeChangeCancelled $routeChangeCancelled}
* event.
*
* @param {Object} angularEvent Synthetic event object.
* @param {Route} next Future route information.
* @param {Route} current Current route information.
*/

/**
* @ngdoc event
* @name ngRoute.$route#$routeChangeCancelled
* @eventOf ngRoute.$route
* @eventType broadcast on root scope
* @description
* Broadcasted after a route has been cancelled during
* {@link ngRoute.$route#events_$routeChangeStart $routeChangStart}, using the
* angularEvent.preventDefault() method. This method enables applications to prevent
* a route change from occurring without any additional work.
*
* @param {Object} angularEvent Synthetic event object.
* @param {Route} cancelled The cancelled route information.
* @param {Route} current Current route information.
*/

/**
* @ngdoc event
* @name ngRoute.$route#$routeChangeSuccess
Expand Down Expand Up @@ -484,7 +504,7 @@ function $RouteProvider(){
return params;
}

function updateRoute() {
function updateRoute($event, newUrl, oldUrl) {
var next = parseRoute(),
last = $route.current;

Expand All @@ -495,8 +515,13 @@ function $RouteProvider(){
angular.copy(last.params, $routeParams);
$rootScope.$broadcast('$routeUpdate', last);
} else if (next || last) {
if ($rootScope.$broadcast('$routeChangeStart', next, last).defaultPrevented &&
!forceReload) {
$location.$$parse($location.$$rewrite(oldUrl));
$rootScope.$broadcast('$routeChangeCancelled', next, last);
return;
}
forceReload = false;
$rootScope.$broadcast('$routeChangeStart', next, last);
$route.current = next;
if (next) {
if (next.redirectTo) {
Expand Down
56 changes: 56 additions & 0 deletions test/ngRoute/routeSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,62 @@ describe('$route', function() {
expect($exceptionHandler.errors).toEqual([myError]);
});
});


it('should broadcast $routeChangeCancelled if $routeChangeSuccess.defaultPrevented', function() {
module(function($routeProvider) {
$routeProvider.when('/r1', {
templateUrl: 'r1.html'
});
});
inject(function($route, $httpBackend, $location, $rootScope, $browser) {
var success = jasmine.createSpy('$routeChangeSuccess'),
error = jasmine.createSpy('$routeChangeError'),
cancelled = jasmine.createSpy('$routeChangeCancelled');
$rootScope.$on('$routeChangeStart', function($event) { $event.preventDefault(); });
$rootScope.$on('$routeChangeSuccess', success);
$rootScope.$on('$routeChangeError', error);
$rootScope.$on('$routeChangeCancelled', cancelled);

$location.path('/r1');
$rootScope.$digest();

expect(success).not.toHaveBeenCalled();
expect(error).not.toHaveBeenCalled();
expect(cancelled).toHaveBeenCalled();
expect($location.absUrl()).toBe('http://server/');
});
});


it('should not broadcast $routeChangeCancelled if force-reloading', function() {
module(function($routeProvider) {
$routeProvider.when('/r1', {
templateUrl: 'foo.html'
});
});
inject(function($route, $httpBackend, $location, $rootScope) {
var success = jasmine.createSpy('$routeChangeSuccess'),
error = jasmine.createSpy('$routeChangeError'),
cancelled = jasmine.createSpy('$routeChangeCancelled');

$location.path('/r1');
$rootScope.$digest();
$httpBackend.flush();

$rootScope.$on('$routeChangeStart', function($event) { $event.preventDefault(); });
$rootScope.$on('$routeChangeSuccess', success);
$rootScope.$on('$routeChangeError', error);
$rootScope.$on('$routeChangeCancelled', cancelled);

$route.reload();
$rootScope.$digest();

expect(cancelled).not.toHaveBeenCalled();
expect(error).not.toHaveBeenCalled();
expect(success).toHaveBeenCalled();
});
});
});


Expand Down