Rearrange to hopefully make merging easier
This commit is contained in:
parent
219999cd8d
commit
81b03d379e
29 changed files with 109 additions and 109 deletions
|
@ -9,9 +9,9 @@ pub struct FacePile {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for FacePile {
|
impl RenderOnce for FacePile {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, _: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _: &mut WindowContext) -> Self::Output {
|
||||||
let player_count = self.faces.len();
|
let player_count = self.faces.len();
|
||||||
let player_list = self.faces.into_iter().enumerate().map(|(ix, player)| {
|
let player_list = self.faces.into_iter().enumerate().map(|(ix, player)| {
|
||||||
let isnt_last = ix < player_count - 1;
|
let isnt_last = ix < player_count - 1;
|
||||||
|
|
|
@ -6,8 +6,20 @@ use derive_more::{Deref, DerefMut};
|
||||||
pub(crate) use smallvec::SmallVec;
|
pub(crate) use smallvec::SmallVec;
|
||||||
use std::{any::Any, fmt::Debug};
|
use std::{any::Any, fmt::Debug};
|
||||||
|
|
||||||
pub trait Render: 'static + Sized {
|
pub trait Element: 'static + IntoElement {
|
||||||
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element;
|
type State: 'static;
|
||||||
|
|
||||||
|
fn layout(
|
||||||
|
&mut self,
|
||||||
|
state: Option<Self::State>,
|
||||||
|
cx: &mut WindowContext,
|
||||||
|
) -> (LayoutId, Self::State);
|
||||||
|
|
||||||
|
fn paint(&mut self, bounds: Bounds<Pixels>, state: &mut Self::State, cx: &mut WindowContext);
|
||||||
|
|
||||||
|
fn into_any(self) -> AnyElement {
|
||||||
|
AnyElement::new(self)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait IntoElement: Sized {
|
pub trait IntoElement: Sized {
|
||||||
|
@ -81,35 +93,44 @@ pub trait IntoElement: Sized {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait Element: 'static + IntoElement {
|
pub trait Render: 'static + Sized {
|
||||||
type State: 'static;
|
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element;
|
||||||
|
|
||||||
fn layout(
|
|
||||||
&mut self,
|
|
||||||
state: Option<Self::State>,
|
|
||||||
cx: &mut WindowContext,
|
|
||||||
) -> (LayoutId, Self::State);
|
|
||||||
|
|
||||||
fn paint(&mut self, bounds: Bounds<Pixels>, state: &mut Self::State, cx: &mut WindowContext);
|
|
||||||
|
|
||||||
fn into_any(self) -> AnyElement {
|
|
||||||
AnyElement::new(self)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait RenderOnce: 'static {
|
pub trait RenderOnce: 'static {
|
||||||
type Rendered: IntoElement;
|
type Output: IntoElement;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered;
|
fn render(self, cx: &mut WindowContext) -> Self::Output;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait ParentElement {
|
||||||
|
fn children_mut(&mut self) -> &mut SmallVec<[AnyElement; 2]>;
|
||||||
|
|
||||||
|
fn child(mut self, child: impl IntoElement) -> Self
|
||||||
|
where
|
||||||
|
Self: Sized,
|
||||||
|
{
|
||||||
|
self.children_mut().push(child.into_element().into_any());
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
|
fn children(mut self, children: impl IntoIterator<Item = impl IntoElement>) -> Self
|
||||||
|
where
|
||||||
|
Self: Sized,
|
||||||
|
{
|
||||||
|
self.children_mut()
|
||||||
|
.extend(children.into_iter().map(|child| child.into_any_element()));
|
||||||
|
self
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Component<C> {
|
pub struct Component<C> {
|
||||||
component: Option<C>,
|
component: Option<C>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct CompositeElementState<C: RenderOnce> {
|
pub struct ComponentState<C: RenderOnce> {
|
||||||
rendered_element: Option<<C::Rendered as IntoElement>::Element>,
|
rendered_element: Option<<C::Output as IntoElement>::Element>,
|
||||||
rendered_element_state: Option<<<C::Rendered as IntoElement>::Element as Element>::State>,
|
rendered_element_state: Option<<<C::Output as IntoElement>::Element as Element>::State>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<C> Component<C> {
|
impl<C> Component<C> {
|
||||||
|
@ -121,7 +142,7 @@ impl<C> Component<C> {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<C: RenderOnce> Element for Component<C> {
|
impl<C: RenderOnce> Element for Component<C> {
|
||||||
type State = CompositeElementState<C>;
|
type State = ComponentState<C>;
|
||||||
|
|
||||||
fn layout(
|
fn layout(
|
||||||
&mut self,
|
&mut self,
|
||||||
|
@ -132,7 +153,7 @@ impl<C: RenderOnce> Element for Component<C> {
|
||||||
if let Some(element_id) = element.element_id() {
|
if let Some(element_id) = element.element_id() {
|
||||||
let layout_id =
|
let layout_id =
|
||||||
cx.with_element_state(element_id, |state, cx| element.layout(state, cx));
|
cx.with_element_state(element_id, |state, cx| element.layout(state, cx));
|
||||||
let state = CompositeElementState {
|
let state = ComponentState {
|
||||||
rendered_element: Some(element),
|
rendered_element: Some(element),
|
||||||
rendered_element_state: None,
|
rendered_element_state: None,
|
||||||
};
|
};
|
||||||
|
@ -140,7 +161,7 @@ impl<C: RenderOnce> Element for Component<C> {
|
||||||
} else {
|
} else {
|
||||||
let (layout_id, state) =
|
let (layout_id, state) =
|
||||||
element.layout(state.and_then(|s| s.rendered_element_state), cx);
|
element.layout(state.and_then(|s| s.rendered_element_state), cx);
|
||||||
let state = CompositeElementState {
|
let state = ComponentState {
|
||||||
rendered_element: Some(element),
|
rendered_element: Some(element),
|
||||||
rendered_element_state: Some(state),
|
rendered_element_state: Some(state),
|
||||||
};
|
};
|
||||||
|
@ -181,27 +202,6 @@ impl<C: RenderOnce> IntoElement for Component<C> {
|
||||||
#[derive(Deref, DerefMut, Default, Clone, Debug, Eq, PartialEq, Hash)]
|
#[derive(Deref, DerefMut, Default, Clone, Debug, Eq, PartialEq, Hash)]
|
||||||
pub struct GlobalElementId(SmallVec<[ElementId; 32]>);
|
pub struct GlobalElementId(SmallVec<[ElementId; 32]>);
|
||||||
|
|
||||||
pub trait ParentElement {
|
|
||||||
fn children_mut(&mut self) -> &mut SmallVec<[AnyElement; 2]>;
|
|
||||||
|
|
||||||
fn child(mut self, child: impl IntoElement) -> Self
|
|
||||||
where
|
|
||||||
Self: Sized,
|
|
||||||
{
|
|
||||||
self.children_mut().push(child.into_element().into_any());
|
|
||||||
self
|
|
||||||
}
|
|
||||||
|
|
||||||
fn children(mut self, children: impl IntoIterator<Item = impl IntoElement>) -> Self
|
|
||||||
where
|
|
||||||
Self: Sized,
|
|
||||||
{
|
|
||||||
self.children_mut()
|
|
||||||
.extend(children.into_iter().map(|child| child.into_any_element()));
|
|
||||||
self
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
trait ElementObject {
|
trait ElementObject {
|
||||||
fn element_id(&self) -> Option<ElementId>;
|
fn element_id(&self) -> Option<ElementId>;
|
||||||
|
|
||||||
|
|
|
@ -136,9 +136,9 @@ impl QuickActionBarButton {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for QuickActionBarButton {
|
impl RenderOnce for QuickActionBarButton {
|
||||||
type Rendered = IconButton;
|
type Output = IconButton;
|
||||||
|
|
||||||
fn render(self, _: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _: &mut WindowContext) -> Self::Output {
|
||||||
let tooltip = self.tooltip.clone();
|
let tooltip = self.tooltip.clone();
|
||||||
let action = self.action.boxed_clone();
|
let action = self.action.boxed_clone();
|
||||||
|
|
||||||
|
|
|
@ -43,9 +43,9 @@ impl HighlightedText {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for HighlightedText {
|
impl RenderOnce for HighlightedText {
|
||||||
type Rendered = HighlightedLabel;
|
type Output = HighlightedLabel;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
HighlightedLabel::new(self.text, self.highlight_positions)
|
HighlightedLabel::new(self.text, self.highlight_positions)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,9 +74,9 @@ impl ParentElement for StoryContainer {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for StoryContainer {
|
impl RenderOnce for StoryContainer {
|
||||||
type Rendered = Stateful<Div>;
|
type Output = Stateful<Div>;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
div()
|
div()
|
||||||
.size_full()
|
.size_full()
|
||||||
.flex()
|
.flex()
|
||||||
|
@ -294,9 +294,9 @@ impl StoryItem {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for StoryItem {
|
impl RenderOnce for StoryItem {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
div()
|
div()
|
||||||
.my_2()
|
.my_2()
|
||||||
.flex()
|
.flex()
|
||||||
|
@ -358,9 +358,9 @@ impl StorySection {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for StorySection {
|
impl RenderOnce for StorySection {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
let children: SmallVec<[AnyElement; 2]> = SmallVec::from_iter(Itertools::intersperse_with(
|
let children: SmallVec<[AnyElement; 2]> = SmallVec::from_iter(Itertools::intersperse_with(
|
||||||
self.children.into_iter(),
|
self.children.into_iter(),
|
||||||
|| Story::divider().into_any_element(),
|
|| Story::divider().into_any_element(),
|
||||||
|
|
|
@ -80,9 +80,9 @@ struct ZIndexExample {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for ZIndexExample {
|
impl RenderOnce for ZIndexExample {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
div()
|
div()
|
||||||
.relative()
|
.relative()
|
||||||
.size_full()
|
.size_full()
|
||||||
|
|
|
@ -16,9 +16,9 @@ pub struct Avatar {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for Avatar {
|
impl RenderOnce for Avatar {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(mut self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(mut self, cx: &mut WindowContext) -> Self::Output {
|
||||||
if self.image.style().corner_radii.top_left.is_none() {
|
if self.image.style().corner_radii.top_left.is_none() {
|
||||||
self = self.shape(Shape::Circle);
|
self = self.shape(Shape::Circle);
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,9 +136,9 @@ impl ButtonCommon for Button {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for Button {
|
impl RenderOnce for Button {
|
||||||
type Rendered = ButtonLike;
|
type Output = ButtonLike;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
let is_disabled = self.base.disabled;
|
let is_disabled = self.base.disabled;
|
||||||
let is_selected = self.base.selected;
|
let is_selected = self.base.selected;
|
||||||
|
|
||||||
|
|
|
@ -63,9 +63,9 @@ impl Selectable for ButtonIcon {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for ButtonIcon {
|
impl RenderOnce for ButtonIcon {
|
||||||
type Rendered = IconElement;
|
type Output = IconElement;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
let icon = self
|
let icon = self
|
||||||
.selected_icon
|
.selected_icon
|
||||||
.filter(|_| self.selected)
|
.filter(|_| self.selected)
|
||||||
|
|
|
@ -363,9 +363,9 @@ impl ParentElement for ButtonLike {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for ButtonLike {
|
impl RenderOnce for ButtonLike {
|
||||||
type Rendered = Stateful<Div>;
|
type Output = Stateful<Div>;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
self.base
|
self.base
|
||||||
.h_flex()
|
.h_flex()
|
||||||
.id(self.id.clone())
|
.id(self.id.clone())
|
||||||
|
|
|
@ -106,9 +106,9 @@ impl VisibleOnHover for IconButton {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for IconButton {
|
impl RenderOnce for IconButton {
|
||||||
type Rendered = ButtonLike;
|
type Output = ButtonLike;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
let is_disabled = self.base.disabled;
|
let is_disabled = self.base.disabled;
|
||||||
let is_selected = self.base.selected;
|
let is_selected = self.base.selected;
|
||||||
|
|
||||||
|
|
|
@ -99,9 +99,9 @@ impl ButtonCommon for ToggleButton {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for ToggleButton {
|
impl RenderOnce for ToggleButton {
|
||||||
type Rendered = ButtonLike;
|
type Output = ButtonLike;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
let is_disabled = self.base.disabled;
|
let is_disabled = self.base.disabled;
|
||||||
let is_selected = self.base.selected;
|
let is_selected = self.base.selected;
|
||||||
|
|
||||||
|
|
|
@ -19,9 +19,9 @@ pub struct Checkbox {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for Checkbox {
|
impl RenderOnce for Checkbox {
|
||||||
type Rendered = gpui::Stateful<Div>;
|
type Output = gpui::Stateful<Div>;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
let group_id = format!("checkbox_group_{:?}", self.id);
|
let group_id = format!("checkbox_group_{:?}", self.id);
|
||||||
|
|
||||||
let icon = match self.checked {
|
let icon = match self.checked {
|
||||||
|
|
|
@ -28,9 +28,9 @@ impl Disclosure {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for Disclosure {
|
impl RenderOnce for Disclosure {
|
||||||
type Rendered = IconButton;
|
type Output = IconButton;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
IconButton::new(
|
IconButton::new(
|
||||||
self.id,
|
self.id,
|
||||||
match self.is_open {
|
match self.is_open {
|
||||||
|
|
|
@ -31,9 +31,9 @@ pub struct Divider {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for Divider {
|
impl RenderOnce for Divider {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
div()
|
div()
|
||||||
.map(|this| match self.direction {
|
.map(|this| match self.direction {
|
||||||
DividerDirection::Horizontal => {
|
DividerDirection::Horizontal => {
|
||||||
|
|
|
@ -196,9 +196,9 @@ pub struct IconElement {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for IconElement {
|
impl RenderOnce for IconElement {
|
||||||
type Rendered = Svg;
|
type Output = Svg;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
svg()
|
svg()
|
||||||
.size(self.size.rems())
|
.size(self.size.rems())
|
||||||
.flex_none()
|
.flex_none()
|
||||||
|
|
|
@ -45,9 +45,9 @@ impl Indicator {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for Indicator {
|
impl RenderOnce for Indicator {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
div()
|
div()
|
||||||
.flex_none()
|
.flex_none()
|
||||||
.map(|this| match self.style {
|
.map(|this| match self.style {
|
||||||
|
|
|
@ -11,9 +11,9 @@ pub struct KeyBinding {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for KeyBinding {
|
impl RenderOnce for KeyBinding {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
h_stack()
|
h_stack()
|
||||||
.flex_none()
|
.flex_none()
|
||||||
.gap_2()
|
.gap_2()
|
||||||
|
@ -91,9 +91,9 @@ pub struct Key {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for Key {
|
impl RenderOnce for Key {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
let single_char = self.key.len() == 1;
|
let single_char = self.key.len() == 1;
|
||||||
|
|
||||||
div()
|
div()
|
||||||
|
@ -125,9 +125,9 @@ pub struct KeyIcon {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for KeyIcon {
|
impl RenderOnce for KeyIcon {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
div()
|
div()
|
||||||
.w(rems(14. / 16.))
|
.w(rems(14. / 16.))
|
||||||
.child(IconElement::new(self.icon).size(IconSize::Small))
|
.child(IconElement::new(self.icon).size(IconSize::Small))
|
||||||
|
|
|
@ -46,9 +46,9 @@ impl LabelCommon for HighlightedLabel {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for HighlightedLabel {
|
impl RenderOnce for HighlightedLabel {
|
||||||
type Rendered = LabelLike;
|
type Output = LabelLike;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
let highlight_color = cx.theme().colors().text_accent;
|
let highlight_color = cx.theme().colors().text_accent;
|
||||||
|
|
||||||
let mut highlight_indices = self.highlight_indices.iter().copied().peekable();
|
let mut highlight_indices = self.highlight_indices.iter().copied().peekable();
|
||||||
|
|
|
@ -40,9 +40,9 @@ impl LabelCommon for Label {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for Label {
|
impl RenderOnce for Label {
|
||||||
type Rendered = LabelLike;
|
type Output = LabelLike;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
self.base.child(self.label)
|
self.base.child(self.label)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,9 +76,9 @@ impl ParentElement for LabelLike {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for LabelLike {
|
impl RenderOnce for LabelLike {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
div()
|
div()
|
||||||
.when(self.strikethrough, |this| {
|
.when(self.strikethrough, |this| {
|
||||||
this.relative().child(
|
this.relative().child(
|
||||||
|
|
|
@ -46,9 +46,9 @@ impl ParentElement for List {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for List {
|
impl RenderOnce for List {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
v_stack().w_full().py_1().children(self.header).map(|this| {
|
v_stack().w_full().py_1().children(self.header).map(|this| {
|
||||||
match (self.children.is_empty(), self.toggle) {
|
match (self.children.is_empty(), self.toggle) {
|
||||||
(false, _) => this.children(self.children),
|
(false, _) => this.children(self.children),
|
||||||
|
|
|
@ -76,9 +76,9 @@ impl Selectable for ListHeader {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for ListHeader {
|
impl RenderOnce for ListHeader {
|
||||||
type Rendered = Stateful<Div>;
|
type Output = Stateful<Div>;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
h_stack()
|
h_stack()
|
||||||
.id(self.label.clone())
|
.id(self.label.clone())
|
||||||
.w_full()
|
.w_full()
|
||||||
|
|
|
@ -147,9 +147,9 @@ impl ParentElement for ListItem {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for ListItem {
|
impl RenderOnce for ListItem {
|
||||||
type Rendered = Stateful<Div>;
|
type Output = Stateful<Div>;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
h_stack()
|
h_stack()
|
||||||
.id(self.id)
|
.id(self.id)
|
||||||
.w_full()
|
.w_full()
|
||||||
|
|
|
@ -6,9 +6,9 @@ use crate::prelude::*;
|
||||||
pub struct ListSeparator;
|
pub struct ListSeparator;
|
||||||
|
|
||||||
impl RenderOnce for ListSeparator {
|
impl RenderOnce for ListSeparator {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
div()
|
div()
|
||||||
.h_px()
|
.h_px()
|
||||||
.w_full()
|
.w_full()
|
||||||
|
|
|
@ -26,9 +26,9 @@ impl ListSubHeader {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for ListSubHeader {
|
impl RenderOnce for ListSubHeader {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, _cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, _cx: &mut WindowContext) -> Self::Output {
|
||||||
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()
|
||||||
|
|
|
@ -41,9 +41,9 @@ pub struct Popover {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for Popover {
|
impl RenderOnce for Popover {
|
||||||
type Rendered = Div;
|
type Output = Div;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
div()
|
div()
|
||||||
.flex()
|
.flex()
|
||||||
.gap_1()
|
.gap_1()
|
||||||
|
|
|
@ -93,9 +93,9 @@ impl ParentElement for Tab {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for Tab {
|
impl RenderOnce for Tab {
|
||||||
type Rendered = Stateful<Div>;
|
type Output = Stateful<Div>;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
let (text_color, tab_bg, _tab_hover_bg, _tab_active_bg) = match self.selected {
|
let (text_color, tab_bg, _tab_hover_bg, _tab_active_bg) = match self.selected {
|
||||||
false => (
|
false => (
|
||||||
cx.theme().colors().text_muted,
|
cx.theme().colors().text_muted,
|
||||||
|
|
|
@ -89,9 +89,9 @@ impl ParentElement for TabBar {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderOnce for TabBar {
|
impl RenderOnce for TabBar {
|
||||||
type Rendered = Stateful<Div>;
|
type Output = Stateful<Div>;
|
||||||
|
|
||||||
fn render(self, cx: &mut WindowContext) -> Self::Rendered {
|
fn render(self, cx: &mut WindowContext) -> Self::Output {
|
||||||
const HEIGHT_IN_REMS: f32 = 30. / 16.;
|
const HEIGHT_IN_REMS: f32 = 30. / 16.;
|
||||||
|
|
||||||
div()
|
div()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue