lbry-desktop/src/renderer/component/fileList/view.jsx

139 lines
4.3 KiB
React
Raw Normal View History

import React from 'react';
import { buildURI } from 'lbryURI';
import FormField from 'component/formField';
import FileTile from 'component/fileTile';
import { BusyMessage } from 'component/common.js';
2017-06-08 06:42:19 +02:00
class FileList extends React.PureComponent {
constructor(props) {
2017-06-06 23:19:12 +02:00
super(props);
this.state = {
2018-02-15 16:21:35 +01:00
sortBy: 'dateNew',
2017-06-06 23:19:12 +02:00
};
this._sortFunctions = {
2018-03-15 19:27:47 +01:00
dateNew: fileInfos =>
this.props.sortByHeight
? fileInfos.slice().sort((fileInfo1, fileInfo2) => {
const height1 = this.props.claimsById[fileInfo1.claim_id]
? this.props.claimsById[fileInfo1.claim_id].height
: 0;
const height2 = this.props.claimsById[fileInfo2.claim_id]
? this.props.claimsById[fileInfo2.claim_id].height
: 0;
if (height1 > height2) {
return -1;
} else if (height1 < height2) {
return 1;
}
return 0;
})
: [...fileInfos].reverse(),
dateOld: fileInfos =>
this.props.sortByHeight
? fileInfos.slice().sort((fileInfo1, fileInfo2) => {
const height1 = this.props.claimsById[fileInfo1.claim_id]
? this.props.claimsById[fileInfo1.claim_id].height
: 999999;
const height2 = this.props.claimsById[fileInfo2.claim_id]
? this.props.claimsById[fileInfo2.claim_id].height
: 999999;
if (height1 < height2) {
return -1;
} else if (height1 > height2) {
return 1;
}
return 0;
})
: fileInfos,
2018-03-09 08:06:15 +01:00
title: fileInfos =>
fileInfos.slice().sort((fileInfo1, fileInfo2) => {
const title1 = fileInfo1.value
? fileInfo1.value.stream.metadata.title.toLowerCase()
2018-02-21 20:01:43 +01:00
: fileInfo1.claim_name;
const title2 = fileInfo2.value
? fileInfo2.value.stream.metadata.title.toLowerCase()
2018-02-21 20:01:43 +01:00
: fileInfo2.claim_name;
if (title1 < title2) {
return -1;
} else if (title1 > title2) {
return 1;
}
return 0;
}),
2018-03-09 08:06:15 +01:00
filename: fileInfos =>
fileInfos.slice().sort(({ 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;
}
return 0;
}),
2018-03-09 08:06:15 +01:00
};
}
2017-08-27 07:00:44 +02:00
getChannelSignature(fileInfo) {
if (fileInfo.value) {
return fileInfo.value.publisherSignature.certificateId;
}
2018-02-21 20:01:43 +01:00
return fileInfo.channel_claim_id;
2017-08-27 07:00:44 +02:00
}
handleSortChanged(event) {
this.setState({
sortBy: event.target.value,
2017-06-06 23:19:12 +02:00
});
}
render() {
2017-06-06 23:19:12 +02:00
const { handleSortChanged, fetching, fileInfos } = this.props;
const { sortBy } = this.state;
const content = [];
this._sortFunctions[sortBy](fileInfos).forEach(fileInfo => {
const uriParams = {};
2017-06-29 00:08:16 +02:00
if (fileInfo.channel_name) {
uriParams.channelName = fileInfo.channel_name;
2018-03-09 08:03:30 +01:00
uriParams.contentName = fileInfo.claim_name || fileInfo.name;
2017-08-27 07:00:44 +02:00
uriParams.claimId = this.getChannelSignature(fileInfo);
2017-06-29 00:08:16 +02:00
} else {
uriParams.claimId = fileInfo.claim_id;
uriParams.claimName = fileInfo.claim_name || fileInfo.name;
2017-06-29 00:08:16 +02:00
}
const uri = buildURI(uriParams);
2017-06-06 23:19:12 +02:00
content.push(
<FileTile
key={fileInfo.outpoint || fileInfo.claim_id}
2017-06-06 23:19:12 +02:00
uri={uri}
showPrice={false}
showLocal={false}
showActions
2017-06-06 23:19:12 +02:00
showEmpty={this.props.fileTileShowEmpty}
/>
);
});
return (
2017-05-15 18:34:33 +02:00
<section className="file-list__header">
{fetching && <BusyMessage />}
2017-06-06 23:19:12 +02:00
<span className="sort-section">
{__('Sort by')}{' '}
<FormField type="select" onChange={this.handleSortChanged.bind(this)}>
2018-02-15 18:55:25 +01:00
<option value="dateNew">{__('Newest First')}</option>
<option value="dateOld">{__('Oldest First')}</option>
<option value="title">{__('Title')}</option>
</FormField>
</span>
{content}
</section>
2017-06-06 23:19:12 +02:00
);
}
}
2017-06-06 06:21:55 +02:00
export default FileList;