This commit is contained in:
2026-01-05 08:43:28 +07:00
parent 067f88dfa6
commit 23f8cc49c6
12 changed files with 142 additions and 264 deletions

View File

@@ -253,6 +253,11 @@ impl ChatRegistry {
}
}
/// Get the loading status of the chat registry
pub fn loading(&self) -> bool {
self.loading
}
/// Set the loading status of the chat registry
pub fn set_loading(&mut self, loading: bool, cx: &mut Context<Self>) {
self.loading = loading;
@@ -511,7 +516,7 @@ impl ChatRegistry {
}
// Set this room is ongoing if the new message is from current user
if author == nostr.read(cx).identity(cx).public_key() {
if author == nostr.read(cx).identity().read(cx).public_key() {
this.set_ongoing(cx);
}

View File

@@ -263,7 +263,7 @@ impl Room {
pub fn display_member(&self, cx: &App) -> Profile {
let persons = PersonRegistry::global(cx);
let nostr = NostrRegistry::global(cx);
let public_key = nostr.read(cx).identity(cx).public_key();
let public_key = nostr.read(cx).identity().read(cx).public_key();
let target_member = self
.members
@@ -369,7 +369,7 @@ impl Room {
let nostr = NostrRegistry::global(cx);
// Get current user
let public_key = nostr.read(cx).identity(cx).public_key();
let public_key = nostr.read(cx).identity().read(cx).public_key();
// Get room's subject
let subject = self.subject.clone();
@@ -438,7 +438,7 @@ impl Room {
let client = nostr.read(cx).client();
// Get current user's public key and relays
let current_user = nostr.read(cx).identity(cx).public_key();
let current_user = nostr.read(cx).identity().read(cx).public_key();
let current_user_relays = nostr.read(cx).messaging_relays(&current_user, cx);
let rumor = rumor.to_owned();