Skip to content

Instantly share code, notes, and snippets.

@inkless
Last active June 20, 2019 16:03
Show Gist options
  • Save inkless/f78b5166de078a432adc310c4a0a2a02 to your computer and use it in GitHub Desktop.
Save inkless/f78b5166de078a432adc310c4a0a2a02 to your computer and use it in GitHub Desktop.
inputs array
import Ember from 'ember';
import { computed } from '@ember/object';
export default Ember.Component.extend({
ts: computed(function () {
return performance.now()
})
});
import Component from "@ember/component";
export default Component.extend({
init(...args) {
this.setProperties({
arr: [{ v: "aaa" }, { v: "bbb" }, { v: "ccc" }]
});
this._super(...args);
},
actions: {
updateArr(index, e) {
this.set("arr", [
...this.arr.slice(0, index),
{
...this.arr[index],
v: e.target.value
},
...this.arr.slice(index + 1)
]);
},
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
{{inputs-array}}
<br>
<br>
{{outlet}}
<br>
<br>
<p>Notice when you type in the input, it triggers the rerender and the input lose focus, this wouldn't happen in react.js or vue.js, I think it's an ember issue</p>
<ul>
{{#each arr as |item index|}}
<li>
{{input value=(readonly item.v) input=(action "updateArr" index)}} <br>
{{item.v}} {{current-ts}}<br>
</li>
{{/each}}
</ul>
{
"version": "0.15.1",
"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.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment