Re-emit notifications and events from ActiveCall

This lets us only observe and subscribe to the active call without
needing to track the underlying `Room` if it changes, which implies
writing the same boilerplate over and over.
This commit is contained in:
Antonio Scandurra 2022-10-04 18:15:56 +02:00
parent 41240351d3
commit ebee2168fc
4 changed files with 35 additions and 71 deletions

View file

@ -19,35 +19,18 @@ pub fn init(app_state: Arc<AppState>, cx: &mut MutableAppContext) {
cx.add_action(ProjectSharedNotification::dismiss);
let active_call = ActiveCall::global(cx);
let mut _room_subscription = None;
cx.observe(&active_call, move |active_call, cx| {
if let Some(room) = active_call.read(cx).room().cloned() {
let app_state = app_state.clone();
_room_subscription = Some(cx.subscribe(&room, move |_, event, cx| match event {
room::Event::RemoteProjectShared { owner, project_id } => {
cx.add_window(
WindowOptions {
bounds: WindowBounds::Fixed(RectF::new(
vec2f(0., 0.),
vec2f(300., 400.),
)),
titlebar: None,
center: true,
kind: WindowKind::PopUp,
is_movable: false,
},
|_| {
ProjectSharedNotification::new(
*project_id,
owner.clone(),
app_state.clone(),
)
},
);
}
}));
} else {
_room_subscription = None;
cx.subscribe(&active_call, move |_, event, cx| match event {
room::Event::RemoteProjectShared { owner, project_id } => {
cx.add_window(
WindowOptions {
bounds: WindowBounds::Fixed(RectF::new(vec2f(0., 0.), vec2f(300., 400.))),
titlebar: None,
center: true,
kind: WindowKind::PopUp,
is_movable: false,
},
|_| ProjectSharedNotification::new(*project_id, owner.clone(), app_state.clone()),
);
}
})
.detach();