Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
244 lines
8.0 KiB
JavaScript
244 lines
8.0 KiB
JavaScript
import PropTypes from "prop-types";
|
|
import { PureComponent } from "react";
|
|
|
|
import { FormattedMessage, defineMessages, injectIntl } from "react-intl";
|
|
|
|
import { Helmet } from "react-helmet";
|
|
|
|
import ImmutablePropTypes from "react-immutable-proptypes";
|
|
import { connect } from "react-redux";
|
|
|
|
import Toggle from "react-toggle";
|
|
|
|
import { addColumn, removeColumn, moveColumn } from "mastodon/actions/columns";
|
|
import { fetchList, deleteList, updateList } from "mastodon/actions/lists";
|
|
import { openModal } from "mastodon/actions/modal";
|
|
import { connectListStream } from "mastodon/actions/streaming";
|
|
import { expandListTimeline } from "mastodon/actions/timelines";
|
|
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 { RadioButton } from "mastodon/components/radio_button";
|
|
import BundleColumnError from "mastodon/features/ui/components/bundle_column_error";
|
|
import StatusListContainer from "mastodon/features/ui/containers/status_list_container";
|
|
|
|
const messages = defineMessages({
|
|
deleteMessage: { id: "confirmations.delete_list.message", defaultMessage: "Are you sure you want to permanently delete this list?" },
|
|
deleteConfirm: { id: "confirmations.delete_list.confirm", defaultMessage: "Delete" },
|
|
followed: { id: "lists.replies_policy.followed", defaultMessage: "Any followed user" },
|
|
none: { id: "lists.replies_policy.none", defaultMessage: "No one" },
|
|
list: { id: "lists.replies_policy.list", defaultMessage: "Members of the list" },
|
|
});
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
list: state.getIn(["lists", props.params.id]),
|
|
hasUnread: state.getIn(["timelines", `list:${props.params.id}`, "unread"]) > 0,
|
|
});
|
|
|
|
class ListTimeline extends PureComponent {
|
|
|
|
static contextTypes = {
|
|
router: PropTypes.object,
|
|
};
|
|
|
|
static propTypes = {
|
|
params: PropTypes.object.isRequired,
|
|
dispatch: PropTypes.func.isRequired,
|
|
columnId: PropTypes.string,
|
|
hasUnread: PropTypes.bool,
|
|
multiColumn: PropTypes.bool,
|
|
list: PropTypes.oneOfType([ImmutablePropTypes.map, PropTypes.bool]),
|
|
intl: PropTypes.object.isRequired,
|
|
};
|
|
|
|
handlePin = () => {
|
|
const { columnId, dispatch } = this.props;
|
|
|
|
if (columnId) {
|
|
dispatch(removeColumn(columnId));
|
|
} else {
|
|
dispatch(addColumn("LIST", { id: this.props.params.id }));
|
|
this.context.router.history.push("/");
|
|
}
|
|
};
|
|
|
|
handleMove = (dir) => {
|
|
const { columnId, dispatch } = this.props;
|
|
dispatch(moveColumn(columnId, dir));
|
|
};
|
|
|
|
handleHeaderClick = () => {
|
|
this.column.scrollTop();
|
|
};
|
|
|
|
componentDidMount () {
|
|
const { dispatch } = this.props;
|
|
const { id } = this.props.params;
|
|
|
|
dispatch(fetchList(id));
|
|
dispatch(expandListTimeline(id));
|
|
|
|
this.disconnect = dispatch(connectListStream(id));
|
|
}
|
|
|
|
UNSAFE_componentWillReceiveProps (nextProps) {
|
|
const { dispatch } = this.props;
|
|
const { id } = nextProps.params;
|
|
|
|
if (id !== this.props.params.id) {
|
|
if (this.disconnect) {
|
|
this.disconnect();
|
|
this.disconnect = null;
|
|
}
|
|
|
|
dispatch(fetchList(id));
|
|
dispatch(expandListTimeline(id));
|
|
|
|
this.disconnect = dispatch(connectListStream(id));
|
|
}
|
|
}
|
|
|
|
componentWillUnmount () {
|
|
if (this.disconnect) {
|
|
this.disconnect();
|
|
this.disconnect = null;
|
|
}
|
|
}
|
|
|
|
setRef = c => {
|
|
this.column = c;
|
|
};
|
|
|
|
handleLoadMore = maxId => {
|
|
const { id } = this.props.params;
|
|
this.props.dispatch(expandListTimeline(id, { maxId }));
|
|
};
|
|
|
|
handleEditClick = () => {
|
|
this.props.dispatch(openModal({
|
|
modalType: "LIST_EDITOR",
|
|
modalProps: { listId: this.props.params.id },
|
|
}));
|
|
};
|
|
|
|
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(deleteList(id));
|
|
|
|
if (columnId) {
|
|
dispatch(removeColumn(columnId));
|
|
} else {
|
|
this.context.router.history.push("/lists");
|
|
}
|
|
},
|
|
},
|
|
}));
|
|
};
|
|
|
|
handleRepliesPolicyChange = ({ target }) => {
|
|
const { dispatch } = this.props;
|
|
const { id } = this.props.params;
|
|
dispatch(updateList(id, undefined, false, undefined, target.value));
|
|
};
|
|
|
|
onExclusiveToggle = ({ target }) => {
|
|
const { dispatch } = this.props;
|
|
const { id } = this.props.params;
|
|
dispatch(updateList(id, undefined, false, target.checked, undefined));
|
|
};
|
|
|
|
render () {
|
|
const { hasUnread, columnId, multiColumn, list, intl } = this.props;
|
|
const { id } = this.props.params;
|
|
const pinned = !!columnId;
|
|
const title = list ? list.get("title") : id;
|
|
const replies_policy = list ? list.get("replies_policy") : undefined;
|
|
const isExclusive = list ? list.get("exclusive") : undefined;
|
|
|
|
if (typeof list === "undefined") {
|
|
return (
|
|
<Column>
|
|
<div className='scrollable'>
|
|
<LoadingIndicator />
|
|
</div>
|
|
</Column>
|
|
);
|
|
} else if (list === false) {
|
|
return (
|
|
<BundleColumnError multiColumn={multiColumn} errorType='routing' />
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Column bindToDocument={!multiColumn} ref={this.setRef} label={title}>
|
|
<ColumnHeader
|
|
icon='list-ul'
|
|
active={hasUnread}
|
|
title={title}
|
|
onPin={this.handlePin}
|
|
onMove={this.handleMove}
|
|
onClick={this.handleHeaderClick}
|
|
pinned={pinned}
|
|
multiColumn={multiColumn}
|
|
>
|
|
<div className='column-settings__row column-header__links'>
|
|
<button type='button' className='text-btn column-header__setting-btn' tabIndex={0} onClick={this.handleEditClick}>
|
|
<Icon id='pencil' /> <FormattedMessage id='lists.edit' defaultMessage='Edit list' />
|
|
</button>
|
|
|
|
<button type='button' className='text-btn column-header__setting-btn' tabIndex={0} onClick={this.handleDeleteClick}>
|
|
<Icon id='trash' /> <FormattedMessage id='lists.delete' defaultMessage='Delete list' />
|
|
</button>
|
|
</div>
|
|
|
|
<div className='setting-toggle'>
|
|
<Toggle id={`list-${id}-exclusive`} defaultChecked={isExclusive} onChange={this.onExclusiveToggle} />
|
|
<label htmlFor={`list-${id}-exclusive`} className='setting-toggle__label'>
|
|
<FormattedMessage id='lists.exclusive' defaultMessage='Hide these posts from home' />
|
|
</label>
|
|
</div>
|
|
|
|
{ replies_policy !== undefined && (
|
|
<div role='group' aria-labelledby={`list-${id}-replies-policy`}>
|
|
<span id={`list-${id}-replies-policy`} className='column-settings__section'>
|
|
<FormattedMessage id='lists.replies_policy.title' defaultMessage='Show replies to:' />
|
|
</span>
|
|
<div className='column-settings__row'>
|
|
{ ["none", "list", "followed"].map(policy => (
|
|
<RadioButton name='order' key={policy} value={policy} label={intl.formatMessage(messages[policy])} checked={replies_policy === policy} onChange={this.handleRepliesPolicyChange} />
|
|
))}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</ColumnHeader>
|
|
|
|
<StatusListContainer
|
|
trackScroll={!pinned}
|
|
scrollKey={`list_timeline-${columnId}`}
|
|
timelineId={`list:${id}`}
|
|
onLoadMore={this.handleLoadMore}
|
|
emptyMessage={<FormattedMessage id='empty_column.list' defaultMessage='There is nothing in this list yet. When members of this list post new statuses, they will appear here.' />}
|
|
bindToDocument={!multiColumn}
|
|
/>
|
|
|
|
<Helmet>
|
|
<title>{title}</title>
|
|
<meta name='robots' content='noindex' />
|
|
</Helmet>
|
|
</Column>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default connect(mapStateToProps)(injectIntl(ListTimeline));
|