problem: can't view rocket events

This commit is contained in:
gsovereignty
2024-07-03 14:42:27 +08:00
parent 58388c71a0
commit d8a062f0ec
3 changed files with 49 additions and 48 deletions

View File

@@ -0,0 +1,19 @@
<script lang="ts">
import { Button } from '$lib/components/ui/button/index.js';
import * as Card from '$lib/components/ui/card/index.js';
import type { NDKEvent } from '@nostr-dev-kit/ndk';
export let rocketEvent: NDKEvent;
</script>
<Card.Root class="w-[350px]">
<Card.Header>
<Card.Title>{rocketEvent.getMatchingTags('d')[0][1]}</Card.Title>
<Card.Description>{rocketEvent.getMatchingTags('mission')[0][1]}</Card.Description>
</Card.Header>
<Card.Content></Card.Content>
<Card.Footer class="flex justify-between">
<Button on:click={()=>{console.log(rocketEvent.rawEvent())}} variant="outline">Print to Console</Button>
<Button>View Full Rocket</Button>
</Card.Footer>
</Card.Root>

View File

@@ -0,0 +1,20 @@
<script lang="ts">
import Terminal from 'lucide-svelte/icons/terminal';
import * as Alert from '$lib/components/ui/alert/index.js';
export let text:string[];
</script>
<Alert.Root>
<Terminal class="h-4 w-4" />
<Alert.Title>Todo:</Alert.Title>
<Alert.Description>
{#if text.length > 1}
<ul class="list-disc">
{#each text as t}<li>{t}</li>{/each}
</ul>
{:else}
{text}
{/if}
</Alert.Description>
</Alert.Root>

View File

@@ -4,7 +4,8 @@
import type { NDKEvent } from '@nostr-dev-kit/ndk';
import { onDestroy } from 'svelte';
import { ndk } from '@/ndk';
//flow: fetch all 31108's. For now, just validate that the author is the same as the ignition author. If naming conflicts, look for namerocket listing.
import Todo from '../../components/Todo.svelte';
import RocketCard from '../../components/RocketCard.svelte';
let entries: NDKEventStore<NDKEvent> | undefined;
onDestroy(() => {
@@ -12,54 +13,15 @@
});
entries = $ndk.storeSubscribe([{ kinds: [31108 as number] }], { subId: 'rockets' });
//todo: until we have namerocket working, just manually dedupe rockets based on my pubkey
//todo: write a recognizer/validator for rocket events
</script>
<Heading title="Rockets" />
{#if entries && $entries}
{#each $entries as e} <div on:click={()=>{console.log(e.rawEvent())}}>{e.tags}</div> <br /> {/each}
<Todo text={["render these in a nicer way, maybe a grid or something", "make this scroll"]} />
{#each $entries as rocketEvent}
<RocketCard {rocketEvent} />
{/each}
{/if}
<div
class="max-w-sm rounded-lg border border-gray-200 bg-white shadow dark:border-gray-700 dark:bg-gray-800"
>
<a href="#">
<img
class="rounded-t-lg"
src="https://assets.editorial.aetnd.com/uploads/2009/11/joseph-stalin-gettyimages-464426375.jpg"
alt=""
/>
</a>
<div class="p-5">
<a href="#">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">
The People's Rocket
</h5>
</a>
<p class="mb-3 font-normal text-gray-700 dark:text-gray-400">
Dedicated to delivering excellence through central planning.
</p>
<p class="mb-3 font-normal text-gray-700 dark:text-gray-400">Created by PabloF7z</p>
<a
href="#"
class="inline-flex items-center rounded-lg bg-blue-700 px-3 py-2 text-center text-sm font-medium text-white hover:bg-blue-800 focus:outline-none focus:ring-4 focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
>
Read more
<svg
class="ms-2 h-3.5 w-3.5 rtl:rotate-180"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 14 10"
>
<path
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M1 5h12m0 0L9 1m4 4L9 9"
/>
</svg>
</a>
</div>
</div>