Skip to content
Snippets Groups Projects
Commit 9023c333 authored by Midhun Suresh's avatar Midhun Suresh
Browse files

WIP

parent 5e794b93
No related branches found
No related tags found
No related merge requests found
import { Platform, Client, LoadStatus, createNavigation, createRouter, RoomViewModel, TimelineView, } from "hydrogen-view-sdk";
import assetPaths from "hydrogen-view-sdk/paths/vite";
import "hydrogen-view-sdk/style.css";
export class Hydrogen {
private readonly _homeserver: string;
private _platform: Record<string, any>;
private _client: Record<string, any>;
private _urlRouter: Record<string, any>;
private _navigation: Record<string, any>;
private _container: HTMLDivElement;
constructor(homeserver: string, container: HTMLDivElement) {
this._homeserver = homeserver;
this._container = container;
this._platform = new Platform(container, assetPaths, {}, { development: import.meta.env.DEV });
this._navigation = createNavigation();
this._platform.setNavigation(this._navigation);
this._urlRouter = createRouter({ navigation: this._navigation, history: this._platform.history });
this._urlRouter.attach();
this._client = new Client(this._platform);
}
async register(username: string, password: string, initialDeviceDisplayName: string) {
let stage = await this._client.startRegistration(this._homeserver, username, password, initialDeviceDisplayName);
while (stage !== true) {
stage = await stage.complete();
}
return stage;
}
async login(username: string, password: string) {
const loginOptions = await this._client.queryLogin(this._homeserver).result;
this._client.startWithLogin(loginOptions.password(username, password));
await this._client.loadStatus.waitFor((status: string) => {
return status === LoadStatus.Ready ||
status === LoadStatus.Error ||
status === LoadStatus.LoginFailed;
}).promise;
if (this._client.loginFailure) {
throw new Error("login failed: " + this._client.loginFailure);
} else if (this._client.loadError) {
throw new Error("load failed: " + this._client.loadError.message);
}
}
async mountRoom(roomId: string) {
const session = this._client.session;
const room = session.rooms.get(roomId);
const vm = new RoomViewModel({
room,
ownUserId: session.userId,
platform: this._platform,
urlCreator: this._urlRouter,
navigation: this._navigation,
});
await vm.load();
const view = new TimelineView(vm.timelineViewModel);
this._container.appendChild(view.mount());
}
}
import { import { Hydrogen } from "./Hydrogen";
Platform, import type { IChatterboxConfig } from "./types/IChatterboxConfig";
Client,
LoadStatus, async function fetchConfig(): Promise<IChatterboxConfig> {
createNavigation, const root = document.querySelector("#chatterbox") as HTMLDivElement;
createRouter, if (!root) {
RoomViewModel, throw new Error("No element with id as 'chatterbox' found!");
TimelineView }
} from "hydrogen-view-sdk";
import assetPaths from "hydrogen-view-sdk/paths/vite"; const configLink = root?.dataset.configLink;
import "hydrogen-view-sdk/style.css"; if (!configLink) {
throw new Error("Root element does not have config specified");
}
const config: IChatterboxConfig = await (await fetch(configLink)).json();
return config;
}
async function main() { async function main() {
const app = document.querySelector<HTMLDivElement>('#app')! const root = document.querySelector("#chatterbox") as HTMLDivElement;
const config = {}; const { homeserver } = await fetchConfig();
const platform = new Platform(app, assetPaths, config, { development: import.meta.env.DEV }); const hydrogen = new Hydrogen(homeserver, root);
const navigation = createNavigation(); const username = generateRandomString(7);
platform.setNavigation(navigation); const password = generateRandomString(10);
const urlRouter = createRouter({ console.log(`Attempting to register with username = ${username} and password = ${password}`);
navigation: navigation, await hydrogen.register(username, password, "Chatterbox");
history: platform.history console.log("Registration done");
}); console.log("Attempting to login with same credentials");
urlRouter.attach(); await hydrogen.login(username, password);
const client = new Client(platform); console.log("Login successful");
const loginOptions = await client.queryLogin("matrix.org").result;
client.startWithLogin(loginOptions.password("foobaraccount", "UzmiRif6UnHqp6s")); }
await client.loadStatus.waitFor((status: string) => { function generateRandomString(length: number): string {
return status === LoadStatus.Ready || let result = "";
status === LoadStatus.Error || const characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_";
status === LoadStatus.LoginFailed; var charactersLength = characters.length;
}).promise; for (let i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
if (client.loginFailure) {
alert("login failed: " + client.loginFailure);
} else if (client.loadError) {
alert("load failed: " + client.loadError.message);
} else {
const {session} = client;
// looks for room corresponding to #element-dev:matrix.org, assuming it is already joined
const room = session.rooms.get("!nXJtsUatHBGyIYfyYw:matrix.org");
const vm = new RoomViewModel({
room,
ownUserId: session.userId,
platform,
urlCreator: urlRouter,
navigation,
});
await vm.load();
const view = new TimelineView(vm.timelineViewModel);
app.appendChild(view.mount());
} }
return result;
} }
main(); main();
\ No newline at end of file
export interface IChatterboxConfig {
homeserver: string;
auto_join_room: string;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment