|
|
|
@ -1,4 +1,4 @@
|
|
|
|
|
/* global Whisper, textsecure, ConversationController, Signal */
|
|
|
|
|
/* global Whisper, textsecure, ConversationController, Signal, i18n */
|
|
|
|
|
|
|
|
|
|
// eslint-disable-next-line func-names
|
|
|
|
|
(function() {
|
|
|
|
@ -10,10 +10,14 @@
|
|
|
|
|
templateName: 'main-header-placeholder',
|
|
|
|
|
events: {
|
|
|
|
|
'click .main-header-title-wrapper': 'onClick',
|
|
|
|
|
'click .edit-name': 'onEditProfile',
|
|
|
|
|
'click .copy-key': 'onCopyKey',
|
|
|
|
|
},
|
|
|
|
|
initialize() {
|
|
|
|
|
const ourNumber = textsecure.storage.user.getNumber();
|
|
|
|
|
const me = ConversationController.getOrCreate(ourNumber, 'private');
|
|
|
|
|
initialize(options) {
|
|
|
|
|
this.items = options.items || [];
|
|
|
|
|
|
|
|
|
|
this.ourNumber = textsecure.storage.user.getNumber();
|
|
|
|
|
const me = ConversationController.getOrCreate(this.ourNumber, 'private');
|
|
|
|
|
|
|
|
|
|
this.mainHeaderView = new Whisper.ReactWrapperView({
|
|
|
|
|
className: 'main-header-wrapper',
|
|
|
|
@ -24,10 +28,25 @@
|
|
|
|
|
this.listenTo(me, 'change', update);
|
|
|
|
|
|
|
|
|
|
this.render();
|
|
|
|
|
|
|
|
|
|
this.$('.main-header-title-wrapper').prepend(this.mainHeaderView.el);
|
|
|
|
|
this.$content = this.$('.main-header-content-wrapper');
|
|
|
|
|
|
|
|
|
|
this.$toggle = this.$('.main-header-content-toggle');
|
|
|
|
|
this.$content = this.$('.main-header-content-wrapper');
|
|
|
|
|
this.$content.hide();
|
|
|
|
|
|
|
|
|
|
this.registerCallbacks();
|
|
|
|
|
},
|
|
|
|
|
registerCallbacks() {
|
|
|
|
|
this.items.forEach(item => {
|
|
|
|
|
if (item.onClick) {
|
|
|
|
|
this.$(`#${item.id}`).click(item.onClick);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
render_attributes() {
|
|
|
|
|
return {
|
|
|
|
|
items: this.items,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
onClick() {
|
|
|
|
|
// Toggle section visibility
|
|
|
|
|