mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-15 08:51:29 +03:00
75c32a2f02
Clicking on the member icon was fine, but clicking on the file panel wouldn't bring it up - it had to be clicked a second time to actually show the panel.
156 lines
4.8 KiB
JavaScript
156 lines
4.8 KiB
JavaScript
/*
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
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 dis from '../dispatcher';
|
|
import {Store} from 'flux/utils';
|
|
import SettingsStore, {SettingLevel} from "../settings/SettingsStore";
|
|
import {RIGHT_PANEL_PHASES, RIGHT_PANEL_PHASES_NO_ARGS} from "./RightPanelStorePhases";
|
|
|
|
const INITIAL_STATE = {
|
|
// Whether or not to show the right panel at all. We split out rooms and groups
|
|
// because they're different flows for the user to follow.
|
|
showRoomPanel: SettingsStore.getValue("showRightPanelInRoom"),
|
|
showGroupPanel: SettingsStore.getValue("showRightPanelInGroup"),
|
|
|
|
// The last phase (screen) the right panel was showing
|
|
lastRoomPhase: SettingsStore.getValue("lastRightPanelPhaseForRoom"),
|
|
lastGroupPhase: SettingsStore.getValue("lastRightPanelPhaseForGroup"),
|
|
};
|
|
|
|
const GROUP_PHASES = Object.keys(RIGHT_PANEL_PHASES).filter(k => k.startsWith("Group"));
|
|
|
|
/**
|
|
* A class for tracking the state of the right panel between layouts and
|
|
* sessions.
|
|
*/
|
|
export default class RightPanelStore extends Store {
|
|
static _instance;
|
|
|
|
constructor() {
|
|
super(dis);
|
|
|
|
// Initialise state
|
|
this._state = INITIAL_STATE;
|
|
}
|
|
|
|
get isOpenForRoom(): boolean {
|
|
return this._state.showRoomPanel;
|
|
}
|
|
|
|
get isOpenForGroup(): boolean {
|
|
return this._state.showGroupPanel;
|
|
}
|
|
|
|
get roomPanelPhase(): string {
|
|
return this._state.lastRoomPhase;
|
|
}
|
|
|
|
get groupPanelPhase(): string {
|
|
return this._state.lastGroupPhase;
|
|
}
|
|
|
|
get visibleRoomPanelPhase(): string {
|
|
return this.isOpenForRoom ? this.roomPanelPhase : null;
|
|
}
|
|
|
|
get visibleGroupPanelPhase(): string {
|
|
return this.isOpenForGroup ? this.groupPanelPhase : null;
|
|
}
|
|
|
|
_setState(newState) {
|
|
this._state = Object.assign(this._state, newState);
|
|
|
|
SettingsStore.setValue(
|
|
"showRightPanelInRoom",
|
|
null,
|
|
SettingLevel.DEVICE,
|
|
this._state.showRoomPanel,
|
|
);
|
|
SettingsStore.setValue(
|
|
"showRightPanelInGroup",
|
|
null,
|
|
SettingLevel.DEVICE,
|
|
this._state.showGroupPanel,
|
|
);
|
|
|
|
if (RIGHT_PANEL_PHASES_NO_ARGS.includes(this._state.lastRoomPhase)) {
|
|
SettingsStore.setValue(
|
|
"lastRightPanelPhaseForRoom",
|
|
null,
|
|
SettingLevel.DEVICE,
|
|
this._state.lastRoomPhase,
|
|
);
|
|
}
|
|
if (RIGHT_PANEL_PHASES_NO_ARGS.includes(this._state.lastGroupPhase)) {
|
|
SettingsStore.setValue(
|
|
"lastRightPanelPhaseForGroup",
|
|
null,
|
|
SettingLevel.DEVICE,
|
|
this._state.lastGroupPhase,
|
|
);
|
|
}
|
|
|
|
this.__emitChange();
|
|
}
|
|
|
|
__onDispatch(payload) {
|
|
if (payload.action !== 'set_right_panel_phase') return;
|
|
|
|
const targetPhase = payload.phase;
|
|
if (!RIGHT_PANEL_PHASES[targetPhase]) {
|
|
console.warn(`Tried to switch right panel to unknown phase: ${targetPhase}`);
|
|
return;
|
|
}
|
|
|
|
if (GROUP_PHASES.includes(targetPhase)) {
|
|
if (targetPhase === this._state.lastGroupPhase) {
|
|
this._setState({
|
|
showGroupPanel: !this._state.showGroupPanel,
|
|
});
|
|
} else {
|
|
this._setState({
|
|
lastGroupPhase: targetPhase,
|
|
showGroupPanel: true,
|
|
});
|
|
}
|
|
} else {
|
|
if (targetPhase === this._state.lastRoomPhase) {
|
|
this._setState({
|
|
showRoomPanel: !this._state.showRoomPanel,
|
|
});
|
|
} else {
|
|
this._setState({
|
|
lastRoomPhase: targetPhase,
|
|
showRoomPanel: true,
|
|
});
|
|
}
|
|
}
|
|
|
|
// Let things like the member info panel actually open to the right member.
|
|
dis.dispatch({
|
|
action: 'after_right_panel_phase_change',
|
|
phase: targetPhase,
|
|
...(payload.refireParams || {}),
|
|
});
|
|
}
|
|
|
|
static getSharedInstance(): RightPanelStore {
|
|
if (!RightPanelStore._instance) {
|
|
RightPanelStore._instance = new RightPanelStore();
|
|
}
|
|
return RightPanelStore._instance;
|
|
}
|
|
}
|