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,
Function resolveMedia
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const resolveMedia = (mimeType?: string): MediaType => {
if (!mimeType) {
return MediaType.UNKNOWN
}
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
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()
- 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 a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
export default function () {
const { urlPrefix } = usePrefix()
const identityStore = useIdentityStore()
const getBalance = (_token: string) => {
- 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 a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
export default function<T = unknown>({
queryPrefix = '',
queryName,
clientName = '',
variables = {},
- 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 getRedirectPathForPrefix
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
function getRedirectPathForPrefix({
routeName,
chain,
route,
}: {
- 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 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',
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(() => {
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]
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>()
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()
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,
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),
})
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)
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
- 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 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) {
- 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 resolveMedia
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
export function resolveMedia(mimeType?: string): MediaType {
if (!mimeType) {
return MediaType.UNKNOWN
}
- 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 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
- 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 payRoyaltyAssetHub
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
legacy,
api,
price,
royalty,
collectionId,