Created
November 7, 2017 01:15
-
-
Save skitterm/3fbdf26b08c7659b218ba104237ff928 to your computer and use it in GitHub Desktop.
New Twiddle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
taggyName: 'h1', | |
value: 'the value', | |
theInput: Ember.computed('value', 'taggyName', function() { | |
const tagName = this.get('taggyName'); | |
return Ember.String.htmlSafe(`<${this.get('taggyName')} class="jazz" contenteditable="true">${this.get('value')}</${this.get('taggyName')}>`); | |
}), | |
didInsertElement() { | |
this.$('.jazz')[0].addEventListener('keyup', event => { | |
this.send('onChange', event); | |
}); | |
}, | |
actions: { | |
onChange(event) { | |
console.log(event.target.textContent); | |
}, | |
changeValue(value) { | |
this.set('value', value); | |
} | |
} | |
}); | |
/* | |
Plusses: | |
Only one tag needed! | |
Can still register events and load in values! | |
Minuses: | |
Re-injects DOM every time you change its dependent values. | |
Click the button -- after that -- editing the text doesn't trigger the onChange. | |
You'd need an observer to do so... which is hacky and baaaad. | |
Where you can enumerate all the possibilities, maybe best to just use those. | |
Unless there's a way to register events each time... | |
Nah. Let's move forward! | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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