mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +01:00
* History Added * History Cleanup * History Mark Failed Fix * History Lint Fix * Search Tab Initial * Interactive Search Cleanup * Files Tab + Small Backend change to MovieFile api * Reverse Movie History Items * Grabbed files are not grabbable again. * Partial movie title outline + Search not updating fix * Lint Fix + InteractiveSearch refactor * Rename movieLanguage.js to MovieLanguage.js * Fixes for qstick's comments * Rename language selector to allow for const languages * Qstick comment changes. * Activity Tabs - Language Column fixed * Movie Details - MoveStatusLabel fixed * Spaces + Lower Case added * fixed DownloadAllowed * Added padding to history and file tables * Fix class => className * Updated search to not refresh unless switching movie * lint fix * File Tab Converted to Inline Editting * FIles tab fix + Alt Titles tab implemented * lint fix * Cleanup via qstick request
87 lines
2.1 KiB
JavaScript
87 lines
2.1 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 { fetchLanguages } from 'Store/Actions/settingsActions';
|
|
import { updateMovieFiles } from 'Store/Actions/movieFileActions';
|
|
import SelectLanguageModalContent from './SelectLanguageModalContent';
|
|
|
|
function createMapStateToProps() {
|
|
return createSelector(
|
|
(state) => state.settings.languages,
|
|
(languages) => {
|
|
const {
|
|
isFetching,
|
|
isPopulated,
|
|
error,
|
|
items
|
|
} = languages;
|
|
|
|
return {
|
|
isFetching,
|
|
isPopulated,
|
|
error,
|
|
items
|
|
};
|
|
}
|
|
);
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
dispatchFetchLanguages: fetchLanguages,
|
|
dispatchupdateMovieFiles: updateMovieFiles
|
|
};
|
|
|
|
class SelectLanguageModalContentConnector extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
componentDidMount = () => {
|
|
if (!this.props.isPopulated) {
|
|
this.props.dispatchFetchLanguages();
|
|
}
|
|
}
|
|
|
|
//
|
|
// Listeners
|
|
|
|
onLanguageSelect = ({ value }) => {
|
|
const languageId = parseInt(value);
|
|
|
|
const language = _.find(this.props.items,
|
|
(item) => item.id === languageId);
|
|
const languages = [language];
|
|
const movieFileIds = this.props.ids;
|
|
|
|
this.props.dispatchupdateMovieFiles({ movieFileIds, languages });
|
|
|
|
this.props.onModalClose(true);
|
|
}
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
return (
|
|
<SelectLanguageModalContent
|
|
{...this.props}
|
|
onLanguageSelect={this.onLanguageSelect}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
SelectLanguageModalContentConnector.propTypes = {
|
|
ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
isFetching: PropTypes.bool.isRequired,
|
|
isPopulated: PropTypes.bool.isRequired,
|
|
error: PropTypes.object,
|
|
items: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
dispatchFetchLanguages: PropTypes.func.isRequired,
|
|
dispatchupdateMovieFiles: PropTypes.func.isRequired,
|
|
onModalClose: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default connect(createMapStateToProps, mapDispatchToProps)(SelectLanguageModalContentConnector);
|