Skip to content

Instantly share code, notes, and snippets.

@sly7-7
Created February 12, 2016 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save sly7-7/797ef19999d77335cb6f to your computer and use it in GitHub Desktop.
Save sly7-7/797ef19999d77335cb6f 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": "release",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.2.0/ember-data.js",
"ember-template-compiler": "release"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment