95 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
| import Vue from 'vue';
 | |
| import PropTypes from './vue-types';
 | |
| import Base from '../base';
 | |
| 
 | |
| export default {
 | |
|   props: {
 | |
|     autoMount: PropTypes.bool.def(true),
 | |
|     autoDestroy: PropTypes.bool.def(true),
 | |
|     visible: PropTypes.bool,
 | |
|     forceRender: PropTypes.bool.def(false),
 | |
|     parent: PropTypes.any,
 | |
|     getComponent: PropTypes.func.isRequired,
 | |
|     getContainer: PropTypes.func.isRequired,
 | |
|     children: PropTypes.func.isRequired,
 | |
|   },
 | |
| 
 | |
|   mounted() {
 | |
|     if (this.autoMount) {
 | |
|       this.renderComponent();
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   updated() {
 | |
|     if (this.autoMount) {
 | |
|       this.renderComponent();
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   beforeDestroy() {
 | |
|     if (this.autoDestroy) {
 | |
|       this.removeContainer();
 | |
|     }
 | |
|   },
 | |
|   methods: {
 | |
|     removeContainer() {
 | |
|       if (this.container) {
 | |
|         this._component && this._component.$destroy();
 | |
|         this.container.parentNode.removeChild(this.container);
 | |
|         this.container = null;
 | |
|         this._component = null;
 | |
|       }
 | |
|     },
 | |
| 
 | |
|     renderComponent(props = {}, ready) {
 | |
|       const { visible, forceRender, getContainer, parent } = this;
 | |
|       const self = this;
 | |
|       if (visible || parent.$refs._component || forceRender) {
 | |
|         let el = this.componentEl;
 | |
|         if (!this.container) {
 | |
|           this.container = getContainer();
 | |
|           el = document.createElement('div');
 | |
|           this.componentEl = el;
 | |
|           this.container.appendChild(el);
 | |
|         }
 | |
|         if (!this._component) {
 | |
|           const V = Base.Vue || Vue;
 | |
|           this._component = new V({
 | |
|             el: el,
 | |
|             parent: self.parent,
 | |
|             data: {
 | |
|               comProps: props,
 | |
|             },
 | |
|             mounted() {
 | |
|               this.$nextTick(() => {
 | |
|                 if (ready) {
 | |
|                   ready.call(self);
 | |
|                 }
 | |
|               });
 | |
|             },
 | |
|             updated() {
 | |
|               this.$nextTick(() => {
 | |
|                 if (ready) {
 | |
|                   ready.call(self);
 | |
|                 }
 | |
|               });
 | |
|             },
 | |
|             render() {
 | |
|               return self.getComponent(this.comProps);
 | |
|             },
 | |
|           });
 | |
|         } else {
 | |
|           this._component.comProps = props;
 | |
|         }
 | |
|       }
 | |
|     },
 | |
|   },
 | |
| 
 | |
|   render() {
 | |
|     return this.children({
 | |
|       renderComponent: this.renderComponent,
 | |
|       removeContainer: this.removeContainer,
 | |
|     });
 | |
|   },
 | |
| };
 |