Skip to content

Commit d278cec

Browse files
committed
feat: remove pipe rules when node is unmounted
1 parent f2a9087 commit d278cec

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.storybook/ref.stories.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,21 @@ class RefExample extends Component {
1616
super(props);
1717
this.state = {
1818
color: 'red',
19+
show: true
1920
};
2021
}
2122

2223
render () {
2324
var data = nano.ref({'&': {color: this.state.color}, '&:hover': {color: 'blue'}});
2425

2526
return h('div', {},
26-
h('div', data, 'Hello world'),
27+
this.state.show && h('div', data, 'Hello world'),
2728

2829
h('br'),
2930

3031
h('button', {onClick: () => this.setState({color: 'red'})}, 'red'),
3132
h('button', {onClick: () => this.setState({color: 'blue'})}, 'blue'),
33+
h('button', {onClick: () => this.setState({show: !this.state.show})}, 'show/hide'),
3234
);
3335
}
3436
}

addon/ref.js

+23
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,29 @@ exports.addon = function (renderer) {
5353
if (!pipe) {
5454
el[sNano] = pipe = renderer.pipe();
5555
el.setAttribute(pipe.attr, '');
56+
57+
// Add unmount logic
58+
59+
var observer = new MutationObserver(function (mutations) {
60+
for (var i = 0; i < mutations.length; i++) {
61+
var mutation = mutations[i];
62+
63+
if (mutation.removedNodes.length) {
64+
var nodes = mutation.removedNodes;
65+
66+
for (var j = 0; j < nodes.length; j++) {
67+
if (nodes[j] === el) {
68+
pipe.remove();
69+
delete el[sNano];
70+
observer.disconnect();
71+
return;
72+
}
73+
}
74+
}
75+
}
76+
});
77+
78+
observer.observe(el.parentNode, {childList: true});
5679
}
5780

5881
pipe.css(css);

0 commit comments

Comments
 (0)