@vaadin-component-factory/vcf-enhanced-rich-text-editor

Web Component providing rich text editor functionality. This component is fork of vaadin-rich-text-editor, with enhanced functionality.


Keywords
Vaadin, vaadin-incubator-element, vaadin-component-factory, vcf-enhanced-rich-text-editor, web-components, web-component, polymer
License
MIT-feh
Install
npm install @vaadin-component-factory/vcf-enhanced-rich-text-editor@3.0.2

Documentation

<vcf-enhanced-rich-text-editor>

Gitter Published on Vaadin  Directory

<vcf-enhanced-rich-text-editor> is a Web Component providing rich text editor functionality. This component is fork of vaadin-rich-text-editor, with enhanced functionality. On top of basic functionality of vaadin-rich-text-editor, you can use:

  • Tab-stops
  • Non-breaking space
  • Toolbar customization
  • Readonly text

Live Demo

Usage

<vcf-enhanced-rich-text-editor>
  ...
</vcf-enhanced-rich-text-editor>

Tabstops

Tabstops can be set in UI by clicking on horizontal rullen, on top of the editor. There are 3 tabstop types: left, right and middle. When you click on ruller left tabstop will appear, then if you click on left tabstop it will change to right tabstop, and if you click on right tabstop it will change to middle tabstop. It is also possible to set tabstops programaticaly by using tabStops property of editor. For example:

editor.tabStops = [
  {direction: 'left', position: 150},
  {direction: 'middle', position: 350},
  {direction: 'right', position: 500}
];

After tabstops are set, you can use them in editor. when you are focused in editor, press tab button and cursore will move to next tabstop. If there are no more tabstops, then tab symbol will be inserted in to text.

Customizing toolbar

<vcf-enhanced-rich-text-editor></vcf-enhanced-rich-text-editor>
<script>
  window.addEventListener('WebComponentsReady', function() {
    var rte = document.querySelector("vcf-enhanced-rich-text-editor");
    rte.toolbarButtons = {undo: false, redo: false, h1: false, h2: false, h3: false, image: false, link: false};
  });
</script>

Readonly area

To make part of text read only, select text and click lock icon in toolbar. Now text is not editable. To make text editable egain, select it and clicl lock button again.

Limitations of readonly functionality:

  • Readonly is not working in code block
  • Readonly is a inline element(like span), so it is still possible to put cursore after the area and add some text
  • Readonly area can be deleted, if user put cursor after it and press backspace
  • Readonly area can be styled using toolbar buttons
  • Selecting multiple lines and making them readonly will create multiple Readonly areas

Installation

The Vaadin components are distributed as Bower and npm packages. Please note that the version range is the same, as the API has not changed. You should not mix Bower and npm versions in the same application, though.

Unlike the official Polymer Elements, the converted Polymer 3 compatible Vaadin components are only published on npm, not pushed to GitHub repositories.

Polymer 2 and HTML Imports compatible version

Install vcf-enhanced-rich-text-editor:

bower i vaadin/vcf-enhanced-rich-text-editor --save

Once installed, import it in your application:

<link rel="import" href="bower_components/vcf-enhanced-rich-text-editor/vcf-enhanced-rich-text-editor.html" />

Polymer 3 and ES Modules compatible version (source)

Install vcf-enhanced-rich-text-editor:

npm i @vaadin-component-factory/vcf-enhanced-rich-text-editor --save

Once installed, import it in your application:

import '@vaadin-component-factory/vcf-enhanced-rich-text-editor/vcf-enhanced-rich-text-editor.js';

Bundling with webpack

When using webpack to bundle the application, do the following steps:

  1. Install the loader:
npm install expose-loader --save-dev
  1. Add these lines to the webpack config:
module: {
  rules: [
  ...
  {
    test: require.resolve('@vaadin/vcf-enhanced-rich-text-editor/vendor/vaadin-quill.js'),
    use: [{
      loader: 'expose-loader',
      options: 'Quill'
    }]
  }

Getting started

Vaadin components use the Lumo theme by default.

To use the Material theme, import the correspondent file from the theme/material folder.

Entry points

  • The component with the Lumo theme:

    theme/lumo/vcf-enhanced-rich-text-editor.html

  • The component with the Material theme:

    theme/material/vcf-enhanced-rich-text-editor.html

  • Alias for theme/lumo/vcf-enhanced-rich-text-editor.html:

    vcf-enhanced-rich-text-editor.html

Running demos and tests in a browser

  1. Fork the vcf-enhanced-rich-text-editor repository and clone it locally.

  2. Make sure you have npm and Bower installed.

  3. When in the vcf-enhanced-rich-text-editor directory, run npm install and then bower install to install dependencies.

  4. Make sure you have polymer-cli installed globally: npm i -g polymer-cli.

  5. Run npm start, browser will automatically open the component API documentation.

  6. You can also open demo or in-browser tests by adding demo or test to the URL, for example:

Running tests from the command line

  1. When in the vcf-enhanced-rich-text-editor directory, run polymer test

Following the coding style

We are using ESLint for linting JavaScript code. You can check if your code is following our standards by running npm run lint, which will automatically lint all .js files as well as JavaScript snippets inside .html files.

Big Thanks

Cross-browser Testing Platform and Open Source <3 Provided by Sauce Labs.

Contributing

To contribute to the component, please read the guideline first.

Vaadin Prime

This component is available in Vaadin Prime subscription. It is still open source, but you need to have a valid CVAL license in order to use it. Read more at: https://vaadin.com/pricing

License

Commercial Vaadin Add-on License version 3 (CVALv3). For license terms, see LICENSE.

Vaadin collects development time usage statistics to improve this product. For details and to opt-out, see https://github.com/vaadin/vaadin-usage-statistics.