blowater/UI/conversation-list.test.tsx
2023-10-16 06:39:21 +08:00

45 lines
1.5 KiB
TypeScript

/** @jsx h */
import { h, render } from "https://esm.sh/preact@10.17.1";
import { ConversationList } from "./conversation-list.tsx";
import { fail } from "https://deno.land/std@0.176.0/testing/asserts.ts";
import { Database_Contextual_View } from "../database.ts";
import { PrivateKey } from "../lib/nostr-ts/key.ts";
import { InMemoryAccountContext } from "../lib/nostr-ts/nostr.ts";
import { testEventBus } from "./_setup.test.ts";
import { initialModel } from "./app_model.ts";
import { DM_List } from "./conversation-list.ts";
import { NewIndexedDB } from "./dexie-db.ts";
import { ProfileSyncer } from "../features/profile.ts";
import { ConnectionPool } from "../lib/nostr-ts/relay.ts";
import { OtherConfig } from "./config-other.ts";
const ctx = InMemoryAccountContext.New(PrivateKey.Generate());
const db = NewIndexedDB();
if (db instanceof Error) {
fail(db.message);
}
const database = await Database_Contextual_View.New(db, ctx);
if (database instanceof Error) {
fail(database.message);
}
const convoLists = new DM_List(ctx, new ProfileSyncer(database, new ConnectionPool()));
convoLists.addEvents(database.events);
const model = initialModel();
const view = () =>
render(
<ConversationList
convoListRetriever={convoLists}
hasNewMessages={new Set()}
pinListGetter={OtherConfig.Empty()}
eventBus={testEventBus}
emit={testEventBus.emit}
profileGetter={database}
/>,
document.body,
);
view();