You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
995 B
49 lines
995 B
import PropTypes from './vue-types';
|
|
import { Teleport } from 'vue';
|
|
|
|
export default {
|
|
name: 'Portal',
|
|
props: {
|
|
getContainer: PropTypes.func.isRequired,
|
|
children: PropTypes.any.isRequired,
|
|
didUpdate: PropTypes.func,
|
|
},
|
|
data() {
|
|
this._container = null;
|
|
return {};
|
|
},
|
|
mounted() {
|
|
this.createContainer();
|
|
},
|
|
updated() {
|
|
const { didUpdate } = this.$props;
|
|
if (didUpdate) {
|
|
this.$nextTick(() => {
|
|
didUpdate(this.$props);
|
|
});
|
|
}
|
|
},
|
|
|
|
beforeUnmount() {
|
|
this.removeContainer();
|
|
},
|
|
methods: {
|
|
createContainer() {
|
|
this._container = this.$props.getContainer();
|
|
this.$forceUpdate();
|
|
},
|
|
removeContainer() {
|
|
if (this._container && this._container.parentNode) {
|
|
this._container.parentNode.removeChild(this._container);
|
|
}
|
|
},
|
|
},
|
|
|
|
render() {
|
|
if (this._container) {
|
|
return <Teleport to={this._container}>{this.$props.children}</Teleport>;
|
|
}
|
|
return null;
|
|
},
|
|
};
|