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

144 lines
3.7 KiB
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import * as types from "constants/action_types";
import lbry from "lbry";
import { doFetchClaimListMine } from "actions/content";
2017-04-28 17:14:44 +02:00
import {
2017-05-15 05:50:59 +02:00
selectClaimsByUri,
selectIsFetchingClaimListMine,
selectMyClaimsOutpoints,
2017-06-06 23:19:12 +02:00
} from "selectors/claims";
2017-05-15 05:50:59 +02:00
import {
selectIsFetchingFileList,
selectFileInfosByOutpoint,
selectUrisLoading,
2017-06-06 23:19:12 +02:00
} from "selectors/file_info";
import { doCloseModal } from "actions/app";
2017-06-06 23:19:12 +02:00
const { shell } = require("electron");
2017-04-28 17:14:44 +02:00
2017-05-15 05:50:59 +02:00
export function doFetchFileInfo(uri) {
2017-04-28 17:14:44 +02:00
return function(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({
2017-05-15 05:50:59 +02:00
type: types.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
2017-06-06 23:19:12 +02:00
lbry
.file_list({ outpoint: outpoint, full_status: true })
.then(fileInfos => {
dispatch({
type: types.FETCH_FILE_INFO_COMPLETED,
data: {
outpoint,
fileInfo: fileInfos && fileInfos.length ? fileInfos[0] : null,
},
});
});
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 function(dispatch, getState) {
2017-06-06 23:19:12 +02:00
const state = getState();
const isFetching = selectIsFetchingFileList(state);
if (!isFetching) {
dispatch({
type: types.FILE_LIST_STARTED,
2017-06-06 23:19:12 +02:00
});
2017-06-06 23:19:12 +02:00
lbry.file_list().then(fileInfos => {
dispatch({
type: types.FILE_LIST_SUCCEEDED,
data: {
fileInfos,
2017-06-06 23:19:12 +02:00
},
});
});
}
2017-06-06 23:19:12 +02:00
};
}
export function doOpenFileInShell(fileInfo) {
return function(dispatch, getState) {
2017-06-06 23:19:12 +02:00
shell.openItem(fileInfo.download_path);
};
}
export function doOpenFileInFolder(fileInfo) {
return function(dispatch, getState) {
2017-06-06 23:19:12 +02:00
shell.showItemInFolder(fileInfo.download_path);
};
}
export function doDeleteFile(outpoint, deleteFromComputer, abandonClaim) {
return function(dispatch, getState) {
const state = getState();
lbry.file_delete({
outpoint: outpoint,
delete_from_download_dir: deleteFromComputer,
});
// If the file is for a claim we published then also abandom the claim
const myClaimsOutpoints = selectMyClaimsOutpoints(state);
if (abandonClaim && myClaimsOutpoints.indexOf(outpoint) !== -1) {
const byOutpoint = selectFileInfosByOutpoint(state);
const fileInfo = byOutpoint[outpoint];
if (fileInfo) {
dispatch({
type: types.ABANDON_CLAIM_STARTED,
data: {
claimId: fileInfo.claim_id,
},
});
2017-07-08 10:03:12 +02:00
// We need to run this after a few seconds or the claim gets added back
// to the store again by an already running fetch claims query.
const success = setTimeout(
() => {
dispatch({
type: types.ABANDON_CLAIM_SUCCEEDED,
2017-07-08 10:03:12 +02:00
data: {
claimId: fileInfo.claim_id,
},
});
},
10000,
{ once: true }
);
lbry.claim_abandon({ claim_id: fileInfo.claim_id }).then(success);
}
}
dispatch({
type: types.FILE_DELETE,
data: {
2017-06-06 23:19:12 +02:00
outpoint,
},
});
2017-06-06 23:19:12 +02:00
dispatch(doCloseModal());
};
}
export function doFetchFileInfosAndPublishedClaims() {
return function(dispatch, getState) {
const state = getState(),
isFetchingClaimListMine = selectIsFetchingClaimListMine(state),
isFetchingFileInfo = selectIsFetchingFileList(state);
if (!isFetchingClaimListMine) dispatch(doFetchClaimListMine());
if (!isFetchingFileInfo) dispatch(doFileList());
2017-06-06 23:19:12 +02:00
};
}