2017-04-23 18:10:45 +02:00
|
|
|
import React from 'react';
|
|
|
|
import lbry from 'lbry.js';
|
|
|
|
import lbryuri from 'lbryuri.js';
|
|
|
|
import Link from 'component/link';
|
|
|
|
import {FormField} from 'component/form.js';
|
2017-05-09 00:22:27 +02:00
|
|
|
import FileTile from 'component/fileTile';
|
2017-04-23 18:10:45 +02:00
|
|
|
import rewards from 'rewards.js';
|
|
|
|
import lbryio from 'lbryio.js';
|
|
|
|
import {BusyMessage, Thumbnail} from 'component/common.js';
|
|
|
|
|
2017-04-30 18:01:43 +02:00
|
|
|
class FileList extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2017-04-30 18:01:43 +02:00
|
|
|
this.state = {
|
|
|
|
sortBy: 'date',
|
|
|
|
}
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2017-04-30 18:01:43 +02:00
|
|
|
this._sortFunctions = {
|
|
|
|
date: function(fileInfos) {
|
|
|
|
return fileInfos.slice().reverse();
|
|
|
|
},
|
|
|
|
title: function(fileInfos) {
|
|
|
|
return fileInfos.slice().sort(function(fileInfo1, fileInfo2) {
|
|
|
|
const title1 = fileInfo1.metadata ? fileInfo1.metadata.stream.metadata.title.toLowerCase() : fileInfo1.name;
|
|
|
|
const title2 = fileInfo2.metadata ? fileInfo2.metadata.stream.metadata.title.toLowerCase() : fileInfo2.name;
|
|
|
|
if (title1 < title2) {
|
|
|
|
return -1;
|
|
|
|
} else if (title1 > title2) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
filename: function(fileInfos) {
|
|
|
|
return fileInfos.slice().sort(function({file_name: fileName1}, {file_name: fileName2}) {
|
|
|
|
const fileName1Lower = fileName1.toLowerCase();
|
|
|
|
const fileName2Lower = fileName2.toLowerCase();
|
|
|
|
if (fileName1Lower < fileName2Lower) {
|
|
|
|
return -1;
|
|
|
|
} else if (fileName2Lower > fileName1Lower) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2017-04-30 18:01:43 +02:00
|
|
|
handleSortChanged(event) {
|
|
|
|
this.setState({
|
|
|
|
sortBy: event.target.value,
|
|
|
|
})
|
|
|
|
}
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2017-04-30 18:01:43 +02:00
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
handleSortChanged,
|
|
|
|
fileInfos,
|
|
|
|
hidePrices,
|
|
|
|
} = this.props
|
|
|
|
const {
|
|
|
|
sortBy,
|
|
|
|
} = this.state
|
|
|
|
const content = []
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2017-04-30 18:01:43 +02:00
|
|
|
this._sortFunctions[sortBy](fileInfos).forEach(fileInfo => {
|
|
|
|
const uri = lbryuri.build({
|
|
|
|
contentName: fileInfo.name,
|
|
|
|
channelName: fileInfo.channel_name,
|
|
|
|
})
|
2017-05-10 03:33:13 +02:00
|
|
|
content.push(<FileTile key={uri} uri={uri} hidePrice={hidePrices} hideOnRemove={true} showEmpty={""} />)
|
2017-04-30 18:01:43 +02:00
|
|
|
})
|
2017-04-23 18:10:45 +02:00
|
|
|
return (
|
|
|
|
<section>
|
|
|
|
<span className='sort-section'>
|
|
|
|
Sort by { ' ' }
|
2017-04-30 18:01:43 +02:00
|
|
|
<FormField type="select" onChange={this.handleSortChanged.bind(this)}>
|
2017-04-23 18:10:45 +02:00
|
|
|
<option value="date">Date</option>
|
|
|
|
<option value="title">Title</option>
|
|
|
|
<option value="filename">File name</option>
|
|
|
|
</FormField>
|
|
|
|
</span>
|
|
|
|
{content}
|
|
|
|
</section>
|
2017-04-30 18:01:43 +02:00
|
|
|
)
|
2017-04-23 18:10:45 +02:00
|
|
|
}
|
2017-04-30 18:01:43 +02:00
|
|
|
}
|
|
|
|
|
2017-04-23 18:10:45 +02:00
|
|
|
export default FileList
|