本文整理汇总了TypeScript中tinymce/plugins/legacyoutput/Plugin.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了default函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
export default function () {
AdvListPlugin();
AnchorPlugin();
AutoLinkPlugin();
AutoResizePlugin();
AutoSavePlugin();
BbCodePlugin();
CharMapPlugin();
CodePlugin();
CodeSamplePlugin();
ColorPickerPlugin();
ContextMenuPlugin();
DirectionalityPlugin();
EmoticonsPlugin();
FullPagePlugin();
FullScreenPlugin();
HrPlugin();
ImagePlugin();
ImageToolsPlugin();
ImportCssPlugin();
InsertDatetimePlugin();
LegacyOutputPlugin();
LinkPlugin();
ListsPlugin();
MediaPlugin();
NonBreakingPlugin();
NonEditablePlugin();
PageBreakPlugin();
PastePlugin();
PreviewPlugin();
PrintPlugin();
SavePlugin();
SearchReplacePlugin();
SpellCheckerPlugin();
TabFocusPlugin();
TablePlugin();
TemplatePlugin();
TextColorPlugin();
TextPatternPlugin();
TocPlugin();
VisualBlocksPlugin();
VisualCharsPlugin();
WordCountPlugin();
ModernTheme();
MobileTheme();
HelpPlugin();
PluginManager.urls.emoticons = '../../../../js/tinymce/plugins/emoticons';
const settings = {
skin_url: '../../../../js/tinymce/skins/lightgray',
codesample_content_css: '../../../../js/tinymce/plugins/codesample/css/prism.css',
visualblocks_content_css: '../../../../js/tinymce/plugins/visualblocks/css/visualblocks.css',
images_upload_url: 'd',
selector: 'textarea',
// rtl_ui: true,
link_list: [
{ title: 'My page 1', value: 'http://www.tinymce.com' },
{ title: 'My page 2', value: 'http://www.moxiecode.com' }
],
image_list: [
{ title: 'My page 1', value: 'http://www.tinymce.com' },
{ title: 'My page 2', value: 'http://www.moxiecode.com' }
],
image_class_list: [
{ title: 'None', value: '' },
{ title: 'Some class', value: 'class-name' }
],
importcss_append: true,
height: 400,
file_picker_callback (callback, value, meta) {
// Provide file and text for the link dialog
if (meta.filetype === 'file') {
callback('https://www.google.com/logos/google.jpg', { text: 'My text' });
}
// Provide image and alt text for the image dialog
if (meta.filetype === 'image') {
callback('https://www.google.com/logos/google.jpg', { alt: 'My alt text' });
}
// Provide alternative source and posted for the media dialog
if (meta.filetype === 'media') {
callback('movie.mp4', { source2: 'alt.ogg', poster: 'https://www.google.com/logos/google.jpg' });
}
},
spellchecker_callback (method, text, success, failure) {
const words = text.match(this.getWordCharPattern());
if (method === 'spellcheck') {
const suggestions = {};
for (let i = 0; i < words.length; i++) {
suggestions[words[i]] = ['First', 'Second'];
}
success(suggestions);
}
if (method === 'addToDictionary') {
//.........这里部分代码省略.........
示例2: function
export default function () {
AdvListPlugin();
AnchorPlugin();
AutoLinkPlugin();
AutoResizePlugin();
AutoSavePlugin();
BbCodePlugin();
CharMapPlugin();
CodePlugin();
CodeSamplePlugin();
ColorPickerPlugin();
ContextMenuPlugin();
DirectionalityPlugin();
EmoticonsPlugin();
FullPagePlugin();
FullScreenPlugin();
HrPlugin();
ImagePlugin();
ImageToolsPlugin();
ImportCssPlugin();
InsertDatetimePlugin();
LegacyOutputPlugin();
LinkPlugin();
ListsPlugin();
MediaPlugin();
NonBreakingPlugin();
NonEditablePlugin();
PageBreakPlugin();
PastePlugin();
PreviewPlugin();
PrintPlugin();
SavePlugin();
SearchReplacePlugin();
SpellCheckerPlugin();
TabFocusPlugin();
TablePlugin();
TemplatePlugin();
TextColorPlugin();
TextPatternPlugin();
TocPlugin();
VisualBlocksPlugin();
VisualCharsPlugin();
WordCountPlugin();
ModernTheme();
const cmd = function (command, value?) {
return { command, value };
};
const commands = [
cmd('Bold'),
cmd('Italic'),
cmd('Underline'),
cmd('Strikethrough'),
cmd('Superscript'),
cmd('Subscript'),
cmd('Cut'),
cmd('Copy'),
cmd('Paste'),
cmd('Unlink'),
cmd('JustifyLeft'),
cmd('JustifyCenter'),
cmd('JustifyRight'),
cmd('JustifyFull'),
cmd('JustifyNone'),
cmd('InsertUnorderedList'),
cmd('InsertOrderedList'),
cmd('ForeColor', 'red'),
cmd('HiliteColor', 'green'),
cmd('FontName', 'Arial'),
cmd('FontSize', 7),
cmd('RemoveFormat'),
cmd('mceBlockQuote'),
cmd('FormatBlock', 'h1'),
cmd('mceInsertContent', 'abc'),
cmd('mceToggleFormat', 'bold'),
cmd('mceSetContent', 'abc'),
cmd('Indent'),
cmd('Outdent'),
cmd('InsertHorizontalRule'),
cmd('mceToggleVisualAid'),
cmd('mceInsertLink', 'url'),
cmd('selectAll'),
cmd('delete'),
cmd('mceNewDocument'),
cmd('Undo'),
cmd('Redo'),
cmd('mceAutoResize'),
cmd('mceShowCharmap'),
cmd('mceCodeEditor'),
cmd('mceDirectionLTR'),
cmd('mceDirectionRTL'),
cmd('mceFullPageProperties'),
cmd('mceFullscreen'),
cmd('mceImage'),
cmd('mceInsertDate'),
cmd('mceInsertTime'),
cmd('InsertDefinitionList'),
cmd('mceNonBreaking'),
cmd('mcePageBreak'),
//.........这里部分代码省略.........
示例3:
/**
* Demo.js
*
* Released under LGPL License.
* Copyright (c) 1999-2017 Ephox Corp. All rights reserved
*
* License: http://www.tinymce.com/license
* Contributing: http://www.tinymce.com/contributing
*/
import LegacyOutputPlugin from 'tinymce/plugins/legacyoutput/Plugin';
declare let tinymce: any;
LegacyOutputPlugin();
tinymce.init({
selector: 'textarea.tinymce',
theme: 'modern',
skin_url: '../../../../../js/tinymce/skins/lightgray',
plugins: 'legacyoutput code',
toolbar: 'legacyoutput fontselect fontsizeselect code',
height: 600
});
示例4: function
function () {
const success = arguments[arguments.length - 2];
const failure = arguments[arguments.length - 1];
const suite = LegacyUnit.createSuite();
Plugin();
Theme();
suite.test('Font color', function (editor) {
editor.focus();
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('forecolor', false, '#FF0000');
LegacyUnit.equal(editor.getContent().toLowerCase(), '<p><font color="#ff0000">text</font></p>');
});
suite.test('Font size', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('fontsize', false, 7);
LegacyUnit.equal(editor.getContent(), '<p><font size="7">text</font></p>');
});
suite.test('Font face', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('fontname', false, 'times');
LegacyUnit.equal(editor.getContent(), '<p><font face="times">text</font></p>');
});
suite.test('Bold', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('bold');
LegacyUnit.equal(editor.getContent(), '<p><b>text</b></p>');
});
suite.test('Italic', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('italic');
LegacyUnit.equal(editor.getContent(), '<p><i>text</i></p>');
});
suite.test('Underline', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('underline');
LegacyUnit.equal(editor.getContent(), '<p><u>text</u></p>');
});
suite.test('Strikethrough', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('strikethrough');
LegacyUnit.equal(editor.getContent(), '<p><strike>text</strike></p>');
});
suite.test('Justifyleft', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('justifyleft');
LegacyUnit.equal(editor.getContent(), '<p align="left">text</p>');
});
suite.test('Justifycenter', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('justifycenter');
LegacyUnit.equal(editor.getContent(), '<p align="center">text</p>');
});
suite.test('Justifyright', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('justifyright');
LegacyUnit.equal(editor.getContent(), '<p align="right">text</p>');
});
suite.test('Justifyfull', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('justifyfull');
LegacyUnit.equal(editor.getContent(), '<p align="justify">text</p>');
});
TinyLoader.setup(function (editor, onSuccess, onFailure) {
Pipeline.async({}, suite.toSteps(editor), onSuccess, onFailure);
}, {
plugins: 'legacyoutput',
indent: false,
skin_url: '/project/js/tinymce/skins/lightgray'
}, success, failure);
}
示例5: Plugin
'browser.tinymce.plugins.legacyoutput.LegacyOutputPluginTest', (success, failure) => {
const suite = LegacyUnit.createSuite();
Plugin();
Theme();
suite.test('TestCase-TBA: LegacyOutput: Setting overrides', function (editor) {
LegacyUnit.equal(editor.getParam('inline_styles'), false);
LegacyUnit.equal(editor.getParam('fontsize_formats'), '8pt=1 10pt=2 12pt=3 14pt=4 18pt=5 24pt=6 36pt=7');
LegacyUnit.equal(editor.getParam('font_formats'), 'Arial=arial,helvetica,sans-serif;');
});
suite.test('TestCase-TBA: LegacyOutput: Font color', function (editor) {
editor.focus();
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('forecolor', false, '#FF0000');
LegacyUnit.equal(editor.getContent().toLowerCase(), '<p><font color="#ff0000">text</font></p>');
});
suite.test('TestCase-TBA: LegacyOutput: Font size', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('fontsize', false, 7);
LegacyUnit.equal(editor.getContent(), '<p><font size="7">text</font></p>');
});
suite.test('TestCase-TBA: LegacyOutput: Font face', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('fontname', false, 'times');
LegacyUnit.equal(editor.getContent(), '<p><font face="times">text</font></p>');
});
suite.test('TestCase-TBA: LegacyOutput: Bold', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('bold');
LegacyUnit.equal(editor.getContent(), '<p><b>text</b></p>');
});
suite.test('TestCase-TBA: LegacyOutput: Italic', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('italic');
LegacyUnit.equal(editor.getContent(), '<p><i>text</i></p>');
});
suite.test('TestCase-TBA: LegacyOutput: Underline', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('underline');
LegacyUnit.equal(editor.getContent(), '<p><u>text</u></p>');
});
suite.test('TestCase-TBA: LegacyOutput: Strikethrough', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('strikethrough');
LegacyUnit.equal(editor.getContent(), '<p><strike>text</strike></p>');
});
suite.test('TestCase-TBA: LegacyOutput: Justifyleft', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('justifyleft');
LegacyUnit.equal(editor.getContent(), '<p align="left">text</p>');
});
suite.test('TestCase-TBA: LegacyOutput: Justifycenter', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('justifycenter');
LegacyUnit.equal(editor.getContent(), '<p align="center">text</p>');
});
suite.test('TestCase-TBA: LegacyOutput: Justifyright', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('justifyright');
LegacyUnit.equal(editor.getContent(), '<p align="right">text</p>');
});
suite.test('TestCase-TBA: LegacyOutput: Justifyfull', function (editor) {
editor.setContent('<p>text</p>');
LegacyUnit.setSelection(editor, 'p', 0, 'p', 4);
editor.execCommand('justifyfull');
LegacyUnit.equal(editor.getContent(), '<p align="justify">text</p>');
});
TinyLoader.setup(function (editor, onSuccess, onFailure) {
Pipeline.async({}, Log.steps('TBA', 'LegacyOutput: Test legacy formatting', suite.toSteps(editor)), onSuccess, onFailure);
}, {
plugins: 'legacyoutput',
indent: false,
base_url: '/project/tinymce/js/tinymce',
font_formats: 'Arial=arial,helvetica,sans-serif;'
}, success, failure);
}