Skip to content

Instantly share code, notes, and snippets.

@nathanhammond
Created July 11, 2017 23:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathanhammond/e61fe19908f6a84801a67fcc0bd8c5b2 to your computer and use it in GitHub Desktop.
Save nathanhammond/e61fe19908f6a84801a67fcc0bd8c5b2 to your computer and use it in GitHub Desktop.
didTransition
import Ember from 'ember';
export default Ember.Controller.extend({
queryParams: ['category', 'term'],
category: 0,
term: 0,
actions: {
increment(qp) {
let routeArgument = {};
routeArgument[qp] = this.get(qp) + 1
this.transitionToRoute({ queryParams: routeArgument});
}
}
});
import Ember from 'ember';
export default Ember.Route.extend({
queryParams: {
category: {
refreshModel: true
}
},
actions: {
didTransition: function() {
alert('didTransition');
}
}
});
<h1>Routing Test</h1>
{{outlet}}
<h2>Index</h2>
Query params:
<ul>
<li>category: {{category}} <button onclick={{action 'increment' 'category'}}>increment</button></li>
<li>term: {{term}} <button onclick={{action 'increment' 'term'}}>increment</button></li>
</ul>
{
"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