mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-24 02:46:43 +00:00
WIP: Trampoline
This commit is contained in:
parent
b52db5c5e6
commit
317acbf1d7
4 changed files with 132 additions and 9 deletions
|
@ -2,8 +2,10 @@ mod div;
|
|||
mod img;
|
||||
mod svg;
|
||||
mod text;
|
||||
mod trampoline;
|
||||
|
||||
pub use div::*;
|
||||
pub use img::*;
|
||||
pub use svg::*;
|
||||
pub use text::*;
|
||||
pub use trampoline::*;
|
||||
|
|
65
crates/gpui2/src/elements/trampoline.rs
Normal file
65
crates/gpui2/src/elements/trampoline.rs
Normal file
|
@ -0,0 +1,65 @@
|
|||
use crate::{Element, ViewContext, AnyElement, IntoAnyElement};
|
||||
|
||||
pub trait TemporaryRenderTraitDontWorryAboutIt<S> {
|
||||
fn render(self, cx: &mut ViewContext<S>) -> AnyElement<S>;
|
||||
}
|
||||
|
||||
|
||||
struct IntoAnyElementTrampolineName<S, E: TemporaryRenderTraitDontWorryAboutIt<S>> {
|
||||
contents: Option<E>,
|
||||
phantom: std::marker::PhantomData<S>,
|
||||
}
|
||||
|
||||
impl<S, E: TemporaryRenderTraitDontWorryAboutIt<S>> IntoAnyElementTrampolineName<S, E> {
|
||||
fn new(contents: E) -> Self {
|
||||
IntoAnyElementTrampolineName {
|
||||
contents: Some(contents),
|
||||
phantom: std::marker::PhantomData,
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<S, E: TemporaryRenderTraitDontWorryAboutIt<S>> Element for IntoAnyElementTrampolineName<S, E> {
|
||||
type ViewState = S;
|
||||
|
||||
type ElementState = AnyElement<S>;
|
||||
|
||||
fn id(&self) -> Option<crate::ElementId> {
|
||||
None
|
||||
}
|
||||
|
||||
fn initialize(
|
||||
&mut self,
|
||||
view_state: &mut Self::ViewState,
|
||||
element_state: Option<Self::ElementState>,
|
||||
cx: &mut ViewContext<Self::ViewState>,
|
||||
) -> Self::ElementState {
|
||||
self.contents.take().unwrap().render(cx)
|
||||
}
|
||||
|
||||
fn layout(
|
||||
&mut self,
|
||||
view_state: &mut Self::ViewState,
|
||||
element_state: &mut Self::ElementState,
|
||||
cx: &mut ViewContext<Self::ViewState>,
|
||||
) -> crate::LayoutId {
|
||||
element_state.layout(view_state, cx)
|
||||
}
|
||||
|
||||
fn paint(
|
||||
&mut self,
|
||||
bounds: crate::Bounds<crate::Pixels>,
|
||||
view_state: &mut Self::ViewState,
|
||||
element_state: &mut Self::ElementState,
|
||||
cx: &mut ViewContext<Self::ViewState>,
|
||||
) {
|
||||
element_state.paint(view_state, cx);
|
||||
}
|
||||
}
|
||||
|
||||
impl<S, E: TemporaryRenderTraitDontWorryAboutIt<S>> IntoAnyElement<S> for IntoAnyElementTrampolineName<S, E> {
|
||||
fn into_any(self) -> AnyElement<S> {
|
||||
AnyElement::new(self)
|
||||
}
|
||||
}
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
// Defining a derive macro
|
||||
use proc_macro::TokenStream;
|
||||
use quote::quote;
|
||||
use quote::{quote, format_ident};
|
||||
use syn::{parse_macro_input, DeriveInput};
|
||||
|
||||
pub fn derive_into_any_element(input: TokenStream) -> TokenStream {
|
||||
|
@ -57,12 +57,72 @@ pub fn derive_into_any_element(input: TokenStream) -> TokenStream {
|
|||
let (_, ty_generics, _) = generics.split_for_impl();
|
||||
let (impl_generics, _, where_clause) = trait_generics.split_for_impl();
|
||||
|
||||
let trampoline_name = format_ident!("{}{}", name, "Trampoline");
|
||||
|
||||
quote! {
|
||||
struct #trampoline_name<S, E> {
|
||||
contents: Option<E>,
|
||||
phantom: std::marker::PhantomData<S>,
|
||||
}
|
||||
|
||||
impl<S, E> #trampoline_name<S, E> {
|
||||
fn new(contents: E) -> Self {
|
||||
IntoAnyElementTrampolineName {
|
||||
contents: Some(contents),
|
||||
phantom: std::marker::PhantomData,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<S, E> Element for #trampoline_name<S, E> {
|
||||
type ViewState = S;
|
||||
|
||||
type ElementState = AnyElement<S>;
|
||||
|
||||
fn id(&self) -> Option<crate::ElementId> {
|
||||
None
|
||||
}
|
||||
|
||||
fn initialize(
|
||||
&mut self,
|
||||
view_state: &mut Self::ViewState,
|
||||
element_state: Option<Self::ElementState>,
|
||||
cx: &mut ViewContext<Self::ViewState>,
|
||||
) -> Self::ElementState {
|
||||
self.contents.take().unwrap().render(cx)
|
||||
}
|
||||
|
||||
fn layout(
|
||||
&mut self,
|
||||
view_state: &mut Self::ViewState,
|
||||
element_state: &mut Self::ElementState,
|
||||
cx: &mut ViewContext<Self::ViewState>,
|
||||
) -> crate::LayoutId {
|
||||
element_state.layout(view_state, cx)
|
||||
}
|
||||
|
||||
fn paint(
|
||||
&mut self,
|
||||
bounds: crate::Bounds<crate::Pixels>,
|
||||
view_state: &mut Self::ViewState,
|
||||
element_state: &mut Self::ElementState,
|
||||
cx: &mut ViewContext<Self::ViewState>,
|
||||
) {
|
||||
element_state.paint(view_state, cx);
|
||||
}
|
||||
}
|
||||
|
||||
impl<S, E> IntoAnyElement<S> for IntoAnyElementTrampolineName<S, E> {
|
||||
fn into_any(self) -> AnyElement<S> {
|
||||
AnyElement::new(self)
|
||||
}
|
||||
}
|
||||
|
||||
impl #impl_generics gpui2::IntoAnyElement<ViewState> for #name #ty_generics
|
||||
#where_clause
|
||||
{
|
||||
fn into_any(self) -> gpui2::AnyElement<ViewState> {
|
||||
Self::render(self).into_any()
|
||||
#trampoline_name(self).into_any()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -86,14 +86,10 @@ mod stories {
|
|||
use super::*;
|
||||
|
||||
#[derive(IntoAnyElement)]
|
||||
pub struct AssistantPanelStory<'a>(&'a AppContext);
|
||||
pub struct AssistantPanelStory;
|
||||
|
||||
impl<'a> AssistantPanelStory<'a> {
|
||||
pub fn new() -> Self {
|
||||
Self
|
||||
}
|
||||
|
||||
fn render<V>(self) -> impl IntoAnyElement<V> {
|
||||
impl AssistantPanelStory {
|
||||
fn render<V>(self, cx: &mut ViewContext<V>) -> impl IntoAnyElement<V> {
|
||||
Story::container(self.0)
|
||||
.child(Story::title_for::<_, AssistantPanel>(self.0))
|
||||
.child(Story::label(self.cx, "Default"))
|
||||
|
|
Loading…
Reference in a new issue