* Copyright headers 1 * Licence headers 2 * Copyright Headers 3 * Copyright Headers 4 * Copyright Headers 5 * Copyright Headers 6 * Copyright headers 7 * Add copyright headers for html and config file * Replace license files and update package.json * Update with CLA * lint
67 lines
2.2 KiB
TypeScript
67 lines
2.2 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
|
|
import BaseDialog from "../../../../components/views/dialogs/BaseDialog";
|
|
import Spinner from "../../../../components/views/elements/Spinner";
|
|
import DialogButtons from "../../../../components/views/elements/DialogButtons";
|
|
import dis from "../../../../dispatcher/dispatcher";
|
|
import { _t } from "../../../../languageHandler";
|
|
import SettingsStore from "../../../../settings/SettingsStore";
|
|
import EventIndexPeg from "../../../../indexing/EventIndexPeg";
|
|
import { Action } from "../../../../dispatcher/actions";
|
|
import { SettingLevel } from "../../../../settings/SettingLevel";
|
|
|
|
interface IProps {
|
|
onFinished: (success?: boolean) => void;
|
|
}
|
|
|
|
interface IState {
|
|
disabling: boolean;
|
|
}
|
|
|
|
/*
|
|
* Allows the user to disable the Event Index.
|
|
*/
|
|
export default class DisableEventIndexDialog extends React.Component<IProps, IState> {
|
|
public constructor(props: IProps) {
|
|
super(props);
|
|
this.state = {
|
|
disabling: false,
|
|
};
|
|
}
|
|
|
|
private onDisable = async (): Promise<void> => {
|
|
this.setState({
|
|
disabling: true,
|
|
});
|
|
|
|
await SettingsStore.setValue("enableEventIndexing", null, SettingLevel.DEVICE, false);
|
|
await EventIndexPeg.deleteEventIndex();
|
|
this.props.onFinished(true);
|
|
dis.fire(Action.ViewUserSettings);
|
|
};
|
|
|
|
public render(): React.ReactNode {
|
|
return (
|
|
<BaseDialog onFinished={this.props.onFinished} title={_t("common|are_you_sure")}>
|
|
{_t("settings|security|message_search_disable_warning")}
|
|
{this.state.disabling ? <Spinner /> : <div />}
|
|
<DialogButtons
|
|
primaryButton={_t("action|disable")}
|
|
onPrimaryButtonClick={this.onDisable}
|
|
primaryButtonClass="danger"
|
|
cancelButtonClass="warning"
|
|
onCancel={this.props.onFinished}
|
|
disabled={this.state.disabling}
|
|
/>
|
|
</BaseDialog>
|
|
);
|
|
}
|
|
}
|