yyuap-template
Version:
template project which is based on tinper
160 lines (138 loc) • 5.71 kB
JavaScript
(function (global, factory) {
if (typeof define === "function" && define.amd) {
define(['exports', 'react', './createStore'], factory);
} else if (typeof exports !== "undefined") {
factory(exports, require('react'), require('./createStore'));
} else {
var mod = {
exports: {}
};
factory(mod.exports, global.react, global.createStore);
global.connect = mod.exports;
}
})(this, function (exports, _react, _createStore) {
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.connect = undefined;
var _react2 = _interopRequireDefault(_react);
var _createStore2 = _interopRequireDefault(_createStore);
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
var _extends = Object.assign || function (target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
var _createClass = function () {
function defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
return function (Constructor, protoProps, staticProps) {
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
return Constructor;
};
}();
function _possibleConstructorReturn(self, call) {
if (!self) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return call && (typeof call === "object" || typeof call === "function") ? call : self;
}
function _inherits(subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
}
subClass.prototype = Object.create(superClass && superClass.prototype, {
constructor: {
value: subClass,
enumerable: false,
writable: true,
configurable: true
}
});
if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;
}
/**
* connect
*/
// export default function (mapStateToProps, mapDispatchToProps){
// return function () {
// return function (OldComponent) {
// return class NewComponent extends Component {
// }
// }
// }
// }
var connect = exports.connect = function connect(data) {
return function (OldComponent) {
return function (_Component) {
_inherits(NewComponent, _Component);
function NewComponent(props, context) {
_classCallCheck(this, NewComponent);
var _this = _possibleConstructorReturn(this, (NewComponent.__proto__ || Object.getPrototypeOf(NewComponent)).call(this, props, context));
_this.state = {
props: _this.props
};
return _this;
}
_createClass(NewComponent, [{
key: 'componentWillMount',
value: function componentWillMount() {
var dataStore = { "getValue": this.getValue.bind(this), "changeValue": this.changeValue.bind(this) };
this.setState({
props: _extends({}, this.state.props, {
dataModel: this.state.props.data.getState(),
dataStore: dataStore
})
});
}
}, {
key: 'getAllValue',
value: function getAllValue() {}
}, {
key: 'getValueByItemCode',
value: function getValueByItemCode() {}
}, {
key: 'getValue',
value: function getValue(formId, rowIndex) {
return this.state.props.data.getState();
}
}, {
key: 'changeValue',
value: function changeValue(formId, rowIndex, fieldId, rowValue) {
this.state.props.data.changeValue(formId, rowIndex, fieldId, rowValue);
}
}, {
key: 'render',
value: function render() {
return _react2.default.createElement(OldComponent, this.state.props);
}
}]);
return NewComponent;
}(_react.Component);
};
};
});