kodadot/nft-gallery

View on GitHub

Showing 185 of 185 total issues

Function useTopCollections has 72 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const useTopCollections = (limit: number, immediate = true) => {
  const { client, urlPrefix } = usePrefix()
  const { isAssetHub, isBase } = useIsChain(urlPrefix)
  const topCollectionWithVolumeList = useState<CollectionEntityWithVolumes[]>(
    'topCollectionWithVolumeList',
Severity: Major
Found in components/landing/topCollections/utils/useTopCollections.ts - About 2 hrs to fix

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

    export const mimeTypes: { [key: string]: string } = {
      bmp: 'image/bmp',
      gif: 'image/gif',
      jpg: 'image/jpeg',
      jpeg: 'image/jpeg',
    Severity: Major
    Found in libs/static/src/mimeTypes.ts and 1 other location - About 2 hrs to fix
    utils/constants.ts on lines 44..63

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

    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

      koda: {
        pinata: 'https://kodadot.mypinata.cloud/ipfs/',
        directUpload: 'https://direct-upload.kodadot.workers.dev/',
        estuary: 'https://pinning.kodadot.workers.dev/',
        nftStorage: 'https://nft-storage.kodadot.workers.dev/',
    Severity: Major
    Found in utils/constants.ts and 1 other location - About 2 hrs to fix
    libs/static/src/mimeTypes.ts on lines 1..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 92.

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

    export default function useHolderOfCollection() {
      const { drop, runtimeMintCount } = useDropStore()
      const { accountId } = useAuth()
      const { client } = usePrefix()
      const { isNftClaimed } = useHolderOfCollectionDrop()
    Severity: Major
    Found in composables/drop/useHolderOfCollection.ts - About 2 hrs to fix

      Function useExecuteTransaction has 70 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      const useExecuteTransaction = (options: TransactionOptions) => {
        const { accountId } = useAuth()
        const error = ref(false)
        const {
          howAboutToExecute,
      Severity: Major
      Found in composables/useTransaction.ts - About 2 hrs to fix

        Function default has 68 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        export default function (
          actions: ComputedRef<AutoTeleportAction[]>,
          neededAmount: ComputedRef<number>,
          fees: AutoTeleportFeeParams,
        ) {
        Severity: Major
        Found in composables/autoTeleport/useAutoTeleport.ts - About 2 hrs to fix

          Function default has 68 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          export default function () {
            const colorMode = useColorMode()
            const { $i18n } = useNuxtApp()
          
            const isDarkMode = computed<boolean>(() => colorMode.value === 'dark')
          Severity: Major
          Found in composables/useTheme.ts - About 2 hrs to fix

            Function useEvents has 63 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            const useEvents = (chain, type, limit = 10, collectionIds = []) => {
              const collections = reactive({})
              const items = ref<
                (NFTWithMetadata & {
                  timestamp: string
            Severity: Major
            Found in components/carousel/utils/useCarouselEvents.ts - About 2 hrs to fix

              File scheme.ts has 268 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              import { CreatedNFT, toNFTId as toNFTIdV1 } from '@kodadot1/minimark/v1'
              import {
                CreatedNFT as CreatedNFTV2,
                toNFTId as toNFTIdV2,
              } from '@kodadot1/minimark/v2'
              Severity: Minor
              Found in components/rmrk/service/scheme.ts - About 2 hrs to fix

                Function default has 57 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                export default function () {
                  const { urlPrefix } = usePrefix()
                  const name = computed(() => getChainName(urlPrefix.value))
                
                  const chainProperties = computed<ChainProperties>(() => {
                Severity: Major
                Found in composables/useChain.ts - About 2 hrs to fix

                  Function useCollectionForMint has 55 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  export const useCollectionForMint = () => {
                    const collectionsEntites = ref<MintedCollection[]>()
                    const collections = ref()
                    const { $consola } = useNuxtApp()
                    const { accountId, isLogIn } = useAuth()
                  Severity: Major
                  Found in composables/massmint/useMassMint.ts - About 2 hrs to fix

                    File useTransaction.ts has 257 lines of code (exceeds 250 allowed). Consider refactoring.
                    Open

                    import { Interaction } from '@kodadot1/minimark/v1'
                    
                    import {
                      showLargeNotification,
                      successMessage as successNotification,
                    Severity: Minor
                    Found in composables/useTransaction.ts - About 2 hrs to fix

                      Function useMetaTransaction has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
                      Open

                      function useMetaTransaction() {
                        const { $i18n } = useNuxtApp()
                        const {
                          isLoading,
                          resolveStatus,
                      Severity: Minor
                      Found in composables/useMetaTransaction.ts - 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 useNotification has 52 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      export const useNotification = () => {
                        const { apiInstance } = useApi()
                        const { accountId } = useAuth()
                        const collections = ref<FilterOption[]>([])
                        const events = ref<Event[]>([])
                      Severity: Major
                      Found in components/common/NotificationBox/useNotification.ts - About 2 hrs to fix

                        Function kusamaMintAndList has 50 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        export const kusamaMintAndList = (tokens) => {
                          const status = ref(TransactionStatus.Unknown)
                          const isLoading = ref(true)
                          const collectionUpdated = ref(false)
                          const blockNumber = ref<string>()
                        Severity: Minor
                        Found in composables/massmint/massMintHelpers.ts - About 2 hrs to fix

                          Function default has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                          Open

                          export default function (fetchBalancePeriodically: boolean = false) {
                            const isError = ref<boolean>(false)
                            const txId = ref<string | null>(null)
                          
                            const { isLoading, status, initTransactionLoader, stopLoader } =
                          Severity: Minor
                          Found in composables/useTeleport.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 47 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                          export default function () {
                            const route = useRoute()
                            const storage = useLocalStorage('urlPrefix', { selected: DEFAULT_PREFIX })
                            const initialPrefixFromPath = getAvailablePrefix(route.path.split('/')[1])
                            const identityStore = useIdentityStore()
                          Severity: Minor
                          Found in composables/usePrefix.ts - About 1 hr to fix

                            Function default has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                            export default function () {
                              const route = useRoute()
                            
                              const fullPathShare = ref(`${window.location.origin}${route.fullPath}`)
                            
                            
                            Severity: Minor
                            Found in composables/useSocialShare.ts - About 1 hr to fix

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

                                const value = await api<PredictionRequestStatus>('predict', {
                                  method: 'POST',
                                  body: input,
                                }).catch((error: FetchError) => {
                                  throw new Error(
                              Severity: Major
                              Found in services/replicate.ts and 1 other location - About 1 hr to fix
                              services/supabase.ts on lines 40..47

                              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

                                const value = await api<PromptLogResponse>('prompt-me', {
                                  method: 'POST',
                                  body,
                                }).catch((error: FetchError) => {
                                  throw new Error(
                              Severity: Major
                              Found in services/supabase.ts and 1 other location - About 1 hr to fix
                              services/replicate.ts on lines 76..83

                              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

                              Severity
                              Category
                              Status
                              Source
                              Language