Move HeaderButtons to an abstract class
This commit is contained in:
parent
c7e40d0751
commit
ad9be61477
3 changed files with 1 additions and 9 deletions
|
@ -36,13 +36,9 @@ const MEMBER_PHASES = [
|
|||
export default class RoomHeaderButtons extends HeaderButtons {
|
||||
constructor(props) {
|
||||
super(props, HeaderKind.Room);
|
||||
this.onMembersClicked = this.onMembersClicked.bind(this);
|
||||
this.onFilesClicked = this.onFilesClicked.bind(this);
|
||||
this.onNotificationsClicked = this.onNotificationsClicked.bind(this);
|
||||
}
|
||||
|
||||
protected onAction(payload: ActionPayload) {
|
||||
super.onAction(payload);
|
||||
if (payload.action === Action.ViewUser) {
|
||||
if (payload.member) {
|
||||
this.setPhase(RightPanelPhases.RoomMemberInfo, {member: payload.member});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue