-
-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: fetch oda on drops page #11404
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
hide-listing | ||
show-timestamp | ||
:reset-search-query-params="['sort']" | ||
fetch-onchain-data | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. when the collection is generative art, could we add this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sure, we can add to collection page also |
||
/> | ||
</div> | ||
</template> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<template> | ||
<div class="text-k-grey text-xs p-4 border border-k-shade"> | ||
The images and metadata below are from its official website or on-chain data, cached by Koda. It’s our <span class="font-bold">best effort</span>, and we <span class="font-bold">don’t take any responsibility for any incorrectness</span>. You can <NuxtLink | ||
@click="refreshMetadata" | ||
> | ||
<span class="font-bold">request an update</span> | ||
</NuxtLink> or <NuxtLink | ||
to="https://github.com/kodadot/nft-gallery/issues/new?q=sort%3Aupdated-desc+is%3Aissue+is%3Aopen&template=bug.yml" | ||
target="_blank" | ||
> | ||
<span class="font-bold">report any problem</span> | ||
</NuxtLink> you find. | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import type { Prefix } from '@kodadot1/static' | ||
import { refreshOdaCollectionTokensMetadata } from '@/services/oda' | ||
|
||
const props = defineProps<{ | ||
collectionId: string | ||
chain: Prefix | ||
}>() | ||
|
||
const { toast } = useToast() | ||
const { $i18n } = useNuxtApp() | ||
|
||
const refreshMetadata = () => { | ||
toast($i18n.t('toast.refreshMetdata')) | ||
refreshOdaCollectionTokensMetadata(props.chain, props.collectionId) | ||
} | ||
</script> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,6 +131,7 @@ import { useListingCartStore } from '@/stores/listingCart' | |
import DynamicGrid from '@/components/shared/DynamicGrid.vue' | ||
import type { NFT } from '@/types' | ||
import type { GridSection } from '@/stores/preferences' | ||
import { fetchOdaToken } from '@/services/oda' | ||
|
||
const slots = useSlots() | ||
|
||
|
@@ -151,6 +152,7 @@ const props = defineProps<{ | |
collectionPopoverHide?: boolean | ||
hideListing?: boolean | ||
linkTarget?: string | ||
fetchOnchainData?: boolean | ||
}>() | ||
|
||
const emit = defineEmits(['total', 'loading']) | ||
|
@@ -287,4 +289,40 @@ const getSkeletonVariant = (slotProps) => { | |
} | ||
return 'primary' | ||
} | ||
|
||
const { urlPrefix } = usePrefix() | ||
const { isAssetHub } = useIsChain(urlPrefix) | ||
|
||
const processOnchainData = useDebounceFn(async () => { | ||
items.value = await Promise.all(items.value.map(async (item) => { | ||
if (item.sn && !isTokenEntity(item)) { | ||
const tokenData = await fetchOdaToken(urlPrefix.value, item.collection.id, item.sn) | ||
|
||
if (tokenData.metadata && tokenData.metadata_uri) { | ||
return { | ||
...item, | ||
name: tokenData.metadata?.name || item.meta.name, | ||
meta: { | ||
...item.meta, | ||
name: tokenData.metadata?.name || item.meta.name, | ||
id: tokenData.metadata?.image || item.meta.id, | ||
image: tokenData.metadata?.image || item.meta.image, | ||
animationUrl: tokenData.metadata?.animation_url || item.meta.animationUrl, | ||
}, | ||
} | ||
} | ||
} | ||
|
||
return { | ||
...item, | ||
name: item.collection.name, | ||
} | ||
})) | ||
}, 500) | ||
|
||
watch(() => items.value.length, () => { | ||
if (isAssetHub.value && items.value.length && props.fetchOnchainData) { | ||
processOnchainData() | ||
} | ||
}, { immediate: true }) | ||
Comment on lines
+324
to
+327
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Only the new added items need to be fetched, or it will cause duplicating metadata fetch for the same nft item. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. will check |
||
</script> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why change the popover?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to fix props required from
CollectionDropCreatedBy
component