2017-09-07 09:58:11 +02:00
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-12-04 08:26:40 +01:00
|
|
|
import { fetchPinnedStatuses } from 'flavours/glitch/actions/pin_statuses';
|
|
|
|
import Column from 'flavours/glitch/features/ui/components/column';
|
|
|
|
import ColumnBackButtonSlim from 'flavours/glitch/components/column_back_button_slim';
|
|
|
|
import StatusList from 'flavours/glitch/components/status_list';
|
2017-09-07 09:58:11 +02:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
2022-05-03 10:59:23 +02:00
|
|
|
heading: { id: 'column.pins', defaultMessage: 'Pinned post' },
|
2017-09-07 09:58:11 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
statusIds: state.getIn(['status_lists', 'pins', 'items']),
|
|
|
|
hasMore: !!state.getIn(['status_lists', 'pins', 'next']),
|
|
|
|
});
|
|
|
|
|
2019-09-09 15:16:08 +02:00
|
|
|
export default @connect(mapStateToProps)
|
2017-09-07 09:58:11 +02:00
|
|
|
@injectIntl
|
2019-09-09 15:16:08 +02:00
|
|
|
class PinnedStatuses extends ImmutablePureComponent {
|
2017-09-07 09:58:11 +02:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
statusIds: ImmutablePropTypes.list.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
hasMore: PropTypes.bool.isRequired,
|
2019-07-19 09:25:22 +02:00
|
|
|
multiColumn: PropTypes.bool,
|
2017-09-07 09:58:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
componentWillMount () {
|
|
|
|
this.props.dispatch(fetchPinnedStatuses());
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHeaderClick = () => {
|
|
|
|
this.column.scrollTop();
|
|
|
|
}
|
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.column = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2019-07-19 09:25:22 +02:00
|
|
|
const { intl, statusIds, hasMore, multiColumn } = this.props;
|
2017-09-07 09:58:11 +02:00
|
|
|
|
|
|
|
return (
|
2019-08-01 19:17:17 +02:00
|
|
|
<Column bindToDocument={!multiColumn} icon='thumb-tack' heading={intl.formatMessage(messages.heading)} ref={this.setRef}>
|
2017-09-07 09:58:11 +02:00
|
|
|
<ColumnBackButtonSlim />
|
|
|
|
<StatusList
|
|
|
|
statusIds={statusIds}
|
|
|
|
scrollKey='pinned_statuses'
|
|
|
|
hasMore={hasMore}
|
2019-07-19 09:25:22 +02:00
|
|
|
bindToDocument={!multiColumn}
|
2017-09-07 09:58:11 +02:00
|
|
|
/>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|