mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
Show room preview bar with maximised widgets (#8180)
This commit is contained in:
parent
4d14128d94
commit
8058f812c2
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2021 The Matrix.org Foundation C.I.C.
|
Copyright 2021 - 2022 The Matrix.org Foundation C.I.C.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -35,6 +35,12 @@ limitations under the License.
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_TimelineCard_timeline {
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative; // offset parent for jump to bottom button
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_AutoHideScrollbar {
|
.mx_AutoHideScrollbar {
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
width: calc(100% - 10px);
|
width: calc(100% - 10px);
|
||||||
@ -119,8 +125,3 @@ limitations under the License.
|
|||||||
flex-basis: 48px; // 12 (padding on message list) + 36 (padding on event lines)
|
flex-basis: 48px; // 12 (padding on message list) + 36 (padding on event lines)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_TimelineCard_timeline {
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative; // offset parent for jump to bottom button
|
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2015, 2016 OpenMarket Ltd
|
Copyright 2015 - 2022 The Matrix.org Foundation C.I.C.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -98,6 +98,14 @@ limitations under the License.
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// With maximised widgets, the panel fits in better when rounded
|
||||||
|
.mx_MainSplit_maximisedWidget .mx_RoomPreviewBar_panel {
|
||||||
|
margin: $container-gap-width;
|
||||||
|
margin-right: calc($container-gap-width / 2); // Shared with right panel
|
||||||
|
margin-top: 0; // Already covered by apps drawer
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_RoomPreviewBar_dialog {
|
.mx_RoomPreviewBar_dialog {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
box-sizing: content;
|
box-sizing: content;
|
||||||
|
@ -1983,11 +1983,11 @@ export class RoomView extends React.Component<IRoomProps, IRoomState> {
|
|||||||
);
|
);
|
||||||
|
|
||||||
let messageComposer; let searchInfo;
|
let messageComposer; let searchInfo;
|
||||||
const canSpeak = (
|
const showComposer = (
|
||||||
// joined and not showing search results
|
// joined and not showing search results
|
||||||
myMembership === 'join' && !this.state.searchResults
|
myMembership === 'join' && !this.state.searchResults
|
||||||
);
|
);
|
||||||
if (canSpeak) {
|
if (showComposer) {
|
||||||
messageComposer =
|
messageComposer =
|
||||||
<MessageComposer
|
<MessageComposer
|
||||||
room={this.state.room}
|
room={this.state.room}
|
||||||
@ -2103,10 +2103,12 @@ export class RoomView extends React.Component<IRoomProps, IRoomState> {
|
|||||||
|
|
||||||
const showChatEffects = SettingsStore.getValue('showChatEffects');
|
const showChatEffects = SettingsStore.getValue('showChatEffects');
|
||||||
|
|
||||||
let mainSplitBody;
|
let mainSplitBody: React.ReactFragment;
|
||||||
|
let mainSplitContentClassName: string;
|
||||||
// Decide what to show in the main split
|
// Decide what to show in the main split
|
||||||
switch (this.state.mainSplitContentType) {
|
switch (this.state.mainSplitContentType) {
|
||||||
case MainSplitContentType.Timeline:
|
case MainSplitContentType.Timeline:
|
||||||
|
mainSplitContentClassName = "mx_MainSplit_timeline";
|
||||||
mainSplitBody = <>
|
mainSplitBody = <>
|
||||||
<Measured
|
<Measured
|
||||||
sensor={this.roomViewBody.current}
|
sensor={this.roomViewBody.current}
|
||||||
@ -2126,16 +2128,21 @@ export class RoomView extends React.Component<IRoomProps, IRoomState> {
|
|||||||
</>;
|
</>;
|
||||||
break;
|
break;
|
||||||
case MainSplitContentType.MaximisedWidget:
|
case MainSplitContentType.MaximisedWidget:
|
||||||
mainSplitBody = <AppsDrawer
|
mainSplitContentClassName = "mx_MainSplit_maximisedWidget";
|
||||||
room={this.state.room}
|
mainSplitBody = <>
|
||||||
userId={this.context.credentials.userId}
|
<AppsDrawer
|
||||||
resizeNotifier={this.props.resizeNotifier}
|
room={this.state.room}
|
||||||
showApps={true}
|
userId={this.context.credentials.userId}
|
||||||
/>;
|
resizeNotifier={this.props.resizeNotifier}
|
||||||
|
showApps={true}
|
||||||
|
/>
|
||||||
|
{ previewBar }
|
||||||
|
</>;
|
||||||
break;
|
break;
|
||||||
case MainSplitContentType.Video: {
|
case MainSplitContentType.Video: {
|
||||||
const app = getVoiceChannel(this.state.room.roomId);
|
const app = getVoiceChannel(this.state.room.roomId);
|
||||||
if (!app) break;
|
if (!app) break;
|
||||||
|
mainSplitContentClassName = "mx_MainSplit_video";
|
||||||
mainSplitBody = <AppTile
|
mainSplitBody = <AppTile
|
||||||
app={app}
|
app={app}
|
||||||
room={this.state.room}
|
room={this.state.room}
|
||||||
@ -2147,6 +2154,8 @@ export class RoomView extends React.Component<IRoomProps, IRoomState> {
|
|||||||
/>;
|
/>;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const mainSplitContentClasses = classNames("mx_RoomView_body", mainSplitContentClassName);
|
||||||
|
|
||||||
let excludedRightPanelPhaseButtons = [RightPanelPhases.Timeline];
|
let excludedRightPanelPhaseButtons = [RightPanelPhases.Timeline];
|
||||||
let onAppsClick = this.onAppsClick;
|
let onAppsClick = this.onAppsClick;
|
||||||
let onForgetClick = this.onForgetClick;
|
let onForgetClick = this.onForgetClick;
|
||||||
@ -2162,6 +2171,7 @@ export class RoomView extends React.Component<IRoomProps, IRoomState> {
|
|||||||
onForgetClick = null;
|
onForgetClick = null;
|
||||||
onSearchClick = null;
|
onSearchClick = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<RoomContext.Provider value={this.state}>
|
<RoomContext.Provider value={this.state}>
|
||||||
<main className={mainClasses} ref={this.roomView} onKeyDown={this.onReactKeyDown}>
|
<main className={mainClasses} ref={this.roomView} onKeyDown={this.onReactKeyDown}>
|
||||||
@ -2183,7 +2193,7 @@ export class RoomView extends React.Component<IRoomProps, IRoomState> {
|
|||||||
excludedRightPanelPhaseButtons={excludedRightPanelPhaseButtons}
|
excludedRightPanelPhaseButtons={excludedRightPanelPhaseButtons}
|
||||||
/>
|
/>
|
||||||
<MainSplit panel={rightPanel} resizeNotifier={this.props.resizeNotifier}>
|
<MainSplit panel={rightPanel} resizeNotifier={this.props.resizeNotifier}>
|
||||||
<div className="mx_RoomView_body" ref={this.roomViewBody} data-layout={this.state.layout}>
|
<div className={mainSplitContentClasses} ref={this.roomViewBody} data-layout={this.state.layout}>
|
||||||
{ mainSplitBody }
|
{ mainSplitBody }
|
||||||
</div>
|
</div>
|
||||||
</MainSplit>
|
</MainSplit>
|
||||||
|
@ -221,6 +221,9 @@ export default class TimelineCard extends React.Component<IProps, IState> {
|
|||||||
|
|
||||||
const isUploading = ContentMessages.sharedInstance().getCurrentUploads(this.props.composerRelation).length > 0;
|
const isUploading = ContentMessages.sharedInstance().getCurrentUploads(this.props.composerRelation).length > 0;
|
||||||
|
|
||||||
|
const myMembership = this.props.room.getMyMembership();
|
||||||
|
const showComposer = myMembership === "join";
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<RoomContext.Provider value={{
|
<RoomContext.Provider value={{
|
||||||
...this.context,
|
...this.context,
|
||||||
@ -270,15 +273,17 @@ export default class TimelineCard extends React.Component<IProps, IState> {
|
|||||||
<UploadBar room={this.props.room} relation={this.props.composerRelation} />
|
<UploadBar room={this.props.room} relation={this.props.composerRelation} />
|
||||||
) }
|
) }
|
||||||
|
|
||||||
<MessageComposer
|
{ showComposer && (
|
||||||
room={this.props.room}
|
<MessageComposer
|
||||||
relation={this.props.composerRelation}
|
room={this.props.room}
|
||||||
resizeNotifier={this.props.resizeNotifier}
|
relation={this.props.composerRelation}
|
||||||
replyToEvent={this.state.replyToEvent}
|
resizeNotifier={this.props.resizeNotifier}
|
||||||
permalinkCreator={this.props.permalinkCreator}
|
replyToEvent={this.state.replyToEvent}
|
||||||
e2eStatus={this.props.e2eStatus}
|
permalinkCreator={this.props.permalinkCreator}
|
||||||
compact={true}
|
e2eStatus={this.props.e2eStatus}
|
||||||
/>
|
compact={true}
|
||||||
|
/>
|
||||||
|
) }
|
||||||
</BaseCard>
|
</BaseCard>
|
||||||
</RoomContext.Provider>
|
</RoomContext.Provider>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user