Class Route

public

The Route class is used to define individual routes. Refer to the routing guide for documentation.

Show:

Module: @ember/routing

Available since v1.9.0

This event is triggered when the router enters the route. It is not executed when the model for the route changes.

app/routes/application.js
1
2
3
4
5
6
7
8
import { on } from '@ember/object/evented';
import Route from '@ember/routing/route';

export default Route.extend({
  collectAnalytics: on('activate', function(){
    collectAnalytics();
  })
});
Module: @ember/routing

Available since v1.9.0

This event is triggered when the router completely exits this route. It is not executed when the model for the route changes.

app/routes/index.js
1
2
3
4
5
6
7
8
import { on } from '@ember/object/evented';
import Route from '@ember/routing/route';

export default Route.extend({
  trackPageLeaveAnalytics: on('deactivate', function(){
    trackPageLeaveAnalytics();
  })
});
Module: @ember/routing

Available since v1.2.0

The didTransition action is fired after a transition has successfully been completed. This occurs after the normal model hooks (beforeModel, model, afterModel, setupController) have resolved. The didTransition action has no arguments, however, it can be useful for tracking page views or resetting state on the controller.

app/routes/login.js
1
2
3
4
5
6
7
8
9
10
import Route from '@ember/routing/route';
import { action } from '@ember/object';

export default class LoginRoute extends Route {
  @action
  didTransition() {
    this.controller.get('errors.base').clear();
    return true; // Bubble the didTransition event
  }
}
Module: @ember/routing

Available since v1.0.0

error
Error
transition
Transition

When attempting to transition into a route, any of the hooks may return a promise that rejects, at which point an error action will be fired on the partially-entered routes, allowing for per-route error handling logic, or shared error handling logic defined on a parent route.

Here is an example of an error handler that will be invoked for rejected promises from the various hooks on the route, as well as any unhandled errors from child routes:

app/routes/admin.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
import { reject } from 'rsvp';
import Route from '@ember/routing/route';
import { action } from '@ember/object';

export default class AdminRoute extends Route {
  beforeModel() {
    return reject('bad things!');
  }

  @action
  error(error, transition) {
    // Assuming we got here due to the error in `beforeModel`,
    // we can expect that error === "bad things!",
    // but a promise model rejecting would also
    // call this hook, as would any errors encountered
    // in `afterModel`.

    // The `error` hook is also provided the failed
    // `transition`, which can be stored and later
    // `.retry()`d if desired.

    this.transitionTo('login');
  }
}

error actions that bubble up all the way to ApplicationRoute will fire a default error handler that logs the error. You can specify your own global default error handler by overriding the error handler on ApplicationRoute:

app/routes/application.js
1
2
3
4
5
6
7
8
9
import Route from '@ember/routing/route';
import { action } from '@ember/object';

export default class ApplicationRoute extends Route {
  @action
  error(error, transition) {
    this.controllerFor('banner').displayError(error.message);
  }
}
Module: @ember/routing

Available since v1.2.0

transition
Transition
route
Route
The route that triggered the loading event

The loading action is fired on the route when a route's model hook returns a promise that is not already resolved. The current Transition object is the first parameter and the route that triggered the loading event is the second parameter.

app/routes/application.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Route from '@ember/routing/route';
import { action } from '@ember/object';

export default class ApplicationRoute extends Route {
  @action
  loading(transition, route) {
    let controller = this.controllerFor('foo');

    // The controller may not be instantiated when initially loading
    if (controller) {
      controller.currentlyLoading = true;

      transition.finally(function() {
        controller.currentlyLoading = false;
      });
    }
  }
}
Module: @ember/routing

Available since v1.0.0

transition
Transition

The willTransition action is fired at the beginning of any attempted transition with a Transition object as the sole argument. This action can be used for aborting, redirecting, or decorating the transition from the currently active routes.

A good example is preventing navigation when a form is half-filled out:

form.js
1
2
3
4
5
6
7
8
9
10
11
12
import Route from '@ember/routing/route';
import { action } from '@ember/object';

export default class ContactFormRoute extends Route {
  @action
  willTransition(transition) {
    if (this.controller.get('userHasEnteredData')) {
      this.controller.displayNavigationConfirm();
      transition.abort();
    }
  }
}

You can also redirect elsewhere by calling this.transitionTo('elsewhere') from within willTransition. Note that willTransition will not be fired for the redirecting transitionTo, since willTransition doesn't fire when there is already a transition underway. If you want subsequent willTransition actions to fire for the redirecting transition, you must first explicitly call transition.abort().

To allow the willTransition event to continue bubbling to the parent route, use return true;. When the willTransition method has a return value of true then the parent route's willTransition method will be fired, enabling "bubbling" behavior for the event.