UNPKG

auth0-lock

Version:
99 lines (96 loc) 7.22 kB
"use strict"; function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _propTypes = _interopRequireDefault(require("prop-types")); var _react = _interopRequireDefault(require("react")); var _email_input = _interopRequireDefault(require("../../ui/input/email_input")); var c = _interopRequireWildcard(require("../index")); var _index2 = require("../../store/index"); var l = _interopRequireWildcard(require("../../core/index")); var _email = require("../email"); var _avatar = require("../../avatar"); function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); } function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; } function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); } function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } } function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); } function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); } function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; } function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); } function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); } function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } var EmailPane = exports.default = /*#__PURE__*/function (_React$Component) { function EmailPane() { _classCallCheck(this, EmailPane); return _callSuper(this, EmailPane, arguments); } _inherits(EmailPane, _React$Component); return _createClass(EmailPane, [{ key: "componentDidMount", value: function componentDidMount() { var _this$props = this.props, lock = _this$props.lock, strictValidation = _this$props.strictValidation; if (l.ui.avatar(lock) && c.email(lock)) { (0, _avatar.requestAvatar)(l.id(lock), c.email(lock)); } (0, _index2.swap)(_index2.updateEntity, 'lock', l.id(lock), _email.setEmail, c.email(lock), strictValidation); } }, { key: "handleChange", value: function handleChange(e) { var _this$props2 = this.props, lock = _this$props2.lock, strictValidation = _this$props2.strictValidation; if (l.ui.avatar(lock)) { (0, _avatar.debouncedRequestAvatar)(l.id(lock), e.target.value); } (0, _index2.swap)(_index2.updateEntity, 'lock', l.id(lock), _email.setEmail, e.target.value, strictValidation); } }, { key: "render", value: function render() { var _this$props3 = this.props, i18n = _this$props3.i18n, lock = _this$props3.lock, placeholder = _this$props3.placeholder, _this$props3$forceInv = _this$props3.forceInvalidVisibility, forceInvalidVisibility = _this$props3$forceInv === void 0 ? false : _this$props3$forceInv; var allowAutocomplete = l.ui.allowAutocomplete(lock); var field = c.getField(lock, 'email'); var value = field.get('value', ''); var valid = field.get('valid', true); // TODO: invalidErrorHint and blankErrorHint are deprecated. // They are kept for backwards compatibility in the code for the customers overwriting // them with languageDictionary. They can be removed in the next major release. var errMessage = value ? i18n.str('invalidErrorHint') || i18n.str('invalidEmailErrorHint') : i18n.str('blankErrorHint') || i18n.str('blankEmailErrorHint'); var invalidHint = field.get('invalidHint') || errMessage; var isValid = (!forceInvalidVisibility || valid) && !c.isFieldVisiblyInvalid(lock, 'email'); // Hide the error message for the blank email in Enterprise HRD only mode when the password field is hidden. isValid = forceInvalidVisibility && value === '' ? true : isValid; return /*#__PURE__*/_react.default.createElement(_email_input.default, { lockId: l.id(lock), value: value, invalidHint: invalidHint, isValid: isValid, onChange: this.handleChange.bind(this), placeholder: placeholder, autoComplete: allowAutocomplete, disabled: l.submitting(lock) }); } }]); }(_react.default.Component); EmailPane.propTypes = { i18n: _propTypes.default.object.isRequired, lock: _propTypes.default.object.isRequired, placeholder: _propTypes.default.string.isRequired, strictValidation: _propTypes.default.bool.isRequired };