Showing 120 of 177 total issues
Function useGalleryItem
has 137 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const useGalleryItem = (nftId?: string): GalleryItem => {
const { $consola } = useNuxtApp()
const historyStore = useHistoryStore()
const nft = ref<NftEntity>()
const nftImage = ref('')
File nuxt.config.ts
has 379 lines of code (exceeds 250 allowed). Consider refactoring. Open
import * as fs from 'fs'
import svgLoader from 'vite-svg-loader'
import { pwa } from './utils/config/pwa'
import { URLS, apolloClientConfig } from './utils/constants'
Function useFetchSearch
has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring. Open
export function useFetchSearch({
first,
total,
isFetchingData,
resetSearch,
- Read upRead up
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 124 lines of code (exceeds 25 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 }
Function default
has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring. Open
export default function ({
defaultFirst,
defaultScrollContainerId,
defaultScrollItemClassName,
gotoPage,
- Read upRead up
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
File useMigrate.ts
has 331 lines of code (exceeds 250 allowed). Consider refactoring. Open
import type { Prefix } from '@kodadot1/static'
import { allPrefixWithIcon } from '@/utils/chain'
import format from '@/utils/format/balance'
import collectionMigrateReady from '@/queries/subsquid/general/collectionMigrateReady.graphql'
import collectionMigrateWaiting from '@/queries/subsquid/general/collectionMigrateWaiting.graphql'
Function useMetaTransaction
has 92 lines of code (exceeds 25 allowed). Consider refactoring. Open
function useMetaTransaction() {
const { $i18n } = useNuxtApp()
const {
isLoading,
resolveStatus,
usePreferencesStore
has 29 functions (exceeds 20 allowed). Consider refactoring. Open
actions: {
setSidebarFilterCollapse(payload) {
this.sidebarFilterCollapseOpen = payload
},
setMobileFilterCollapse(payload) {
Function useListingCartStore
has 85 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const useListingCartStore = defineStore('listingCart', () => {
const {
items,
chain,
decimals,
File types.ts
has 298 lines of code (exceeds 250 allowed). Consider refactoring. Open
import type { OpenSeaAttribute as Attribute } from '@kodadot1/hyperdata'
import type { Interaction } from '@kodadot1/minimark/v1'
import type { ApiPromise } from '@polkadot/api'
import type { Prefix } from '@kodadot1/static'
import type { Ref } from 'vue'
Function useMigrateDeposit
has 72 lines of code (exceeds 25 allowed). Consider refactoring. Open
export function useMigrateDeposit(
prefix: ComputedRef<Prefix>,
itemCount: number,
account = '',
) {
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',
usePreferencesStore
has 25 functions (exceeds 20 allowed). Consider refactoring. Open
getters: {
getsidebarFilterCollapse: state => state.sidebarFilterCollapseOpen,
getMobileFilterCollapse: state => state.mobileFilterCollapseOpen,
getShoppingCartCollapse: state => state.shoppingCartCollapseOpen,
getCompletePurchaseModal: state => state.completePurchaseModal,
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()
Function default
has 69 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')
Function default
has 68 lines of code (exceeds 25 allowed). Consider refactoring. Open
export default function (
actions: ComputedRef<AutoTeleportAction[]>,
neededAmount: ComputedRef<number>,
fees: AutoTeleportFeeParams,
) {
Function default
has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring. Open
export default function ({
clientName = '',
query,
onChange,
onError,
- Read upRead up
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 useEvents
has 64 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
Function useGalleryItem
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
export const useGalleryItem = (nftId?: string): GalleryItem => {
const { $consola } = useNuxtApp()
const historyStore = useHistoryStore()
const nft = ref<NftEntity>()
const nftImage = ref('')
- Read upRead up
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 a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
export const useIcon = () => {
const { isDarkMode } = useTheme()
const signUpVoucherIcon = computed(() =>
isDarkMode.value ? '/signup-voucher-dark.svg' : '/signup-voucher.svg',
- Read upRead up
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"