ember-mobiledoc-editor

0.8.1 • Public • Published

ember-mobiledoc-editor

npm version Build Status Ember Observer Score

A Mobiledoc editor written using Ember.js UI components and Mobiledoc Kit.

Additionally, ember-mobiledoc-editor supports the creation of Mobiledoc cards as Ember components. This is a significant improvement for developer ergonomics over using Mobiledoc cards directly.

Installation

ember install ember-mobiledoc-editor

ember-mobiledoc-editor will install the mobiledoc-kit package as a dependency and load its assets.

Usage

This addon is primarily composed of components used for building an editor UI.

{{mobiledoc-editor}}

This component is the main entrance point for a mobiledoc editor instance in your Ember app. Used in the most basic form it will render a dummy editor with no toolbar. For example this usage:

{{mobiledoc-editor}}

Will render a blank Mobiledoc into the following DOM:

<article class="mobiledoc-editor">
  <div class="mobiledoc-editor__editor-wrapper">
    <div class="mobiledoc-editor__editor"></div>
  </div>
</article>

The component accepts these arguments:

  • mobiledoc, a Mobiledoc to be edited
  • cards, an array of available cards for use by the editor. Jump to the section on Component-based cards for more detail on how to use cards with Ember components.
  • atoms, an array of available atoms for use by the editor. Jump to the section on Component-based atoms for more detail on how to use atoms with Ember components.
  • spellcheck boolean
  • autofocus boolean
  • showLinkTooltips boolean
  • placeholder string -- the placeholder text to display when the mobiledoc is blank
  • options hash -- any properties in the options hash will be passed to the MobiledocKitEditor constructor
  • serializeVersion string -- The mobiledoc version to serialize to when firing the on-change action. Default: 0.3.2
  • sectionAttributesConfig hash -- information about supported section attributes. defaults to { 'text-align': { values: ['left', 'center', 'right'], defaultValue: 'left' } }
  • on-change -- Accepts an action that the component will send every time the mobiledoc is updated
  • will-create-editor -- Accepts an action that will be sent when the instance of the MobiledocKitEditor is about to be created This action may be fired more than once if the component's mobiledoc property is set to a new value.
  • did-create-editor -- Accepts an action that will be sent after the instance of the MobiledocKitEditor is created. The action is passed the created editor instance. This action may be fired more than once if the component's mobiledoc property is set to a new value.

For example, the following index route and template would log before and after creating the MobiledocKitEditor, and every time the user modified the mobiledoc (by typing some text, e.g.).

// routes/index.js

export default Ember.Route.extend({
 ...,
 actions: {
   mobiledocWasUpdated(updatedMobiledoc) {
     console.log('New mobiledoc:',updatedMobiledoc);
     // note that this action will be fired for every changed character,
     // so you may want to debounce API calls if you are using it for
     // an "autosave" feature.
   },
   willCreateEditor() {
     console.log('about to create the editor');
   },
   didCreateEditor(editor) {
     console.log('created the editor:', editor);
   }
 }
});
{{! index.hbs }}

{{mobiledoc-editor
    on-change=(action 'mobiledocWasUpdated')
    will-create-editor=(action 'willCreateEditor')
    did-create-editor=(action 'didCreateEditor')
}}

Of course often you want to provide a user interface to bold text, create headlines, or otherwise reflect the state of the editor.

Called with a block, the editor param is yielded.

{{#mobiledoc-editor mobiledoc=someDoc as |editor|}}
{{/mobiledoc-editor}}

editor has the following properties, useful to inspect the current state of the editor:

  • editor, the Mobiledoc kit editor instance itself
  • activeSectionTagNames, an object with true values for section tag names in the current selection. For example activeSectionTagNames.isH1.
  • activeMarkupTagNames, an object with true values for markup tag names in the current selection. For example activeMarkupTagNames.isStrong

Additionally editor provides the following actions:

  • toggleMarkup, toggling the passed markup tag name in the current selection.
  • toggleSection, toggling the passed section tag name in the current selection. Pass a string tagName as an argument. Possible valid values: "h1", "h2", "p", "blockquote". To toggle to-from a list section pass "ul" or "ol".
  • toggleLink, toggling the linking of a selection. The user will be prompted for a URL if required.
  • addCard, passed a card name and payload will add that card at the end of the post.
  • addCardInEditMode, passed a card name and payload will add that card at the end of a post and render it in "edit" mode initially.
  • addAtom, passed an atomName, text, and payload, will add that atom at the cursor position.
  • setAttribute, passed an attribute name and attribute value, will add that attribute to the current section, or remove the attribute if the value is the default value.
  • removeAttribute, passed an attribute name, will remove that attribute from the current section.

The editor object is often used indirectly by passing it to other components. For example:

{{#mobiledoc-editor as |editor|}}
  <div class="toolbar">
    {{mobiledoc-markup-button editor=editor for="strong"}}
    {{mobiledoc-link-button editor=editor}}
  </div>
{{/mobiledoc-editor}}

{{mobiledoc-section-button}}

Requires two properties:

  • for, the name of the tag
  • editor, the editor instance from mobiledoc-editor

And accepts one optional property:

  • title, added as the title attribute on the button element

Creates a <button> element that has a class of active when the provided section tag is used in the current selection. For example:

{{mobiledoc-section-button editor=editor for="h2"}}

Alternatively, custom text for the HTML of the button can be yielded:

{{#mobiledoc-section-button editor=editor for="h2"}}
  Headline 2
{{/mobiledoc-section-button}}

When clicked, the section tag name will be toggled.

{{mobiledoc-markup-button}}

Requires two properties:

  • for, the name of the tag
  • editor, the editor instance from mobiledoc-editor

And accepts one optional property:

  • title, added as the title attribute on the button element

Creates a <button> element that has a class of active when the provided markup tag is used in the current selection. For example:

{{mobiledoc-markup-button editor=editor for="em"}}

Alternatively, custom text for the HTML of the button can be yielded:

{{#mobiledoc-markup-button editor=editor for="em"}}
  Italicize
{{/mobiledoc-markup-button}}

When clicked, the markup tag name will be toggled.

Requires one property:

  • editor, the editor instance from mobiledoc-editor

And accepts one optional property:

  • title, added as the title attribute on the button element

Creates a <button> element that has a class of active when the an a tag is used in the current selection. For example:

{{mobiledoc-link-button editor=editor}}

Custom text for the HTML of the button can be yielded:

{{#mobiledoc-link-button editor=editor}}
  Toggle Link
{{/mobiledoc-link-button}}

When clicked, the presence of a link will be toggled. The user will be prompted for a URL if required.

{{mobiledoc-section-attribute-button}}

Requires two properties:

  • attributeName, the name of the attribute
  • attributeValue, the value of the attribute
  • editor, the editor instance from mobiledoc-editor

And accepts one optional property:

  • title, added as the title attribute on the button element

Creates a <button> element that has a class of active when the provided attributeValue is used in the current section. For example:

{{mobiledoc-section-attribute-button editor=editor attributeName="text-align" attributeValue="center"}}

Alternatively, custom text for the HTML of the button can be yielded:

{{#mobiledoc-section-attribute-button editor=editor attributeName="text-align" attributeValue="center"}}
  Center
{{/mobiledoc-section-attribute-button}}

{{mobiledoc-toolbar}}

Requires one property:

  • editor, the editor instance from mobiledoc-editor

This component creates a full-featured toolbar for the Mobiledoc editor. For example:

{{#mobiledoc-editor as |editor|}}
  {{mobiledoc-toolbar editor=editor}}
{{/mobiledoc-editor}}

Component-based Cards

Mobiledoc supports "cards", blocks of rich content that are embedded into a post. For more details on the API for authoring cards in vanilla JavaScript, see CARDS.md.

ember-mobiledoc-editor comes with a handle helper for using Ember components as the display and edit modes of a card. Create a list of cards using the createComponentCard helper:

import Ember from 'ember';
import createComponentCard from 'ember-mobiledoc-editor/utils/create-component-card';

export default Ember.Component.extend({
  cards: Ember.computed(function() {
    return [
      createComponentCard('demo-card')
    ];
  })
});

And pass that list into the {{mobiledoc-editor}} component:

{{mobiledoc-editor cards=cards}}

When added to the post (or loaded from a passed-in Mobiledoc), these components will be used:

  • For display, the demo-card component will be called
  • For edit, the demo-card-editor component will be called

The component will be provided with the following attrs:

  • payload, the payload for this card. Note the payload object is disconnected from the card's payload in the serialized mobiledoc. To update the mobiledoc payload, use the saveCard action.
  • editCard, an action for toggling this card into edit mode (this action is a no-op if the card is already in edit mode)
  • removeCard, an action for removing this card (see the "remove" Mobiledoc card action)
  • saveCard, an action accepting new payload for the card, then saving that payload and toggling this card into display mode can optionally be passed an extra false argument to avoid toggling to display mode (see the "save Mobiledoc card action)
  • cancelCard, an action toggling this card to display mode without saving (this action is a no-op if the card is already in display mode) (see the "cancel Mobiledoc card action)
  • cardName the name of this card
  • editor A reference to the mobiledoc-kit
  • postModel A reference to this card's model in the editor's abstract tree. This may be necessary to do programmatic editing (such as moving the card via the postEditor#moveSection API that Mobiledoc editor provides)

Component-based Atoms

Mobiledoc supports "atoms", inline sections of rich content that are embedded into a line of text in your post. For more details on the API for authoring atoms in vanilla JavaScript, see ATOMS.md.

ember-mobiledoc-editor comes with a handle helper for using Ember components as an atom. Create a list of atoms using the createComponentAtom helper:

import Ember from 'ember';
import createComponentAtom from 'ember-mobiledoc-editor/utils/create-component-atom';

export default Ember.Component.extend({
  atoms: Ember.computed(function() {
    return [
      createComponentAtom('demo-atom')
    ];
  })
});

And pass that list into the {{mobiledoc-editor}} component:

{{mobiledoc-editor atoms=atoms}}

Editor Lifecycle Hooks

Currently editor lifecycle hooks are available by available by extending the mobiledoc-editor component.

import Component from 'ember-mobiledoc-editor/components/mobiledoc-editor/component';

export default Component.extend({
  cursorDidChange(editor) {
    this._super(...arguments);
    // custom event handling goes here
  }
});

The following lifecycle hooks are available:

  • willRender
  • didRender
  • postDidChange
  • inputModeDidChange
  • cursorDidChange

Test Helpers

ember-mobiledoc-editor exposes two test helpers for use in your acceptance tests:

  • insertText(editorElement, text) -- inserts text into the editor (at the end)
  • run(editorElement, callback) -- equivalent to editor.run, it calls the callback with the postEditor

Example usage:

// acceptance test
import { insertText, run } from '../../helpers/ember-mobiledoc-editor';
import { find } from '@enber/test-helpers';
test('visit /', function(assert) {
  visit('/');
  andThen(() => {
    let editorEl = find('.mobiledoc-editor__editor');
    return insertText(editorEl, 'here is some text');
    /* Or:
      return run(editorEl, (postEditor) => ...);
    */
  });
  andThen(() => {
    // assert text inserted, etc.
  });
});

Developing ember-mobiledoc-editor

Releasing a new version:

This README outlines the details of collaborating on this Ember addon.

Installation

  • git clone <repository-url> this repository
  • cd ember-mobiledoc-editor
  • yarn install

Run the development server:

Running Tests

  • yarn test (Runs ember try:each to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit https://ember-cli.com/.

Readme

Keywords

Package Sidebar

Install

npm i ember-mobiledoc-editor

Weekly Downloads

109

Version

0.8.1

License

MIT

Unpacked Size

91.4 kB

Total Files

43

Last publish

Collaborators

  • mixonic
  • lukemelia
  • bantic
  • iezer
  • zeejab