2017-09-07 17:58:11 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
|
2017-09-07 17:58:11 +10:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2023-05-24 01:15:17 +10:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
2023-06-23 01:54:43 +10:00
|
|
|
import { getStatusList } from 'mastodon/selectors';
|
|
|
|
|
2017-09-07 17:58:11 +10:00
|
|
|
import { fetchPinnedStatuses } from '../../actions/pin_statuses';
|
|
|
|
import ColumnBackButtonSlim from '../../components/column_back_button_slim';
|
|
|
|
import StatusList from '../../components/status_list';
|
2023-05-24 01:15:17 +10:00
|
|
|
import Column from '../ui/components/column';
|
2017-09-07 17:58:11 +10:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2022-04-29 08:24:31 +10:00
|
|
|
heading: { id: 'column.pins', defaultMessage: 'Pinned post' },
|
2017-09-07 17:58:11 +10:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2023-06-23 01:54:43 +10:00
|
|
|
statusIds: getStatusList(state, 'pins'),
|
2017-09-07 17:58:11 +10:00
|
|
|
hasMore: !!state.getIn(['status_lists', 'pins', 'next']),
|
|
|
|
});
|
|
|
|
|
2018-09-15 01:59:48 +10:00
|
|
|
class PinnedStatuses extends ImmutablePureComponent {
|
2017-09-07 17:58:11 +10:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
statusIds: ImmutablePropTypes.list.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
hasMore: PropTypes.bool.isRequired,
|
2019-07-19 17:25:22 +10:00
|
|
|
multiColumn: PropTypes.bool,
|
2017-09-07 17:58:11 +10:00
|
|
|
};
|
|
|
|
|
2023-05-10 17:05:32 +10:00
|
|
|
UNSAFE_componentWillMount () {
|
2017-09-07 17:58:11 +10:00
|
|
|
this.props.dispatch(fetchPinnedStatuses());
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHeaderClick = () => {
|
|
|
|
this.column.scrollTop();
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-07 17:58:11 +10:00
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.column = c;
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-09-07 17:58:11 +10:00
|
|
|
|
|
|
|
render () {
|
2021-07-13 23:45:17 +10:00
|
|
|
const { intl, statusIds, hasMore, multiColumn } = this.props;
|
2017-09-07 17:58:11 +10:00
|
|
|
|
|
|
|
return (
|
2019-08-02 03:17:17 +10:00
|
|
|
<Column bindToDocument={!multiColumn} icon='thumb-tack' heading={intl.formatMessage(messages.heading)} ref={this.setRef}>
|
2017-09-07 17:58:11 +10:00
|
|
|
<ColumnBackButtonSlim />
|
|
|
|
<StatusList
|
|
|
|
statusIds={statusIds}
|
|
|
|
scrollKey='pinned_statuses'
|
|
|
|
hasMore={hasMore}
|
2019-07-19 17:25:22 +10:00
|
|
|
bindToDocument={!multiColumn}
|
2017-09-07 17:58:11 +10:00
|
|
|
/>
|
2022-10-20 23:35:29 +11:00
|
|
|
<Helmet>
|
|
|
|
<meta name='robots' content='noindex' />
|
|
|
|
</Helmet>
|
2017-09-07 17:58:11 +10:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 13:17:53 +11:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(injectIntl(PinnedStatuses));
|