-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace MatrixClient.isRoomEncrypted
by MatrixClient.CryptoApi.isEncryptionEnabledInRoom
in FilePanel
#28275
base: develop
Are you sure you want to change the base?
Changes from 2 commits
42fcb9c
b718c09
0ba0840
7507e3c
3ccfd9b
3797644
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,10 @@ interface IProps { | |
interface IState { | ||
timelineSet: EventTimelineSet | null; | ||
narrow: boolean; | ||
/** | ||
* Whether the room is encrypted or not. If null, the state is still being determined. | ||
*/ | ||
isRoomEncrypted: boolean | null; | ||
} | ||
|
||
/* | ||
|
@@ -62,6 +66,7 @@ class FilePanel extends React.Component<IProps, IState> { | |
public state: IState = { | ||
timelineSet: null, | ||
narrow: false, | ||
isRoomEncrypted: null, | ||
}; | ||
|
||
private onRoomTimeline = ( | ||
|
@@ -113,7 +118,12 @@ class FilePanel extends React.Component<IProps, IState> { | |
|
||
await this.updateTimelineSet(this.props.roomId); | ||
|
||
if (!client.isRoomEncrypted(this.props.roomId)) return; | ||
const isRoomEncrypted = Boolean(await client.getCrypto()?.isEncryptionEnabledInRoom(this.props.roomId)); | ||
this.setState({ | ||
isRoomEncrypted, | ||
}); | ||
|
||
if (!isRoomEncrypted) return; | ||
|
||
// The timelineSets filter makes sure that encrypted events that contain | ||
// URLs never get added to the timeline, even if they are live events. | ||
|
@@ -131,9 +141,7 @@ class FilePanel extends React.Component<IProps, IState> { | |
|
||
public componentWillUnmount(): void { | ||
const client = MatrixClientPeg.get(); | ||
if (client === null) return; | ||
|
||
if (!client.isRoomEncrypted(this.props.roomId)) return; | ||
if (client === null || !this.state.isRoomEncrypted) return; | ||
|
||
if (EventIndexPeg.get() !== null) { | ||
client.removeListener(RoomEvent.Timeline, this.onRoomTimeline); | ||
|
@@ -173,7 +181,7 @@ class FilePanel extends React.Component<IProps, IState> { | |
// the event index to fulfill the pagination request. Asking the server | ||
// to paginate won't ever work since the server can't correctly filter | ||
// out events containing URLs | ||
if (room && client.isRoomEncrypted(roomId) && eventIndex !== null) { | ||
if (room && this.state.isRoomEncrypted && eventIndex !== null) { | ||
return eventIndex.paginateTimelineWindow(room, timelineWindow, direction, limit); | ||
} else { | ||
return timelineWindow.paginate(direction, limit); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will anything go wrong if this branch gets executed while There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I conditioned the TimelinePanel under the isRoomEncryptedLoaded check. So this case should not happen now |
||
|
@@ -206,7 +214,7 @@ class FilePanel extends React.Component<IProps, IState> { | |
// event index to populate the timelineSet for us. This call | ||
// will add 10 events to the live timeline of the set. More can | ||
// be requested using pagination. | ||
if (client.isRoomEncrypted(roomId) && eventIndex !== null) { | ||
if (this.state.isRoomEncrypted && eventIndex !== null) { | ||
Comment on lines
-209
to
+221
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same kind of question here… will this method only get called after |
||
const timeline = timelineSet.getLiveTimeline(); | ||
await eventIndex.populateFileTimeline(timelineSet, timeline, room, 10); | ||
} | ||
|
@@ -265,7 +273,8 @@ class FilePanel extends React.Component<IProps, IState> { | |
/> | ||
); | ||
|
||
const isRoomEncrypted = this.noRoom ? false : MatrixClientPeg.safeGet().isRoomEncrypted(this.props.roomId); | ||
const isRoomEncryptedLoaded = this.state.isRoomEncrypted !== null; | ||
const isRoomEncrypted = Boolean(this.noRoom ? false : this.state.isRoomEncrypted); | ||
|
||
if (this.state.timelineSet) { | ||
return ( | ||
|
@@ -286,7 +295,9 @@ class FilePanel extends React.Component<IProps, IState> { | |
{this.card.current && ( | ||
<Measured sensor={this.card.current} onMeasurement={this.onMeasurement} /> | ||
)} | ||
<SearchWarning isRoomEncrypted={isRoomEncrypted} kind={WarningKind.Files} /> | ||
{isRoomEncryptedLoaded && ( | ||
<SearchWarning isRoomEncrypted={isRoomEncrypted} kind={WarningKind.Files} /> | ||
)} | ||
<TimelinePanel | ||
manageReadReceipts={false} | ||
manageReadMarkers={false} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since
componentDidMount
is async, I think there's another potential for races here: the component mounts, then if it unmounts beforecomponentDidMount
even finishes determining whether the room is encrypted, it will set up event listeners that will never get removed.