support search finding pending claims

This commit is contained in:
zeppi 2020-12-03 19:25:41 -05:00
parent 92a4263c90
commit 034838a23c
4 changed files with 39 additions and 0 deletions

17
dist/bundle.es.js vendored
View file

@ -2457,6 +2457,15 @@ const selectPlayingUri = reselect.createSelector(selectState$1, state => state.p
const selectChannelClaimCounts = reselect.createSelector(selectState$1, state => state.channelClaimCounts || {});
const makeSelectPendingClaimUrlForName = name => reselect.createSelector(selectPendingIds, selectClaimsById, (pending, claims) => {
const pendingClaims = pending.map(id => claims[id]);
const matchingClaim = pendingClaims.find(claim => {
const { streamName } = parseURI(claim.permanent_url);
return name === streamName;
});
return matchingClaim && matchingClaim.permanent_url;
});
const makeSelectTotalItemsForChannel = uri => reselect.createSelector(selectChannelClaimCounts, byUri => byUri && byUri[uri]);
const makeSelectTotalPagesForChannel = (uri, pageSize = 10) => reselect.createSelector(selectChannelClaimCounts, byUri => byUri && byUri[uri] && Math.ceil(byUri[uri] / pageSize));
@ -3684,6 +3693,12 @@ function doRepost(options) {
repostClaim
}
});
dispatch({
type: UPDATE_PENDING_CLAIMS,
data: {
claims: [repostClaim]
}
});
dispatch(doFetchClaimListMine(1, 10));
resolve(repostClaim);
@ -6222,6 +6237,7 @@ exports.makeSelectNsfwCountForChannel = makeSelectNsfwCountForChannel;
exports.makeSelectNsfwCountFromUris = makeSelectNsfwCountFromUris;
exports.makeSelectOmittedCountForChannel = makeSelectOmittedCountForChannel;
exports.makeSelectPendingAmountByUri = makeSelectPendingAmountByUri;
exports.makeSelectPendingClaimUrlForName = makeSelectPendingClaimUrlForName;
exports.makeSelectPermanentUrlForUri = makeSelectPermanentUrlForUri;
exports.makeSelectPublishFormValue = makeSelectPublishFormValue;
exports.makeSelectReflectingClaimForUri = makeSelectReflectingClaimForUri;
@ -6313,6 +6329,7 @@ exports.selectMyClaimsWithoutChannels = selectMyClaimsWithoutChannels;
exports.selectMyPurchases = selectMyPurchases;
exports.selectMyPurchasesCount = selectMyPurchasesCount;
exports.selectMyStreamUrlsCount = selectMyStreamUrlsCount;
exports.selectPendingIds = selectPendingIds;
exports.selectPendingSupportTransactions = selectPendingSupportTransactions;
exports.selectPlayingUri = selectPlayingUri;
exports.selectPublishFormValues = selectPublishFormValues;

View file

@ -161,6 +161,7 @@ export {
makeSelectTagInClaimOrChannelForUri,
makeSelectContentTypeForUri,
makeSelectIsUriResolving,
makeSelectPendingClaimUrlForName,
makeSelectTotalItemsForChannel,
makeSelectTotalPagesForChannel,
makeSelectNsfwCountFromUris,
@ -181,6 +182,7 @@ export {
makeSelectClaimWasPurchased,
makeSelectAbandoningClaimById,
makeSelectIsAbandoningClaimForUri,
selectPendingIds,
selectReflectingById,
selectClaimsById,
selectClaimsByUri,

View file

@ -611,6 +611,12 @@ export function doRepost(options: StreamRepostOptions) {
repostClaim,
},
});
dispatch({
type: ACTIONS.UPDATE_PENDING_CLAIMS,
data: {
claims: [repostClaim],
},
});
dispatch(doFetchClaimListMine(1, 10));
resolve(repostClaim);

View file

@ -555,6 +555,20 @@ export const selectChannelClaimCounts = createSelector(
state => state.channelClaimCounts || {}
);
export const makeSelectPendingClaimUrlForName = (name: string) =>
createSelector(
selectPendingIds,
selectClaimsById,
(pending, claims) => {
const pendingClaims = pending.map(id => claims[id]);
const matchingClaim = pendingClaims.find(claim => {
const { streamName } = parseURI(claim.permanent_url);
return name === streamName;
});
return matchingClaim && matchingClaim.permanent_url;
}
);
export const makeSelectTotalItemsForChannel = (uri: string) =>
createSelector(
selectChannelClaimCounts,