This commit is contained in:
Nathan Sobo 2023-10-10 22:49:47 -06:00
parent f53b63eaf6
commit f1cc62c21f
8 changed files with 96 additions and 42 deletions

View file

@ -25,11 +25,14 @@ pub trait Element: 'static + Send + Sync {
cx: &mut ViewContext<Self::ViewState>, cx: &mut ViewContext<Self::ViewState>,
); );
fn id(self, id: ElementId) -> Identified<Self> fn id(self, id: impl Into<ElementId>) -> Identified<Self>
where where
Self: Sized, Self: Sized,
{ {
Identified { element: self, id } Identified {
element: self,
id: id.into(),
}
} }
} }

View file

@ -1,4 +1,10 @@
use crate::{BorrowWindow, Bounds, Element, ElementId, LayoutId, StatefulElement, ViewContext}; use refineable::{Refineable, RefinementCascade};
use smallvec::SmallVec;
use crate::{
AnyElement, BorrowWindow, Bounds, Element, ElementId, LayoutId, ParentElement, StatefulElement,
Styled, ViewContext,
};
pub struct Identified<E> { pub struct Identified<E> {
pub(crate) element: E, pub(crate) element: E,
@ -36,3 +42,22 @@ impl<E: Element> Element for Identified<E> {
} }
impl<E: Element> StatefulElement for Identified<E> {} impl<E: Element> StatefulElement for Identified<E> {}
impl<E: Styled> Styled for Identified<E> {
type Style = E::Style;
fn style_cascade(&mut self) -> &mut RefinementCascade<Self::Style> {
self.element.style_cascade()
}
fn declared_style(&mut self) -> &mut <Self::Style as Refineable>::Refinement {
self.element.declared_style()
}
}
impl<E: ParentElement> ParentElement for Identified<E> {
type State = E::State;
fn children_mut(&mut self) -> &mut SmallVec<[AnyElement<Self::State>; 2]> {
self.element.children_mut()
}
}

View file

@ -92,25 +92,29 @@ where
element_state: &mut Self::ElementState, element_state: &mut Self::ElementState,
cx: &mut ViewContext<Self::ViewState>, cx: &mut ViewContext<Self::ViewState>,
) { ) {
let slot = self.cascade_slot;
let style = element_state let style = element_state
.pressed .pressed
.load(SeqCst) .load(SeqCst)
.then_some(self.pressed_style.clone()); .then_some(self.pressed_style.clone());
let slot = self.cascade_slot;
self.style_cascade().set(slot, style); self.style_cascade().set(slot, style);
let pressed = element_state.pressed.clone(); let pressed = element_state.pressed.clone();
cx.on_mouse_event(move |_, event: &MouseDownEvent, phase, cx| { cx.on_mouse_event(move |_, event: &MouseDownEvent, phase, cx| {
if phase == DispatchPhase::Capture { if phase == DispatchPhase::Capture {
if bounds.contains_point(event.position) != pressed.load(SeqCst) { if bounds.contains_point(event.position) {
dbg!("pressed");
pressed.store(true, SeqCst);
cx.notify(); cx.notify();
} }
} }
}); });
let hovered = element_state.pressed.clone(); let pressed = element_state.pressed.clone();
cx.on_mouse_event(move |_, event: &MouseUpEvent, phase, cx| { cx.on_mouse_event(move |_, _: &MouseUpEvent, phase, cx| {
if phase == DispatchPhase::Capture { if phase == DispatchPhase::Capture {
if bounds.contains_point(event.position) != hovered.load(SeqCst) { if pressed.load(SeqCst) {
dbg!("released");
pressed.store(false, SeqCst);
cx.notify(); cx.notify();
} }
} }

View file

@ -1,4 +1,4 @@
use crate::{Hoverable, Refineable, RefinementCascade}; use crate::{Hoverable, Pressable, Refineable, RefinementCascade};
pub trait Styled { pub trait Styled {
type Style: 'static + Refineable + Send + Sync + Default; type Style: 'static + Refineable + Send + Sync + Default;
@ -19,10 +19,12 @@ pub trait Styled {
Hoverable::new(self) Hoverable::new(self)
} }
// fn active(self) -> Pressable<Self> fn active(self) -> Pressable<Self>
// where where
// Self: Sized, Self: 'static + Sized + Send + Sync,
// { Self::Style: 'static + Refineable + Default + Send + Sync,
// pressable(self) <Self::Style as Refineable>::Refinement: 'static + Default + Send + Sync,
// } {
Pressable::new(self)
}
} }

View file

@ -1061,3 +1061,21 @@ impl From<SmallVec<[u32; 16]>> for StackingOrder {
#[derive(Clone, Debug, Eq, PartialEq, Hash)] #[derive(Clone, Debug, Eq, PartialEq, Hash)]
pub struct ElementId(ArcCow<'static, [u8]>); pub struct ElementId(ArcCow<'static, [u8]>);
impl From<usize> for ElementId {
fn from(id: usize) -> Self {
Self(id.to_ne_bytes().to_vec().into())
}
}
impl From<i32> for ElementId {
fn from(id: i32) -> Self {
Self(id.to_ne_bytes().to_vec().into())
}
}
impl From<&'static str> for ElementId {
fn from(id: &'static str) -> Self {
Self(id.into())
}
}

View file

@ -1,7 +1,7 @@
use crate::theme::{theme, Theme}; use crate::theme::{theme, Theme};
use gpui3::{ use gpui3::{
div, img, svg, view, AppContext, Context, Element, Interactive, IntoAnyElement, MouseButton, div, img, svg, view, AppContext, Context, Element, ElementId, Interactive, IntoAnyElement,
ParentElement, ScrollState, SharedString, StyleHelpers, Styled, View, ViewContext, MouseButton, ParentElement, ScrollState, SharedString, StyleHelpers, Styled, View, ViewContext,
WindowContext, WindowContext,
}; };
@ -55,7 +55,7 @@ impl CollabPanel {
//:: https://tailwindcss.com/docs/hover-focus-and-other-states#styling-based-on-parent-state //:: https://tailwindcss.com/docs/hover-focus-and-other-states#styling-based-on-parent-state
// .group() // .group()
// List Section Header // List Section Header
.child(self.list_section_header("#CRDB 🗃️", true, theme)) .child(self.list_section_header(0, "#CRDB 🗃️", true, theme))
// List Item Large // List Item Large
.child(self.list_item( .child(self.list_item(
"http://github.com/maxbrunsfeld.png?s=50", "http://github.com/maxbrunsfeld.png?s=50",
@ -68,14 +68,14 @@ impl CollabPanel {
.py_2() .py_2()
.flex() .flex()
.flex_col() .flex_col()
.child(self.list_section_header("CHANNELS", true, theme)), .child(self.list_section_header(1, "CHANNELS", true, theme)),
) )
.child( .child(
div() div()
.py_2() .py_2()
.flex() .flex()
.flex_col() .flex_col()
.child(self.list_section_header("CONTACTS", true, theme)) .child(self.list_section_header(2, "CONTACTS", true, theme))
.children( .children(
std::iter::repeat_with(|| { std::iter::repeat_with(|| {
vec![ vec![
@ -120,11 +120,13 @@ impl CollabPanel {
fn list_section_header( fn list_section_header(
&self, &self,
id: impl Into<ElementId>,
label: impl IntoAnyElement<Self>, label: impl IntoAnyElement<Self>,
expanded: bool, expanded: bool,
theme: &Theme, theme: &Theme,
) -> impl Element<ViewState = Self> { ) -> impl Element<ViewState = Self> {
div() div()
.id(id)
.h_7() .h_7()
.px_2() .px_2()
.flex() .flex()
@ -132,6 +134,8 @@ impl CollabPanel {
.items_center() .items_center()
.hover() .hover()
.fill(theme.lowest.base.active.background) .fill(theme.lowest.base.active.background)
.active()
.fill(theme.highest.accent.default.background)
.child(div().flex().gap_1().text_sm().child(label)) .child(div().flex().gap_1().text_sm().child(label))
.child( .child(
div().flex().h_full().gap_1().items_center().child( div().flex().h_full().gap_1().items_center().child(

View file

@ -150,12 +150,15 @@ impl<E: Element> Element for Themed<E> {
fn layout( fn layout(
&mut self, &mut self,
state: &mut E::ViewState, state: &mut E::ViewState,
element_state: Option<Self::ElementState>,
cx: &mut ViewContext<E::ViewState>, cx: &mut ViewContext<E::ViewState>,
) -> anyhow::Result<(LayoutId, Self::ElementState)> ) -> (LayoutId, Self::ElementState)
where where
Self: Sized, Self: Sized,
{ {
cx.with_state(self.theme.clone(), |cx| self.child.layout(state, cx)) cx.with_state(self.theme.clone(), |cx| {
self.child.layout(state, element_state, cx)
})
} }
fn paint( fn paint(
@ -164,32 +167,15 @@ impl<E: Element> Element for Themed<E> {
state: &mut Self::ViewState, state: &mut Self::ViewState,
frame_state: &mut Self::ElementState, frame_state: &mut Self::ElementState,
cx: &mut ViewContext<Self::ViewState>, cx: &mut ViewContext<Self::ViewState>,
) -> Result<()> ) where
where
Self: Sized, Self: Sized,
{ {
cx.with_state(self.theme.clone(), |cx| { cx.with_state(self.theme.clone(), |cx| {
self.child.paint(bounds, state, frame_state, cx) self.child.paint(bounds, state, frame_state, cx);
}) });
} }
} }
// fn preferred_theme<V: 'static>(cx: &AppContext) -> Theme {
// settings::get::<ThemeSettings>(cx)
// .theme
// .deserialized_base_theme
// .lock()
// .get_or_insert_with(|| {
// let theme: Theme =
// serde_json::from_value(settings::get::<ThemeSettings>(cx).theme.base_theme.clone())
// .unwrap();
// Box::new(theme)
// })
// .downcast_ref::<Theme>()
// .unwrap()
// .clone()
// }
pub fn theme<'a>(cx: &'a WindowContext) -> &'a Theme { pub fn theme<'a>(cx: &'a WindowContext) -> &'a Theme {
cx.state() cx.state()
} }

View file

@ -57,6 +57,18 @@ impl<'a> From<Cow<'a, str>> for ArcCow<'a, str> {
} }
} }
impl<T> From<Vec<T>> for ArcCow<'_, [T]> {
fn from(vec: Vec<T>) -> Self {
ArcCow::Owned(Arc::from(vec))
}
}
impl<'a> From<&'a str> for ArcCow<'a, [u8]> {
fn from(s: &'a str) -> Self {
ArcCow::Borrowed(s.as_bytes())
}
}
impl<'a, T: ?Sized + ToOwned> std::borrow::Borrow<T> for ArcCow<'a, T> { impl<'a, T: ?Sized + ToOwned> std::borrow::Borrow<T> for ArcCow<'a, T> {
fn borrow(&self) -> &T { fn borrow(&self) -> &T {
match self { match self {