-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into chore/add-iota-evm
- Loading branch information
Showing
118 changed files
with
1,139 additions
and
794 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
packages/desktop/views/dashboard/collectibles/components/CollectionDetails.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script lang="ts"> | ||
import { Collection } from '@core/nfts' | ||
import { selectedCollectionId } from '@core/nfts/stores' | ||
import { NftGallery } from '@ui' | ||
import { onDestroy } from 'svelte' | ||
export let collection: Collection | ||
onDestroy(() => { | ||
$selectedCollectionId = undefined | ||
}) | ||
</script> | ||
|
||
<NftGallery nfts={collection.nfts} /> |
65 changes: 65 additions & 0 deletions
65
packages/desktop/views/dashboard/collectibles/components/CollectionsGallery.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<script lang="ts"> | ||
import CollectionsGalleryItem from './CollectionsGalleryItem.svelte' | ||
import { Collection, Collections } from '@core/nfts' | ||
import VirtualList from '@sveltejs/svelte-virtual-list' | ||
import { breakpoint } from '@core/app/stores' | ||
export let collections: Collections | ||
$: collectionsArray = Object.entries(collections).map(([id, collection]) => { | ||
return { id, ...collection } | ||
}) | ||
const COLLECTIONS_PER_CHUNK_FOR_SCREEN_SIZE = { | ||
sm: 2, | ||
md: 3, | ||
lg: 3, | ||
xl: 4, | ||
'2xl': 5, | ||
} | ||
let rowDivElement: HTMLDivElement | ||
$: rowDivHeight = getRowDivHeight(rowDivElement?.clientHeight) | ||
function getRowDivHeight(clientHeight: number | undefined) { | ||
if (!clientHeight) { | ||
return rowDivHeight | ||
} | ||
if (!rowDivElement) { | ||
return clientHeight | ||
} | ||
if (Math.abs(clientHeight - rowDivHeight) > 200) { | ||
return rowDivHeight | ||
} | ||
return clientHeight | ||
} | ||
let collectionChunks: (Collection | undefined)[][] = [] | ||
$: collectionChunks = Array.from( | ||
{ length: Math.ceil(collectionsArray.length / COLLECTIONS_PER_CHUNK_FOR_SCREEN_SIZE[$breakpoint]) }, | ||
(_, i) => { | ||
return Array.from( | ||
{ length: COLLECTIONS_PER_CHUNK_FOR_SCREEN_SIZE[$breakpoint] }, | ||
(_, j) => collectionsArray[i * COLLECTIONS_PER_CHUNK_FOR_SCREEN_SIZE[$breakpoint] + j] | ||
) | ||
} | ||
) | ||
</script> | ||
|
||
<VirtualList items={collectionChunks} let:item itemHeight={rowDivHeight}> | ||
<div | ||
bind:this={rowDivElement} | ||
class="grid sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-5 gap-3 2xl:gap-4 pb-3 2xl:pb-4" | ||
> | ||
{#each item as collection} | ||
{#if collection} | ||
<CollectionsGalleryItem {collection} /> | ||
{:else} | ||
<div /> | ||
{/if} | ||
{/each} | ||
</div> | ||
</VirtualList> |
81 changes: 81 additions & 0 deletions
81
packages/desktop/views/dashboard/collectibles/components/CollectionsGalleryItem.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<script lang="ts"> | ||
import { Collection } from '@core/nfts' | ||
import { AssetPillsForNft, MediaPlaceholder, NetworkAvatar, NftMedia } from '@ui' | ||
import { Pill, Text } from '@bloomwalletio/ui' | ||
import { downloadingNftId, selectedCollectionId } from '@core/nfts/stores' | ||
import { localize } from '@core/i18n' | ||
import { CollectiblesRoute, collectiblesRouter } from '@core/router' | ||
export let collection: Collection | ||
function onCollectionClick(): void { | ||
$selectedCollectionId = collection.id | ||
$collectiblesRouter?.goTo(CollectiblesRoute.Details) | ||
$collectiblesRouter?.setBreadcrumb(collection.name) | ||
} | ||
</script> | ||
|
||
<button type="button" on:click={onCollectionClick}> | ||
<div class="container"> | ||
<div class="flex-1 flex relative bg-surface-2 dark:bg-surface-2-dark rounded-t-[0.9rem] overflow-hidden"> | ||
<!-- TODO: change media to collection URI instead of first NFT URI --> | ||
<NftMedia nft={collection.nfts[0]} classes="min-w-full min-h-full object-cover" loop muted> | ||
<MediaPlaceholder | ||
type={collection.nfts[0]?.type} | ||
downloading={$downloadingNftId === collection.nfts[0]?.id} | ||
size="md" | ||
slot="placeholder" | ||
/> | ||
</NftMedia> | ||
</div> | ||
<div class="w-full flex flex-col gap-2 p-3"> | ||
<nft-name class="w-full flex flex-row items-center gap-2 overflow-hidden"> | ||
<Text type="body2" truncate>{collection.name}</Text> | ||
</nft-name> | ||
<nft-pills class="flex flex-row items-center gap-2"> | ||
<NetworkAvatar networkId={collection.nfts[0].networkId} size="sm" showTooltip /> | ||
<AssetPillsForNft nft={collection.nfts[0]} /> | ||
<Pill compact color="brand">{localize('general.nfts', { count: collection.nfts.length })}</Pill> | ||
</nft-pills> | ||
</div> | ||
</div> | ||
</button> | ||
|
||
<style lang="postcss"> | ||
.container { | ||
@apply relative w-full flex flex-col mt-4; | ||
@apply divide-y divide-solid divide-stroke dark:divide-stroke-dark; | ||
@apply rounded-2xl border-2 border-solid border-stroke dark:border-stroke-dark; | ||
@apply bg-surface-1 dark:bg-surface-1-dark; | ||
@apply duration-300 z-[2]; | ||
transition-property: background-color, border-color, box-shadow; | ||
aspect-ratio: 3 / 4; | ||
&:hover, | ||
&:focus { | ||
@apply shadow-lg dark:shadow-violet-900/25; | ||
@apply border-2 border-brand-500; | ||
@apply bg-surface dark:bg-surface-dark; | ||
} | ||
} | ||
button { | ||
@apply relative; | ||
&::after, | ||
&::before { | ||
@apply content-[''] absolute block left-0 right-0 z-[1]; | ||
@apply rounded-2xl border-t-2 border-x-2 border-solid border-stroke dark:border-stroke-dark; | ||
@apply bg-surface-1 dark:bg-surface-1-dark; | ||
aspect-ratio: 3 / 4; | ||
} | ||
&::after { | ||
@apply top-2.5 mx-2; | ||
} | ||
&::before { | ||
@apply top-[0.2rem] mx-4 blur-[1px]; | ||
} | ||
} | ||
</style> |
2 changes: 2 additions & 0 deletions
2
packages/desktop/views/dashboard/collectibles/components/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
export { default as CollectiblesTabs } from './CollectiblesTabs.svelte' | ||
export { default as CollectionDetails } from './CollectionDetails.svelte' | ||
export { default as CollectionsGallery } from './CollectionsGallery.svelte' | ||
export { default as Erc721CollectibleDetails } from './Erc721CollectibleDetails.svelte' | ||
export { default as Irc27CollectibleDetails } from './Irc27CollectibleDetails.svelte' |
Oops, something went wrong.