Checkpoint - Still Broken

This commit is contained in:
Nate Butler 2023-10-19 14:38:01 -04:00
parent bca97f7186
commit 58650b7d2d
31 changed files with 298 additions and 213 deletions

View file

@ -3,7 +3,7 @@ use std::marker::PhantomData;
use gpui3::{Hsla, WindowContext}; use gpui3::{Hsla, WindowContext};
use crate::prelude::*; use crate::prelude::*;
use crate::{h_stack, theme, v_stack, Icon, IconElement}; use crate::{h_stack, v_stack, Icon, IconElement};
#[derive(Default, PartialEq, Copy, Clone)] #[derive(Default, PartialEq, Copy, Clone)]
pub struct PlayerCursor { pub struct PlayerCursor {
@ -232,7 +232,7 @@ impl<S: 'static + Send + Sync + Clone> Buffer<S> {
.flex_1() .flex_1()
.w_full() .w_full()
.h_full() .h_full()
.bg(color.editor_background) .bg(color.editor)
.children(rows) .children(rows)
} }
} }
@ -279,14 +279,14 @@ mod stories {
div() div()
.w(rems(64.)) .w(rems(64.))
.h_96() .h_96()
.child(hello_world_rust_buffer_example(&theme)), .child(hello_world_rust_buffer_example(&color)),
) )
.child(Story::label(cx, "Hello World (Rust) with Status")) .child(Story::label(cx, "Hello World (Rust) with Status"))
.child( .child(
div() div()
.w(rems(64.)) .w(rems(64.))
.h_96() .h_96()
.child(hello_world_rust_buffer_with_status_example(&theme)), .child(hello_world_rust_buffer_with_status_example(&color)),
) )
} }
} }

View file

@ -29,7 +29,7 @@ impl BufferSearch {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<ViewState = Self> { fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element<ViewState = Self> {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
h_stack().bg(color.toolbar_background).p_2().child( h_stack().bg(color.toolbar).p_2().child(
h_stack().child(Input::new("Search")).child( h_stack().child(Input::new("Search")).child(
IconButton::<Self>::new(Icon::Replace) IconButton::<Self>::new(Icon::Replace)
.when(self.is_replace_open, |this| this.color(IconColor::Accent)) .when(self.is_replace_open, |this| this.color(IconColor::Accent))

View file

@ -3,7 +3,6 @@ use std::marker::PhantomData;
use chrono::NaiveDateTime; use chrono::NaiveDateTime;
use crate::prelude::*; use crate::prelude::*;
use crate::theme::theme;
use crate::{Icon, IconButton, Input, Label, LabelColor}; use crate::{Icon, IconButton, Input, Label, LabelColor};
#[derive(Element)] #[derive(Element)]

View file

@ -3,7 +3,6 @@ use std::marker::PhantomData;
use gpui3::{img, svg, SharedString}; use gpui3::{img, svg, SharedString};
use crate::prelude::*; use crate::prelude::*;
use crate::theme::{theme, Theme};
use crate::{ use crate::{
static_collab_panel_channels, static_collab_panel_current_call, v_stack, Icon, List, static_collab_panel_channels, static_collab_panel_current_call, v_stack, Icon, List,
ListHeader, ToggleState, ListHeader, ToggleState,

View file

@ -1,5 +1,5 @@
use crate::{prelude::*, ListItemVariant}; use crate::{prelude::*, ListItemVariant};
use crate::{theme, v_stack, Label, List, ListEntry, ListItem, ListSeparator, ListSubHeader}; use crate::{v_stack, Label, List, ListEntry, ListItem, ListSeparator, ListSubHeader};
#[derive(Clone)] #[derive(Clone)]
pub enum ContextMenuItem<S: 'static + Send + Sync + Clone> { pub enum ContextMenuItem<S: 'static + Send + Sync + Clone> {

View file

@ -56,7 +56,7 @@ impl EditorPane {
.w_full() .w_full()
.h_full() .h_full()
.flex_1() .flex_1()
.child(TabBar::new(self.tabs.clone())) .child(TabBar::new(self.tabs.clone()).can_navigate((false, true)))
.child( .child(
Toolbar::new() Toolbar::new()
.left_item(Breadcrumb::new(self.path.clone(), self.symbols.clone())) .left_item(Breadcrumb::new(self.path.clone(), self.symbols.clone()))

View file

@ -4,7 +4,7 @@ use std::sync::Arc;
use gpui3::{Interactive, MouseButton}; use gpui3::{Interactive, MouseButton};
use crate::{h_stack, prelude::*}; use crate::{h_stack, prelude::*};
use crate::{theme, ClickHandler, Icon, IconColor, IconElement}; use crate::{ClickHandler, Icon, IconColor, IconElement};
struct IconButtonHandlers<S: 'static + Send + Sync> { struct IconButtonHandlers<S: 'static + Send + Sync> {
click: Option<ClickHandler<S>>, click: Option<ClickHandler<S>>,

View file

@ -4,7 +4,6 @@ use std::marker::PhantomData;
use strum::{EnumIter, IntoEnumIterator}; use strum::{EnumIter, IntoEnumIterator};
use crate::prelude::*; use crate::prelude::*;
use crate::theme;
#[derive(Element, Clone)] #[derive(Element, Clone)]
pub struct Keybinding<S: 'static + Send + Sync + Clone> { pub struct Keybinding<S: 'static + Send + Sync + Clone> {

View file

@ -4,7 +4,6 @@ use gpui3::{div, Div};
use crate::prelude::*; use crate::prelude::*;
use crate::settings::user_settings; use crate::settings::user_settings;
use crate::theme::theme;
use crate::{h_stack, v_stack, Avatar, Icon, IconColor, IconElement, IconSize, Label, LabelColor}; use crate::{h_stack, v_stack, Avatar, Icon, IconColor, IconElement, IconSize, Label, LabelColor};
#[derive(Clone, Copy, Default, Debug, PartialEq)] #[derive(Clone, Copy, Default, Debug, PartialEq)]

View file

@ -73,11 +73,11 @@ mod stories {
.child(Story::title_for::<_, MultiBuffer<S>>(cx)) .child(Story::title_for::<_, MultiBuffer<S>>(cx))
.child(Story::label(cx, "Default")) .child(Story::label(cx, "Default"))
.child(MultiBuffer::new(vec![ .child(MultiBuffer::new(vec![
hello_world_rust_buffer_example(&theme), hello_world_rust_buffer_example(&color),
hello_world_rust_buffer_example(&theme), hello_world_rust_buffer_example(&color),
hello_world_rust_buffer_example(&theme), hello_world_rust_buffer_example(&color),
hello_world_rust_buffer_example(&theme), hello_world_rust_buffer_example(&color),
hello_world_rust_buffer_example(&theme), hello_world_rust_buffer_example(&color),
])) ]))
} }
} }

View file

@ -1,7 +1,6 @@
use std::marker::PhantomData; use std::marker::PhantomData;
use crate::prelude::*; use crate::prelude::*;
use crate::theme::theme;
use crate::{h_stack, v_stack, Keybinding, Label, LabelColor}; use crate::{h_stack, v_stack, Keybinding, Label, LabelColor};
#[derive(Element)] #[derive(Element)]

View file

@ -3,9 +3,9 @@ use std::marker::PhantomData;
use gpui3::{AbsoluteLength, AnyElement}; use gpui3::{AbsoluteLength, AnyElement};
use smallvec::SmallVec; use smallvec::SmallVec;
use crate::prelude::*;
use crate::settings::user_settings; use crate::settings::user_settings;
use crate::v_stack; use crate::v_stack;
use crate::{prelude::*, theme};
#[derive(Default, Debug, PartialEq, Eq, Hash, Clone, Copy)] #[derive(Default, Debug, PartialEq, Eq, Hash, Clone, Copy)]
pub enum PanelAllowedSides { pub enum PanelAllowedSides {
@ -99,43 +99,24 @@ impl<S: 'static + Send + Sync> Panel<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<ViewState = S> {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
let panel_base; let current_size = self.width.unwrap_or(self.initial_width);
let current_width = self.width.unwrap_or(self.initial_width);
match self.current_side { v_stack()
PanelSide::Left => {
panel_base = v_stack()
.flex_initial() .flex_initial()
.h_full() .when(
// .w(current_width) self.current_side == PanelSide::Left || self.current_side == PanelSide::Right,
.w_64() |this| this.h_full().w(current_size),
.bg(theme.middle.base.default.background) )
.border_r() .when(self.current_side == PanelSide::Left, |this| this.border_r())
.border_color(theme.middle.base.default.border); .when(self.current_side == PanelSide::Right, |this| {
} this.border_l()
PanelSide::Right => { })
panel_base = v_stack() .when(self.current_side == PanelSide::Bottom, |this| {
.flex_initial() this.border_b().w_full().h(current_size)
.h_full() })
// .w(current_width) .bg(color.surface)
.w_64() .border_color(color.border)
.bg(theme.middle.base.default.background) .children(self.children.drain(..))
.border_l()
.border_color(theme.middle.base.default.border);
}
PanelSide::Bottom => {
panel_base = v_stack()
.flex_initial()
.w_full()
// .h(current_width)
.h_64()
.bg(theme.middle.base.default.background)
.border_t()
.border_color(theme.middle.base.default.border);
}
}
panel_base.children(self.children.drain(..))
} }
} }

View file

@ -4,7 +4,6 @@ use gpui3::{hsla, AnyElement, Hsla, Length, Size};
use smallvec::SmallVec; use smallvec::SmallVec;
use crate::prelude::*; use crate::prelude::*;
use crate::theme;
#[derive(Default, PartialEq)] #[derive(Default, PartialEq)]
pub enum SplitDirection { pub enum SplitDirection {
@ -99,7 +98,6 @@ impl<S: 'static + Send + Sync> PaneGroup<S> {
.gap_px() .gap_px()
.w_full() .w_full()
.h_full() .h_full()
.bg(theme.lowest.base.default.background)
.children(self.panes.iter_mut().map(|pane| pane.render(view, cx))); .children(self.panes.iter_mut().map(|pane| pane.render(view, cx)));
if self.split_direction == SplitDirection::Horizontal { if self.split_direction == SplitDirection::Horizontal {
@ -116,7 +114,7 @@ impl<S: 'static + Send + Sync> PaneGroup<S> {
.gap_px() .gap_px()
.w_full() .w_full()
.h_full() .h_full()
.bg(theme.lowest.base.default.background) .bg(color.editor)
.children(self.groups.iter_mut().map(|group| group.render(view, cx))); .children(self.groups.iter_mut().map(|group| group.render(view, cx)));
if self.split_direction == SplitDirection::Horizontal { if self.split_direction == SplitDirection::Horizontal {

View file

@ -2,8 +2,7 @@ use std::marker::PhantomData;
use crate::prelude::*; use crate::prelude::*;
use crate::{ use crate::{
static_project_panel_project_items, static_project_panel_single_items, theme, Input, List, static_project_panel_project_items, static_project_panel_single_items, Input, List, ListHeader,
ListHeader,
}; };
#[derive(Element)] #[derive(Element)]

View file

@ -96,16 +96,18 @@ impl StatusBar {
.items_center() .items_center()
.justify_between() .justify_between()
.w_full() .w_full()
.bg(theme.lowest.base.default.background) .bg(color.status_bar)
.child(self.left_tools(view, &theme)) .child(self.left_tools(view, cx))
.child(self.right_tools(view, &theme)) .child(self.right_tools(view, cx))
} }
fn left_tools( fn left_tools(
&self, &self,
workspace: &mut Workspace, workspace: &mut Workspace,
theme: &Theme, cx: &WindowContext,
) -> impl Element<ViewState = Workspace> { ) -> impl Element<ViewState = Workspace> {
let color = ThemeColor::new(cx);
div() div()
.flex() .flex()
.items_center() .items_center()
@ -135,8 +137,10 @@ impl StatusBar {
fn right_tools( fn right_tools(
&self, &self,
workspace: &mut Workspace, workspace: &mut Workspace,
theme: &Theme, cx: &WindowContext,
) -> impl Element<ViewState = Workspace> { ) -> impl Element<ViewState = Workspace> {
let color = ThemeColor::new(cx);
div() div()
.flex() .flex()
.items_center() .items_center()

View file

@ -1,7 +1,7 @@
use std::marker::PhantomData; use std::marker::PhantomData;
use crate::prelude::*; use crate::prelude::*;
use crate::{theme, Icon, IconColor, IconElement, Label, LabelColor}; use crate::{Icon, IconColor, IconElement, Label, LabelColor};
#[derive(Element, Clone)] #[derive(Element, Clone)]
pub struct Tab<S: 'static + Send + Sync + Clone> { pub struct Tab<S: 'static + Send + Sync + Clone> {
@ -96,17 +96,28 @@ impl<S: 'static + Send + Sync + Clone> Tab<S> {
let close_icon = IconElement::new(Icon::Close).color(IconColor::Muted); let close_icon = IconElement::new(Icon::Close).color(IconColor::Muted);
let (tab_bg, tab_hover_bg, tab_active_bg) = match self.current {
true => (
color.ghost_element,
color.ghost_element_hover,
color.ghost_element_active,
),
false => (
color.filled_element,
color.filled_element_hover,
color.filled_element_active,
),
};
div() div()
.px_2() .px_2()
.py_0p5() .py_0p5()
.flex() .flex()
.items_center() .items_center()
.justify_center() .justify_center()
.bg(if self.current { .bg(tab_bg)
theme.highest.base.default.background .hover(|h| h.bg(tab_hover_bg))
} else { // .active(|a| a.bg(tab_active_bg))
theme.middle.base.default.background
})
.child( .child(
div() div()
.px_1() .px_1()

View file

@ -1,12 +1,14 @@
use std::marker::PhantomData; use std::marker::PhantomData;
use crate::prelude::*; use crate::prelude::*;
use crate::{theme, Icon, IconButton, Tab}; use crate::{Icon, IconButton, Tab};
#[derive(Element)] #[derive(Element)]
pub struct TabBar<S: 'static + Send + Sync + Clone> { pub struct TabBar<S: 'static + Send + Sync + Clone> {
state_type: PhantomData<S>, state_type: PhantomData<S>,
scroll_state: ScrollState, scroll_state: ScrollState,
/// Backwards, Forwards
can_navigate: (bool, bool),
tabs: Vec<Tab<S>>, tabs: Vec<Tab<S>>,
} }
@ -15,6 +17,7 @@ impl<S: 'static + Send + Sync + Clone> TabBar<S> {
Self { Self {
state_type: PhantomData, state_type: PhantomData,
scroll_state: ScrollState::default(), scroll_state: ScrollState::default(),
can_navigate: (false, false),
tabs, tabs,
} }
} }
@ -23,15 +26,20 @@ impl<S: 'static + Send + Sync + Clone> TabBar<S> {
self.scroll_state = scroll_state; self.scroll_state = scroll_state;
} }
pub fn can_navigate(mut self, can_navigate: (bool, bool)) -> Self {
self.can_navigate = can_navigate;
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<ViewState = S> {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
let can_navigate_back = true;
let can_navigate_forward = false; let (can_navigate_back, can_navigate_forward) = self.can_navigate;
div() div()
.w_full() .w_full()
.flex() .flex()
.bg(theme.middle.base.default.background) .bg(color.tab_bar)
// Left Side // Left Side
.child( .child(
div() div()

View file

@ -3,7 +3,7 @@ use std::marker::PhantomData;
use gpui3::{relative, rems, Size}; use gpui3::{relative, rems, Size};
use crate::prelude::*; use crate::prelude::*;
use crate::{theme, Icon, IconButton, Pane, Tab}; use crate::{Icon, IconButton, Pane, Tab};
#[derive(Element)] #[derive(Element)]
pub struct Terminal<S: 'static + Send + Sync + Clone> { pub struct Terminal<S: 'static + Send + Sync + Clone> {
@ -32,7 +32,7 @@ impl<S: 'static + Send + Sync + Clone> Terminal<S> {
div() div()
.w_full() .w_full()
.flex() .flex()
.bg(theme.middle.base.default.background) .bg(color.surface)
.child( .child(
div().px_1().flex().flex_none().gap_2().child( div().px_1().flex().flex_none().gap_2().child(
div() div()
@ -79,7 +79,7 @@ impl<S: 'static + Send + Sync + Clone> Terminal<S> {
height: rems(36.).into(), height: rems(36.).into(),
}, },
) )
.child(crate::static_data::terminal_buffer(&theme)), .child(crate::static_data::terminal_buffer(&color)),
) )
} }
} }

View file

@ -6,7 +6,7 @@ use gpui3::{view, Context, View};
use crate::prelude::*; use crate::prelude::*;
use crate::settings::user_settings; use crate::settings::user_settings;
use crate::{ use crate::{
random_players_with_call_status, theme, Avatar, Button, Icon, IconButton, IconColor, MicStatus, random_players_with_call_status, Avatar, Button, Icon, IconButton, IconColor, MicStatus,
PlayerWithCallStatus, ScreenShareStatus, ToolDivider, TrafficLights, PlayerWithCallStatus, ScreenShareStatus, ToolDivider, TrafficLights,
}; };

View file

@ -2,7 +2,6 @@ use gpui3::AnyElement;
use smallvec::SmallVec; use smallvec::SmallVec;
use crate::prelude::*; use crate::prelude::*;
use crate::theme;
#[derive(Clone)] #[derive(Clone)]
pub struct ToolbarItem {} pub struct ToolbarItem {}
@ -59,7 +58,7 @@ impl<S: 'static + Send + Sync> Toolbar<S> {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
div() div()
.bg(theme.highest.base.default.background) .bg(color.toolbar)
.p_2() .p_2()
.flex() .flex()
.justify_between() .justify_between()
@ -111,21 +110,21 @@ mod stories {
Symbol(vec![ Symbol(vec![
HighlightedText { HighlightedText {
text: "impl ".to_string(), text: "impl ".to_string(),
color: HighlightColor::Keyword.hsla(&theme), color: color.syntax.keyword,
}, },
HighlightedText { HighlightedText {
text: "ToolbarStory".to_string(), text: "ToolbarStory".to_string(),
color: HighlightColor::Function.hsla(&theme), color: color.syntax.function,
}, },
]), ]),
Symbol(vec![ Symbol(vec![
HighlightedText { HighlightedText {
text: "fn ".to_string(), text: "fn ".to_string(),
color: HighlightColor::Keyword.hsla(&theme), color: color.syntax.keyword,
}, },
HighlightedText { HighlightedText {
text: "render".to_string(), text: "render".to_string(),
color: HighlightColor::Function.hsla(&theme), color: color.syntax.function,
}, },
]), ]),
], ],

View file

@ -1,7 +1,7 @@
use std::marker::PhantomData; use std::marker::PhantomData;
use crate::prelude::*; use crate::prelude::*;
use crate::{theme, SystemColor}; use crate::SystemColor;
#[derive(Clone, Copy)] #[derive(Clone, Copy)]
enum TrafficLightColor { enum TrafficLightColor {
@ -34,7 +34,7 @@ impl<S: 'static + Send + Sync> TrafficLight<S> {
(true, TrafficLightColor::Red) => system_color.mac_os_traffic_light_red, (true, TrafficLightColor::Red) => system_color.mac_os_traffic_light_red,
(true, TrafficLightColor::Yellow) => system_color.mac_os_traffic_light_yellow, (true, TrafficLightColor::Yellow) => system_color.mac_os_traffic_light_yellow,
(true, TrafficLightColor::Green) => system_color.mac_os_traffic_light_green, (true, TrafficLightColor::Green) => system_color.mac_os_traffic_light_green,
(false, _) => theme.lowest.base.active.background, (false, _) => color.filled_element,
}; };
div().w_3().h_3().rounded_full().bg(fill) div().w_3().h_3().rounded_full().bg(fill)

View file

@ -3,7 +3,6 @@ use std::marker::PhantomData;
use gpui3::img; use gpui3::img;
use crate::prelude::*; use crate::prelude::*;
use crate::theme::theme;
#[derive(Element, Clone)] #[derive(Element, Clone)]
pub struct Avatar<S: 'static + Send + Sync> { pub struct Avatar<S: 'static + Send + Sync> {
@ -39,7 +38,7 @@ impl<S: 'static + Send + Sync> Avatar<S> {
img.uri(self.src.clone()) img.uri(self.src.clone())
.size_4() .size_4()
.bg(theme.middle.warning.default.foreground) .bg(color.image_fallback_background)
} }
} }

View file

@ -1,7 +1,6 @@
use std::marker::PhantomData; use std::marker::PhantomData;
use crate::prelude::*; use crate::prelude::*;
use crate::theme;
#[derive(Element, Clone)] #[derive(Element, Clone)]
pub struct Details<S: 'static + Send + Sync + Clone> { pub struct Details<S: 'static + Send + Sync + Clone> {
@ -33,7 +32,7 @@ impl<S: 'static + Send + Sync + Clone> Details<S> {
.p_1() .p_1()
.gap_0p5() .gap_0p5()
.text_xs() .text_xs()
.text_color(theme.lowest.base.default.foreground) .text_color(color.text)
.child(self.text) .child(self.text)
.children(self.meta.map(|m| m)) .children(self.meta.map(|m| m))
} }

View file

@ -1,11 +1,10 @@
use std::marker::PhantomData; use std::marker::PhantomData;
use std::sync::Arc;
use gpui3::{svg, Hsla}; use gpui3::{svg, Hsla};
use strum::EnumIter; use strum::EnumIter;
use crate::prelude::*; use crate::prelude::*;
use crate::theme::{theme, Theme}; use crate::theme::theme;
#[derive(Default, PartialEq, Copy, Clone)] #[derive(Default, PartialEq, Copy, Clone)]
pub enum IconSize { pub enum IconSize {
@ -29,7 +28,8 @@ pub enum IconColor {
} }
impl IconColor { impl IconColor {
pub fn color(self, theme: Arc<Theme>) -> Hsla { pub fn color(self, cx: &WindowContext) -> Hsla {
let theme = theme(cx);
match self { match self {
IconColor::Default => theme.lowest.base.default.foreground, IconColor::Default => theme.lowest.base.default.foreground,
IconColor::Muted => theme.lowest.variant.default.foreground, IconColor::Muted => theme.lowest.variant.default.foreground,
@ -178,7 +178,7 @@ impl<S: 'static + Send + Sync> IconElement<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<ViewState = S> {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
let fill = self.color.color(theme); let fill = self.color.color(cx);
let svg_size = match self.size { let svg_size = match self.size {
IconSize::Small => ui_size(12. / 14.), IconSize::Small => ui_size(12. / 14.),
IconSize::Medium => ui_size(15. / 14.), IconSize::Medium => ui_size(15. / 14.),

View file

@ -1,7 +1,8 @@
use std::marker::PhantomData; use std::marker::PhantomData;
use crate::prelude::*; use crate::prelude::*;
use crate::theme; use crate::Label;
use crate::LabelColor;
#[derive(Default, PartialEq)] #[derive(Default, PartialEq)]
pub enum InputVariant { pub enum InputVariant {
@ -17,6 +18,8 @@ pub struct Input<S: 'static + Send + Sync> {
value: String, value: String,
state: InteractionState, state: InteractionState,
variant: InputVariant, variant: InputVariant,
disabled: bool,
is_active: bool,
} }
impl<S: 'static + Send + Sync> Input<S> { impl<S: 'static + Send + Sync> Input<S> {
@ -27,6 +30,8 @@ impl<S: 'static + Send + Sync> Input<S> {
value: "".to_string(), value: "".to_string(),
state: InteractionState::default(), state: InteractionState::default(),
variant: InputVariant::default(), variant: InputVariant::default(),
disabled: false,
is_active: false,
} }
} }
@ -45,55 +50,54 @@ impl<S: 'static + Send + Sync> Input<S> {
self self
} }
pub fn disabled(mut self, disabled: bool) -> Self {
self.disabled = disabled;
self
}
pub fn is_active(mut self, is_active: bool) -> Self {
self.is_active = is_active;
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<ViewState = S> {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
let system_color = SystemColor::new();
let text_el; let (input_bg, input_hover_bg, input_active_bg) = match self.variant {
let text_color; InputVariant::Ghost => (
let background_color_default; color.ghost_element,
let background_color_active; color.ghost_element_hover,
color.ghost_element_active,
let mut border_color_default = theme.middle.base.default.border; ),
let mut border_color_hover = theme.middle.base.hovered.border; InputVariant::Filled => (
let border_color_focus = theme.middle.base.pressed.background; color.filled_element,
color.filled_element_hover,
match self.variant { color.filled_element_active,
InputVariant::Ghost => { ),
background_color_default = theme.middle.base.default.background;
background_color_active = theme.middle.base.active.background;
}
InputVariant::Filled => {
background_color_default = theme.middle.on.default.background;
background_color_active = theme.middle.on.active.background;
}
}; };
if self.state == InteractionState::Focused { let placeholder_label = Label::new(self.placeholder).color(if self.disabled {
border_color_default = theme.players[0].cursor; LabelColor::Disabled
border_color_hover = theme.players[0].cursor;
}
if self.state == InteractionState::Focused || self.state == InteractionState::Active {
text_el = self.value.clone();
text_color = theme.lowest.base.default.foreground;
} else { } else {
text_el = self.placeholder.to_string().clone(); LabelColor::Placeholder
text_color = theme.lowest.base.disabled.foreground; });
}
let label = Label::new(self.value.clone()).color(if self.disabled {
LabelColor::Disabled
} else {
LabelColor::Default
});
div() div()
.h_7() .h_7()
.w_full() .w_full()
.px_2() .px_2()
.border() .border()
.border_color(border_color_default) .border_color(system_color.transparent)
.bg(background_color_default) .bg(input_bg)
.hover(|style| { .hover(|style| style.bg(input_hover_bg))
style // .active(|style| style.bg(input_active_bg))
.border_color(border_color_hover)
.bg(background_color_active)
})
// .active(|a| .border_color(border_color_active))
.flex() .flex()
.items_center() .items_center()
.child( .child(
@ -101,9 +105,8 @@ impl<S: 'static + Send + Sync> Input<S> {
.flex() .flex()
.items_center() .items_center()
.text_sm() .text_sm()
.text_color(text_color) .when(self.value.is_empty(), |this| this.child(placeholder_label))
.child(text_el) .when(!self.value.is_empty(), |this| this.child(label)),
.child(div().text_color(theme.players[0].cursor).child("|")),
) )
} }
} }

View file

@ -23,16 +23,18 @@ pub enum LabelColor {
impl LabelColor { impl LabelColor {
pub fn hsla(&self, cx: &WindowContext) -> Hsla { pub fn hsla(&self, cx: &WindowContext) -> Hsla {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
// TODO: Remove
let theme = theme(cx);
match self { match self {
Self::Default => theme.middle.base.default.foreground, Self::Default => color.text,
Self::Muted => theme.middle.variant.default.foreground, Self::Muted => color.text_muted,
Self::Created => theme.middle.positive.default.foreground, Self::Created => theme.middle.positive.default.foreground,
Self::Modified => theme.middle.warning.default.foreground, Self::Modified => theme.middle.warning.default.foreground,
Self::Deleted => theme.middle.negative.default.foreground, Self::Deleted => theme.middle.negative.default.foreground,
Self::Disabled => theme.middle.base.disabled.foreground, Self::Disabled => color.text_disabled,
Self::Hidden => theme.middle.variant.default.foreground, Self::Hidden => theme.middle.variant.default.foreground,
Self::Placeholder => theme.middle.base.disabled.foreground, Self::Placeholder => color.text_placeholder,
Self::Accent => theme.middle.accent.default.foreground, Self::Accent => theme.middle.accent.default.foreground,
} }
} }
@ -138,7 +140,7 @@ impl<S: 'static + Send + Sync + Clone> HighlightedLabel<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<ViewState = S> {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
let highlight_color = theme.lowest.accent.default.foreground; let highlight_color = color.text_accent;
let mut highlight_indices = self.highlight_indices.iter().copied().peekable(); let mut highlight_indices = self.highlight_indices.iter().copied().peekable();

View file

@ -1,6 +1,6 @@
use gpui3::{Hsla, ViewContext}; use gpui3::{Hsla, ViewContext};
use crate::theme; use crate::ThemeColor;
#[derive(Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Copy)] #[derive(Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Copy)]
pub enum PlayerStatus { pub enum PlayerStatus {
@ -141,13 +141,13 @@ impl Player {
pub fn cursor_color<S: 'static>(&self, cx: &mut ViewContext<S>) -> Hsla { pub fn cursor_color<S: 'static>(&self, cx: &mut ViewContext<S>) -> Hsla {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
let index = self.index % 8; let index = self.index % 8;
theme.players[self.index].cursor color.player[self.index].cursor
} }
pub fn selection_color<S: 'static>(&self, cx: &mut ViewContext<S>) -> Hsla { pub fn selection_color<S: 'static>(&self, cx: &mut ViewContext<S>) -> Hsla {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
let index = self.index % 8; let index = self.index % 8;
theme.players[self.index].selection color.player[self.index].selection
} }
pub fn avatar_src(&self) -> &str { pub fn avatar_src(&self) -> &str {

View file

@ -1,7 +1,6 @@
use std::marker::PhantomData; use std::marker::PhantomData;
use crate::prelude::*; use crate::prelude::*;
use crate::theme;
#[derive(Element)] #[derive(Element)]
pub struct ToolDivider<S: 'static + Send + Sync> { pub struct ToolDivider<S: 'static + Send + Sync> {
@ -18,6 +17,6 @@ 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<ViewState = S> {
let color = ThemeColor::new(cx); let color = ThemeColor::new(cx);
div().w_px().h_3().bg(theme.lowest.base.default.border) div().w_px().h_3().bg(color.border)
} }
} }

View file

@ -9,6 +9,7 @@ pub use crate::{theme, ButtonVariant, ElementExt, Theme};
use gpui3::{hsla, rems, rgb, Hsla, Rems}; use gpui3::{hsla, rems, rgb, Hsla, Rems};
use strum::EnumIter; use strum::EnumIter;
// TODO Remove uses in favor of ThemeColor
#[derive(Default)] #[derive(Default)]
pub struct SystemColor { pub struct SystemColor {
pub transparent: Hsla, pub transparent: Hsla,
@ -35,6 +36,30 @@ impl SystemColor {
} }
} }
#[derive(Clone, Copy)]
pub struct PlayerThemeColors {
pub cursor: Hsla,
pub selection: Hsla,
}
impl PlayerThemeColors {
pub fn new(cx: &WindowContext, ix: usize) -> Self {
let theme = theme(cx);
if ix < theme.players.len() {
Self {
cursor: theme.players[ix].cursor,
selection: theme.players[ix].selection,
}
} else {
Self {
cursor: rgb::<Hsla>(0xff00ff),
selection: rgb::<Hsla>(0xff00ff),
}
}
}
}
#[derive(Clone, Copy)] #[derive(Clone, Copy)]
pub struct SyntaxColor { pub struct SyntaxColor {
pub comment: Hsla, pub comment: Hsla,
@ -48,16 +73,36 @@ impl SyntaxColor {
let theme = theme(cx); let theme = theme(cx);
Self { Self {
comment: theme.syntax.comment, comment: theme
string: theme.syntax.string, .syntax
function: theme.syntax.function, .get("comment")
keyword: theme.syntax.keyword, .cloned()
.unwrap_or_else(|| rgb::<Hsla>(0xff00ff)),
string: theme
.syntax
.get("string")
.cloned()
.unwrap_or_else(|| rgb::<Hsla>(0xff00ff)),
function: theme
.syntax
.get("function")
.cloned()
.unwrap_or_else(|| rgb::<Hsla>(0xff00ff)),
keyword: theme
.syntax
.get("keyword")
.cloned()
.unwrap_or_else(|| rgb::<Hsla>(0xff00ff)),
} }
} }
} }
#[derive(Clone, Copy)] #[derive(Clone, Copy)]
pub struct ThemeColor { pub struct ThemeColor {
pub transparent: Hsla,
pub mac_os_traffic_light_red: Hsla,
pub mac_os_traffic_light_yellow: Hsla,
pub mac_os_traffic_light_green: Hsla,
pub border: Hsla, pub border: Hsla,
pub border_variant: Hsla, pub border_variant: Hsla,
pub border_focused: Hsla, pub border_focused: Hsla,
@ -96,14 +141,28 @@ pub struct ThemeColor {
pub text_muted: Hsla, pub text_muted: Hsla,
pub text_placeholder: Hsla, pub text_placeholder: Hsla,
pub text_disabled: Hsla, pub text_disabled: Hsla,
pub text_accent: Hsla,
pub icon_muted: Hsla, pub icon_muted: Hsla,
pub syntax: SyntaxColor, pub syntax: SyntaxColor,
pub toolbar_background: Hsla, pub status_bar: Hsla,
pub editor_background: Hsla, pub title_bar: Hsla,
pub toolbar: Hsla,
pub tab_bar: Hsla,
pub editor: Hsla,
pub editor_subheader: Hsla, pub editor_subheader: Hsla,
pub editor_active_line: Hsla, pub editor_active_line: Hsla,
pub terminal: Hsla,
pub image_fallback_background: Hsla, pub image_fallback_background: Hsla,
pub git_created: Hsla,
pub git_modified: Hsla,
pub git_deleted: Hsla,
pub git_conflict: Hsla,
pub git_ignored: Hsla,
pub git_renamed: Hsla,
pub player: [PlayerThemeColors; 8],
} }
impl ThemeColor { impl ThemeColor {
@ -111,7 +170,22 @@ impl ThemeColor {
let theme = theme(cx); let theme = theme(cx);
let system_color = SystemColor::new(); let system_color = SystemColor::new();
let players = [
PlayerThemeColors::new(cx, 0),
PlayerThemeColors::new(cx, 1),
PlayerThemeColors::new(cx, 2),
PlayerThemeColors::new(cx, 3),
PlayerThemeColors::new(cx, 4),
PlayerThemeColors::new(cx, 5),
PlayerThemeColors::new(cx, 6),
PlayerThemeColors::new(cx, 7),
];
Self { Self {
transparent: hsla(0.0, 0.0, 0.0, 0.0),
mac_os_traffic_light_red: rgb::<Hsla>(0xEC695E),
mac_os_traffic_light_yellow: rgb::<Hsla>(0xF4BF4F),
mac_os_traffic_light_green: rgb::<Hsla>(0x62C554),
border: theme.lowest.base.default.border, border: theme.lowest.base.default.border,
border_variant: theme.lowest.variant.default.border, border_variant: theme.lowest.variant.default.border,
border_focused: theme.lowest.accent.default.border, border_focused: theme.lowest.accent.default.border,
@ -134,13 +208,28 @@ impl ThemeColor {
/// TODO: map this to a real value /// TODO: map this to a real value
text_placeholder: theme.lowest.negative.default.foreground, text_placeholder: theme.lowest.negative.default.foreground,
text_disabled: theme.lowest.base.disabled.foreground, text_disabled: theme.lowest.base.disabled.foreground,
text_accent: theme.lowest.accent.default.foreground,
icon_muted: theme.lowest.variant.default.foreground, icon_muted: theme.lowest.variant.default.foreground,
syntax: SyntaxColor::new(cx), syntax: SyntaxColor::new(cx),
toolbar_background: theme.highest.base.default.background,
editor_background: theme.highest.base.default.background, status_bar: theme.lowest.base.default.background,
title_bar: theme.lowest.base.default.background,
toolbar: theme.highest.base.default.background,
tab_bar: theme.middle.base.default.background,
editor: theme.highest.base.default.background,
editor_subheader: theme.middle.base.default.background, editor_subheader: theme.middle.base.default.background,
terminal: theme.highest.base.default.background,
editor_active_line: theme.highest.on.default.background, editor_active_line: theme.highest.on.default.background,
image_fallback_background: theme.lowest.base.default.background, image_fallback_background: theme.lowest.base.default.background,
git_created: theme.lowest.positive.default.foreground,
git_modified: theme.lowest.accent.default.foreground,
git_deleted: theme.lowest.negative.default.foreground,
git_conflict: theme.lowest.warning.default.foreground,
git_ignored: theme.lowest.base.disabled.foreground,
git_renamed: theme.lowest.warning.default.foreground,
player: players,
} }
} }
} }
@ -244,11 +333,11 @@ impl GitStatus {
match self { match self {
Self::None => system_color.transparent, Self::None => system_color.transparent,
Self::Created => theme.lowest.positive.default.foreground, Self::Created => color.git_created,
Self::Modified => theme.lowest.warning.default.foreground, Self::Modified => color.git_modified,
Self::Deleted => theme.lowest.negative.default.foreground, Self::Deleted => color.git_deleted,
Self::Conflict => theme.lowest.warning.default.foreground, Self::Conflict => color.git_conflict,
Self::Renamed => theme.lowest.accent.default.foreground, Self::Renamed => color.git_renamed,
} }
} }
} }

View file

@ -4,12 +4,12 @@ use std::str::FromStr;
use gpui3::WindowContext; use gpui3::WindowContext;
use rand::Rng; use rand::Rng;
use crate::HighlightedText;
use crate::{ use crate::{
theme, Buffer, BufferRow, BufferRows, EditorPane, FileSystemStatus, GitStatus, HighlightColor, Buffer, BufferRow, BufferRows, EditorPane, FileSystemStatus, GitStatus, HighlightedLine, Icon,
HighlightedLine, HighlightedText, Icon, Keybinding, Label, LabelColor, ListEntry, Keybinding, Label, LabelColor, ListEntry, ListEntrySize, ListItem, Livestream, MicStatus,
ListEntrySize, ListItem, Livestream, MicStatus, ModifierKeys, PaletteItem, Player, ModifierKeys, PaletteItem, Player, PlayerCallStatus, PlayerWithCallStatus, ScreenShareStatus,
PlayerCallStatus, PlayerWithCallStatus, ScreenShareStatus, Symbol, Tab, Theme, ToggleState, Symbol, Tab, ThemeColor, ToggleState, VideoStatus,
VideoStatus,
}; };
pub fn static_tabs_example<S: 'static + Send + Sync + Clone>() -> Vec<Tab<S>> { pub fn static_tabs_example<S: 'static + Send + Sync + Clone>() -> Vec<Tab<S>> {
@ -613,7 +613,7 @@ pub fn empty_buffer_example<S: 'static + Send + Sync + Clone>() -> Buffer<S> {
} }
pub fn hello_world_rust_editor_example(cx: &mut WindowContext) -> EditorPane { pub fn hello_world_rust_editor_example(cx: &mut WindowContext) -> EditorPane {
let theme = theme(cx); let color = ThemeColor::new(cx);
EditorPane::new( EditorPane::new(
cx, cx,
@ -622,19 +622,19 @@ pub fn hello_world_rust_editor_example(cx: &mut WindowContext) -> EditorPane {
vec![Symbol(vec![ vec![Symbol(vec![
HighlightedText { HighlightedText {
text: "fn ".to_string(), text: "fn ".to_string(),
color: HighlightColor::Keyword.hsla(&theme), color: color.syntax.keyword,
}, },
HighlightedText { HighlightedText {
text: "main".to_string(), text: "main".to_string(),
color: HighlightColor::Function.hsla(&theme), color: color.syntax.function,
}, },
])], ])],
hello_world_rust_buffer_example(&theme), hello_world_rust_buffer_example(&color),
) )
} }
pub fn hello_world_rust_buffer_example<S: 'static + Send + Sync + Clone>( pub fn hello_world_rust_buffer_example<S: 'static + Send + Sync + Clone>(
theme: &Theme, color: &ThemeColor,
) -> Buffer<S> { ) -> Buffer<S> {
Buffer::new() Buffer::new()
.set_title("hello_world.rs".to_string()) .set_title("hello_world.rs".to_string())
@ -642,11 +642,11 @@ pub fn hello_world_rust_buffer_example<S: 'static + Send + Sync + Clone>(
.set_language("rust".to_string()) .set_language("rust".to_string())
.set_rows(Some(BufferRows { .set_rows(Some(BufferRows {
show_line_numbers: true, show_line_numbers: true,
rows: hello_world_rust_buffer_rows(theme), rows: hello_world_rust_buffer_rows(color),
})) }))
} }
pub fn hello_world_rust_buffer_rows(theme: &Theme) -> Vec<BufferRow> { pub fn hello_world_rust_buffer_rows(color: &ThemeColor) -> Vec<BufferRow> {
let show_line_number = true; let show_line_number = true;
vec![ vec![
@ -658,15 +658,15 @@ pub fn hello_world_rust_buffer_rows(theme: &Theme) -> Vec<BufferRow> {
highlighted_texts: vec![ highlighted_texts: vec![
HighlightedText { HighlightedText {
text: "fn ".to_string(), text: "fn ".to_string(),
color: HighlightColor::Keyword.hsla(&theme), color: color.syntax.keyword,
}, },
HighlightedText { HighlightedText {
text: "main".to_string(), text: "main".to_string(),
color: HighlightColor::Function.hsla(&theme), color: color.syntax.function,
}, },
HighlightedText { HighlightedText {
text: "() {".to_string(), text: "() {".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}, },
], ],
}), }),
@ -682,7 +682,7 @@ pub fn hello_world_rust_buffer_rows(theme: &Theme) -> Vec<BufferRow> {
highlighted_texts: vec![HighlightedText { highlighted_texts: vec![HighlightedText {
text: " // Statements here are executed when the compiled binary is called." text: " // Statements here are executed when the compiled binary is called."
.to_string(), .to_string(),
color: HighlightColor::Comment.hsla(&theme), color: color.syntax.comment,
}], }],
}), }),
cursors: None, cursors: None,
@ -705,7 +705,7 @@ pub fn hello_world_rust_buffer_rows(theme: &Theme) -> Vec<BufferRow> {
line: Some(HighlightedLine { line: Some(HighlightedLine {
highlighted_texts: vec![HighlightedText { highlighted_texts: vec![HighlightedText {
text: " // Print text to the console.".to_string(), text: " // Print text to the console.".to_string(),
color: HighlightColor::Comment.hsla(&theme), color: color.syntax.comment,
}], }],
}), }),
cursors: None, cursors: None,
@ -720,15 +720,15 @@ pub fn hello_world_rust_buffer_rows(theme: &Theme) -> Vec<BufferRow> {
highlighted_texts: vec![ highlighted_texts: vec![
HighlightedText { HighlightedText {
text: " println!(".to_string(), text: " println!(".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}, },
HighlightedText { HighlightedText {
text: "\"Hello, world!\"".to_string(), text: "\"Hello, world!\"".to_string(),
color: HighlightColor::String.hsla(&theme), color: color.syntax.string,
}, },
HighlightedText { HighlightedText {
text: ");".to_string(), text: ");".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}, },
], ],
}), }),
@ -743,7 +743,7 @@ pub fn hello_world_rust_buffer_rows(theme: &Theme) -> Vec<BufferRow> {
line: Some(HighlightedLine { line: Some(HighlightedLine {
highlighted_texts: vec![HighlightedText { highlighted_texts: vec![HighlightedText {
text: "}".to_string(), text: "}".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}], }],
}), }),
cursors: None, cursors: None,
@ -754,7 +754,7 @@ pub fn hello_world_rust_buffer_rows(theme: &Theme) -> Vec<BufferRow> {
} }
pub fn hello_world_rust_editor_with_status_example(cx: &mut WindowContext) -> EditorPane { pub fn hello_world_rust_editor_with_status_example(cx: &mut WindowContext) -> EditorPane {
let theme = theme(cx); let color = ThemeColor::new(cx);
EditorPane::new( EditorPane::new(
cx, cx,
@ -763,19 +763,19 @@ pub fn hello_world_rust_editor_with_status_example(cx: &mut WindowContext) -> Ed
vec![Symbol(vec![ vec![Symbol(vec![
HighlightedText { HighlightedText {
text: "fn ".to_string(), text: "fn ".to_string(),
color: HighlightColor::Keyword.hsla(&theme), color: color.syntax.keyword,
}, },
HighlightedText { HighlightedText {
text: "main".to_string(), text: "main".to_string(),
color: HighlightColor::Function.hsla(&theme), color: color.syntax.function,
}, },
])], ])],
hello_world_rust_buffer_with_status_example(&theme), hello_world_rust_buffer_with_status_example(&color),
) )
} }
pub fn hello_world_rust_buffer_with_status_example<S: 'static + Send + Sync + Clone>( pub fn hello_world_rust_buffer_with_status_example<S: 'static + Send + Sync + Clone>(
theme: &Theme, color: &ThemeColor,
) -> Buffer<S> { ) -> Buffer<S> {
Buffer::new() Buffer::new()
.set_title("hello_world.rs".to_string()) .set_title("hello_world.rs".to_string())
@ -783,11 +783,11 @@ pub fn hello_world_rust_buffer_with_status_example<S: 'static + Send + Sync + Cl
.set_language("rust".to_string()) .set_language("rust".to_string())
.set_rows(Some(BufferRows { .set_rows(Some(BufferRows {
show_line_numbers: true, show_line_numbers: true,
rows: hello_world_rust_with_status_buffer_rows(theme), rows: hello_world_rust_with_status_buffer_rows(color),
})) }))
} }
pub fn hello_world_rust_with_status_buffer_rows(theme: &Theme) -> Vec<BufferRow> { pub fn hello_world_rust_with_status_buffer_rows(color: &ThemeColor) -> Vec<BufferRow> {
let show_line_number = true; let show_line_number = true;
vec![ vec![
@ -799,15 +799,15 @@ pub fn hello_world_rust_with_status_buffer_rows(theme: &Theme) -> Vec<BufferRow>
highlighted_texts: vec![ highlighted_texts: vec![
HighlightedText { HighlightedText {
text: "fn ".to_string(), text: "fn ".to_string(),
color: HighlightColor::Keyword.hsla(&theme), color: color.syntax.keyword,
}, },
HighlightedText { HighlightedText {
text: "main".to_string(), text: "main".to_string(),
color: HighlightColor::Function.hsla(&theme), color: color.syntax.function,
}, },
HighlightedText { HighlightedText {
text: "() {".to_string(), text: "() {".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}, },
], ],
}), }),
@ -823,7 +823,7 @@ pub fn hello_world_rust_with_status_buffer_rows(theme: &Theme) -> Vec<BufferRow>
highlighted_texts: vec![HighlightedText { highlighted_texts: vec![HighlightedText {
text: "// Statements here are executed when the compiled binary is called." text: "// Statements here are executed when the compiled binary is called."
.to_string(), .to_string(),
color: HighlightColor::Comment.hsla(&theme), color: color.syntax.comment,
}], }],
}), }),
cursors: None, cursors: None,
@ -846,7 +846,7 @@ pub fn hello_world_rust_with_status_buffer_rows(theme: &Theme) -> Vec<BufferRow>
line: Some(HighlightedLine { line: Some(HighlightedLine {
highlighted_texts: vec![HighlightedText { highlighted_texts: vec![HighlightedText {
text: " // Print text to the console.".to_string(), text: " // Print text to the console.".to_string(),
color: HighlightColor::Comment.hsla(&theme), color: color.syntax.comment,
}], }],
}), }),
cursors: None, cursors: None,
@ -861,15 +861,15 @@ pub fn hello_world_rust_with_status_buffer_rows(theme: &Theme) -> Vec<BufferRow>
highlighted_texts: vec![ highlighted_texts: vec![
HighlightedText { HighlightedText {
text: " println!(".to_string(), text: " println!(".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}, },
HighlightedText { HighlightedText {
text: "\"Hello, world!\"".to_string(), text: "\"Hello, world!\"".to_string(),
color: HighlightColor::String.hsla(&theme), color: color.syntax.string,
}, },
HighlightedText { HighlightedText {
text: ");".to_string(), text: ");".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}, },
], ],
}), }),
@ -884,7 +884,7 @@ pub fn hello_world_rust_with_status_buffer_rows(theme: &Theme) -> Vec<BufferRow>
line: Some(HighlightedLine { line: Some(HighlightedLine {
highlighted_texts: vec![HighlightedText { highlighted_texts: vec![HighlightedText {
text: "}".to_string(), text: "}".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}], }],
}), }),
cursors: None, cursors: None,
@ -898,7 +898,7 @@ pub fn hello_world_rust_with_status_buffer_rows(theme: &Theme) -> Vec<BufferRow>
line: Some(HighlightedLine { line: Some(HighlightedLine {
highlighted_texts: vec![HighlightedText { highlighted_texts: vec![HighlightedText {
text: "".to_string(), text: "".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}], }],
}), }),
cursors: None, cursors: None,
@ -912,7 +912,7 @@ pub fn hello_world_rust_with_status_buffer_rows(theme: &Theme) -> Vec<BufferRow>
line: Some(HighlightedLine { line: Some(HighlightedLine {
highlighted_texts: vec![HighlightedText { highlighted_texts: vec![HighlightedText {
text: "// Marshall and Nate were here".to_string(), text: "// Marshall and Nate were here".to_string(),
color: HighlightColor::Comment.hsla(&theme), color: color.syntax.comment,
}], }],
}), }),
cursors: None, cursors: None,
@ -922,16 +922,16 @@ pub fn hello_world_rust_with_status_buffer_rows(theme: &Theme) -> Vec<BufferRow>
] ]
} }
pub fn terminal_buffer<S: 'static + Send + Sync + Clone>(theme: &Theme) -> Buffer<S> { pub fn terminal_buffer<S: 'static + Send + Sync + Clone>(color: &ThemeColor) -> Buffer<S> {
Buffer::new() Buffer::new()
.set_title("zed — fish".to_string()) .set_title("zed — fish".to_string())
.set_rows(Some(BufferRows { .set_rows(Some(BufferRows {
show_line_numbers: false, show_line_numbers: false,
rows: terminal_buffer_rows(theme), rows: terminal_buffer_rows(color),
})) }))
} }
pub fn terminal_buffer_rows(theme: &Theme) -> Vec<BufferRow> { pub fn terminal_buffer_rows(color: &ThemeColor) -> Vec<BufferRow> {
let show_line_number = false; let show_line_number = false;
vec![ vec![
@ -943,31 +943,31 @@ pub fn terminal_buffer_rows(theme: &Theme) -> Vec<BufferRow> {
highlighted_texts: vec![ highlighted_texts: vec![
HighlightedText { HighlightedText {
text: "maxdeviant ".to_string(), text: "maxdeviant ".to_string(),
color: HighlightColor::Keyword.hsla(&theme), color: color.syntax.keyword,
}, },
HighlightedText { HighlightedText {
text: "in ".to_string(), text: "in ".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}, },
HighlightedText { HighlightedText {
text: "profaned-capital ".to_string(), text: "profaned-capital ".to_string(),
color: HighlightColor::Function.hsla(&theme), color: color.syntax.function,
}, },
HighlightedText { HighlightedText {
text: "in ".to_string(), text: "in ".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}, },
HighlightedText { HighlightedText {
text: "~/p/zed ".to_string(), text: "~/p/zed ".to_string(),
color: HighlightColor::Function.hsla(&theme), color: color.syntax.function,
}, },
HighlightedText { HighlightedText {
text: "on ".to_string(), text: "on ".to_string(),
color: HighlightColor::Default.hsla(&theme), color: color.text,
}, },
HighlightedText { HighlightedText {
text: " gpui2-ui ".to_string(), text: " gpui2-ui ".to_string(),
color: HighlightColor::Keyword.hsla(&theme), color: color.syntax.keyword,
}, },
], ],
}), }),
@ -982,7 +982,7 @@ pub fn terminal_buffer_rows(theme: &Theme) -> Vec<BufferRow> {
line: Some(HighlightedLine { line: Some(HighlightedLine {
highlighted_texts: vec![HighlightedText { highlighted_texts: vec![HighlightedText {
text: "λ ".to_string(), text: "λ ".to_string(),
color: HighlightColor::String.hsla(&theme), color: color.syntax.string,
}], }],
}), }),
cursors: None, cursors: None,

View file

@ -1,7 +1,6 @@
use gpui3::Div; use gpui3::Div;
use crate::prelude::*; use crate::prelude::*;
use crate::theme;
pub struct Story {} pub struct Story {}
@ -16,7 +15,7 @@ impl Story {
.pt_2() .pt_2()
.px_4() .px_4()
.font("Zed Mono Extended") .font("Zed Mono Extended")
.bg(theme.lowest.base.default.background) .bg(color.background)
} }
pub fn title<S: 'static + Send + Sync>( pub fn title<S: 'static + Send + Sync>(
@ -27,7 +26,7 @@ impl Story {
div() div()
.text_xl() .text_xl()
.text_color(theme.lowest.base.default.foreground) .text_color(color.text)
.child(title.to_owned()) .child(title.to_owned())
} }
@ -47,7 +46,7 @@ impl Story {
.mt_4() .mt_4()
.mb_2() .mb_2()
.text_xs() .text_xs()
.text_color(theme.lowest.base.default.foreground) .text_color(color.text)
.child(label.to_owned()) .child(label.to_owned())
} }
} }