new-client/src/components/MessageRenderer.tsx

Summary

Maintainability
C
1 day
Test Coverage

Function MessageRow has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

const MessageRow: FunctionComponent<MessageRowProps> = ({ message, isUnread }: MessageRowProps) => {
  const modal = useContext(ModalContext);
  const { windowStore, userStore } = useContext(ServerContext);
  const [isFocused, setFocused] = useState<boolean>(false);
  const [editedBody, setEditedBody] = useState<string | null>(null);
Severity: Minor
Found in new-client/src/components/MessageRenderer.tsx - About 3 hrs to fix

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 MessageRenderer.tsx has 271 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React, { FunctionComponent, useContext, useState, KeyboardEvent } from 'react';
import {
  Button,
  Box,
  Flex,
Severity: Minor
Found in new-client/src/components/MessageRenderer.tsx - About 2 hrs to fix

    Function renderMessage has 34 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      const renderMessage = () => {
        const color = message.isFromMe ? 'blue.600' : undefined;
        const nickColor = message.isFromMe ? 'blue.600' : '#617eb5';
    
        if (editedBody) {
    Severity: Minor
    Found in new-client/src/components/MessageRenderer.tsx - About 1 hr to fix

      Avoid too many return statements within this function.
      Open

          return message.body;
      Severity: Major
      Found in new-client/src/components/MessageRenderer.tsx - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

              return <Text color="red.600">{message.body}</Text>;
        Severity: Major
        Found in new-client/src/components/MessageRenderer.tsx - About 30 mins to fix

          There are no issues that match your filters.

          Category
          Status