2016-07-20 14:03:13 +03:00
|
|
|
/*
|
|
|
|
Copyright 2016 OpenMarket Ltd
|
2017-10-30 06:48:29 +03:00
|
|
|
Copyright 2017 Travis Ralston
|
2016-07-20 14:03:13 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const React = require('react');
|
|
|
|
const sdk = require("../../../index");
|
2017-06-02 12:18:31 +03:00
|
|
|
import { _t, _tJsx } from '../../../languageHandler';
|
2017-10-30 06:48:29 +03:00
|
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
2016-07-20 14:03:13 +03:00
|
|
|
|
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'UrlPreviewSettings',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
room: React.PropTypes.object,
|
|
|
|
},
|
|
|
|
|
2017-10-30 07:18:03 +03:00
|
|
|
saveSettings: function() {
|
|
|
|
// TODO: {Travis} move toggle logic here instead of being 'live'
|
|
|
|
return [];
|
|
|
|
},
|
|
|
|
|
2017-10-30 06:48:29 +03:00
|
|
|
render: function() {
|
|
|
|
const SettingsCheckbox = sdk.getComponent("elements.SettingsCheckbox");
|
|
|
|
const roomId = this.props.room.roomId;
|
2016-07-20 14:03:13 +03:00
|
|
|
|
2017-10-30 06:48:29 +03:00
|
|
|
let previewsForAccount = null;
|
|
|
|
if (SettingsStore.getValueAt("account", "urlPreviewsEnabled")) {
|
|
|
|
previewsForAccount = (
|
|
|
|
_tJsx("You have <a>enabled</a> URL previews by default.", /<a>(.*?)<\/a>/, (sub)=><a href="#/settings">{ sub }</a>)
|
2016-07-20 14:03:13 +03:00
|
|
|
);
|
2017-10-30 06:48:29 +03:00
|
|
|
} else {
|
|
|
|
previewsForAccount = (
|
|
|
|
_tJsx("You have <a>disabled</a> URL previews by default.", /<a>(.*?)<\/a>/, (sub)=><a href="#/settings">{ sub }</a>)
|
2016-07-20 14:03:13 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-10-30 07:18:03 +03:00
|
|
|
// TODO: {Travis} This needs to be an explicit true/false for "room" only.
|
2017-10-30 06:48:29 +03:00
|
|
|
let previewsForRoom = null;
|
|
|
|
if (SettingsStore.canSetValue("urlPreviewsEnabled", roomId, "room")) {
|
|
|
|
previewsForRoom = (
|
2016-07-20 14:03:13 +03:00
|
|
|
<label>
|
2017-10-30 06:48:29 +03:00
|
|
|
<SettingsCheckbox name="urlPreviewsEnabled"
|
|
|
|
level="room"
|
2017-10-31 04:49:44 +03:00
|
|
|
roomId={this.props.room.roomId}
|
|
|
|
isExplicit={true} />
|
2017-10-30 06:48:29 +03:00
|
|
|
</label>
|
2017-06-02 12:18:31 +03:00
|
|
|
);
|
2017-10-11 19:56:17 +03:00
|
|
|
} else {
|
2017-10-30 06:48:29 +03:00
|
|
|
let str = "URL previews are enabled by default for participants in this room.";
|
|
|
|
if (!SettingsStore.getValueAt("room", "urlPreviewsEnabled")) {
|
|
|
|
str = "URL previews are disabled by default for participants in this room.";
|
|
|
|
}
|
|
|
|
previewsForRoom = (<label>{ _t(str) }</label>);
|
2017-06-02 12:18:31 +03:00
|
|
|
}
|
|
|
|
|
2017-10-30 06:48:29 +03:00
|
|
|
let previewsForRoomAccount = (
|
|
|
|
<SettingsCheckbox name="urlPreviewsEnabled"
|
|
|
|
level="room-account"
|
|
|
|
roomId={this.props.room.roomId}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
2016-07-20 14:03:13 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_RoomSettings_toggles">
|
2017-10-11 19:56:17 +03:00
|
|
|
<h3>{ _t("URL Previews") }</h3>
|
2016-07-20 14:03:13 +03:00
|
|
|
|
2017-10-30 06:48:29 +03:00
|
|
|
<label>{ previewsForAccount }</label>
|
|
|
|
{ previewsForRoom }
|
|
|
|
<label>{ previewsForRoomAccount }</label>
|
2016-07-20 14:03:13 +03:00
|
|
|
</div>
|
|
|
|
);
|
2017-10-11 19:56:17 +03:00
|
|
|
},
|
2017-01-20 17:22:27 +03:00
|
|
|
});
|