mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
Template.post_submit.helpers({
|
|
postFields: function () {
|
|
return Posts.simpleSchema().getEditableFields(Meteor.user());
|
|
}
|
|
});
|
|
|
|
AutoForm.hooks({
|
|
submitPostForm: {
|
|
|
|
before: {
|
|
method: function(doc) {
|
|
|
|
this.template.$('button[type=submit]').addClass('loading');
|
|
|
|
var post = doc;
|
|
|
|
// ------------------------------ Checks ------------------------------ //
|
|
|
|
if (!Meteor.user()) {
|
|
Messages.flash(i18n.t('you_must_be_logged_in'), 'error');
|
|
return false;
|
|
}
|
|
|
|
// ------------------------------ Callbacks ------------------------------ //
|
|
|
|
// run all post submit client callbacks on properties object successively
|
|
post = Telescope.callbacks.run("postSubmitClient", post);
|
|
|
|
return post;
|
|
}
|
|
},
|
|
|
|
onSuccess: function(operation, post) {
|
|
this.template.$('button[type=submit]').removeClass('loading');
|
|
Events.track("new post", {'postId': post._id});
|
|
Router.go('post_page', {_id: post._id});
|
|
if (post.status === Posts.config.STATUS_PENDING) {
|
|
Messages.flash(i18n.t('thanks_your_post_is_awaiting_approval'), 'success');
|
|
}
|
|
},
|
|
|
|
onError: function(operation, error) {
|
|
this.template.$('button[type=submit]').removeClass('loading');
|
|
Messages.flash(error.message.split('|')[0], 'error'); // workaround because error.details returns undefined
|
|
Messages.clearSeen();
|
|
// $(e.target).removeClass('disabled');
|
|
if (error.error == 603) {
|
|
var dupePostId = error.reason.split('|')[1];
|
|
Router.go('post_page', {_id: dupePostId});
|
|
}
|
|
}
|
|
|
|
}
|
|
});
|