lbry-desktop/src/ui/component/claimListDiscover/view.jsx

187 lines
5.7 KiB
React
Raw Normal View History

2019-06-11 20:10:58 +02:00
// @flow
2019-06-17 22:32:38 +02:00
import type { Node } from 'react';
2019-06-27 08:18:45 +02:00
import React, { useEffect, useState } from 'react';
2019-06-17 22:32:38 +02:00
import moment from 'moment';
2019-06-27 08:18:45 +02:00
import usePersistedState from 'util/use-persisted-state';
import { MATURE_TAGS } from 'lbry-redux';
2019-06-11 20:10:58 +02:00
import { FormField } from 'component/common/form';
2019-06-19 07:05:43 +02:00
import ClaimList from 'component/claimList';
2019-06-17 22:32:38 +02:00
import Tag from 'component/tag';
2019-06-27 08:18:45 +02:00
import ClaimPreview from 'component/claimPreview';
2019-06-11 20:10:58 +02:00
2019-06-27 08:18:45 +02:00
const PAGE_SIZE = 20;
2019-06-11 20:10:58 +02:00
const TIME_DAY = 'day';
const TIME_WEEK = 'week';
const TIME_MONTH = 'month';
const TIME_YEAR = 'year';
const TIME_ALL = 'all';
2019-06-11 20:56:23 +02:00
const SEARCH_SORT_YOU = 'you';
const SEARCH_SORT_ALL = 'everyone';
2019-07-01 03:52:38 +02:00
const SEARCH_SORT_CHANNELS = 'channels';
2019-06-11 20:10:58 +02:00
const TYPE_TRENDING = 'trending';
const TYPE_TOP = 'top';
const TYPE_NEW = 'new';
2019-07-01 03:52:38 +02:00
const SEARCH_FILTER_TYPES = [SEARCH_SORT_YOU, SEARCH_SORT_CHANNELS, SEARCH_SORT_ALL];
2019-07-02 23:21:46 +02:00
const SEARCH_TYPES = [TYPE_TRENDING, TYPE_TOP, TYPE_NEW];
2019-06-11 20:56:23 +02:00
const SEARCH_TIMES = [TIME_DAY, TIME_WEEK, TIME_MONTH, TIME_YEAR, TIME_ALL];
2019-06-11 20:10:58 +02:00
type Props = {
uris: Array<string>,
2019-07-01 03:52:38 +02:00
subscribedChannels: Array<Subscription>,
2019-06-11 20:10:58 +02:00
doClaimSearch: (number, {}) => void,
injectedItem: any,
tags: Array<string>,
loading: boolean,
personal: boolean,
2019-06-17 22:32:38 +02:00
doToggleTagFollow: string => void,
meta?: Node,
showNsfw: boolean,
2019-06-11 20:10:58 +02:00
};
2019-06-19 07:05:43 +02:00
function ClaimListDiscover(props: Props) {
const { doClaimSearch, uris, tags, loading, personal, injectedItem, meta, subscribedChannels, showNsfw } = props;
2019-07-01 05:30:42 +02:00
const [personalSort, setPersonalSort] = usePersistedState('claim-list-discover:personalSort', SEARCH_SORT_YOU);
const [typeSort, setTypeSort] = usePersistedState('claim-list-discover:typeSort', TYPE_TRENDING);
const [timeSort, setTimeSort] = usePersistedState('claim-list-discover:timeSort', TIME_WEEK);
2019-06-27 08:18:45 +02:00
const [page, setPage] = useState(1);
2019-06-11 20:10:58 +02:00
const toCapitalCase = string => string.charAt(0).toUpperCase() + string.slice(1);
const tagsString = tags.join(',');
2019-07-01 03:52:38 +02:00
const channelsIdString = subscribedChannels.map(channel => channel.uri.split('#')[1]).join(',');
2019-06-11 20:10:58 +02:00
useEffect(() => {
2019-06-27 08:18:45 +02:00
const options: {
page_size: number,
any_tags?: Array<string>,
order_by?: Array<string>,
2019-07-01 03:52:38 +02:00
channel_ids?: Array<string>,
2019-06-27 08:18:45 +02:00
release_time?: string,
not_tags?: Array<string>,
2019-07-17 20:04:50 +02:00
} = { page_size: PAGE_SIZE, page, no_totals: true };
2019-06-11 20:10:58 +02:00
const newTags = tagsString.split(',');
2019-07-01 03:52:38 +02:00
const newChannelIds = channelsIdString.split(',');
2019-06-11 20:10:58 +02:00
2019-06-17 22:32:38 +02:00
if ((newTags && !personal) || (newTags && personal && personalSort === SEARCH_SORT_YOU)) {
2019-06-11 20:10:58 +02:00
options.any_tags = newTags;
2019-07-01 03:52:38 +02:00
} else if (personalSort === SEARCH_SORT_CHANNELS) {
options.channel_ids = newChannelIds;
2019-06-11 20:10:58 +02:00
}
if (!showNsfw) {
options.not_tags = MATURE_TAGS;
}
2019-06-11 20:10:58 +02:00
if (typeSort === TYPE_TRENDING) {
options.order_by = ['trending_global', 'trending_mixed'];
} else if (typeSort === TYPE_NEW) {
options.order_by = ['release_time'];
} else if (typeSort === TYPE_TOP) {
options.order_by = ['effective_amount'];
if (timeSort !== TIME_ALL) {
const time = Math.floor(
moment()
.subtract(1, timeSort)
.unix()
);
options.release_time = `>${time}`;
}
}
doClaimSearch(20, options);
}, [personal, personalSort, typeSort, timeSort, doClaimSearch, page, tagsString, channelsIdString, showNsfw]);
2019-07-01 03:52:38 +02:00
function getLabel(type) {
if (type === SEARCH_SORT_ALL) {
return __('Everyone');
}
return type === SEARCH_SORT_YOU ? __('Tags You Follow') : __('Channels You Follow');
}
2019-06-11 20:10:58 +02:00
function resetList() {
setPage(1);
}
2019-06-11 20:10:58 +02:00
const header = (
2019-06-17 22:32:38 +02:00
<h1 className="card__title--flex">
<FormField
className="claim-list__dropdown"
2019-06-17 22:32:38 +02:00
type="select"
name="trending_sort"
value={typeSort}
onChange={e => {
resetList();
setTypeSort(e.target.value);
}}
2019-06-17 22:32:38 +02:00
>
{SEARCH_TYPES.map(type => (
<option key={type} value={type}>
{toCapitalCase(type)}
</option>
))}
</FormField>
<span>{__('For')}</span>
2019-06-11 20:10:58 +02:00
{!personal && tags && tags.length ? (
2019-06-17 22:32:38 +02:00
tags.map(tag => <Tag key={tag} name={tag} disabled />)
2019-06-11 20:10:58 +02:00
) : (
<FormField
type="select"
name="trending_overview"
className="claim-list__dropdown"
2019-06-11 20:10:58 +02:00
value={personalSort}
2019-06-27 08:18:45 +02:00
onChange={e => {
resetList();
2019-06-27 08:18:45 +02:00
setPersonalSort(e.target.value);
}}
2019-06-11 20:10:58 +02:00
>
2019-06-11 20:56:23 +02:00
{SEARCH_FILTER_TYPES.map(type => (
2019-06-11 20:10:58 +02:00
<option key={type} value={type}>
2019-07-01 03:52:38 +02:00
{getLabel(type)}
2019-06-11 20:10:58 +02:00
</option>
))}
</FormField>
)}
{typeSort === 'top' && (
<FormField
className="claim-list__dropdown"
2019-06-11 20:10:58 +02:00
type="select"
name="trending_time"
value={timeSort}
onChange={e => {
resetList();
setTimeSort(e.target.value);
}}
2019-06-11 20:10:58 +02:00
>
2019-06-11 20:56:23 +02:00
{SEARCH_TIMES.map(time => (
2019-06-11 20:10:58 +02:00
<option key={time} value={time}>
2019-07-01 03:52:38 +02:00
{/* i18fixme */}
2019-07-02 23:21:46 +02:00
{time === TIME_DAY && __('Today')}
{time !== TIME_ALL && time !== TIME_DAY && `${__('This')} ${toCapitalCase(time)}`}
{time === TIME_ALL && __('All time')}
2019-06-11 20:10:58 +02:00
</option>
))}
</FormField>
)}
2019-07-01 03:52:38 +02:00
</h1>
2019-06-11 20:10:58 +02:00
);
return (
2019-06-17 22:32:38 +02:00
<div className="card">
2019-06-19 07:05:43 +02:00
<ClaimList
2019-06-17 22:32:38 +02:00
loading={loading}
uris={uris}
injectedItem={personalSort === SEARCH_SORT_YOU && injectedItem}
header={header}
2019-07-01 03:52:38 +02:00
headerAltControls={meta}
2019-06-27 08:18:45 +02:00
onScrollBottom={() => setPage(page + 1)}
2019-07-01 06:35:36 +02:00
page={page}
2019-07-02 04:54:11 +02:00
pageSize={PAGE_SIZE}
2019-06-17 22:32:38 +02:00
/>
2019-06-27 08:18:45 +02:00
{loading && page > 1 && new Array(PAGE_SIZE).fill(1).map((x, i) => <ClaimPreview key={i} placeholder />)}
2019-06-17 22:32:38 +02:00
</div>
2019-06-11 20:10:58 +02:00
);
}
2019-06-19 07:05:43 +02:00
export default ClaimListDiscover;