Skip to content

Instantly share code, notes, and snippets.

@lennyburdette
Last active August 23, 2018 23:45
Show Gist options
  • Select an option

  • Save lennyburdette/2314f86b429ea7bfab69b61448b04d6c to your computer and use it in GitHub Desktop.

Select an option

Save lennyburdette/2314f86b429ea7bfab69b61448b04d6c to your computer and use it in GitHub Desktop.
search input
import Ember from 'ember';
export default Ember.Component.extend({
tagName: '',
didInsertElement() {
this.set('uniqueID', Ember.guidFor(this));
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
router: Ember.inject.service(),
actions: {
search(e) {
e.preventDefault();
console.log('search with ', this.appName);
this.router.transitionTo('search', { params: this.appName });
this.set('appName', '');
}
}
});
{{my-component value=appName onInput=(action (mut appName)) onSubmit=(action "search")}}
{{appName}}
<form onsubmit={{action onSubmit}} id={{this.uniqueID}}>
<input value={{value}} oninput={{action onInput value="target.value"}} />
</form>
{
"version": "0.15.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.2.2",
"ember-template-compiler": "3.2.2",
"ember-testing": "3.2.2"
},
"addons": {
"ember-data": "3.2.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment