v1.18.x
Baris Soner Usakli 11 years ago
parent 3752a1c691
commit 680dbf138a

@ -1,4 +1,4 @@
define(function () { define(['composer'], function(composer) {
var Category = {}, var Category = {},
loadingMoreTopics = false; loadingMoreTopics = false;
@ -27,9 +27,7 @@ define(function () {
}); });
$('#new_post').on('click', function () { $('#new_post').on('click', function () {
require(['composer'], function (cmp) { composer.newTopic(cid);
cmp.push(0, cid);
});
}); });
ajaxify.register_events([ ajaxify.register_events([
@ -84,7 +82,7 @@ define(function () {
var html = templates.prepare(templates['category'].blocks['topics']).parse({ var html = templates.prepare(templates['category'].blocks['topics']).parse({
topics: [data] topics: [data]
}); });
translator.translate(html, function(translatedHTML) { translator.translate(html, function(translatedHTML) {
var topic = $(translatedHTML), var topic = $(translatedHTML),
container = $('#topics-container'), container = $('#topics-container'),
@ -137,7 +135,7 @@ define(function () {
var html = templates.prepare(templates['category'].blocks['topics']).parse({ var html = templates.prepare(templates['category'].blocks['topics']).parse({
topics: topics topics: topics
}); });
translator.translate(html, function(translatedHTML) { translator.translate(html, function(translatedHTML) {
var container = $('#topics-container'); var container = $('#topics-container');

@ -274,7 +274,7 @@ define(['composer'], function(composer) {
} }
if (thread_state.locked !== '1') { if (thread_state.locked !== '1') {
composer.push(tid, null, null, selectionText.length > 0 ? selectionText + '\n\n' + username : '' + username); composer.newReply(tid, topic_name, selectionText.length > 0 ? selectionText + '\n\n' + username : '' + username);
} }
}); });
@ -286,7 +286,7 @@ define(['composer'], function(composer) {
quoted = '> ' + data.post.replace(/\n/g, '\n> ') + '\n\n'; quoted = '> ' + data.post.replace(/\n/g, '\n> ') + '\n\n';
composer.push(tid, null, null, quoted); composer.newReply(tid, topic_name, quoted);
}); });
} }
}); });
@ -337,8 +337,7 @@ define(['composer'], function(composer) {
$('#post-container').delegate('.edit', 'click', function(e) { $('#post-container').delegate('.edit', 'click', function(e) {
var pid = $(this).parents('li').attr('data-pid'); var pid = $(this).parents('li').attr('data-pid');
composer.editPost(pid);
composer.push(null, null, pid);
}); });
$('#post-container').delegate('.delete', 'click', function(e) { $('#post-container').delegate('.delete', 'click', function(e) {

@ -4,47 +4,72 @@ define(['taskbar'], function(taskbar) {
posts: {} posts: {}
}; };
composer.push = function(tid, cid, pid, text) { function allowed() {
if(!(parseInt(app.uid, 10) > 0 || parseInt(config.allowGuestPosting, 10) === 1)) {
socket.emit('api:composer.push', { app.alert({
tid: tid, // Replying type: 'danger',
cid: cid, // Posting timeout: 5000,
pid: pid, // Editing alert_id: 'post_error',
body: text // Predefined text title: 'Please Log In to Post',
}, function(threadData) { message: 'Posting is currently restricted to registered members only, click here to log in',
clickfn: function() {
if(threadData.error) { ajaxify.go('login');
app.alert({ }
type: 'danger', });
timeout: 5000, return false;
alert_id: 'post_error', }
title: 'Please Log In to Post', return true;
message: 'Posting is currently restricted to registered members only, click here to log in', }
clickfn: function() {
ajaxify.go('login');
}
});
return;
}
var uuid = utils.generateUUID();
taskbar.push('composer', uuid, { composer.newTopic = function(cid) {
title: (!threadData.cid ? (threadData.title || '') : 'New Topic'), if(allowed()) {
icon: threadData.picture push({
cid: cid,
title: '',
body: '',
modified: false
}); });
}
}
composer.posts[uuid] = { composer.newReply = function(tid, title, text) {
tid: threadData.tid, if(allowed()) {
cid: threadData.cid, push({
pid: threadData.pid, tid: tid,
title: threadData.title || '', title: title,
body: threadData.body || '', body: text,
modified: false modified: false
}; });
}
}
composer.editPost = function(pid) {
if(allowed()) {
socket.emit('api:composer.push', {
pid: pid
}, function(threadData) {
console.log(threadData);
push({
pid: pid,
title: threadData.title,
body: threadData.body,
modified: false
});
});
}
}
composer.load(uuid); function push(post) {
var uuid = utils.generateUUID();
taskbar.push('composer', uuid, {
title: post.title ? post.title : 'New Topic',
icon: post.picture
}); });
composer.posts[uuid] = post;
composer.load(uuid);
} }
composer.load = function(post_uuid) { composer.load = function(post_uuid) {
@ -470,7 +495,9 @@ define(['taskbar'], function(taskbar) {
} }
return { return {
push: composer.push, newTopic: composer.newTopic,
newReply: composer.newReply,
editPost: composer.editPost,
load: composer.load, load: composer.load,
minimize: composer.minimize minimize: composer.minimize
}; };

@ -123,6 +123,11 @@
} }
templates.preload_template = function(tpl_name, callback) { templates.preload_template = function(tpl_name, callback) {
if(templates[tpl_name]) {
return callback();
}
// TODO: This should be "load_template", and the current load_template // TODO: This should be "load_template", and the current load_template
// should be named something else // should be named something else
// TODO: The "Date.now()" in the line below is only there for development purposes. // TODO: The "Date.now()" in the line below is only there for development purposes.
@ -355,7 +360,7 @@
template = template.replace(regex, ''); template = template.replace(regex, '');
namespace = ''; namespace = '';
} }
// clean up all undefined conditionals // clean up all undefined conditionals
template = template.replace(/<!-- IF([^@]*?)ENDIF([^@]*?)-->/gi, ''); template = template.replace(/<!-- IF([^@]*?)ENDIF([^@]*?)-->/gi, '');

@ -36,6 +36,7 @@ var path = require('path'),
config.minimumPasswordLength = meta.config.minimumPasswordLength; config.minimumPasswordLength = meta.config.minimumPasswordLength;
config.maximumSignatureLength = meta.config.maximumSignatureLength; config.maximumSignatureLength = meta.config.maximumSignatureLength;
config.useOutgoingLinksPage = meta.config.useOutgoingLinksPage; config.useOutgoingLinksPage = meta.config.useOutgoingLinksPage;
config.allowGuestPosting = meta.config.allowGuestPosting;
config.emailSetup = !!meta.config['email:from']; config.emailSetup = !!meta.config['email:from'];
res.json(200, config); res.json(200, config);

@ -803,32 +803,9 @@ websockets.init = function(io) {
}); });
socket.on('api:composer.push', function(data, callback) { socket.on('api:composer.push', function(data, callback) {
if (parseInt(uid, 10) > 0 || parseInt(meta.config.allowGuestPosting, 10) === 1) {
if (parseInt(data.tid) > 0) {
topics.getTopicData(data.tid, function(err, topicData) {
if (data.body) {
topicData.body = data.body;
}
callback({ if (parseInt(uid, 10) > 0 || parseInt(meta.config.allowGuestPosting, 10) === 1) {
tid: data.tid, if (parseInt(data.pid) > 0) {
title: topicData.title,
body: topicData.body
});
});
} else if (parseInt(data.cid) > 0) {
user.getUserFields(uid, ['username', 'picture'], function(err, userData) {
if (!err && userData) {
callback({
tid: 0,
cid: data.cid,
username: userData.username,
picture: userData.picture,
title: undefined
});
}
});
} else if (parseInt(data.pid) > 0) {
async.parallel([ async.parallel([
function(next) { function(next) {

Loading…
Cancel
Save