195 lines
6.5 KiB
JavaScript
195 lines
6.5 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
import { withRouter } from 'react-router-dom';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
import { connect } from 'react-redux';
|
|
|
|
|
|
import { debounce } from 'lodash';
|
|
|
|
import CircleIcon from '@/material-icons/400-24px/account_circle.svg?react';
|
|
import DeleteIcon from '@/material-icons/400-24px/delete.svg?react';
|
|
import EditIcon from '@/material-icons/400-24px/edit.svg?react';
|
|
import { deleteCircle, expandCircleStatuses, fetchCircle, fetchCircleStatuses } from 'mastodon/actions/circles';
|
|
import { addColumn, removeColumn, moveColumn } from 'mastodon/actions/columns';
|
|
import { openModal } from 'mastodon/actions/modal';
|
|
import Column from 'mastodon/components/column';
|
|
import ColumnHeader from 'mastodon/components/column_header';
|
|
import { Icon } from 'mastodon/components/icon';
|
|
import { LoadingIndicator } from 'mastodon/components/loading_indicator';
|
|
import StatusList from 'mastodon/components/status_list';
|
|
import BundleColumnError from 'mastodon/features/ui/components/bundle_column_error';
|
|
import { getCircleStatusList } from 'mastodon/selectors';
|
|
import { WithRouterPropTypes } from 'mastodon/utils/react_router';
|
|
|
|
|
|
const messages = defineMessages({
|
|
deleteMessage: { id: 'confirmations.delete_circle.message', defaultMessage: 'Are you sure you want to permanently delete this circle?' },
|
|
deleteConfirm: { id: 'confirmations.delete_circle.confirm', defaultMessage: 'Delete' },
|
|
heading: { id: 'column.circles', defaultMessage: 'Circles' },
|
|
});
|
|
|
|
const mapStateToProps = (state, { params }) => ({
|
|
circle: state.getIn(['circles', params.id]),
|
|
statusIds: getCircleStatusList(state, params.id),
|
|
isLoading: state.getIn(['status_lists', 'circle_statuses', params.id, 'isLoading'], true),
|
|
hasMore: !!state.getIn(['status_lists', 'circle_statuses', params.id, 'next']),
|
|
});
|
|
|
|
class CircleStatuses extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
params: PropTypes.object.isRequired,
|
|
dispatch: PropTypes.func.isRequired,
|
|
statusIds: ImmutablePropTypes.list.isRequired,
|
|
circle: PropTypes.oneOfType([ImmutablePropTypes.map, PropTypes.bool]),
|
|
intl: PropTypes.object.isRequired,
|
|
columnId: PropTypes.string,
|
|
multiColumn: PropTypes.bool,
|
|
hasMore: PropTypes.bool,
|
|
isLoading: PropTypes.bool,
|
|
...WithRouterPropTypes,
|
|
};
|
|
|
|
UNSAFE_componentWillMount () {
|
|
this.props.dispatch(fetchCircle(this.props.params.id));
|
|
this.props.dispatch(fetchCircleStatuses(this.props.params.id));
|
|
}
|
|
|
|
UNSAFE_componentWillReceiveProps (nextProps) {
|
|
const { dispatch } = this.props;
|
|
const { id } = nextProps.params;
|
|
|
|
if (id !== this.props.params.id) {
|
|
dispatch(fetchCircle(id));
|
|
dispatch(fetchCircleStatuses(id));
|
|
}
|
|
}
|
|
|
|
handlePin = () => {
|
|
const { columnId, dispatch } = this.props;
|
|
|
|
if (columnId) {
|
|
dispatch(removeColumn(columnId));
|
|
} else {
|
|
dispatch(addColumn('CIRCLE_STATUSES', { id: this.props.params.id }));
|
|
this.props.history.push('/');
|
|
}
|
|
};
|
|
|
|
handleMove = (dir) => {
|
|
const { columnId, dispatch } = this.props;
|
|
dispatch(moveColumn(columnId, dir));
|
|
};
|
|
|
|
handleHeaderClick = () => {
|
|
this.column.scrollTop();
|
|
};
|
|
|
|
handleEditClick = () => {
|
|
this.props.history.push(`/circles/${this.props.params.id}/edit`);
|
|
};
|
|
|
|
handleDeleteClick = () => {
|
|
const { dispatch, columnId, intl } = this.props;
|
|
const { id } = this.props.params;
|
|
|
|
dispatch(openModal({
|
|
modalType: 'CONFIRM',
|
|
modalProps: {
|
|
message: intl.formatMessage(messages.deleteMessage),
|
|
confirm: intl.formatMessage(messages.deleteConfirm),
|
|
onConfirm: () => {
|
|
dispatch(deleteCircle(id));
|
|
|
|
if (columnId) {
|
|
dispatch(removeColumn(columnId));
|
|
} else {
|
|
this.props.history.push('/circles');
|
|
}
|
|
},
|
|
},
|
|
}));
|
|
};
|
|
|
|
setRef = c => {
|
|
this.column = c;
|
|
};
|
|
|
|
handleLoadMore = debounce(() => {
|
|
this.props.dispatch(expandCircleStatuses(this.props.params.id));
|
|
}, 300, { leading: true });
|
|
|
|
render () {
|
|
const { intl, circle, statusIds, columnId, multiColumn, hasMore, isLoading } = this.props;
|
|
const pinned = !!columnId;
|
|
|
|
if (typeof circle === 'undefined') {
|
|
return (
|
|
<Column>
|
|
<div className='scrollable'>
|
|
<LoadingIndicator />
|
|
</div>
|
|
</Column>
|
|
);
|
|
} else if (circle === false) {
|
|
return (
|
|
<BundleColumnError multiColumn={multiColumn} errorType='routing' />
|
|
);
|
|
}
|
|
|
|
const emptyMessage = <FormattedMessage id='empty_column.circle_statuses' defaultMessage="You don't have any circle posts yet. When you post one as circle, it will show up here." />;
|
|
|
|
return (
|
|
<Column bindToDocument={!multiColumn} ref={this.setRef} label={intl.formatMessage(messages.heading)}>
|
|
<ColumnHeader
|
|
icon='user-circle'
|
|
iconComponent={CircleIcon}
|
|
title={circle.get('title')}
|
|
onPin={this.handlePin}
|
|
onMove={this.handleMove}
|
|
onClick={this.handleHeaderClick}
|
|
pinned={pinned}
|
|
multiColumn={multiColumn}
|
|
>
|
|
<div className='column-settings'>
|
|
<section className='column-header__links'>
|
|
<button type='button' className='text-btn column-header__setting-btn' tabIndex={0} onClick={this.handleEditClick}>
|
|
<Icon id='pencil' icon={EditIcon} /> <FormattedMessage id='circles.edit' defaultMessage='Edit circle' />
|
|
</button>
|
|
|
|
<button type='button' className='text-btn column-header__setting-btn' tabIndex={0} onClick={this.handleDeleteClick}>
|
|
<Icon id='trash' icon={DeleteIcon} /> <FormattedMessage id='circles.delete' defaultMessage='Delete circle' />
|
|
</button>
|
|
</section>
|
|
</div>
|
|
</ColumnHeader>
|
|
|
|
<StatusList
|
|
trackScroll={!pinned}
|
|
statusIds={statusIds}
|
|
scrollKey={`circle_statuses-${columnId}`}
|
|
hasMore={hasMore}
|
|
isLoading={isLoading}
|
|
onLoadMore={this.handleLoadMore}
|
|
emptyMessage={emptyMessage}
|
|
bindToDocument={!multiColumn}
|
|
/>
|
|
|
|
<Helmet>
|
|
<title>{intl.formatMessage(messages.heading)}</title>
|
|
<meta name='robots' content='noindex' />
|
|
</Helmet>
|
|
</Column>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default withRouter(connect(mapStateToProps)(injectIntl(CircleStatuses)));
|