2018-10-30 19:15:19 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
Copyright 2017 New Vector Ltd
|
|
|
|
Copyright 2018 New Vector Ltd
|
2019-12-06 09:28:06 +03:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2018-10-30 19:15:19 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import { _t } from '../../../languageHandler';
|
|
|
|
import HeaderButton from './HeaderButton';
|
2019-12-06 09:28:06 +03:00
|
|
|
import HeaderButtons, {HEADER_KIND_GROUP} from './HeaderButtons';
|
|
|
|
import {RIGHT_PANEL_PHASES} from "../../../stores/RightPanelStorePhases";
|
2018-10-30 19:15:19 +03:00
|
|
|
|
2019-04-11 14:31:21 +03:00
|
|
|
const GROUP_PHASES = [
|
2019-12-06 09:28:06 +03:00
|
|
|
RIGHT_PANEL_PHASES.GroupMemberInfo,
|
|
|
|
RIGHT_PANEL_PHASES.GroupMemberList,
|
2019-04-11 14:31:21 +03:00
|
|
|
];
|
|
|
|
const ROOM_PHASES = [
|
2019-12-06 09:28:06 +03:00
|
|
|
RIGHT_PANEL_PHASES.GroupRoomList,
|
|
|
|
RIGHT_PANEL_PHASES.GroupRoomInfo,
|
2019-04-11 14:31:21 +03:00
|
|
|
];
|
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
export default class GroupHeaderButtons extends HeaderButtons {
|
|
|
|
constructor(props) {
|
2019-12-06 09:28:06 +03:00
|
|
|
super(props, HEADER_KIND_GROUP);
|
2019-04-11 14:22:47 +03:00
|
|
|
this._onMembersClicked = this._onMembersClicked.bind(this);
|
|
|
|
this._onRoomsClicked = this._onRoomsClicked.bind(this);
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
onAction(payload) {
|
|
|
|
super.onAction(payload);
|
|
|
|
|
|
|
|
if (payload.action === "view_user") {
|
|
|
|
if (payload.member) {
|
2019-12-06 09:28:06 +03:00
|
|
|
this.setPhase(RIGHT_PANEL_PHASES.RoomMemberInfo, {member: payload.member});
|
2018-10-30 19:15:19 +03:00
|
|
|
} else {
|
2019-12-06 09:28:06 +03:00
|
|
|
this.setPhase(RIGHT_PANEL_PHASES.GroupMemberList);
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
|
|
|
} else if (payload.action === "view_group") {
|
2019-12-06 09:28:06 +03:00
|
|
|
this.setPhase(RIGHT_PANEL_PHASES.GroupMemberList);
|
2018-10-30 19:15:19 +03:00
|
|
|
} else if (payload.action === "view_group_room") {
|
2019-12-06 09:58:19 +03:00
|
|
|
this.setPhase(
|
|
|
|
RIGHT_PANEL_PHASES.GroupRoomInfo,
|
|
|
|
{groupRoomId: payload.groupRoomId, groupId: payload.groupId},
|
|
|
|
);
|
2018-10-30 19:15:19 +03:00
|
|
|
} else if (payload.action === "view_group_room_list") {
|
2019-12-06 09:28:06 +03:00
|
|
|
this.setPhase(RIGHT_PANEL_PHASES.GroupRoomList);
|
2018-10-30 19:15:19 +03:00
|
|
|
} else if (payload.action === "view_group_member_list") {
|
2019-12-06 09:28:06 +03:00
|
|
|
this.setPhase(RIGHT_PANEL_PHASES.GroupMemberList);
|
2018-10-30 19:15:19 +03:00
|
|
|
} else if (payload.action === "view_group_user") {
|
2019-12-06 09:28:06 +03:00
|
|
|
this.setPhase(RIGHT_PANEL_PHASES.GroupMemberInfo, {member: payload.member});
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-11 14:22:47 +03:00
|
|
|
_onMembersClicked() {
|
2019-12-06 09:28:06 +03:00
|
|
|
// This toggles for us, if needed
|
|
|
|
this.setPhase(RIGHT_PANEL_PHASES.GroupMemberList);
|
2019-04-11 14:22:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_onRoomsClicked() {
|
2019-12-06 09:28:06 +03:00
|
|
|
// This toggles for us, if needed
|
|
|
|
this.setPhase(RIGHT_PANEL_PHASES.GroupRoomList);
|
2019-04-11 14:22:47 +03:00
|
|
|
}
|
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
renderButtons() {
|
|
|
|
return [
|
2019-02-12 20:31:47 +03:00
|
|
|
<HeaderButton key="groupMembersButton" name="groupMembersButton"
|
|
|
|
title={_t('Members')}
|
2019-04-11 14:31:21 +03:00
|
|
|
isHighlighted={this.isPhase(GROUP_PHASES)}
|
2019-04-11 14:22:47 +03:00
|
|
|
onClick={this._onMembersClicked}
|
2018-10-30 19:15:19 +03:00
|
|
|
analytics={['Right Panel', 'Group Member List Button', 'click']}
|
|
|
|
/>,
|
2019-02-12 20:31:47 +03:00
|
|
|
<HeaderButton key="roomsButton" name="roomsButton"
|
|
|
|
title={_t('Rooms')}
|
2019-04-11 14:31:21 +03:00
|
|
|
isHighlighted={this.isPhase(ROOM_PHASES)}
|
2019-04-11 14:22:47 +03:00
|
|
|
onClick={this._onRoomsClicked}
|
2018-10-30 19:15:19 +03:00
|
|
|
analytics={['Right Panel', 'Group Room List Button', 'click']}
|
2018-10-31 14:20:10 +03:00
|
|
|
/>,
|
2018-10-30 19:15:19 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|