kodadot/nft-gallery

View on GitHub

Showing 177 of 177 total issues

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

export async function execSetNftMetadata({ item, ...params }: SetNftMetadataParams) {
  if (item.urlPrefix === 'ahk' || item.urlPrefix === 'ahp') {
    return execSetNftMetadataStatmine({ item, ...params })
  }
}
Severity: Major
Found in composables/transaction/transactionSetNftMetadata.ts and 1 other location - About 1 hr to fix
composables/transaction/transactionUpdateCollection.ts on lines 86..90

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

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

export async function execUpdateCollection({ item, ...params }: UpdateCollectionParams) {
  if (item.urlPrefix === 'ahk' || item.urlPrefix === 'ahp') {
    return execUpdateCollectionStatmine({ item, ...params })
  }
}
Severity: Major
Found in composables/transaction/transactionUpdateCollection.ts and 1 other location - About 1 hr to fix
composables/transaction/transactionSetNftMetadata.ts on lines 49..53

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

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 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 43 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 128..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 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 119..126

        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

          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

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

              function setItemDiscardedState({ id, discarded }: { id: string, discarded: boolean }) {
                const itemIndex = existInItemIndex(id, items.value)
                if (itemIndex !== -1) {
                  items.value[itemIndex].discarded = discarded
                  localStorage.value = items.value
            Severity: Major
            Found in composables/useCart.ts and 1 other location - About 1 hr to fix
            stores/listingCart.ts on lines 51..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 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

                function setItemPrice({ id, price }: { id: string, price?: number }) {
                  const itemIndex = existInItemIndex(id, items.value)
                  if (itemIndex !== -1) {
                    items.value[itemIndex].listPrice = price
                    localStorage.value = items.value
              Severity: Major
              Found in stores/listingCart.ts and 1 other location - About 1 hr to fix
              composables/useCart.ts on lines 50..56

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

              export default function () {
                const storage = useLocalStorage('urlPrefix', { selected: DEFAULT_PREFIX })
                const walletStore = useWalletStore()
              
                const prefix = computed<Prefix>(
              Severity: Minor
              Found in composables/usePrefix.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

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

                  export default function useRamp() {
                    const config = useRuntimeConfig()
                    const { $consola } = useNuxtApp()
                    const { urlPrefix } = usePrefix()
                  
                  
                  Severity: Minor
                  Found in composables/useRamp.ts - About 1 hr to fix

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

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

                      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

                          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

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

                        return {
                          isFetchingData,
                          fetchPreviousPage,
                          fetchNextPage,
                          reachTopHandler,
                      Severity: Major
                      Found in composables/useListInfiniteScroll.ts and 1 other location - About 1 hr to fix
                      stores/makeOffer.ts on lines 25..38

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

                      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