[improvement] add portal mixin (#3583)

This commit is contained in:
neverland
2019-06-21 14:02:33 +08:00
committed by GitHub
parent 1f3c2fa9db
commit f86ab3a4d5
4 changed files with 61 additions and 32 deletions

48
packages/mixins/portal.js Normal file
View File

@@ -0,0 +1,48 @@
function getElement(selector) {
if (typeof selector === 'string') {
return document.querySelector(selector);
}
return selector();
}
export function PortalMixin({ afterPortal }) {
return {
props: {
getContainer: [String, Function]
},
watch: {
getContainer() {
this.portal();
}
},
mounted() {
if (this.getContainer) {
this.portal();
}
},
methods: {
portal() {
const { getContainer } = this;
let container;
if (getContainer) {
container = getElement(getContainer);
} else if (this.$parent) {
container = this.$parent.$el;
}
if (container && container !== this.$el.parentNode) {
container.appendChild(this.$el);
}
if (afterPortal) {
afterPortal.call(this);
}
}
}
};
}