teamdigitale/italia-app

View on GitHub
ts/screens/wallet/PaymentHistoryDetailsScreen.tsx

Summary

Maintainability
D
2 days
Test Coverage

File PaymentHistoryDetailsScreen.tsx has 396 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { pipe } from "fp-ts/lib/function";
import * as O from "fp-ts/lib/Option";
import * as React from "react";
import { View } from "react-native";
import { connect } from "react-redux";
Severity: Minor
Found in ts/screens/wallet/PaymentHistoryDetailsScreen.tsx - About 5 hrs to fix

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

      public render(): React.ReactNode {
        const data = this.getData();
    
        return (
          <BaseScreenComponent
    Severity: Major
    Found in ts/screens/wallet/PaymentHistoryDetailsScreen.tsx - About 3 hrs to fix

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

      const PaymentHistoryDetailsScreenFC = () => {
        const navigation =
          useNavigation<
            IOStackNavigationProp<WalletParamsList, "PAYMENT_HISTORY_DETAIL_INFO">
          >();
      Severity: Major
      Found in ts/screens/wallet/PaymentHistoryDetailsScreen.tsx and 1 other location - About 2 hrs to fix
      ts/screens/wallet/payment/PickPaymentMethodScreen.tsx on lines 302..317

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

      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

          return {
            recipient,
            reason,
            enteBeneficiario,
            codiceAvviso,
      Severity: Major
      Found in ts/screens/wallet/PaymentHistoryDetailsScreen.tsx and 1 other location - About 1 hr to fix
      ts/features/messages/components/Home/DS/MessageListItem.tsx on lines 86..101

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

      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

        private renderSeparator = () => (
          <React.Fragment>
            <VSpacer size={24} />
            <ItemSeparatorComponent noPadded={true} />
            <VSpacer size={24} />
      Severity: Major
      Found in ts/screens/wallet/PaymentHistoryDetailsScreen.tsx and 1 other location - About 1 hr to fix
      ts/screens/wallet/creditCardOnboardingAttempts/CreditCardOnboardingAttemptDetailScreen.tsx on lines 113..119

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

      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 recipient = pipe(
            maybeInnerProperty<Transaction, "merchant", string>(
              payment.transaction,
              "merchant",
              m => m
      Severity: Minor
      Found in ts/screens/wallet/PaymentHistoryDetailsScreen.tsx and 1 other location - About 50 mins to fix
      ts/screens/wallet/PaymentHistoryDetailsScreen.tsx on lines 177..187

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

      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 reason = pipe(
            maybeInnerProperty<
              PaymentRequestsGetResponse,
              "causaleVersamento",
              string
      Severity: Minor
      Found in ts/screens/wallet/PaymentHistoryDetailsScreen.tsx and 1 other location - About 50 mins to fix
      ts/screens/wallet/PaymentHistoryDetailsScreen.tsx on lines 189..199

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

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

      const mapStateToProps = (state: GlobalState) => ({
        outcomeCodes: outcomeCodesSelector(state),
        assistanceToolConfig: assistanceToolConfigSelector(state),
        canShowHelp: canShowHelpSelector(state)
      });
      Severity: Major
      Found in ts/screens/wallet/PaymentHistoryDetailsScreen.tsx and 4 other locations - About 30 mins to fix
      ts/features/wallet/component/card/WalletV2PreviewCards.tsx on lines 66..70
      ts/features/wallet/onboarding/paypal/screen/PayPalOnboardingCheckoutScreen.tsx on lines 161..165
      ts/screens/wallet/payment/TransactionErrorScreen.tsx on lines 416..420
      ts/RootContainer.tsx on lines 131..135

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

      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

      There are no issues that match your filters.

      Category
      Status