create makeSelectClaimHasSource
This commit is contained in:
parent
638a78695a
commit
629c3273f5
4 changed files with 27 additions and 57 deletions
38
dist/bundle.es.js
vendored
38
dist/bundle.es.js
vendored
|
@ -2674,6 +2674,14 @@ const makeSelectTagInClaimOrChannelForUri = (uri, tag) => reselect.createSelecto
|
|||
return claimTags.includes(tag) || channelTags.includes(tag);
|
||||
});
|
||||
|
||||
const makeSelectClaimHasSource = uri => reselect.createSelector(makeSelectClaimForUri(uri), claim => {
|
||||
if (!claim) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return Boolean(claim.value.source);
|
||||
});
|
||||
|
||||
const makeSelectTotalStakedAmountForChannelUri = uri => reselect.createSelector(makeSelectClaimForUri(uri), claim => {
|
||||
if (!claim || !claim.amount || !claim.meta || !claim.meta.support_amount) {
|
||||
return 0;
|
||||
|
@ -4832,34 +4840,7 @@ const doPublish = (success, fail, preview) => (dispatch, getState) => {
|
|||
|
||||
// Only pass file on new uploads, not metadata only edits.
|
||||
// The sdk will figure it out
|
||||
if (filePath) publishPayload.file_path = filePath;
|
||||
|
||||
if (isLivestreamPublish) {
|
||||
var d = new Date();
|
||||
|
||||
// Set it to one month in future so it's hidden in apps
|
||||
d.setFullYear(d.getFullYear() - 10);
|
||||
d.setHours(0, 0, 0);
|
||||
d.setMilliseconds(0);
|
||||
|
||||
const releaseTimeInSeconds = d / 1000;
|
||||
|
||||
publishPayload.release_time = releaseTimeInSeconds;
|
||||
|
||||
if (publishPayload.tags) {
|
||||
if (!publishPayload.tags.includes('odysee-livestream')) {
|
||||
publishPayload.tags.push('odysee-livestream');
|
||||
}
|
||||
} else {
|
||||
publishPayload.tags = ['odysee-livestream'];
|
||||
}
|
||||
} else if (publishPayload.tags && publishPayload.tags.includes('odysee-livestream')) {
|
||||
let newReleaseTime = new Date();
|
||||
newReleaseTime.setMilliseconds(0);
|
||||
publishPayload.release_time = newReleaseTime / 1000;
|
||||
|
||||
publishPayload.tags = publishPayload.tags.filter(tag => tag !== 'odysee-livestream');
|
||||
}
|
||||
if (filePath && !isLivestreamPublish) publishPayload.file_path = filePath;
|
||||
|
||||
if (preview) {
|
||||
publishPayload.preview = true;
|
||||
|
@ -6617,6 +6598,7 @@ exports.makeSelectChannelForClaimUri = makeSelectChannelForClaimUri;
|
|||
exports.makeSelectChannelPermUrlForClaimUri = makeSelectChannelPermUrlForClaimUri;
|
||||
exports.makeSelectClaimForClaimId = makeSelectClaimForClaimId;
|
||||
exports.makeSelectClaimForUri = makeSelectClaimForUri;
|
||||
exports.makeSelectClaimHasSource = makeSelectClaimHasSource;
|
||||
exports.makeSelectClaimIsMine = makeSelectClaimIsMine;
|
||||
exports.makeSelectClaimIsNsfw = makeSelectClaimIsNsfw;
|
||||
exports.makeSelectClaimIsPending = makeSelectClaimIsPending;
|
||||
|
|
|
@ -188,6 +188,7 @@ export {
|
|||
makeSelectClaimWasPurchased,
|
||||
makeSelectAbandoningClaimById,
|
||||
makeSelectIsAbandoningClaimForUri,
|
||||
makeSelectClaimHasSource,
|
||||
selectPendingIds,
|
||||
selectReflectingById,
|
||||
makeSelectClaimForClaimId,
|
||||
|
|
|
@ -371,34 +371,7 @@ export const doPublish = (success: Function, fail: Function, preview: Function)
|
|||
|
||||
// Only pass file on new uploads, not metadata only edits.
|
||||
// The sdk will figure it out
|
||||
if (filePath) publishPayload.file_path = filePath;
|
||||
|
||||
if (isLivestreamPublish) {
|
||||
var d = new Date();
|
||||
|
||||
// Set it to one month in future so it's hidden in apps
|
||||
d.setFullYear(d.getFullYear() - 10);
|
||||
d.setHours(0, 0, 0);
|
||||
d.setMilliseconds(0);
|
||||
|
||||
const releaseTimeInSeconds = d / 1000;
|
||||
|
||||
publishPayload.release_time = releaseTimeInSeconds;
|
||||
|
||||
if (publishPayload.tags) {
|
||||
if (!publishPayload.tags.includes('odysee-livestream')) {
|
||||
publishPayload.tags.push('odysee-livestream');
|
||||
}
|
||||
} else {
|
||||
publishPayload.tags = ['odysee-livestream'];
|
||||
}
|
||||
} else if (publishPayload.tags && publishPayload.tags.includes('odysee-livestream')) {
|
||||
let newReleaseTime = new Date();
|
||||
newReleaseTime.setMilliseconds(0);
|
||||
publishPayload.release_time = newReleaseTime / 1000;
|
||||
|
||||
publishPayload.tags = publishPayload.tags.filter(tag => tag !== 'odysee-livestream');
|
||||
}
|
||||
if (filePath && !isLivestreamPublish) publishPayload.file_path = filePath;
|
||||
|
||||
if (preview) {
|
||||
publishPayload.preview = true;
|
||||
|
|
|
@ -127,7 +127,9 @@ export const makeSelectClaimForUri = (uri: string, returnRepost: boolean = true)
|
|||
|
||||
const repostedClaim = claim && claim.reposted_claim;
|
||||
if (repostedClaim && returnRepost) {
|
||||
const channelUrl = claim.signing_channel && (claim.signing_channel.canonical_url || claim.signing_channel.permanent_url);
|
||||
const channelUrl =
|
||||
claim.signing_channel &&
|
||||
(claim.signing_channel.canonical_url || claim.signing_channel.permanent_url);
|
||||
|
||||
return {
|
||||
...repostedClaim,
|
||||
|
@ -851,6 +853,18 @@ export const makeSelectTagInClaimOrChannelForUri = (uri: string, tag: string) =>
|
|||
}
|
||||
);
|
||||
|
||||
export const makeSelectClaimHasSource = (uri: string) =>
|
||||
createSelector(
|
||||
makeSelectClaimForUri(uri),
|
||||
claim => {
|
||||
if (!claim) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return Boolean(claim.value.source);
|
||||
}
|
||||
);
|
||||
|
||||
export const makeSelectTotalStakedAmountForChannelUri = (uri: string) =>
|
||||
createSelector(
|
||||
makeSelectClaimForUri(uri),
|
||||
|
|
Loading…
Reference in a new issue