UNPKG

react-widgetconfigurator

Version:

A React app for to generate out of box widgets

78 lines (57 loc) 3.72 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = undefined; 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; }; }(); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _WidgetSelection = require('./WidgetSelection.js'); var _WidgetSelection2 = _interopRequireDefault(_WidgetSelection); var _Auth = require('./Auth'); var _Auth2 = _interopRequireDefault(_Auth); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 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; } var WidgetInit = function (_Component) { _inherits(WidgetInit, _Component); function WidgetInit(props) { _classCallCheck(this, WidgetInit); var _this = _possibleConstructorReturn(this, (WidgetInit.__proto__ || Object.getPrototypeOf(WidgetInit)).call(this, props)); _this.state = { profilefields: "" }; return _this; } _createClass(WidgetInit, [{ key: 'componentDidMount', value: function componentDidMount() { var profilefields = this.props.profilefields; // console.log(pf.usertoken.find(x=>x.FieldName=="OrgID").Value); this.setState({ profilefields: profilefields }); } }, { key: 'render', value: function render() { var auth = new _Auth2.default(); var widgetcomponent = _react2.default.createElement('div', null); if (this.state.profilefields != "") { // let pfarray=Array.from(this.state.profilefields); // let orgid=Array.from(this.state.profilefields).find(x=>x.FieldName=="OrgID").Value; var orgid = this.state.profilefields; widgetcomponent = orgid !== "" ? _react2.default.createElement(_WidgetSelection2.default, { usertoken: orgid }) : _react2.default.createElement( 'div', null, 'Please email to svemoory@mlslistings.com with your id ', auth.currentUser().oid, ' to activate your account.' ); } return widgetcomponent; } }]); return WidgetInit; }(_react.Component); exports.default = WidgetInit; module.exports = exports['default'];