UNPKG

smart-webcomponents-angular

Version:

[![Price](https://img.shields.io/badge/price-COMMERCIAL-0098f7.svg)](https://jqwidgets.com/license/)

813 lines 219 kB
import { Directive, Input, Output, EventEmitter } from '@angular/core'; import { BaseElement, Smart } from './smart.element'; import * as i0 from "@angular/core"; export { Smart } from './smart.element'; export class EditorComponent extends BaseElement { constructor(ref) { super(ref); this.eventHandlers = []; /** @description This event is triggered on blur if the content is changed. * @param event. The custom event. Custom event was created with: event.detail( oldValue, value) * oldValue - The old value before the change. * value - The new value after the change. */ this.onChange = new EventEmitter(); /** @description This event is triggered after user input to indicate that the content is changed via user interaction. * @param event. The custom event. Custom event was created with: event.detail( oldValue, value) * oldValue - The old value before the input change. * value - The new value after the input change. */ this.onChanging = new EventEmitter(); /** @description This event is triggered before a Toolbar action is started. The event can be canceled via event.preventDefault(). * @param event. The custom event. Custom event was created with: event.detail( name) * name - The name of the action. */ this.onActionStart = new EventEmitter(); /** @description This event is triggered when a Toolbar action has ended. * @param event. The custom event. Custom event was created with: event.detail( name) * name - The name of the action. */ this.onActionEnd = new EventEmitter(); /** @description This event is triggered when a Context menu item has been clicked. * @param event. The custom event. Custom event was created with: event.detail( originalEvent, value) * originalEvent - The original click event. * value - The value of the item. */ this.onContextMenuItemClick = new EventEmitter(); /** @description This event is triggered when the Context Menu is opened. * @param event. The custom event. Custom event was created with: event.detail( target, owner) * target - The toolbar that is the target of the operation. * owner - The tooltip target (the owner of the tooltip). */ this.onContextMenuOpen = new EventEmitter(); /** @description This event is triggered when the Context Menu is opening. The opening operation can be canceled via event.preventDefault(). * @param event. The custom event. Custom event was created with: event.detail( target) * target - The toolbar that is the target of the operation. */ this.onContextMenuOpening = new EventEmitter(); /** @description This event is triggered when the Context Menu is closed. * @param event. The custom event. Custom event was created with: event.detail( target, owner) * target - The toolbar that is the target of the operation. * owner - The tooltip target (the owner of the tooltip). */ this.onContextMenuClose = new EventEmitter(); /** @description This event is triggered when the Context Menu is closing. The closing operation can be canceled via event.preventDefault(). * @param event. The custom event. Custom event was created with: event.detail( target) * target - The toolbar that is the target of the operation. */ this.onContextMenuClosing = new EventEmitter(); /** @description This event is triggered when an image/table/video resizing has started. * @param event. The custom event. */ this.onResizeStart = new EventEmitter(); /** @description This event is triggered when an image/table/video resizing has ended. * @param event. The custom event. Custom event was created with: event.detail( target) * target - The element that is resized (image/table or video). */ this.onResizeEnd = new EventEmitter(); /** @description This event is triggered when the inline Toolbar is opened. * @param event. The custom event. Custom event was created with: event.detail( target, owner) * target - The toolbar that is the target of the operation. * owner - The tooltip target (the owner of the tooltip). */ this.onInlineToolbarOpen = new EventEmitter(); /** @description This event is triggered when the inline Toolbar is opening. The opening operation can be canceled by calling event.preventDefault() in the event handler function. * @param event. The custom event. Custom event was created with: event.detail( target) * target - The toolbar that is the target of the operation. */ this.onInlineToolbarOpening = new EventEmitter(); /** @description This event is triggered when the inline Toolbar is closed. * @param event. The custom event. Custom event was created with: event.detail( target, owner) * target - The toolbar that is the target of the operation. * owner - The tooltip target (the owner of the tooltip). */ this.onInlineToolbarClose = new EventEmitter(); /** @description This event is triggered when the inline Toolbar is closing. * @param event. The custom event. Custom event was created with: event.detail( target) * target - The toolbar that is the target of the operation. The closing operation can be canceled by calling event.preventDefault() in the event handler function. */ this.onInlineToolbarClosing = new EventEmitter(); /** @description This event is triggered when the Drop Down Toolbar is opened. * @param event. The custom event. Custom event was created with: event.detail( target, owner) * target - The toolbar that is the target of the operation. * owner - The tooltip target (the owner of the tooltip). */ this.onDropDownToolbarOpen = new EventEmitter(); /** @description This event is triggered when the Drop Down Toolbar is opening. The opening operation can be canceled by calling event.preventDefault() in the event handler function. * @param event. The custom event. Custom event was created with: event.detail( target) * target - The toolbar that is the target of the operation. */ this.onDropDownToolbarOpening = new EventEmitter(); /** @description This event is triggered when the Drop Down Toolbar is closed. * @param event. The custom event. Custom event was created with: event.detail( target, owner) * target - The toolbar that is the target of the operation. * owner - The tooltip target (the owner of the tooltip). */ this.onDropDownToolbarClose = new EventEmitter(); /** @description This event is triggered when the Drop Down Toolbar is closing. The closing operation can be canceled by calling event.preventDefault() in the event handler function. * @param event. The custom event. Custom event was created with: event.detail( target) * target - The toolbar that is the target of the operation. */ this.onDropDownToolbarClosing = new EventEmitter(); /** @description This event is triggered the Dialog Window is opened. * @param event. The custom event. Custom event was created with: event.detail( target, item) * target - The window that is the target of the operation. * item - The toolbar item is the target of the operation. */ this.onDialogOpen = new EventEmitter(); /** @description This event is triggered before the Dialog Window is opened. The event can be prevented via event.preventDefault(). * @param event. The custom event. Custom event was created with: event.detail( target, item) * target - The window that is the target of the operation. * item - The toolbar item that is the target of the operation. */ this.onDialogOpening = new EventEmitter(); /** @description This event is triggered when the Dialog Window is closed. * @param event. The custom event. Custom event was created with: event.detail( target, item) * target - The window that is the target of the operation. * item - The toolbar item that is the target of the operation. */ this.onDialogClose = new EventEmitter(); /** @description This event is triggered before the Dialog Window is closing. The event can be prevented via event.preventDefault(). * @param event. The custom event. Custom event was created with: event.detail( target, item) * target - The window that is the target of the operation. * item - The toolbar item that is the target of the operation. */ this.onDialogClosing = new EventEmitter(); /** @description This event is triggered when the uploading of an image/video is successful. * @param event. The custom event. Custom event was created with: event.detail( target, item, filename, type, size, index, status, serverResponse) * target - The file upload element that is the target of the operation. * item - The toolbar item that is the target of the operation. * filename - The name of the uploaded file. * type - The type of the uploaded file. * size - The size of the uploaded file. * index - The index of the uploaded file. * status - The status of the uploaded file. Whether there was an error or success. * serverResponse - The response of the remote server. */ this.onImageUploadSuccess = new EventEmitter(); /** @description This event is triggered when the uploading of an image/video is unsuccessful. * @param event. The custom event. Custom event was created with: event.detail( target, item, filename, type, size, index, status, serverResponse) * target - The file upload element that is the target of the operation. * item - The toolbar item that is the target of the operation. * filename - The name of the canceled file. * type - The type of the canceled file. * size - The size of the canceled file. * index - The index of the canceled file. * status - The status of the uploaded file. Whether there was an error or success. * serverResponse - The response of the remote server. */ this.onImageUploadFailed = new EventEmitter(); /** @description This event is triggered when a Toolbar item is clicked. * @param event. The custom event. Custom event was created with: event.detail( originalEvent, value) * originalEvent - The original click event. * value - The name of the toolbar item that was clicked. */ this.onToobarItemClick = new EventEmitter(); /** @description This event is triggered when a message is closed. * @param event. The custom event. Custom event was created with: event.detail( instance) * instance - The toast item that is the target of the operation. */ this.onMessageClose = new EventEmitter(); /** @description This event is triggered when a message is opened. * @param event. The custom event. Custom event was created with: event.detail( instance) * instance - The toast item that is the target of the operation. */ this.onMessageOpen = new EventEmitter(); this.nativeElement = ref.nativeElement; } /** @description Creates the component on demand. * @param properties An optional object of properties, which will be added to the template binded ones. */ createComponent(properties = {}) { this.nativeElement = document.createElement('smart-editor'); for (let propertyName in properties) { this.nativeElement[propertyName] = properties[propertyName]; } return this.nativeElement; } /** @description Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */ get animation() { return this.nativeElement ? this.nativeElement.animation : undefined; } set animation(value) { this.nativeElement ? this.nativeElement.animation = value : undefined; } /** @description Automatically loads the last saved state of the editor (from local storage) on element initialization. An id must be provided in order to load a previously saved state. */ get autoLoad() { return this.nativeElement ? this.nativeElement.autoLoad : undefined; } set autoLoad(value) { this.nativeElement ? this.nativeElement.autoLoad = value : undefined; } /** @description Automatically saves the current content of the editor. Saving happens at time intervas determined by the autoSaveInterval property while the element on focus. An id must be provided to the element in order to store the state. */ get autoSave() { return this.nativeElement ? this.nativeElement.autoSave : undefined; } set autoSave(value) { this.nativeElement ? this.nativeElement.autoSave = value : undefined; } /** @description The property that determines the interval to automatically save the state of the Editor when the autoSave property is set. */ get autoSaveInterval() { return this.nativeElement ? this.nativeElement.autoSaveInterval : undefined; } set autoSaveInterval(value) { this.nativeElement ? this.nativeElement.autoSaveInterval = value : undefined; } /** @description A formatting function for the char counter. Takes two arguments: chars - the current number of characters inside the Editor.maxCharCount - the maximum number of characters inside the Editor. */ get charCountFormatFunction() { return this.nativeElement ? this.nativeElement.charCountFormatFunction : undefined; } set charCountFormatFunction(value) { this.nativeElement ? this.nativeElement.charCountFormatFunction = value : undefined; } /** @description Sets or gets whether files will be automatically uploaded after selection. */ get autoUpload() { return this.nativeElement ? this.nativeElement.autoUpload : undefined; } set autoUpload(value) { this.nativeElement ? this.nativeElement.autoUpload = value : undefined; } /** @description Determines the content filtering settings. */ get contentFiltering() { return this.nativeElement ? this.nativeElement.contentFiltering : undefined; } set contentFiltering(value) { this.nativeElement ? this.nativeElement.contentFiltering = value : undefined; } /** @description Determines the context menu for the Editor. The context menu is triggered when the user right clicks on the content area of the Editor. */ get contextMenu() { return this.nativeElement ? this.nativeElement.contextMenu : undefined; } set contextMenu(value) { this.nativeElement ? this.nativeElement.contextMenu = value : undefined; } /** @description Allows to customize default the context menu of the Editor. The property accepts an array of items which can be strings that represent the value of the item, or objects of the following format: { label: string, value: string }, where the label will be displayed and the value will be action value for the item. The property also accepts a function that must return an array of items with the following format function (target: HTMLElement, type: string, defaultItems: string[]) { return defaultItems } and the following arguments: target - the element that is the target of the context menu.type - the type of context menu ( whether it's a table, image, link or other)defaultItems - an array of strings which represent the default items for the context menu. */ get contextMenuDataSource() { return this.nativeElement ? this.nativeElement.contextMenuDataSource : undefined; } set contextMenuDataSource(value) { this.nativeElement ? this.nativeElement.contextMenuDataSource = value : undefined; } /** @description Sets the Editor's Data Export options. */ get dataExport() { return this.nativeElement ? this.nativeElement.dataExport : undefined; } set dataExport(value) { this.nativeElement ? this.nativeElement.dataExport = value : undefined; } /** @description Enables or disables the Editor. */ get disabled() { return this.nativeElement ? this.nativeElement.disabled : undefined; } set disabled(value) { this.nativeElement ? this.nativeElement.disabled = value : undefined; } /** @description Disables content editing inside Editor. */ get disableEditing() { return this.nativeElement ? this.nativeElement.disableEditing : undefined; } set disableEditing(value) { this.nativeElement ? this.nativeElement.disableEditing = value : undefined; } /** @description Disables the Quick Search Bar. */ get disableSearchBar() { return this.nativeElement ? this.nativeElement.disableSearchBar : undefined; } set disableSearchBar(value) { this.nativeElement ? this.nativeElement.disableSearchBar = value : undefined; } /** @description Determines the edit mode for the Editor. By default the editor's content accepts and parses HTML. However if set to 'markdown' the Editor can be used as a full time Markdown Editor by parsing the makrdown to HTML in preview mode. */ get editMode() { return this.nativeElement ? this.nativeElement.editMode : undefined; } set editMode(value) { this.nativeElement ? this.nativeElement.editMode = value : undefined; } /** @description Determines whether the value returned from getHTML method and Source Code view are encoded or not. */ get enableHtmlEncode() { return this.nativeElement ? this.nativeElement.enableHtmlEncode : undefined; } set enableHtmlEncode(value) { this.nativeElement ? this.nativeElement.enableHtmlEncode = value : undefined; } /** @description Determines whether the Tab key can insert tab chars inside the Editor or change focus (default) */ get enableTabKey() { return this.nativeElement ? this.nativeElement.enableTabKey : undefined; } set enableTabKey(value) { this.nativeElement ? this.nativeElement.enableTabKey = value : undefined; } /** @description Determines the time interval between results for the find and replace and search bar features. */ get findAndReplaceTimeout() { return this.nativeElement ? this.nativeElement.findAndReplaceTimeout : undefined; } set findAndReplaceTimeout(value) { this.nativeElement ? this.nativeElement.findAndReplaceTimeout = value : undefined; } /** @description Determines whether the Toolbar is hidden or not. */ get hideToolbar() { return this.nativeElement ? this.nativeElement.hideToolbar : undefined; } set hideToolbar(value) { this.nativeElement ? this.nativeElement.hideToolbar = value : undefined; } /** @description Determines whether the Inline Toolbar is hidden or not. */ get hideInlineToolbar() { return this.nativeElement ? this.nativeElement.hideInlineToolbar : undefined; } set hideInlineToolbar(value) { this.nativeElement ? this.nativeElement.hideInlineToolbar = value : undefined; } /** @description Determines the file format of the image/video that are uploaded from local storage. By default images/videos are stroed as base64. */ get imageFormat() { return this.nativeElement ? this.nativeElement.imageFormat : undefined; } set imageFormat(value) { this.nativeElement ? this.nativeElement.imageFormat = value : undefined; } /** @description Sets the content of the Editor as HTML. Allows to insert text and HTML. */ get innerHTML() { return this.nativeElement ? this.nativeElement.innerHTML : undefined; } set innerHTML(value) { this.nativeElement ? this.nativeElement.innerHTML = value : undefined; } /** @description Defines an offset(x,y) for the Inline Toolbar positioning on the page. */ get inlineToolbarOffset() { return this.nativeElement ? this.nativeElement.inlineToolbarOffset : undefined; } set inlineToolbarOffset(value) { this.nativeElement ? this.nativeElement.inlineToolbarOffset = value : undefined; } /** @description Determines the iframe settings of the Editor. When enabled the contents of the Editor are placed inside an iframe, isolated in a separate dom. The element allows to insert external resources into the iframe if needed. */ get iframeSettings() { return this.nativeElement ? this.nativeElement.iframeSettings : undefined; } set iframeSettings(value) { this.nativeElement ? this.nativeElement.iframeSettings = value : undefined; } /** @description Sets or gets the license which unlocks the product. */ get license() { return this.nativeElement ? this.nativeElement.license : undefined; } set license(value) { this.nativeElement ? this.nativeElement.license = value : undefined; } /** @description Sets or gets the language. Used in conjunction with the property messages. */ get locale() { return this.nativeElement ? this.nativeElement.locale : undefined; } set locale(value) { this.nativeElement ? this.nativeElement.locale = value : undefined; } /** @description Sets a limit on the number of chars inside the Editor. */ get maxCharCount() { return this.nativeElement ? this.nativeElement.maxCharCount : undefined; } set maxCharCount(value) { this.nativeElement ? this.nativeElement.maxCharCount = value : undefined; } /** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property language. */ get messages() { return this.nativeElement ? this.nativeElement.messages : undefined; } set messages(value) { this.nativeElement ? this.nativeElement.messages = value : undefined; } /** @description Sets a to the element which can be used to submit the value of the Editor via a form. */ get name() { return this.nativeElement ? this.nativeElement.name : undefined; } set name(value) { this.nativeElement ? this.nativeElement.name = value : undefined; } /** @description Determines the format of the content that will be pasted inside the Editor. */ get pasteFormat() { return this.nativeElement ? this.nativeElement.pasteFormat : undefined; } set pasteFormat(value) { this.nativeElement ? this.nativeElement.pasteFormat = value : undefined; } /** @description Determines the placeholder that will be shown when there's no content inside the Editor. */ get placeholder() { return this.nativeElement ? this.nativeElement.placeholder : undefined; } set placeholder(value) { this.nativeElement ? this.nativeElement.placeholder = value : undefined; } /** @description Determines whether the clearFormat toolbar action should also remove inline styles from the currently selected node. */ get removeStylesOnClearFormat() { return this.nativeElement ? this.nativeElement.removeStylesOnClearFormat : undefined; } set removeStylesOnClearFormat(value) { this.nativeElement ? this.nativeElement.removeStylesOnClearFormat = value : undefined; } /** @description Determines whether Editor's content is required ot not. If set and the Editor's content is empty, a notification will appear to notify that the Editor cannot be empty. */ get required() { return this.nativeElement ? this.nativeElement.required : undefined; } set required(value) { this.nativeElement ? this.nativeElement.required = value : undefined; } /** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */ get rightToLeft() { return this.nativeElement ? this.nativeElement.rightToLeft : undefined; } set rightToLeft(value) { this.nativeElement ? this.nativeElement.rightToLeft = value : undefined; } /** @description Determines whether the value is sanitized from XSS content or not. When enabled scripts and other XSS vulnerabilities are not allowed to exist inside the Editor's as HTML content. */ get sanitized() { return this.nativeElement ? this.nativeElement.sanitized : undefined; } set sanitized(value) { this.nativeElement ? this.nativeElement.sanitized = value : undefined; } /** @description Determines whether the char counter is visible or not. When enabled it is displayed in the bottom right corner. If maxCharCount is set and the content characters are equal or more than 70% of the maximum char count the counter is colored in order to warn the user. If the char count is equal or more than 90% the counter is again colored with a different warning color to indicate that the counter is near maximum. When maximum is reached, text input is not allowed. */ get showCharCount() { return this.nativeElement ? this.nativeElement.showCharCount : undefined; } set showCharCount(value) { this.nativeElement ? this.nativeElement.showCharCount = value : undefined; } /** @description Determines whether the editor may be checked for spelling errors. */ get spellCheck() { return this.nativeElement ? this.nativeElement.spellCheck : undefined; } set spellCheck(value) { this.nativeElement ? this.nativeElement.spellCheck = value : undefined; } /** @description Determines the refresh interval for the Source Code/Preview Panel when Split Mode is enabled. */ get splitModeRefreshTimeout() { return this.nativeElement ? this.nativeElement.splitModeRefreshTimeout : undefined; } set splitModeRefreshTimeout(value) { this.nativeElement ? this.nativeElement.splitModeRefreshTimeout = value : undefined; } /** @description Sets or gets the upload URL. This property corresponds to the upload form's action attribute. For example, the uploadUrl property can point to a PHP file, which handles the upload operation on the server-side. */ get uploadUrl() { return this.nativeElement ? this.nativeElement.uploadUrl : undefined; } set uploadUrl(value) { this.nativeElement ? this.nativeElement.uploadUrl = value : undefined; } /** @description Sets or gets the remove URL. This property corresponds to the form's action attribute. For example, the removeUrl property can point to a PHP file, which handles the remove operation on the server-side. */ get removeUrl() { return this.nativeElement ? this.nativeElement.removeUrl : undefined; } set removeUrl(value) { this.nativeElement ? this.nativeElement.removeUrl = value : undefined; } /** @description Determines the theme. Theme defines the look of the element */ get theme() { return this.nativeElement ? this.nativeElement.theme : undefined; } set theme(value) { this.nativeElement ? this.nativeElement.theme = value : undefined; } /** @description Determines the Toolbar items list. Each item can be string pointing to the name of the item or an object that defines a custom item or adds aditional settings to an item. The name of the items are case insensitive. An object definition should contain a name attribute that refers to the name of the item when modifing an existing toolbar item. The name attribute determines the action of the item. If set to 'custom' it is possible to create a custom toolbar item. If name attribute is not set or not valid it is treated as a separator, no a toolbar item. The following items are supported by default by the Editor: SourceCode - shows the HTML/Preview Panel by hiding the input panel. Item type - 'Toggle button'.SplitMode - shows both input and HTML/Preview Panel by splitting the Editor content in two sections. Item type - 'Toggle button'FullScreen - fits the viewport with the Editor by expanding it over the page content. Item type - 'Toggle button'.Alignment - aligns the selected content. Item type - 'Drop down'.FontName - changes the font family of the selected content. Item type - 'drop-down'.FontSize - changes the font size of the selected content. Item type - 'drop-down'.Formats - changes the format of the current selection. Itme type - 'drop-down'.TableRows - allows to insert/remove a row into a selected table element. Item type - 'drop-down'.TableColumns - allows to insert/remove a column into a selected table element. Itme type - 'drop-down'.TableVAlign - sets the vertical alignment of a selected table cell. Item type - 'drop-down'.TableStyle - sets additional styling to a selected table inside the Editor. Item type - 'drop-down'.BackgroundColor - changes the background color of the current selection. Item type - 'color-input'.FontColor - changes the font color of the current selection. Item type = 'color-input'.Bold - sets the currently selected text as bold or not. Item type - 'button'.Italic - sets the currently selected text as italic. Item type - 'button'. Underline - sets the currently selected text as underlined. Itme type - 'button'.Strikethrough - set the currently selected text as strikethrough. Item type - 'button'.Delete - deletes the current selection. Item type - 'button'.Undo - undoes the last operation. Item type - 'button'.Redo - redoes the previous operation. Item type - 'button'.Indent - indents the current selection once. Item type - 'button'.Outdent - outdents the current selection once. Item type - 'button'.OpenLink - triggers a hyperlink. Item type - 'button'.EditLink - creates/edits the selected hyperlink. Item type - 'button'.CreateLink - creates/edits the selected hyperlink. Item type - 'button'.RemoveLink - removes the currently selected hyperlink. Item type - 'button'.Hyperlink - same as createLink, triggers a Dialog Window for link creation. Item type - 'button'.Cut - Cuts the currently selected text. Item type - 'button'.Copy - copies the currently selected text. Item type - 'button'Paste - pastes the currenly copied/cut text from the Clipboard. Item type = 'button' or 'drop-down' when advanced attribute is set to 'true'.Image - triggers a Dialog Window to insert/edit an image. Item type - 'button'.Video - triggers a Dialog Window to insert/edit a video. Item type - 'button'.LowerCase - changes the current selection to lower case. Item type - 'button'.UpperCase - changes the current selection to upper case. Item type - 'button'.Print - opens the browser print preview window. Item type - 'button'.Caption - insert/remove a caption when a table is selected. Item type - 'button'.ClearFormat - removes the formatting of the currntly selected text. Item type - 'button'.Table - triggers a Dialog Window to insert a table. Item type - 'button'.TableHeader - insert/remove a header row to the currently selected table. Item type - 'button'.OrderedList - insert/remove an order list. Item type = 'button'.UnorderedList - insert/remove an unordered list. Item type - 'button'.Subscript - changes the currently selected text to subscript. Item type - 'button'.Superscript - changes the currently selected text to superscript. Item type - 'button'.FindAndReplace - opens a dialog that allows to find and replace text inside the Editor's content section. Item type - 'button'. The inlineToolbarItems attribute is applicable only to the following items: 'table', 'image', 'hyperlink'. It accepts the same type of value as toolbarItems property but the toolbar items will be placed insinde the Inline Toolbar instead. */ get toolbarItems() { return this.nativeElement ? this.nativeElement.toolbarItems : undefined; } set toolbarItems(value) { this.nativeElement ? this.nativeElement.toolbarItems = value : undefined; } /** @description Determines the toolbar mode of the Editor. The main toolbar of the Editor can appear as a Ribbon or as a Menu. */ get toolbarMode() { return this.nativeElement ? this.nativeElement.toolbarMode : undefined; } set toolbarMode(value) { this.nativeElement ? this.nativeElement.toolbarMode = value : undefined; } /** @description Allows to configure the SingleLineRibbon appearance by changing the order and items of the groups. */ get toolbarRibbonConfig() { return this.nativeElement ? this.nativeElement.toolbarRibbonConfig : undefined; } set toolbarRibbonConfig(value) { this.nativeElement ? this.nativeElement.toolbarRibbonConfig = value : undefined; } /** @description Determines the format of the content that will be pasted inside the Editor. */ get toolbarViewMode() { return this.nativeElement ? this.nativeElement.toolbarViewMode : undefined; } set toolbarViewMode(value) { this.nativeElement ? this.nativeElement.toolbarViewMode = value : undefined; } /** @description Sticks the Toolbar to the top of the window and stays there while scrolling. */ get toolbarSticky() { return this.nativeElement ? this.nativeElement.toolbarSticky : undefined; } set toolbarSticky(value) { this.nativeElement ? this.nativeElement.toolbarSticky = value : undefined; } /** @description If is set to true, the element cannot be focused. */ get unfocusable() { return this.nativeElement ? this.nativeElement.unfocusable : undefined; } set unfocusable(value) { this.nativeElement ? this.nativeElement.unfocusable = value : undefined; } /** @description Sets or gets the value of the Editor. */ get value() { return this.nativeElement ? this.nativeElement.value : undefined; } set value(value) { this.nativeElement ? this.nativeElement.value = value : undefined; } /** @description A function that can be used to completly customize the Editor dialog that is used to insert/edit tables/images/videos/hyperlinks. The function accepts two arguments: target - the target dialog that is about to be opened.item - the toolbar item object that trigger the dialog. */ get windowCustomizationFunction() { return this.nativeElement ? this.nativeElement.windowCustomizationFunction : undefined; } set windowCustomizationFunction(value) { this.nativeElement ? this.nativeElement.windowCustomizationFunction = value : undefined; } /** @description Adds a new Toolbar item. Example: editor.addToolbarItem({ name: 'customButton2', width: 100, template: '<smart-button>Button2</smart-button>' }) * @param {any} itemName. The toolbar item to be added */ addToolbarItem(itemName) { if (this.nativeElement.isRendered) { this.nativeElement.addToolbarItem(itemName); } else { this.nativeElement.whenRendered(() => { this.nativeElement.addToolbarItem(itemName); }); } } /** @description Blurs the content of the Editor. */ blur() { if (this.nativeElement.isRendered) { this.nativeElement.blur(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.blur(); }); } } /** @description Clears the content of the Editor. */ clearContent() { if (this.nativeElement.isRendered) { this.nativeElement.clearContent(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.clearContent(); }); } } /** @description Collapse the Toolbar if the toolbarViewMode is set to 'toggle'. */ collapseToolbar() { if (this.nativeElement.isRendered) { this.nativeElement.collapseToolbar(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.collapseToolbar(); }); } } /** @description Disables a Toolbar item. * @param {string} itemName. The name of the toolbar item to disable. */ disableToolbarItem(itemName) { if (this.nativeElement.isRendered) { this.nativeElement.disableToolbarItem(itemName); } else { this.nativeElement.whenRendered(() => { this.nativeElement.disableToolbarItem(itemName); }); } } /** @description Expand the Toolbar if the toolbarViewMode is set to 'toggle'. */ expandToolbar() { if (this.nativeElement.isRendered) { this.nativeElement.expandToolbar(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.expandToolbar(); }); } } /** @description Enables a previously disabled Toolbar item. * @param {string} itemName. The name of the toolbar item to enable. */ enableToolbarItem(itemName) { if (this.nativeElement.isRendered) { this.nativeElement.enableToolbarItem(itemName); } else { this.nativeElement.whenRendered(() => { this.nativeElement.enableToolbarItem(itemName); }); } } /** @description Executes a command via the native execCommand method. The method returns true or false depending on whether the execution was successful or not. The following list of commands can be eexecuted: bold - makes the currently selected content bold. Example: editor.executeCommand('bold');italic - makes the currently selected content italic. Example: editor.executeCommand('italic');undelined - makes the currently selected content underlined. Example: editor.executeCommand('underline');strikeThrough - applies a single line strike through formatting to the currently selected content. Example: editor.executeCommand('strikeThrough');superscript - sets the selected content as superscript. Example: editor.executeCommand('superscript');subscript - sets the selected content as superscript. Example: editor.executeCommand('subscript');uppercase - changes the case of the current selection to upper. Example: editor.executeCommand('uppercase');lowercase - changes the case of the current selection to lower. Example: editor.executeCommand('lowercase');foreColor - changes the font color of the current content selection. Example: editor.executeCommand('foreColor', '#000000');fontName - changes the font name for the selected content. Example: editor.executeCommand('fontName', 'Arial');fontSize - changes the font size of the currently selected content. Example: editor.executeCommand('fontSize', '15px');hiliteColor - changes the background color of current selection. Example: editor.executeCommand('hiliteColor', '#000000');justifyCenter - aligns the content to the center. Example: editor.executeCommand('justifyCenter');justifyFull - aligns the content to be fully justified. Example: editor.executeCommand('justifyFull');justifyLeft - aligns the content to the left. Example: editor.executeCommand('justifyLeft');justifyRight - aligns the content to the right. Example: editor.executeCommand('justifyRight');undo - allows to undo the previous action. Example: editor.executeCommand('undo');redo - allows to redo the previous actions. Example: editor.executeCommand('redo');createLink - creates a hyperlink in the content section of the Editor. Example: editor.executeCommand('createLink', { text: 'Links', url: 'http://', title : 'Link' });indent - indents the content with one level. Example: editor.executeCommand('indent');outdent - outdents the content with one level. Example: editor.executeCommand('outdent');insertHTML - insert an HTML content as string at the current cursor location. Example: editor.executeCommand('insertHTML', 'Text');insertOrderedList - inserts a new numbered list item. Example: editor.executeCommand('insertOrderedList');insertUnorderedList - inserts a new bulleted list item. Example: editor.executeCommand('insertUnorderedList');removeFormat - removes the formatting styles from currently selected text. Example: editor.executeCommand('removeFormat');insertText - inserts a text at the current cursor location. Example: editor.executeCommand('insertText', 'Some text to insert');insertImage - inserts an image at the current cursor location. Example: editor.executeCommand('insertImage', { url: 'https://www.htmlelements.com/demos/images/carousel-medium-2.jpg'}); * @param {string} commandName. The name of the command to execute. * @param {string | number} value?. The value for the command. Some commands require a value to be passed, others do not. * @returns {boolean} */ async executeCommand(commandName, value) { const getResultOnRender = () => { return new Promise(resolve => { this.nativeElement.whenRendered(() => { const result = this.nativeElement.executeCommand(commandName, value); resolve(result); }); }); }; const result = await getResultOnRender(); return result; } /** @description Focuses the content of the Editor. */ focus() { if (this.nativeElement.isRendered) { this.nativeElement.focus(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.focus(); }); } } /** @description Returns the number of characters inside the Editor's content. * @returns {number} */ async getCharCount() { const getResultOnRender = () => { return new Promise(resolve => { this.nativeElement.whenRendered(() => { const result = this.nativeElement.getCharCount(); resolve(result); }); }); }; const result = await getResultOnRender(); return result; } /** @description Returns the current selection range. By default the result is an object of type Range, but if the editMode property is set to 'markdown' the returned value is an object indicating the start/end indexes of the current selection. * @returns {any} */ async getSelectionRange() { const getResultOnRender = () => { return new Promise(resolve => { this.nativeElement.whenRendered(() => { const result = this.nativeElement.getSelectionRange(); resolve(result); }); }); }; const result = await getResultOnRender(); return result; } /** @description Returns the content of the Editor as HTML. When editMode is set to 'markdown' the markdown is parsed and returned as HTML. * @returns {string} */ async getHTML() { const getResultOnRender = () => { return new Promise(resolve => { this.nativeElement.whenRendered(() => { const result = this.nativeElement.getHTML(); resolve(result); }); }); }; const result = await getResultOnRender(); return result; } /** @description Returns the content of the Editor as text. * @returns {string} */ async getText() { const getResultOnRender = () => { return new Promise(resolve => { this.nativeElement.whenRendered(() => { const result = this.nativeElement.getText(); resolve(result); }); }); }; const result = await getResultOnRender(); return result; } /** @description Hides a specific message or all messages if no argument is provided. * @param {HTMLElement | string | number} item?. Hides a specific message. The argument can be a DOM reference to a specific item, it's index or it's id. If the argument is not provided then all messages will be closed. */ hideMessage(item) { if (this.nativeElement.isRendered) { this.nativeElement.hideMessage(item); } else { this.nativeElement.whenRendered(() => { this.nativeElement.hideMessage(item); }); } } /** @description Hides the last shown message. */ hideLastMessage() { if (this.nativeElement.isRendered) { this.nativeElement.hideLastMessage(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.hideLastMessage(); }); } } /** @description Inserts a new Toolbar item. Example: editor.insertToolbarItem({ name: 'customButton2', width: 100, template: '<smart-button>Button2</smart-button>' }) * @param {any} itemName. The toolbar item to be added * @param {number} index. The toolbar item's index */ insertToolbarItem(itemName, index) { if (this.nativeElement.isRendered) { this.nativeElement.insertToolbarItem(itemName, index); } else { this.nativeElement.whenRendered(() => { this.nativeElement.insertToolbarItem(itemName, index); }); } } /** @description Shows a custom message inside the Editor. * @param {string} message. The text message to be displayed. * @param {any} settings?. Additional settings that can be applied to the Toast element that handles the messages. This parameter should contain only valid Toast properties and values. * @returns {HTMLElement | undefined} */ async showMessage(message, settings) { const getResultOnRender = () => { return new Promise(resolve => { this.nativeElement.whenRendered(() => { const result = this.nativeElement.showMessage(message, settings); resolve(result); }); }); }; const result = await getResultOnRender(); return result; } /** @description Selects the text inside Editor's content. */ selectAll() { if (this.nativeElement.isRendered) { this.nativeElement.selectAll(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.selectAll(); }); } } /** @description Selects a range of text inside the Editor. The method will find the nodes containing the text from the start to the end indexes and will select them as ranges. However, currently only FireFox supports multiple range selection. The rest of the browsers will only select the first node. If the editor is in 'html' editMode then the expected text will be selected regardless of the browser because there's only one node inside the editor. * @param {number} startIndex. The start index to select from. * @param {number} endIndex. The end index to select to. */ selectRange(startIndex, endIndex) { if (this.nativeElement.isRendered) { this.nativeElement.selectRange(startIndex, endIndex); } else { this.nativeElement.whenRendered(() => { this.nativeElement.selectRange(startIndex, endIndex); }); } } /** @description Clears the local storage from previously stored states of the Editor with the current id. */ clearState() { if (this.nativeElement.isRendered) { this.nativeElement.clearState(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.clearState(); }); } } /** @description Saves the current state of the Editor to local storage. Requires an id to be set to the Editor. */ saveState() { if (this.nativeElement.isRendered) { this.nativeElement.saveState(); } else { this.nativeElement.whenRendered(() => { this.nativeElement.saveState(); }); } } /** @description Loads the last stored state of the Editor from local storage. Requires an id to be set to the Editor. */ loadState() { if (this.nativeElement.isRendered) { this.nativeElement.loadState(); } else { this.nativeElement.whenRendered(() => { this.nati