lancetw/react-isomorphic-bundle

View on GitHub
src/shared/components/TWBLoginHandler.js

Summary

Maintainability
C
1 day
Test Coverage

Useless constructor.
Open

  constructor (props) {

Disallow unnecessary constructor (no-useless-constructor)

ES2015 provides a default class constructor if one is not specified. As such, it is unnecessary to provide an empty constructor or one that simply delegates into its parent class, as in the following examples:

class A {
    constructor () {
    }
}

class A extends B {
    constructor (value) {
      super(value);
    }
}

Rule Details

This rule flags class constructors that can be safely removed without changing how the class works.

Examples

Examples of incorrect code for this rule:

/*eslint no-useless-constructor: "error"*/
/*eslint-env es6*/

class A {
    constructor () {
    }
}

class A extends B {
    constructor (...args) {
      super(...args);
    }
}

Examples of correct code for this rule:

/*eslint no-useless-constructor: "error"*/

class A { }

class A {
    constructor () {
        doSomething();
    }
}

class A extends B {
    constructor() {
        super('foo');
    }
}

class A extends B {
    constructor() {
        super();
        doSomething();
    }
}

When Not To Use It

If you don't want to be notified about unnecessary constructors, you can safely disable this rule. Source: http://eslint.org/docs/rules/

Similar blocks of code found in 2 locations. Consider refactoring.
Open

class LoginHandler extends Component {

  static propTypes = {
    dispatch: PropTypes.func.isRequired,
    _T: PropTypes.func.isRequired,
Severity: Major
Found in src/shared/components/TWBLoginHandler.js and 1 other location - About 1 day to fix
src/shared/components/LoginHandler.js on lines 11..48

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 260.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 4 locations. Consider refactoring.
Open

export default connect(state => ({
  auth: state.auth
}))(connectI18n(locale => ({
  options: TWBLoginFormOptions(locale)
}))(LoginHandler))
Severity: Major
Found in src/shared/components/TWBLoginHandler.js and 3 other locations - About 35 mins to fix
src/shared/components/ChangePasswordHandler.js on lines 53..57
src/shared/components/LoginHandler.js on lines 50..54
src/shared/components/SignupHandler.js on lines 53..57

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 47.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Absolute imports should come before relative imports.
Open

import { TWBLoginFormOptions } from 'shared/utils/forms'

For more information visit Source: http://eslint.org/docs/rules/

JSX not allowed in files with extension '.js'
Open

      <div>

For more information visit Source: http://eslint.org/docs/rules/

Absolute imports should come before relative imports.
Open

import connectI18n from 'shared/components/addon/connect-i18n'

For more information visit Source: http://eslint.org/docs/rules/

Absolute imports should come before relative imports.
Open

import { connect } from 'react-redux'

For more information visit Source: http://eslint.org/docs/rules/

Absolute imports should come before relative imports.
Open

import Helmet from 'react-helmet'

For more information visit Source: http://eslint.org/docs/rules/

Absolute imports should come before relative imports.
Open

import { bindActionCreators } from 'redux'

For more information visit Source: http://eslint.org/docs/rules/

The closing bracket must be aligned with the line containing the opening tag (expected column 9 on the next line)
Open

          options={TWBLoginFormOptions(this.props.defaultLocale)} />

For more information visit Source: http://eslint.org/docs/rules/

There are no issues that match your filters.

Category
Status