67 lines
2.3 KiB
JavaScript
67 lines
2.3 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import Column from '../ui/components/column';
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
import ScrollableList from 'soapbox/components/scrollable_list';
|
|
import { fetchScheduledStatuses, expandScheduledStatuses } from '../../actions/scheduled_statuses';
|
|
import ScheduledStatus from './components/scheduled_status';
|
|
import { debounce } from 'lodash';
|
|
|
|
const messages = defineMessages({
|
|
heading: { id: 'column.scheduled_statuses', defaultMessage: 'Scheduled Posts' },
|
|
});
|
|
|
|
const mapStateToProps = state => ({
|
|
statusIds: state.getIn(['status_lists', 'scheduled_statuses', 'items']),
|
|
isLoading: state.getIn(['status_lists', 'scheduled_statuses', 'isLoading'], true),
|
|
hasMore: !!state.getIn(['status_lists', 'scheduled_statuses', 'next']),
|
|
});
|
|
|
|
export default @connect(mapStateToProps)
|
|
@injectIntl
|
|
class ScheduledStatuses extends ImmutablePureComponent {
|
|
|
|
static contextTypes = {
|
|
router: PropTypes.object,
|
|
};
|
|
|
|
static propTypes = {
|
|
dispatch: PropTypes.func.isRequired,
|
|
statusIds: ImmutablePropTypes.orderedSet.isRequired,
|
|
intl: PropTypes.object.isRequired,
|
|
hasMore: PropTypes.bool,
|
|
isLoading: PropTypes.bool,
|
|
};
|
|
|
|
componentDidMount() {
|
|
const { dispatch } = this.props;
|
|
dispatch(fetchScheduledStatuses());
|
|
}
|
|
|
|
handleLoadMore = debounce(() => {
|
|
this.props.dispatch(expandScheduledStatuses());
|
|
}, 300, { leading: true })
|
|
|
|
|
|
render() {
|
|
const { intl, statusIds, hasMore, isLoading } = this.props;
|
|
const emptyMessage = <FormattedMessage id='empty_column.scheduled_statuses' defaultMessage="You don't have any scheduled statuses yet. When you add one, it will show up here." />;
|
|
|
|
return (
|
|
<Column icon='calendar' heading={intl.formatMessage(messages.heading)} backBtnSlim>
|
|
<ScrollableList
|
|
scrollKey='scheduled_statuses'
|
|
emptyMessage={emptyMessage}
|
|
isLoading={isLoading}
|
|
hasMore={hasMore}
|
|
>
|
|
{statusIds.map(id => <ScheduledStatus key={id} statusId={id} />)}
|
|
</ScrollableList>
|
|
</Column>
|
|
);
|
|
}
|
|
|
|
}
|