Composer: simplify code with early returns

v1.18.x
Micheil Smith 11 years ago
parent 9dc0a4b115
commit 78e1e4fbac

@ -415,7 +415,10 @@ define(['taskbar'], function(taskbar) {
} }
composer.newTopic = function(cid) { composer.newTopic = function(cid) {
if(allowed()) { if(!allowed()) {
return;
}
push({ push({
cid: cid, cid: cid,
title: '', title: '',
@ -423,13 +426,20 @@ define(['taskbar'], function(taskbar) {
modified: false, modified: false,
isMain: true isMain: true
}); });
}
}; };
composer.addQuote = function(tid, pid, title, username, text){ composer.addQuote = function(tid, pid, title, username, text){
if (allowed()) { if (!allowed()) {
return;
}
var uuid = composer.active; var uuid = composer.active;
if(uuid !== undefined){
if(uuid === undefined){
composer.newReply(tid, pid, title, username + ' said:\n' + text);
return;
}
var bodyEl = $('#cmp-uuid-'+uuid).find('textarea'); var bodyEl = $('#cmp-uuid-'+uuid).find('textarea');
var prevText = bodyEl.val(); var prevText = bodyEl.val();
if(tid !== composer.posts[uuid].tid) { if(tid !== composer.posts[uuid].tid) {
@ -439,14 +449,13 @@ define(['taskbar'], function(taskbar) {
} }
composer.posts[uuid].body = (prevText.length ? prevText + '\n\n' : '') + text; composer.posts[uuid].body = (prevText.length ? prevText + '\n\n' : '') + text;
bodyEl.val(composer.posts[uuid].body); bodyEl.val(composer.posts[uuid].body);
} else {
composer.newReply(tid, pid, title, username + ' said:\n' + text);
}
}
}; };
composer.newReply = function(tid, pid, title, text) { composer.newReply = function(tid, pid, title, text) {
if(allowed()) { if(!allowed()) {
return;
}
push({ push({
tid: tid, tid: tid,
toPid: pid, toPid: pid,
@ -455,15 +464,18 @@ define(['taskbar'], function(taskbar) {
modified: false, modified: false,
isMain: false isMain: false
}); });
}
}; };
composer.editPost = function(pid) { composer.editPost = function(pid) {
if(allowed()) { if(!allowed()) {
return;
}
socket.emit('modules.composer.push', pid, function(err, threadData) { socket.emit('modules.composer.push', pid, function(err, threadData) {
if(err) { if(err) {
return app.alertError(err.message); return app.alertError(err.message);
} }
push({ push({
pid: pid, pid: pid,
title: threadData.title, title: threadData.title,
@ -473,7 +485,6 @@ define(['taskbar'], function(taskbar) {
topic_thumb: threadData.topic_thumb topic_thumb: threadData.topic_thumb
}); });
}); });
}
}; };
composer.load = function(post_uuid) { composer.load = function(post_uuid) {

Loading…
Cancel
Save