Skip to content

Instantly share code, notes, and snippets.

@rwjblue
Forked from blchang/controllers.application.js
Created August 21, 2017 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rwjblue/27f8d582854ddd94c872204bc67c37a2 to your computer and use it in GitHub Desktop.
Save rwjblue/27f8d582854ddd94c872204bc67c37a2 to your computer and use it in GitHub Desktop.
Redirect to name
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: 'none',
rootURL: config.rootURL
});
Router.map(function() {
this.route('my-route', { path: '/:id' });
});
export default Router;
import Ember from 'ember';
export default Ember.Route.extend({
model(params) {
alert('Model hook should only be called once');
let model = {
id: '5',
name: 'myName'
};
if (params.id !== model.id) {
return { redirectTo: model };
}
return model;
},
serialize(model) {
alert('serialize called multiple times :(');
return { id: model.name };
},
afterModel(model) {
if (model.redirectTo) {
this.replaceWith('my-route', model.redirectTo);
}
}
});
// Questions:
// 1. Why is serialize called multiple times?
// 2. Why does the :id not exist after the redirect?
// 3. Why do we need a redirect for serialize to be called?
// 4. Is there a better way to change the url without copying the model?
<h1>Welcome to {{appName}}</h1>
<br>
<p>Go to /5 to see the url change to /myName</p>
<br>
{{outlet}}
<br>
<br>
{
"version": "0.12.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.12.0",
"ember-template-compiler": "2.12.0",
"ember-testing": "2.12.0"
},
"addons": {
"ember-data": "2.12.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment