Rename things in FileTile
- updateStatusCallback -> updateFileInfoCallback - this._statusCheckInterval -> this._fileInfoCheckInterval
This commit is contained in:
parent
5fcedd0d01
commit
1e61af3b24
1 changed files with 5 additions and 5 deletions
|
@ -5,7 +5,7 @@ import {Thumbnail, TruncatedText, CreditAmount} from '../component/common.js';
|
||||||
|
|
||||||
let FileTile = React.createClass({
|
let FileTile = React.createClass({
|
||||||
_isMounted: false,
|
_isMounted: false,
|
||||||
_statusCheckInterval: 5000,
|
_fileInfoCheckInterval: 5000,
|
||||||
|
|
||||||
propTypes: {
|
propTypes: {
|
||||||
metadata: React.PropTypes.object.isRequired,
|
metadata: React.PropTypes.object.isRequired,
|
||||||
|
@ -19,7 +19,7 @@ let FileTile = React.createClass({
|
||||||
costIncludesData: React.PropTypes.bool,
|
costIncludesData: React.PropTypes.bool,
|
||||||
},
|
},
|
||||||
updateFileInfo: function(progress=null) {
|
updateFileInfo: function(progress=null) {
|
||||||
const updateStatusCallback = ((fileInfo) => {
|
const updateFileInfoCallback = ((fileInfo) => {
|
||||||
if (!this._isMounted || 'fileInfo' in this.props) {
|
if (!this._isMounted || 'fileInfo' in this.props) {
|
||||||
/**
|
/**
|
||||||
* The component was unmounted, or a file info data structure has now been provided by the
|
* The component was unmounted, or a file info data structure has now been provided by the
|
||||||
|
@ -33,17 +33,17 @@ let FileTile = React.createClass({
|
||||||
local: !!fileInfo,
|
local: !!fileInfo,
|
||||||
});
|
});
|
||||||
|
|
||||||
setTimeout(() => { this.updateFileInfo() }, this._statusCheckInterval);
|
setTimeout(() => { this.updateFileInfo() }, this._fileInfoCheckInterval);
|
||||||
});
|
});
|
||||||
|
|
||||||
if ('sdHash' in this.props) {
|
if ('sdHash' in this.props) {
|
||||||
lbry.getFileInfoBySdHash(this.props.sdHash, updateStatusCallback);
|
lbry.getFileInfoBySdHash(this.props.sdHash, updateFileInfoCallback);
|
||||||
this.getIsMineIfNeeded(this.props.sdHash);
|
this.getIsMineIfNeeded(this.props.sdHash);
|
||||||
} else if ('name' in this.props) {
|
} else if ('name' in this.props) {
|
||||||
lbry.getFileInfoByName(this.props.name, (fileInfo) => {
|
lbry.getFileInfoByName(this.props.name, (fileInfo) => {
|
||||||
this.getIsMineIfNeeded(fileInfo.sd_hash);
|
this.getIsMineIfNeeded(fileInfo.sd_hash);
|
||||||
|
|
||||||
updateStatusCallback(fileInfo);
|
updateFileInfoCallback(fileInfo);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
throw new Error("No progress, stream name or sd hash passed to FileTile");
|
throw new Error("No progress, stream name or sd hash passed to FileTile");
|
||||||
|
|
Loading…
Add table
Reference in a new issue