Showing 8 of 88 total issues
Function hidePanel
has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring. Open
hidePanel(isArrowTowardsLeft) {
this.mentionPanel.classList.remove(`medium-editor-mention-panel-active`);
const extraActivePanelClassName = this.extraActivePanelClassName || this.extraActiveClassName;
if (extraActivePanelClassName) {
- 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
File index.js
has 267 lines of code (exceeds 250 allowed). Consider refactoring. Open
import {
default as MediumEditor,
} from "medium-editor";
function last(text) {
Function hidePanel
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
hidePanel(isArrowTowardsLeft) {
this.mentionPanel.classList.remove(`medium-editor-mention-panel-active`);
const extraActivePanelClassName = this.extraActivePanelClassName || this.extraActiveClassName;
if (extraActivePanelClassName) {
Function componentDidMount
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
componentDidMount () {
const MediumEditor = require("medium-editor");
const { TCMention } = require("medium-editor-tc-mention");
this.editor = new MediumEditor(this.refs.editable, {
Function wrapWordInMentionAt
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
wrapWordInMentionAt() {
const selection = this.document.getSelection();
if (!selection.rangeCount) {
return;
}
Function getWordFromSelection
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
getWordFromSelection(target, initialDiff) {
const {
startContainer,
startOffset,
endContainer,
Function getWordFromSelection
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
getWordFromSelection(target, initialDiff) {
const {
startContainer,
startOffset,
endContainer,
- 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 wrapWordInMentionAt
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
wrapWordInMentionAt() {
const selection = this.document.getSelection();
if (!selection.rangeCount) {
return;
}
- 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"