zed/crates/workspace/src/shared_screen.rs

152 lines
4.3 KiB
Rust
Raw Normal View History

2022-11-15 01:31:12 +00:00
use crate::{
2023-02-22 01:42:19 +00:00
item::{Item, ItemEvent},
ItemNavHistory, WorkspaceId,
2022-11-15 01:31:12 +00:00
};
use anyhow::Result;
2022-10-24 08:04:08 +00:00
use call::participant::{Frame, RemoteVideoTrack};
use client::{proto::PeerId, User};
2022-10-24 08:04:08 +00:00
use futures::StreamExt;
use gpui::{
elements::*,
geometry::{rect::RectF, vector::vec2f},
platform::MouseButton,
2023-04-12 00:21:56 +00:00
AppContext, Entity, Task, View, ViewContext,
2022-10-24 08:04:08 +00:00
};
2023-02-13 20:49:57 +00:00
use smallvec::SmallVec;
2023-04-14 21:46:53 +00:00
use std::{
borrow::Cow,
sync::{Arc, Weak},
};
2022-10-24 08:04:08 +00:00
pub enum Event {
Close,
}
pub struct SharedScreen {
track: Weak<RemoteVideoTrack>,
frame: Option<Frame>,
pub peer_id: PeerId,
user: Arc<User>,
nav_history: Option<ItemNavHistory>,
_maintain_frame: Task<Result<()>>,
2022-10-24 08:04:08 +00:00
}
impl SharedScreen {
pub fn new(
track: &Arc<RemoteVideoTrack>,
peer_id: PeerId,
user: Arc<User>,
cx: &mut ViewContext<Self>,
) -> Self {
let mut frames = track.frames();
Self {
track: Arc::downgrade(track),
frame: None,
peer_id,
user,
nav_history: Default::default(),
_maintain_frame: cx.spawn(|this, mut cx| async move {
while let Some(frame) = frames.next().await {
this.update(&mut cx, |this, cx| {
this.frame = Some(frame);
cx.notify();
})?;
2022-10-24 08:04:08 +00:00
}
this.update(&mut cx, |_, cx| cx.emit(Event::Close))?;
Ok(())
2022-10-24 08:04:08 +00:00
}),
}
}
}
impl Entity for SharedScreen {
type Event = Event;
}
impl View for SharedScreen {
fn ui_name() -> &'static str {
"SharedScreen"
}
fn render(&mut self, cx: &mut ViewContext<Self>) -> AnyElement<Self> {
enum Focus {}
2022-10-24 08:04:08 +00:00
let frame = self.frame.clone();
2023-04-12 03:56:37 +00:00
MouseEventHandler::<Focus, _>::new(0, cx, |_, cx| {
2023-04-12 13:55:43 +00:00
Canvas::new(move |scene, bounds, _, _, _| {
if let Some(frame) = frame.clone() {
let size = constrain_size_preserving_aspect_ratio(
bounds.size(),
vec2f(frame.width() as f32, frame.height() as f32),
);
let origin = bounds.origin() + (bounds.size() / 2.) - size / 2.;
2023-04-12 00:21:56 +00:00
scene.push_surface(gpui::platform::mac::Surface {
bounds: RectF::new(origin, size),
image_buffer: frame.image(),
});
}
})
.contained()
.with_style(theme::current(cx).shared_screen)
2022-10-24 08:04:08 +00:00
})
.on_down(MouseButton::Left, |_, _, cx| cx.focus_parent())
.into_any()
2022-10-24 08:04:08 +00:00
}
}
impl Item for SharedScreen {
fn tab_tooltip_text(&self, _: &AppContext) -> Option<Cow<str>> {
2023-04-14 21:46:53 +00:00
Some(format!("{}'s screen", self.user.github_login).into())
}
2022-10-24 08:04:08 +00:00
fn deactivated(&mut self, cx: &mut ViewContext<Self>) {
if let Some(nav_history) = self.nav_history.as_mut() {
2022-10-24 08:04:08 +00:00
nav_history.push::<()>(None, cx);
}
}
fn tab_content<V: View>(
2022-10-24 08:04:08 +00:00
&self,
_: Option<usize>,
style: &theme::Tab,
_: &AppContext,
) -> gpui::AnyElement<V> {
2022-10-24 08:04:08 +00:00
Flex::row()
.with_child(
Svg::new("icons/disable_screen_sharing_12.svg")
.with_color(style.label.text.color)
.constrained()
2023-03-01 08:18:45 +00:00
.with_width(style.type_icon_width)
2022-10-24 08:04:08 +00:00
.aligned()
.contained()
.with_margin_right(style.spacing),
2022-10-24 08:04:08 +00:00
)
.with_child(
Label::new(
format!("{}'s screen", self.user.github_login),
style.label.clone(),
)
.aligned(),
2022-10-24 08:04:08 +00:00
)
.into_any()
2022-10-24 08:04:08 +00:00
}
fn set_nav_history(&mut self, history: ItemNavHistory, _: &mut ViewContext<Self>) {
self.nav_history = Some(history);
}
fn clone_on_split(
&self,
_workspace_id: WorkspaceId,
cx: &mut ViewContext<Self>,
) -> Option<Self> {
2022-10-24 08:04:08 +00:00
let track = self.track.upgrade()?;
Some(Self::new(&track, self.peer_id, self.user.clone(), cx))
}
2023-02-13 20:49:57 +00:00
fn to_item_events(event: &Self::Event) -> SmallVec<[ItemEvent; 2]> {
2022-10-24 08:04:08 +00:00
match event {
2023-02-13 20:49:57 +00:00
Event::Close => smallvec::smallvec!(ItemEvent::CloseItem),
2022-10-24 08:04:08 +00:00
}
}
}