Enable/disable location share button when setting is changed (#7545)

pull/21833/head
Andy Balaam 2022-01-14 15:04:09 +00:00 committed by GitHub
parent aa4131ed2e
commit ae2cb63a0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -254,6 +254,7 @@ interface IState {
showStickers: boolean;
showStickersButton: boolean;
showPollsButton: boolean;
showLocationButton: boolean;
}
@replaceableComponent("views.rooms.MessageComposer")
@ -285,12 +286,14 @@ export default class MessageComposer extends React.Component<IProps, IState> {
showStickers: false,
showStickersButton: SettingsStore.getValue("MessageComposerInput.showStickersButton"),
showPollsButton: SettingsStore.getValue("feature_polls"),
showLocationButton: SettingsStore.getValue("feature_location_share"),
};
this.instanceId = instanceCount++;
SettingsStore.monitorSetting("MessageComposerInput.showStickersButton", null);
SettingsStore.monitorSetting("feature_polls", null);
SettingsStore.monitorSetting("feature_location_share", null);
}
componentDidMount() {
@ -344,6 +347,15 @@ export default class MessageComposer extends React.Component<IProps, IState> {
}
break;
}
case "feature_location_share": {
const showLocationButton = SettingsStore.getValue(
"feature_location_share");
if (this.state.showLocationButton !== showLocationButton) {
this.setState({ showLocationButton });
}
break;
}
}
}
}