Add frontend for safety numbers approval setting
Adds the checkbox under settings. // FREEBIE
This commit is contained in:
parent
aa42139477
commit
1fe90ecdcb
9 changed files with 137 additions and 74 deletions
|
@ -450,5 +450,13 @@
|
||||||
"you": {
|
"you": {
|
||||||
"message": "You",
|
"message": "You",
|
||||||
"description": "A gender-neutral second-person prounoun used as a subject, as in, 'You set the timer to 5 seconds'"
|
"description": "A gender-neutral second-person prounoun used as a subject, as in, 'You set the timer to 5 seconds'"
|
||||||
|
},
|
||||||
|
"safetyNumbersSettingHeader": {
|
||||||
|
"message": "Safety numbers approval",
|
||||||
|
"description": "Description for safety numbers setting"
|
||||||
|
},
|
||||||
|
"safetyNumbersSettingDescription": {
|
||||||
|
"message": "Require approval of new safety numbers when they change.",
|
||||||
|
"description": "Description for safety numbers setting"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -466,6 +466,12 @@
|
||||||
<label for='notification-setting-off'>{{ disableNotifications }} </label>
|
<label for='notification-setting-off'>{{ disableNotifications }} </label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<hr>
|
||||||
|
<div class='safety-numbers-settings'>
|
||||||
|
<h3>{{ safetyNumbersSettingHeader }}</h3>
|
||||||
|
<input type='checkbox' name='safety-numbers-approval' id='safety-numbers-approval'/>
|
||||||
|
<label for='safety-numbers-approval'>{{ safetyNumbersSettingDescription }}</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</script>
|
</script>
|
||||||
<script type='text/x-tmpl-mustache' id='syncSettings'>
|
<script type='text/x-tmpl-mustache' id='syncSettings'>
|
||||||
|
|
|
@ -5,6 +5,25 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
window.Whisper = window.Whisper || {};
|
window.Whisper = window.Whisper || {};
|
||||||
|
|
||||||
|
var CheckboxView = Whisper.View.extend({
|
||||||
|
initialize: function(options) {
|
||||||
|
this.name = options.name;
|
||||||
|
this.defaultValue = options.defaultValue;
|
||||||
|
this.populate();
|
||||||
|
},
|
||||||
|
events: {
|
||||||
|
'change': 'change'
|
||||||
|
},
|
||||||
|
change: function(e) {
|
||||||
|
var value = e.target.checked;
|
||||||
|
storage.put(this.name, value);
|
||||||
|
console.log(this.name, 'changed to', value);
|
||||||
|
},
|
||||||
|
populate: function() {
|
||||||
|
var value = storage.get(this.name, this.defaultValue);
|
||||||
|
this.$('input').prop('checked', !!value);
|
||||||
|
},
|
||||||
|
});
|
||||||
var RadioButtonGroupView = Whisper.View.extend({
|
var RadioButtonGroupView = Whisper.View.extend({
|
||||||
initialize: function(options) {
|
initialize: function(options) {
|
||||||
this.name = options.name;
|
this.name = options.name;
|
||||||
|
@ -26,7 +45,7 @@
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
Whisper.SettingsView = Whisper.View.extend({
|
Whisper.SettingsView = Whisper.View.extend({
|
||||||
className: 'settings modal',
|
className: 'settings modal expand',
|
||||||
templateName: 'settings',
|
templateName: 'settings',
|
||||||
initialize: function() {
|
initialize: function() {
|
||||||
this.render();
|
this.render();
|
||||||
|
@ -40,6 +59,11 @@
|
||||||
defaultValue: 'message',
|
defaultValue: 'message',
|
||||||
name: 'theme-setting'
|
name: 'theme-setting'
|
||||||
});
|
});
|
||||||
|
new CheckboxView({
|
||||||
|
el: this.$('.safety-numbers-settings'),
|
||||||
|
defaultValue: true,
|
||||||
|
name: 'safety-numbers-approval'
|
||||||
|
});
|
||||||
if (textsecure.storage.user.getDeviceId() != '1') {
|
if (textsecure.storage.user.getDeviceId() != '1') {
|
||||||
var syncView = new SyncView().render();
|
var syncView = new SyncView().render();
|
||||||
this.$('.content').append(syncView.el);
|
this.$('.content').append(syncView.el);
|
||||||
|
@ -57,6 +81,8 @@
|
||||||
nameAndMessage: i18n('nameAndMessage'),
|
nameAndMessage: i18n('nameAndMessage'),
|
||||||
noNameOrMessage: i18n('noNameOrMessage'),
|
noNameOrMessage: i18n('noNameOrMessage'),
|
||||||
nameOnly: i18n('nameOnly'),
|
nameOnly: i18n('nameOnly'),
|
||||||
|
safetyNumbersSettingDescription: i18n('safetyNumbersSettingDescription'),
|
||||||
|
safetyNumbersSettingHeader: i18n('safetyNumbersSettingHeader'),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -442,29 +442,6 @@ $avatar-size: 44px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
background-color: rgba(0, 0, 0, 0.3);
|
|
||||||
padding: 0 20px;
|
|
||||||
z-index: 100;
|
|
||||||
overflow-y: auto;
|
|
||||||
|
|
||||||
.content {
|
|
||||||
position: relative;
|
|
||||||
max-width: 350px;
|
|
||||||
margin: 100px auto;
|
|
||||||
padding: 1em;
|
|
||||||
background: white;
|
|
||||||
border-radius: $border-radius;
|
|
||||||
overflow: auto;
|
|
||||||
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.x {
|
.x {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
float: right;
|
float: right;
|
||||||
|
|
|
@ -258,20 +258,3 @@ input.search {
|
||||||
top: -30px;
|
top: -30px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.syncSettings {
|
|
||||||
button {
|
|
||||||
float: right;
|
|
||||||
line-height: 36px;
|
|
||||||
padding: 0 20px;
|
|
||||||
margin: 0 0 20px 20px;
|
|
||||||
}
|
|
||||||
.synced_at {
|
|
||||||
font-size: $font-size-small;
|
|
||||||
color: $grey;
|
|
||||||
}
|
|
||||||
.sync_failed {
|
|
||||||
display: none;
|
|
||||||
font-size: $font-size-small;
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
22
stylesheets/_modal.scss
Normal file
22
stylesheets/_modal.scss
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
.modal {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
|
padding: 0 20px;
|
||||||
|
z-index: 100;
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
|
.content {
|
||||||
|
position: relative;
|
||||||
|
max-width: 350px;
|
||||||
|
margin: 100px auto;
|
||||||
|
padding: 1em;
|
||||||
|
background: white;
|
||||||
|
border-radius: $border-radius;
|
||||||
|
overflow: auto;
|
||||||
|
box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
}
|
31
stylesheets/_settings.scss
Normal file
31
stylesheets/_settings.scss
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
.settings {
|
||||||
|
&.modal {
|
||||||
|
padding: 50px;
|
||||||
|
|
||||||
|
.content {
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
hr {
|
||||||
|
margin: 10px 0;
|
||||||
|
}
|
||||||
|
.syncSettings {
|
||||||
|
button {
|
||||||
|
float: right;
|
||||||
|
line-height: 36px;
|
||||||
|
padding: 0 20px;
|
||||||
|
margin: 0 0 20px 20px;
|
||||||
|
}
|
||||||
|
.synced_at {
|
||||||
|
font-size: $font-size-small;
|
||||||
|
color: $grey;
|
||||||
|
}
|
||||||
|
.sync_failed {
|
||||||
|
display: none;
|
||||||
|
font-size: $font-size-small;
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -403,26 +403,6 @@ button.hamburger {
|
||||||
@keyframes rotate {
|
@keyframes rotate {
|
||||||
to {
|
to {
|
||||||
transform: rotate(360deg); } }
|
transform: rotate(360deg); } }
|
||||||
.modal {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
background-color: rgba(0, 0, 0, 0.3);
|
|
||||||
padding: 0 20px;
|
|
||||||
z-index: 100;
|
|
||||||
overflow-y: auto; }
|
|
||||||
.modal .content {
|
|
||||||
position: relative;
|
|
||||||
max-width: 350px;
|
|
||||||
margin: 100px auto;
|
|
||||||
padding: 1em;
|
|
||||||
background: white;
|
|
||||||
border-radius: 5px;
|
|
||||||
overflow: auto;
|
|
||||||
box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2); }
|
|
||||||
|
|
||||||
.x {
|
.x {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -486,6 +466,26 @@ input[type=text]:active, input[type=text]:focus, input[type=search]:active, inpu
|
||||||
.bar-container .progress-bar {
|
.bar-container .progress-bar {
|
||||||
height: 100%; }
|
height: 100%; }
|
||||||
|
|
||||||
|
.modal {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
|
padding: 0 20px;
|
||||||
|
z-index: 100;
|
||||||
|
overflow-y: auto; }
|
||||||
|
.modal .content {
|
||||||
|
position: relative;
|
||||||
|
max-width: 350px;
|
||||||
|
margin: 100px auto;
|
||||||
|
padding: 1em;
|
||||||
|
background: white;
|
||||||
|
border-radius: 5px;
|
||||||
|
overflow: auto;
|
||||||
|
box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2); }
|
||||||
|
|
||||||
.debug-log.modal {
|
.debug-log.modal {
|
||||||
padding: 50px; }
|
padding: 50px; }
|
||||||
.debug-log.modal .content {
|
.debug-log.modal .content {
|
||||||
|
@ -698,6 +698,27 @@ img.emoji {
|
||||||
width: 1em;
|
width: 1em;
|
||||||
height: 1em; }
|
height: 1em; }
|
||||||
|
|
||||||
|
.settings.modal {
|
||||||
|
padding: 50px; }
|
||||||
|
.settings.modal .content {
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 500px; }
|
||||||
|
.settings hr {
|
||||||
|
margin: 10px 0; }
|
||||||
|
.settings .syncSettings button {
|
||||||
|
float: right;
|
||||||
|
line-height: 36px;
|
||||||
|
padding: 0 20px;
|
||||||
|
margin: 0 0 20px 20px; }
|
||||||
|
.settings .syncSettings .synced_at {
|
||||||
|
font-size: 0.92857em;
|
||||||
|
color: #616161; }
|
||||||
|
.settings .syncSettings .sync_failed {
|
||||||
|
display: none;
|
||||||
|
font-size: 0.92857em;
|
||||||
|
color: red; }
|
||||||
|
|
||||||
.conversation-stack,
|
.conversation-stack,
|
||||||
.new-conversation, .inbox, .gutter {
|
.new-conversation, .inbox, .gutter {
|
||||||
height: 100%; }
|
height: 100%; }
|
||||||
|
@ -899,19 +920,6 @@ input.search {
|
||||||
border-color: transparent transparent #2eace0 transparent;
|
border-color: transparent transparent #2eace0 transparent;
|
||||||
top: -30px; }
|
top: -30px; }
|
||||||
|
|
||||||
.syncSettings button {
|
|
||||||
float: right;
|
|
||||||
line-height: 36px;
|
|
||||||
padding: 0 20px;
|
|
||||||
margin: 0 0 20px 20px; }
|
|
||||||
.syncSettings .synced_at {
|
|
||||||
font-size: 0.92857em;
|
|
||||||
color: #616161; }
|
|
||||||
.syncSettings .sync_failed {
|
|
||||||
display: none;
|
|
||||||
font-size: 0.92857em;
|
|
||||||
color: red; }
|
|
||||||
|
|
||||||
.conversation-title {
|
.conversation-title {
|
||||||
display: block;
|
display: block;
|
||||||
line-height: 36px;
|
line-height: 36px;
|
||||||
|
|
|
@ -6,10 +6,12 @@
|
||||||
// Components
|
// Components
|
||||||
@import 'progress';
|
@import 'progress';
|
||||||
@import 'hourglass';
|
@import 'hourglass';
|
||||||
|
@import 'modal';
|
||||||
@import 'debugLog';
|
@import 'debugLog';
|
||||||
@import 'lightbox';
|
@import 'lightbox';
|
||||||
@import 'recorder';
|
@import 'recorder';
|
||||||
@import 'emoji';
|
@import 'emoji';
|
||||||
|
@import 'settings';
|
||||||
|
|
||||||
// Build the main view
|
// Build the main view
|
||||||
@import 'index';
|
@import 'index';
|
||||||
|
|
Loading…
Reference in a new issue