|
|
|
@ -15,13 +15,14 @@ import { addColumn, removeColumn, moveColumn } from 'mastodon/actions/columns';
|
|
|
|
|
import ColumnHeader from 'mastodon/components/column_header';
|
|
|
|
|
import StatusList from 'mastodon/components/status_list';
|
|
|
|
|
import Column from 'mastodon/features/ui/components/column';
|
|
|
|
|
import { getStatusList } from 'mastodon/selectors';
|
|
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
|
heading: { id: 'column.bookmarks', defaultMessage: 'Bookmarks' },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
|
statusIds: state.getIn(['status_lists', 'bookmarks', 'items']),
|
|
|
|
|
statusIds: getStatusList(state, 'bookmarks'),
|
|
|
|
|
isLoading: state.getIn(['status_lists', 'bookmarks', 'isLoading'], true),
|
|
|
|
|
hasMore: !!state.getIn(['status_lists', 'bookmarks', 'next']),
|
|
|
|
|
});
|
|
|
|
|