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

109 lines
2.5 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,
selectClaimListMineIsPending,
2017-06-06 23:19:12 +02:00
} from "selectors/claims";
2017-05-15 05:50:59 +02:00
import {
selectFileListIsPending,
selectAllFileInfos,
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 isPending = selectFileListIsPending(state);
if (!isPending) {
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_COMPLETED,
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) {
return function(dispatch, getState) {
dispatch({
type: types.FILE_DELETE,
data: {
2017-06-06 23:19:12 +02:00
outpoint,
},
});
lbry.file_delete({
outpoint: outpoint,
2017-06-15 00:01:04 +02:00
delete_from_download_dir: deleteFromComputer,
2017-06-06 23:19:12 +02:00
});
2017-06-06 23:19:12 +02:00
dispatch(doCloseModal());
};
}
export function doFetchFileInfosAndPublishedClaims() {
return function(dispatch, getState) {
const state = getState(),
2017-06-06 23:19:12 +02:00
isClaimListMinePending = selectClaimListMineIsPending(state),
isFileInfoListPending = selectFileListIsPending(state);
dispatch(doFetchClaimListMine());
dispatch(doFileList());
2017-06-06 23:19:12 +02:00
};
}