本文整理汇总了TypeScript中@ephox/katamari.Cell函数的典型用法代码示例。如果您正苦于以下问题:TypeScript Cell函数的具体用法?TypeScript Cell怎么用?TypeScript Cell使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了Cell函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: Cell
const setupEvents = (editor: Editor) => {
const contentWindow = editor.getWin();
const initialDocEle = editor.getDoc().documentElement;
const lastWindowDimensions = Cell(Position(contentWindow.innerWidth, contentWindow.innerHeight));
const lastDocumentDimensions = Cell(Position(initialDocEle.offsetWidth, initialDocEle.offsetHeight));
const resize = () => {
// Don't use the initial doc ele, as there's a small chance it may have changed
const docEle = editor.getDoc().documentElement;
// Check if the window or document dimensions have changed and if so then trigger a content resize event
const outer = lastWindowDimensions.get();
const inner = lastDocumentDimensions.get();
if (outer.left() !== contentWindow.innerWidth || outer.top() !== contentWindow.innerHeight) {
lastWindowDimensions.set(Position(contentWindow.innerWidth, contentWindow.innerHeight));
Events.fireResizeContent(editor);
} else if (inner.left() !== docEle.offsetWidth || inner.top() !== docEle.offsetHeight) {
lastDocumentDimensions.set(Position(docEle.offsetWidth, docEle.offsetHeight));
Events.fireResizeContent(editor);
}
};
DOM.bind(contentWindow, 'resize', resize);
// Bind to async load events and trigger a content resize event if the size has changed
const elementLoad = DomEvent.capture(Element.fromDom(editor.getBody()), 'load', resize);
editor.on('remove', () => {
elementLoad.unbind();
DOM.unbind(contentWindow, 'resize', resize);
});
};
开发者ID:tinymce,项目名称:tinymce,代码行数:33,代码来源:Iframe.ts
示例2: function
PluginManager.add('contextmenu', function (editor) {
const menu = Cell(null), visibleState = Cell(false);
Bind.setup(editor, visibleState, menu);
return Api.get(visibleState);
});
开发者ID:aha-app,项目名称:tinymce-word-paste-filter,代码行数:7,代码来源:Plugin.ts
示例3: function
PluginManager.add('fullpage', function (editor) {
const headState = Cell(''), footState = Cell('');
Commands.register(editor, headState);
Buttons.register(editor);
FilterContent.setup(editor, headState, footState);
});
开发者ID:danielpunkass,项目名称:tinymce,代码行数:7,代码来源:Plugin.ts
示例4: Cell
export const SelectionTargets = (editor: Editor, selections: Selections) => {
const targets = Cell<Option<Targets>>(Option.none());
const changeHandlers = Cell([]);
const findTargets = (): Option<Targets> => {
return TableSelection.getSelectionStartCellOrCaption(editor).bind((cellOrCaption) => {
const table = TableLookup.table(cellOrCaption);
return table.map((table) => {
if (Node.name(cellOrCaption) === 'caption') {
return TableTargets.notCell(cellOrCaption);
} else {
return TableTargets.forMenu(selections, table, cellOrCaption);
}
});
});
};
const resetTargets = () => {
// Reset the targets
targets.set(Thunk.cached(findTargets)());
// Trigger change handlers
Arr.each(changeHandlers.get(), (handler) => handler());
};
const onSetup = (api, isDisabled: (targets: Targets) => boolean) => {
const handler = () => targets.get().fold(() => {
api.setDisabled(true);
}, (targets) => {
api.setDisabled(isDisabled(targets));
});
// Execute the handler to set the initial state
handler();
// Register the handler so we can update the state when resetting targets
changeHandlers.set(changeHandlers.get().concat([handler]));
return () => {
changeHandlers.set(Arr.filter(changeHandlers.get(), (h) => h !== handler));
};
};
const onSetupTable = (api) => onSetup(api, (_) => false);
const onSetupCellOrRow = (api) => onSetup(api, (targets) => Node.name(targets.element()) === 'caption');
const onSetupMergeable = (api) => onSetup(api, (targets) => targets.mergable().isNone());
const onSetupUnmergeable = (api) => onSetup(api, (targets) => targets.unmergable().isNone());
editor.on('NodeChange', resetTargets);
return {
onSetupTable,
onSetupCellOrRow,
onSetupMergeable,
onSetupUnmergeable,
resetTargets,
targets: () => targets.get()
};
};
开发者ID:tinymce,项目名称:tinymce,代码行数:59,代码来源:SelectionTargets.ts
示例5: function
PluginManager.add('imagetools', function (editor) {
const imageUploadTimerState = Cell(0);
const lastSelectedImageState = Cell(null);
Commands.register(editor, imageUploadTimerState);
Buttons.register(editor);
ContextToolbar.register(editor);
UploadSelectedImage.setup(editor, imageUploadTimerState, lastSelectedImageState);
});
开发者ID:danielpunkass,项目名称:tinymce,代码行数:10,代码来源:Plugin.ts
示例6: registerCommands
const register = (editor: Editor) => {
registerCommands(editor);
const lastForeColor = Cell(null);
const lastBackColor = Cell(null);
registerTextColorButton(editor, 'forecolor', 'forecolor', 'Text color', lastForeColor);
registerTextColorButton(editor, 'backcolor', 'hilitecolor', 'Background color', lastBackColor);
registerTextColorMenuItem(editor, 'forecolor', 'forecolor', 'Text color');
registerTextColorMenuItem(editor, 'backcolor', 'hilitecolor', 'Background color');
};
开发者ID:tinymce,项目名称:tinymce,代码行数:10,代码来源:ColorSwatch.ts
示例7: function
export default function () {
const store = TestHelpers.TestStore();
const editorState = {
start: Cell(null),
content: Cell('')
};
const sPrepareState = function (node, content) {
return Step.sync(function () {
editorState.start.set(node);
editorState.content.set(content);
});
};
const editor = {
selection: {
getStart: editorState.start.get,
getContent: editorState.content.get,
select: Fun.noop
},
insertContent (data) {
store.adder({ method: 'insertContent', data })();
},
execCommand (name, ui, args) {
store.adder({ method: 'execCommand', data: Objects.wrap(name, args) })();
},
dom: {
createHTML (tag, attributes, innerText) {
return { tag, attributes, innerText };
},
encode: Fun.identity
},
focus: Fun.noop,
ui: {
registry: {
getAll: () => {
return {
icons: {}
};
}
}
}
};
return {
editor: Fun.constant(editor),
adder: store.adder,
assertEq: store.assertEq,
sAssertEq: store.sAssertEq,
sClear: store.sClear,
sPrepareState
};
}
开发者ID:tinymce,项目名称:tinymce,代码行数:55,代码来源:TestEditor.ts
示例8: Cell
export const renderCustomEditor = (spec: CustomEditorFoo): SimpleSpec => {
const editorApi = Cell(Option.none());
const memReplaced = Memento.record({
dom: {
tag: spec.tag
}
});
const initialValue = Cell(Option.none());
return {
dom: {
tag: 'div',
classes: [ 'tox-custom-editor' ]
},
behaviours: Behaviour.derive([
AddEventsBehaviour.config('editor-foo-events', [
AlloyEvents.runOnAttached((component) => {
memReplaced.getOpt(component).each((ta) => {
spec.init(ta.element().dom()).then((ea) => {
initialValue.get().each((cvalue) => {
ea.setValue(cvalue);
});
initialValue.set(Option.none());
editorApi.set(Option.some(ea));
});
});
})
]),
Representing.config({
store: {
mode: 'manual',
getValue: () => editorApi.get().fold(
() => initialValue.get().getOr(''),
(ed) => ed.getValue()
),
setValue: (component, value) => {
editorApi.get().fold(
() => {
initialValue.set(Option.some(value));
},
(ed) => ed.setValue(value)
);
}
}
}),
ComposingConfigs.self()
]),
components: [memReplaced.asSpec()]
};
};
开发者ID:tinymce,项目名称:tinymce,代码行数:54,代码来源:CustomEditor.ts
示例9: function
PluginManager.add('spellchecker', function (editor, pluginUrl) {
if (DetectProPlugin.hasProPlugin(editor) === false) {
const startedState = Cell(false);
const currentLanguageState = Cell(Settings.getLanguage(editor));
const textMatcherState = Cell(null);
const lastSuggestionsState = Cell({});
Buttons.register(editor, pluginUrl, startedState, textMatcherState, currentLanguageState, lastSuggestionsState);
SuggestionsMenu.setup(editor, pluginUrl, lastSuggestionsState, startedState, textMatcherState, currentLanguageState);
Commands.register(editor, pluginUrl, startedState, textMatcherState, lastSuggestionsState, currentLanguageState);
return Api.get(editor, startedState, lastSuggestionsState, textMatcherState, pluginUrl);
}
});
开发者ID:abstask,项目名称:tinymce,代码行数:14,代码来源:Plugin.ts
示例10: Cell
const getDynamicSource = (isSandbox): IFrameSourcing => {
const cachedValue = Cell('');
return {
getValue: (frameComponent: AlloyComponent): string => {
// Ideally we should fetch data from the iframe...innerHtml, this triggers Corrs errors
return cachedValue.get();
},
setValue: (frameComponent: AlloyComponent, html: string) => {
if (!isSandbox) {
Attr.set(frameComponent.element(), 'src', 'javascript:\'\'');
// IE 6-11 doesn't support data uris on iframeComponents
// and Edge only supports upto ~4000 chars in data uris
// so I guess they will have to be less secure since we can't sandbox on those
// TODO: Use sandbox if future versions of IE/Edge supports iframeComponents with data: uris.
const doc = frameComponent.element().dom().contentWindow.document;
doc.open();
doc.write(html);
doc.close();
} else {
Attr.set(frameComponent.element(), 'src', 'data:text/html;charset=utf-8,' + encodeURIComponent(html));
}
cachedValue.set(html);
}
};
};
开发者ID:tinymce,项目名称:tinymce,代码行数:28,代码来源:IFrame.ts
注:本文中的@ephox/katamari.Cell函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论