mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Merge pull request #6269 from vector-im/luke/feature-disable-tag-panel
Add setting to disable TagPanel
This commit is contained in:
commit
e1e8d9777b
@ -168,6 +168,10 @@ module.exports = React.createClass({
|
|||||||
const RoomDirectoryButton = sdk.getComponent('elements.RoomDirectoryButton');
|
const RoomDirectoryButton = sdk.getComponent('elements.RoomDirectoryButton');
|
||||||
const CreateRoomButton = sdk.getComponent('elements.CreateRoomButton');
|
const CreateRoomButton = sdk.getComponent('elements.CreateRoomButton');
|
||||||
const SettingsButton = sdk.getComponent('elements.SettingsButton');
|
const SettingsButton = sdk.getComponent('elements.SettingsButton');
|
||||||
|
const GroupsButton = sdk.getComponent('elements.GroupsButton');
|
||||||
|
|
||||||
|
const groupsButton = SettingsStore.getValue("TagPanel.disableTagPanel") ?
|
||||||
|
<GroupsButton tooltip={true} /> : null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_BottomLeftMenu">
|
<div className="mx_BottomLeftMenu">
|
||||||
@ -182,6 +186,7 @@ module.exports = React.createClass({
|
|||||||
<div ref={this._collectCreateRoomButton}>
|
<div ref={this._collectCreateRoomButton}>
|
||||||
<CreateRoomButton tooltip={true} />
|
<CreateRoomButton tooltip={true} />
|
||||||
</div>
|
</div>
|
||||||
|
{ groupsButton }
|
||||||
<span className="mx_BottomLeftMenu_settings">
|
<span className="mx_BottomLeftMenu_settings">
|
||||||
<SettingsButton tooltip={true} />
|
<SettingsButton tooltip={true} />
|
||||||
</span>
|
</span>
|
||||||
|
@ -194,7 +194,9 @@ var LeftPanel = React.createClass({
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
const tagPanelEnabled = SettingsStore.isFeatureEnabled("feature_tag_panel");
|
const tagPanelEnabled =
|
||||||
|
SettingsStore.isFeatureEnabled("feature_tag_panel") &&
|
||||||
|
!SettingsStore.getValue("TagPanel.disableTagPanel");
|
||||||
const tagPanel = tagPanelEnabled ? <TagPanel /> : <div />;
|
const tagPanel = tagPanelEnabled ? <TagPanel /> : <div />;
|
||||||
|
|
||||||
const containerClasses = classNames(
|
const containerClasses = classNames(
|
||||||
|
@ -133,7 +133,6 @@
|
|||||||
"Online": "Online",
|
"Online": "Online",
|
||||||
"Away": "Away",
|
"Away": "Away",
|
||||||
"Appear Offline": "Appear Offline",
|
"Appear Offline": "Appear Offline",
|
||||||
"Failed to remove tag %(tagName)s from room": "Failed to remove tag %(tagName)s from room",
|
|
||||||
"Failed to set Direct Message status of room": "Failed to set Direct Message status of room",
|
"Failed to set Direct Message status of room": "Failed to set Direct Message status of room",
|
||||||
"unknown error code": "unknown error code",
|
"unknown error code": "unknown error code",
|
||||||
"Failed to forget room %(errCode)s": "Failed to forget room %(errCode)s",
|
"Failed to forget room %(errCode)s": "Failed to forget room %(errCode)s",
|
||||||
@ -190,7 +189,6 @@
|
|||||||
"Search for a room": "Search for a room",
|
"Search for a room": "Search for a room",
|
||||||
"#example": "#example",
|
"#example": "#example",
|
||||||
"more": "more",
|
"more": "more",
|
||||||
"Failed to add tag %(tagName)s to room": "Failed to add tag %(tagName)s to room",
|
|
||||||
"Expand panel": "Expand panel",
|
"Expand panel": "Expand panel",
|
||||||
"Collapse panel": "Collapse panel",
|
"Collapse panel": "Collapse panel",
|
||||||
"Filter room names": "Filter room names",
|
"Filter room names": "Filter room names",
|
||||||
|
Loading…
Reference in New Issue
Block a user