This commit is contained in:
Andrew Collins 2024-05-24 22:54:53 +00:00 committed by GitHub
commit 67b851f4de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 14 additions and 1 deletions

View File

@ -1319,6 +1319,9 @@ pub struct ChatStore {
/// Whether to ring the terminal bell on the next redraw.
pub ring_bell: bool,
/// Whether the application is currently focused
pub focused: bool,
}
impl ChatStore {
@ -1341,6 +1344,7 @@ impl ChatStore {
sync_info: Default::default(),
draw_curr: None,
ring_bell: false,
focused: true,
}
}

View File

@ -355,9 +355,13 @@ impl Application {
// Do nothing for now.
},
Event::FocusGained => {
let mut store = self.store.lock().await;
store.application.focused = true;
self.focused = true;
},
Event::FocusLost => {
let mut store = self.store.lock().await;
store.application.focused = false;
self.focused = false;
},
Event::Resize(_, _) => {

View File

@ -44,7 +44,7 @@ pub async fn register_notifications(
return;
}
if is_open(&store, room.room_id()).await {
if is_focused(&store).await && is_open(&store, room.room_id()).await {
return;
}
@ -139,6 +139,11 @@ async fn is_open(store: &AsyncProgramStore, room_id: &RoomId) -> bool {
false
}
async fn is_focused(store: &AsyncProgramStore) -> bool {
let locked = store.lock().await;
locked.application.focused
}
pub async fn parse_notification(
notification: Notification,
room: MatrixRoom,