Separando y derribando con willDestroyElement
Puede eliminar los elementos componentes del DOM activando el gancho willDestroyElement .
Sintaxis
import Ember from 'ember';
export default Ember.Component.extend ({
...
willDestroyElement() {
//code here
},
...
})
Ejemplo
El ejemplo que se muestra a continuación describe el uso del gancho willDestroyElement , que elimina los elementos componentes del DOM. Cree un controlador con índice de nombre y abra el archivo desde la aplicación / controlador / para agregar el siguiente código:
import Ember from 'ember';
export default Ember.Controller.extend ({
showComponent: true,
laterCount: 0,
buttonText: Ember.computed('showComponent', function() {
let showing = Ember.get(this, 'showComponent');
if (showing) {
return 'Remove';
} else {
return 'Add';
}
}),
actions: {
toggleComponent() {
this.toggleProperty('showComponent');
},
updateLaterCount() {
Ember.set(this, 'laterCount', Ember.get(this, 'laterCount') + 1);
}
}
});
Cree un componente con el nombre post-action , que se definirá en app / components / .
Abra el archivo post-action.js y agregue el siguiente código:
import Ember from 'ember';
export default Ember.Component.extend ({
runLater: null,
didInsertElement() {
let timeout = Ember.run.later(this, function() {
Ember.Logger.log('fired this after 1 seconds...');
this.sendAction();
}, 500);
Ember.set(this, 'runLater', timeout);
},
willDestroyElement() {
Ember.run.cancel(Ember.get(this, 'runLater'));
}
});
Ahora abra el archivo de plantilla de componente post-action.hbs con el siguiente código:
<h2>Tutorialspoint</h2>
Abra el archivo index.hbs y agregue el siguiente código:
<h5>Count for clicks: {{laterCount}}</h5>
<button {{action 'toggleComponent'}}>{{buttonText}}</button>
{{#if showComponent}}
{{post-action action="updateLaterCount"}}
{{/if}}
{{outlet}}
Salida
Ejecute el servidor ember; recibirá el siguiente resultado:
Inicialmente, el número de clics será 1. Cuando haga clic en el botón Eliminar , eliminará el texto:
A continuación, haga clic en el botón Agregar , aumentará el número de clics y mostrará el texto: