Skip to content
plainTextEditor.js 3.33 KiB
Newer Older
 * ContentEditable-based in-place editor for plain text content.
  Drupal.quickedit.editors.plain_text = Drupal.quickedit.EditorView.extend(/** @lends Drupal.quickedit.editors.plain_text# */{
    /**
     * Stores the textual DOM element that is being in-place edited.
     */
     * @constructs
     *
     * @augments Drupal.quickedit.EditorView
     *
     * @param {object} options
      Drupal.quickedit.EditorView.prototype.initialize.call(this, options);
      var editorModel = this.model;
      var fieldModel = this.fieldModel;
      // Store the original value of this field. Necessary for reverting
      // changes.
      var $fieldItems = this.$el.find('.field__item');
      if ($fieldItems.length) {
        $textElement = this.$textElement = $fieldItems.eq(0);
      else {
        $textElement = this.$textElement = this.$el;
      }
      editorModel.set('originalValue', $.trim(this.$textElement.text()));
      // Sets the state to 'changed' whenever the value changes.
      var previousText = editorModel.get('originalValue');
      $textElement.on('keyup paste', function (event) {
        var currentText = $.trim($textElement.text());
        if (previousText !== currentText) {
          previousText = currentText;
          editorModel.set('currentValue', currentText);
          fieldModel.set('state', 'changed');
     */
    getEditedElement: function () {
      return this.$textElement;
    },
     * @inheritdoc
     *
     * @param {object} fieldModel
     * @param {string} state
     * @param {object} options
     */
    stateChange: function (fieldModel, state, options) {
      var from = fieldModel.previous('state');
      var to = state;
      switch (to) {
        case 'inactive':
          break;
        case 'candidate':
          if (from !== 'inactive') {
            this.$textElement.removeAttr('contenteditable');
          }
          if (from === 'invalid') {
            this.removeValidationErrors();
          }
          break;
        case 'activating':
          // Defer updating the field model until the current state change has
          // propagated, to not trigger a nested state change event.
          _.defer(function () {
            fieldModel.set('state', 'active');
          });
          break;
        case 'active':
          this.$textElement.attr('contenteditable', 'true');
          break;
        case 'saving':
          if (from === 'invalid') {
            this.removeValidationErrors();
          }
          this.save(options);
          break;
    getQuickEditUISettings: function () {
      return {padding: true, unifiedToolbar: false, fullWidthToolbar: false, popup: false};
     */
    revert: function () {
      this.$textElement.html(this.model.get('originalValue'));
    }