mirror of
https://github.com/Readarr/Readarr
synced 2025-12-30 20:25:18 +01:00
102 lines
2.4 KiB
JavaScript
102 lines
2.4 KiB
JavaScript
import _ from 'lodash';
|
|
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { createSelector } from 'reselect';
|
|
import { clearOptions, defaultState, fetchOptions } from 'Store/Actions/providerOptionActions';
|
|
import BookshelfInput from './BookshelfInput';
|
|
|
|
function createMapStateToProps() {
|
|
return createSelector(
|
|
(state) => state.providerOptions.bookshelves || defaultState,
|
|
(state, props) => props.name,
|
|
(bookshelves, name) => {
|
|
const {
|
|
items,
|
|
...otherState
|
|
} = bookshelves;
|
|
return ({
|
|
helptext: items && items.helptext && items.helptext[name] ? items.helptext[name] : '',
|
|
user: items && items.user ? items.user : '',
|
|
items: items && items.shelves ? items.shelves : [],
|
|
...otherState
|
|
});
|
|
}
|
|
);
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
dispatchFetchOptions: fetchOptions,
|
|
dispatchClearOptions: clearOptions
|
|
};
|
|
|
|
class BookshelfInputConnector extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
componentDidMount = () => {
|
|
if (this._getAccessToken(this.props)) {
|
|
this._populate();
|
|
}
|
|
};
|
|
|
|
componentDidUpdate(prevProps, prevState) {
|
|
const newToken = this._getAccessToken(this.props);
|
|
const oldToken = this._getAccessToken(prevProps);
|
|
if (newToken && newToken !== oldToken) {
|
|
this._populate();
|
|
}
|
|
}
|
|
|
|
componentWillUnmount = () => {
|
|
this.props.dispatchClearOptions({ section: 'bookshelves' });
|
|
};
|
|
|
|
//
|
|
// Control
|
|
|
|
_populate() {
|
|
const {
|
|
provider,
|
|
providerData,
|
|
dispatchFetchOptions,
|
|
name
|
|
} = this.props;
|
|
|
|
dispatchFetchOptions({
|
|
section: 'bookshelves',
|
|
action: 'getBookshelves',
|
|
queryParams: { name },
|
|
provider,
|
|
providerData
|
|
});
|
|
}
|
|
|
|
_getAccessToken(props) {
|
|
return _.filter(props.providerData.fields, { name: 'accessToken' })[0].value;
|
|
}
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
return (
|
|
<BookshelfInput
|
|
{...this.props}
|
|
onRefreshPress={this.onRefreshPress}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
BookshelfInputConnector.propTypes = {
|
|
provider: PropTypes.string.isRequired,
|
|
providerData: PropTypes.object.isRequired,
|
|
name: PropTypes.string.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
dispatchFetchOptions: PropTypes.func.isRequired,
|
|
dispatchClearOptions: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default connect(createMapStateToProps, mapDispatchToProps)(BookshelfInputConnector);
|