| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /**
- * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* global console, window */
- import global from '@ckeditor/ckeditor5-utils/src/dom/global';
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
- import Enter from '@ckeditor/ckeditor5-enter/src/enter';
- import Heading from '@ckeditor/ckeditor5-heading/src/heading';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import Typing from '@ckeditor/ckeditor5-typing/src/typing';
- import Undo from '@ckeditor/ckeditor5-undo/src/undo';
- import Widget from '@ckeditor/ckeditor5-widget/src/widget';
- import Clipboard from '@ckeditor/ckeditor5-clipboard/src/clipboard';
- import ShiftEnter from '@ckeditor/ckeditor5-enter/src/shiftenter';
- import Table from '@ckeditor/ckeditor5-table/src/table';
- import Mention from '../../src/mention';
- import Link from '@ckeditor/ckeditor5-link/src/link';
- import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
- import Underline from '@ckeditor/ckeditor5-basic-styles/src/underline';
- ClassicEditor
- .create( global.document.querySelector( '#editor' ), {
- plugins: [ Enter, Typing, Paragraph, Heading, Link, Bold, Italic, Underline, Undo, Clipboard, Widget, ShiftEnter, Table, Mention ],
- toolbar: [ 'heading', '|', 'bold', 'italic', 'underline', 'link', '|', 'insertTable', '|', 'undo', 'redo' ],
- mention: [
- {
- feed: feedText => Promise.resolve( [
- { id: '1', label: 'Barney' },
- { id: '2', label: 'Lily' },
- { id: '3', label: 'Marshall' },
- { id: '4', label: 'Robin' },
- { id: '5', label: 'Ted' }
- ].filter( item => item.label.toLowerCase().includes( feedText ) ) ),
- itemRenderer: item => {
- const span = global.document.createElementNS( 'http://www.w3.org/1999/xhtml', 'span' );
- span.innerHTML = `<span id="${ item.id }">@${ item.label }</span>`;
- console.log( 'rendered node: ', span, item );
- return span;
- }
- }
- ]
- } )
- .then( editor => {
- window.editor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|