lbry-desktop/ui/js/selectors/file_info.js

173 lines
4.4 KiB
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import lbry from "lbry";
import { createSelector } from "reselect";
2017-05-01 08:26:09 +02:00
import {
selectClaimsByUri,
selectClaimListMineIsPending,
2017-05-01 08:26:09 +02:00
selectMyClaimsOutpoints,
2017-06-06 23:19:12 +02:00
} from "selectors/claims";
2017-04-28 17:14:44 +02:00
2017-06-06 06:21:55 +02:00
export const _selectState = state => state.fileInfo || {};
2017-04-28 17:14:44 +02:00
export const selectFileInfosByOutpoint = createSelector(
_selectState,
state => state.byOutpoint || {}
2017-06-06 06:21:55 +02:00
);
2017-04-28 17:14:44 +02:00
export const selectFileListIsPending = createSelector(
_selectState,
2017-06-06 23:19:12 +02:00
state => state.isFileListPending
2017-06-06 06:21:55 +02:00
);
export const selectFileListDownloadedOrPublishedIsPending = createSelector(
selectFileListIsPending,
selectClaimListMineIsPending,
2017-06-06 23:19:12 +02:00
(isFileListPending, isClaimListMinePending) =>
isFileListPending || isClaimListMinePending
2017-06-06 06:21:55 +02:00
);
2017-05-15 05:50:59 +02:00
export const selectFileInfoForUri = (state, props) => {
const claims = selectClaimsByUri(state),
2017-06-06 23:19:12 +02:00
claim = claims[props.uri],
byOutpoint = selectFileInfosByOutpoint(state),
2017-06-06 23:19:12 +02:00
outpoint = claim ? `${claim.txid}:${claim.nout}` : undefined;
return outpoint ? byOutpoint[outpoint] : undefined;
2017-06-06 06:21:55 +02:00
};
export const makeSelectFileInfoForUri = () => {
2017-06-06 23:19:12 +02:00
return createSelector(selectFileInfoForUri, fileInfo => fileInfo);
2017-06-06 06:21:55 +02:00
};
export const selectUrisDownloading = createSelector(
_selectState,
2017-06-06 23:19:12 +02:00
state => state.urisDownloading || {}
2017-06-06 06:21:55 +02:00
);
const selectDownloadingForUri = (state, props) => {
2017-06-06 23:19:12 +02:00
const byUri = selectUrisDownloading(state);
return byUri[props.uri];
2017-06-06 06:21:55 +02:00
};
export const makeSelectDownloadingForUri = () => {
return createSelector(
selectDownloadingForUri,
2017-06-06 23:19:12 +02:00
downloadingForUri => !!downloadingForUri
);
2017-06-06 06:21:55 +02:00
};
export const selectUrisLoading = createSelector(
_selectState,
2017-06-06 23:19:12 +02:00
state => state.urisLoading || {}
2017-06-06 06:21:55 +02:00
);
const selectLoadingForUri = (state, props) => {
2017-06-06 23:19:12 +02:00
const byUri = selectUrisLoading(state);
return byUri[props.uri];
2017-06-06 06:21:55 +02:00
};
export const makeSelectLoadingForUri = () => {
2017-06-06 23:19:12 +02:00
return createSelector(selectLoadingForUri, loading => !!loading);
2017-06-06 06:21:55 +02:00
};
export const selectFileInfosDownloaded = createSelector(
selectFileInfosByOutpoint,
selectMyClaimsOutpoints,
(byOutpoint, myClaimOutpoints) => {
2017-06-06 23:19:12 +02:00
const fileInfoList = [];
Object.values(byOutpoint).forEach(fileInfo => {
2017-06-06 23:19:12 +02:00
if (
fileInfo &&
myClaimOutpoints.indexOf(fileInfo.outpoint) === -1 &&
(fileInfo.completed || fileInfo.written_bytes)
) {
fileInfoList.push(fileInfo);
}
2017-06-06 23:19:12 +02:00
});
return fileInfoList;
}
2017-06-06 06:21:55 +02:00
);
2017-05-01 08:26:09 +02:00
export const selectFileInfosPendingPublish = createSelector(
_selectState,
2017-06-06 23:19:12 +02:00
state => {
return lbry.getPendingPublishes();
}
2017-06-06 06:21:55 +02:00
);
export const selectFileInfosPublished = createSelector(
selectFileInfosByOutpoint,
selectFileInfosPendingPublish,
2017-05-01 08:26:09 +02:00
selectMyClaimsOutpoints,
(byOutpoint, pendingFileInfos, outpoints) => {
2017-06-06 23:19:12 +02:00
const fileInfos = [];
2017-05-01 08:26:09 +02:00
outpoints.forEach(outpoint => {
const fileInfo = byOutpoint[outpoint];
if (fileInfo) fileInfos.push(fileInfo);
2017-06-06 23:19:12 +02:00
});
return [...fileInfos, ...pendingFileInfos];
2017-05-01 08:26:09 +02:00
}
2017-06-06 06:21:55 +02:00
);
// export const selectFileInfoForUri = (state, props) => {
// const claims = selectClaimsByUri(state),
// claim = claims[props.uri],
// fileInfos = selectAllFileInfos(state),
// outpoint = claim ? `${claim.txid}:${claim.nout}` : undefined;
// return outpoint && fileInfos ? fileInfos[outpoint] : undefined;
// };
export const selectFileInfosByUri = createSelector(
selectClaimsByUri,
selectAllFileInfos,
(claimsByUri, byOutpoint) => {
const fileInfos = {};
const uris = Object.keys(claimsByUri);
uris.forEach(uri => {
const claim = claimsByUri[uri];
if (claim) {
const outpoint = `${claim.txid}:${claim.nout}`;
const fileInfo = byOutpoint[outpoint];
if (fileInfo) fileInfos[uri] = fileInfo;
}
});
return fileInfos;
}
);
export const selectDownloadingFileInfos = createSelector(
selectUrisDownloading,
selectFileInfosByUri,
(urisDownloading, byUri) => {
const uris = Object.keys(urisDownloading);
const fileInfos = [];
uris.forEach(uri => {
const fileInfo = byUri[uri];
if (fileInfo) fileInfos.push(fileInfo);
});
return fileInfos;
}
);
export const selectTotalDownloadProgress = createSelector(
selectDownloadingFileInfos,
fileInfos => {
const progress = [];
fileInfos.forEach(fileInfo => {
progress.push(fileInfo.written_bytes / fileInfo.total_bytes * 100);
});
const totalProgress = progress.reduce((a, b) => a + b, 0);
if (fileInfos.length > 0) return totalProgress / fileInfos.length / 100.0;
else return -1;
}
);