kodadot/nft-gallery

View on GitHub

Showing 120 of 177 total issues

Function listForSell has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const listForSell = (mintedNFts: TokenToList[]) => {
  const isLoading = ref(true)
  const {
    blockNumber,
    transaction,
Severity: Minor
Found in composables/massmint/massMintHelpers.ts - About 1 hr to fix

    Function resolveMedia has 28 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export const resolveMedia = (mimeType?: string): MediaType => {
      if (!mimeType) {
        return MediaType.UNKNOWN
      }
    
    
    Severity: Minor
    Found in components/rmrk/utils.ts - About 1 hr to fix

      Function formatNumber has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export function formatNumber(amount?: string | number): string {
        if (!amount) {
          return '0'
        }
        const number
      Severity: Minor
      Found in utils/format/balance.ts - About 1 hr to fix

        Function useWaitingItems has a Cognitive Complexity of 10 (exceeds 5 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

        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 a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

        export default function () {
          const { urlPrefix } = usePrefix()
          const identityStore = useIdentityStore()
        
          const getBalance = (_token: string) => {
        Severity: Minor
        Found in composables/useBalance.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 a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

        export default function<T = unknown>({
          queryPrefix = '',
          queryName,
          clientName = '',
          variables = {},
        Severity: Minor
        Found in composables/useGraphql.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 getRedirectPathForPrefix has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

        function getRedirectPathForPrefix({
          routeName,
          chain,
          route,
        }: {
        Severity: Minor
        Found in composables/useChainRedirect.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 useIcon has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        export const useIcon = () => {
          const { isDarkMode } = useTheme()
        
          const signUpVoucherIcon = computed(() =>
            isDarkMode.value ? '/signup-voucher-dark.svg' : '/signup-voucher.svg',
        Severity: Minor
        Found in composables/useIcon.ts - About 1 hr to fix

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

          export default function (modalRef: Ref) {
            const targetModals = ref<ModalRef[]>([])
            const symbol = Symbol()
          
            const otherModals = computed(() => {
          Severity: Minor
          Found in composables/useModalManager.ts - About 1 hr to fix

            Function useCreate has 27 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            export default function useCreate() {
              const showExplainerText = ref(false)
              const { replaceUrl } = useReplaceUrl()
              const route = useRoute()
              const components = [CreateComponent.Collection, CreateComponent.NFT]
            Severity: Minor
            Found in composables/useCreate.ts - About 1 hr to fix

              Function useNftActions has 27 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              export function useNftActions(entity: TokenEntity) {
                const { isCurrentOwner } = useAuth()
              
                const cheapestNFT = ref<NFTWithMetadata>()
              
              
              Severity: Minor
              Found in components/items/ItemsGrid/useNftActions.ts - About 1 hr to fix

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

                export default function () {
                  const { disconnectAsync: disconnectWeb3Modal } = useDisconnect()
                  const shoppingCartStore = useShoppingCartStore()
                  const walletStore = useWalletStore()
                  const identityStore = useIdentityStore()
                Severity: Minor
                Found in composables/useWallet.ts - About 1 hr to fix

                  Function fetchWaitingItems has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    const fetchWaitingItems = async () => {
                      const { data } = await useAsyncQuery<Collections>({
                        query: collectionMigrateWaiting,
                        variables: {
                          account: accountId.value,
                  Severity: Minor
                  Found in composables/useMigrate.ts - About 1 hr to fix

                    Function formatSecondsToDuration has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    export const formatSecondsToDuration = (seconds: number) => {
                      const duration = intervalToDuration({
                        start: new Date(),
                        end: addSeconds(new Date(), seconds),
                      })
                    Severity: Minor
                    Found in utils/format/time.ts - About 1 hr to fix

                      Function execBurnAssetHub has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      function execBurnAssetHub(item: ActionConsume, api: ApiPromise, executeTransaction: ExecuteTransaction) {
                        const getApiCallParams = (nftId: string) => {
                          const legacy = isLegacy(nftId)
                          const paramResolver = assetHubParamResolver(legacy)
                      
                      
                      Severity: Minor
                      Found in composables/transaction/transactionBurn.ts - About 1 hr to fix

                        Function formatNumber has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                        Open

                        export function formatNumber(amount?: string | number): string {
                          if (!amount) {
                            return '0'
                          }
                          const number
                        Severity: Minor
                        Found in utils/format/balance.ts - About 55 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

                        Function sortedEventByDate has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                        Open

                        export const sortedEventByDate = (
                          events: Interaction[],
                          order = 'ASC',
                        ): Interaction[] => {
                          if (events.length == 0) {
                        Severity: Minor
                        Found in utils/sorting.ts - About 55 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

                        Function resolveMedia has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                        Open

                        export function resolveMedia(mimeType?: string): MediaType {
                          if (!mimeType) {
                            return MediaType.UNKNOWN
                          }
                        
                        
                        Severity: Minor
                        Found in utils/gallery/media.ts - About 55 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

                        Function useActiveRouterFilters has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                        Open

                        export default function useActiveRouterFilters() {
                          const route = useRoute()
                          const activeFilters = computed(() => {
                            const query = { ...route.query, redesign: undefined }
                            type QueryValue = string | undefined
                        Severity: Minor
                        Found in composables/useActiveRouterFilters.ts - About 45 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

                        Function payRoyaltyAssetHub has 6 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                          legacy,
                          api,
                          price,
                          royalty,
                          collectionId,
                        Severity: Minor
                        Found in composables/transaction/transactionBuy.ts - About 45 mins to fix
                          Severity
                          Category
                          Status
                          Source
                          Language