206 lines
6.5 KiB
JavaScript
206 lines
6.5 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
import PropTypes from 'prop-types';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import classNames from 'classnames';
|
|
import StatusListContainer from '../ui/containers/status_list_container';
|
|
import Column from '../../components/column';
|
|
import ColumnHeader from '../../components/column_header';
|
|
import Icon from '../../components/icon';
|
|
import { fetchAccount } from '../../actions/accounts';
|
|
import { makeGetAccount } from 'mastodon/selectors';
|
|
import { expandGroupTimeline } from '../../actions/timelines';
|
|
import { addColumn, removeColumn, moveColumn } from '../../actions/columns';
|
|
import ColumnSettingsContainer from './containers/column_settings_container';
|
|
import GroupDetail from './components/group_detail';
|
|
import { connectGroupStream } from '../../actions/streaming';
|
|
|
|
const messages = defineMessages({
|
|
title: { id: 'column.group', defaultMessage: 'Group timeline' },
|
|
show_group_detail: { id: 'home.show_group_detail', defaultMessage: 'Show group detail' },
|
|
hide_group_detail: { id: 'home.hide_group_detail', defaultMessage: 'Hide group detail' },
|
|
});
|
|
|
|
const makeMapStateToProps = () => {
|
|
const getAccount = makeGetAccount();
|
|
|
|
const mapStateToProps = (state, { columnId, params: { id, tagged } }) => {
|
|
const uuid = columnId;
|
|
const columns = state.getIn(['settings', 'columns']);
|
|
const index = columns.findIndex(c => c.get('uuid') === uuid);
|
|
const onlyMedia = (columnId && index >= 0) ? columns.get(index).getIn(['params', 'other', 'onlyMedia']) : state.getIn(['settings', 'group', 'other', 'onlyMedia']);
|
|
const timelineState = state.getIn(['timelines', `group:${id}${onlyMedia ? ':media' : ''}${tagged ? `:${tagged}` : ''}`]);
|
|
const account = getAccount(state, id);
|
|
|
|
return {
|
|
hasUnread: !!timelineState && timelineState.get('unread') > 0,
|
|
onlyMedia,
|
|
account,
|
|
};
|
|
};
|
|
|
|
return mapStateToProps;
|
|
};
|
|
|
|
export default @connect(makeMapStateToProps)
|
|
@injectIntl
|
|
class GroupTimeline extends React.PureComponent {
|
|
|
|
static contextTypes = {
|
|
router: PropTypes.object,
|
|
};
|
|
|
|
static defaultProps = {
|
|
onlyMedia: false,
|
|
};
|
|
|
|
static propTypes = {
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
params: PropTypes.object.isRequired,
|
|
dispatch: PropTypes.func.isRequired,
|
|
columnId: PropTypes.string,
|
|
intl: PropTypes.object.isRequired,
|
|
hasUnread: PropTypes.bool,
|
|
multiColumn: PropTypes.bool,
|
|
onlyMedia: PropTypes.bool,
|
|
};
|
|
|
|
state = {
|
|
collapsed: true,
|
|
animating: false,
|
|
};
|
|
|
|
handlePin = () => {
|
|
const { columnId, dispatch, onlyMedia, params: { id, tagged } } = this.props;
|
|
|
|
if (columnId) {
|
|
dispatch(removeColumn(columnId));
|
|
} else {
|
|
dispatch(addColumn('GROUP', { id: id, other: { onlyMedia, tagged } }));
|
|
}
|
|
}
|
|
|
|
handleMove = (dir) => {
|
|
const { columnId, dispatch } = this.props;
|
|
dispatch(moveColumn(columnId, dir));
|
|
}
|
|
|
|
handleHeaderClick = () => {
|
|
this.column.scrollTop();
|
|
}
|
|
|
|
componentDidMount () {
|
|
const { dispatch, onlyMedia, params: { id, tagged } } = this.props;
|
|
|
|
dispatch(fetchAccount(id));
|
|
dispatch(expandGroupTimeline(id, { onlyMedia, tagged }));
|
|
this.disconnect = dispatch(connectGroupStream(id, { onlyMedia, tagged }));
|
|
}
|
|
|
|
componentDidUpdate (prevProps) {
|
|
const { dispatch, onlyMedia, params: { id, tagged } } = this.props;
|
|
|
|
if (prevProps.params.id !== id || prevProps.onlyMedia !== onlyMedia || prevProps.tagged !== tagged) {
|
|
this.disconnect();
|
|
dispatch(expandGroupTimeline(id, { onlyMedia, tagged }));
|
|
this.disconnect = dispatch(connectGroupStream(id, { onlyMedia, tagged }));
|
|
}
|
|
}
|
|
|
|
componentWillUnmount () {
|
|
if (this.disconnect) {
|
|
this.disconnect();
|
|
this.disconnect = null;
|
|
}
|
|
}
|
|
|
|
setRef = c => {
|
|
this.column = c;
|
|
}
|
|
|
|
handleLoadMore = maxId => {
|
|
const { dispatch, onlyMedia, params: { id, tagged } } = this.props;
|
|
|
|
dispatch(expandGroupTimeline(id, { maxId, onlyMedia, tagged }));
|
|
}
|
|
|
|
handleToggleClick = (e) => {
|
|
e.stopPropagation();
|
|
this.setState({ collapsed: !this.state.collapsed, animating: true });
|
|
}
|
|
|
|
handleTransitionEnd = () => {
|
|
this.setState({ animating: false });
|
|
}
|
|
|
|
render () {
|
|
const { intl, hasUnread, columnId, multiColumn, onlyMedia, params: { id, tagged }, account } = this.props;
|
|
const pinned = !!columnId;
|
|
|
|
const { collapsed, animating } = this.state;
|
|
|
|
if (!account) {
|
|
return <div />;
|
|
}
|
|
|
|
const collapsibleClassName = classNames('column-header__collapsible', {
|
|
'collapsed': collapsed,
|
|
'animating': animating,
|
|
});
|
|
|
|
const collapsibleButtonClassName = classNames('column-header__button', {
|
|
'active': !collapsed,
|
|
});
|
|
|
|
const groupDetailButton = (
|
|
<button
|
|
className={collapsibleButtonClassName}
|
|
title={intl.formatMessage(collapsed ? messages.hide_group_detail : messages.show_group_detail)}
|
|
aria-label={intl.formatMessage(collapsed ? messages.hide_group_detail : messages.show_group_detail)}
|
|
aria-pressed={collapsed ? 'false' : 'true'}
|
|
onClick={this.handleToggleClick}
|
|
>
|
|
<Icon id='info-circle' />
|
|
</button>
|
|
);
|
|
|
|
const title = account.get('username', intl.formatMessage(messages.title))
|
|
|
|
const groupDetail = (
|
|
<div className={collapsibleClassName} tabIndex={collapsed ? -1 : null} onTransitionEnd={this.handleTransitionEnd}>
|
|
{(!collapsed || animating) && <><GroupDetail id={id} /></>}
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<Column bindToDocument={!multiColumn} ref={this.setRef} label={title}>
|
|
<ColumnHeader
|
|
icon='users'
|
|
active={hasUnread}
|
|
title={title}
|
|
onPin={this.handlePin}
|
|
onMove={this.handleMove}
|
|
onClick={this.handleHeaderClick}
|
|
pinned={pinned}
|
|
multiColumn={multiColumn}
|
|
extraButton={groupDetailButton}
|
|
>
|
|
<ColumnSettingsContainer columnId={columnId} />
|
|
</ColumnHeader>
|
|
|
|
{groupDetail}
|
|
|
|
<StatusListContainer
|
|
trackScroll={!pinned}
|
|
scrollKey={`group_timeline-${columnId}`}
|
|
timelineId={`group:${id}${onlyMedia ? ':media' : ''}${tagged ? `:${tagged}` : ''}`}
|
|
onLoadMore={this.handleLoadMore}
|
|
emptyMessage={<FormattedMessage id='empty_column.group' defaultMessage='The group timeline is empty. When members of this group post new toots, they will appear here.' />}
|
|
bindToDocument={!multiColumn}
|
|
/>
|
|
</Column>
|
|
);
|
|
}
|
|
|
|
}
|