lbry-desktop/src/renderer/redux/actions/file_info.js

141 lines
3.7 KiB
JavaScript
Raw Normal View History

import * as ACTIONS from 'constants/action_types';
import { shell } from 'electron';
import Lbry from 'lbry';
import { doCloseModal } from 'redux/actions/app';
import { doAbandonClaim, doFetchClaimListMine } from 'redux/actions/content';
import { doHistoryBack } from 'redux/actions/navigation';
2017-04-28 17:14:44 +02:00
import {
2017-05-15 05:50:59 +02:00
selectClaimsByUri,
selectIsFetchingClaimListMine,
selectMyClaimsOutpoints,
} from 'redux/selectors/claims';
2017-05-15 05:50:59 +02:00
import {
selectFileInfosByOutpoint,
selectIsFetchingFileList,
selectTotalDownloadProgress,
selectUrisLoading,
} from 'redux/selectors/file_info';
import batchActions from 'util/batchActions';
import setProgressBar from 'util/setProgressBar';
2017-04-28 17:14:44 +02:00
2017-05-15 05:50:59 +02:00
export function doFetchFileInfo(uri) {
return (dispatch, getState) => {
2017-06-06 23:19:12 +02:00
const state = getState();
const claim = selectClaimsByUri(state)[uri];
const outpoint = claim ? `${claim.txid}:${claim.nout}` : null;
const alreadyFetching = !!selectUrisLoading(state)[uri];
2017-04-28 17:14:44 +02:00
2017-05-15 05:50:59 +02:00
if (!alreadyFetching) {
2017-04-28 17:14:44 +02:00
dispatch({
type: ACTIONS.FETCH_FILE_INFO_STARTED,
2017-04-28 17:14:44 +02:00
data: {
2017-05-15 05:50:59 +02:00
outpoint,
2017-06-06 23:19:12 +02:00
},
});
2017-06-06 06:21:55 +02:00
Lbry.file_list({ outpoint, full_status: true }).then(fileInfos => {
2017-12-13 22:36:30 +01:00
dispatch({
type: ACTIONS.FETCH_FILE_INFO_COMPLETED,
2017-12-13 22:36:30 +01:00
data: {
outpoint,
fileInfo: fileInfos && fileInfos.length ? fileInfos[0] : null,
},
2017-06-06 23:19:12 +02:00
});
2017-12-13 22:36:30 +01:00
});
2017-05-15 05:50:59 +02:00
}
2017-06-06 23:19:12 +02:00
};
2017-04-28 17:14:44 +02:00
}
export function doFileList() {
return (dispatch, getState) => {
2017-06-06 23:19:12 +02:00
const state = getState();
const isFetching = selectIsFetchingFileList(state);
if (!isFetching) {
dispatch({
type: ACTIONS.FILE_LIST_STARTED,
2017-06-06 23:19:12 +02:00
});
Lbry.file_list().then(fileInfos => {
dispatch({
type: ACTIONS.FILE_LIST_SUCCEEDED,
data: {
fileInfos,
2017-06-06 23:19:12 +02:00
},
});
});
}
2017-06-06 23:19:12 +02:00
};
}
export function doOpenFileInFolder(path) {
return () => {
shell.showItemInFolder(path);
};
}
export function doOpenFileInShell(path) {
return dispatch => {
const success = shell.openItem(path);
if (!success) {
dispatch(doOpenFileInFolder(path));
}
2017-06-06 23:19:12 +02:00
};
}
export function doDeleteFile(outpoint, deleteFromComputer, abandonClaim) {
return (dispatch, getState) => {
const state = getState();
Lbry.file_delete({
2017-12-13 22:36:30 +01:00
outpoint,
delete_from_download_dir: deleteFromComputer,
});
// If the file is for a claim we published then also abandon the claim
const myClaimsOutpoints = selectMyClaimsOutpoints(state);
if (abandonClaim && myClaimsOutpoints.indexOf(outpoint) !== -1) {
const byOutpoint = selectFileInfosByOutpoint(state);
const fileInfo = byOutpoint[outpoint];
if (fileInfo) {
2017-12-05 15:45:35 +01:00
const txid = fileInfo.outpoint.slice(0, -2);
2017-12-11 08:21:18 +01:00
const nout = Number(fileInfo.outpoint.slice(-1));
2017-10-24 15:10:27 +02:00
2017-11-01 21:23:30 +01:00
dispatch(doAbandonClaim(txid, nout));
}
}
dispatch({
type: ACTIONS.FILE_DELETE,
data: {
2017-06-06 23:19:12 +02:00
outpoint,
},
});
const totalProgress = selectTotalDownloadProgress(getState());
setProgressBar(totalProgress);
};
}
export function doDeleteFileAndGoBack(fileInfo, deleteFromComputer, abandonClaim) {
return dispatch => {
const actions = [];
actions.push(doCloseModal());
actions.push(doHistoryBack());
actions.push(doDeleteFile(fileInfo, deleteFromComputer, abandonClaim));
dispatch(batchActions(...actions));
2017-06-06 23:19:12 +02:00
};
}
export function doFetchFileInfosAndPublishedClaims() {
return (dispatch, getState) => {
const state = getState();
const isFetchingClaimListMine = selectIsFetchingClaimListMine(state);
const isFetchingFileInfo = selectIsFetchingFileList(state);
if (!isFetchingClaimListMine) dispatch(doFetchClaimListMine());
if (!isFetchingFileInfo) dispatch(doFileList());
2017-06-06 23:19:12 +02:00
};
}