scripts/core/editor3/reducers/editor3.tsx
File editor3.tsx
has 371 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
import {
RichUtils,
EditorState,
ContentState,
Modifier,
Function editor3
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const editor3 = (state: IEditorStore, action) => {
switch (action.type) {
case 'EDITOR_CHANGE_STATE':
return onChange(state, action.payload.editorState, action.payload.force, false, action.payload.skipOnChange);
case 'EDITOR_PUSH_STATE':
Function getAbbreviationText
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const getAbbreviationText = (block, offset) => {
const text = block.getText();
const length = block.getLength();
let start = offset;
let end = offset;
Function onTab
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
const onTab = (state: IEditorStore, e) => {
const {editorState, editorFormat = []} = state;
const selection = editorState.getSelection() as SelectionState;
const moreThanOneBlockSelected =
selection.getStartKey() !== selection.getEndKey();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function getAbbreviationText
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
const getAbbreviationText = (block, offset) => {
const text = block.getText();
const length = block.getLength();
let start = offset;
let end = offset;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"