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 dis from '../../../dispatcher';
|
2019-12-06 09:28:06 +03:00
|
|
|
import RightPanelStore from "../../../stores/RightPanelStore";
|
|
|
|
|
|
|
|
export const HEADER_KIND_ROOM = "room";
|
|
|
|
export const HEADER_KIND_GROUP = "group";
|
|
|
|
|
|
|
|
const HEADER_KINDS = [HEADER_KIND_GROUP, HEADER_KIND_ROOM];
|
2018-10-30 19:15:19 +03:00
|
|
|
|
|
|
|
export default class HeaderButtons extends React.Component {
|
2019-12-06 09:28:06 +03:00
|
|
|
constructor(props, kind) {
|
2018-10-30 19:15:19 +03:00
|
|
|
super(props);
|
|
|
|
|
2019-12-06 09:28:06 +03:00
|
|
|
if (!HEADER_KINDS.includes(kind)) throw new Error(`Invalid header kind: ${kind}`);
|
|
|
|
|
|
|
|
const rps = RightPanelStore.getSharedInstance();
|
2018-10-30 19:15:19 +03:00
|
|
|
this.state = {
|
2019-12-06 09:28:06 +03:00
|
|
|
headerKind: kind,
|
|
|
|
phase: kind === HEADER_KIND_ROOM ? rps.visibleRoomPanelPhase : rps.visibleGroupPanelPhase,
|
2018-10-30 19:15:19 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillMount() {
|
2019-12-06 09:28:06 +03:00
|
|
|
this._storeToken = RightPanelStore.getSharedInstance().addListener(this.onRightPanelUpdate.bind(this));
|
2019-12-07 00:50:56 +03:00
|
|
|
this._dispatcherRef = dis.register(this.onAction.bind(this)); // used by subclasses
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
2019-12-06 09:28:06 +03:00
|
|
|
if (this._storeToken) this._storeToken.remove();
|
2019-12-07 00:50:56 +03:00
|
|
|
if (this._dispatcherRef) dis.unregister(this._dispatcherRef);
|
|
|
|
}
|
|
|
|
|
|
|
|
onAction(payload) {
|
|
|
|
// Ignore - intended to be overridden by subclasses
|
2019-04-10 14:20:03 +03:00
|
|
|
}
|
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
setPhase(phase, extras) {
|
2019-12-06 09:28:06 +03:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'set_right_panel_phase',
|
2018-10-30 19:15:19 +03:00
|
|
|
phase: phase,
|
2019-12-06 09:28:06 +03:00
|
|
|
refireParams: extras,
|
|
|
|
});
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
|
|
|
|
2019-12-06 09:28:06 +03:00
|
|
|
isPhase(phases: string | string[]) {
|
2018-12-18 17:36:54 +03:00
|
|
|
if (Array.isArray(phases)) {
|
|
|
|
return phases.includes(this.state.phase);
|
|
|
|
} else {
|
|
|
|
return phases === this.state.phase;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-06 09:28:06 +03:00
|
|
|
onRightPanelUpdate() {
|
|
|
|
const rps = RightPanelStore.getSharedInstance();
|
|
|
|
if (this.state.headerKind === HEADER_KIND_ROOM) {
|
|
|
|
this.setState({phase: rps.visibleRoomPanelPhase});
|
2020-01-05 23:30:01 +03:00
|
|
|
} else if (this.state.headerKind === HEADER_KIND_GROUP) {
|
2019-12-06 09:28:06 +03:00
|
|
|
this.setState({phase: rps.visibleGroupPanelPhase});
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
// inline style as this will be swapped around in future commits
|
2019-10-03 11:35:39 +03:00
|
|
|
return <div className="mx_HeaderButtons" role="tablist">
|
2019-12-06 09:28:06 +03:00
|
|
|
{this.renderButtons()}
|
2018-10-30 19:15:19 +03:00
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
}
|