mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-01-11 22:40:31 +00:00
137 lines
6 KiB
JavaScript
137 lines
6 KiB
JavaScript
// Copyright (C) 2017-2023 Smart code 203358507
|
|
|
|
const React = require('react');
|
|
const PropTypes = require('prop-types');
|
|
const classnames = require('classnames');
|
|
const NotFound = require('stremio/routes/NotFound');
|
|
const { Button, Chips, DelayedRenderer, Multiselect, MainNavBars, LibItem, Image, useProfile, useNotifications, routesRegexp, useOnScrollToBottom, withCoreSuspender } = require('stremio/common');
|
|
const useLibrary = require('./useLibrary');
|
|
const useSelectableInputs = require('./useSelectableInputs');
|
|
const styles = require('./styles');
|
|
|
|
const SCROLL_TO_BOTTOM_TRESHOLD = 400;
|
|
|
|
function withModel(Library) {
|
|
const withModel = ({ urlParams, queryParams }) => {
|
|
const model = React.useMemo(() => {
|
|
return typeof urlParams.path === 'string' ?
|
|
urlParams.path.match(routesRegexp.library.regexp) ?
|
|
'library'
|
|
:
|
|
urlParams.path.match(routesRegexp.continuewatching.regexp) ?
|
|
'continue_watching'
|
|
:
|
|
null
|
|
:
|
|
null;
|
|
}, [urlParams.path]);
|
|
if (model === null) {
|
|
return (
|
|
<NotFound />
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Library
|
|
key={model}
|
|
model={model}
|
|
urlParams={urlParams}
|
|
queryParams={queryParams}
|
|
/>
|
|
);
|
|
};
|
|
withModel.displayName = 'withModel';
|
|
return withModel;
|
|
}
|
|
|
|
const Library = ({ model, urlParams, queryParams }) => {
|
|
const profile = useProfile();
|
|
const notifications = useNotifications();
|
|
const [library, loadNextPage] = useLibrary(model, urlParams, queryParams);
|
|
const [typeSelect, sortChips, hasNextPage] = useSelectableInputs(library);
|
|
const scrollContainerRef = React.useRef(null);
|
|
const onScrollToBottom = React.useCallback(() => {
|
|
if (hasNextPage) {
|
|
loadNextPage();
|
|
}
|
|
}, [hasNextPage, loadNextPage]);
|
|
const onScroll = useOnScrollToBottom(onScrollToBottom, SCROLL_TO_BOTTOM_TRESHOLD);
|
|
React.useLayoutEffect(() => {
|
|
if (profile.auth !== null && library.selected && library.selected.request.page === 1) {
|
|
scrollContainerRef.current.scrollTop = 0;
|
|
}
|
|
}, [profile.auth, library.selected]);
|
|
return (
|
|
<MainNavBars className={styles['library-container']} route={model}>
|
|
<div className={styles['library-content']}>
|
|
{
|
|
model === 'continue_watching' || profile.auth !== null ?
|
|
<div className={styles['selectable-inputs-container']}>
|
|
<Multiselect {...typeSelect} className={styles['select-input-container']} />
|
|
<Chips {...sortChips} className={styles['select-input-container']} />
|
|
</div>
|
|
:
|
|
null
|
|
}
|
|
{
|
|
model === 'library' && profile.auth === null ?
|
|
<div className={classnames(styles['message-container'], styles['no-user-message-container'])}>
|
|
<Image
|
|
className={styles['image']}
|
|
src={require('/images/anonymous.png')}
|
|
alt={' '}
|
|
/>
|
|
<div className={styles['message-label']}>Library is only available for logged in users!</div>
|
|
<Button className={styles['login-button-container']} href={'#/intro'}>
|
|
<div className={styles['label']}>LOG IN</div>
|
|
</Button>
|
|
</div>
|
|
:
|
|
library.selected === null ?
|
|
<DelayedRenderer delay={500}>
|
|
<div className={styles['message-container']}>
|
|
<Image
|
|
className={styles['image']}
|
|
src={require('/images/empty.png')}
|
|
alt={' '}
|
|
/>
|
|
<div className={styles['message-label']}>{model === 'library' ? 'Library' : 'Continue Watching'} not loaded!</div>
|
|
</div>
|
|
</DelayedRenderer>
|
|
:
|
|
library.catalog.length === 0 ?
|
|
<div className={styles['message-container']}>
|
|
<Image
|
|
className={styles['image']}
|
|
src={require('/images/empty.png')}
|
|
alt={' '}
|
|
/>
|
|
<div className={styles['message-label']}>Empty {model === 'library' ? 'Library' : 'Continue Watching'}</div>
|
|
</div>
|
|
:
|
|
<div ref={scrollContainerRef} className={classnames(styles['meta-items-container'], 'animation-fade-in')} onScroll={onScroll}>
|
|
{library.catalog.map((libItem, index) => (
|
|
<LibItem {...libItem} notifications={notifications} removable={model === 'library'} key={index} />
|
|
))}
|
|
</div>
|
|
}
|
|
</div>
|
|
</MainNavBars>
|
|
);
|
|
};
|
|
|
|
Library.propTypes = {
|
|
model: PropTypes.oneOf(['library', 'continue_watching']),
|
|
urlParams: PropTypes.shape({
|
|
type: PropTypes.string
|
|
}),
|
|
queryParams: PropTypes.instanceOf(URLSearchParams)
|
|
};
|
|
|
|
const LibraryFallback = ({ model }) => (
|
|
<MainNavBars className={styles['library-container']} route={model} />
|
|
);
|
|
|
|
LibraryFallback.propTypes = Library.propTypes;
|
|
|
|
module.exports = withModel(withCoreSuspender(Library, LibraryFallback));
|