element-web/src/components/views/settings
Travis Ralston cb6f415a05 Be more positive with setting labels
Fixes https://github.com/vector-im/riot-web/issues/6435

This is done through an on-the-fly inverter for the settings. All the settings changed are boolean values, so this should be more than safe to just let happen throughout the SettingsStore. Typically a change like this would be done in the individual handlers (similar to how setting names are remapped to different properties or even different storage locations on the fly), however doing that for this many settings would be a huge nightmare and involve changing *all* the layers. By putting a global "invert this" flag on the setting, we can get away with doing the inversion as the last possible step during a read (or write).

To speed up calculations of the default values, we cache all the inverted values into a lookup table similar to how we represent the defaults already. Without this, the DefaultHandler would need to iterate the setting list and invert the values, slowing things down over time. We invert the value up front so we can keep the generic inversion logic without checking the level ahead of time. It is fully intended that a default value represents the new setting name, not the legacy name.

This commit also includes a debugger for settings because it was hard to visualize what the SettingsStore was doing during development. Some added information is included as it may be helpful for when someone has a problem with their settings and we need to debug it. Typically the debugger would be run in conjunction with `mxSendRageshake`: `mxSettingsStore.debugSetting('showJoinLeaves') && mxSendRageshake('Debugging showJoinLeaves setting')`.
2019-01-24 20:57:40 -07:00
..
tabs Be more positive with setting labels 2019-01-24 20:57:40 -07:00
AddPhoneNumber.js Rename login directory to auth 2019-01-21 17:45:55 -06:00
ChangeAvatar.js Remove use of deprecated React.PropTypes 2017-12-26 14:03:18 +13:00
ChangeDisplayName.js delint 2018-06-19 07:57:28 +01:00
ChangePassword.js Merge pull request #2496 from matrix-org/dbkr/target_blank 2019-01-24 18:15:18 +00:00
DevicesPanel.js A11y: repurpose more divs into AccessibleButtons. 2018-10-02 13:55:24 +02:00
DevicesPanelEntry.js Refactor DateUtils to ES6 2018-01-10 12:00:11 +00:00
EmailAddresses.js Early de-linting 2019-01-23 09:41:07 -07:00
EnableNotificationsButton.js Run eslint --fix 2017-10-11 17:56:17 +01:00
IntegrationsManager.js Fix more lint errors 2018-10-11 22:50:24 -05:00
KeyBackupPanel.js Show verify button when we have a device to verify 2019-01-21 11:34:13 +00:00
Notifications.js Styling to match the other tabs a bit closer 2019-01-24 10:12:25 -07:00
PhoneNumbers.js Appease the linter 2019-01-23 16:09:58 -07:00
ProfileSettings.js Early de-linting 2019-01-23 09:41:07 -07:00