KyivKrishnaAcademy/ved_akadem_students

View on GitHub

Showing 64 of 64 total issues

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

GeneralSearch.propTypes = {
  defaultValue: PropTypes.string.isRequired,
  placeholder: PropTypes.string.isRequired,
  buttons: PropTypes.shape({
    tooltips: PropTypes.shape({
client/app/bundles/advanced-search/components/text-search.jsx on lines 45..60

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

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

TextSearch.propTypes = {
  defaultValue: PropTypes.string.isRequired,
  fieldName: PropTypes.string.isRequired,
  buttons: PropTypes.shape({
    tooltips: PropTypes.shape({
client/app/bundles/advanced-search/components/general-search.jsx on lines 42..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 170.

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 120 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  render() {
    const {
      data: { people, defaultPhoto, localization, selectedPersonIndex },
      actions: { nextPerson, previousPerson },
    } = this.props;

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

        examination: PropTypes.shape({
          id: PropTypes.number.isRequired,
          title: PropTypes.string.isRequired,
          maxResult: PropTypes.number.isRequired,
          minResult: PropTypes.number.isRequired,
    client/app/bundles/group-performance/components/group-performance-widget.jsx on lines 13..21

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

    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

        examinations: PropTypes.arrayOf(PropTypes.shape({
          id: PropTypes.number.isRequired,
          title: PropTypes.string.isRequired,
          maxResult: PropTypes.number.isRequired,
          minResult: PropTypes.number.isRequired,
    client/app/bundles/group-performance/components/performance-row.jsx on lines 10..18

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

    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 82 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      render() {
        const {
          data: { people, loading, editStudentProfileId, examinations, localization, editExaminationId },
        } = this.props;
    
    

      Class Person has 26 methods (exceeds 20 allowed). Consider refactoring.
      Open

      class Person < ApplicationRecord
        include Ilikable
      
        class SymbolWrapper
          def self.load(string)
      Severity: Minor
      Found in app/models/person.rb - About 3 hrs to fix

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

            <a
              type="button"
              onClick={onChange('past')}
              className={`btn btn-sm btn-info${direction === 'past' ? ' active' : ''}`}
            >
        Severity: Major
        Found in client/app/bundles/ScheduleList/components/TimesSelector.jsx and 1 other location - About 2 hrs to fix
        client/app/bundles/ScheduleList/components/TimesSelector.jsx on lines 15..23

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

        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

            <a
              type="button"
              onClick={onChange('future')}
              className={`btn btn-sm btn-info${direction === 'future' ? ' active' : ''}`}
            >
        Severity: Major
        Found in client/app/bundles/ScheduleList/components/TimesSelector.jsx and 1 other location - About 2 hrs to fix
        client/app/bundles/ScheduleList/components/TimesSelector.jsx on lines 5..13

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

        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

                case 'general-search':
                  return (
                    <GeneralSearch
                      key={id}
                      buttons={this.props.buttons}
        client/app/bundles/advanced-search/containers/advanced-search.jsx on lines 146..157

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

        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

                case 'text':
                  return (
                    <TextSearch
                      key={id}
                      buttons={this.props.buttons}
        client/app/bundles/advanced-search/containers/advanced-search.jsx on lines 134..145

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

        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 58 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          render() {
            const {
              people,
              loading,
              canManage,
        Severity: Major
        Found in client/app/bundles/group-attendance/containers/group-attendance.jsx - About 2 hrs to fix

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

                classSchedules: PropTypes.arrayOf(PropTypes.shape({
                  id: PropTypes.number.isRequired,
                  date: PropTypes.string.isRequired,
                  courseTitle: PropTypes.string.isRequired,
                  attendances: PropTypes.object.isRequired,
          client/app/bundles/group-attendance/components/group-attendance-widget.jsx on lines 15..20

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

          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

              classSchedules: PropTypes.arrayOf(PropTypes.shape({
                id: PropTypes.number.isRequired,
                date: PropTypes.string.isRequired,
                courseTitle: PropTypes.string.isRequired,
                attendances: PropTypes.object.isRequired,
          client/app/bundles/group-attendance/components/attendance-submitter.jsx on lines 16..21

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

          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 advanced-search.jsx has 255 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          import qs from 'qs';
          import pipe from 'pipe-functions';
          import React, { PropTypes } from 'react';
          
          import bindAll from '../../../lib/helpers/bind-all';
          Severity: Minor
          Found in client/app/bundles/advanced-search/containers/advanced-search.jsx - About 2 hrs to fix

            Function _shownFilters has 52 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              _shownFilters() {
                const searchState = this.state.search;
                const configs = this.props.filters;
            
                // Skipping gaps in the ids series
            Severity: Major
            Found in client/app/bundles/advanced-search/containers/advanced-search.jsx - About 2 hrs to fix

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

                render() {
                  const { dispatch, groupPerformanceStore } = this.props;
                  const actions = bindActionCreators(groupPerformanceActionCreators, dispatch);
                  const {
                    people,
              Severity: Major
              Found in client/app/bundles/group-performance/containers/group-performance.jsx - About 2 hrs to fix

                Function groupPerformanceReducer has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                export default function groupPerformanceReducer(state = initialState, action) {
                  switch (action.type) {
                    case actionTypes.SHOW_LOADER:
                      return {
                        ...state,

                  Function _initDefaultFilters has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    _initDefaultFilters(state) {
                      const config = this.props.filters;
                      const searchQuery = state.urlQuery.search || [];
                      const searchState = {};
                      const firstValues = Object.fromEntries(
                  Severity: Minor
                  Found in client/app/bundles/advanced-search/containers/advanced-search.jsx - About 1 hr to fix

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

                      render() {
                        const {
                          canManage,
                          peopleIds,
                          examination,
                    Severity: Minor
                    Found in client/app/bundles/group-performance/components/performance-row.jsx - About 1 hr to fix
                      Severity
                      Category
                      Status
                      Source
                      Language