@atlaskit/global-search
Version:
A cross-product search component (batteries included)
41 lines (31 loc) • 2.01 kB
JavaScript
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
import _createClass from "@babel/runtime/helpers/createClass";
import _inherits from "@babel/runtime/helpers/inherits";
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
import React from 'react';
import { IntlProvider, injectIntl } from 'react-intl';
import { getMessagesForLocale } from '../util/i18n-util';
var MessagesIntlProvider = /*#__PURE__*/function (_React$Component) {
_inherits(MessagesIntlProvider, _React$Component);
var _super = _createSuper(MessagesIntlProvider);
function MessagesIntlProvider() {
_classCallCheck(this, MessagesIntlProvider);
return _super.apply(this, arguments);
}
_createClass(MessagesIntlProvider, [{
key: "render",
value: function render() {
var _this$props = this.props,
intl = _this$props.intl,
children = _this$props.children;
return /*#__PURE__*/React.createElement(IntlProvider, {
messages: getMessagesForLocale(intl.locale)
}, children);
}
}]);
return MessagesIntlProvider;
}(React.Component);
export default injectIntl(MessagesIntlProvider);