33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
import { get } from "svelte/store";
|
|
import { exportSpecV2 } from "./characterCards";
|
|
import { VirtualWriter, isTauri, openURL } from "./storage/globalApi";
|
|
import { sleep } from "./util";
|
|
import { CurrentCharacter } from "./stores";
|
|
import { DataBase, type character } from "./storage/database";
|
|
import { alertStore } from "./alert";
|
|
|
|
let pong = false;
|
|
|
|
window.addEventListener("message", (event) => {
|
|
if (event.origin === "https://realm.risuai.net") {
|
|
if (event.data === "pong") {
|
|
pong = true;
|
|
}
|
|
}
|
|
});
|
|
|
|
export async function shareRealmCard() {
|
|
const char = structuredClone(get(CurrentCharacter)) as character
|
|
const writer = new VirtualWriter()
|
|
await exportSpecV2(char, 'png', {writer: writer})
|
|
openRealm(char.name, writer.buf.buffer)
|
|
}
|
|
|
|
export async function openRealm(name:string,data:ArrayBuffer) {
|
|
const tk = get(DataBase)?.account?.token;
|
|
const id = get(DataBase)?.account?.id
|
|
const trimedName = name.replace(/[^a-zA-Z0-9]/g, '') || 'character';
|
|
const filedata = encodeURIComponent(Buffer.from(data).toString('base64')) + `&${trimedName}.png`;
|
|
const url = `https://realm.risuai.net/upload?token=${tk}&token_id=${id}#filedata=${filedata}`
|
|
window.open(url, '_blank')
|
|
} |