|
|
|
@ -37,6 +37,7 @@ class PublicTimeline extends React.PureComponent {
|
|
|
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
|
router: PropTypes.object,
|
|
|
|
|
identity: PropTypes.object,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
@ -74,18 +75,30 @@ class PublicTimeline extends React.PureComponent {
|
|
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
|
const { dispatch, onlyMedia, onlyRemote } = this.props;
|
|
|
|
|
const { signedIn } = this.context.identity;
|
|
|
|
|
|
|
|
|
|
dispatch(expandPublicTimeline({ onlyMedia, onlyRemote }));
|
|
|
|
|
this.disconnect = dispatch(connectPublicStream({ onlyMedia, onlyRemote }));
|
|
|
|
|
|
|
|
|
|
if (signedIn) {
|
|
|
|
|
this.disconnect = dispatch(connectPublicStream({ onlyMedia, onlyRemote }));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentDidUpdate (prevProps) {
|
|
|
|
|
const { signedIn } = this.context.identity;
|
|
|
|
|
|
|
|
|
|
if (prevProps.onlyMedia !== this.props.onlyMedia || prevProps.onlyRemote !== this.props.onlyRemote) {
|
|
|
|
|
const { dispatch, onlyMedia, onlyRemote } = this.props;
|
|
|
|
|
|
|
|
|
|
this.disconnect();
|
|
|
|
|
if (this.disconnect) {
|
|
|
|
|
this.disconnect();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dispatch(expandPublicTimeline({ onlyMedia, onlyRemote }));
|
|
|
|
|
this.disconnect = dispatch(connectPublicStream({ onlyMedia, onlyRemote }));
|
|
|
|
|
|
|
|
|
|
if (signedIn) {
|
|
|
|
|
this.disconnect = dispatch(connectPublicStream({ onlyMedia, onlyRemote }));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|