|
|
@ -16,7 +16,7 @@ import AuthorIndex from './AuthorIndex';
|
|
|
|
function createMapStateToProps() {
|
|
|
|
function createMapStateToProps() {
|
|
|
|
return createSelector(
|
|
|
|
return createSelector(
|
|
|
|
createAuthorClientSideCollectionItemsSelector('authorIndex'),
|
|
|
|
createAuthorClientSideCollectionItemsSelector('authorIndex'),
|
|
|
|
createCommandExecutingSelector(commandNames.REFRESH_AUTHOR),
|
|
|
|
createCommandExecutingSelector(commandNames.BULK_REFRESH_AUTHOR),
|
|
|
|
createCommandExecutingSelector(commandNames.RSS_SYNC),
|
|
|
|
createCommandExecutingSelector(commandNames.RSS_SYNC),
|
|
|
|
createCommandExecutingSelector(commandNames.RENAME_AUTHOR),
|
|
|
|
createCommandExecutingSelector(commandNames.RENAME_AUTHOR),
|
|
|
|
createCommandExecutingSelector(commandNames.RETAG_AUTHOR),
|
|
|
|
createCommandExecutingSelector(commandNames.RETAG_AUTHOR),
|
|
|
@ -24,17 +24,17 @@ function createMapStateToProps() {
|
|
|
|
(
|
|
|
|
(
|
|
|
|
author,
|
|
|
|
author,
|
|
|
|
isRefreshingAuthor,
|
|
|
|
isRefreshingAuthor,
|
|
|
|
|
|
|
|
isRssSyncExecuting,
|
|
|
|
isOrganizingAuthor,
|
|
|
|
isOrganizingAuthor,
|
|
|
|
isRetaggingAuthor,
|
|
|
|
isRetaggingAuthor,
|
|
|
|
isRssSyncExecuting,
|
|
|
|
|
|
|
|
dimensionsState
|
|
|
|
dimensionsState
|
|
|
|
) => {
|
|
|
|
) => {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
...author,
|
|
|
|
...author,
|
|
|
|
isRefreshingAuthor,
|
|
|
|
isRefreshingAuthor,
|
|
|
|
|
|
|
|
isRssSyncExecuting,
|
|
|
|
isOrganizingAuthor,
|
|
|
|
isOrganizingAuthor,
|
|
|
|
isRetaggingAuthor,
|
|
|
|
isRetaggingAuthor,
|
|
|
|
isRssSyncExecuting,
|
|
|
|
|
|
|
|
isSmallScreen: dimensionsState.isSmallScreen
|
|
|
|
isSmallScreen: dimensionsState.isSmallScreen
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|