Feat background collection update #427
1 changed files with 26 additions and 15 deletions
|
@ -19,7 +19,7 @@ import { creditsToString } from 'util/format-credits';
|
|||
import { batchActions } from 'util/batch-actions';
|
||||
import { createNormalizedClaimSearchKey } from 'util/claim';
|
||||
import { PAGE_SIZE } from 'constants/claim';
|
||||
import { selectPendingCollections } from 'redux/selectors/collections';
|
||||
import { selectPendingCollections, makeSelectEditedCollectionForId } from 'redux/selectors/collections';
|
||||
import {
|
||||
doFetchItemsInCollection,
|
||||
doFetchItemsInCollections,
|
||||
|
@ -838,9 +838,10 @@ export function doCollectionPublishUpdate(options: {
|
|||
tags?: Array<Tag>,
|
||||
languages?: Array<string>,
|
||||
claims?: Array<string>,
|
||||
}) {
|
||||
return (dispatch: Dispatch): Promise<any> => {
|
||||
}, isBackgroundUpdate?: boolean) {
|
||||
return (dispatch: Dispatch, getState: GetState): Promise<any> => {
|
||||
// TODO: implement one click update
|
||||
const state = getState();
|
||||
|
||||
const updateParams: {
|
||||
bid?: string,
|
||||
|
@ -853,7 +854,13 @@ export function doCollectionPublishUpdate(options: {
|
|||
languages?: Array<string>,
|
||||
claims?: Array<string>,
|
||||
clear_claims: boolean,
|
||||
} = {
|
||||
} = isBackgroundUpdate
|
||||
? {
|
||||
blocking: true,
|
||||
claim_id: options.claim_id,
|
||||
clear_claims: true,
|
||||
}
|
||||
: {
|
||||
bid: creditsToString(options.bid),
|
||||
title: options.title,
|
||||
thumbnail_url: options.thumbnail_url,
|
||||
|
@ -866,6 +873,10 @@ export function doCollectionPublishUpdate(options: {
|
|||
clear_claims: true,
|
||||
};
|
||||
|
||||
if (isBackgroundUpdate && updateParams.claim_id) {
|
||||
updateParams.claims = makeSelectEditedCollectionForId(updateParams.claim_id)(state);
|
||||
}
|
||||
|
||||
if (options.tags) {
|
||||
updateParams['tags'] = options.tags.map(tag => tag.name);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue