All files / components/basic ComponentWrapper.jsx

61.11% Statements 33/54
59.38% Branches 19/32
50% Functions 8/16
61.54% Lines 32/52

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178                            7x   7x                         7x           8x             52x   52x 52x 403x   52x 52x 52x   52x 38x             52x 52x 52x       52x   48x 48x       48x     48x   48x       52x         39x     52x       39x 39x               52x                                                                                                     52x               466x       7x                   8x  
import { getInternalComponentID } from '@appbaseio/reactivecore/lib/utils/transform';
import { Actions, helper } from '@appbaseio/reactivecore';
import { componentTypes } from '@appbaseio/reactivecore/lib/utils/constants';
import VueTypes from 'vue-types';
import { connect, getValidPropsKeys, getCamelCase } from '../../utils/index';
 
const {
	addComponent,
	removeComponent,
	watchComponent,
	setQueryListener,
	setComponentProps,
	updateComponentProps,
	mockDataForTesting,
} = Actions;
 
const { pushToAndClause, checkPropChange, checkSomePropChange } = helper;
 
/**
 * ComponentWrapper component is a wrapper component for each ReactiveSearch component
 * which is responsible for following tasks:
 * 1. Register a component on mount
 * 2. Set query listener
 * 3. Set react prop
 * 4. Follow the [1-3] for the internal component if needed
 * 5. Update component props in redux store
 * 6. Unregister the component on un-mount
 * Note: All components are using that except the DynamicRangeSlider
 */
const ComponentWrapper = (
	component,
	options = {
		componentType: null,
		internalComponent: false,
	},
) => ({
	name: 'ComponentWrapper',
	props: {
		destroyOnUnmount: VueTypes.bool.def(false),
	},
	created() {
		// clone the props for component it is needed because attrs gets changed on time
		const componentProps = { ...this.$attrs };
		// handle kebab case for props
		const parsedProps = {};
		Object.keys(componentProps).forEach((key) => {
			parsedProps[getCamelCase(key)] = componentProps[key];
		});
		this.componentProps = parsedProps;
		this.componentId = this.componentProps.componentId;
		this.react = this.componentProps.react;
 
		if (this.componentProps.mockData) {
			this.mockDataForTesting(
				this.componentProps.componentId,
				this.componentProps.mockData,
			);
		}
	},
	beforeMount() {
		let components = [];
		Eif (this.$$store) {
			({ components } = this.$$store.getState());
		}
		// Register a component only when `destroyOnUnmount` is `true`
		// or component is not present in store
		if (this.destroyOnUnmount || components.indexOf(this.componentProps.componentId) === -1) {
			// Register  component
			this.addComponent(this.componentId);
			const onQueryChange = (...args) => {
				this.$emit('queryChange', ...args);
				this.$emit('query-change', ...args);
			};
			const onError = (e) => {
				this.$emit('error', e);
			};
			this.setQueryListener(this.componentId, onQueryChange, onError);
			// Update props in store
			this.setComponentProps(this.componentId, this.componentProps, options.componentType);
		}
 
		// if default query prop is defined and component is reactive component then register the internal component
		if (
			options.internalComponent
			|| (this.componentProps.defaultQuery
				&& options.componentType === componentTypes.reactiveComponent)
		) {
			this.internalComponent = getInternalComponentID(this.componentId);
		}
		// Register internal component
		if (
			this.internalComponent
			&& (this.destroyOnUnmount || components.indexOf(this.internalComponent) === -1)
		) {
			this.addComponent(this.internalComponent);
			this.setComponentProps(
				this.internalComponent,
				this.componentProps,
				options.componentType,
			);
		}
	},
	mounted() {
		Iif (this.internalComponent && this.componentProps.mode !== 'test') {
			// Watch component after rendering the component to avoid the un-necessary calls
			this.setReact(this.componentProps);
		}
	},
	beforeDestroy() {
		if (this.destroyOnUnmount) {
			// Unregister components
			this.removeComponent(this.componentId);
			if (this.internalComponent) {
				this.removeComponent(this.internalComponent);
			}
		}
	},
	watch: {
		$attrs: {
			deep: true,
			handler(newVal) {
				const propsKeys = getValidPropsKeys(newVal);
				checkSomePropChange(newVal, this.savedComponentProps, propsKeys, () => {
					this.updateComponentProps(this.componentId, newVal, options.componentType);
					this.updateComponentProps(
						this.internalComponent,
						newVal,
						options.componentType,
					);
				});
			},
		},
		react(newVal, oldVal) {
			checkPropChange(newVal, oldVal, () => this.setReact(this.componentProps));
		},
	},
	methods: {
		setReact(props) {
			const { react } = props;
			if (this.internalComponent) {
				if (react) {
					const newReact = pushToAndClause(react, this.internalComponent);
					this.watchComponent(props.componentId, newReact);
				} else {
					this.watchComponent(props.componentId, {
						and: this.internalComponent,
					});
				}
			} else {
				this.watchComponent(props.componentId, react);
			}
		},
	},
	render(h) {
		return h(component, {
			attrs: this.$attrs,
			on: this.$listeners,
			scopedSlots: this.$scopedSlots,
			slots: this.$slots,
		});
	},
});
const mapStateToProps = (state, props) => ({
	savedComponentProps: state.props[props.componentId],
});
 
const mapDispatchToProps = {
	addComponent,
	removeComponent,
	setQueryListener,
	watchComponent,
	setComponentProps,
	updateComponentProps,
	mockDataForTesting,
};
export default (component, options = {}) =>
	connect(mapStateToProps, mapDispatchToProps)(ComponentWrapper(component, options));