Remove additional wrapping elements in the chat panel (#14013)

This PR removes some wrapping elements that were used inside of the chat
panel.

To facilitate this, the `Label` component now has a `weight` method to
change the font weight.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-07-09 15:27:37 -04:00 committed by GitHub
parent df935df5a3
commit c6b9f1920f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 39 additions and 26 deletions

View file

@ -355,11 +355,10 @@ impl ChatPanel {
.child(Icon::new(IconName::ReplyArrowRight).color(Color::Muted)) .child(Icon::new(IconName::ReplyArrowRight).color(Color::Muted))
.child(Avatar::new(user_being_replied_to.avatar_uri.clone()).size(rems(0.7))) .child(Avatar::new(user_being_replied_to.avatar_uri.clone()).size(rems(0.7)))
.child( .child(
div().font_weight(FontWeight::SEMIBOLD).child( Label::new(format!("@{}", user_being_replied_to.github_login))
Label::new(format!("@{}", user_being_replied_to.github_login)) .size(LabelSize::XSmall)
.size(LabelSize::XSmall) .weight(FontWeight::SEMIBOLD)
.color(Color::Muted), .color(Color::Muted),
),
) )
.child( .child(
div().overflow_y_hidden().child( div().overflow_y_hidden().child(
@ -490,22 +489,16 @@ impl ChatPanel {
|this| { |this| {
this.child( this.child(
h_flex() h_flex()
.gap_2()
.text_ui_sm(cx) .text_ui_sm(cx)
.child( .child(
div().absolute().child( Avatar::new(message.sender.avatar_uri.clone())
Avatar::new(message.sender.avatar_uri.clone()) .size(rems(1.)),
.size(rems(1.)),
),
) )
.child( .child(
div() Label::new(message.sender.github_login.clone())
.pl(cx.rem_size() + px(6.0)) .size(LabelSize::Small)
.pr(px(8.0)) .weight(FontWeight::BOLD),
.font_weight(FontWeight::BOLD)
.child(
Label::new(message.sender.github_login.clone())
.size(LabelSize::Small),
),
) )
.child( .child(
Label::new(time_format::format_localized_timestamp( Label::new(time_format::format_localized_timestamp(
@ -1044,13 +1037,12 @@ impl Render for ChatPanel {
.id(("reply-preview", reply_to_message_id)) .id(("reply-preview", reply_to_message_id))
.child(Label::new("Replying to ").size(LabelSize::Small)) .child(Label::new("Replying to ").size(LabelSize::Small))
.child( .child(
div().font_weight(FontWeight::BOLD).child( Label::new(format!(
Label::new(format!( "@{}",
"@{}", user_being_replied_to.github_login.clone()
user_being_replied_to.github_login.clone() ))
)) .size(LabelSize::Small)
.size(LabelSize::Small), .weight(FontWeight::BOLD),
),
) )
.when_some(channel_id, |this, channel_id| { .when_some(channel_id, |this, channel_id| {
this.cursor_pointer().on_click(cx.listener( this.cursor_pointer().on_click(cx.listener(

View file

@ -1,6 +1,6 @@
use std::ops::Range; use std::ops::Range;
use gpui::{HighlightStyle, StyledText}; use gpui::{FontWeight, HighlightStyle, StyledText};
use crate::{prelude::*, LabelCommon, LabelLike, LabelSize, LineHeightStyle}; use crate::{prelude::*, LabelCommon, LabelLike, LabelSize, LineHeightStyle};
@ -29,6 +29,11 @@ impl LabelCommon for HighlightedLabel {
self self
} }
fn weight(mut self, weight: FontWeight) -> Self {
self.base = self.base.weight(weight);
self
}
fn line_height_style(mut self, line_height_style: LineHeightStyle) -> Self { fn line_height_style(mut self, line_height_style: LineHeightStyle) -> Self {
self.base = self.base.line_height_style(line_height_style); self.base = self.base.line_height_style(line_height_style);
self self

View file

@ -85,6 +85,11 @@ impl LabelCommon for Label {
self self
} }
fn weight(mut self, weight: gpui::FontWeight) -> Self {
self.base = self.base.weight(weight);
self
}
/// Sets the line height style of the label using a [`LineHeightStyle`]. /// Sets the line height style of the label using a [`LineHeightStyle`].
/// ///
/// # Examples /// # Examples

View file

@ -1,4 +1,4 @@
use gpui::{relative, AnyElement, Styled}; use gpui::{relative, AnyElement, FontWeight, Styled};
use smallvec::SmallVec; use smallvec::SmallVec;
use crate::prelude::*; use crate::prelude::*;
@ -25,6 +25,9 @@ pub trait LabelCommon {
/// Sets the size of the label using a [`LabelSize`]. /// Sets the size of the label using a [`LabelSize`].
fn size(self, size: LabelSize) -> Self; fn size(self, size: LabelSize) -> Self;
/// Sets the font weight of the label.
fn weight(self, weight: FontWeight) -> Self;
/// Sets the line height style of the label using a [`LineHeightStyle`]. /// Sets the line height style of the label using a [`LineHeightStyle`].
fn line_height_style(self, line_height_style: LineHeightStyle) -> Self; fn line_height_style(self, line_height_style: LineHeightStyle) -> Self;
@ -41,6 +44,7 @@ pub trait LabelCommon {
#[derive(IntoElement)] #[derive(IntoElement)]
pub struct LabelLike { pub struct LabelLike {
size: LabelSize, size: LabelSize,
weight: FontWeight,
line_height_style: LineHeightStyle, line_height_style: LineHeightStyle,
pub(crate) color: Color, pub(crate) color: Color,
strikethrough: bool, strikethrough: bool,
@ -52,6 +56,7 @@ impl LabelLike {
pub fn new() -> Self { pub fn new() -> Self {
Self { Self {
size: LabelSize::Default, size: LabelSize::Default,
weight: FontWeight::default(),
line_height_style: LineHeightStyle::default(), line_height_style: LineHeightStyle::default(),
color: Color::Default, color: Color::Default,
strikethrough: false, strikethrough: false,
@ -67,6 +72,11 @@ impl LabelCommon for LabelLike {
self self
} }
fn weight(mut self, weight: FontWeight) -> Self {
self.weight = weight;
self
}
fn line_height_style(mut self, line_height_style: LineHeightStyle) -> Self { fn line_height_style(mut self, line_height_style: LineHeightStyle) -> Self {
self.line_height_style = line_height_style; self.line_height_style = line_height_style;
self self
@ -118,6 +128,7 @@ impl RenderOnce for LabelLike {
}) })
.when(self.italic, |this| this.italic()) .when(self.italic, |this| this.italic())
.text_color(self.color.color(cx)) .text_color(self.color.color(cx))
.font_weight(self.weight)
.children(self.children) .children(self.children)
} }
} }