Vulcan/client/views/posts/post_submit.js
2014-12-22 11:49:35 +09:00

46 lines
No EOL
1.3 KiB
JavaScript

AutoForm.hooks({
submitPostForm: {
before: {
submitPost: function(doc, template) {
var post = doc;
// ------------------------------ Checks ------------------------------ //
if (!Meteor.user()) {
flashMessage(i18n.t('you_must_be_logged_in'), 'error');
return false;
}
// ------------------------------ Callbacks ------------------------------ //
// run all post submit client callbacks on properties object successively
post = postSubmitClientCallbacks.reduce(function(result, currentFunction) {
return currentFunction(result);
}, post);
return post;
}
},
onSuccess: function(operation, post, template) {
trackEvent("new post", {'postId': post._id});
if (post.status === STATUS_PENDING) {
flashMessage(i18n.t('thanks_your_post_is_awaiting_approval'), 'success');
}
Router.go('post_page', {_id: post._id});
},
onError: function(operation, error, template) {
flashMessage(error.message.split('|')[0], 'error'); // workaround because error.details returns undefined
clearSeenMessages();
// $(e.target).removeClass('disabled');
if (error.error == 603) {
var dupePostId = error.reason.split('|')[1];
Router.go('/posts/'+dupePostId);
}
}
}
});