do the todos

This commit is contained in:
Michael Telatynski 2020-09-08 16:27:09 +01:00
parent 4a4a8cd611
commit 8d14d26e2b
5 changed files with 45 additions and 35 deletions

View file

@ -17,7 +17,7 @@ limitations under the License.
.mx_RoomSummaryCard { .mx_RoomSummaryCard {
// shrink left gutter by 12 and instead add it as margin to all things except the buttons // shrink left gutter by 12 and instead add it as margin to all things except the buttons
// as their hover effect should go into the gutter // as their hover effect should go into the gutter
& > * { // TODO consolidate this as the standard effect & > * {
margin-left: 10px; margin-left: 10px;
margin-right: 10px; margin-right: 10px;
} }
@ -57,7 +57,7 @@ limitations under the License.
width: 54px; width: 54px;
height: 54px; height: 54px;
border-radius: 50%; border-radius: 50%;
background-color: #737D8C; background-color: #737D8C; // TODO
margin-top: -3px; // alignment margin-top: -3px; // alignment
margin-left: -10px; // overlap margin-left: -10px; // overlap
border: 3px solid $dark-panel-bg-color; border: 3px solid $dark-panel-bg-color;
@ -77,8 +77,8 @@ limitations under the License.
} }
} }
.mx_RoomSummaryCard_e2ee_secure{ .mx_RoomSummaryCard_e2ee_secure {
background-color: #5ABFF2; background-color: #5ABFF2; // TODO
&::before { &::before {
mask-image: url('$(res)/img/e2e/normal.svg'); mask-image: url('$(res)/img/e2e/normal.svg');
} }

View file

@ -25,6 +25,7 @@ import HeaderButtons, {HeaderKind} from './HeaderButtons';
import {RightPanelPhases} from "../../../stores/RightPanelStorePhases"; import {RightPanelPhases} from "../../../stores/RightPanelStorePhases";
import {Action} from "../../../dispatcher/actions"; import {Action} from "../../../dispatcher/actions";
import {ActionPayload} from "../../../dispatcher/payloads"; import {ActionPayload} from "../../../dispatcher/payloads";
import RightPanelStore from "../../../stores/RightPanelStore";
const ROOM_INFO_PHASES = [ const ROOM_INFO_PHASES = [
RightPanelPhases.RoomSummary, RightPanelPhases.RoomSummary,
@ -57,11 +58,15 @@ export default class RoomHeaderButtons extends HeaderButtons {
} }
} }
// TODO make it restore whatever widget they were on last
private onRoomSummaryClicked = () => { private onRoomSummaryClicked = () => {
if (this.state.phase === RightPanelPhases.Widget) { // use roomPanelPhase rather than this.state.phase as it remembers the latest one if we close
// Close the panel const lastPhase = RightPanelStore.getSharedInstance().roomPanelPhase;
this.setPhase(RightPanelPhases.Widget); if (ROOM_INFO_PHASES.includes(lastPhase)) {
if (this.state.phase === lastPhase) {
this.setPhase(lastPhase);
} else {
this.setPhase(lastPhase, RightPanelStore.getSharedInstance().roomPanelPhaseParams);
}
} else { } else {
// This toggles for us, if needed // This toggles for us, if needed
this.setPhase(RightPanelPhases.RoomSummary); this.setPhase(RightPanelPhases.RoomSummary);

View file

@ -46,13 +46,6 @@ interface IProps {
onClose(): void; onClose(): void;
} }
const onFinished = () => {
defaultDispatcher.dispatch<SetRightPanelPhasePayload>({
action: Action.SetRightPanelPhase,
phase: RightPanelPhases.RoomSummary,
});
}
const WidgetCard: React.FC<IProps> = ({ room, widgetId, onClose }) => { const WidgetCard: React.FC<IProps> = ({ room, widgetId, onClose }) => {
const cli = useContext(MatrixClientContext); const cli = useContext(MatrixClientContext);
@ -64,8 +57,11 @@ const WidgetCard: React.FC<IProps> = ({ room, widgetId, onClose }) => {
useEffect(() => { useEffect(() => {
if (!app || isPinned) { if (!app || isPinned) {
// TODO maybe we should do this in the ActiveWidgetStore instead // stop showing this card
onFinished(); defaultDispatcher.dispatch<SetRightPanelPhasePayload>({
action: Action.SetRightPanelPhase,
phase: RightPanelPhases.RoomSummary,
});
} }
}, [app, isPinned]); }, [app, isPinned]);

View file

@ -609,6 +609,6 @@ export const SETTINGS: {[setting: string]: ISetting} = {
}, },
"Widgets.pinned": { "Widgets.pinned": {
supportedLevels: LEVELS_ROOM_OR_ACCOUNT, supportedLevels: LEVELS_ROOM_OR_ACCOUNT,
default: [], default: {},
}, },
}; };

View file

@ -24,6 +24,7 @@ import SettingsStore from "../settings/SettingsStore";
import WidgetEchoStore from "../stores/WidgetEchoStore"; import WidgetEchoStore from "../stores/WidgetEchoStore";
import WidgetUtils from "../utils/WidgetUtils"; import WidgetUtils from "../utils/WidgetUtils";
import {SettingLevel} from "../settings/SettingLevel"; import {SettingLevel} from "../settings/SettingLevel";
import {WidgetType} from "../widgets/WidgetType";
interface IState {} interface IState {}
@ -40,7 +41,7 @@ export interface IApp {
interface IRoomWidgets { interface IRoomWidgets {
widgets: IApp[]; widgets: IApp[];
pinned: Set<string>; pinned: Record<string, boolean>;
} }
// TODO consolidate WidgetEchoStore into this // TODO consolidate WidgetEchoStore into this
@ -65,7 +66,7 @@ export default class WidgetStore extends AsyncStoreWithClient<IState> {
private initRoom(roomId: string) { private initRoom(roomId: string) {
if (!this.roomMap.has(roomId)) { if (!this.roomMap.has(roomId)) {
this.roomMap.set(roomId, { this.roomMap.set(roomId, {
pinned: new Set(), pinned: {},
widgets: [], widgets: [],
}); });
} }
@ -81,7 +82,7 @@ export default class WidgetStore extends AsyncStoreWithClient<IState> {
} }
if (pinned) { if (pinned) {
this.getRoom(room.roomId).pinned = new Set(pinned); this.getRoom(room.roomId).pinned = pinned;
} }
this.loadRoomWidgets(room); this.loadRoomWidgets(room);
@ -144,9 +145,8 @@ export default class WidgetStore extends AsyncStoreWithClient<IState> {
}; };
private onPinnedWidgetsChange = (settingName: string, roomId: string) => { private onPinnedWidgetsChange = (settingName: string, roomId: string) => {
const pinned = SettingsStore.getValue(settingName, roomId);
this.initRoom(roomId); this.initRoom(roomId);
this.getRoom(roomId).pinned = new Set(pinned); this.getRoom(roomId).pinned = SettingsStore.getValue(settingName, roomId);
this.emit(roomId); this.emit(roomId);
this.emit("update"); this.emit("update");
}; };
@ -154,8 +154,11 @@ export default class WidgetStore extends AsyncStoreWithClient<IState> {
public isPinned(widgetId: string) { public isPinned(widgetId: string) {
const roomId = this.getRoomId(widgetId); const roomId = this.getRoomId(widgetId);
const roomInfo = this.getRoom(roomId); const roomInfo = this.getRoom(roomId);
// TODO heuristic for Jitsi etc
return roomInfo ? roomInfo.pinned.has(widgetId) : false; let pinned = roomInfo && roomInfo.pinned[widgetId];
// Jitsi widgets should be pinned by default
if (pinned === undefined && WidgetType.JITSI.matches(this.widgetMap.get(widgetId).type)) pinned = true;
return pinned;
} }
public canPin(widgetId: string) { public canPin(widgetId: string) {
@ -163,25 +166,31 @@ export default class WidgetStore extends AsyncStoreWithClient<IState> {
// the only case it will go to three is if you have two and then a Jitsi gets added // the only case it will go to three is if you have two and then a Jitsi gets added
const roomId = this.getRoomId(widgetId); const roomId = this.getRoomId(widgetId);
const roomInfo = this.getRoom(roomId); const roomInfo = this.getRoom(roomId);
return roomInfo && roomInfo.pinned.size < 2; return roomInfo && Object.keys(roomInfo.pinned).length < 2;
} }
public pinWidget(widgetId: string) { public pinWidget(widgetId: string) {
const roomId = this.getRoomId(widgetId); this.setPinned(widgetId, true);
const roomInfo = this.getRoom(roomId);
if (!roomInfo) return;
roomInfo.pinned.add(widgetId);
SettingsStore.setValue("Widgets.pinned", roomId, SettingLevel.ROOM_ACCOUNT, Array.from(roomInfo.pinned));
this.emit(roomId);
this.emit("update");
} }
public unpinWidget(widgetId: string) { public unpinWidget(widgetId: string) {
this.setPinned(widgetId, false);
}
private setPinned(widgetId: string, value: boolean) {
const roomId = this.getRoomId(widgetId); const roomId = this.getRoomId(widgetId);
const roomInfo = this.getRoom(roomId); const roomInfo = this.getRoom(roomId);
if (!roomInfo) return; if (!roomInfo) return;
roomInfo.pinned.delete(widgetId); roomInfo.pinned[widgetId] = value;
SettingsStore.setValue("Widgets.pinned", roomId, SettingLevel.ROOM_ACCOUNT, Array.from(roomInfo.pinned));
// Clean up the pinned record
Object.keys(roomInfo).forEach(wId => {
if (!roomInfo.widgets.some(w => w.id === wId)) {
delete roomInfo.pinned[wId];
}
});
SettingsStore.setValue("Widgets.pinned", roomId, SettingLevel.ROOM_ACCOUNT, roomInfo.pinned);
this.emit(roomId); this.emit(roomId);
this.emit("update"); this.emit("update");
} }