tofuness/Toshocat

View on GitHub

Showing 100 of 100 total issues

Function render has 244 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  render() {
    // Everything needs to eventually be refactored
    const formSchemaGeneral = t.struct({
      minimizeToTray: t.maybe(t.Boolean),
      runOnStartup: t.maybe(t.Boolean),
Severity: Major
Found in src/components/Settings.js - About 1 day to fix

    Function render has 130 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      render() {
        return (
          <div
            className={cx({
              series: true,
    Severity: Major
    Found in src/components/Series.js - About 5 hrs to fix

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

                    <div className="series-table-row">
                      <div className="series-table-row-key">
                        Synonymous title(s)
                      </div>
                      <div className="series-table-row-value">
      Severity: Major
      Found in src/components/Series.js and 2 other locations - About 4 hrs to fix
      src/components/Series.js on lines 101..114
      src/components/Series.js on lines 115..128

      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 134.

      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 3 locations. Consider refactoring.
      Open

                    <div className="series-table-row">
                      <div className="series-table-row-key">
                        Japanese title(s)
                      </div>
                      <div className="series-table-row-value">
      Severity: Major
      Found in src/components/Series.js and 2 other locations - About 4 hrs to fix
      src/components/Series.js on lines 87..100
      src/components/Series.js on lines 101..114

      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 134.

      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 3 locations. Consider refactoring.
      Open

                    <div className="series-table-row">
                      <div className="series-table-row-key">
                        English title(s)
                      </div>
                      <div className="series-table-row-value">
      Severity: Major
      Found in src/components/Series.js and 2 other locations - About 4 hrs to fix
      src/components/Series.js on lines 87..100
      src/components/Series.js on lines 115..128

      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 134.

      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 2 locations. Consider refactoring.
      Open

                    <div className="series-meta">
                      {`${_.upperCase(this.props.series.type)} with
                      ${this.props.series.episodes_total || this.props.series.chapters || '?'}
                      ${utils.isAnime(this.props.series.type) ? 'Episodes' : 'Chapters'}`}
                    </div>
      Severity: Major
      Found in src/components/Series.js and 1 other location - About 4 hrs to fix
      src/components/SearchResult.js on lines 15..19

      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 116.

      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 2 locations. Consider refactoring.
      Open

                <div className="search-result-meta">
                  {`${_.upperCase(this.props.series.type)} with
                  ${this.props.series.episodes_total || this.props.series.chapters || '?'}
                  ${utils.isAnime(this.props.series.type) ? 'Episodes' : 'Chapters'}`}
                </div>
      Severity: Major
      Found in src/components/SearchResult.js and 1 other location - About 4 hrs to fix
      src/components/Series.js on lines 64..68

      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 116.

      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 2 locations. Consider refactoring.
      Open

                    <span
                      className={cx({
                        'calendar-featured-series-airtime': true,
                        isNow: moment(this.props.series.airdate)
                                .isBetween(
      Severity: Major
      Found in src/components/CalendarFeaturedSeries.js and 1 other location - About 3 hrs to fix
      src/components/CalendarSeries.js on lines 18..29

      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 111.

      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 2 locations. Consider refactoring.
      Open

                <span
                  className={cx({
                    'calendar-series-airtime': true,
                    isNow: moment(this.props.series.airdate)
                            .isBetween(
      Severity: Major
      Found in src/components/CalendarSeries.js and 1 other location - About 3 hrs to fix
      src/components/CalendarFeaturedSeries.js on lines 22..33

      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 111.

      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

      File Settings.js has 324 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      import _ from 'lodash';
      import t from 'tcomb-form';
      import cx from 'classnames';
      import React, { Component, PropTypes } from 'react';
      
      
      Severity: Minor
      Found in src/components/Settings.js - About 3 hrs to fix

        Function render has 91 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          render() {
            return (
              <div
                ref="listItem"
                className={cx({
        Severity: Major
        Found in src/components/ListItem.js - About 3 hrs to fix

          Function render has 79 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            render() {
              const statusOptions = [
                {
                  text: 'Current',
                  value: 'current'
          Severity: Major
          Found in src/components/UI/Picker.js - About 3 hrs to fix

            Function render has 72 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              render() {
                const ratingIcons = [];
            
                let ratingOverLabel = this.state.ratingOver !== null
                ? this.state.ratingOver.toFixed(1)
            Severity: Major
            Found in src/components/UI/Rating.js - About 2 hrs to fix

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

                animateSuccess() {
                  $(this.refs.successIcon).velocity({
                    translateY: [6, 30]
                  }, {
                    easing: 'easeOutExpo',
              Severity: Major
              Found in src/components/PickerButton.js and 1 other location - About 2 hrs to fix
              src/components/PickerButton.js on lines 100..108

              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 92.

              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 2 locations. Consider refactoring.
              Open

                animateRemove() {
                  $(this.refs.removeIcon).velocity({
                    translateY: [7, 30]
                  }, {
                    easing: 'easeOutExpo',
              Severity: Major
              Found in src/components/PickerButton.js and 1 other location - About 2 hrs to fix
              src/components/PickerButton.js on lines 91..99

              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 92.

              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

              Function render has 67 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                render() {
                  return (
                    <div className="day">
                      <div
                        ref="dayInfo"
              Severity: Major
              Found in src/components/CalendarDay.js - About 2 hrs to fix

                Function filePickerTemplate has 67 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    const filePickerTemplate = (locals) => {
                      const selectFolder = (e) => {
                        e.preventDefault();
                        const { dialog } = remote;
                        dialog.showOpenDialog({
                Severity: Major
                Found in src/components/Settings.js - About 2 hrs to fix

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

                            <form onSubmit={this.handleSubmit}>
                              <t.form.Form
                                ref="mediaForm"
                                type={formSchemaMedia}
                                options={formOptions}
                  Severity: Major
                  Found in src/components/Settings.js and 1 other location - About 2 hrs to fix
                  src/components/Settings.js on lines 245..253

                  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 84.

                  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 2 locations. Consider refactoring.
                  Open

                            <form onSubmit={this.handleSubmit}>
                              <t.form.Form
                                ref="generalForm"
                                type={formSchemaGeneral}
                                options={formOptions}
                  Severity: Major
                  Found in src/components/Settings.js and 1 other location - About 2 hrs to fix
                  src/components/Settings.js on lines 257..265

                  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 84.

                  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

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

                        request
                        .get(`${this.APIBase}/list/${type}/${this.credentials.username}`)
                        .end((err, res) => {
                          if (err) {
                            reject(err);
                  Severity: Major
                  Found in src/syncers/HummingbirdSyncer.js and 1 other location - About 2 hrs to fix
                  src/syncers/MyAnimeListSyncer.js on lines 31..41

                  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 82.

                  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

                  Severity
                  Category
                  Status
                  Source
                  Language