Checkpoint: Compiling

This commit is contained in:
Marshall Bowers 2023-10-26 10:08:39 +02:00
parent 8b972f6d8e
commit 9fb9885931
50 changed files with 139 additions and 146 deletions

View file

@ -47,10 +47,9 @@ pub fn derive_element(input: TokenStream) -> TokenStream {
} }
} }
impl #impl_generics gpui2::Element for #type_name #ty_generics impl #impl_generics gpui2::Element<#state_type> for #type_name #ty_generics
#where_clause #where_clause
{ {
type ViewState = #state_type;
type ElementState = gpui2::AnyElement<#state_type>; type ElementState = gpui2::AnyElement<#state_type>;
fn id(&self) -> Option<gpui2::ElementId> { fn id(&self) -> Option<gpui2::ElementId> {
@ -59,9 +58,9 @@ pub fn derive_element(input: TokenStream) -> TokenStream {
fn initialize( fn initialize(
&mut self, &mut self,
view_state: &mut Self::ViewState, view_state: &mut #state_type,
_: Option<Self::ElementState>, _: Option<Self::ElementState>,
cx: &mut gpui2::ViewContext<Self::ViewState> cx: &mut gpui2::ViewContext<#state_type>
) -> Self::ElementState { ) -> Self::ElementState {
use gpui2::IntoAnyElement; use gpui2::IntoAnyElement;
@ -72,9 +71,9 @@ pub fn derive_element(input: TokenStream) -> TokenStream {
fn layout( fn layout(
&mut self, &mut self,
view_state: &mut Self::ViewState, view_state: &mut #state_type,
rendered_element: &mut Self::ElementState, rendered_element: &mut Self::ElementState,
cx: &mut gpui2::ViewContext<Self::ViewState>, cx: &mut gpui2::ViewContext<#state_type>,
) -> gpui2::LayoutId { ) -> gpui2::LayoutId {
rendered_element.layout(view_state, cx) rendered_element.layout(view_state, cx)
} }
@ -82,9 +81,9 @@ pub fn derive_element(input: TokenStream) -> TokenStream {
fn paint( fn paint(
&mut self, &mut self,
bounds: gpui2::Bounds<gpui2::Pixels>, bounds: gpui2::Bounds<gpui2::Pixels>,
view_state: &mut Self::ViewState, view_state: &mut #state_type,
rendered_element: &mut Self::ElementState, rendered_element: &mut Self::ElementState,
cx: &mut gpui2::ViewContext<Self::ViewState>, cx: &mut gpui2::ViewContext<#state_type>,
) { ) {
rendered_element.paint(view_state, cx) rendered_element.paint(view_state, cx)
} }

View file

@ -16,7 +16,7 @@ impl KitchenSinkStory {
view(cx.entity(|cx| Self::new()), Self::render) view(cx.entity(|cx| Self::new()), Self::render)
} }
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<ViewState = Self> { fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<Self> {
let element_stories = ElementStory::iter() let element_stories = ElementStory::iter()
.map(|selector| selector.story(cx)) .map(|selector| selector.story(cx))
.collect::<Vec<_>>(); .collect::<Vec<_>>();

View file

@ -16,7 +16,7 @@ impl ScrollStory {
} }
} }
fn checkerboard<S>(depth: usize) -> impl Element<ViewState = S> fn checkerboard<S>(depth: usize) -> impl Element<S>
where where
S: 'static + Send + Sync, S: 'static + Send + Sync,
{ {

View file

@ -19,7 +19,7 @@ impl<S: 'static + Send + Sync> ZIndexStory<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title(cx, "z-index")) .child(Story::title(cx, "z-index"))
.child( .child(
@ -86,23 +86,23 @@ trait Styles: Styled + Sized {
} }
} }
impl<S: 'static + Send + Sync> Styles for Div<S> {} impl<V: 'static + Send + Sync> Styles for Div<V> {}
#[derive(Element)] #[derive(Element)]
struct ZIndexExample<S: 'static + Send + Sync> { struct ZIndexExample<V: 'static + Send + Sync> {
state_type: PhantomData<S>, view_type: PhantomData<V>,
z_index: u32, z_index: u32,
} }
impl<S: 'static + Send + Sync> ZIndexExample<S> { impl<V: 'static + Send + Sync> ZIndexExample<V> {
pub fn new(z_index: u32) -> Self { pub fn new(z_index: u32) -> Self {
Self { Self {
state_type: PhantomData, view_type: PhantomData,
z_index, z_index,
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut V, cx: &mut ViewContext<V>) -> impl Element<V> {
div() div()
.relative() .relative()
.size_full() .size_full()

View file

@ -107,7 +107,7 @@ impl StoryWrapper {
Self { story, theme } Self { story, theme }
} }
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<ViewState = Self> { fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<Self> {
themed(self.theme.clone(), cx, |cx| { themed(self.theme.clone(), cx, |cx| {
div() div()
.flex() .flex()

View file

@ -26,7 +26,7 @@ impl<S: 'static + Send + Sync> AssistantPanel<S> {
self self
} }
fn render(&mut self, view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
Panel::new(self.id.clone(), cx) Panel::new(self.id.clone(), cx)
.children(vec![div() .children(vec![div()
.flex() .flex()
@ -100,7 +100,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, AssistantPanel<S>>(cx)) .child(Story::title_for::<_, AssistantPanel<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -35,7 +35,7 @@ impl<S: 'static + Send + Sync> Breadcrumb<S> {
&mut self, &mut self,
view_state: &mut S, view_state: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let symbols_len = self.symbols.len(); let symbols_len = self.symbols.len();
@ -106,7 +106,7 @@ mod stories {
&mut self, &mut self,
view_state: &mut S, view_state: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
Story::container(cx) Story::container(cx)

View file

@ -158,7 +158,7 @@ impl<S: 'static + Send + Sync + Clone> Buffer<S> {
self self
} }
fn render_row(row: BufferRow, cx: &WindowContext) -> impl Element<ViewState = S> { fn render_row(row: BufferRow, cx: &WindowContext) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let line_background = if row.current { let line_background = if row.current {
@ -208,7 +208,7 @@ impl<S: 'static + Send + Sync + Clone> Buffer<S> {
})) }))
} }
fn render_rows(&self, cx: &WindowContext) -> Vec<impl Element<ViewState = S>> { fn render_rows(&self, cx: &WindowContext) -> Vec<impl Element<S>> {
match &self.rows { match &self.rows {
Some(rows) => rows Some(rows) => rows
.rows .rows
@ -219,7 +219,7 @@ impl<S: 'static + Send + Sync + Clone> Buffer<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let rows = self.render_rows(cx); let rows = self.render_rows(cx);
@ -262,7 +262,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
Story::container(cx) Story::container(cx)

View file

@ -25,7 +25,7 @@ impl BufferSearch {
view(cx.entity(|cx| Self::new()), Self::render) view(cx.entity(|cx| Self::new()), Self::render)
} }
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<ViewState = Self> { fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<Self> {
let theme = theme(cx); let theme = theme(cx);
h_stack().bg(theme.toolbar).p_2().child( h_stack().bg(theme.toolbar).p_2().child(

View file

@ -24,7 +24,7 @@ impl<S: 'static + Send + Sync> ChatPanel<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div() div()
.id(self.element_id.clone()) .id(self.element_id.clone())
.flex() .flex()
@ -88,7 +88,7 @@ impl<S: 'static + Send + Sync> ChatMessage<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div() div()
.flex() .flex()
.flex_col() .flex_col()
@ -133,7 +133,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, ChatPanel<S>>(cx)) .child(Story::title_for::<_, ChatPanel<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -19,7 +19,7 @@ impl<S: 'static + Send + Sync> CollabPanel<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
v_stack() v_stack()
@ -114,7 +114,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, CollabPanel<S>>(cx)) .child(Story::title_for::<_, CollabPanel<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -17,7 +17,7 @@ impl<S: 'static + Send + Sync> CommandPalette<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div().id(self.id.clone()).child( div().id(self.id.clone()).child(
Palette::new("palette") Palette::new("palette")
.items(example_editor_actions()) .items(example_editor_actions())
@ -53,7 +53,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, CommandPalette<S>>(cx)) .child(Story::title_for::<_, CommandPalette<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -42,7 +42,7 @@ impl<S: 'static + Send + Sync> ContextMenu<S> {
items: items.into_iter().collect(), items: items.into_iter().collect(),
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
v_stack() v_stack()
@ -89,7 +89,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, ContextMenu<S>>(cx)) .child(Story::title_for::<_, ContextMenu<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -16,7 +16,7 @@ impl<S: 'static + Send + Sync + Clone> CopilotModal<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div().id(self.id.clone()).child( div().id(self.id.clone()).child(
Modal::new("some-id") Modal::new("some-id")
.title("Connect Copilot to Zed") .title("Connect Copilot to Zed")
@ -51,7 +51,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, CopilotModal<S>>(cx)) .child(Story::title_for::<_, CopilotModal<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -49,7 +49,7 @@ impl EditorPane {
) )
} }
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<ViewState = Self> { fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<Self> {
v_stack() v_stack()
.w_full() .w_full()
.h_full() .h_full()

View file

@ -17,7 +17,7 @@ impl<S: 'static + Send + Sync> Facepile<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let player_count = self.players.len(); let player_count = self.players.len();
let player_list = self.players.iter().enumerate().map(|(ix, player)| { let player_list = self.players.iter().enumerate().map(|(ix, player)| {
let isnt_last = ix < player_count - 1; let isnt_last = ix < player_count - 1;
@ -55,7 +55,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let players = static_players(); let players = static_players();
Story::container(cx) Story::container(cx)

View file

@ -68,7 +68,7 @@ impl<S: 'static + Send + Sync> IconButton<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let icon_color = match (self.state, self.color) { let icon_color = match (self.state, self.color) {

View file

@ -34,7 +34,7 @@ impl<S: 'static + Send + Sync> Keybinding<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div() div()
.flex() .flex()
.gap_2() .gap_2()
@ -68,7 +68,7 @@ impl<S: 'static + Send + Sync> Key<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
div() div()
@ -189,7 +189,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let all_modifier_permutations = ModifierKey::iter().permutations(2); let all_modifier_permutations = ModifierKey::iter().permutations(2);
Story::container(cx) Story::container(cx)

View file

@ -17,7 +17,7 @@ impl<S: 'static + Send + Sync + Clone> LanguageSelector<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div().id(self.id.clone()).child( div().id(self.id.clone()).child(
Palette::new("palette") Palette::new("palette")
.items(vec![ .items(vec![
@ -64,7 +64,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, LanguageSelector<S>>(cx)) .child(Story::title_for::<_, LanguageSelector<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -92,7 +92,7 @@ impl<S: 'static + Send + Sync> ListHeader<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let is_toggleable = self.toggleable != Toggleable::NotToggleable; let is_toggleable = self.toggleable != Toggleable::NotToggleable;
@ -157,7 +157,7 @@ impl<S: 'static + Send + Sync> ListSubHeader<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
h_stack().flex_1().w_full().relative().py_1().child( h_stack().flex_1().w_full().relative().py_1().child(
div() div()
.h_6() .h_6()
@ -230,7 +230,7 @@ impl<S: 'static + Send + Sync> From<ListSubHeader<S>> for ListItem<S> {
} }
impl<S: 'static + Send + Sync> ListItem<S> { impl<S: 'static + Send + Sync> ListItem<S> {
fn render(&mut self, view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
match self { match self {
ListItem::Entry(entry) => div().child(entry.render(view, cx)), ListItem::Entry(entry) => div().child(entry.render(view, cx)),
ListItem::Separator(separator) => div().child(separator.render(view, cx)), ListItem::Separator(separator) => div().child(separator.render(view, cx)),
@ -347,7 +347,7 @@ impl<S: 'static + Send + Sync> ListEntry<S> {
fn disclosure_control( fn disclosure_control(
&mut self, &mut self,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> Option<impl Element<ViewState = S>> { ) -> Option<impl Element<S>> {
let disclosure_control_icon = if let Some(ToggleState::Toggled) = self.toggle { let disclosure_control_icon = if let Some(ToggleState::Toggled) = self.toggle {
IconElement::new(Icon::ChevronDown) IconElement::new(Icon::ChevronDown)
} else { } else {
@ -367,7 +367,7 @@ impl<S: 'static + Send + Sync> ListEntry<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let settings = user_settings(cx); let settings = user_settings(cx);
let theme = theme(cx); let theme = theme(cx);
@ -477,7 +477,7 @@ impl<S: 'static + Send + Sync> ListDetailsEntry<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let settings = user_settings(cx); let settings = user_settings(cx);
@ -534,7 +534,7 @@ impl<S: 'static + Send + Sync> ListSeparator<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
div().h_px().w_full().bg(theme.border) div().h_px().w_full().bg(theme.border)
@ -574,7 +574,7 @@ impl<S: 'static + Send + Sync> List<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let is_toggleable = self.toggleable != Toggleable::NotToggleable; let is_toggleable = self.toggleable != Toggleable::NotToggleable;
let is_toggled = Toggleable::is_toggled(&self.toggleable); let is_toggled = Toggleable::is_toggled(&self.toggleable);

View file

@ -42,7 +42,7 @@ impl<S: 'static + Send + Sync> Modal<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
v_stack() v_stack()
@ -80,8 +80,8 @@ impl<S: 'static + Send + Sync> Modal<S> {
} }
} }
impl<S: 'static + Send + Sync> ParentElement for Modal<S> { impl<S: 'static + Send + Sync> ParentElement<S> for Modal<S> {
fn children_mut(&mut self) -> &mut SmallVec<[AnyElement<Self::ViewState>; 2]> { fn children_mut(&mut self) -> &mut SmallVec<[AnyElement<S>; 2]> {
&mut self.children &mut self.children
} }
} }

View file

@ -17,7 +17,7 @@ impl<S: 'static + Send + Sync + Clone> MultiBuffer<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
v_stack() v_stack()
@ -66,7 +66,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
Story::container(cx) Story::container(cx)

View file

@ -28,7 +28,7 @@ impl<S: 'static + Send + Sync + Clone> NotificationToast<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
h_stack() h_stack()

View file

@ -17,7 +17,7 @@ impl<S: 'static + Send + Sync> NotificationsPanel<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
div() div()
@ -74,7 +74,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, NotificationsPanel<S>>(cx)) .child(Story::title_for::<_, NotificationsPanel<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -46,7 +46,7 @@ impl<S: 'static + Send + Sync> Palette<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
v_stack() v_stack()
@ -135,7 +135,7 @@ impl<S: 'static + Send + Sync> PaletteItem<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div() div()
.flex() .flex()
.flex_row() .flex_row()
@ -176,7 +176,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, Palette<S>>(cx)) .child(Story::title_for::<_, Palette<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -96,7 +96,7 @@ impl<S: 'static + Send + Sync> Panel<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let current_size = self.width.unwrap_or(self.initial_width); let current_size = self.width.unwrap_or(self.initial_width);
@ -121,8 +121,8 @@ impl<S: 'static + Send + Sync> Panel<S> {
} }
} }
impl<S: 'static + Send + Sync> ParentElement for Panel<S> { impl<S: 'static + Send + Sync> ParentElement<S> for Panel<S> {
fn children_mut(&mut self) -> &mut SmallVec<[AnyElement<Self::ViewState>; 2]> { fn children_mut(&mut self) -> &mut SmallVec<[AnyElement<S>; 2]> {
&mut self.children &mut self.children
} }
} }
@ -152,7 +152,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, Panel<S>>(cx)) .child(Story::title_for::<_, Panel<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -40,7 +40,7 @@ impl<S: 'static + Send + Sync> Pane<S> {
self self
} }
fn render(&mut self, view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div() div()
.id(self.id.clone()) .id(self.id.clone())
.flex() .flex()
@ -70,8 +70,8 @@ impl<S: 'static + Send + Sync> Pane<S> {
} }
} }
impl<S: 'static + Send + Sync> ParentElement for Pane<S> { impl<S: 'static + Send + Sync> ParentElement<S> for Pane<S> {
fn children_mut(&mut self) -> &mut SmallVec<[AnyElement<Self::ViewState>; 2]> { fn children_mut(&mut self) -> &mut SmallVec<[AnyElement<S>; 2]> {
&mut self.children &mut self.children
} }
} }
@ -103,7 +103,7 @@ impl<S: 'static + Send + Sync> PaneGroup<S> {
} }
} }
fn render(&mut self, view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
if !self.panes.is_empty() { if !self.panes.is_empty() {

View file

@ -17,7 +17,7 @@ impl<S: 'static + Send + Sync> PlayerStack<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let player = self.player_with_call_status.get_player(); let player = self.player_with_call_status.get_player();
self.player_with_call_status.get_call_status(); self.player_with_call_status.get_call_status();

View file

@ -19,7 +19,7 @@ impl<S: 'static + Send + Sync> ProjectPanel<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
div() div()
@ -83,7 +83,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, ProjectPanel<S>>(cx)) .child(Story::title_for::<_, ProjectPanel<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -17,7 +17,7 @@ impl<S: 'static + Send + Sync + Clone> RecentProjects<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div().id(self.id.clone()).child( div().id(self.id.clone()).child(
Palette::new("palette") Palette::new("palette")
.items(vec![ .items(vec![
@ -60,7 +60,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, RecentProjects<S>>(cx)) .child(Story::title_for::<_, RecentProjects<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -86,7 +86,7 @@ impl StatusBar {
&mut self, &mut self,
view: &mut Workspace, view: &mut Workspace,
cx: &mut ViewContext<Workspace>, cx: &mut ViewContext<Workspace>,
) -> impl Element<ViewState = Workspace> { ) -> impl Element<Workspace> {
let theme = theme(cx); let theme = theme(cx);
div() div()
@ -101,11 +101,7 @@ impl StatusBar {
.child(self.right_tools(view, cx)) .child(self.right_tools(view, cx))
} }
fn left_tools( fn left_tools(&self, workspace: &mut Workspace, cx: &WindowContext) -> impl Element<Workspace> {
&self,
workspace: &mut Workspace,
cx: &WindowContext,
) -> impl Element<ViewState = Workspace> {
div() div()
.flex() .flex()
.items_center() .items_center()
@ -136,7 +132,7 @@ impl StatusBar {
&self, &self,
workspace: &mut Workspace, workspace: &mut Workspace,
cx: &WindowContext, cx: &WindowContext,
) -> impl Element<ViewState = Workspace> { ) -> impl Element<Workspace> {
div() div()
.flex() .flex()
.items_center() .items_center()

View file

@ -81,7 +81,7 @@ impl<S: 'static + Send + Sync + Clone> Tab<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let has_fs_conflict = self.fs_status == FileSystemStatus::Conflict; let has_fs_conflict = self.fs_status == FileSystemStatus::Conflict;
let is_deleted = self.fs_status == FileSystemStatus::Deleted; let is_deleted = self.fs_status == FileSystemStatus::Deleted;
@ -192,7 +192,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let git_statuses = GitStatus::iter(); let git_statuses = GitStatus::iter();
let fs_statuses = FileSystemStatus::iter(); let fs_statuses = FileSystemStatus::iter();

View file

@ -27,7 +27,7 @@ impl<S: 'static + Send + Sync + Clone> TabBar<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let (can_navigate_back, can_navigate_forward) = self.can_navigate; let (can_navigate_back, can_navigate_forward) = self.can_navigate;
@ -116,7 +116,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, TabBar<S>>(cx)) .child(Story::title_for::<_, TabBar<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -17,7 +17,7 @@ impl<S: 'static + Send + Sync + Clone> Terminal<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let can_navigate_back = true; let can_navigate_back = true;
@ -109,7 +109,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, Terminal<S>>(cx)) .child(Story::title_for::<_, Terminal<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -17,7 +17,7 @@ impl<S: 'static + Send + Sync> ThemeSelector<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div().child( div().child(
Palette::new(self.id.clone()) Palette::new(self.id.clone())
.items(vec![ .items(vec![
@ -65,7 +65,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, ThemeSelector<S>>(cx)) .child(Story::title_for::<_, ThemeSelector<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -87,7 +87,7 @@ impl TitleBar {
) )
} }
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<ViewState = Self> { fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<Self> {
let theme = theme(cx); let theme = theme(cx);
let settings = user_settings(cx); let settings = user_settings(cx);
@ -204,7 +204,7 @@ mod stories {
) )
} }
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<ViewState = Self> { fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<Self> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, TitleBar>(cx)) .child(Story::title_for::<_, TitleBar>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -36,7 +36,7 @@ impl<S: 'static + Send + Sync> Toast<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let mut div = div(); let mut div = div();
@ -61,8 +61,8 @@ impl<S: 'static + Send + Sync> Toast<S> {
} }
} }
impl<S: 'static + Send + Sync> ParentElement for Toast<S> { impl<S: 'static + Send + Sync> ParentElement<S> for Toast<S> {
fn children_mut(&mut self) -> &mut SmallVec<[AnyElement<Self::ViewState>; 2]> { fn children_mut(&mut self) -> &mut SmallVec<[AnyElement<S>; 2]> {
&mut self.children &mut self.children
} }
} }
@ -90,11 +90,7 @@ mod stories {
} }
} }
fn render( fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
&mut self,
_view: &mut S,
cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, Toast<S>>(cx)) .child(Story::title_for::<_, Toast<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -54,7 +54,7 @@ impl<S: 'static + Send + Sync> Toolbar<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
div() div()
@ -96,7 +96,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
Story::container(cx) Story::container(cx)

View file

@ -25,7 +25,7 @@ impl<S: 'static + Send + Sync> TrafficLight<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let fill = match (self.window_has_focus, self.color) { let fill = match (self.window_has_focus, self.color) {
@ -58,7 +58,7 @@ impl<S: 'static + Send + Sync> TrafficLights<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div() div()
.flex() .flex()
.items_center() .items_center()
@ -103,7 +103,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, TrafficLights<S>>(cx)) .child(Story::title_for::<_, TrafficLights<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -3,13 +3,13 @@ use std::sync::Arc;
use chrono::DateTime; use chrono::DateTime;
use gpui2::{px, relative, rems, view, Context, Size, View}; use gpui2::{px, relative, rems, view, Context, Size, View};
use crate::{prelude::*, NotificationsPanel};
use crate::{ use crate::{
static_livestream, old_theme, user_settings_mut, v_stack, AssistantPanel, Button, ChatMessage, old_theme, static_livestream, user_settings_mut, v_stack, AssistantPanel, Button, ChatMessage,
ChatPanel, CollabPanel, EditorPane, FakeSettings, Label, LanguageSelector, Pane, PaneGroup, ChatPanel, CollabPanel, EditorPane, FakeSettings, Label, LanguageSelector, Pane, PaneGroup,
Panel, PanelAllowedSides, PanelSide, ProjectPanel, SettingValue, SplitDirection, StatusBar, Panel, PanelAllowedSides, PanelSide, ProjectPanel, SettingValue, SplitDirection, StatusBar,
Terminal, TitleBar, Toast, ToastOrigin, Terminal, TitleBar, Toast, ToastOrigin,
}; };
use crate::{prelude::*, NotificationsPanel};
#[derive(Clone)] #[derive(Clone)]
pub struct Gpui2UiDebug { pub struct Gpui2UiDebug {
@ -174,7 +174,7 @@ impl Workspace {
view(cx.entity(|cx| Self::new(cx)), Self::render) view(cx.entity(|cx| Self::new(cx)), Self::render)
} }
pub fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<ViewState = Self> { pub fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<Self> {
let theme = old_theme(cx).clone(); let theme = old_theme(cx).clone();
// HACK: This should happen inside of `debug_toggle_user_settings`, but // HACK: This should happen inside of `debug_toggle_user_settings`, but

View file

@ -1,6 +1,6 @@
use gpui2::Element; use gpui2::Element;
pub trait ElementExt<S: 'static + Send + Sync>: Element<ViewState = S> { pub trait ElementExt<S: 'static + Send + Sync>: Element<S> {
/// Applies a given function `then` to the current element if `condition` is true. /// Applies a given function `then` to the current element if `condition` is true.
/// This function is used to conditionally modify the element based on a given condition. /// This function is used to conditionally modify the element based on a given condition.
/// If `condition` is false, it just returns the current element as it is. /// If `condition` is false, it just returns the current element as it is.
@ -25,4 +25,4 @@ pub trait ElementExt<S: 'static + Send + Sync>: Element<ViewState = S> {
// } // }
} }
impl<S: 'static + Send + Sync, E: Element<ViewState = S>> ElementExt<S> for E {} impl<S: 'static + Send + Sync, E: Element<S>> ElementExt<S> for E {}

View file

@ -25,7 +25,7 @@ impl<S: 'static + Send + Sync> Avatar<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let mut img = img(); let mut img = img();
@ -67,7 +67,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, Avatar<S>>(cx)) .child(Story::title_for::<_, Avatar<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -154,7 +154,7 @@ impl<S: 'static + Send + Sync> Button<S> {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let icon_color = self.icon_color(); let icon_color = self.icon_color();
let mut button = h_stack() let mut button = h_stack()
@ -211,7 +211,7 @@ impl<S: 'static + Send + Sync> ButtonGroup<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let mut el = h_stack().text_size(ui_size(cx, 1.)); let mut el = h_stack().text_size(ui_size(cx, 1.));
for button in &mut self.buttons { for button in &mut self.buttons {
@ -250,7 +250,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let states = InteractionState::iter(); let states = InteractionState::iter();
Story::container(cx) Story::container(cx)

View file

@ -30,7 +30,7 @@ impl<S: 'static + Send + Sync> Details<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
v_stack() v_stack()
@ -70,7 +70,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, Details<S>>(cx)) .child(Story::title_for::<_, Details<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -176,7 +176,7 @@ impl<S: 'static + Send + Sync> IconElement<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let fill = self.color.color(cx); let fill = self.color.color(cx);
let svg_size = match self.size { let svg_size = match self.size {
IconSize::Small => ui_size(cx, 12. / 14.), IconSize::Small => ui_size(cx, 12. / 14.),
@ -218,7 +218,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let icons = Icon::iter(); let icons = Icon::iter();
Story::container(cx) Story::container(cx)

View file

@ -60,7 +60,7 @@ impl<S: 'static + Send + Sync> Input<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let (input_bg, input_hover_bg, input_active_bg) = match self.variant { let (input_bg, input_hover_bg, input_active_bg) = match self.variant {
@ -136,7 +136,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, Input<S>>(cx)) .child(Story::title_for::<_, Input<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -83,7 +83,7 @@ impl<S: 'static + Send + Sync> Label<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
div() div()
.when(self.strikethrough, |this| { .when(self.strikethrough, |this| {
this.relative().child( this.relative().child(
@ -135,7 +135,7 @@ impl<S: 'static + Send + Sync> HighlightedLabel<S> {
self self
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
let highlight_color = theme.text_accent; let highlight_color = theme.text_accent;
@ -227,7 +227,7 @@ mod stories {
&mut self, &mut self,
_view: &mut S, _view: &mut S,
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Story::container(cx) Story::container(cx)
.child(Story::title_for::<_, Label<S>>(cx)) .child(Story::title_for::<_, Label<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))

View file

@ -14,7 +14,7 @@ impl<S: 'static + Send + Sync> ToolDivider<S> {
} }
} }
fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<ViewState = S> { fn render(&mut self, _view: &mut S, cx: &mut ViewContext<S>) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
div().w_px().h_3().bg(theme.border) div().w_px().h_3().bg(theme.border)

View file

@ -21,7 +21,7 @@ impl Story {
pub fn title<S: 'static + Send + Sync>( pub fn title<S: 'static + Send + Sync>(
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
title: &str, title: &str,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
div() div()
@ -32,14 +32,14 @@ impl Story {
pub fn title_for<S: 'static + Send + Sync, T>( pub fn title_for<S: 'static + Send + Sync, T>(
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
Self::title(cx, std::any::type_name::<T>()) Self::title(cx, std::any::type_name::<T>())
} }
pub fn label<S: 'static + Send + Sync>( pub fn label<S: 'static + Send + Sync>(
cx: &mut ViewContext<S>, cx: &mut ViewContext<S>,
label: &str, label: &str,
) -> impl Element<ViewState = S> { ) -> impl Element<S> {
let theme = theme(cx); let theme = theme(cx);
div() div()

View file

@ -132,10 +132,11 @@ where
deserializer.deserialize_map(SyntaxVisitor) deserializer.deserialize_map(SyntaxVisitor)
} }
pub fn themed<E, F>(theme: Theme, cx: &mut ViewContext<E::ViewState>, build_child: F) -> Themed<E> pub fn themed<V, E, F>(theme: Theme, cx: &mut ViewContext<V>, build_child: F) -> Themed<E>
where where
E: Element, V: 'static,
F: FnOnce(&mut ViewContext<E::ViewState>) -> E, E: Element<V>,
F: FnOnce(&mut ViewContext<V>) -> E,
{ {
cx.default_global::<ThemeStack>().0.push(theme.clone()); cx.default_global::<ThemeStack>().0.push(theme.clone());
let child = build_child(cx); let child = build_child(cx);
@ -148,12 +149,13 @@ pub struct Themed<E> {
pub(crate) child: E, pub(crate) child: E,
} }
impl<E> IntoAnyElement<E::ViewState> for Themed<E> impl<V, E> IntoAnyElement<V> for Themed<E>
where where
E: 'static + Element + Send + Sync, V: 'static,
E: 'static + Element<V> + Send + Sync,
E::ElementState: Send + Sync, E::ElementState: Send + Sync,
{ {
fn into_any(self) -> AnyElement<E::ViewState> { fn into_any(self) -> AnyElement<V> {
AnyElement::new(self) AnyElement::new(self)
} }
} }
@ -161,11 +163,11 @@ where
#[derive(Default)] #[derive(Default)]
struct ThemeStack(Vec<Theme>); struct ThemeStack(Vec<Theme>);
impl<E: 'static + Element + Send + Sync> Element for Themed<E> impl<V, E: 'static + Element<V> + Send + Sync> Element<V> for Themed<E>
where where
V: 'static,
E::ElementState: Send + Sync, E::ElementState: Send + Sync,
{ {
type ViewState = E::ViewState;
type ElementState = E::ElementState; type ElementState = E::ElementState;
fn id(&self) -> Option<gpui2::ElementId> { fn id(&self) -> Option<gpui2::ElementId> {
@ -174,9 +176,9 @@ where
fn initialize( fn initialize(
&mut self, &mut self,
view_state: &mut Self::ViewState, view_state: &mut V,
element_state: Option<Self::ElementState>, element_state: Option<Self::ElementState>,
cx: &mut ViewContext<Self::ViewState>, cx: &mut ViewContext<V>,
) -> Self::ElementState { ) -> Self::ElementState {
cx.default_global::<ThemeStack>().0.push(self.theme.clone()); cx.default_global::<ThemeStack>().0.push(self.theme.clone());
let element_state = self.child.initialize(view_state, element_state, cx); let element_state = self.child.initialize(view_state, element_state, cx);
@ -186,9 +188,9 @@ where
fn layout( fn layout(
&mut self, &mut self,
view_state: &mut E::ViewState, view_state: &mut V,
element_state: &mut Self::ElementState, element_state: &mut Self::ElementState,
cx: &mut ViewContext<E::ViewState>, cx: &mut ViewContext<V>,
) -> LayoutId ) -> LayoutId
where where
Self: Sized, Self: Sized,
@ -202,9 +204,9 @@ where
fn paint( fn paint(
&mut self, &mut self,
bounds: Bounds<Pixels>, bounds: Bounds<Pixels>,
view_state: &mut Self::ViewState, view_state: &mut V,
frame_state: &mut Self::ElementState, frame_state: &mut Self::ElementState,
cx: &mut ViewContext<Self::ViewState>, cx: &mut ViewContext<V>,
) where ) where
Self: Sized, Self: Sized,
{ {