Merge pull request #370 from lbryio/downloading-by-outpoint

Track downloading files by outpoint
This commit is contained in:
Jeremy Kauffman 2017-07-22 19:07:14 -04:00 committed by GitHub
commit 6967059c7e
6 changed files with 56 additions and 27 deletions

View file

@ -28,6 +28,9 @@ Web UI version numbers should always match the corresponding version of LBRY App
* Restored feedback on claim amounts * Restored feedback on claim amounts
* Fixed hiding price input when Free is checked on publish form * Fixed hiding price input when Free is checked on publish form
* Fixed hiding new identity fields on publish form * Fixed hiding new identity fields on publish form
* Fixed files on downloaded tab not showing download progress
* Fixed downloading files that are deleted not being removed from the downloading list
* Fixed download progress bar not being cleared when a downloading file is deleted
### Deprecated ### Deprecated
* *

View file

@ -5,7 +5,7 @@ import lbryuri from "lbryuri";
import { selectBalance } from "selectors/wallet"; import { selectBalance } from "selectors/wallet";
import { import {
selectFileInfoForUri, selectFileInfoForUri,
selectUrisDownloading, selectDownloadingByOutpoint,
} from "selectors/file_info"; } from "selectors/file_info";
import { selectResolvingUris } from "selectors/content"; import { selectResolvingUris } from "selectors/content";
import { selectCostInfoForUri } from "selectors/cost_info"; import { selectCostInfoForUri } from "selectors/cost_info";
@ -265,8 +265,9 @@ export function doPurchaseUri(uri, purchaseModalName) {
const state = getState(); const state = getState();
const balance = selectBalance(state); const balance = selectBalance(state);
const fileInfo = selectFileInfoForUri(state, { uri }); const fileInfo = selectFileInfoForUri(state, { uri });
const downloadingByUri = selectUrisDownloading(state); const downloadingByOutpoint = selectDownloadingByOutpoint(state);
const alreadyDownloading = !!downloadingByUri[uri]; const alreadyDownloading =
fileInfo && !!downloadingByOutpoint[fileInfo.outpoint];
// we already fully downloaded the file. // we already fully downloaded the file.
if (fileInfo && fileInfo.completed) { if (fileInfo && fileInfo.completed) {

View file

@ -10,8 +10,11 @@ import {
selectIsFetchingFileList, selectIsFetchingFileList,
selectFileInfosByOutpoint, selectFileInfosByOutpoint,
selectUrisLoading, selectUrisLoading,
selectTotalDownloadProgress,
} from "selectors/file_info"; } from "selectors/file_info";
import { doCloseModal } from "actions/app"; import { doCloseModal, doHistoryBack } from "actions/app";
import setProgressBar from "util/setProgressBar";
import batchActions from "util/batchActions";
const { shell } = require("electron"); const { shell } = require("electron");
@ -119,7 +122,22 @@ export function doDeleteFile(outpoint, deleteFromComputer, abandonClaim) {
}, },
}); });
dispatch(doCloseModal()); const totalProgress = selectTotalDownloadProgress(getState());
setProgressBar(totalProgress);
};
}
export function doDeleteFileAndGoBack(
fileInfo,
deleteFromComputer,
abandonClaim
) {
return function(dispatch, getState) {
const actions = [];
actions.push(doCloseModal());
actions.push(doHistoryBack());
actions.push(doDeleteFile(fileInfo, deleteFromComputer, abandonClaim));
dispatch(batchActions(...actions));
}; };
} }

View file

@ -1,8 +1,9 @@
import React from "react"; import React from "react";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { doCloseModal, doHistoryBack } from "actions/app"; import { doCloseModal, doHistoryBack } from "actions/app";
import { doDeleteFile } from "actions/file_info"; import { doDeleteFileAndGoBack } from "actions/file_info";
import { makeSelectClaimForUriIsMine } from "selectors/claims"; import { makeSelectClaimForUriIsMine } from "selectors/claims";
import batchActions from "util/batchActions";
import ModalRemoveFile from "./view"; import ModalRemoveFile from "./view";
@ -19,8 +20,7 @@ const makeSelect = () => {
const perform = dispatch => ({ const perform = dispatch => ({
closeModal: () => dispatch(doCloseModal()), closeModal: () => dispatch(doCloseModal()),
deleteFile: (fileInfo, deleteFromComputer, abandonClaim) => { deleteFile: (fileInfo, deleteFromComputer, abandonClaim) => {
dispatch(doHistoryBack()); dispatch(doDeleteFileAndGoBack(fileInfo, deleteFromComputer, abandonClaim));
dispatch(doDeleteFile(fileInfo, deleteFromComputer, abandonClaim));
}, },
}); });

View file

@ -58,15 +58,15 @@ reducers[types.DOWNLOADING_STARTED] = function(state, action) {
const { uri, outpoint, fileInfo } = action.data; const { uri, outpoint, fileInfo } = action.data;
const newByOutpoint = Object.assign({}, state.byOutpoint); const newByOutpoint = Object.assign({}, state.byOutpoint);
const newDownloading = Object.assign({}, state.urisDownloading); const newDownloading = Object.assign({}, state.downloadingByOutpoin);
const newLoading = Object.assign({}, state.urisLoading); const newLoading = Object.assign({}, state.urisLoading);
newDownloading[uri] = true; newDownloading[outpoint] = true;
newByOutpoint[outpoint] = fileInfo; newByOutpoint[outpoint] = fileInfo;
delete newLoading[uri]; delete newLoading[uri];
return Object.assign({}, state, { return Object.assign({}, state, {
urisDownloading: newDownloading, downloadingByOutpoint: newDownloading,
urisLoading: newLoading, urisLoading: newLoading,
byOutpoint: newByOutpoint, byOutpoint: newByOutpoint,
}); });
@ -76,14 +76,14 @@ reducers[types.DOWNLOADING_PROGRESSED] = function(state, action) {
const { uri, outpoint, fileInfo } = action.data; const { uri, outpoint, fileInfo } = action.data;
const newByOutpoint = Object.assign({}, state.byOutpoint); const newByOutpoint = Object.assign({}, state.byOutpoint);
const newDownloading = Object.assign({}, state.urisDownloading); const newDownloading = Object.assign({}, state.downloadingByOutpoint);
newByOutpoint[outpoint] = fileInfo; newByOutpoint[outpoint] = fileInfo;
newDownloading[uri] = true; newDownloading[outpoint] = true;
return Object.assign({}, state, { return Object.assign({}, state, {
byOutpoint: newByOutpoint, byOutpoint: newByOutpoint,
urisDownloading: newDownloading, downloadingByOutpoint: newDownloading,
}); });
}; };
@ -91,14 +91,14 @@ reducers[types.DOWNLOADING_COMPLETED] = function(state, action) {
const { uri, outpoint, fileInfo } = action.data; const { uri, outpoint, fileInfo } = action.data;
const newByOutpoint = Object.assign({}, state.byOutpoint); const newByOutpoint = Object.assign({}, state.byOutpoint);
const newDownloading = Object.assign({}, state.urisDownloading); const newDownloading = Object.assign({}, state.downloadingByOutpoint);
newByOutpoint[outpoint] = fileInfo; newByOutpoint[outpoint] = fileInfo;
delete newDownloading[uri]; delete newDownloading[outpoint];
return Object.assign({}, state, { return Object.assign({}, state, {
byOutpoint: newByOutpoint, byOutpoint: newByOutpoint,
urisDownloading: newDownloading, downloadingByOutpoint: newDownloading,
}); });
}; };
@ -106,11 +106,14 @@ reducers[types.FILE_DELETE] = function(state, action) {
const { outpoint } = action.data; const { outpoint } = action.data;
const newByOutpoint = Object.assign({}, state.byOutpoint); const newByOutpoint = Object.assign({}, state.byOutpoint);
const downloadingByOutpoint = Object.assign({}, state.downloadingByOutpoint);
delete newByOutpoint[outpoint]; delete newByOutpoint[outpoint];
delete downloadingByOutpoint[outpoint];
return Object.assign({}, state, { return Object.assign({}, state, {
byOutpoint: newByOutpoint, byOutpoint: newByOutpoint,
downloadingByOutpoint,
}); });
}; };

View file

@ -39,14 +39,18 @@ export const makeSelectFileInfoForUri = () => {
return createSelector(selectFileInfoForUri, fileInfo => fileInfo); return createSelector(selectFileInfoForUri, fileInfo => fileInfo);
}; };
export const selectUrisDownloading = createSelector( export const selectDownloadingByOutpoint = createSelector(
_selectState, _selectState,
state => state.urisDownloading || {} state => state.downloadingByOutpoint || {}
); );
const selectDownloadingForUri = (state, props) => { const selectDownloadingForUri = (state, props) => {
const byUri = selectUrisDownloading(state); const byOutpoint = selectDownloadingByOutpoint(state);
return byUri[props.uri]; const fileInfo = selectFileInfoForUri(state, props);
if (!fileInfo) return false;
return byOutpoint[fileInfo.outpoint];
}; };
export const makeSelectDownloadingForUri = () => { export const makeSelectDownloadingForUri = () => {
@ -135,14 +139,14 @@ export const selectFileInfosByUri = createSelector(
); );
export const selectDownloadingFileInfos = createSelector( export const selectDownloadingFileInfos = createSelector(
selectUrisDownloading, selectDownloadingByOutpoint,
selectFileInfosByUri, selectFileInfosByOutpoint,
(urisDownloading, byUri) => { (downloadingByOutpoint, fileInfosByOutpoint) => {
const uris = Object.keys(urisDownloading); const outpoints = Object.keys(downloadingByOutpoint);
const fileInfos = []; const fileInfos = [];
uris.forEach(uri => { outpoints.forEach(outpoint => {
const fileInfo = byUri[uri]; const fileInfo = fileInfosByOutpoint[outpoint];
if (fileInfo) fileInfos.push(fileInfo); if (fileInfo) fileInfos.push(fileInfo);
}); });