2015-09-16 06:28:00 +00:00
|
|
|
(function () {
|
2018-03-05 22:54:33 +00:00
|
|
|
'use strict';
|
2015-09-16 06:28:00 +00:00
|
|
|
|
2018-03-05 22:54:33 +00:00
|
|
|
window.Whisper = window.Whisper || {};
|
2017-10-04 21:40:35 +00:00
|
|
|
|
2018-03-05 22:54:33 +00:00
|
|
|
Whisper.DebugLogLinkView = Whisper.View.extend({
|
|
|
|
templateName: 'debug-log-link',
|
|
|
|
initialize(options) {
|
|
|
|
this.url = options.url;
|
|
|
|
},
|
|
|
|
render_attributes() {
|
|
|
|
return {
|
|
|
|
url: this.url,
|
|
|
|
reportIssue: i18n('reportIssue'),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
Whisper.DebugLogView = Whisper.View.extend({
|
|
|
|
templateName: 'debug-log',
|
|
|
|
className: 'debug-log modal',
|
|
|
|
initialize() {
|
|
|
|
this.render();
|
|
|
|
this.$('textarea').val(i18n('loading'));
|
2015-09-16 06:28:00 +00:00
|
|
|
|
2018-03-05 22:54:33 +00:00
|
|
|
window.log.fetch().then((text) => {
|
|
|
|
this.$('textarea').val(text);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
events: {
|
|
|
|
'click .submit': 'submit',
|
|
|
|
'click .close': 'close',
|
|
|
|
},
|
|
|
|
render_attributes: {
|
|
|
|
title: i18n('submitDebugLog'),
|
|
|
|
cancel: i18n('cancel'),
|
|
|
|
submit: i18n('submit'),
|
|
|
|
close: i18n('gotIt'),
|
|
|
|
debugLogExplanation: i18n('debugLogExplanation'),
|
|
|
|
},
|
|
|
|
close(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.remove();
|
|
|
|
},
|
|
|
|
submit(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
const text = this.$('textarea').val();
|
|
|
|
if (text.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
log.publish(text).then((url) => {
|
|
|
|
const view = new Whisper.DebugLogLinkView({
|
|
|
|
url,
|
|
|
|
el: this.$('.result'),
|
|
|
|
});
|
|
|
|
this.$('.loading').removeClass('loading');
|
|
|
|
view.render();
|
|
|
|
this.$('.link').focus().select();
|
|
|
|
});
|
|
|
|
this.$('.buttons, textarea').remove();
|
|
|
|
this.$('.result').addClass('loading');
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}());
|