Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
7ef9806542
12 changed files with 60 additions and 31 deletions
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 0.11.4
|
||||
current_version = 0.11.5rc1
|
||||
commit = True
|
||||
tag = True
|
||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?
|
||||
|
|
|
@ -16,8 +16,10 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
|||
*
|
||||
|
||||
### Fixed
|
||||
*
|
||||
*
|
||||
* Eliminated instance of costs being double fetched
|
||||
* Fixed issue preventing file re-download
|
||||
* Fixed race condition that could prevent file playbac
|
||||
* Fixed issue with batch actions and thunk
|
||||
|
||||
### Deprecated
|
||||
*
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "LBRY",
|
||||
"version": "0.11.4",
|
||||
"version": "0.11.5rc1",
|
||||
"main": "main.js",
|
||||
"description": "LBRY is a fully decentralized, open-source protocol facilitating the discovery, access, and (sometimes) purchase of data.",
|
||||
"author": {
|
||||
|
|
|
@ -214,22 +214,16 @@ export function doPurchaseUri(uri) {
|
|||
const state = getState()
|
||||
const balance = selectBalance(state)
|
||||
const fileInfo = selectFileInfoForUri(state, { uri })
|
||||
const costInfo = selectCostInfoForUri(state, { uri })
|
||||
const downloadingByUri = selectUrisDownloading(state)
|
||||
const alreadyDownloading = !!downloadingByUri[uri]
|
||||
const { cost } = costInfo
|
||||
|
||||
// BUG if you delete a file from the file system system you're going to be
|
||||
// asked to pay for it again. We need to check if the file is in the blobs
|
||||
// here and then dispatch doLoadVideo() which will reconstruct it again from
|
||||
// the blobs. Or perhaps there's another way to see if a file was already
|
||||
// purchased?
|
||||
// we already fully downloaded the file.
|
||||
if (fileInfo && fileInfo.completed) {
|
||||
// If written_bytes is false that means the user has deleted/moved the
|
||||
// file manually on their file system, so we need to dispatch a
|
||||
// doLoadVideo action to reconstruct the file from the blobs
|
||||
if (!fileInfo.written_bytes) dispatch(doLoadVideo(uri))
|
||||
|
||||
// we already fully downloaded the file. If completed is true but
|
||||
// writtenBytes is false then we downloaded it before but deleted it again,
|
||||
// which means it needs to be reconstructed from the blobs by dispatching
|
||||
// doLoadVideo.
|
||||
if (fileInfo && fileInfo.completed && !!fileInfo.writtenBytes) {
|
||||
return Promise.resolve()
|
||||
}
|
||||
|
||||
|
@ -238,6 +232,9 @@ export function doPurchaseUri(uri) {
|
|||
return Promise.resolve()
|
||||
}
|
||||
|
||||
const costInfo = selectCostInfoForUri(state, { uri })
|
||||
const { cost } = costInfo
|
||||
|
||||
// the file is free or we have partially downloaded it
|
||||
if (cost <= 0.01 || (fileInfo && fileInfo.download_directory)) {
|
||||
dispatch(doLoadVideo(uri))
|
||||
|
|
|
@ -16,6 +16,9 @@ import {
|
|||
import {
|
||||
selectCurrentModal,
|
||||
} from 'selectors/app'
|
||||
import {
|
||||
makeSelectCostInfoForUri,
|
||||
} from 'selectors/cost_info'
|
||||
import {
|
||||
doCloseModal,
|
||||
doOpenModal,
|
||||
|
@ -39,6 +42,7 @@ const makeSelect = () => {
|
|||
const selectFileInfoForUri = makeSelectFileInfoForUri()
|
||||
const selectIsAvailableForUri = makeSelectIsAvailableForUri()
|
||||
const selectDownloadingForUri = makeSelectDownloadingForUri()
|
||||
const selectCostInfoForUri = makeSelectCostInfoForUri()
|
||||
|
||||
const select = (state, props) => ({
|
||||
fileInfo: selectFileInfoForUri(state, props),
|
||||
|
@ -46,6 +50,7 @@ const makeSelect = () => {
|
|||
platform: selectPlatform(state),
|
||||
modal: selectCurrentModal(state),
|
||||
downloading: selectDownloadingForUri(state, props),
|
||||
costInfo: selectCostInfoForUri(state, props),
|
||||
})
|
||||
|
||||
return select
|
||||
|
@ -62,7 +67,7 @@ const perform = (dispatch) => ({
|
|||
},
|
||||
openModal: (modal) => dispatch(doOpenModal(modal)),
|
||||
startDownload: (uri) => dispatch(doPurchaseUri(uri)),
|
||||
loadVideo: (uri) => dispatch(doLoadVideo(uri))
|
||||
loadVideo: (uri) => dispatch(doLoadVideo(uri)),
|
||||
})
|
||||
|
||||
export default connect(makeSelect, perform)(FileActions)
|
|
@ -62,6 +62,7 @@ class FileActions extends React.Component {
|
|||
openModal,
|
||||
closeModal,
|
||||
startDownload,
|
||||
costInfo,
|
||||
} = this.props
|
||||
|
||||
const deleteChecked = this.state.deleteChecked,
|
||||
|
@ -99,8 +100,11 @@ class FileActions extends React.Component {
|
|||
</div>
|
||||
|
||||
} else if (fileInfo === null && !downloading) {
|
||||
|
||||
content = <Link button="text" label="Download" icon="icon-download" onClick={() => { startDownload(uri) } } />;
|
||||
if (!costInfo) {
|
||||
content = <BusyMessage message="Fetching cost info" />
|
||||
} else {
|
||||
content = <Link button="text" label="Download" icon="icon-download" onClick={() => { startDownload(uri) } } />;
|
||||
}
|
||||
|
||||
} else if (fileInfo && fileInfo.download_path) {
|
||||
content = <Link label="Open" button="text" icon="icon-folder-open" onClick={() => openInShell(fileInfo)} />;
|
||||
|
|
|
@ -7,14 +7,17 @@ import {
|
|||
} from 'actions/cost_info'
|
||||
import {
|
||||
makeSelectCostInfoForUri,
|
||||
makeSelectFetchingCostInfoForUri,
|
||||
} from 'selectors/cost_info'
|
||||
import FilePrice from './view'
|
||||
|
||||
const makeSelect = () => {
|
||||
const selectCostInfoForUri = makeSelectCostInfoForUri()
|
||||
const selectFetchingCostInfoForUri = makeSelectFetchingCostInfoForUri()
|
||||
|
||||
const select = (state, props) => ({
|
||||
costInfo: selectCostInfoForUri(state, props),
|
||||
fetching: selectFetchingCostInfoForUri(state, props),
|
||||
})
|
||||
|
||||
return select
|
||||
|
|
|
@ -16,10 +16,11 @@ class FilePrice extends React.Component{
|
|||
const {
|
||||
costInfo,
|
||||
fetchCostInfo,
|
||||
uri
|
||||
uri,
|
||||
fetching,
|
||||
} = props
|
||||
|
||||
if (costInfo === undefined) {
|
||||
if (costInfo === undefined && !fetching) {
|
||||
fetchCostInfo(uri)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,9 +43,11 @@ class VideoPlayButton extends React.Component {
|
|||
}
|
||||
*/
|
||||
|
||||
const disabled = isLoading || fileInfo === undefined || (fileInfo === null && (!costInfo || costInfo.cost === undefined))
|
||||
|
||||
return (<div>
|
||||
<Link button={ button ? button : null }
|
||||
disabled={isLoading || fileInfo === undefined || (fileInfo === null && (!costInfo || costInfo.cost === undefined))}
|
||||
disabled={disabled}
|
||||
label={label ? label : ""}
|
||||
className="video__play-button"
|
||||
icon="icon-play"
|
||||
|
@ -99,7 +101,9 @@ class Video extends React.Component {
|
|||
|
||||
let loadStatusMessage = ''
|
||||
|
||||
if (isLoading) {
|
||||
if(fileInfo && fileInfo.completed && !fileInfo.written_bytes) {
|
||||
loadStatusMessage = "It looks like you deleted or moved this file. We're rebuilding it now. It will only take a few seconds."
|
||||
} else if (isLoading) {
|
||||
loadStatusMessage = "Requesting stream... it may sit here for like 15-20 seconds in a really awkward way... we're working on it"
|
||||
} else if (isDownloading) {
|
||||
loadStatusMessage = "Downloading stream... not long left now!"
|
||||
|
|
|
@ -8,7 +8,6 @@ import SplashScreen from 'component/splash.js';
|
|||
import SnackBar from 'component/snackBar';
|
||||
import {AuthOverlay} from 'component/auth.js';
|
||||
import { Provider } from 'react-redux';
|
||||
import batchActions from 'util/batchActions'
|
||||
import store from 'store.js';
|
||||
import {
|
||||
doChangePath,
|
||||
|
@ -79,12 +78,10 @@ var init = function() {
|
|||
window.sessionStorage.setItem('loaded', 'y'); //once we've made it here once per session, we don't need to show splash again
|
||||
const actions = []
|
||||
|
||||
actions.push(doDaemonReady())
|
||||
actions.push(doChangePath('/discover'))
|
||||
actions.push(doFetchDaemonSettings())
|
||||
actions.push(doFileList())
|
||||
|
||||
app.store.dispatch(batchActions(actions))
|
||||
app.store.dispatch(doDaemonReady())
|
||||
app.store.dispatch(doChangePath('/discover'))
|
||||
app.store.dispatch(doFetchDaemonSettings())
|
||||
app.store.dispatch(doFileList())
|
||||
|
||||
ReactDOM.render(<Provider store={store}><div>{ lbryio.enabled ? <AuthOverlay/> : '' }<App /><SnackBar /></div></Provider>, canvas)
|
||||
}
|
||||
|
|
|
@ -17,3 +17,19 @@ export const makeSelectCostInfoForUri = () => {
|
|||
(costInfo) => costInfo
|
||||
)
|
||||
}
|
||||
|
||||
export const selectFetchingCostInfo = createSelector(
|
||||
_selectState,
|
||||
(state) => state.fetching || {}
|
||||
)
|
||||
|
||||
const selectFetchingCostInfoForUri = (state, props) => {
|
||||
return selectFetchingCostInfo(state)[props.uri]
|
||||
}
|
||||
|
||||
export const makeSelectFetchingCostInfoForUri = () => {
|
||||
return createSelector(
|
||||
selectFetchingCostInfoForUri,
|
||||
(fetching) => !!fetching
|
||||
)
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "lbry-web-ui",
|
||||
"version": "0.11.4",
|
||||
"version": "0.11.5rc1",
|
||||
"description": "LBRY UI",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
|
|
Loading…
Add table
Reference in a new issue