This fixes a common React warning we see. Most of these components should be using constructors instead, however componentDidMount is just as good (and doesn't require converting most of these). Conversion to classes will be done in a later stage of React warning fixes. For https://github.com/vector-im/riot-web/issues/12877
201 lines
7.3 KiB
JavaScript
201 lines
7.3 KiB
JavaScript
/*
|
|
Copyright 2020 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 React from 'react';
|
|
|
|
import { _t } from '../../../languageHandler';
|
|
import * as sdk from '../../../index';
|
|
import Modal from '../../../Modal';
|
|
import SettingsStore, {SettingLevel} from "../../../settings/SettingsStore";
|
|
import AccessibleButton from "../elements/AccessibleButton";
|
|
import {formatBytes, formatCountLong} from "../../../utils/FormattingUtils";
|
|
import EventIndexPeg from "../../../indexing/EventIndexPeg";
|
|
|
|
export default class EventIndexPanel extends React.Component {
|
|
constructor() {
|
|
super();
|
|
|
|
this.state = {
|
|
enabling: false,
|
|
eventIndexSize: 0,
|
|
roomCount: 0,
|
|
eventIndexingEnabled:
|
|
SettingsStore.getValueAt(SettingLevel.DEVICE, 'enableEventIndexing'),
|
|
};
|
|
}
|
|
|
|
updateCurrentRoom = async (room) => {
|
|
const eventIndex = EventIndexPeg.get();
|
|
let stats;
|
|
|
|
try {
|
|
stats = await eventIndex.getStats();
|
|
} catch {
|
|
// This call may fail if sporadically, not a huge issue as we will
|
|
// try later again and probably succeed.
|
|
return;
|
|
}
|
|
|
|
this.setState({
|
|
eventIndexSize: stats.size,
|
|
roomCount: stats.roomCount,
|
|
});
|
|
};
|
|
|
|
componentWillUnmount(): void {
|
|
const eventIndex = EventIndexPeg.get();
|
|
|
|
if (eventIndex !== null) {
|
|
eventIndex.removeListener("changedCheckpoint", this.updateCurrentRoom);
|
|
}
|
|
}
|
|
|
|
async componentDidMount(): void {
|
|
this.updateState();
|
|
}
|
|
|
|
async updateState() {
|
|
const eventIndex = EventIndexPeg.get();
|
|
const eventIndexingEnabled = SettingsStore.getValueAt(SettingLevel.DEVICE, 'enableEventIndexing');
|
|
const enabling = false;
|
|
|
|
let eventIndexSize = 0;
|
|
let roomCount = 0;
|
|
|
|
if (eventIndex !== null) {
|
|
eventIndex.on("changedCheckpoint", this.updateCurrentRoom);
|
|
|
|
try {
|
|
const stats = await eventIndex.getStats();
|
|
eventIndexSize = stats.size;
|
|
roomCount = stats.roomCount;
|
|
} catch {
|
|
// This call may fail if sporadically, not a huge issue as we
|
|
// will try later again in the updateCurrentRoom call and
|
|
// probably succeed.
|
|
}
|
|
}
|
|
|
|
this.setState({
|
|
enabling,
|
|
eventIndexSize,
|
|
roomCount,
|
|
eventIndexingEnabled,
|
|
});
|
|
}
|
|
|
|
_onManage = async () => {
|
|
Modal.createTrackedDialogAsync('Message search', 'Message search',
|
|
import('../../../async-components/views/dialogs/eventindex/ManageEventIndexDialog'),
|
|
{
|
|
onFinished: () => {},
|
|
}, null, /* priority = */ false, /* static = */ true,
|
|
);
|
|
}
|
|
|
|
_onEnable = async () => {
|
|
this.setState({
|
|
enabling: true,
|
|
});
|
|
|
|
await EventIndexPeg.initEventIndex();
|
|
await EventIndexPeg.get().addInitialCheckpoints();
|
|
await EventIndexPeg.get().startCrawler();
|
|
await SettingsStore.setValue('enableEventIndexing', null, SettingLevel.DEVICE, true);
|
|
await this.updateState();
|
|
}
|
|
|
|
render() {
|
|
let eventIndexingSettings = null;
|
|
const InlineSpinner = sdk.getComponent('elements.InlineSpinner');
|
|
|
|
if (EventIndexPeg.get() !== null) {
|
|
eventIndexingSettings = (
|
|
<div>
|
|
<div className='mx_SettingsTab_subsectionText'>
|
|
{_t( "Securely cache encrypted messages locally for them " +
|
|
"to appear in search results, using ")
|
|
} {formatBytes(this.state.eventIndexSize, 0)}
|
|
{_t( " to store messages from ")}
|
|
{formatCountLong(this.state.roomCount)} {_t("rooms.")}
|
|
</div>
|
|
<div>
|
|
<AccessibleButton kind="primary" onClick={this._onManage}>
|
|
{_t("Manage")}
|
|
</AccessibleButton>
|
|
</div>
|
|
</div>
|
|
);
|
|
} else if (!this.state.eventIndexingEnabled && EventIndexPeg.supportIsInstalled()) {
|
|
eventIndexingSettings = (
|
|
<div>
|
|
<div className='mx_SettingsTab_subsectionText'>
|
|
{_t( "Securely cache encrypted messages locally for them to " +
|
|
"appear in search results.")}
|
|
</div>
|
|
<div>
|
|
<AccessibleButton kind="primary" disabled={this.state.enabling}
|
|
onClick={this._onEnable}>
|
|
{_t("Enable")}
|
|
</AccessibleButton>
|
|
{this.state.enabling ? <InlineSpinner /> : <div />}
|
|
</div>
|
|
</div>
|
|
);
|
|
} else if (EventIndexPeg.platformHasSupport() && !EventIndexPeg.supportIsInstalled()) {
|
|
const nativeLink = (
|
|
"https://github.com/vector-im/riot-web/blob/develop/" +
|
|
"docs/native-node-modules.md#" +
|
|
"adding-seshat-for-search-in-e2e-encrypted-rooms"
|
|
);
|
|
|
|
eventIndexingSettings = (
|
|
<div>
|
|
{
|
|
_t( "Riot is missing some components required for securely " +
|
|
"caching encrypted messages locally. If you'd like to " +
|
|
"experiment with this feature, build a custom Riot Desktop " +
|
|
"with <nativeLink>search components added</nativeLink>.",
|
|
{},
|
|
{
|
|
'nativeLink': (sub) => <a href={nativeLink} target="_blank"
|
|
rel="noreferrer noopener">{sub}</a>,
|
|
},
|
|
)
|
|
}
|
|
</div>
|
|
);
|
|
} else {
|
|
eventIndexingSettings = (
|
|
<div>
|
|
{
|
|
_t( "Riot can't securely cache encrypted messages locally " +
|
|
"while running in a web browser. Use <riotLink>Riot Desktop</riotLink> " +
|
|
"for encrypted messages to appear in search results.",
|
|
{},
|
|
{
|
|
'riotLink': (sub) => <a href="https://riot.im/download/desktop"
|
|
target="_blank" rel="noreferrer noopener">{sub}</a>,
|
|
},
|
|
)
|
|
}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return eventIndexingSettings;
|
|
}
|
|
}
|