Skip to content

Instantly share code, notes, and snippets.

@pixelhandler
Forked from sly7-7/application.controller.js
Last active February 12, 2016 20:06
Show Gist options
  • Select an option

  • Save pixelhandler/bf11f82ea73a37029967 to your computer and use it in GitHub Desktop.

Select an option

Save pixelhandler/bf11f82ea73a37029967 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
var FilePath = Em.Object.extend({
default: null,
fileName: Em.computed.oneWay('default'),
path: Em.computed('fileName', function() {
return '/path/' + this.get('fileName');
})
});
export default Ember.Controller.extend({
appName:'Ember Twiddle',
filePath: Ember.computed(function(){
return FilePath.create();
}),
actions: {
setFilePath() {
let filePath = this.get('filePath');
filePath.set('default', 'untitled.txt');
filePath.set('fileName', 'image.jpeg');
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
{{filePath.path}}
<br>
{{outlet}}
<br>
<br>
<button {{action 'setFilePath'}}>updatePath</button>
{
"version": "0.5.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "1.13.12",
"ember-template-compiler": "1.13.12"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment