/**
* GetContent.ts
*
* Released under LGPL License.
* Copyright (c) 1999-2018 Ephox Corp. All rights reserved
*
* License: http://www.tinymce.com/license
* Contributing: http://www.tinymce.com/contributing
*/
import { Editor } from 'tinymce/core/api/Editor';
import Node from 'tinymce/core/api/html/Node';
import Tools from 'tinymce/core/api/util/Tools';
import TrimHtml from 'tinymce/core/dom/TrimHtml';
import { Option, Fun } from '@ephox/katamari';
import Zwsp from 'tinymce/core/text/Zwsp';
import Settings from 'tinymce/core/api/Settings';
import { Element } from '@ephox/sugar';
import { isWsPreserveElement } from 'tinymce/core/dom/ElementType';
import { HTMLElement } from '@ephox/dom-globals';
const defaultFormat = 'html';
type Content = string | Node;
export interface GetContentArgs {
format?: string;
get?: boolean;
content?: string;
getInner?: boolean;
no_events?: boolean;
}
const trimEmptyContents = (editor: Editor, html: string): string => {
const blockName = Settings.getForcedRootBlock(editor);
const emptyRegExp = new RegExp(`^(<${blockName}[^>]*>( | |\\s|\u00a0|
|)<\\/${blockName}>[\r\n]*|
[\r\n]*)$`);
return html.replace(emptyRegExp, '');
};
const getContentFromBody = (editor: Editor, args: GetContentArgs, body: HTMLElement): Content => {
let content;
args.format = args.format ? args.format : defaultFormat;
args.get = true;
args.getInner = true;
if (!args.no_events) {
editor.fire('BeforeGetContent', args);
}
if (args.format === 'raw') {
content = Tools.trim(TrimHtml.trimExternal(editor.serializer, body.innerHTML));
} else if (args.format === 'text') {
content = Zwsp.trim(body.innerText || body.textContent);
} else if (args.format === 'tree') {
return editor.serializer.serialize(body, args);
} else {
content = trimEmptyContents(editor, editor.serializer.serialize(body, args));
}
if (args.format !== 'text' && !isWsPreserveElement(Element.fromDom(body))) {
args.content = Tools.trim(content);
} else {
args.content = content;
}
if (!args.no_events) {
editor.fire('GetContent', args);
}
return args.content;
};
const getContent = (editor: Editor, args: GetContentArgs = {}): Content => {
return Option.from(editor.getBody())
.fold(
Fun.constant(args.format === 'tree' ? new Node('body', 11) : ''),
(body) => getContentFromBody(editor, args, body)
);
};
export {
getContent
};