mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 09:25:15 +00:00
228 lines
7.9 KiB
JavaScript
228 lines
7.9 KiB
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
var _extends = require('@babel/runtime/helpers/extends');
|
|
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
var index = require('../../dist/index-fe3694ff.cjs.dev.js');
|
|
var _classCallCheck = require('@babel/runtime/helpers/classCallCheck');
|
|
var _createClass = require('@babel/runtime/helpers/createClass');
|
|
var _inherits = require('@babel/runtime/helpers/inherits');
|
|
var React = require('react');
|
|
var base_dist_reactSelect = require('../../dist/Select-92d95971.cjs.dev.js');
|
|
var stateManager = require('../../dist/stateManager-80f4e9df.cjs.dev.js');
|
|
require('@emotion/react');
|
|
require('@babel/runtime/helpers/taggedTemplateLiteral');
|
|
require('@babel/runtime/helpers/typeof');
|
|
require('react-input-autosize');
|
|
require('react-dom');
|
|
require('@babel/runtime/helpers/toConsumableArray');
|
|
require('memoize-one');
|
|
|
|
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
|
|
|
var _extends__default = /*#__PURE__*/_interopDefault(_extends);
|
|
var _objectWithoutProperties__default = /*#__PURE__*/_interopDefault(_objectWithoutProperties);
|
|
var _defineProperty__default = /*#__PURE__*/_interopDefault(_defineProperty);
|
|
var _classCallCheck__default = /*#__PURE__*/_interopDefault(_classCallCheck);
|
|
var _createClass__default = /*#__PURE__*/_interopDefault(_createClass);
|
|
var _inherits__default = /*#__PURE__*/_interopDefault(_inherits);
|
|
var React__default = /*#__PURE__*/_interopDefault(React);
|
|
|
|
var defaultProps = {
|
|
cacheOptions: false,
|
|
defaultOptions: false,
|
|
filterOption: null,
|
|
isLoading: false
|
|
};
|
|
var makeAsyncSelect = function makeAsyncSelect(SelectComponent) {
|
|
var _class, _temp;
|
|
|
|
return _temp = _class = /*#__PURE__*/function (_Component) {
|
|
_inherits__default['default'](Async, _Component);
|
|
|
|
var _super = index._createSuper(Async);
|
|
|
|
function Async(props) {
|
|
var _this;
|
|
|
|
_classCallCheck__default['default'](this, Async);
|
|
|
|
_this = _super.call(this);
|
|
_this.select = void 0;
|
|
_this.lastRequest = void 0;
|
|
_this.mounted = false;
|
|
|
|
_this.handleInputChange = function (newValue, actionMeta) {
|
|
var _this$props = _this.props,
|
|
cacheOptions = _this$props.cacheOptions,
|
|
onInputChange = _this$props.onInputChange; // TODO
|
|
|
|
var inputValue = index.handleInputChange(newValue, actionMeta, onInputChange);
|
|
|
|
if (!inputValue) {
|
|
delete _this.lastRequest;
|
|
|
|
_this.setState({
|
|
inputValue: '',
|
|
loadedInputValue: '',
|
|
loadedOptions: [],
|
|
isLoading: false,
|
|
passEmptyOptions: false
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
if (cacheOptions && _this.state.optionsCache[inputValue]) {
|
|
_this.setState({
|
|
inputValue: inputValue,
|
|
loadedInputValue: inputValue,
|
|
loadedOptions: _this.state.optionsCache[inputValue],
|
|
isLoading: false,
|
|
passEmptyOptions: false
|
|
});
|
|
} else {
|
|
var request = _this.lastRequest = {};
|
|
|
|
_this.setState({
|
|
inputValue: inputValue,
|
|
isLoading: true,
|
|
passEmptyOptions: !_this.state.loadedInputValue
|
|
}, function () {
|
|
_this.loadOptions(inputValue, function (options) {
|
|
if (!_this.mounted) return;
|
|
if (request !== _this.lastRequest) return;
|
|
delete _this.lastRequest;
|
|
|
|
_this.setState(function (state) {
|
|
return {
|
|
isLoading: false,
|
|
loadedInputValue: inputValue,
|
|
loadedOptions: options || [],
|
|
passEmptyOptions: false,
|
|
optionsCache: options ? index._objectSpread2(index._objectSpread2({}, state.optionsCache), {}, _defineProperty__default['default']({}, inputValue, options)) : state.optionsCache
|
|
};
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
return inputValue;
|
|
};
|
|
|
|
_this.state = {
|
|
defaultOptions: Array.isArray(props.defaultOptions) ? props.defaultOptions : undefined,
|
|
inputValue: typeof props.inputValue !== 'undefined' ? props.inputValue : '',
|
|
isLoading: props.defaultOptions === true,
|
|
loadedOptions: [],
|
|
passEmptyOptions: false,
|
|
optionsCache: {},
|
|
prevDefaultOptions: undefined,
|
|
prevCacheOptions: undefined
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
_createClass__default['default'](Async, [{
|
|
key: "componentDidMount",
|
|
value: function componentDidMount() {
|
|
var _this2 = this;
|
|
|
|
this.mounted = true;
|
|
var defaultOptions = this.props.defaultOptions;
|
|
var inputValue = this.state.inputValue;
|
|
|
|
if (defaultOptions === true) {
|
|
this.loadOptions(inputValue, function (options) {
|
|
if (!_this2.mounted) return;
|
|
var isLoading = !!_this2.lastRequest;
|
|
|
|
_this2.setState({
|
|
defaultOptions: options || [],
|
|
isLoading: isLoading
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}, {
|
|
key: "componentWillUnmount",
|
|
value: function componentWillUnmount() {
|
|
this.mounted = false;
|
|
}
|
|
}, {
|
|
key: "focus",
|
|
value: function focus() {
|
|
this.select.focus();
|
|
}
|
|
}, {
|
|
key: "blur",
|
|
value: function blur() {
|
|
this.select.blur();
|
|
}
|
|
}, {
|
|
key: "loadOptions",
|
|
value: function loadOptions(inputValue, callback) {
|
|
var loadOptions = this.props.loadOptions;
|
|
if (!loadOptions) return callback();
|
|
var loader = loadOptions(inputValue, callback);
|
|
|
|
if (loader && typeof loader.then === 'function') {
|
|
loader.then(callback, function () {
|
|
return callback();
|
|
});
|
|
}
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
var _this3 = this;
|
|
|
|
var _this$props2 = this.props;
|
|
_this$props2.loadOptions;
|
|
var isLoadingProp = _this$props2.isLoading,
|
|
props = _objectWithoutProperties__default['default'](_this$props2, ["loadOptions", "isLoading"]);
|
|
|
|
var _this$state = this.state,
|
|
defaultOptions = _this$state.defaultOptions,
|
|
inputValue = _this$state.inputValue,
|
|
isLoading = _this$state.isLoading,
|
|
loadedInputValue = _this$state.loadedInputValue,
|
|
loadedOptions = _this$state.loadedOptions,
|
|
passEmptyOptions = _this$state.passEmptyOptions;
|
|
var options = passEmptyOptions ? [] : inputValue && loadedInputValue ? loadedOptions : defaultOptions || [];
|
|
return /*#__PURE__*/React__default['default'].createElement(SelectComponent, _extends__default['default']({}, props, {
|
|
ref: function ref(_ref) {
|
|
_this3.select = _ref;
|
|
},
|
|
options: options,
|
|
isLoading: isLoading || isLoadingProp,
|
|
onInputChange: this.handleInputChange
|
|
}));
|
|
}
|
|
}], [{
|
|
key: "getDerivedStateFromProps",
|
|
value: function getDerivedStateFromProps(props, state) {
|
|
var newCacheOptionsState = props.cacheOptions !== state.prevCacheOptions ? {
|
|
prevCacheOptions: props.cacheOptions,
|
|
optionsCache: {}
|
|
} : {};
|
|
var newDefaultOptionsState = props.defaultOptions !== state.prevDefaultOptions ? {
|
|
prevDefaultOptions: props.defaultOptions,
|
|
defaultOptions: Array.isArray(props.defaultOptions) ? props.defaultOptions : undefined
|
|
} : {};
|
|
return index._objectSpread2(index._objectSpread2({}, newCacheOptionsState), newDefaultOptionsState);
|
|
}
|
|
}]);
|
|
|
|
return Async;
|
|
}(React.Component), _class.defaultProps = defaultProps, _temp;
|
|
};
|
|
var SelectState = stateManager.manageState(base_dist_reactSelect.Select);
|
|
var Async = makeAsyncSelect(SelectState);
|
|
|
|
exports.default = Async;
|
|
exports.defaultProps = defaultProps;
|
|
exports.makeAsyncSelect = makeAsyncSelect;
|