| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* global console, window, document */
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import Mention from '../../src/mention';
- import Underline from '@ckeditor/ckeditor5-basic-styles/src/underline';
- import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
- import Font from '@ckeditor/ckeditor5-font/src/font';
- ClassicEditor
- .create( document.querySelector( '#editor' ), {
- plugins: [ ArticlePluginSet, Underline, Font, Mention ],
- toolbar: [
- 'heading',
- '|', 'bulletedList', 'numberedList', 'blockQuote',
- '|', 'bold', 'italic', 'underline', 'link',
- '|', 'fontFamily', 'fontSize', 'fontColor', 'fontBackgroundColor',
- '|', 'insertTable',
- '|', 'undo', 'redo'
- ],
- table: {
- contentToolbar: [ 'tableColumn', 'tableRow', 'mergeTableCells' ],
- tableToolbar: [ 'bold', 'italic' ]
- },
- mention: {
- feeds: [
- {
- marker: '@',
- feed: getFeed,
- itemRenderer: item => {
- const span = document.createElement( 'span' );
- span.classList.add( 'custom-item' );
- span.id = `mention-list-item-id-${ item.itemId }`;
- span.innerHTML = `${ item.name } <span class="custom-item-username">${ item.id }</span>`;
- return span;
- }
- },
- {
- marker: '#',
- feed: [
- { id: '#1002', text: 'Some bug in editor' },
- { id: '#1003', text: 'Introduce this feature' },
- { id: '#1004', text: 'Missing docs' },
- { id: '#1005', text: 'Another bug' },
- { id: '#1006', text: 'More bugs' }
- ],
- itemRenderer: item => `Issue ${ item.id }: ${ item.text }`
- }
- ]
- }
- } )
- .then( editor => {
- window.editor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
- function getFeed( feedText ) {
- return Promise.resolve( [
- { itemId: '1', name: 'Barney Stinson', id: '@swarley' },
- { itemId: '2', name: 'Lily Aldrin', id: '@lilypad' },
- { itemId: '3', name: 'Marshall Eriksen', id: '@marshmallow' },
- { itemId: '4', name: 'Robin Scherbatsky', id: '@rsparkles' },
- { itemId: '5', name: 'Ted Mosby', id: '@tdog' }
- ].filter( item => {
- const searchString = feedText.toLowerCase();
- return item.name.toLowerCase().includes( searchString ) || item.id.toLowerCase().includes( searchString );
- } ) );
- }
|