Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
294 lines
9.8 KiB
294 lines
9.8 KiB
<!--
|
|
// Copyright (c) 2022-2024 Niko Bonnieure, Par le Peuple, NextGraph.org developers
|
|
// All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0
|
|
// <LICENSE-APACHE2 or http://www.apache.org/licenses/LICENSE-2.0>
|
|
// or the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>,
|
|
// at your option. All files in the project carrying such
|
|
// notice may not be copied, modified, or distributed except
|
|
// according to those terms.
|
|
-->
|
|
|
|
<script lang="ts">
|
|
import { push, default as Router } from "svelte-spa-router";
|
|
import { isLoading } from "svelte-i18n";
|
|
|
|
import { onMount, tick, onDestroy } from "svelte";
|
|
import {
|
|
wallets,
|
|
active_wallet,
|
|
opened_wallets,
|
|
close_active_session,
|
|
disconnections_subscribe,
|
|
select_default_lang,
|
|
} from "./store";
|
|
|
|
import Home from "./routes/Home.svelte";
|
|
import Test from "./routes/Test.svelte";
|
|
|
|
import NURI from "./routes/NURI.svelte";
|
|
import NotFound from "./routes/NotFound.svelte";
|
|
import WalletCreate from "./routes/WalletCreate.svelte";
|
|
import Invitation from "./routes/Invitation.svelte";
|
|
import WalletLogin from "./routes/WalletLogin.svelte";
|
|
import WalletInfo from "./routes/WalletInfo.svelte";
|
|
import User from "./routes/User.svelte";
|
|
import UserRegistered from "./routes/UserRegistered.svelte";
|
|
import Install from "./routes/Install.svelte";
|
|
import ScanQR from "./routes/ScanQR.svelte";
|
|
|
|
import ng from "./api";
|
|
import AccountInfo from "./routes/AccountInfo.svelte";
|
|
import WalletLoginQr from "./routes/WalletLoginQr.svelte";
|
|
import WalletLoginTextCode from "./routes/WalletLoginTextCode.svelte";
|
|
|
|
const routes = new Map();
|
|
routes.set("/", Home);
|
|
routes.set("/test", Test);
|
|
routes.set("/wallet/login", WalletLogin);
|
|
routes.set("/wallet/login-qr", WalletLoginQr);
|
|
routes.set("/wallet/login-text-code", WalletLoginTextCode);
|
|
routes.set("/wallet/create", WalletCreate);
|
|
routes.set("/i/:invitation", Invitation);
|
|
routes.set("/user", User);
|
|
routes.set("/user/registered", UserRegistered);
|
|
routes.set("/wallet", WalletInfo);
|
|
routes.set("/user/accounts", AccountInfo);
|
|
routes.set("/wallet/scanqr", ScanQR);
|
|
if (import.meta.env.NG_APP_WEB) routes.set("/install", Install);
|
|
routes.set(/^\/did:ng(.*)/i, NURI);
|
|
routes.set("*", NotFound);
|
|
|
|
let unsubscribe = () => {};
|
|
|
|
let wallet_channel;
|
|
let unsub_main_close;
|
|
|
|
// window.refresh_wallets = async () => {
|
|
// let walls = await ng.get_wallets();
|
|
// wallets.set(walls);
|
|
// };
|
|
|
|
onMount(async () => {
|
|
try {
|
|
await disconnections_subscribe();
|
|
await select_default_lang();
|
|
} catch (e) {
|
|
console.error(e);
|
|
//console.log("called disconnections_subscribe twice");
|
|
}
|
|
let tauri_platform = import.meta.env.TAURI_PLATFORM;
|
|
//console.log(await ng.test());
|
|
if (tauri_platform) {
|
|
let walls = await ng.get_wallets();
|
|
wallets.set(walls);
|
|
|
|
unsubscribe = active_wallet.subscribe(async (value) => {
|
|
if (value) {
|
|
if (value.wallet) {
|
|
opened_wallets.update((w) => {
|
|
w[value.id] = value.wallet;
|
|
return w;
|
|
});
|
|
} else {
|
|
await ng.wallet_close(value.id);
|
|
active_wallet.set(undefined);
|
|
opened_wallets.update((w) => {
|
|
delete w[value.id];
|
|
return w;
|
|
});
|
|
push("#/wallet/login");
|
|
}
|
|
}
|
|
});
|
|
|
|
let window_api = await import("@tauri-apps/plugin-window");
|
|
let event_api = await import("@tauri-apps/api/event");
|
|
let main = window_api.Window.getByLabel("main");
|
|
unsub_main_close = await main.onCloseRequested(async (event) => {
|
|
//console.log("onCloseRequested main");
|
|
await event_api.emit("close_all", {});
|
|
let registration = window_api.Window.getByLabel("registration");
|
|
if (registration) {
|
|
await registration.close();
|
|
}
|
|
let viewer = window_api.Window.getByLabel("viewer");
|
|
if (viewer) {
|
|
await viewer.close();
|
|
}
|
|
});
|
|
} else {
|
|
// ON WEB CLIENTS
|
|
window.addEventListener("storage", async (event) => {
|
|
//console.log("localStorage event", event);
|
|
if (event.storageArea != localStorage) return;
|
|
if (event.key === "ng_wallets") {
|
|
//console.log("localStorage", JSON.stringify($wallets));
|
|
await ng.wallets_reload();
|
|
wallets.set(await ng.get_wallets());
|
|
//console.log("localStorage after", JSON.stringify($wallets));
|
|
}
|
|
});
|
|
wallets.set(await ng.get_wallets());
|
|
// TODO: check the possibility of XS-Leaks. I don't see any, but it should be checked
|
|
// https://github.com/privacycg/storage-partitioning
|
|
// https://github.com/whatwg/html/issues/5803
|
|
// https://w3cping.github.io/privacy-threat-model/
|
|
// https://chromium.googlesource.com/chromium/src/+/fa17a6142f99d58de533d65cd8f3cd0e9a8ee58e
|
|
// https://bugs.webkit.org/show_bug.cgi?id=229814
|
|
wallet_channel = new BroadcastChannel("ng_wallet");
|
|
window.wallet_channel = wallet_channel;
|
|
wallet_channel.postMessage({ cmd: "startup" }, location.href);
|
|
wallet_channel.onmessage = async (event) => {
|
|
//console.log(event.data.cmd, event.data);
|
|
if (!location.href.startsWith(event.origin)) return;
|
|
switch (event.data.cmd) {
|
|
case "startup":
|
|
for (let saved_id of Object.keys($wallets)) {
|
|
if ($wallets[saved_id].in_memory) {
|
|
wallet_channel.postMessage(
|
|
{
|
|
cmd: "new_in_mem",
|
|
name: saved_id,
|
|
lws: $wallets[saved_id],
|
|
},
|
|
location.href
|
|
);
|
|
}
|
|
}
|
|
// if ($active_wallet && $active_wallet.wallet) {
|
|
// wallet_channel.postMessage(
|
|
// { cmd: "opened", wallet: $active_wallet },
|
|
// location.href
|
|
// );
|
|
// }
|
|
for (let opened of Object.keys($opened_wallets)) {
|
|
wallet_channel.postMessage(
|
|
{
|
|
cmd: "opened",
|
|
wallet: { wallet: $opened_wallets[opened], id: opened },
|
|
},
|
|
location.href
|
|
);
|
|
}
|
|
|
|
break;
|
|
case "opened":
|
|
if (!$opened_wallets[event.data.wallet.id]) {
|
|
//await tick();
|
|
// console.log(
|
|
// "ADDING TO OPENED",
|
|
// event.data.wallet.id,
|
|
// JSON.stringify($opened_wallets),
|
|
// event.data.wallet.wallet
|
|
// );
|
|
if (event.data.ng_wallets) {
|
|
localStorage.setItem("ng_wallets", event.data.ng_wallets);
|
|
await ng.wallets_reload();
|
|
wallets.set(await ng.get_wallets());
|
|
}
|
|
try {
|
|
await ng.wallet_was_opened(event.data.wallet.wallet);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
opened_wallets.update((w) => {
|
|
w[event.data.wallet.id] = event.data.wallet.wallet;
|
|
return w;
|
|
});
|
|
}
|
|
break;
|
|
case "new_in_mem":
|
|
//console.log("GOT new_in_mem", event.data);
|
|
if (event.data.lws) {
|
|
if (!$wallets[event.data.name]) {
|
|
await ng.add_in_memory_wallet(event.data.lws);
|
|
wallets.update((w) => {
|
|
w[event.data.name] = event.data.lws;
|
|
return w;
|
|
});
|
|
}
|
|
}
|
|
if (event.data.opened) {
|
|
if (!$opened_wallets[event.data.name]) {
|
|
await ng.wallet_was_opened(event.data.opened);
|
|
opened_wallets.update((w) => {
|
|
w[event.data.name] = event.data.opened;
|
|
return w;
|
|
});
|
|
}
|
|
}
|
|
break;
|
|
case "closed":
|
|
opened_wallets.update((w) => {
|
|
delete w[event.data.walletid];
|
|
return w;
|
|
});
|
|
await ng.wallet_close(event.data.walletid);
|
|
if ($active_wallet && $active_wallet.id == event.data.walletid) {
|
|
await close_active_session();
|
|
active_wallet.set(undefined);
|
|
push("#/wallet/login");
|
|
}
|
|
break;
|
|
}
|
|
};
|
|
unsubscribe = active_wallet.subscribe(async (value) => {
|
|
if (value) {
|
|
if (value.wallet) {
|
|
opened_wallets.update((w) => {
|
|
w[value.id] = value.wallet;
|
|
return w;
|
|
});
|
|
//await tick();
|
|
//console.log("posting opened");
|
|
wallet_channel.postMessage(
|
|
{
|
|
cmd: "opened",
|
|
wallet: value,
|
|
ng_wallets: localStorage.getItem("ng_wallets"),
|
|
},
|
|
location.href
|
|
);
|
|
} else {
|
|
wallet_channel.postMessage(
|
|
{ cmd: "closed", walletid: value.id },
|
|
location.href
|
|
);
|
|
active_wallet.set(undefined);
|
|
await ng.wallet_close(value.id);
|
|
//active_session.set(undefined);
|
|
opened_wallets.update((w) => {
|
|
delete w[value.id];
|
|
return w;
|
|
});
|
|
push("#/wallet/login");
|
|
}
|
|
} else {
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
onDestroy(() => {
|
|
unsubscribe();
|
|
if (unsub_main_close) unsub_main_close();
|
|
});
|
|
|
|
// import { to_debug } from "./wallet_emojis";
|
|
// to_debug();
|
|
</script>
|
|
|
|
<!-- <p>
|
|
{!$active_session}
|
|
{JSON.stringify(Object.keys($wallets))}
|
|
{JSON.stringify($active_wallet)}
|
|
{JSON.stringify(Object.keys($opened_wallets))}
|
|
{JSON.stringify($active_session)}
|
|
</p> -->
|
|
|
|
{#if $isLoading}
|
|
<p class="text-center">Loading translations...</p>
|
|
{:else}
|
|
<Router {routes} />
|
|
{/if}
|
|
|