Skip to content

Instantly share code, notes, and snippets.

@feanor07
Forked from ykaragol/controllers.application.js
Last active April 10, 2017 07:28
Show Gist options
  • Save feanor07/f5a4424b0b9f97a020bdcec7d07e7ec1 to your computer and use it in GitHub Desktop.
Save feanor07/f5a4424b0b9f97a020bdcec7d07e7ec1 to your computer and use it in GitHub Desktop.
Stack Overflow#43300009
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
import Ember from 'ember'
const {Controller} = Ember
export default Controller.extend({
// == Keyword Properties ====================================================
queryParams: ['export', 'foo'],
export: null,
queryParamsObserver: function () {
if (this.get('export')) {
this.exportFile();
Ember.run.scheduleOnce('routerTransitions',this, ()=>{
console.log('export property is being nullified');
this.set('export', null)});
}
}.observes('export'),
// == Functions =============================================================
exportFile () {
console.log('export performed');
},
// == Actions ===============================================================
actions: {
}
})
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');
});
export default Router;
import Ember from 'ember';
export default Ember.Route.extend({
queryParams:{
export:{
refreshModel:false
}
},
model(params, transition){
return {
msg: Math.floor(Math.random()*1000)
};
}
});
<h1>Welcome to {{appName}}</h1>
{{#link-to 'my-route' (query-params export=true)}}export = true{{/link-to}}
<br>
{{#link-to 'my-route'}}export = undefined{{/link-to}}
<br>
<br>
<hr>
{{outlet}}
<br>
<br>
This is my route! <br>
Current value of msg is: {{model.msg}}
{
"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