crane-cloud/frontend

View on GitHub
src/pages/ProjectSettingsPage/index.jsx

Summary

Maintainability
D
2 days
Test Coverage
F
0%

Function handleSubmit has a Cognitive Complexity of 60 (exceeds 5 allowed). Consider refactoring.
Open

  handleSubmit() {
    const {
      projectName,
      projectDescription,
      projectOrganisation,
Severity: Minor
Found in src/pages/ProjectSettingsPage/index.jsx - About 1 day 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

ProjectSettingsPage has 43 functions (exceeds 20 allowed). Consider refactoring.
Open

class ProjectSettingsPage extends React.Component {
  constructor(props) {
    super(props);
    const projectInfo = { ...JSON.parse(localStorage.getItem("project")) };
    const { name, description, organisation, project_type, age } = projectInfo;
Severity: Minor
Found in src/pages/ProjectSettingsPage/index.jsx - About 5 hrs to fix

    Function render has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring.
    Open

      render() {
        const {
          match: { params },
          isDeleted,
          isUpdated,
    Severity: Minor
    Found in src/pages/ProjectSettingsPage/index.jsx - About 4 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

    Function handleTypeSelectChange has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      handleTypeSelectChange(selected) {
        const { othersBool } = this.state;
        if (selected.id === 6) {
          if (!othersBool) {
            this.setState({ othersBool: true });
    Severity: Minor
    Found in src/pages/ProjectSettingsPage/index.jsx - About 25 mins 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

    There are no issues that match your filters.

    Category
    Status