mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-03 00:15:11 +03:00
e422f0bcba
Integrated Ghost-Editor as an in-repo addon. Moved CSS to /app/styles/addons/ghost-editor/ Still a WIP.
136 lines
4.5 KiB
JavaScript
136 lines
4.5 KiB
JavaScript
import Ember from 'ember';
|
|
import layout from '../templates/components/ghost-toolbar';
|
|
|
|
import Tools from '../options/default-tools';
|
|
|
|
export default Ember.Component.extend({
|
|
layout,
|
|
classNames: ['toolbar'],
|
|
classNameBindings: ['isVisible'],
|
|
isVisible: false,
|
|
tools: [],
|
|
isLink: Ember.computed({
|
|
get() {
|
|
return this._isLink;
|
|
},
|
|
set(_, value) {
|
|
this._isLink = value;
|
|
return this._isLink;
|
|
}
|
|
}),
|
|
toolbar: Ember.computed(function () {
|
|
// TODO if a block section other than a primary section is selected then
|
|
// the returned list removes one of the primary sections to compensate,
|
|
// so that there are only ever four primary sections.
|
|
let visibleTools = [ ];
|
|
|
|
this.tools.forEach(tool => {
|
|
if (tool.type === 'markup') {
|
|
visibleTools.push(tool);
|
|
}
|
|
});
|
|
|
|
return visibleTools;
|
|
}).property('tools.@each.selected'),
|
|
init() {
|
|
this._super(...arguments);
|
|
this.tools =new Tools(this.get('editor'), this);
|
|
this.iconURL = this.get('assetPath') + '/tools/';
|
|
},
|
|
didRender() {
|
|
let $this = this.$();
|
|
let editor = this.editor;
|
|
let $editor = Ember.$('.gh-editor-container'); // TODO - this element is part of ghost-admin, we need to separate them more.
|
|
let isMousedown = false;
|
|
if(!editor.range || editor.range.head.isBlank) {
|
|
this.set('isVisible', false);
|
|
}
|
|
$editor.mousedown(() => isMousedown = true);
|
|
$editor.mouseup(() => { isMousedown = false; updateToolbarToRange(this, $this, $editor, isMousedown);});
|
|
editor.cursorDidChange(() => updateToolbarToRange(this, $this, $editor, isMousedown));
|
|
},
|
|
willDestroyElement() {
|
|
this.editor.destroy();
|
|
},
|
|
actions: {
|
|
linkKeyDown(event) {
|
|
// if escape close link
|
|
if (event.keyCode === 27) {
|
|
this.set('isLink', false);
|
|
}
|
|
},
|
|
linkKeyPress(event) {
|
|
// if enter run link
|
|
if (event.keyCode === 13) {
|
|
this.set('isLink', false);
|
|
|
|
this.editor.run(postEditor => {
|
|
let markup = postEditor.builder.createMarkup('a', {href: event.target.value});
|
|
postEditor.addMarkupToRange(this.get('linkRange'), markup);
|
|
});
|
|
|
|
this.set('linkRange', null);
|
|
event.stopPropagation();
|
|
}
|
|
}
|
|
},
|
|
doLink(range) {
|
|
|
|
this.set('isLink', true);
|
|
this.set('linkRange', range);
|
|
}
|
|
});
|
|
|
|
|
|
// update the location of the toolbar and display it if the range is visible.
|
|
function updateToolbarToRange(self, $holder, $editor, isMouseDown) {
|
|
// if there is no cursor:
|
|
let editor = self.editor;
|
|
if(!editor.range || editor.range.head.isBlank || isMouseDown) {
|
|
if(!self.get('isLink')) {
|
|
self.set('isVisible', false);
|
|
}
|
|
return;
|
|
}
|
|
self.propertyWillChange('toolbar');
|
|
|
|
if(!editor.range.isCollapsed) {
|
|
// if we have a selection, then the toolbar appears just below said selection:
|
|
|
|
let range = window.getSelection().getRangeAt(0); // get the actual range within the DOM.
|
|
let position = range.getBoundingClientRect();
|
|
let edOffset = $editor.offset();
|
|
|
|
self.set('isVisible', true);
|
|
Ember.run.schedule('afterRender', this,
|
|
() => {
|
|
$holder.css('top', position.top + $editor.scrollTop() - $holder.height()-20); //- edOffset.top+10
|
|
$holder.css('left', position.left + (position.width / 2) + $editor.scrollLeft() - edOffset.left - ($holder.width()/2));
|
|
}
|
|
);
|
|
|
|
self.set('isLink', false);
|
|
|
|
self.tools.forEach(tool => {
|
|
if (tool.hasOwnProperty('checkElements')) {
|
|
// if its a list we want to know what type
|
|
let sectionTagName = editor.activeSection._tagName === 'li' ? editor.activeSection.parent._tagName : editor.activeSection._tagName;
|
|
tool.checkElements(editor.activeMarkups.concat([{tagName: sectionTagName}]));
|
|
}
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
if(self.isVisible) {
|
|
self.set('isVisible', false);
|
|
self.set('isLink', false);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
self.propertyDidChange('toolbar');
|
|
}
|
|
|