本文整理汇总了TypeScript中draft-js.RichUtils类的典型用法代码示例。如果您正苦于以下问题:TypeScript RichUtils类的具体用法?TypeScript RichUtils怎么用?TypeScript RichUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了RichUtils类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: toggleStyle
return function toggleStyle(styleName: string) {
const {getEditorState, setEditorState} = callbacks;
const editorState = getEditorState();
const selection = editorState.getSelection();
setEditorState(RichUtils.toggleInlineStyle(
getEditorState(),
styleName
));
}
开发者ID:react-component,项目名称:editor-utils,代码行数:9,代码来源:getToggleStyleFunc.ts
示例2: resetHighlightForCurrentSelection
export function resetHighlightForCurrentSelection(editorState, style) {
const type = getHighlightType(style);
const selection = editorState.getSelection();
const content = editorState.getCurrentContent();
const block = content.getBlockForKey(selection.getStartKey());
const offset = selection.getStartOffset() === block.getLength() - 1 ? 1 : 0;
const styleBefore = getHighlightStyleAtOffset(editorState, [type], selection, -1);
const styleAfter = getHighlightStyleAtOffset(editorState, [type], selection, offset, true);
if (styleBefore !== style && styleAfter !== style) {
return removeHighlight(editorState, style);
}
return RichUtils.toggleInlineStyle(editorState, style);
}
开发者ID:jerome-poisson,项目名称:superdesk-client-core,代码行数:15,代码来源:highlights.ts
示例3:
export const removeLinks = (editorState: EditorState) => {
return RichUtils.toggleLink(editorState, editorState.getSelection(), null)
}
开发者ID:joeyAghion,项目名称:positron,代码行数:3,代码来源:utils.ts
示例4: addHighlight
export function addHighlight(editorState, type, data, single = false) {
let nextEditorState = editorState;
const initialSelection = nextEditorState.getSelection().merge({
hasFocus: true,
});
const highlightsState = getHighlightsState(nextEditorState);
if (highlightTypeValid(type) !== true) {
throw new Error('Highlight type invalid');
}
if (single && selectionHasType(editorState, type)) {
return editorState;
}
let newIndex = 0;
if (highlightsState.lastHighlightIds && has(highlightsState.lastHighlightIds, type)) {
newIndex = highlightsState.lastHighlightIds[type] + 1;
}
const styleName = type + '-' + newIndex;
const newHighlightsState = {
lastHighlightIds: {
...highlightsState.lastHighlightIds,
[type]: newIndex,
},
highlightsStyleMap: {
...highlightsState.highlightsStyleMap,
[styleName]: availableHighlights[type],
},
highlightsData: {
...highlightsState.highlightsData,
[styleName]: {
...data,
type,
},
},
};
nextEditorState = RichUtils.toggleInlineStyle(nextEditorState, styleName);
// prevent recording the changes to undo stack so user doesn't have to undo twice
// for the highlight to be completelly(both inline styles and related data) undone
nextEditorState = EditorState.set(nextEditorState, {allowUndo: false});
nextEditorState = setHighlightsState(nextEditorState, newHighlightsState);
// make sure the cursor is at the right position after undo
// it used to always end up at the position 0 of the first block
// when undoing after changing block data with `allowUndo` set to false
nextEditorState = EditorState.push(
nextEditorState,
nextEditorState.getCurrentContent().set('selectionBefore', initialSelection),
'change-block-data',
);
// restore focus lost after clicking a toolbar action or entering highlight data OR pushing editorState
// so the selection is visible after undo
nextEditorState = EditorState.acceptSelection(
nextEditorState,
initialSelection,
);
nextEditorState = EditorState.set(nextEditorState, {allowUndo: true});
return nextEditorState;
}
开发者ID:jerome-poisson,项目名称:superdesk-client-core,代码行数:70,代码来源:highlights.ts
注:本文中的draft-js.RichUtils类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论