start building some DTOs
This commit is contained in:
parent
a768261688
commit
d7600f28fc
3 changed files with 84 additions and 40 deletions
|
@ -20,20 +20,12 @@ export class Adapter {
|
|||
public updateMetadata(): void {};
|
||||
public getMetadata(): any { return {} };
|
||||
|
||||
// according to the docs NDK must be a singleton...
|
||||
// this probalby will make having more than one nostr adapter at once problematic
|
||||
private static ndk: NDK | null = null;
|
||||
|
||||
public static create(): Adapter {
|
||||
let adapter = new Adapter();
|
||||
|
||||
adapter.init = ()=>{};
|
||||
adapter.getInbox = async ()=>{};
|
||||
adapter.getFollowers = ()=>[];
|
||||
adapter.getFollowing = ()=>[];
|
||||
adapter.publish = ()=>{};
|
||||
adapter.updateMetadata = ()=>{};
|
||||
adapter.getMetadata = ()=>{return {}};
|
||||
|
||||
return adapter;
|
||||
return new Adapter();
|
||||
}
|
||||
|
||||
public static toNostr(adapter: Adapter, settings: any): Adapter {
|
||||
|
|
13
ts/index.ts
13
ts/index.ts
|
@ -1,4 +1,5 @@
|
|||
import {Adapter} from "./adapter";
|
||||
import {Message, Attachment} from "./message"
|
||||
|
||||
function _(key: string, value: any | null | undefined = undefined): any | null {
|
||||
const x = <any>window;
|
||||
|
@ -27,9 +28,14 @@ function main():void {
|
|||
adapters.push(Adapter.toMasto(a, s));
|
||||
}
|
||||
}
|
||||
if (adapters.length > 0) {
|
||||
_("currentAdapter", 0);
|
||||
// update tabbar and tabcontent with first adapter
|
||||
}
|
||||
} else {
|
||||
console.log("no settings exist for this client");
|
||||
_("settings", { adapters: [] });
|
||||
showSettings();
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -67,15 +73,14 @@ function addAdapter(): void {
|
|||
return self;
|
||||
}, "");
|
||||
html += "</select>";
|
||||
// depending on protocol, different fields
|
||||
// nostr: privkey, initial relays
|
||||
|
||||
// nostr is the first protocol, so show its options by default
|
||||
html += "<div id='settings_newadapter_protocoloptions'>";
|
||||
html += " <label>nickname<input id='settings_newadapter_nickname'/></label>";
|
||||
html += " <label>privkey<input id='settings_newadapter_nostr_privkey'/></label>";
|
||||
html += " <label>default relays<input id='settings_newadapter_nostr_default_relays'/></label>";
|
||||
html += "</div>";
|
||||
// masto/AP: server, username, pw/apikey
|
||||
// save button, back button
|
||||
|
||||
html += "<button onclick='saveAdapter()'>Add</button>";
|
||||
html += "<button onclick='showSettings()'>Back</button>";
|
||||
|
||||
|
|
47
ts/message.ts
Normal file
47
ts/message.ts
Normal file
|
@ -0,0 +1,47 @@
|
|||
import {NDKEvent} from "@nostr-dev-kit/ndk"
|
||||
import * as masto from "masto";
|
||||
|
||||
type APStatus = masto.mastodon.v1.Status;
|
||||
|
||||
export class Message {
|
||||
public author: Author = new Author();
|
||||
public protocol: string = "";
|
||||
public content: string = "";
|
||||
public attachments: Attachment[] = [];
|
||||
public replyTo: Message | null = null;
|
||||
public replies: Message[] = [];
|
||||
public mentions: Author[] = [];
|
||||
public created: Date = new Date();
|
||||
public edited: Date = new Date();
|
||||
public visibility: string = "public";
|
||||
|
||||
// this will contain additional data about what kind of message it is
|
||||
public aux: any | null = null;
|
||||
|
||||
public static fromNostr(event: NDKEvent): Message {
|
||||
let self = new Message();
|
||||
// build out the message based on the contents of event
|
||||
return self;
|
||||
}
|
||||
|
||||
public static fromMasto(status: APStatus): Message {
|
||||
let self = new Message();
|
||||
// build out the message based on the contents of status
|
||||
return self;
|
||||
}
|
||||
}
|
||||
|
||||
export class Author {
|
||||
public id: string = "";
|
||||
public name: string = "";
|
||||
public profileData: string = "";
|
||||
public messages: Message[] = [];
|
||||
}
|
||||
|
||||
export class Attachment {
|
||||
public file: Uint8Array = new Uint8Array();
|
||||
public altText: string = "";
|
||||
public filename: string = "";
|
||||
}
|
||||
|
||||
export default { Message, Attachment, Author }
|
Loading…
Reference in a new issue