kodadot/nft-gallery

View on GitHub

Showing 185 of 185 total issues

Function useWaitingItems has 44 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const useWaitingItems = () => {
  const { urlPrefix } = usePrefix()
  const { accountId } = useAuth()
  const { client } = usePrefix()

Severity: Minor
Found in composables/useMigrate.ts - About 1 hr to fix

    Function useExecuteTransaction has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    const useExecuteTransaction = (options: TransactionOptions) => {
      const { accountId } = useAuth()
      const error = ref(false)
      const {
        howAboutToExecute,
    Severity: Minor
    Found in composables/useTransaction.ts - About 1 hr 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 checkZipFileValidity has 43 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    async function checkZipFileValidity(entries: {
      [key: string]: ZipEntry
    }): Promise<ValidityResult> {
      const validFiles: FileObject[] = []
      const warnings: WarningObject[] = []
    Severity: Minor
    Found in composables/massmint/useZipValidator.ts - About 1 hr to fix

      Function bindGoToEvents has 43 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      const bindGoToEvents = (event, app) => {
        const { accountId } = useAuth()
        const { urlPrefix } = usePrefix()
      
        let path = ''
      Severity: Minor
      Found in plugins/keyboardEvents.client.ts - About 1 hr to fix

        Function open has 42 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          open(params): InstanceType<typeof NotificationNotice> {
            // vue context from nuxtApp()
            const { vueApp } = useNuxtApp()
        
            let newParams
        Severity: Minor
        Found in libs/ui/src/components/NeoNotification/plugin.ts - About 1 hr to fix

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

            if (telportType === TeleprtType.RelayToPara) {
              return paraspell
                .Builder(api)
                .to(Chain[to.toUpperCase()])
                .amount(amount)
          Severity: Major
          Found in utils/teleport.ts and 1 other location - About 1 hr to fix
          utils/teleport.ts on lines 195..202

          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

            if (telportType === TeleprtType.ParaToRelay) {
              return paraspell
                .Builder(api)
                .from(Chain[from.toUpperCase()])
                .amount(amount)
          Severity: Major
          Found in utils/teleport.ts and 1 other location - About 1 hr to fix
          utils/teleport.ts on lines 186..193

          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

          Function useTransactionStatus has 41 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function useTransactionStatus() {
            const status = ref<TransactionStatus>(TransactionStatus.Unknown)
            const isLoading = ref(false)
          
            const resolveStatus = (
          Severity: Minor
          Found in composables/useTransactionStatus.ts - About 1 hr to fix

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

                setItemPrice({ id, price }: { id: ID; price?: number }) {
                  const itemIndex = existInItemIndex(id, this.items)
                  if (itemIndex !== -1) {
                    this.items[itemIndex].listPrice = price
                    localStorage.value = this.items
            Severity: Major
            Found in stores/listingCart.ts and 1 other location - About 1 hr to fix
            stores/listingCart.ts on lines 112..118

            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

            Function constructMeta has 40 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            export async function constructMeta(
              tokenToMint: TokenToMint,
              options?: {
                enableCarbonOffset?: boolean
              },
            Severity: Minor
            Found in composables/transaction/mintToken/constructMeta.ts - About 1 hr to fix

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

                  setItemDiscardedState({ id, discarded }: { id: ID; discarded: boolean }) {
                    const itemIndex = existInItemIndex(id, this.items)
                    if (itemIndex !== -1) {
                      this.items[itemIndex].discarded = discarded
                      localStorage.value = this.items
              Severity: Major
              Found in stores/listingCart.ts and 1 other location - About 1 hr to fix
              stores/listingCart.ts on lines 73..79

              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

              Function getFlippers has 40 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              export const getFlippers = (interactions: InteractionWithNFT[]): Flippers => {
                const { NFTS, changeHandsInteractions } =
                  preProccessForFindingFlippers(interactions)
              
                // Create an object that will hold all the flipper data
              Severity: Minor
              Found in composables/collectionActivity/helpers.ts - About 1 hr to fix

                Function checkZipFileValidity has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                Open

                async function checkZipFileValidity(entries: {
                  [key: string]: ZipEntry
                }): Promise<ValidityResult> {
                  const validFiles: FileObject[] = []
                  const warnings: WarningObject[] = []
                Severity: Minor
                Found in composables/massmint/useZipValidator.ts - About 1 hr 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 getBalance has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  async function getBalance(chainName: string, token = 'KSM', tokenId = 0) {
                    const currentAddress = accountId.value
                    const prefix = networkToPrefix[chainName]
                    const chain = CHAINS[prefix]
                
                
                Severity: Minor
                Found in composables/useMultipleBalance.ts - About 1 hr to fix

                  Function useMassMint has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  export const useMassMint = (
                    nfts: NFTToMint[],
                    collection: MintedCollection,
                  ) => {
                    const { blockNumber, transaction, isLoading, status, isError } =
                  Severity: Minor
                  Found in composables/massmint/useMassMint.ts - About 1 hr to fix

                    Function getOwners has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    export const getOwners = (nfts) => {
                      const owners: Owners = {}
                    
                      nfts.forEach((nft) => {
                        const interactions = nft.events.map((e) => e.interaction)
                    Severity: Minor
                    Found in composables/collectionActivity/helpers.ts - About 1 hr to fix

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

                          {
                            cond: (val) =>
                              val.startsWith(`/${urlPrefix.value}`) && val.endsWith('collections'),
                            replaceValue: () => `/${urlPrefix.value}/explore/collectibles`,
                          },
                      Severity: Major
                      Found in middleware/redirects.global.ts and 1 other location - About 1 hr to fix
                      middleware/redirects.global.ts on lines 16..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 65.

                      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 'c':
                            if (urlPrefix.value && accountId.value) {
                              path = `/${urlPrefix.value}/u/${accountId.value}`
                              query = { tab: 'collected' }
                            }
                      Severity: Major
                      Found in plugins/keyboardEvents.client.ts and 1 other location - About 1 hr to fix
                      plugins/keyboardEvents.client.ts on lines 24..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 65.

                      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

                          {
                            cond: (val) =>
                              val.startsWith(`/${urlPrefix.value}`) && val.endsWith('gallery'),
                            replaceValue: () => `/${urlPrefix.value}/explore/items`,
                          },
                      Severity: Major
                      Found in middleware/redirects.global.ts and 1 other location - About 1 hr to fix
                      middleware/redirects.global.ts on lines 11..15

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

                      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 's':
                            if (urlPrefix.value && accountId.value) {
                              path = `/${urlPrefix.value}/u/${accountId.value}`
                              query = { tab: 'sold' }
                            }
                      Severity: Major
                      Found in plugins/keyboardEvents.client.ts and 1 other location - About 1 hr to fix
                      plugins/keyboardEvents.client.ts on lines 18..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 65.

                      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