Skip to content

Commit 9aed7be

Browse files
authored
Merge pull request #11093 from kodadot/main
(feat/beta): 25% of October 2024 Banana 🍌
2 parents 6f0b3e5 + 791073c commit 9aed7be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+113
-142
lines changed

components/carousel/CarouselTypeRelated.vue

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
<template>
2-
<div>
3-
<LoadLazily>
4-
<CarouselIndex
5-
v-if="nfts"
6-
:title="`${$t('nft.related')}`"
7-
:nfts="nfts"
8-
/>
9-
</LoadLazily>
10-
</div>
2+
<LazyCarouselIndex
3+
v-if="nfts"
4+
:title="$t('nft.related')"
5+
:nfts="nfts"
6+
/>
117
</template>
128

139
<script lang="ts" setup>

components/carousel/CarouselTypeVisited.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
2-
<CarouselIndex
2+
<LazyCarouselIndex
33
v-if="showCarousel"
4-
:title="`${$t('nft.visited')}`"
4+
:title="$t('nft.visited')"
55
:nfts="nfts"
66
/>
77
</template>

components/collection/CollectionCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
import { NeoSkeleton } from '@kodadot1/brick'
4343
import type { TokenMetadata } from '@kodadot1/hyperdata'
4444
import CollectionDetail from './CollectionDetail.vue'
45-
import type { CollectionWithMeta } from '@/components/rmrk/service/scheme'
45+
import type { CollectionWithMeta } from '@/types'
4646
import BasicImage from '@/components/shared/view/BasicImage.vue'
4747
import { processSingleMetadata } from '@/utils/cachingStrategy'
4848
import { sanitizeIpfsUrl } from '@/utils/ipfs'

components/collection/CollectionDetail.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090

9191
<script lang="ts" setup>
9292
import { NeoSkeleton } from '@kodadot1/brick'
93-
import type { Interaction, NFT } from '@/components/rmrk/service/scheme'
93+
import type { Interaction, NFT } from '@/types'
9494
import { getVolume } from '@/utils/math'
9595
import BasicImage from '@/components/shared/view/BasicImage.vue'
9696
import CommonTokenMoney from '@/components/shared/CommonTokenMoney.vue'

components/collection/CollectionGrid.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
<script lang="ts" setup>
5656
import isEqual from 'lodash/isEqual'
57-
import type { Collection } from '@/components/rmrk/service/scheme'
57+
import type { Collection } from '@/types'
5858
import type { SearchQuery } from '@/components/search/types'
5959
import collectionListWithSearch from '@/queries/subsquid/general/collectionListWithSearch.graphql'
6060
import collectionListWithSearchProfile from '@/queries/subsquid/general/collectionListWithSearchProfile.graphql'

components/collection/CollectionHeader/CollectionBanner.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</template>
3939

4040
<script setup lang="ts">
41-
import type { NFTMetadata } from '@/components/rmrk/service/scheme'
41+
import type { NFTMetadata } from '@/types'
4242
import { processSingleMetadata } from '@/utils/cachingStrategy'
4343
import { sanitizeIpfsUrl, toOriginalContentUrl } from '@/utils/ipfs'
4444
import HeroButtons from '@/components/collection/HeroButtons.vue'

components/collection/activity/ActivityChart.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import {
3030
sortAsc,
3131
toDataPoint,
3232
} from './utils'
33-
import type { ActivityInteraction } from '@/components/rmrk/service/scheme'
33+
import type { ActivityInteraction } from '@/types'
3434
import PriceChart from '@/components/chart/PriceChart.vue'
3535
3636
const { decimals } = useChain()

components/collection/activity/ownerInsightsTabs/NFTSDetailsDropdown/Flipper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<script setup lang="ts">
4747
import { sanitizeIpfsUrl } from '@/utils/ipfs'
4848
import { processSingleMetadata } from '@/utils/cachingStrategy'
49-
import type { NFTMetadata } from '@/components/rmrk/service/scheme'
49+
import type { NFTMetadata } from '@/types'
5050
import Money from '@/components/shared/format/ChainMoney.vue'
5151
import type { FlipEvent } from '@/composables/collectionActivity/types'
5252
import { format } from '@/components/collection/activity/utils'

components/collection/activity/ownerInsightsTabs/NFTSDetailsDropdown/Holder.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<script setup lang="ts">
3535
import { sanitizeIpfsUrl } from '@/utils/ipfs'
3636
import { processSingleMetadata } from '@/utils/cachingStrategy'
37-
import type { NFTMetadata } from '@/components/rmrk/service/scheme'
37+
import type { NFTMetadata } from '@/types'
3838
import type { NFTExcludingEvents } from '@/composables/collectionActivity/types'
3939
import BasicImage from '@/components/shared/view/BasicImage.vue'
4040

components/collection/utils/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { CollectionMetadata } from '@/components/rmrk/service/scheme'
1+
import type { CollectionMetadata } from '@/types'
22

33
export type Stats = {
44
listedCount?: number

0 commit comments

Comments
 (0)