polkadot-js/apps

View on GitHub
packages/react-signer/src/TxSigned.tsx

Summary

Maintainability
D
2 days
Test Coverage

File TxSigned.tsx has 445 lines of code (exceeds 250 allowed). Consider refactoring.
Open

// Copyright 2017-2024 @polkadot/react-signer authors & contributors
// SPDX-License-Identifier: Apache-2.0

import type { ApiPromise } from '@polkadot/api';
import type { SignerOptions } from '@polkadot/api/submittable/types';
Severity: Minor
Found in packages/react-signer/src/TxSigned.tsx - About 6 hrs to fix

    Function TxSigned has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
    Open

    function TxSigned ({ className, currentItem, isQueueSubmit, queueSize, requestAddress, setIsQueueSubmit }: Props): React.ReactElement<Props> | null {
      const { t } = useTranslation();
      const { api } = useApi();
      const { getLedger } = useLedger();
      const { queueSetTxStatus } = useQueue();
    Severity: Minor
    Found in packages/react-signer/src/TxSigned.tsx - About 5 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 wrapTx has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

    async function wrapTx (api: ApiPromise, currentItem: QueueTx, { isMultiCall, multiRoot, proxyRoot, signAddress }: AddressProxy): Promise<SubmittableExtrinsic<'promise'>> {
      let tx = currentItem.extrinsic as SubmittableExtrinsic<'promise'>;
    
      if (proxyRoot) {
        tx = api.tx.proxy.proxy(proxyRoot, null, tx);
    Severity: Minor
    Found in packages/react-signer/src/TxSigned.tsx - About 2 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 signAndSend has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    async function signAndSend (queueSetTxStatus: QueueTxMessageSetStatus, currentItem: QueueTx, tx: SubmittableExtrinsic<'promise'>, pairOrAddress: KeyringPair | string, options: Partial<SignerOptions>, api: ApiPromise, isMockSign: boolean): Promise<void> {
    Severity: Major
    Found in packages/react-signer/src/TxSigned.tsx - About 50 mins to fix

      Function signAsync has 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      async function signAsync (queueSetTxStatus: QueueTxMessageSetStatus, { id, txFailedCb = NOOP, txStartCb = NOOP }: QueueTx, tx: SubmittableExtrinsic<'promise'>, pairOrAddress: KeyringPair | string, options: Partial<SignerOptions>, api: ApiPromise, isMockSign: boolean): Promise<string | null> {
      Severity: Major
      Found in packages/react-signer/src/TxSigned.tsx - About 50 mins to fix

        Function extractParams has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        async function extractParams (api: ApiPromise, address: string, options: Partial<SignerOptions>, getLedger: () => Ledger, setQrState: (state: QrState) => void): Promise<['qr' | 'signing', string, Partial<SignerOptions>, boolean]> {
        Severity: Minor
        Found in packages/react-signer/src/TxSigned.tsx - About 35 mins to fix

          Function extractParams has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          async function extractParams (api: ApiPromise, address: string, options: Partial<SignerOptions>, getLedger: () => Ledger, setQrState: (state: QrState) => void): Promise<['qr' | 'signing', string, Partial<SignerOptions>, boolean]> {
            const pair = keyring.getPair(address);
            const { meta: { accountOffset, addressOffset, isExternal, isHardware, isInjected, isLocal, isProxied, source } } = pair;
          
            if (isHardware) {
          Severity: Minor
          Found in packages/react-signer/src/TxSigned.tsx - About 35 mins 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

          Avoid too many return statements within this function.
          Open

            return ['signing', address, { ...options, signer: new AccountSigner(api.registry, pair) }, false];
          Severity: Major
          Found in packages/react-signer/src/TxSigned.tsx - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                    return t('Sign (no submission)');
            Severity: Major
            Found in packages/react-signer/src/TxSigned.tsx - About 30 mins to fix

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

                              {isSubmit && innerHash && (
                                <Modal.Columns hint={t('The call hash as calculated for this transaction')}>
                                  <Output
                                    isDisabled
                                    isTrimmed
              Severity: Major
              Found in packages/react-signer/src/TxSigned.tsx and 2 other locations - About 1 hr to fix
              packages/react-signer/src/SignFields.tsx on lines 68..78
              packages/react-signer/src/TxSigned.tsx on lines 454..464

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

              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

                              {isSubmit && !senderInfo.isMultiCall && innerTx && (
                                <Modal.Columns hint={t('The full call data that can be supplied to a final call to multi approvals')}>
                                  <Output
                                    isDisabled
                                    isTrimmed
              Severity: Major
              Found in packages/react-signer/src/TxSigned.tsx and 2 other locations - About 1 hr to fix
              packages/react-signer/src/SignFields.tsx on lines 68..78
              packages/react-signer/src/TxSigned.tsx on lines 465..475

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

              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

                const { meta: { accountOffset, addressOffset, isExternal, isHardware, isInjected, isLocal, isProxied, source } } = pair;
              Severity: Minor
              Found in packages/react-signer/src/TxSigned.tsx and 2 other locations - About 35 mins to fix
              packages/apps/src/Endpoints/Network.tsx on lines 21..21
              packages/page-accounts/src/Accounts/Account.tsx on lines 162..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 46.

              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