Message saving

Now saves messages and reloads existing messages even when the window is not open.

Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
Armored Dragon 2024-02-25 14:14:08 -06:00
parent 63a894f996
commit 21180144a6
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -10,7 +10,6 @@
(function () {
"use strict";
// TODO: Encryption + PMs
// TODO: Find window init event method
var app_is_visible = false;
var settings = {
@ -25,6 +24,7 @@
var app_button;
const channels = ["domain", "local", "system"];
var max_local_distance = 20; // Maximum range for the local chat
var message_history = Settings.getValue("ArmoredChat-Messages", []);
startup();
@ -72,8 +72,6 @@
chat_overlay_window.closed.connect(toggleMainChatWindow);
chat_overlay_window.sendToQml({ url: Script.resolvePath("./index.html") });
// FIXME: Loadsettings need to happen after the window is initialized?
// Script.setTimeout(_loadSettings, 1000);
chat_overlay_window.webEventReceived.connect(onWebEventReceived);
}
@ -104,12 +102,19 @@
// If message is local, and if player is too far away from location, don't do anything
if (channel === "local" && Vec3.distance(MyAvatar.position, message.position) < max_local_distance) return;
// Floof chat compatibility.
if (message.type) delete message.type;
// NOTE: Floof chat compatibility.
message.type = "show_message";
// Update web view of to new message
_emitEvent({ type: "show_message", ...message });
// Save message to our history
let saved_message = message;
delete saved_message.position;
message_history.push(message);
if (message_history.length > settings.max_history) message_history.shift();
Settings.setValue("ArmoredChat-Messages", message_history);
// Display on popup chat area
_overlayMessage({ sender: message.displayName, message: message });
}
@ -121,9 +126,6 @@
var parsed = JSON.parse(event);
// Not our app? Not our problem!
// if (parsed.app !== "ArmoredChat") return;
switch (parsed.type) {
case "page_update":
app_data.current_page = parsed.page;
@ -218,6 +220,13 @@
chat_overlay_window.presentationMode = settings.external_window ? Desktop.PresentationMode.NATIVE : Desktop.PresentationMode.VIRTUAL;
_emitEvent({ type: "setting_update", setting_name: "external_window", setting_value: true });
}
// Refill the history with the saved messages
message_history.forEach((message) => {
delete message.action;
console.log(`Prefilling ${JSON.stringify(message)}`);
_emitEvent({ type: "show_message", ...message });
});
}
function _saveSettings() {
console.log("Saving config");