Refactor right panel header buttons
To reduce repetition of code, simplify the process of adding header buttons and remove the need for many handler functions.pull/5117/head
parent
ae6b705d7b
commit
7137ba7188
|
@ -17,17 +17,56 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
import { _t } from 'matrix-react-sdk/lib/languageHandler';
|
import { _t } from 'matrix-react-sdk/lib/languageHandler';
|
||||||
import sdk from 'matrix-react-sdk';
|
import sdk from 'matrix-react-sdk';
|
||||||
import Matrix from "matrix-js-sdk";
|
|
||||||
import dis from 'matrix-react-sdk/lib/dispatcher';
|
import dis from 'matrix-react-sdk/lib/dispatcher';
|
||||||
import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg';
|
import MatrixClientPeg from 'matrix-react-sdk/lib/MatrixClientPeg';
|
||||||
import Analytics from 'matrix-react-sdk/lib/Analytics';
|
import Analytics from 'matrix-react-sdk/lib/Analytics';
|
||||||
import rate_limited_func from 'matrix-react-sdk/lib/ratelimitedfunc';
|
import rate_limited_func from 'matrix-react-sdk/lib/ratelimitedfunc';
|
||||||
import Modal from 'matrix-react-sdk/lib/Modal';
|
|
||||||
import AccessibleButton from 'matrix-react-sdk/lib/components/views/elements/AccessibleButton';
|
import AccessibleButton from 'matrix-react-sdk/lib/components/views/elements/AccessibleButton';
|
||||||
import { showGroupInviteDialog } from 'matrix-react-sdk/lib/GroupInvite';
|
import { showGroupInviteDialog } from 'matrix-react-sdk/lib/GroupInvite';
|
||||||
|
|
||||||
|
class HeaderButton extends React.Component {
|
||||||
|
constructor() {
|
||||||
|
super();
|
||||||
|
this.onClick = this.onClick.bind(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
onClick(ev) {
|
||||||
|
dis.dispatch({
|
||||||
|
action: 'view_right_panel_phase',
|
||||||
|
phase: this.props.clickPhase,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
const TintableSvg = sdk.getComponent("elements.TintableSvg");
|
||||||
|
const AccessibleButton = sdk.getComponent("elements.AccessibleButton");
|
||||||
|
const isHighlighted = this.props.phases.includes(this.props.currentPhase);
|
||||||
|
|
||||||
|
return <AccessibleButton
|
||||||
|
className="mx_RightPanel_headerButton"
|
||||||
|
key={this.props.key}
|
||||||
|
onClick={ this.onClick }
|
||||||
|
>
|
||||||
|
<div className="mx_RightPanel_headerButton_badge">
|
||||||
|
{ this.props.badge ? this.props.badge : <span> </span>}
|
||||||
|
</div>
|
||||||
|
<TintableSvg src={this.props.iconSrc} width="25" height="25"/>
|
||||||
|
{ isHighlighted ? <div className="mx_RightPanel_headerButton_highlight"></div> : <div/> }
|
||||||
|
</AccessibleButton>;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
HeaderButton.propTypes = {
|
||||||
|
phases: PropTypes.arrayOf(PropTypes.string).isRequired,
|
||||||
|
currentPhase: PropTypes.string.isRequired,
|
||||||
|
clickPhase: PropTypes.string.isRequired,
|
||||||
|
iconSrc: PropTypes.string.isRequired,
|
||||||
|
badge: PropTypes.node,
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
displayName: 'RightPanel',
|
displayName: 'RightPanel',
|
||||||
|
|
||||||
|
@ -140,7 +179,7 @@ module.exports = React.createClass({
|
||||||
} else {
|
} else {
|
||||||
if (this.props.roomId) {
|
if (this.props.roomId) {
|
||||||
this.setState({
|
this.setState({
|
||||||
phase: this.Phase.RoomMemberList
|
phase: this.Phase.RoomMemberList,
|
||||||
});
|
});
|
||||||
} else if (this.props.groupId) {
|
} else if (this.props.groupId) {
|
||||||
this.setState({
|
this.setState({
|
||||||
|
@ -164,7 +203,11 @@ module.exports = React.createClass({
|
||||||
});
|
});
|
||||||
} else if (payload.action === "view_room") {
|
} else if (payload.action === "view_room") {
|
||||||
this.setState({
|
this.setState({
|
||||||
phase: this.Phase.RoomMemberList
|
phase: this.Phase.RoomMemberList,
|
||||||
|
});
|
||||||
|
} else if (payload.action === "view_right_panel_phase") {
|
||||||
|
this.setState({
|
||||||
|
phase: payload.phase,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -176,36 +219,22 @@ module.exports = React.createClass({
|
||||||
const FilePanel = sdk.getComponent('structures.FilePanel');
|
const FilePanel = sdk.getComponent('structures.FilePanel');
|
||||||
const TintableSvg = sdk.getComponent("elements.TintableSvg");
|
const TintableSvg = sdk.getComponent("elements.TintableSvg");
|
||||||
let inviteGroup;
|
let inviteGroup;
|
||||||
let panel;
|
|
||||||
|
|
||||||
let filesHighlight;
|
|
||||||
let membersHighlight;
|
|
||||||
let notificationsHighlight;
|
|
||||||
if (!this.props.collapsed) {
|
|
||||||
if (this.state.phase == this.Phase.RoomMemberList || this.state.phase === this.Phase.RoomMemberInfo) {
|
|
||||||
membersHighlight = <div className="mx_RightPanel_headerButton_highlight"></div>;
|
|
||||||
}
|
|
||||||
else if (this.state.phase == this.Phase.FilePanel) {
|
|
||||||
filesHighlight = <div className="mx_RightPanel_headerButton_highlight"></div>;
|
|
||||||
}
|
|
||||||
else if (this.state.phase == this.Phase.NotificationPanel) {
|
|
||||||
notificationsHighlight = <div className="mx_RightPanel_headerButton_highlight"></div>;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let membersBadge;
|
let membersBadge;
|
||||||
if ((this.state.phase == this.Phase.RoomMemberList || this.state.phase === this.Phase.RoomMemberInfo) && this.props.roomId) {
|
if ((this.state.phase == this.Phase.RoomMemberList || this.state.phase === this.Phase.RoomMemberInfo)
|
||||||
|
&& this.props.roomId
|
||||||
|
) {
|
||||||
const cli = MatrixClientPeg.get();
|
const cli = MatrixClientPeg.get();
|
||||||
const room = cli.getRoom(this.props.roomId);
|
const room = cli.getRoom(this.props.roomId);
|
||||||
let user_is_in_room;
|
let userIsInRoom;
|
||||||
if (room) {
|
if (room) {
|
||||||
membersBadge = room.getJoinedMembers().length;
|
membersBadge = room.getJoinedMembers().length;
|
||||||
user_is_in_room = room.hasMembershipState(
|
userIsInRoom = room.hasMembershipState(
|
||||||
MatrixClientPeg.get().credentials.userId, 'join'
|
MatrixClientPeg.get().credentials.userId, 'join',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (user_is_in_room) {
|
if (userIsInRoom) {
|
||||||
inviteGroup =
|
inviteGroup =
|
||||||
<AccessibleButton className="mx_RightPanel_invite" onClick={ this.onInviteButtonClick } >
|
<AccessibleButton className="mx_RightPanel_invite" onClick={ this.onInviteButtonClick } >
|
||||||
<div className="mx_RightPanel_icon" >
|
<div className="mx_RightPanel_icon" >
|
||||||
|
@ -214,37 +243,28 @@ module.exports = React.createClass({
|
||||||
<div className="mx_RightPanel_message">{ _t('Invite to this room') }</div>
|
<div className="mx_RightPanel_message">{ _t('Invite to this room') }</div>
|
||||||
</AccessibleButton>;
|
</AccessibleButton>;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let headerButtons = [];
|
let headerButtons = [];
|
||||||
if (this.props.roomId) {
|
if (this.props.roomId) {
|
||||||
headerButtons.push(
|
headerButtons = [
|
||||||
<AccessibleButton className="mx_RightPanel_headerButton" key="_membersButton"
|
<HeaderButton key="_membersButton" title={_t('Members')} iconSrc="img/icons-people.svg"
|
||||||
title={ _t('Members') } onClick={ this.onMemberListButtonClick }>
|
phases={[this.Phase.RoomMemberList, this.Phase.RoomMemberInfo]}
|
||||||
<div className="mx_RightPanel_headerButton_badge">{ membersBadge ? membersBadge : <span> </span>}</div>
|
clickPhase={this.Phase.RoomMemberList}
|
||||||
<TintableSvg src="img/icons-people.svg" width="25" height="25"/>
|
currentPhase={this.state.phase}
|
||||||
{ membersHighlight }
|
badge={membersBadge}
|
||||||
</AccessibleButton>
|
/>,
|
||||||
);
|
<HeaderButton key="_filesButton" title={_t('Files')} iconSrc="img/icons-files.svg"
|
||||||
headerButtons.push(
|
phases={[this.Phase.FilePanel]}
|
||||||
<AccessibleButton
|
clickPhase={this.Phase.FilePanel}
|
||||||
className="mx_RightPanel_headerButton mx_RightPanel_filebutton" key="_filesButton"
|
currentPhase={this.state.phase}
|
||||||
title={ _t('Files') } onClick={ this.onFileListButtonClick }>
|
/>,
|
||||||
<div className="mx_RightPanel_headerButton_badge"> </div>
|
<HeaderButton key="_notifsButton" title={_t('Notifications')} iconSrc="img/icons-notifications.svg"
|
||||||
<TintableSvg src="img/icons-files.svg" width="25" height="25"/>
|
phases={[this.Phase.NotificationPanel]}
|
||||||
{ filesHighlight }
|
clickPhase={this.Phase.NotificationPanel}
|
||||||
</AccessibleButton>
|
currentPhase={this.state.phase}
|
||||||
);
|
/>,
|
||||||
headerButtons.push(
|
];
|
||||||
<AccessibleButton
|
|
||||||
className="mx_RightPanel_headerButton mx_RightPanel_notificationbutton" key="_notifsButton"
|
|
||||||
title={ _t('Notifications') } onClick={ this.onNotificationListButtonClick }>
|
|
||||||
<div className="mx_RightPanel_headerButton_badge"> </div>
|
|
||||||
<TintableSvg src="img/icons-notifications.svg" width="25" height="25"/>
|
|
||||||
{ notificationsHighlight }
|
|
||||||
</AccessibleButton>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.props.roomId || this.props.groupId) {
|
if (this.props.roomId || this.props.groupId) {
|
||||||
|
@ -256,13 +276,14 @@ module.exports = React.createClass({
|
||||||
title={ _t("Hide panel") } onClick={ this.onCollapseClick }
|
title={ _t("Hide panel") } onClick={ this.onCollapseClick }
|
||||||
>
|
>
|
||||||
<TintableSvg src="img/minimise.svg" width="10" height="16"/>
|
<TintableSvg src="img/minimise.svg" width="10" height="16"/>
|
||||||
</div>
|
</div>,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let panel = <div />;
|
||||||
if (!this.props.collapsed) {
|
if (!this.props.collapsed) {
|
||||||
if (this.props.roomId && this.state.phase == this.Phase.RoomMemberList) {
|
if (this.props.roomId && this.state.phase == this.Phase.RoomMemberList) {
|
||||||
panel = <MemberList roomId={this.props.roomId} key={this.props.roomId} />
|
panel = <MemberList roomId={this.props.roomId} key={this.props.roomId} />;
|
||||||
} else if (this.props.groupId && this.state.phase == this.Phase.GroupMemberList) {
|
} else if (this.props.groupId && this.state.phase == this.Phase.GroupMemberList) {
|
||||||
panel = <GroupMemberList groupId={this.props.groupId} key={this.props.groupId} />;
|
panel = <GroupMemberList groupId={this.props.groupId} key={this.props.groupId} />;
|
||||||
inviteGroup = (
|
inviteGroup = (
|
||||||
|
@ -275,10 +296,13 @@ module.exports = React.createClass({
|
||||||
);
|
);
|
||||||
} else if (this.state.phase == this.Phase.RoomMemberInfo) {
|
} else if (this.state.phase == this.Phase.RoomMemberInfo) {
|
||||||
const MemberInfo = sdk.getComponent('rooms.MemberInfo');
|
const MemberInfo = sdk.getComponent('rooms.MemberInfo');
|
||||||
panel = <MemberInfo member={this.state.member} key={this.props.roomId || this.state.member.userId} />
|
panel = <MemberInfo member={this.state.member} key={this.props.roomId || this.state.member.userId} />;
|
||||||
} else if (this.state.phase == this.Phase.GroupMemberInfo) {
|
} else if (this.state.phase == this.Phase.GroupMemberInfo) {
|
||||||
const GroupMemberInfo = sdk.getComponent('groups.GroupMemberInfo');
|
const GroupMemberInfo = sdk.getComponent('groups.GroupMemberInfo');
|
||||||
panel = <GroupMemberInfo groupMember={this.state.member} groupId={this.props.groupId} key={this.state.member.user_id} />;
|
panel = <GroupMemberInfo
|
||||||
|
groupMember={this.state.member}
|
||||||
|
groupId={this.props.groupId}
|
||||||
|
key={this.state.member.user_id} />;
|
||||||
} else if (this.state.phase == this.Phase.NotificationPanel) {
|
} else if (this.state.phase == this.Phase.NotificationPanel) {
|
||||||
panel = <NotificationPanel />;
|
panel = <NotificationPanel />;
|
||||||
} else if (this.state.phase == this.Phase.FilePanel) {
|
} else if (this.state.phase == this.Phase.FilePanel) {
|
||||||
|
@ -308,5 +332,5 @@ module.exports = React.createClass({
|
||||||
</div>
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue