Ghost/ghost/admin/lib/koenig-editor/addon/components/koenig-card.js
Kevin Ansfield 4636b4be0d Koenig - Initial Spirit styles integration
no issue
- copy Spirit styles over (eventually these will live in an addon)
- update `ember-cli-build` to output a separate CSS file for Spirit
- update `asset-delivery` addon to output Spirit CSS link
- add `{{kg-style}}` helper for Spirit class names
- update `{{koenig-card}}` and the `{{koenig-card-markdown/html}}` components to use Spirit class names and markup
- replace markdown icon with new version from Spirit
2018-02-20 15:05:19 +00:00

182 lines
5.2 KiB
JavaScript

import Component from '@ember/component';
import layout from '../templates/components/koenig-card';
import {computed} from '@ember/object';
import {htmlSafe} from '@ember/string';
import {run} from '@ember/runloop';
const TICK_HEIGHT = 8;
export default Component.extend({
layout,
attributeBindings: ['style'],
classNameBindings: ['isSelected:kg-card-selected'],
// attrs
icon: null,
iconClass: 'ih2 absolute fill-lightgrey mt2 nl10 kg-icon',
toolbar: null,
isSelected: false,
isEditing: false,
// properties
showToolbar: false,
toolbarWidth: 0,
toolbarHeight: 0,
// closure actions
selectCard() {},
editCard() {},
// hooks - when attached these will be fired on the individual card components
onSelect() {},
onDeselect() {},
onEnterEdit() {},
onLeaveEdit() {},
// TODO: replace with Spirit classes
style: computed(function () {
let baseStyles = 'min-height: calc(.4rem * 10); cursor: default; caret-color: auto;';
return htmlSafe(baseStyles);
}),
toolbarStyle: computed('toolbarWidth', 'toolbarHeight', function () {
let width = this.get('toolbarWidth');
let height = this.get('toolbarHeight');
return htmlSafe(`top: -${height}px; left: calc(50% - ${width / 2}px)`);
}),
didReceiveAttrs() {
this._super(...arguments);
let isSelected = this.get('isSelected');
let isEditing = this.get('isEditing');
if (isSelected !== this._lastIsSelected) {
if (isSelected) {
this._fireWhenRendered(this._onSelect);
} else {
this._fireWhenRendered(this._onDeselect);
}
}
if (isEditing !== this._lastIsEditing) {
if (isEditing) {
this._onEnterEdit();
} else {
this._onLeaveEdit();
}
}
this._lastIsSelected = isSelected;
this._lastIsEditing = isEditing;
},
willDestroyElement() {
this._super(...arguments);
window.removeEventListener('keydown', this._onKeydownHandler);
this._removeMousemoveHandler();
},
mouseDown(event) {
let isSelected = this.get('isSelected');
let isEditing = this.get('isEditing');
// if we perform an action we want to prevent the mousedown from
// triggering a cursor position change which can result in multiple
// card select calls getting the component into an odd state. We also
// manually show the toolbar so that we're not relying on mousemove
if (!isSelected && !isEditing) {
this.selectCard();
this.set('showToolbar', true);
event.preventDefault();
} else if (isSelected && !isEditing) {
this.editCard();
this.set('showToolbar', true);
event.preventDefault();
}
},
doubleClick() {
if (!this.get('isEditing')) {
this.editCard();
this.set('showToolbar', true);
}
},
_onSelect() {
this._fireWhenRendered(this._showToolbar);
this._showToolbar();
this.onSelect();
},
_onDeselect() {
this._hideToolbar();
this.onDeselect();
},
_onEnterEdit() {
this._onKeydownHandler = run.bind(this, this._handleKeydown);
window.addEventListener('keydown', this._onKeydownHandler);
this.onEnterEdit();
},
_onLeaveEdit() {
window.removeEventListener('keydown', this._onKeydownHandler);
this.onLeaveEdit();
},
_showToolbar() {
// only show a toolbar if we have one
if (this.get('toolbar')) {
let toolbar = this.element.querySelector('.koenig-card-toolbar');
let {width, height} = toolbar.getBoundingClientRect();
this.setProperties({
toolbarWidth: width,
toolbarHeight: height + TICK_HEIGHT
});
if (!this.get('showToolbar') && !this._onMousemoveHandler) {
this._onMousemoveHandler = run.bind(this, this._handleMousemove);
window.addEventListener('mousemove', this._onMousemoveHandler);
}
}
},
_hideToolbar() {
this.set('showToolbar', false);
this._removeMousemoveHandler();
},
_handleKeydown(event) {
if (event.code === 'Escape' && this.get('isEditing')) {
// run the select card routine with isEditing=false to exit edit mode
this.selectCard(false);
event.preventDefault();
}
},
_handleMousemove() {
if (!this.get('showToolbar')) {
this.set('showToolbar', true);
this._removeMousemoveHandler();
}
},
_removeMousemoveHandler() {
window.removeEventListener('mousemove', this._onMousemoveHandler);
this._onMousemoveHandler = null;
},
// convenience method for when we only want to run a method when our
// elements have been rendered
_fireWhenRendered(method) {
if (this.element) {
run.bind(this, method)();
} else {
run.scheduleOnce('afterRender', this, method);
}
}
});