Skip to content

Commit 094d600

Browse files
committed
fix issue where filepond detach method was not called
1 parent d3944e7 commit 094d600

6 files changed

+19
-11
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 5.1.3
4+
5+
- Fix FilePond detach handling
6+
7+
38
## 5.1.2
49

510
- Fix issue with 'input' event.

dist/vue-filepond.esm.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-filepond v5.1.2
2+
* vue-filepond v5.1.3
33
* A handy FilePond adapter component for Vue
44
*
55
* Copyright (c) 2019 PQINA
@@ -185,14 +185,15 @@ export default (...plugins) => {
185185
// clean up properly
186186
const mutationHandler = (mutations, observer) => {
187187
const removedNodes = (mutations[0] || {}).removedNodes || [];
188-
if (!removedNodes[0] === this.$el) return;
188+
const removedNode = removedNodes[0];
189+
if (!removedNode || !removedNode.contains(this.$el)) return;
189190
observer.disconnect();
190191
detached.call(this);
191192
}
192193

193194
// start observing parent element for changes to the DOM
194195
const observer = new MutationObserver(mutationHandler);
195-
observer.observe(this.$parent.$el, { childList: true })
196+
observer.observe(document.documentElement, { childList: true, subtree: true });
196197
},
197198

198199
// called when the component root node has been detached

dist/vue-filepond.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-filepond v5.1.2
2+
* vue-filepond v5.1.3
33
* A handy FilePond adapter component for Vue
44
*
55
* Copyright (c) 2019 PQINA
@@ -193,14 +193,15 @@
193193
// clean up properly
194194
var mutationHandler = function mutationHandler(mutations, observer) {
195195
var removedNodes = (mutations[0] || {}).removedNodes || [];
196-
if (!removedNodes[0] === _this2.$el) return;
196+
var removedNode = removedNodes[0];
197+
if (!removedNode || !removedNode.contains(_this2.$el)) return;
197198
observer.disconnect();
198199
detached.call(_this2);
199200
};
200201

201202
// start observing parent element for changes to the DOM
202203
var observer = new MutationObserver(mutationHandler);
203-
observer.observe(this.$parent.$el, { childList: true });
204+
observer.observe(document.documentElement, { childList: true, subtree: true });
204205
},
205206

206207

dist/vue-filepond.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -175,14 +175,15 @@ export default (...plugins) => {
175175
// clean up properly
176176
const mutationHandler = (mutations, observer) => {
177177
const removedNodes = (mutations[0] || {}).removedNodes || [];
178-
if (!removedNodes[0] === this.$el) return;
178+
const removedNode = removedNodes[0];
179+
if (!removedNode || !removedNode.contains(this.$el)) return;
179180
observer.disconnect();
180181
detached.call(this);
181182
}
182183

183184
// start observing parent element for changes to the DOM
184185
const observer = new MutationObserver(mutationHandler);
185-
observer.observe(this.$parent.$el, { childList: true })
186+
observer.observe(document.documentElement, { childList: true, subtree: true });
186187
},
187188

188189
// called when the component root node has been detached

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-filepond",
3-
"version": "5.1.2",
3+
"version": "5.1.3",
44
"description": "A handy FilePond adapter component for Vue",
55
"homepage": "https://pqina.nl/filepond",
66
"license": "MIT",

0 commit comments

Comments
 (0)