/* Copyright 2019-2021 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, getCurrentLanguage } from "../../../../../languageHandler"; import { MatrixClientPeg } from "../../../../../MatrixClientPeg"; import AccessibleButton from "../../../elements/AccessibleButton"; import AccessibleTooltipButton from '../../../elements/AccessibleTooltipButton'; import SdkConfig from "../../../../../SdkConfig"; import createRoom from "../../../../../createRoom"; import Modal from "../../../../../Modal"; import PlatformPeg from "../../../../../PlatformPeg"; import * as KeyboardShortcuts from "../../../../../accessibility/KeyboardShortcuts"; import UpdateCheckButton from "../../UpdateCheckButton"; import { replaceableComponent } from "../../../../../utils/replaceableComponent"; import { copyPlaintext } from "../../../../../utils/strings"; import * as ContextMenu from "../../../../structures/ContextMenu"; import { toRightOf } from "../../../../structures/ContextMenu"; import BugReportDialog from '../../../dialogs/BugReportDialog'; import GenericTextContextMenu from "../../../context_menus/GenericTextContextMenu"; interface IProps { closeSettingsFn: () => void; } interface IState { appVersion: string; canUpdate: boolean; } @replaceableComponent("views.settings.tabs.user.HelpUserSettingsTab") export default class HelpUserSettingsTab extends React.Component { protected closeCopiedTooltip: () => void; constructor(props) { super(props); this.state = { appVersion: null, canUpdate: false, }; } componentDidMount(): void { PlatformPeg.get().getAppVersion().then((ver) => this.setState({ appVersion: ver })).catch((e) => { console.error("Error getting vector version: ", e); }); PlatformPeg.get().canSelfUpdate().then((v) => this.setState({ canUpdate: v })).catch((e) => { console.error("Error getting self updatability: ", e); }); } componentWillUnmount() { // if the Copied tooltip is open then get rid of it, there are ways to close the modal which wouldn't close // the tooltip otherwise, such as pressing Escape if (this.closeCopiedTooltip) this.closeCopiedTooltip(); } private onClearCacheAndReload = (e) => { if (!PlatformPeg.get()) return; // Dev note: please keep this log line, it's useful when troubleshooting a MatrixClient suddenly // stopping in the middle of the logs. console.log("Clear cache & reload clicked"); MatrixClientPeg.get().stopClient(); MatrixClientPeg.get().store.deleteAllData().then(() => { PlatformPeg.get().reload(); }); }; private onBugReport = (e) => { Modal.createTrackedDialog('Bug Report Dialog', '', BugReportDialog, {}); }; private onStartBotChat = (e) => { this.props.closeSettingsFn(); createRoom({ dmUserId: SdkConfig.get().welcomeUserId, andView: true, }); }; private showSpoiler = (event) => { const target = event.target; target.innerHTML = target.getAttribute('data-spoiler'); const range = document.createRange(); range.selectNodeContents(target); const selection = window.getSelection(); selection.removeAllRanges(); selection.addRange(range); }; private renderLegal() { const tocLinks = SdkConfig.get().terms_and_conditions_links; if (!tocLinks) return null; const legalLinks = []; for (const tocEntry of SdkConfig.get().terms_and_conditions_links) { legalLinks.push(
{tocEntry.text}
); } return (
{_t("Legal")}
{legalLinks}
); } private renderCredits() { // Note: This is not translated because it is legal text. // Also,   is ugly but necessary. return (
{_t("Credits")}
); } onAccessTokenCopyClick = async (e) => { e.preventDefault(); const target = e.target; // copy target before we go async and React throws it away const successful = await copyPlaintext(MatrixClientPeg.get().getAccessToken()); const buttonRect = target.getBoundingClientRect(); const { close } = ContextMenu.createMenu(GenericTextContextMenu, { ...toRightOf(buttonRect, 2), message: successful ? _t('Copied!') : _t('Failed to copy'), }); this.closeCopiedTooltip = target.onmouseleave = close; }; render() { const brand = SdkConfig.get().brand; let faqText = _t( 'For help with using %(brand)s, click here.', { brand, }, { 'a': (sub) => {sub} , }, ); if (SdkConfig.get().welcomeUserId && getCurrentLanguage().startsWith('en')) { faqText = (
{_t( 'For help with using %(brand)s, click here or start a chat with our ' + 'bot using the button below.', { brand, }, { 'a': (sub) => {sub} , }, )}
{_t("Chat with %(brand)s Bot", { brand })}
); } const appVersion = this.state.appVersion || 'unknown'; let olmVersion = MatrixClientPeg.get().olmVersion; olmVersion = olmVersion ? `${olmVersion[0]}.${olmVersion[1]}.${olmVersion[2]}` : ''; let updateButton = null; if (this.state.canUpdate) { updateButton = ; } let bugReportingSection; if (SdkConfig.get().bug_report_endpoint_url) { bugReportingSection = (
{_t('Bug reporting')}
{_t( "If you've submitted a bug via GitHub, debug logs can help " + "us track down the problem. Debug logs contain application " + "usage data including your username, the IDs or aliases of " + "the rooms or groups you have visited and the usernames of " + "other users. They do not contain messages.", )}
{_t("Submit debug logs")}
{_t( "To report a Matrix-related security issue, please read the Matrix.org " + "Security Disclosure Policy.", {}, { a: sub => {sub}, }, )}
); } return (
{_t("Help & About")}
{ bugReportingSection }
{_t("FAQ")}
{faqText}
{ _t("Keyboard Shortcuts") }
{_t("Versions")}
{_t("%(brand)s version:", { brand })} {appVersion}
{_t("olm version:")} {olmVersion}
{updateButton}
{this.renderLegal()} {this.renderCredits()}
{_t("Advanced")}
{_t("Homeserver is")} {MatrixClientPeg.get().getHomeserverUrl()}
{_t("Identity Server is")} {MatrixClientPeg.get().getIdentityServerUrl()}

{_t("Access Token")}
{_t("Your access token gives full access to your account." + " Do not share it with anyone." )}
{MatrixClientPeg.get().getAccessToken()}

{_t("Clear cache and reload")}
); } }