tidy AuxPanel TS

pull/21833/head
Michael Telatynski 2021-06-16 12:07:58 +01:00
parent d87325ae6a
commit 626d575820
1 changed files with 10 additions and 10 deletions

View File

@ -68,21 +68,21 @@ export default class AuxPanel extends React.Component<IProps, IState> {
super(props);
this.state = {
counters: this._computeCounters(),
counters: this.computeCounters(),
};
}
componentDidMount() {
const cli = MatrixClientPeg.get();
if (SettingsStore.getValue("feature_state_counters")) {
cli.on("RoomState.events", this._rateLimitedUpdate);
cli.on("RoomState.events", this.rateLimitedUpdate);
}
}
componentWillUnmount() {
const cli = MatrixClientPeg.get();
if (cli && SettingsStore.getValue("feature_state_counters")) {
cli.removeListener("RoomState.events", this._rateLimitedUpdate);
cli.removeListener("RoomState.events", this.rateLimitedUpdate);
}
}
@ -97,11 +97,11 @@ export default class AuxPanel extends React.Component<IProps, IState> {
}
}
_rateLimitedUpdate = new RateLimitedFunc(() => {
this.setState({ counters: this._computeCounters() });
private rateLimitedUpdate = new RateLimitedFunc(() => {
this.setState({ counters: this.computeCounters() });
}, 500);
_computeCounters() {
private computeCounters() {
const counters = [];
if (this.props.room && SettingsStore.getValue("feature_state_counters")) {