2018-09-18 10:19:47 +01:00
|
|
|
/**
|
|
|
|
* This model is used by gallery/photo.blade.php, to handle comments and individual photo actions.
|
|
|
|
* @constructor
|
|
|
|
*/
|
2018-09-18 14:28:59 +01:00
|
|
|
function PhotoViewModel(urls) {
|
2018-09-18 10:19:47 +01:00
|
|
|
this.el = '#photo-app';
|
|
|
|
|
|
|
|
this.data = {
|
|
|
|
is_reply_form_loading: false,
|
|
|
|
reply_comment_id: 0
|
|
|
|
};
|
|
|
|
|
2018-09-18 14:28:59 +01:00
|
|
|
this.computed = {
|
|
|
|
replyFormStyle: function()
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
'display': this.is_reply_form_loading ? 'none' : 'block'
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-09-18 10:19:47 +01:00
|
|
|
this.methods = {
|
2018-09-18 14:28:59 +01:00
|
|
|
init: function() {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
// Load the right comment reply form
|
|
|
|
$('#comment-reply-modal').on('show.bs.modal', function (event) {
|
|
|
|
var url = urls.reply_comment_form.replace(/-1$/, self.reply_comment_id);
|
|
|
|
$.get(url, function(result)
|
|
|
|
{
|
|
|
|
$('#comment-reply-form-content').html(result);
|
2018-09-18 22:35:22 +01:00
|
|
|
initTinyMce('#comment-text-reply');
|
2018-09-18 14:28:59 +01:00
|
|
|
self.is_reply_form_loading = false;
|
|
|
|
});
|
|
|
|
});
|
2018-09-19 09:44:20 +01:00
|
|
|
|
|
|
|
$('#comment-reply-modal').on('hide.bs.modal', function (event) {
|
|
|
|
tinymce.remove('#comment-text-reply');
|
|
|
|
});
|
2018-09-18 14:28:59 +01:00
|
|
|
},
|
|
|
|
postCommentReply: function() {
|
|
|
|
var form = $('form', '#comment-reply-form-content');
|
|
|
|
var formUrl = $(form).attr('action');
|
|
|
|
|
2018-09-19 09:44:20 +01:00
|
|
|
// Seems like the TinyMCE editor in the BS modal does not persist back to the textarea correctly - so do
|
|
|
|
// this manually (bit of a hack!)
|
|
|
|
$('#comment-text-reply', form).html(tinymce.get('comment-text-reply').getContent());
|
|
|
|
|
2018-09-18 14:28:59 +01:00
|
|
|
var formData = form.serialize();
|
2018-09-19 09:44:20 +01:00
|
|
|
|
2018-09-18 14:28:59 +01:00
|
|
|
$.post(formUrl, formData, function(result)
|
|
|
|
{
|
2018-09-18 15:50:12 +01:00
|
|
|
if (result.redirect_url)
|
|
|
|
{
|
|
|
|
window.location = result.redirect_url;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-09-19 09:44:20 +01:00
|
|
|
tinymce.remove('#comment-text-reply');
|
2018-09-18 15:50:12 +01:00
|
|
|
$('#comment-reply-form-content').html(result);
|
2018-09-19 09:44:20 +01:00
|
|
|
initTinyMce('#comment-text-reply');
|
2018-09-18 15:50:12 +01:00
|
|
|
}
|
2018-09-18 14:28:59 +01:00
|
|
|
});
|
|
|
|
},
|
2018-09-18 10:19:47 +01:00
|
|
|
replyToComment: function(e) {
|
|
|
|
var replyButton = $(e.target).closest('.photo-comment');
|
|
|
|
this.reply_comment_id = replyButton.data('comment-id');
|
|
|
|
|
|
|
|
this.is_reply_form_loading = true;
|
|
|
|
$('#comment-reply-modal').modal('show');
|
2018-09-19 09:44:20 +01:00
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
return false;
|
2018-09-18 10:19:47 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|