-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathwill-destroy.js
68 lines (55 loc) · 1.55 KB
/
will-destroy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { assert } from '@ember/debug';
import { setModifierManager, capabilities } from '@ember/modifier';
/**
The `{{will-destroy}}` element modifier is activated immediately before the element
is removed from the DOM.
```handlebars
<div {{will-destroy this.teardownPlugin}}>
{{yield}}
</div>
```
```js
export default Component.extend({
teardownPlugin(element) {
// teardown logic here
}
});
```
By default, the executed function will be unbound. If you would like to access
the component context in your function, use the `action` decorator as follows:
```handlebars
<div {{will-destroy this.teardownPlugin}}>
{{yield}}
</div>
```
```js
export default Component.extend({
teardownPlugin: action(function(element) {
// the `this` context will be the component instance
})
});
```
@method will-destroy
@public
*/
export default setModifierManager(
() => ({
capabilities: capabilities('3.13', { disableAutoTracking: true }),
createModifier() {
return { element: null };
},
installModifier(state, element) {
state.element = element;
},
updateModifier() {},
destroyModifier({ element }, args) {
let [willDestroyFunction, ...positional] = args.positional;
assert(
`You need to pass a function as the first argument to \`will-destroy\` you passed ${willDestroyFunction}`,
typeof willDestroyFunction === 'function'
);
willDestroyFunction(element, positional, args.named);
},
}),
class WillDestroyModifier {}
);