2023-05-28 14:38:10 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-28 12:18:23 +00:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
|
2023-06-22 21:48:40 +00:00
|
|
|
import { List as ImmutableList } from 'immutable';
|
2017-02-23 01:14:35 +00:00
|
|
|
import { connect } from 'react-redux';
|
2023-06-22 21:48:40 +00:00
|
|
|
import { createSelector } from 'reselect';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
|
|
|
import { fetchAnnouncements, toggleShowAnnouncements } from 'flavours/glitch/actions/announcements';
|
|
|
|
import { addColumn, removeColumn, moveColumn } from 'flavours/glitch/actions/columns';
|
2018-05-27 17:10:37 +00:00
|
|
|
import { expandHomeTimeline } from 'flavours/glitch/actions/timelines';
|
2017-12-04 07:26:40 +00:00
|
|
|
import Column from 'flavours/glitch/components/column';
|
|
|
|
import ColumnHeader from 'flavours/glitch/components/column_header';
|
2023-05-09 01:11:56 +00:00
|
|
|
import { IconWithBadge } from 'flavours/glitch/components/icon_with_badge';
|
|
|
|
import { NotSignedInIndicator } from 'flavours/glitch/components/not_signed_in_indicator';
|
2023-05-28 14:38:10 +00:00
|
|
|
import AnnouncementsContainer from 'flavours/glitch/features/getting_started/containers/announcements_container';
|
|
|
|
import StatusListContainer from 'flavours/glitch/features/ui/containers/status_list_container';
|
|
|
|
|
2023-06-22 21:48:40 +00:00
|
|
|
import { ExplorePrompt } from './components/explore_prompt';
|
2023-05-28 14:38:10 +00:00
|
|
|
import ColumnSettingsContainer from './containers/column_settings_container';
|
|
|
|
|
2016-11-18 14:36:16 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-20 15:31:47 +00:00
|
|
|
title: { id: 'column.home', defaultMessage: 'Home' },
|
2020-01-25 15:35:33 +00:00
|
|
|
show_announcements: { id: 'home.show_announcements', defaultMessage: 'Show announcements' },
|
|
|
|
hide_announcements: { id: 'home.hide_announcements', defaultMessage: 'Hide announcements' },
|
2022-10-20 12:35:29 +00:00
|
|
|
});
|
2016-10-12 11:17:17 +00:00
|
|
|
|
2023-06-22 21:48:40 +00:00
|
|
|
const getHomeFeedSpeed = createSelector([
|
|
|
|
state => state.getIn(['timelines', 'home', 'items'], ImmutableList()),
|
|
|
|
state => state.get('statuses'),
|
|
|
|
], (statusIds, statusMap) => {
|
|
|
|
const statuses = statusIds.take(20).map(id => statusMap.get(id));
|
|
|
|
const uniqueAccountIds = (new Set(statuses.map(status => status.get('account')).toArray())).size;
|
|
|
|
const oldest = new Date(statuses.getIn([statuses.size - 1, 'created_at'], 0));
|
|
|
|
const newest = new Date(statuses.getIn([0, 'created_at'], 0));
|
|
|
|
const averageGap = (newest - oldest) / (1000 * (statuses.size + 1)); // Average gap between posts on first page in seconds
|
|
|
|
|
|
|
|
return {
|
|
|
|
unique: uniqueAccountIds,
|
|
|
|
gap: averageGap,
|
|
|
|
newest,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
const homeTooSlow = createSelector(getHomeFeedSpeed, speed =>
|
|
|
|
speed.unique < 5 // If there are fewer than 5 different accounts visible
|
|
|
|
|| speed.gap > (30 * 60) // If the average gap between posts is more than 20 minutes
|
|
|
|
|| (Date.now() - speed.newest) > (1000 * 3600) // If the most recent post is from over an hour ago
|
|
|
|
);
|
|
|
|
|
2017-02-23 01:14:35 +00:00
|
|
|
const mapStateToProps = state => ({
|
2017-05-04 21:41:34 +00:00
|
|
|
hasUnread: state.getIn(['timelines', 'home', 'unread']) > 0,
|
2019-03-01 10:11:35 +00:00
|
|
|
isPartial: state.getIn(['timelines', 'home', 'isPartial']),
|
2020-01-25 15:35:33 +00:00
|
|
|
hasAnnouncements: !state.getIn(['announcements', 'items']).isEmpty(),
|
2020-02-03 00:53:09 +00:00
|
|
|
unreadAnnouncements: state.getIn(['announcements', 'items']).count(item => !item.get('read')),
|
2020-01-25 15:35:33 +00:00
|
|
|
showAnnouncements: state.getIn(['announcements', 'show']),
|
2023-06-22 21:48:40 +00:00
|
|
|
tooSlow: homeTooSlow(state),
|
2022-09-02 09:57:06 +00:00
|
|
|
regex: state.getIn(['settings', 'home', 'regex', 'body']),
|
2017-02-23 01:14:35 +00:00
|
|
|
});
|
|
|
|
|
2023-05-28 12:18:23 +00:00
|
|
|
class HomeTimeline extends PureComponent {
|
2016-10-12 11:17:17 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
static contextTypes = {
|
|
|
|
identity: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
2017-06-03 23:39:38 +00:00
|
|
|
dispatch: PropTypes.func.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
hasUnread: PropTypes.bool,
|
2018-01-18 16:25:37 +00:00
|
|
|
isPartial: PropTypes.bool,
|
2017-06-03 23:39:38 +00:00
|
|
|
columnId: PropTypes.string,
|
|
|
|
multiColumn: PropTypes.bool,
|
2020-01-25 15:35:33 +00:00
|
|
|
hasAnnouncements: PropTypes.bool,
|
|
|
|
unreadAnnouncements: PropTypes.number,
|
|
|
|
showAnnouncements: PropTypes.bool,
|
2023-06-22 21:48:40 +00:00
|
|
|
tooSlow: PropTypes.bool,
|
2022-09-02 09:57:06 +00:00
|
|
|
regex: PropTypes.string,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-06-03 23:39:38 +00:00
|
|
|
handlePin = () => {
|
|
|
|
const { columnId, dispatch } = this.props;
|
|
|
|
|
|
|
|
if (columnId) {
|
|
|
|
dispatch(removeColumn(columnId));
|
|
|
|
} else {
|
|
|
|
dispatch(addColumn('HOME', {}));
|
|
|
|
}
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2017-06-03 23:39:38 +00:00
|
|
|
|
|
|
|
handleMove = (dir) => {
|
|
|
|
const { columnId, dispatch } = this.props;
|
|
|
|
dispatch(moveColumn(columnId, dir));
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2017-06-03 23:39:38 +00:00
|
|
|
|
|
|
|
handleHeaderClick = () => {
|
|
|
|
this.column.scrollTop();
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2017-06-03 23:39:38 +00:00
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.column = c;
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2017-06-03 23:39:38 +00:00
|
|
|
|
2018-05-27 17:10:37 +00:00
|
|
|
handleLoadMore = maxId => {
|
|
|
|
this.props.dispatch(expandHomeTimeline({ maxId }));
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2017-06-11 15:07:35 +00:00
|
|
|
|
2018-01-18 16:25:37 +00:00
|
|
|
componentDidMount () {
|
2021-05-07 12:33:57 +00:00
|
|
|
setTimeout(() => this.props.dispatch(fetchAnnouncements()), 700);
|
2018-01-18 16:25:37 +00:00
|
|
|
this._checkIfReloadNeeded(false, this.props.isPartial);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate (prevProps) {
|
|
|
|
this._checkIfReloadNeeded(prevProps.isPartial, this.props.isPartial);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
this._stopPolling();
|
|
|
|
}
|
|
|
|
|
|
|
|
_checkIfReloadNeeded (wasPartial, isPartial) {
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
|
|
|
|
if (wasPartial === isPartial) {
|
|
|
|
return;
|
|
|
|
} else if (!wasPartial && isPartial) {
|
|
|
|
this.polling = setInterval(() => {
|
2018-05-27 17:10:37 +00:00
|
|
|
dispatch(expandHomeTimeline());
|
2018-01-18 16:25:37 +00:00
|
|
|
}, 3000);
|
|
|
|
} else if (wasPartial && !isPartial) {
|
|
|
|
this._stopPolling();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_stopPolling () {
|
|
|
|
if (this.polling) {
|
|
|
|
clearInterval(this.polling);
|
|
|
|
this.polling = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-25 15:35:33 +00:00
|
|
|
handleToggleAnnouncementsClick = (e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
this.props.dispatch(toggleShowAnnouncements());
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2020-01-25 15:35:33 +00:00
|
|
|
|
2016-10-12 11:17:17 +00:00
|
|
|
render () {
|
2023-06-22 21:48:40 +00:00
|
|
|
const { intl, hasUnread, columnId, multiColumn, tooSlow, hasAnnouncements, unreadAnnouncements, showAnnouncements } = this.props;
|
2017-06-03 23:39:38 +00:00
|
|
|
const pinned = !!columnId;
|
2022-10-04 18:13:23 +00:00
|
|
|
const { signedIn } = this.context.identity;
|
2017-05-04 21:41:34 +00:00
|
|
|
|
2023-06-22 21:48:40 +00:00
|
|
|
let announcementsButton, banner;
|
2020-01-25 15:35:33 +00:00
|
|
|
|
|
|
|
if (hasAnnouncements) {
|
|
|
|
announcementsButton = (
|
|
|
|
<button
|
|
|
|
className={classNames('column-header__button', { 'active': showAnnouncements })}
|
|
|
|
title={intl.formatMessage(showAnnouncements ? messages.hide_announcements : messages.show_announcements)}
|
|
|
|
aria-label={intl.formatMessage(showAnnouncements ? messages.hide_announcements : messages.show_announcements)}
|
|
|
|
onClick={this.handleToggleAnnouncementsClick}
|
|
|
|
>
|
|
|
|
<IconWithBadge id='bullhorn' count={unreadAnnouncements} />
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-06-22 21:48:40 +00:00
|
|
|
if (tooSlow) {
|
|
|
|
banner = <ExplorePrompt />;
|
|
|
|
}
|
|
|
|
|
2016-10-12 11:17:17 +00:00
|
|
|
return (
|
2019-08-01 17:17:17 +00:00
|
|
|
<Column bindToDocument={!multiColumn} ref={this.setRef} name='home' label={intl.formatMessage(messages.title)}>
|
2017-06-03 23:39:38 +00:00
|
|
|
<ColumnHeader
|
|
|
|
icon='home'
|
|
|
|
active={hasUnread}
|
|
|
|
title={intl.formatMessage(messages.title)}
|
|
|
|
onPin={this.handlePin}
|
|
|
|
onMove={this.handleMove}
|
|
|
|
onClick={this.handleHeaderClick}
|
|
|
|
pinned={pinned}
|
|
|
|
multiColumn={multiColumn}
|
2020-01-25 15:35:33 +00:00
|
|
|
extraButton={announcementsButton}
|
2020-01-25 18:40:36 +00:00
|
|
|
appendContent={hasAnnouncements && showAnnouncements && <AnnouncementsContainer />}
|
2017-06-03 23:39:38 +00:00
|
|
|
>
|
|
|
|
<ColumnSettingsContainer />
|
|
|
|
</ColumnHeader>
|
2017-05-04 21:41:34 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
{signedIn ? (
|
|
|
|
<StatusListContainer
|
2023-06-22 21:48:40 +00:00
|
|
|
prepend={banner}
|
|
|
|
alwaysPrepend
|
2022-10-04 18:13:23 +00:00
|
|
|
trackScroll={!pinned}
|
|
|
|
scrollKey={`home_timeline-${columnId}`}
|
|
|
|
onLoadMore={this.handleLoadMore}
|
|
|
|
timelineId='home'
|
2023-06-22 21:48:40 +00:00
|
|
|
emptyMessage={<FormattedMessage id='empty_column.home' defaultMessage='Your home timeline is empty! Follow more people to fill it up.' />}
|
2022-10-04 18:13:23 +00:00
|
|
|
bindToDocument={!multiColumn}
|
|
|
|
regex={this.props.regex}
|
|
|
|
/>
|
|
|
|
) : <NotSignedInIndicator />}
|
|
|
|
|
|
|
|
<Helmet>
|
2022-10-09 04:08:37 +00:00
|
|
|
<title>{intl.formatMessage(messages.title)}</title>
|
2022-10-20 12:35:29 +00:00
|
|
|
<meta name='robots' content='noindex' />
|
2022-10-04 18:13:23 +00:00
|
|
|
</Helmet>
|
2016-10-12 11:17:17 +00:00
|
|
|
</Column>
|
|
|
|
);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-10-12 11:17:17 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2023-03-24 22:15:25 +00:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(injectIntl(HomeTimeline));
|