mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 01:21:37 +03:00
111 lines
4.6 KiB
JavaScript
111 lines
4.6 KiB
JavaScript
/*
|
|
Copyright 2016 OpenMarket Ltd
|
|
Copyright 2017 Travis Ralston
|
|
Copyright 2018, 2019 New Vector Ltd
|
|
Copyright 2019 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 PropTypes from 'prop-types';
|
|
import * as sdk from "../../../index";
|
|
import { _t, _td } from '../../../languageHandler';
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
|
import dis from "../../../dispatcher/dispatcher";
|
|
import {MatrixClientPeg} from "../../../MatrixClientPeg";
|
|
import {Action} from "../../../dispatcher/actions";
|
|
import {SettingLevel} from "../../../settings/SettingLevel";
|
|
|
|
|
|
export default class UrlPreviewSettings extends React.Component {
|
|
static propTypes = {
|
|
room: PropTypes.object,
|
|
};
|
|
|
|
_onClickUserSettings = (e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
dis.fire(Action.ViewUserSettings);
|
|
};
|
|
|
|
render() {
|
|
const SettingsFlag = sdk.getComponent("elements.SettingsFlag");
|
|
const roomId = this.props.room.roomId;
|
|
const isEncrypted = MatrixClientPeg.get().isRoomEncrypted(roomId);
|
|
|
|
let previewsForAccount = null;
|
|
let previewsForRoom = null;
|
|
|
|
if (!isEncrypted) {
|
|
// Only show account setting state and room state setting state in non-e2ee rooms where they apply
|
|
const accountEnabled = SettingsStore.getValueAt(SettingLevel.ACCOUNT, "urlPreviewsEnabled");
|
|
if (accountEnabled) {
|
|
previewsForAccount = (
|
|
_t("You have <a>enabled</a> URL previews by default.", {}, {
|
|
'a': (sub)=><a onClick={this._onClickUserSettings} href=''>{ sub }</a>,
|
|
})
|
|
);
|
|
} else {
|
|
previewsForAccount = (
|
|
_t("You have <a>disabled</a> URL previews by default.", {}, {
|
|
'a': (sub)=><a onClick={this._onClickUserSettings} href=''>{ sub }</a>,
|
|
})
|
|
);
|
|
}
|
|
|
|
if (SettingsStore.canSetValue("urlPreviewsEnabled", roomId, "room")) {
|
|
previewsForRoom = (
|
|
<label>
|
|
<SettingsFlag name="urlPreviewsEnabled"
|
|
level={SettingLevel.ROOM}
|
|
roomId={roomId}
|
|
isExplicit={true} />
|
|
</label>
|
|
);
|
|
} else {
|
|
let str = _td("URL previews are enabled by default for participants in this room.");
|
|
if (!SettingsStore.getValueAt(SettingLevel.ROOM, "urlPreviewsEnabled", roomId, /*explicit=*/true)) {
|
|
str = _td("URL previews are disabled by default for participants in this room.");
|
|
}
|
|
previewsForRoom = (<label>{ _t(str) }</label>);
|
|
}
|
|
} else {
|
|
previewsForAccount = (
|
|
_t("In encrypted rooms, like this one, URL previews are disabled by default to ensure that your " +
|
|
"homeserver (where the previews are generated) cannot gather information about links you see in " +
|
|
"this room.")
|
|
);
|
|
}
|
|
|
|
const previewsForRoomAccount = ( // in an e2ee room we use a special key to enforce per-room opt-in
|
|
<SettingsFlag name={isEncrypted ? 'urlPreviewsEnabled_e2ee' : 'urlPreviewsEnabled'}
|
|
level={SettingLevel.ROOM_ACCOUNT}
|
|
roomId={roomId} />
|
|
);
|
|
|
|
return (
|
|
<div>
|
|
<div className='mx_SettingsTab_subsectionText'>
|
|
{ _t('When someone puts a URL in their message, a URL preview can be shown to give more ' +
|
|
'information about that link such as the title, description, and an image from the website.') }
|
|
</div>
|
|
<div className='mx_SettingsTab_subsectionText'>
|
|
{ previewsForAccount }
|
|
</div>
|
|
{ previewsForRoom }
|
|
<label>{ previewsForRoomAccount }</label>
|
|
</div>
|
|
);
|
|
}
|
|
}
|