AugurProject/augur-ui

View on GitHub

Showing 1,757 of 1,757 total issues

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

  describe("current time is in interval", () => {
    test("should calculate percentage elapsed using currentTimestamp", () => {
      const wrapper = shallow(
        <Cmp
          startDate={startTimeAsDate}
src/modules/market/components/common/time-remaining-indicator/time-remaining-indicator.test.jsx on lines 41..54

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

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

  render() {
    const {
      isMobile,
      isLogged,
      defaultMobileClick,
Severity: Major
Found in src/modules/app/components/side-nav/side-nav.jsx - About 4 hrs to fix

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

      render() {
        const {
          accountREP,
          history,
          isLogged,
    Severity: Major
    Found in src/modules/forking/components/migrate-rep/migrate-rep.jsx - About 4 hrs to fix

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

        render() {
          const {
            history,
            isLogged,
            location,

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

          static propTypes = {
            loginWithTrezor: PropTypes.func.isRequired,
            showAdvanced: PropTypes.bool.isRequired,
            showError: PropTypes.func.isRequired,
            hideError: PropTypes.func.isRequired,
        src/modules/create-market/components/create-market-form-define/create-market-form-define.jsx on lines 26..36
        src/modules/modal/components/modal-claim-reporting-fees-forked-market.jsx on lines 10..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 123.

        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

          static propTypes = {
            categories: PropTypes.array.isRequired,
            newMarket: PropTypes.object.isRequired,
            isValid: PropTypes.func.isRequired,
            keyPressed: PropTypes.func.isRequired,
        src/modules/auth/components/trezor-connect/trezor-connect.jsx on lines 15..25
        src/modules/modal/components/modal-claim-reporting-fees-forked-market.jsx on lines 10..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 123.

        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

          static propTypes = {
            claimReportingFeesForkedMarket: PropTypes.func.isRequired,
            closeModal: PropTypes.func.isRequired,
            recipient: PropTypes.string.isRequired,
            forkedMarket: PropTypes.object.isRequired,
        src/modules/auth/components/trezor-connect/trezor-connect.jsx on lines 15..25
        src/modules/create-market/components/create-market-form-define/create-market-form-define.jsx on lines 26..36

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

        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

                  connectAugur({}, mockEnv, true, (err, connInfo) => {
                    expect(err).toBeUndefined();
                    expect(connInfo).toBeUndefined();
                    expect(store.getActions()).deepEqual([
                      { type: "UPDATE_CONNECTION_STATUS" },
        Severity: Major
        Found in src/modules/app/actions/init-augur.test.js and 1 other location - About 4 hrs to fix
        src/modules/app/actions/init-augur.test.js on lines 116..130

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

        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

                initAugur({}, {}, (err, connInfo) => {
                  expect(err).toBeUndefined();
                  expect(connInfo).toBeUndefined();
                  expect(store.getActions()).deepEqual([
                    { type: "UPDATE_ENV" },
        Severity: Major
        Found in src/modules/app/actions/init-augur.test.js and 1 other location - About 4 hrs to fix
        src/modules/app/actions/init-augur.test.js on lines 249..263

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

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

          render() {
            const {
              availableFunds,
              clearTradeInProgress,
              closeModal,
        Severity: Major
        Found in src/modules/trading/components/trading/trading.jsx - About 4 hrs to fix

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

                        <AccountUniverseDescription
                          switchUniverse={switchUniverse}
                          getUniverses={this.getUniverses}
                          isCurrentUniverse={false}
                          universeDescription={parent.description}
          src/modules/account/components/account-universes/account-universes.jsx on lines 117..129

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

          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

                            <AccountUniverseDescription
                              switchUniverse={switchUniverse}
                              getUniverses={this.getUniverses}
                              isCurrentUniverse={false}
                              universeDescription={universeInfo.description}
          src/modules/account/components/account-universes/account-universes.jsx on lines 76..88

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

          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 updatePriceBounds has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
          Open

            updatePriceBounds(
              type,
              selectedOutcome,
              selectedSide,
              orderBook,

          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 reporting-report-form.jsx has 339 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          /* eslint jsx-a11y/label-has-for: 0 */
          
          import React, { Component } from "react";
          import PropTypes from "prop-types";
          import classNames from "classnames";

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

              render() {
                const { eth, isMobileSmall, rep } = this.props;
                const s = this.state;
            
                return (
            Severity: Major
            Found in src/modules/account/components/account-withdraw/account-withdraw.jsx - About 4 hrs to fix

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

                  const actual = liquidityOrders(
                    {
                      marketId: {
                        1: [
                          {
              Severity: Major
              Found in src/modules/orders/reducers/liquidity-orders.test.js and 1 other location - About 4 hrs to fix
              src/modules/orders/reducers/liquidity-orders.test.js on lines 203..232

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

              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

                  const actual = liquidityOrders(
                    {
                      marketId: {
                        1: [
                          {
              Severity: Major
              Found in src/modules/orders/reducers/liquidity-orders.test.js and 1 other location - About 4 hrs to fix
              src/modules/orders/reducers/liquidity-orders.test.js on lines 133..162

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

              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 liquidity-orders.test.js has 337 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              import {
                UPDATE_LIQUIDITY_ORDER,
                ADD_MARKET_LIQUIDITY_ORDERS,
                REMOVE_LIQUIDITY_ORDER,
                LOAD_PENDING_LIQUIDITY_ORDERS,
              Severity: Minor
              Found in src/modules/orders/reducers/liquidity-orders.test.js - About 4 hrs to fix

                Function cancelOpenOrdersInClosedMarkets has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
                Open

                export const cancelOpenOrdersInClosedMarkets = () => dispatch => {
                  const openOrders = getOpenOrders();
                  if (openOrders && openOrders.length) {
                    const numMarketsWithOpenOrders = openOrders.length;
                    for (let i = 0; i < numMarketsWithOpenOrders; ++i) {
                Severity: Minor
                Found in src/modules/orders/actions/cancel-order.js - 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 loadNotifications has 101 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                export function loadNotifications() {
                  return (dispatch, getState) => {
                    const { notifications, transactionsData } = store.getState();
                    for (let i = 0; i < notifications.length; i++) {
                      if (notifications[i].status.toLowerCase() === PENDING) {
                Severity: Major
                Found in src/modules/notifications/actions/notifications.js - About 4 hrs to fix
                  Severity
                  Category
                  Status
                  Source
                  Language