Renames in Frontend

This commit is contained in:
Qstick
2020-05-15 23:32:52 -04:00
committed by ta264
parent ee4e44b81a
commit ee43ccf620
387 changed files with 4036 additions and 4364 deletions
@@ -10,18 +10,18 @@ import createCommandExecutingSelector from 'Store/Selectors/createCommandExecuti
import * as wantedActions from 'Store/Actions/wantedActions';
import { executeCommand } from 'Store/Actions/commandActions';
import { fetchQueueDetails, clearQueueDetails } from 'Store/Actions/queueActions';
import { fetchTrackFiles, clearTrackFiles } from 'Store/Actions/trackFileActions';
import { fetchBookFiles, clearBookFiles } from 'Store/Actions/bookFileActions';
import * as commandNames from 'Commands/commandNames';
import CutoffUnmet from './CutoffUnmet';
function createMapStateToProps() {
return createSelector(
(state) => state.wanted.cutoffUnmet,
createCommandExecutingSelector(commandNames.CUTOFF_UNMET_ALBUM_SEARCH),
(cutoffUnmet, isSearchingForCutoffUnmetAlbums) => {
createCommandExecutingSelector(commandNames.CUTOFF_UNMET_BOOK_SEARCH),
(cutoffUnmet, isSearchingForCutoffUnmetBooks) => {
return {
isSearchingForCutoffUnmetAlbums,
isSearchingForCutoffUnmetBooks,
isSaving: cutoffUnmet.items.filter((m) => m.isSaving).length > 1,
...cutoffUnmet
};
@@ -34,8 +34,8 @@ const mapDispatchToProps = {
executeCommand,
fetchQueueDetails,
clearQueueDetails,
fetchTrackFiles,
clearTrackFiles
fetchBookFiles,
clearBookFiles
};
class CutoffUnmetConnector extends Component {
@@ -50,7 +50,7 @@ class CutoffUnmetConnector extends Component {
gotoCutoffUnmetFirstPage
} = this.props;
registerPagePopulator(this.repopulate, ['trackFileUpdated']);
registerPagePopulator(this.repopulate, ['bookFileUpdated']);
if (useCurrentPage) {
fetchCutoffUnmet();
@@ -62,12 +62,12 @@ class CutoffUnmetConnector extends Component {
componentDidUpdate(prevProps) {
if (hasDifferentItems(prevProps.items, this.props.items)) {
const bookIds = selectUniqueIds(this.props.items, 'id');
const trackFileIds = selectUniqueIds(this.props.items, 'trackFileId');
const bookFileIds = selectUniqueIds(this.props.items, 'bookFileId');
this.props.fetchQueueDetails({ bookIds });
if (trackFileIds.length) {
this.props.fetchTrackFiles({ trackFileIds });
if (bookFileIds.length) {
this.props.fetchBookFiles({ bookFileIds });
}
}
}
@@ -76,7 +76,7 @@ class CutoffUnmetConnector extends Component {
unregisterPagePopulator(this.repopulate);
this.props.clearCutoffUnmet();
this.props.clearQueueDetails();
this.props.clearTrackFiles();
this.props.clearBookFiles();
}
//
@@ -127,14 +127,14 @@ class CutoffUnmetConnector extends Component {
onSearchSelectedPress = (selected) => {
this.props.executeCommand({
name: commandNames.ALBUM_SEARCH,
name: commandNames.BOOK_SEARCH,
bookIds: selected
});
}
onSearchAllCutoffUnmetPress = () => {
this.props.executeCommand({
name: commandNames.CUTOFF_UNMET_ALBUM_SEARCH
name: commandNames.CUTOFF_UNMET_BOOK_SEARCH
});
}
@@ -177,8 +177,8 @@ CutoffUnmetConnector.propTypes = {
executeCommand: PropTypes.func.isRequired,
fetchQueueDetails: PropTypes.func.isRequired,
clearQueueDetails: PropTypes.func.isRequired,
fetchTrackFiles: PropTypes.func.isRequired,
clearTrackFiles: PropTypes.func.isRequired
fetchBookFiles: PropTypes.func.isRequired,
clearBookFiles: PropTypes.func.isRequired
};
export default withCurrentPage(