use crate::{
ActiveTheme, Placement,
dialog::Dialog,
input::InputState,
notification::{Notification, NotificationList},
sheet::Sheet,
window_border,
};
use gpui::{
AnyView, App, AppContext, Context, DefiniteLength, Entity, FocusHandle, InteractiveElement,
IntoElement, KeyBinding, ParentElement as _, Render, Styled, Window, actions, canvas, div,
prelude::FluentBuilder as _,
};
use std::{any::TypeId, rc::Rc};
actions!(root, [Tab, TabPrev]);
const CONTEXT: &str = "Root";
pub(crate) fn init(cx: &mut App) {
cx.bind_keys([
KeyBinding::new("tab", Tab, Some(CONTEXT)),
KeyBinding::new("shift-tab", TabPrev, Some(CONTEXT)),
]);
}
pub trait WindowExt: Sized {
fn open_sheet<F>(&mut self, cx: &mut App, build: F)
where
F: Fn(Sheet, &mut Window, &mut App) -> Sheet + 'static;
fn open_sheet_at<F>(&mut self, placement: Placement, cx: &mut App, build: F)
where
F: Fn(Sheet, &mut Window, &mut App) -> Sheet + 'static;
fn has_active_sheet(&mut self, cx: &mut App) -> bool;
fn close_sheet(&mut self, cx: &mut App);
fn open_dialog<F>(&mut self, cx: &mut App, build: F)
where
F: Fn(Dialog, &mut Window, &mut App) -> Dialog + 'static;
fn has_active_dialog(&mut self, cx: &mut App) -> bool;
fn close_dialog(&mut self, cx: &mut App);
fn close_all_dialogs(&mut self, cx: &mut App);
fn push_notification(&mut self, note: impl Into<Notification>, cx: &mut App);
fn remove_notification<T: Sized + 'static>(&mut self, cx: &mut App);
fn clear_notifications(&mut self, cx: &mut App);
fn notifications(&mut self, cx: &mut App) -> Rc<Vec<Entity<Notification>>>;
fn focused_input(&mut self, cx: &mut App) -> Option<Entity<InputState>>;
fn has_focused_input(&mut self, cx: &mut App) -> bool;
}
impl WindowExt for Window {
fn open_sheet<F>(&mut self, cx: &mut App, build: F)
where
F: Fn(Sheet, &mut Window, &mut App) -> Sheet + 'static,
{
self.open_sheet_at(Placement::Right, cx, build)
}
fn open_sheet_at<F>(&mut self, placement: Placement, cx: &mut App, build: F)
where
F: Fn(Sheet, &mut Window, &mut App) -> Sheet + 'static,
{
Root::update(self, cx, move |root, window, cx| {
if root.active_sheet.is_none() {
root.previous_focus_handle = window.focused(cx);
}
let focus_handle = cx.focus_handle();
focus_handle.focus(window);
root.active_sheet = Some(ActiveSheet {
focus_handle,
placement,
builder: Rc::new(build),
});
cx.notify();
})
}
fn has_active_sheet(&mut self, cx: &mut App) -> bool {
Root::read(self, cx).active_sheet.is_some()
}
fn close_sheet(&mut self, cx: &mut App) {
Root::update(self, cx, |root, window, cx| {
root.focused_input = None;
root.active_sheet = None;
root.focus_back(window, cx);
cx.notify();
})
}
fn open_dialog<F>(&mut self, cx: &mut App, build: F)
where
F: Fn(Dialog, &mut Window, &mut App) -> Dialog + 'static,
{
Root::update(self, cx, move |root, window, cx| {
if root.active_dialogs.len() == 0 {
root.previous_focus_handle = window.focused(cx);
}
let focus_handle = cx.focus_handle();
focus_handle.focus(window);
root.active_dialogs.push(ActiveDialog {
focus_handle,
builder: Rc::new(build),
});
cx.notify();
})
}
fn has_active_dialog(&mut self, cx: &mut App) -> bool {
Root::read(self, cx).active_dialogs.len() > 0
}
fn close_dialog(&mut self, cx: &mut App) {
Root::update(self, cx, move |root, window, cx| {
root.focused_input = None;
root.active_dialogs.pop();
if let Some(top_dialog) = root.active_dialogs.last() {
top_dialog.focus_handle.focus(window);
} else {
root.focus_back(window, cx);
}
cx.notify();
})
}
fn close_all_dialogs(&mut self, cx: &mut App) {
Root::update(self, cx, |root, window, cx| {
root.focused_input = None;
root.active_dialogs.clear();
root.focus_back(window, cx);
cx.notify();
})
}
fn push_notification(&mut self, note: impl Into<Notification>, cx: &mut App) {
let note = note.into();
Root::update(self, cx, move |root, window, cx| {
root.notification
.update(cx, |view, cx| view.push(note, window, cx));
cx.notify();
})
}
fn remove_notification<T: Sized + 'static>(&mut self, cx: &mut App) {
Root::update(self, cx, move |root, window, cx| {
root.notification.update(cx, |view, cx| {
let id = TypeId::of::<T>();
view.close(id, window, cx);
});
cx.notify();
})
}
fn clear_notifications(&mut self, cx: &mut App) {
Root::update(self, cx, move |root, window, cx| {
root.notification
.update(cx, |view, cx| view.clear(window, cx));
cx.notify();
})
}
fn notifications(&mut self, cx: &mut App) -> Rc<Vec<Entity<Notification>>> {
let entity = Root::read(self, cx).notification.clone();
Rc::new(entity.read(cx).notifications())
}
fn has_focused_input(&mut self, cx: &mut App) -> bool {
Root::read(self, cx).focused_input.is_some()
}
fn focused_input(&mut self, cx: &mut App) -> Option<Entity<InputState>> {
Root::read(self, cx).focused_input.clone()
}
}
pub struct Root {
previous_focus_handle: Option<FocusHandle>,
active_sheet: Option<ActiveSheet>,
pub(crate) active_dialogs: Vec<ActiveDialog>,
pub(super) focused_input: Option<Entity<InputState>>,
pub notification: Entity<NotificationList>,
sheet_size: Option<DefiniteLength>,
view: AnyView,
}
#[derive(Clone)]
struct ActiveSheet {
focus_handle: FocusHandle,
placement: Placement,
builder: Rc<dyn Fn(Sheet, &mut Window, &mut App) -> Sheet + 'static>,
}
#[derive(Clone)]
pub(crate) struct ActiveDialog {
focus_handle: FocusHandle,
builder: Rc<dyn Fn(Dialog, &mut Window, &mut App) -> Dialog + 'static>,
}
impl Root {
pub fn new(view: impl Into<AnyView>, window: &mut Window, cx: &mut Context<Self>) -> Self {
Self {
previous_focus_handle: None,
active_sheet: None,
active_dialogs: Vec::new(),
focused_input: None,
notification: cx.new(|cx| NotificationList::new(window, cx)),
sheet_size: None,
view: view.into(),
}
}
pub fn update<F, R>(window: &mut Window, cx: &mut App, f: F) -> R
where
F: FnOnce(&mut Self, &mut Window, &mut Context<Self>) -> R,
{
let root = window
.root::<Root>()
.flatten()
.expect("BUG: window first layer should be a gpui_component::Root.");
root.update(cx, |root, cx| f(root, window, cx))
}
pub fn read<'a>(window: &'a Window, cx: &'a App) -> &'a Self {
&window
.root::<Root>()
.expect("The window root view should be of type `ui::Root`.")
.unwrap()
.read(cx)
}
fn focus_back(&mut self, window: &mut Window, _: &mut App) {
if let Some(handle) = self.previous_focus_handle.clone() {
window.focus(&handle);
}
}
pub fn render_notification_layer(
window: &mut Window,
cx: &mut App,
) -> Option<impl IntoElement + use<>> {
let root = window.root::<Root>()??;
let active_sheet_placement = root.read(cx).active_sheet.clone().map(|d| d.placement);
let (mt, mr) = match active_sheet_placement {
Some(Placement::Right) => (None, root.read(cx).sheet_size),
Some(Placement::Top) => (root.read(cx).sheet_size, None),
_ => (None, None),
};
Some(
div()
.absolute()
.top_0()
.right_0()
.when_some(mt, |this, offset| this.mt(offset))
.when_some(mr, |this, offset| this.mr(offset))
.child(root.read(cx).notification.clone()),
)
}
pub fn render_sheet_layer(
window: &mut Window,
cx: &mut App,
) -> Option<impl IntoElement + use<>> {
let root = window.root::<Root>()??;
if let Some(active_sheet) = root.read(cx).active_sheet.clone() {
let mut sheet = Sheet::new(window, cx);
sheet = (active_sheet.builder)(sheet, window, cx);
sheet.focus_handle = active_sheet.focus_handle.clone();
sheet.placement = active_sheet.placement;
let size = sheet.size;
return Some(
div().relative().child(sheet).child(
canvas(
move |_, _, cx| root.update(cx, |r, _| r.sheet_size = Some(size)),
|_, _, _, _| {},
)
.absolute()
.size_full(),
),
);
}
None
}
pub fn render_dialog_layer(
window: &mut Window,
cx: &mut App,
) -> Option<impl IntoElement + use<>> {
let root = window.root::<Root>()??;
let active_dialogs = root.read(cx).active_dialogs.clone();
if active_dialogs.is_empty() {
return None;
}
let mut show_overlay_ix = None;
let mut dialogs = active_dialogs
.iter()
.enumerate()
.map(|(i, active_dialog)| {
let mut dialog = Dialog::new(window, cx);
dialog = (active_dialog.builder)(dialog, window, cx);
dialog.focus_handle = active_dialog.focus_handle.clone();
dialog.layer_ix = i;
if dialog.has_overlay() {
show_overlay_ix = Some(i);
}
dialog
})
.collect::<Vec<_>>();
if let Some(ix) = show_overlay_ix {
if let Some(dialog) = dialogs.get_mut(ix) {
dialog.overlay_visible = true;
}
}
Some(div().children(dialogs))
}
pub fn view(&self) -> &AnyView {
&self.view
}
fn on_action_tab(&mut self, _: &Tab, window: &mut Window, _: &mut Context<Self>) {
window.focus_next();
}
fn on_action_tab_prev(&mut self, _: &TabPrev, window: &mut Window, _: &mut Context<Self>) {
window.focus_prev();
}
}
impl Render for Root {
fn render(&mut self, window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
window.set_rem_size(cx.theme().font_size);
window_border().child(
div()
.id("root")
.key_context(CONTEXT)
.on_action(cx.listener(Self::on_action_tab))
.on_action(cx.listener(Self::on_action_tab_prev))
.relative()
.size_full()
.font_family(cx.theme().font_family.clone())
.bg(cx.theme().background)
.text_color(cx.theme().foreground)
.child(self.view.clone()),
)
}
}