Hide things that aren't wired up yet
This commit is contained in:
parent
02846c4fff
commit
79c2a5abd6
|
@ -0,0 +1,11 @@
|
||||||
|
.mx_RoomDropTarget,
|
||||||
|
.mx_RoomList_favourites_label,
|
||||||
|
.mx_RoomList_archive_label,
|
||||||
|
.mx_LeftPanel_hideButton,
|
||||||
|
.mx_RoomHeader_search,
|
||||||
|
.mx_RoomSettings_encrypt,
|
||||||
|
.mx_CreateRoom_encrypt,
|
||||||
|
.mx_RightPanel_filebutton
|
||||||
|
{
|
||||||
|
display: none !important;
|
||||||
|
}
|
|
@ -104,13 +104,13 @@ module.exports = React.createClass({
|
||||||
{callButtons}
|
{callButtons}
|
||||||
<div className="mx_RoomHeader_rightRow">
|
<div className="mx_RoomHeader_rightRow">
|
||||||
{ settings_button }
|
{ settings_button }
|
||||||
<div className="mx_RoomHeader_button">
|
<div className="mx_RoomHeader_button mx_RoomHeader_search">
|
||||||
<img src="img/search.png" width="32" height="32"/>
|
<img src="img/search.png" width="32" height="32"/>
|
||||||
</div>
|
</div>
|
||||||
<div className="mx_RoomHeader_button" onClick={this.onVideoClick}>
|
<div className="mx_RoomHeader_button mx_RoomHeader_video" onClick={this.onVideoClick}>
|
||||||
<img src="img/video.png" width="32" height="32"/>
|
<img src="img/video.png" width="32" height="32"/>
|
||||||
</div>
|
</div>
|
||||||
<div className="mx_RoomHeader_button" onClick={this.onVoiceClick}>
|
<div className="mx_RoomHeader_button mx_RoomHeader_voice" onClick={this.onVoiceClick}>
|
||||||
<img src="img/voip.png" width="32" height="32"/>
|
<img src="img/voip.png" width="32" height="32"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -131,7 +131,7 @@ module.exports = React.createClass({
|
||||||
<textarea className="mx_RoomSettings_description" placeholder="Topic" defaultValue={topic} ref="topic"/> <br/>
|
<textarea className="mx_RoomSettings_description" placeholder="Topic" defaultValue={topic} ref="topic"/> <br/>
|
||||||
<label><input type="checkbox" ref="is_private" defaultChecked={join_rule != "public"}/> Make this room private</label> <br/>
|
<label><input type="checkbox" ref="is_private" defaultChecked={join_rule != "public"}/> Make this room private</label> <br/>
|
||||||
<label><input type="checkbox" ref="share_history" defaultChecked={history_visibility == "shared"}/> Share message history with new users</label> <br/>
|
<label><input type="checkbox" ref="share_history" defaultChecked={history_visibility == "shared"}/> Share message history with new users</label> <br/>
|
||||||
<label><input type="checkbox" /> Encrypt room</label> <br/>
|
<label className="mx_RoomSettings_encrypt"><input type="checkbox" /> Encrypt room</label> <br/>
|
||||||
|
|
||||||
<h3>Power levels</h3>
|
<h3>Power levels</h3>
|
||||||
<div className="mx_RoomSettings_power_levels mx_RoomSettings_settings">
|
<div className="mx_RoomSettings_power_levels mx_RoomSettings_settings">
|
||||||
|
|
|
@ -155,7 +155,7 @@ module.exports = React.createClass({
|
||||||
<div>
|
<div>
|
||||||
<label><input type="checkbox" ref="share_history" checked={this.state.share_history} onChange={this.onShareHistoryChanged}/> Share message history with new users</label>
|
<label><input type="checkbox" ref="share_history" checked={this.state.share_history} onChange={this.onShareHistoryChanged}/> Share message history with new users</label>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div className="mx_CreateRoom_encrypt">
|
||||||
<label><input type="checkbox" ref="encrypt" checked={this.state.encrypt} onChange={this.onEncryptChanged}/> Encrypt room</label>
|
<label><input type="checkbox" ref="encrypt" checked={this.state.encrypt} onChange={this.onEncryptChanged}/> Encrypt room</label>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -52,7 +52,7 @@ module.exports = React.createClass({
|
||||||
if (this.props.roomId) {
|
if (this.props.roomId) {
|
||||||
buttonGroup =
|
buttonGroup =
|
||||||
<div className="mx_RightPanel_headerButtonGroup">
|
<div className="mx_RightPanel_headerButtonGroup">
|
||||||
<div className="mx_RightPanel_headerButton">
|
<div className="mx_RightPanel_headerButton mx_RightPanel_filebutton">
|
||||||
<img src="img/file.png" width="32" height="32" alt="Files"/>
|
<img src="img/file.png" width="32" height="32" alt="Files"/>
|
||||||
</div>
|
</div>
|
||||||
<div className="mx_RightPanel_headerButton" onClick={ this.onMemberListButtonClick }>
|
<div className="mx_RightPanel_headerButton" onClick={ this.onMemberListButtonClick }>
|
||||||
|
|
|
@ -30,15 +30,15 @@ module.exports = React.createClass({
|
||||||
render: function() {
|
render: function() {
|
||||||
return (
|
return (
|
||||||
<div className="mx_RoomList">
|
<div className="mx_RoomList">
|
||||||
<h2>Favourites</h2>
|
<h2 className="mx_RoomList_favourites_label">Favourites</h2>
|
||||||
<RoomDropTarget text="Drop here to favourite"/>
|
<RoomDropTarget text="Drop here to favourite"/>
|
||||||
|
|
||||||
<h2>Recents</h2>
|
<h2 className="mx_RoomList_recents_label">Recents</h2>
|
||||||
<div className="mx_RoomList_recents">
|
<div className="mx_RoomList_recents">
|
||||||
{this.makeRoomTiles()}
|
{this.makeRoomTiles()}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2>Archive</h2>
|
<h2 className="mx_RoomList_archive_label">Archive</h2>
|
||||||
<RoomDropTarget text="Drop here to archive"/>
|
<RoomDropTarget text="Drop here to archive"/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue