Add a Go HTTP API with Ed25519 auth and invitation onboarding, user-scoped GeoJSON Point management, a Bun-tested @noble/ed25519 TypeScript client, static Vue/Vuetify frontend integration, and a Gitea CI workflow running both Go and Bun test suites. Made-with: Cursor
82 lines
2.1 KiB
JavaScript
82 lines
2.1 KiB
JavaScript
import { createApiClient } from "./api.js";
|
|
|
|
const { createApp, ref, reactive, onMounted } = Vue;
|
|
|
|
createApp({
|
|
setup() {
|
|
const apiBase = ref(localStorage.getItem("geo_api_base") || "http://localhost:8080");
|
|
const state = reactive({
|
|
publicKey: "",
|
|
privateKey: "",
|
|
accessToken: "",
|
|
collections: [],
|
|
newCollectionName: "",
|
|
status: "Ready",
|
|
});
|
|
|
|
let client = createApiClient(apiBase.value);
|
|
|
|
const rebuildClient = () => {
|
|
client = createApiClient(apiBase.value);
|
|
localStorage.setItem("geo_api_base", apiBase.value);
|
|
state.status = `API base set to ${apiBase.value}`;
|
|
};
|
|
|
|
const ensureKeys = async () => {
|
|
try {
|
|
const keys = await client.ensureKeysInStorage();
|
|
state.publicKey = keys.publicKey;
|
|
state.privateKey = keys.privateKey;
|
|
state.status = "Keys loaded from localStorage.";
|
|
} catch (err) {
|
|
state.status = err.message;
|
|
}
|
|
};
|
|
|
|
const login = async () => {
|
|
try {
|
|
state.accessToken = await client.loginWithSignature(state.publicKey, state.privateKey);
|
|
client.setAccessToken(state.accessToken);
|
|
state.status = "Authenticated.";
|
|
} catch (err) {
|
|
state.status = err.message;
|
|
}
|
|
};
|
|
|
|
const listCollections = async () => {
|
|
try {
|
|
client.setAccessToken(state.accessToken);
|
|
const data = await client.listCollections();
|
|
state.collections = data.collections || [];
|
|
} catch (err) {
|
|
state.status = err.message;
|
|
}
|
|
};
|
|
|
|
const createCollection = async () => {
|
|
try {
|
|
client.setAccessToken(state.accessToken);
|
|
await client.createCollection(state.newCollectionName);
|
|
state.newCollectionName = "";
|
|
await listCollections();
|
|
} catch (err) {
|
|
state.status = err.message;
|
|
}
|
|
};
|
|
|
|
onMounted(async () => {
|
|
await ensureKeys();
|
|
});
|
|
|
|
return {
|
|
apiBase,
|
|
state,
|
|
rebuildClient,
|
|
ensureKeys,
|
|
login,
|
|
listCollections,
|
|
createCollection,
|
|
};
|
|
},
|
|
}).use(Vuetify.createVuetify()).mount("#app");
|