Added link preview setting.

pull/186/head
Mikunj 6 years ago
parent 27c6062351
commit 725a41a8d7

@ -1102,6 +1102,17 @@
"message": "General", "message": "General",
"description": "Header for general options on the settings screen" "description": "Header for general options on the settings screen"
}, },
"sendLinkPreviews": {
"message": "Send Link Previews",
"description":
"Option to control creation and send of link previews in setting screen"
},
"linkPreviewsDescription": {
"message":
"Enable local link previews (Restart for changes to take effect)",
"description":
"Additional detail provided for Link Previews option in settings screen"
},
"spellCheckDescription": { "spellCheckDescription": {
"message": "Enable spell check of text entered in message composition box", "message": "Enable spell check of text entered in message composition box",
"description": "Description of the media permission description" "description": "Description of the media permission description"

@ -254,6 +254,11 @@
getReadReceiptSetting: () => storage.get('read-receipt-setting'), getReadReceiptSetting: () => storage.get('read-receipt-setting'),
setReadReceiptSetting: value => setReadReceiptSetting: value =>
storage.put('read-receipt-setting', value), storage.put('read-receipt-setting', value),
getLinkPreviewSetting: () => storage.get('linkPreviews', false),
setLinkPreviewSetting: value =>
storage.put('linkPreviews', value),
getNotificationSetting: () => getNotificationSetting: () =>
storage.get('notification-setting', 'message'), storage.get('notification-setting', 'message'),
setNotificationSetting: value => setNotificationSetting: value =>

@ -20,6 +20,7 @@ const getInitialData = async () => ({
messageTTL: await window.getMessageTTL(), messageTTL: await window.getMessageTTL(),
readReceiptSetting: await window.getReadReceiptSetting(), readReceiptSetting: await window.getReadReceiptSetting(),
linkPreviewSetting: await window.getLinkPreviewSetting(),
notificationSetting: await window.getNotificationSetting(), notificationSetting: await window.getNotificationSetting(),
audioNotification: await window.getAudioNotification(), audioNotification: await window.getAudioNotification(),

@ -155,6 +155,12 @@
value: window.initialData.hideMenuBar, value: window.initialData.hideMenuBar,
setFn: window.setHideMenuBar, setFn: window.setHideMenuBar,
}); });
new CheckboxView({
el: this.$('.link-preview-setting'),
name: 'link-preview-setting',
value: window.initialData.linkPreviewSetting,
setFn: window.setLinkPreviewSetting,
});
new MediaPermissionsSettingView({ new MediaPermissionsSettingView({
el: this.$('.media-permissions'), el: this.$('.media-permissions'),
value: window.initialData.mediaPermissions, value: window.initialData.mediaPermissions,

@ -1091,6 +1091,9 @@ installSettingsSetter('notification-setting');
installSettingsGetter('audio-notification'); installSettingsGetter('audio-notification');
installSettingsSetter('audio-notification'); installSettingsSetter('audio-notification');
installSettingsGetter('link-preview-setting');
installSettingsSetter('link-preview-setting');
installSettingsGetter('spell-check'); installSettingsGetter('spell-check');
installSettingsSetter('spell-check'); installSettingsSetter('spell-check');

@ -171,6 +171,9 @@ installSetter('notification-setting', 'setNotificationSetting');
installGetter('audio-notification', 'getAudioNotification'); installGetter('audio-notification', 'getAudioNotification');
installSetter('audio-notification', 'setAudioNotification'); installSetter('audio-notification', 'setAudioNotification');
installGetter('link-preview-setting', 'getLinkPreviewSetting');
installSetter('link-preview-setting', 'setLinkPreviewSetting');
installGetter('spell-check', 'getSpellCheck'); installGetter('spell-check', 'getSpellCheck');
installSetter('spell-check', 'setSpellCheck'); installSetter('spell-check', 'setSpellCheck');

@ -98,6 +98,10 @@
<input type='checkbox' name='spell-check-setting' id='spell-check-setting' /> <input type='checkbox' name='spell-check-setting' id='spell-check-setting' />
<label for='spell-check-setting'>{{ spellCheckDescription }}</label> <label for='spell-check-setting'>{{ spellCheckDescription }}</label>
</div> </div>
<div class='link-preview-setting'>
<input type='checkbox' name='link-preview-setting' id='link-preview-setting' />
<label for='link-preview-setting'>{{ linkPreviewsDescription }}</label>
</div>
<hr> <hr>
<div class='permissions-setting'> <div class='permissions-setting'>
<h3>{{ permissions }}</h3> <h3>{{ permissions }}</h3>

@ -52,6 +52,9 @@ window.setNotificationSetting = makeSetter('notification-setting');
window.getAudioNotification = makeGetter('audio-notification'); window.getAudioNotification = makeGetter('audio-notification');
window.setAudioNotification = makeSetter('audio-notification'); window.setAudioNotification = makeSetter('audio-notification');
window.getLinkPreviewSetting = makeGetter('link-preview-setting');
window.setLinkPreviewSetting = makeSetter('link-preview-setting');
window.getMediaPermissions = makeGetter('media-permissions'); window.getMediaPermissions = makeGetter('media-permissions');
window.setMediaPermissions = makeSetter('media-permissions'); window.setMediaPermissions = makeSetter('media-permissions');

Loading…
Cancel
Save