Update GLOBALS when new relay is added

This commit is contained in:
Nate Levin 2023-01-13 17:49:35 +13:00
parent 83d4f23c01
commit ed24e8b131

View File

@ -20,6 +20,9 @@ pub(super) fn update(app: &mut GossipUi, _ctx: &Context, _frame: &mut eframe::Fr
let _ = GLOBALS let _ = GLOBALS
.to_overlord .to_overlord
.send(ToOverlordMessage::AddRelay(app.new_relay_url.clone())); .send(ToOverlordMessage::AddRelay(app.new_relay_url.clone()));
if let Ok(db_relay) = DbRelay::new(app.new_relay_url.clone()){
GLOBALS.relays.blocking_write().insert(test_url, db_relay);
}
app.new_relay_url = "".to_owned(); app.new_relay_url = "".to_owned();
*GLOBALS.status_message.blocking_write() = format!( *GLOBALS.status_message.blocking_write() = format!(
"I asked the overlord to add relay {}. Check for it below.", "I asked the overlord to add relay {}. Check for it below.",
@ -112,10 +115,6 @@ fn render_relay(ui: &mut Ui, relay: &DbRelay, bold: bool) {
relay.dirty = true; relay.dirty = true;
} }
} }
//if ui.button("CONNECT").clicked() {
// ui.label("TBD");
//}
}); });
}); });
} }