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
import _mergeJSXProps from 'babel-helper-vue-jsx-merge-props';
import _extends from 'babel-runtime/helpers/extends';
import PropTypes from './vue-types';
import { getOptionProps } from './props-util';
function getDisplayName(WrappedComponent) {
return WrappedComponent.name || 'Component';
}
export default function wrapWithConnect(WrappedComponent) {
var tempProps = WrappedComponent.props || {};
var methods = WrappedComponent.methods || {};
var props = {};
Object.keys(tempProps).forEach(function (k) {
props[k] = _extends({}, k, { required: false });
});
WrappedComponent.props.__propsSymbol__ = PropTypes.any;
WrappedComponent.props.children = PropTypes.array.def([]);
var ProxyWrappedComponent = {
props: props,
model: WrappedComponent.model,
name: 'Proxy_' + getDisplayName(WrappedComponent),
methods: {
getProxyWrappedInstance: function getProxyWrappedInstance() {
return this.$refs.wrappedInstance;
}
},
render: function render() {
var h = arguments[0];
var $listeners = this.$listeners,
_$slots = this.$slots,
$slots = _$slots === undefined ? {} : _$slots,
$attrs = this.$attrs,
$scopedSlots = this.$scopedSlots;
var props = getOptionProps(this);
var wrapProps = {
props: _extends({}, props, {
__propsSymbol__: Symbol(),
componentWillReceiveProps: _extends({}, props),
children: $slots['default'] || props.children || []
}),
on: $listeners,
attrs: $attrs
};
if (Object.keys($scopedSlots).length) {
wrapProps.scopedSlots = $scopedSlots;
}
var slotsKey = Object.keys($slots);
return h(
WrappedComponent,
_mergeJSXProps([wrapProps, { ref: 'wrappedInstance' }]),
[slotsKey.length ? slotsKey.map(function (name) {
return h(
'template',
{ slot: name },
[$slots[name]]
);
}) : null]
);
}
};
Object.keys(methods).map(function (m) {
ProxyWrappedComponent.methods[m] = function () {
var _getProxyWrappedInsta;
return (_getProxyWrappedInsta = this.getProxyWrappedInstance())[m].apply(_getProxyWrappedInsta, arguments);
};
});
return ProxyWrappedComponent;
}