Browse Source

[Glitch] Fix not being able to directly switch between list timelines in web UI

Port 5bfd802c57 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
closed-social-glitch-2
Eugen Rochko 5 years ago
committed by Thibaut Girka
parent
commit
aec3fa35fd
1 changed files with 17 additions and 0 deletions
  1. +17
    -0
      app/javascript/flavours/glitch/features/list_timeline/index.js

+ 17
- 0
app/javascript/flavours/glitch/features/list_timeline/index.js View File

@ -75,6 +75,23 @@ export default class ListTimeline extends React.PureComponent {
this.disconnect = dispatch(connectListStream(id));
}
componentWillReceiveProps (nextProps) {
const { dispatch } = this.props;
const { id } = nextProps.params;
if (id !== this.props.params.id) {
if (this.disconnect) {
this.disconnect();
this.disconnect = null;
}
dispatch(fetchList(id));
dispatch(expandListTimeline(id));
this.disconnect = dispatch(connectListStream(id));
}
}
componentWillUnmount () {
if (this.disconnect) {
this.disconnect();

Loading…
Cancel
Save