4084d14c97
fixes #6
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import { fetchPinnedStatuses } from '../../actions/pin_statuses';
|
|
import Column from '../ui/components/column';
|
|
import StatusList from '../../components/status_list';
|
|
import { injectIntl } from 'react-intl';
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
import { meUsername } from 'gabsocial/initial_state';
|
|
import MissingIndicator from 'gabsocial/components/missing_indicator';
|
|
|
|
const mapStateToProps = (state, { params: { username } }) => {
|
|
return {
|
|
isMyAccount: (username.toLowerCase() === meUsername.toLowerCase()),
|
|
statusIds: state.getIn(['status_lists', 'pins', 'items']),
|
|
hasMore: !!state.getIn(['status_lists', 'pins', 'next']),
|
|
};
|
|
};;
|
|
|
|
export default @connect(mapStateToProps)
|
|
@injectIntl
|
|
class PinnedStatuses extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
dispatch: PropTypes.func.isRequired,
|
|
statusIds: ImmutablePropTypes.list.isRequired,
|
|
intl: PropTypes.object.isRequired,
|
|
hasMore: PropTypes.bool.isRequired,
|
|
isMyAccount: PropTypes.bool.isRequired,
|
|
};
|
|
|
|
componentWillMount () {
|
|
this.props.dispatch(fetchPinnedStatuses());
|
|
}
|
|
|
|
render () {
|
|
const { intl, statusIds, hasMore, isMyAccount } = this.props;
|
|
|
|
if (!isMyAccount) {
|
|
return (
|
|
<Column>
|
|
<MissingIndicator />
|
|
</Column>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Column>
|
|
<StatusList
|
|
statusIds={statusIds}
|
|
scrollKey='pinned_statuses'
|
|
hasMore={hasMore}
|
|
/>
|
|
</Column>
|
|
);
|
|
}
|
|
|
|
}
|