2013-07-11 23:02:18 +04:00
|
|
|
// # Article Editor
|
|
|
|
|
2013-06-27 07:52:56 +04:00
|
|
|
/*global window, document, $, _, Backbone, Ghost, Showdown, CodeMirror, shortcut, Countable, JST */
|
2013-07-11 23:02:18 +04:00
|
|
|
(function () {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var PublishBar,
|
|
|
|
TagWidget,
|
|
|
|
ActionsWidget,
|
|
|
|
MarkdownShortcuts = [
|
|
|
|
{'key': 'Ctrl+B', 'style': 'bold'},
|
|
|
|
{'key': 'Meta+B', 'style': 'bold'},
|
|
|
|
{'key': 'Ctrl+I', 'style': 'italic'},
|
|
|
|
{'key': 'Meta+I', 'style': 'italic'},
|
|
|
|
{'key': 'Ctrl+Alt+U', 'style': 'strike'},
|
|
|
|
{'key': 'Ctrl+Shift+K', 'style': 'code'},
|
2013-08-19 18:10:53 +04:00
|
|
|
{'key': 'Meta+K', 'style': 'code'},
|
2013-07-11 23:02:18 +04:00
|
|
|
{'key': 'Ctrl+Alt+1', 'style': 'h1'},
|
|
|
|
{'key': 'Ctrl+Alt+2', 'style': 'h2'},
|
|
|
|
{'key': 'Ctrl+Alt+3', 'style': 'h3'},
|
|
|
|
{'key': 'Ctrl+Alt+4', 'style': 'h4'},
|
|
|
|
{'key': 'Ctrl+Alt+5', 'style': 'h5'},
|
|
|
|
{'key': 'Ctrl+Alt+6', 'style': 'h6'},
|
|
|
|
{'key': 'Ctrl+Shift+L', 'style': 'link'},
|
|
|
|
{'key': 'Ctrl+Shift+I', 'style': 'image'},
|
|
|
|
{'key': 'Ctrl+Q', 'style': 'blockquote'},
|
2013-08-13 14:53:49 +04:00
|
|
|
{'key': 'Ctrl+Shift+1', 'style': 'currentDate'},
|
2013-07-18 17:02:54 +04:00
|
|
|
{'key': 'Ctrl+U', 'style': 'uppercase'},
|
|
|
|
{'key': 'Ctrl+Shift+U', 'style': 'lowercase'},
|
|
|
|
{'key': 'Ctrl+Alt+Shift+U', 'style': 'titlecase'},
|
|
|
|
{'key': 'Ctrl+Alt+W', 'style': 'selectword'},
|
2013-07-22 16:50:50 +04:00
|
|
|
{'key': 'Ctrl+L', 'style': 'list'},
|
|
|
|
{'key': 'Ctrl+Alt+C', 'style': 'copyHTML'},
|
2013-08-13 14:53:49 +04:00
|
|
|
{'key': 'Meta+Alt+C', 'style': 'copyHTML'}
|
2013-07-11 23:02:18 +04:00
|
|
|
];
|
|
|
|
|
|
|
|
// The publish bar associated with a post, which has the TagWidget and
|
|
|
|
// Save button and options and such.
|
|
|
|
// ----------------------------------------
|
|
|
|
PublishBar = Ghost.View.extend({
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
this.addSubview(new TagWidget({el: this.$('#entry-categories'), model: this.model})).render();
|
|
|
|
this.addSubview(new ActionsWidget({el: this.$('#entry-actions'), model: this.model})).render();
|
2013-08-02 02:33:06 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function () { return this; }
|
2013-07-11 23:02:18 +04:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// The Tag UI area associated with a post
|
|
|
|
// ----------------------------------------
|
|
|
|
TagWidget = Ghost.View.extend({
|
2013-08-02 02:33:06 +04:00
|
|
|
render: function () { return this; }
|
2013-07-11 23:02:18 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
// The Publish, Queue, Publish Now buttons
|
|
|
|
// ----------------------------------------
|
|
|
|
ActionsWidget = Ghost.View.extend({
|
|
|
|
|
|
|
|
events: {
|
|
|
|
'click [data-set-status]': 'handleStatus',
|
|
|
|
'click .js-post-button': 'updatePost'
|
|
|
|
},
|
|
|
|
|
|
|
|
statusMap: {
|
2013-08-22 06:31:59 +04:00
|
|
|
'draft': 'Save Draft',
|
|
|
|
'published': 'Publish Now',
|
|
|
|
'scheduled': 'Save Schedued Post',
|
|
|
|
'queue': 'Add to Queue',
|
|
|
|
'publish-on': 'Publish on...'
|
2013-07-11 23:02:18 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
var self = this;
|
|
|
|
// Toggle publish
|
|
|
|
shortcut.add("Ctrl+Alt+P", function () {
|
|
|
|
self.toggleStatus();
|
|
|
|
});
|
|
|
|
shortcut.add("Ctrl+S", function () {
|
|
|
|
self.updatePost();
|
|
|
|
});
|
|
|
|
shortcut.add("Meta+S", function () {
|
|
|
|
self.updatePost();
|
|
|
|
});
|
|
|
|
this.listenTo(this.model, 'change:status', this.render);
|
|
|
|
this.model.on('change:id', function (m) {
|
|
|
|
Backbone.history.navigate('/editor/' + m.id);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleStatus: function () {
|
2013-08-20 22:52:44 +04:00
|
|
|
var self = this,
|
2013-08-18 22:45:53 +04:00
|
|
|
keys = Object.keys(this.statusMap),
|
2013-07-11 23:02:18 +04:00
|
|
|
model = this.model,
|
2013-08-18 22:45:53 +04:00
|
|
|
prevStatus = this.model.get('status'),
|
|
|
|
currentIndex = keys.indexOf(prevStatus),
|
2013-07-11 23:02:18 +04:00
|
|
|
newIndex;
|
|
|
|
|
|
|
|
|
|
|
|
if (keys[currentIndex + 1] === 'scheduled') { // TODO: Remove once scheduled posts work
|
|
|
|
newIndex = currentIndex + 2 > keys.length - 1 ? 0 : currentIndex + 1;
|
|
|
|
} else {
|
|
|
|
newIndex = currentIndex + 1 > keys.length - 1 ? 0 : currentIndex + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.savePost({
|
|
|
|
status: keys[newIndex]
|
|
|
|
}).then(function () {
|
2013-08-06 11:55:47 +04:00
|
|
|
Ghost.notifications.addItem({
|
|
|
|
type: 'success',
|
|
|
|
message: 'Your post: ' + model.get('title') + ' has been ' + keys[newIndex],
|
|
|
|
status: 'passive'
|
|
|
|
});
|
2013-08-20 22:52:44 +04:00
|
|
|
}, function (xhr) {
|
2013-08-18 22:45:53 +04:00
|
|
|
var status = keys[newIndex];
|
|
|
|
// Show a notification about the error
|
2013-08-20 22:52:44 +04:00
|
|
|
self.reportSaveError(xhr, model, status);
|
2013-08-18 22:45:53 +04:00
|
|
|
// Set the button text back to previous
|
|
|
|
model.set({ status: prevStatus });
|
2013-07-11 23:02:18 +04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-08-22 06:31:59 +04:00
|
|
|
setActiveStatus: function setActiveStatus(status, displayText) {
|
|
|
|
// Set the publish button's action
|
|
|
|
$('.js-post-button')
|
|
|
|
.attr('data-status', status)
|
|
|
|
.text(displayText);
|
|
|
|
|
|
|
|
// Set the active action in the popup
|
|
|
|
$('.splitbutton-save .editor-options li')
|
|
|
|
.removeClass('active')
|
|
|
|
.filter(['li[data-set-status="', status, '"]'].join(''))
|
|
|
|
.addClass('active');
|
|
|
|
},
|
|
|
|
|
2013-07-11 23:02:18 +04:00
|
|
|
handleStatus: function (e) {
|
2013-08-22 06:31:59 +04:00
|
|
|
if (e) { e.preventDefault(); }
|
2013-08-20 22:52:44 +04:00
|
|
|
var status = $(e.currentTarget).attr('data-set-status');
|
2013-08-22 06:31:59 +04:00
|
|
|
|
2013-08-20 22:52:44 +04:00
|
|
|
this.setActiveStatus(status, this.statusMap[status]);
|
2013-08-22 06:31:59 +04:00
|
|
|
|
|
|
|
// Dismiss the popup menu
|
|
|
|
$('body').find('.overlay:visible').fadeOut();
|
|
|
|
},
|
|
|
|
|
|
|
|
updatePost: function (e) {
|
|
|
|
if (e) { e.preventDefault(); }
|
2013-08-20 22:52:44 +04:00
|
|
|
var self = this,
|
|
|
|
model = this.model,
|
2013-08-22 06:31:59 +04:00
|
|
|
$currentTarget = $(e.currentTarget),
|
|
|
|
status = $currentTarget.attr('data-status'),
|
|
|
|
prevStatus = model.get('status');
|
2013-07-11 23:02:18 +04:00
|
|
|
|
|
|
|
if (status === 'publish-on') {
|
2013-08-22 06:31:59 +04:00
|
|
|
return Ghost.notifications.addItem({
|
2013-08-06 11:55:47 +04:00
|
|
|
type: 'alert',
|
|
|
|
message: 'Scheduled publishing not supported yet.',
|
|
|
|
status: 'passive'
|
|
|
|
});
|
2013-07-11 23:02:18 +04:00
|
|
|
}
|
|
|
|
if (status === 'queue') {
|
2013-08-22 06:31:59 +04:00
|
|
|
return Ghost.notifications.addItem({
|
2013-08-06 11:55:47 +04:00
|
|
|
type: 'alert',
|
|
|
|
message: 'Scheduled publishing not supported yet.',
|
|
|
|
status: 'passive'
|
|
|
|
});
|
2013-07-11 23:02:18 +04:00
|
|
|
}
|
|
|
|
|
2013-08-20 22:52:44 +04:00
|
|
|
this.savePost({
|
2013-07-11 23:02:18 +04:00
|
|
|
status: status
|
|
|
|
}).then(function () {
|
2013-08-06 11:55:47 +04:00
|
|
|
Ghost.notifications.addItem({
|
|
|
|
type: 'success',
|
2013-08-22 06:31:59 +04:00
|
|
|
message: ['Your post "', model.get('title'), '" has been ', status, '.'].join(''),
|
2013-08-06 11:55:47 +04:00
|
|
|
status: 'passive'
|
|
|
|
});
|
2013-08-20 22:52:44 +04:00
|
|
|
}, function (xhr) {
|
|
|
|
// Show a notification about the error
|
|
|
|
self.reportSaveError(xhr, model, status);
|
|
|
|
// Set the button text back to previous
|
2013-08-22 06:31:59 +04:00
|
|
|
model.set({ status: prevStatus });
|
2013-07-11 23:02:18 +04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
savePost: function (data) {
|
|
|
|
// TODO: The content_raw getter here isn't great, shouldn't rely on currentView.
|
|
|
|
_.each(this.model.blacklist, function (item) {
|
|
|
|
this.model.unset(item);
|
|
|
|
}, this);
|
|
|
|
|
|
|
|
var saved = this.model.save(_.extend({
|
|
|
|
title: $('#entry-title').val(),
|
|
|
|
content_raw: Ghost.currentView.editor.getValue()
|
|
|
|
}, data));
|
|
|
|
|
|
|
|
// TODO: Take this out if #2489 gets merged in Backbone. Or patch Backbone
|
|
|
|
// ourselves for more consistent promises.
|
|
|
|
if (saved) {
|
|
|
|
return saved;
|
|
|
|
}
|
|
|
|
return $.Deferred().reject();
|
|
|
|
},
|
|
|
|
|
2013-08-18 22:45:53 +04:00
|
|
|
reportSaveError: function (response, model, status) {
|
|
|
|
var title = model.get('title') || '[Untitled]',
|
|
|
|
message = 'Your post: ' + title + ' has not been ' + status;
|
|
|
|
|
|
|
|
if (response) {
|
|
|
|
// Get message from response
|
2013-08-20 22:52:44 +04:00
|
|
|
message = Ghost.Views.Utils.getRequestErrorMessage(response);
|
2013-08-18 22:45:53 +04:00
|
|
|
} else if (model.validationError) {
|
|
|
|
// Grab a validation error
|
|
|
|
message += "; " + model.validationError;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ghost.notifications.addItem({
|
|
|
|
type: 'error',
|
|
|
|
message: message,
|
|
|
|
status: 'passive'
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-07-11 23:02:18 +04:00
|
|
|
render: function () {
|
2013-08-20 22:52:44 +04:00
|
|
|
this.$('.js-post-button').text(this.statusMap[this.model.get('status')]);
|
2013-07-11 23:02:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// The entire /editor page's route (TODO: move all views to client side templates)
|
|
|
|
// ----------------------------------------
|
|
|
|
Ghost.Views.Editor = Ghost.View.extend({
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
|
|
|
|
// Add the container view for the Publish Bar
|
|
|
|
this.addSubview(new PublishBar({el: "#publish-bar", model: this.model})).render();
|
|
|
|
|
|
|
|
this.$('#entry-markdown').html(this.model.get('content_raw'));
|
|
|
|
|
|
|
|
this.initMarkdown();
|
|
|
|
this.renderPreview();
|
|
|
|
|
2013-08-01 18:28:13 +04:00
|
|
|
$('.entry-content header, .entry-preview header').on('click', function () {
|
|
|
|
$('.entry-content, .entry-preview').removeClass('active');
|
|
|
|
$(this).closest('section').addClass('active');
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.entry-title .icon-fullscreen').on('click', function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
$('body').toggleClass('fullscreen');
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.options.up').on('click', function (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
$(this).next("ul").fadeToggle(200);
|
|
|
|
});
|
|
|
|
|
2013-07-11 23:02:18 +04:00
|
|
|
this.$('.CodeMirror-scroll').on('scroll', this.syncScroll);
|
|
|
|
|
|
|
|
// Shadow on Markdown if scrolled
|
|
|
|
this.$('.CodeMirror-scroll').on('scroll', function (e) {
|
|
|
|
if ($('.CodeMirror-scroll').scrollTop() > 10) {
|
|
|
|
$('.entry-markdown').addClass('scrolling');
|
|
|
|
} else {
|
|
|
|
$('.entry-markdown').removeClass('scrolling');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Shadow on Preview if scrolled
|
|
|
|
this.$('.entry-preview-content').on('scroll', function (e) {
|
|
|
|
if ($('.entry-preview-content').scrollTop() > 10) {
|
|
|
|
$('.entry-preview').addClass('scrolling');
|
|
|
|
} else {
|
|
|
|
$('.entry-preview').removeClass('scrolling');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Zen writing mode shortcut
|
|
|
|
shortcut.add("Alt+Shift+Z", function () {
|
|
|
|
$('body').toggleClass('zen');
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.entry-markdown header, .entry-preview header').click(function (e) {
|
|
|
|
$('.entry-markdown, .entry-preview').removeClass('active');
|
|
|
|
$(e.target).closest('section').addClass('active');
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-07-24 14:29:20 +04:00
|
|
|
events: {
|
|
|
|
'click .markdown-help': 'showHelp'
|
|
|
|
},
|
|
|
|
|
2013-07-18 15:06:52 +04:00
|
|
|
syncScroll: _.debounce(function (e) {
|
2013-07-11 23:02:18 +04:00
|
|
|
var $codeViewport = $(e.target),
|
|
|
|
$previewViewport = $('.entry-preview-content'),
|
|
|
|
$codeContent = $('.CodeMirror-sizer'),
|
|
|
|
$previewContent = $('.rendered-markdown'),
|
|
|
|
|
|
|
|
// calc position
|
|
|
|
codeHeight = $codeContent.height() - $codeViewport.height(),
|
|
|
|
previewHeight = $previewContent.height() - $previewViewport.height(),
|
|
|
|
ratio = previewHeight / codeHeight,
|
|
|
|
previewPostition = $codeViewport.scrollTop() * ratio;
|
|
|
|
|
|
|
|
// apply new scroll
|
|
|
|
$previewViewport.scrollTop(previewPostition);
|
2013-07-18 15:06:52 +04:00
|
|
|
}, 50),
|
2013-07-11 23:02:18 +04:00
|
|
|
|
2013-07-24 14:29:20 +04:00
|
|
|
showHelp: function () {
|
|
|
|
this.addSubview(new Ghost.Views.Modal({
|
|
|
|
model: {
|
2013-07-26 18:32:44 +04:00
|
|
|
options: {
|
|
|
|
close: true,
|
|
|
|
type: "info",
|
|
|
|
style: "wide",
|
|
|
|
animation: 'fadeIn'
|
2013-07-24 14:29:20 +04:00
|
|
|
},
|
2013-07-26 18:32:44 +04:00
|
|
|
content: {
|
|
|
|
template: 'markdown',
|
|
|
|
title: 'Markdown Help'
|
|
|
|
}
|
2013-07-24 14:29:20 +04:00
|
|
|
}
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
2013-07-11 23:02:18 +04:00
|
|
|
// This updates the editor preview panel.
|
|
|
|
// Currently gets called on every key press.
|
|
|
|
// Also trigger word count update
|
|
|
|
renderPreview: function () {
|
2013-08-20 22:52:44 +04:00
|
|
|
var self = this,
|
2013-07-11 23:02:18 +04:00
|
|
|
preview = document.getElementsByClassName('rendered-markdown')[0];
|
|
|
|
preview.innerHTML = this.converter.makeHtml(this.editor.getValue());
|
2013-08-20 22:52:44 +04:00
|
|
|
this.$('.js-drop-zone').upload({editor: true});
|
2013-07-11 23:02:18 +04:00
|
|
|
Countable.once(preview, function (counter) {
|
2013-08-20 22:52:44 +04:00
|
|
|
self.$('.entry-word-count').text($.pluralize(counter.words, 'word'));
|
|
|
|
self.$('.entry-character-count').text($.pluralize(counter.characters, 'character'));
|
|
|
|
self.$('.entry-paragraph-count').text($.pluralize(counter.paragraphs, 'paragraph'));
|
2013-07-11 23:02:18 +04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// Markdown converter & markdown shortcut initialization.
|
|
|
|
initMarkdown: function () {
|
2013-08-20 22:52:44 +04:00
|
|
|
var self = this;
|
|
|
|
|
2013-07-11 23:02:18 +04:00
|
|
|
this.converter = new Showdown.converter({extensions: ['ghostdown']});
|
|
|
|
this.editor = CodeMirror.fromTextArea(document.getElementById('entry-markdown'), {
|
|
|
|
mode: 'markdown',
|
|
|
|
tabMode: 'indent',
|
|
|
|
tabindex: "2",
|
2013-08-19 23:23:44 +04:00
|
|
|
lineWrapping: true,
|
|
|
|
dragDrop: false
|
2013-07-11 23:02:18 +04:00
|
|
|
});
|
|
|
|
|
2013-07-25 19:00:41 +04:00
|
|
|
// Inject modal for HTML to be viewed in
|
|
|
|
shortcut.add("Ctrl+Alt+C", function () {
|
2013-08-20 22:52:44 +04:00
|
|
|
self.showHTML();
|
2013-07-25 19:00:41 +04:00
|
|
|
});
|
|
|
|
shortcut.add("Ctrl+Alt+C", function () {
|
2013-08-20 22:52:44 +04:00
|
|
|
self.showHTML();
|
2013-07-25 19:00:41 +04:00
|
|
|
});
|
|
|
|
|
2013-07-11 23:02:18 +04:00
|
|
|
_.each(MarkdownShortcuts, function (combo) {
|
|
|
|
shortcut.add(combo.key, function () {
|
2013-08-20 22:52:44 +04:00
|
|
|
return self.editor.addMarkdown({style: combo.style});
|
2013-07-11 23:02:18 +04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
this.editor.on('change', function () {
|
2013-08-20 22:52:44 +04:00
|
|
|
self.renderPreview();
|
2013-07-11 23:02:18 +04:00
|
|
|
});
|
2013-07-25 19:00:41 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
showHTML: function () {
|
|
|
|
this.addSubview(new Ghost.Views.Modal({
|
|
|
|
model: {
|
2013-07-26 18:32:44 +04:00
|
|
|
options: {
|
|
|
|
close: true,
|
|
|
|
type: "info",
|
|
|
|
style: "wide",
|
|
|
|
animation: 'fadeIn'
|
2013-07-25 19:00:41 +04:00
|
|
|
},
|
2013-07-26 18:32:44 +04:00
|
|
|
content: {
|
|
|
|
template: 'copyToHTML',
|
|
|
|
title: 'Copied HTML'
|
|
|
|
}
|
2013-07-25 19:00:41 +04:00
|
|
|
}
|
|
|
|
}));
|
2013-08-02 02:33:06 +04:00
|
|
|
},
|
2013-06-27 07:52:56 +04:00
|
|
|
|
2013-08-02 02:33:06 +04:00
|
|
|
render: function () { return this; }
|
|
|
|
});
|
2013-06-27 07:52:56 +04:00
|
|
|
|
|
|
|
}());
|