Skip to content

Instantly share code, notes, and snippets.

@whatthewhat
Created April 28, 2020 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whatthewhat/5e2f2a609405182111d230a85e6275fb to your computer and use it in GitHub Desktop.
Save whatthewhat/5e2f2a609405182111d230a85e6275fb to your computer and use it in GitHub Desktop.
3-17-willdestroyelement-bug
import Component from '@ember/component';
export default class extends Component {
willDestroyElement() {
alert(`willDestroyElement called for ${this.item.name}`)
}
}
import Controller from '@ember/controller';
import {action} from '@ember/object';
import { A } from '@ember/array';
export default class ApplicationController extends Controller {
items = A([
{ name: 'Item 1' },
{ name: 'Item 2' },
{ name: 'Item 3' }
])
@action
deleteItem(item) {
this.items.removeObject(item);
}
@action
addItem() {
this.items.addObject({ name: 'New item' })
}
}
<h2>Items</h2>
{{#each items as |item|}}
{{component "item" item=item delete=this.deleteItem}}
{{/each}}
<button {{action this.addItem}}>Add</button>
<div style="height:100px;width:100%;border:4px solid red; padding: 4px;">
{{item.name}}
<button {{action delete item}}>
Delete me
</button>
</div>
{
"version": "0.17.0",
"EmberENV": {
"FEATURES": {},
"_TEMPLATE_ONLY_GLIMMER_COMPONENTS": false,
"_APPLICATION_TEMPLATE_WRAPPER": true,
"_JQUERY_INTEGRATION": true
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.17.0",
"ember-template-compiler": "3.17.0",
"ember-testing": "3.17.0"
},
"addons": {
"@glimmer/component": "1.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment