Vulcan/client/templates/post_edit.js

47 lines
1.2 KiB
JavaScript
Raw Normal View History

// Template.post_edit.preserve(['#title', '#url', '#editor']);
Template.post_edit.helpers({
post: function(){
return Posts.findOne(Session.get('selected_post_id'));
}
});
Template.post_edit.rendered = function(){
var post= Posts.findOne(Session.get('selected_post_id'));
if(post && !this.editor){
this.editor= new EpicEditor(EpicEditorOptions).load();
this.editor.importFile('editor',post.body);
}
}
2012-09-13 11:05:49 +09:00
2012-09-06 11:09:24 +09:00
Template.post_edit.events = {
'click input[type=submit]': function(e, instance){
e.preventDefault();
2012-09-06 11:09:24 +09:00
if(!Meteor.user()) throw 'You must be logged in.';
2012-09-06 11:09:24 +09:00
var selected_post_id=Session.get("selected_post_id");
var title= $('#title').val();
var url = $('#url').val();
var body = instance.editor.exportFile();
2012-09-06 11:09:24 +09:00
2012-09-06 19:42:11 +09:00
Posts.update(selected_post_id,
{
$set: {
headline: title
, url: url
, body: body
}
}
2012-09-06 11:09:24 +09:00
);
Router.navigate("posts/"+selected_post_id, {trigger:true});
}
2012-09-07 10:57:57 +09:00
, 'click .delete-link': function(e){
e.preventDefault();
if(confirm("Are you sure?")){
var selected_post_id=Session.get("selected_post_id");
Posts.remove(selected_post_id);
Router.navigate("posts/deleted", {trigger:true});
}
}
};