mirror of https://github.com/vector-im/riot-web
Display `SearchWarning` when `isRoomEncrypted` is loaded
parent
42fcb9ce85
commit
b718c092a7
|
@ -44,7 +44,10 @@ interface IProps {
|
||||||
interface IState {
|
interface IState {
|
||||||
timelineSet: EventTimelineSet | null;
|
timelineSet: EventTimelineSet | null;
|
||||||
narrow: boolean;
|
narrow: boolean;
|
||||||
isRoomEncrypted: boolean;
|
/**
|
||||||
|
* Whether the room is encrypted or not. If null, the state is still being determined.
|
||||||
|
*/
|
||||||
|
isRoomEncrypted: boolean | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -63,7 +66,7 @@ class FilePanel extends React.Component<IProps, IState> {
|
||||||
public state: IState = {
|
public state: IState = {
|
||||||
timelineSet: null,
|
timelineSet: null,
|
||||||
narrow: false,
|
narrow: false,
|
||||||
isRoomEncrypted: false,
|
isRoomEncrypted: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
private onRoomTimeline = (
|
private onRoomTimeline = (
|
||||||
|
@ -270,7 +273,8 @@ class FilePanel extends React.Component<IProps, IState> {
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
||||||
const isRoomEncrypted = this.noRoom ? false : this.state.isRoomEncrypted;
|
const isRoomEncryptedLoaded = this.state.isRoomEncrypted !== null;
|
||||||
|
const isRoomEncrypted = Boolean(this.noRoom ? false : this.state.isRoomEncrypted);
|
||||||
|
|
||||||
if (this.state.timelineSet) {
|
if (this.state.timelineSet) {
|
||||||
return (
|
return (
|
||||||
|
@ -291,7 +295,9 @@ class FilePanel extends React.Component<IProps, IState> {
|
||||||
{this.card.current && (
|
{this.card.current && (
|
||||||
<Measured sensor={this.card.current} onMeasurement={this.onMeasurement} />
|
<Measured sensor={this.card.current} onMeasurement={this.onMeasurement} />
|
||||||
)}
|
)}
|
||||||
|
{isRoomEncryptedLoaded && (
|
||||||
<SearchWarning isRoomEncrypted={isRoomEncrypted} kind={WarningKind.Files} />
|
<SearchWarning isRoomEncrypted={isRoomEncrypted} kind={WarningKind.Files} />
|
||||||
|
)}
|
||||||
<TimelinePanel
|
<TimelinePanel
|
||||||
manageReadReceipts={false}
|
manageReadReceipts={false}
|
||||||
manageReadMarkers={false}
|
manageReadMarkers={false}
|
||||||
|
|
Loading…
Reference in New Issue