fastlion-amis
Version:
一种MIS页面生成工具
46 lines (45 loc) • 2.56 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.RatingControlRenderer = void 0;
var tslib_1 = require("tslib");
var react_1 = (0, tslib_1.__importDefault)(require("react"));
var Item_1 = require("./Item");
var Rating_1 = (0, tslib_1.__importDefault)(require("../../components/Rating"));
var RatingControl = /** @class */ (function (_super) {
(0, tslib_1.__extends)(RatingControl, _super);
function RatingControl() {
return _super !== null && _super.apply(this, arguments) || this;
}
RatingControl.prototype.render = function () {
var _a = this.props, className = _a.className, value = _a.value, count = _a.count, half = _a.half, readOnly = _a.readOnly, disabled = _a.disabled, onChange = _a.onChange, onHoverChange = _a.onHoverChange, allowClear = _a.allowClear, char = _a.char, inactiveColor = _a.inactiveColor, colors = _a.colors, texts = _a.texts, charClassName = _a.charClassName, textClassName = _a.textClassName, textPosition = _a.textPosition, cx = _a.classnames;
return (react_1.default.createElement("div", { className: cx('RatingControl', className) },
react_1.default.createElement(Rating_1.default, { classnames: cx, value: value, disabled: disabled, count: count, half: half, allowClear: allowClear, readOnly: readOnly, char: char, inactiveColor: inactiveColor, colors: colors, texts: texts, charClassName: charClassName, textClassName: textClassName, textPosition: textPosition, onChange: function (value) {
onChange && onChange(value);
}, onHoverChange: function (value) {
onHoverChange && onHoverChange(value);
} })));
};
RatingControl.defaultProps = {
value: 0,
count: 5,
half: false,
readOnly: false
};
return RatingControl;
}(react_1.default.Component));
exports.default = RatingControl;
var RatingControlRenderer = /** @class */ (function (_super) {
(0, tslib_1.__extends)(RatingControlRenderer, _super);
function RatingControlRenderer() {
return _super !== null && _super.apply(this, arguments) || this;
}
RatingControlRenderer = (0, tslib_1.__decorate)([
(0, Item_1.FormItem)({
type: 'input-rating',
sizeMutable: false
})
], RatingControlRenderer);
return RatingControlRenderer;
}(RatingControl));
exports.RatingControlRenderer = RatingControlRenderer;
//# sourceMappingURL=./renderers/Form/InputRating.js.map
;