Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
129 changes: 70 additions & 59 deletions crates/settings_ui/src/pages/skills_setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ pub(crate) fn render_skills_setup_page(
v_flex()
.id("skills-page")
.size_full()
.pt_2p5()
.px_8()
.pt_2()
.pb_16()
.map(|this| {
if skills.is_empty() {
Expand All @@ -57,8 +56,10 @@ pub(crate) fn render_skills_setup_page(
SettingsUiFile::Project(_) => "No project skills found.",
_ => "No skills available for this context.",
};

let original_window = settings_window.original_window;
this.items_center().justify_center().child(

this.px_8().items_center().justify_center().child(
v_flex()
.items_center()
.gap_2()
Expand Down Expand Up @@ -95,9 +96,16 @@ pub(crate) fn render_skills_setup_page(
.children(skills.iter().enumerate().flat_map(|(i, skill)| {
let mut elements: Vec<AnyElement> =
vec![render_skill_row(skill, settings_window, cx)];

if i + 1 < skills.len() {
elements.push(Divider::horizontal().into_any_element());
elements.push(
div()
.px_8()
.child(Divider::horizontal().flex_grow_1())
.into_any_element(),
);
}

elements
}))
}
Expand All @@ -115,76 +123,79 @@ fn render_skill_row(

let share_copied = settings_window.last_copied_skill_directory_path.as_deref()
== Some(skill.directory_path.as_path());

let (share_icon, share_icon_color) = if share_copied {
(IconName::Check, Color::Success)
} else {
(IconName::Link, Color::Muted)
};

let group = format!("group-{}", skill.name);

let title = h_flex()
.ml(rems_from_px(-22.))
.gap_1()
.child({
let share_skill_file_path = skill.skill_file_path.clone();
let share_directory_path = skill.directory_path.clone();
IconButton::new(
SharedString::from(format!("share-{}", skill.name)),
share_icon,
)
.tab_index(0_isize)
.shape(ui::IconButtonShape::Square)
.icon_size(IconSize::Small)
.icon_color(share_icon_color)
.tooltip(Tooltip::text("Copy Share Link"))
.visible_on_hover(&group)
.on_click(cx.listener(move |_settings_window, _event, _window, cx| {
let skill_file_path = share_skill_file_path.clone();
let directory_path = share_directory_path.clone();
let app_state = workspace::AppState::global(cx);
let fs = app_state.fs.clone();
cx.spawn(
async move |settings_window, cx| match fs.load(&skill_file_path).await {
Ok(content) => {
let link = encode_skill_share_link(&content);
settings_window
.update(cx, |settings_window, cx| {
cx.write_to_clipboard(ClipboardItem::new_string(link));
settings_window.last_copied_skill_directory_path =
Some(directory_path.clone());
cx.notify();
})
.ok();
}
Err(error) => {
log::error!(
"failed to read skill file {} for sharing: {error:#}",
skill_file_path.display()
);
}
},
)
.detach();
}))
})
.child(Label::new(skill.name.clone()));

h_flex()
.group(group)
.w_full()
.justify_between()
.py_2p5()
.py_3()
.px_8()
.gap_4()
.child(
v_flex()
.gap_0p5()
.min_w_0()
.flex_1()
.child(Label::new(skill.name.clone()))
.child(
Label::new(skill.description.clone())
.size(LabelSize::Small)
.color(Color::Muted),
),
v_flex().gap_0p5().min_w_0().flex_1().child(title).child(
Label::new(skill.description.clone())
.size(LabelSize::Small)
.color(Color::Muted),
),
)
.child(
h_flex()
.gap_2()
.child({
let share_skill_file_path = skill.skill_file_path.clone();
let share_directory_path = skill.directory_path.clone();
IconButton::new(
SharedString::from(format!("share-{}", skill.name)),
share_icon,
)
.tab_index(0_isize)
.icon_size(IconSize::Small)
.icon_color(share_icon_color)
.tooltip(Tooltip::text("Copy Share Link"))
.on_click(cx.listener(
move |_settings_window, _event, _window, cx| {
let skill_file_path = share_skill_file_path.clone();
let directory_path = share_directory_path.clone();
let app_state = workspace::AppState::global(cx);
let fs = app_state.fs.clone();
cx.spawn(async move |settings_window, cx| {
match fs.load(&skill_file_path).await {
Ok(content) => {
let link = encode_skill_share_link(&content);
settings_window
.update(cx, |settings_window, cx| {
cx.write_to_clipboard(ClipboardItem::new_string(
link,
));
settings_window.last_copied_skill_directory_path =
Some(directory_path.clone());
cx.notify();
})
.ok();
}
Err(error) => {
log::error!(
"failed to read skill file {} for sharing: {error:#}",
skill_file_path.display()
);
}
}
})
.detach();
},
))
})
.child(
IconButton::new(
SharedString::from(format!("delete-{}", skill.name)),
Expand Down
36 changes: 26 additions & 10 deletions crates/ui/src/components/divider.rs
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
use gpui::{Hsla, IntoElement, PathBuilder, canvas, point};
use gpui::{Hsla, IntoElement, PathBuilder, Refineable as _, StyleRefinement, canvas, point};

use crate::prelude::*;

pub fn divider() -> Divider {
Divider {
style: DividerStyle::Solid,
line_style: DividerStyle::Solid,
direction: DividerDirection::Horizontal,
color: DividerColor::default(),
style: StyleRefinement::default(),
inset: false,
}
}

pub fn vertical_divider() -> Divider {
Divider {
style: DividerStyle::Solid,
line_style: DividerStyle::Solid,
direction: DividerDirection::Vertical,
color: DividerColor::default(),
style: StyleRefinement::default(),
inset: false,
}
}
Expand Down Expand Up @@ -53,45 +55,50 @@ impl DividerColor {

#[derive(IntoElement, RegisterComponent)]
pub struct Divider {
style: DividerStyle,
line_style: DividerStyle,
direction: DividerDirection,
color: DividerColor,
style: StyleRefinement,
inset: bool,
}

impl Divider {
pub fn horizontal() -> Self {
Self {
style: DividerStyle::Solid,
line_style: DividerStyle::Solid,
direction: DividerDirection::Horizontal,
color: DividerColor::default(),
style: StyleRefinement::default(),
inset: false,
}
}

pub fn vertical() -> Self {
Self {
style: DividerStyle::Solid,
line_style: DividerStyle::Solid,
direction: DividerDirection::Vertical,
color: DividerColor::default(),
style: StyleRefinement::default(),
inset: false,
}
}

pub fn horizontal_dashed() -> Self {
Self {
style: DividerStyle::Dashed,
line_style: DividerStyle::Dashed,
direction: DividerDirection::Horizontal,
color: DividerColor::default(),
style: StyleRefinement::default(),
inset: false,
}
}

pub fn vertical_dashed() -> Self {
Self {
style: DividerStyle::Dashed,
line_style: DividerStyle::Dashed,
direction: DividerDirection::Vertical,
color: DividerColor::default(),
style: StyleRefinement::default(),
inset: false,
}
}
Expand Down Expand Up @@ -141,12 +148,19 @@ impl Divider {
}
}

impl Styled for Divider {
fn style(&mut self) -> &mut StyleRefinement {
&mut self.style
}
}

impl RenderOnce for Divider {
fn render(self, _: &mut Window, cx: &mut App) -> impl IntoElement {
let base = match self.direction {
let mut base = match self.direction {
DividerDirection::Horizontal => div()
.min_w_0()
.h_px()
.max_h_px()
.w_full()
.when(self.inset, |this| this.mx_1p5()),
DividerDirection::Vertical => div()
Expand All @@ -156,7 +170,9 @@ impl RenderOnce for Divider {
.when(self.inset, |this| this.my_1p5()),
};

match self.style {
base.style().refine(&self.style);

match self.line_style {
DividerStyle::Solid => self.render_solid(base, cx).into_any_element(),
DividerStyle::Dashed => self.render_dashed(base).into_any_element(),
}
Expand Down
Loading