UNPKG

sn-controls-react

Version:

React controls for sensenet ECM

61 lines 2.3 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); var React = require("react"); var CheckboxGroup = (function (_super) { __extends(CheckboxGroup, _super); function CheckboxGroup(props) { var _this = _super.call(this, props) || this; _this.state = {}; return _this; } CheckboxGroup.prototype.getSelectedValue = function () { this.props.options.map(function (option) { if (option.Selected) { return option.Value; } }); }; CheckboxGroup.prototype.getTextByValue = function (value) { var text = ''; if (value) { this.props.options.map(function (option) { if (option.Value === value.toString()) { text = option.Text; } }); } else { this.props.options.map(function (option) { if (option.Selected) { text = option.Text; } }); } return text; }; CheckboxGroup.prototype.render = function () { switch (this.props['data-actionName']) { case 'edit': return (React.createElement("span", null, "under consctruction")); case 'new': return (React.createElement("span", null, "under consctruction")); case 'browse': return (React.createElement("span", null, "under consctruction")); default: return (React.createElement("span", null, "under consctruction")); } }; return CheckboxGroup; }(React.Component)); exports.CheckboxGroup = CheckboxGroup; //# sourceMappingURL=CheckboxGroup.js.map