feat: out-of-box experience #2
Generated
+1
@@ -10955,6 +10955,7 @@ dependencies = [
|
|||||||
"futures",
|
"futures",
|
||||||
"gix",
|
"gix",
|
||||||
"gpui",
|
"gpui",
|
||||||
|
"gpui-base",
|
||||||
"gpui-component",
|
"gpui-component",
|
||||||
"log",
|
"log",
|
||||||
"nostr",
|
"nostr",
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">
|
||||||
|
<path d="M16.2426 12.0005H7.75736M12 16.2431V7.75781M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 352 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">
|
||||||
|
<path d="M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75C17.1086 2.75 21.25 6.89137 21.25 12Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3 4"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 356 B |
@@ -71,10 +71,12 @@ impl Assets {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub enum CustomIconName {
|
pub enum CustomIconName {
|
||||||
|
CirclePlus,
|
||||||
Unlock,
|
Unlock,
|
||||||
Filter,
|
Filter,
|
||||||
GlobalOn,
|
GlobalOn,
|
||||||
GlobalOff,
|
GlobalOff,
|
||||||
|
GitIssueDone,
|
||||||
GitIssueOpen,
|
GitIssueOpen,
|
||||||
GitIssueClosed,
|
GitIssueClosed,
|
||||||
GitIssueOngoing,
|
GitIssueOngoing,
|
||||||
@@ -90,10 +92,12 @@ pub enum CustomIconName {
|
|||||||
impl IconNamed for CustomIconName {
|
impl IconNamed for CustomIconName {
|
||||||
fn path(self) -> gpui::SharedString {
|
fn path(self) -> gpui::SharedString {
|
||||||
match self {
|
match self {
|
||||||
|
CustomIconName::CirclePlus => "icons/circle-plus.svg",
|
||||||
CustomIconName::Unlock => "icons/unlock.svg",
|
CustomIconName::Unlock => "icons/unlock.svg",
|
||||||
CustomIconName::Filter => "icons/filter.svg",
|
CustomIconName::Filter => "icons/filter.svg",
|
||||||
CustomIconName::GlobalOn => "icons/global-on.svg",
|
CustomIconName::GlobalOn => "icons/global-on.svg",
|
||||||
CustomIconName::GlobalOff => "icons/global-off.svg",
|
CustomIconName::GlobalOff => "icons/global-off.svg",
|
||||||
|
CustomIconName::GitIssueDone => "icons/git-issue-done.svg",
|
||||||
CustomIconName::GitIssueOpen => "icons/git-issue-open.svg",
|
CustomIconName::GitIssueOpen => "icons/git-issue-open.svg",
|
||||||
CustomIconName::GitIssueClosed => "icons/git-issue-close.svg",
|
CustomIconName::GitIssueClosed => "icons/git-issue-close.svg",
|
||||||
CustomIconName::GitIssueOngoing => "icons/git-issue-ongoing.svg",
|
CustomIconName::GitIssueOngoing => "icons/git-issue-ongoing.svg",
|
||||||
|
|||||||
@@ -949,7 +949,9 @@ impl DockArea {
|
|||||||
.map(|view| view.entity_id());
|
.map(|view| view.entity_id());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventEmitter<DockEvent> for DockArea {}
|
impl EventEmitter<DockEvent> for DockArea {}
|
||||||
|
|
||||||
impl Render for DockArea {
|
impl Render for DockArea {
|
||||||
fn render(&mut self, window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
|
fn render(&mut self, window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
|
||||||
let view = cx.entity().clone();
|
let view = cx.entity().clone();
|
||||||
|
|||||||
@@ -147,11 +147,6 @@ pub trait Panel: EventEmitter<PanelEvent> + Render + Focusable {
|
|||||||
fn dump(&self, cx: &App) -> PanelState {
|
fn dump(&self, cx: &App) -> PanelState {
|
||||||
PanelState::new(self)
|
PanelState::new(self)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Whether the panel has inner padding when the panel is in the tabs layout, default is `true`.
|
|
||||||
fn inner_padding(&self, cx: &App) -> bool {
|
|
||||||
true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The PanelView trait used to define the panel view.
|
/// The PanelView trait used to define the panel view.
|
||||||
@@ -174,7 +169,6 @@ pub trait PanelView: 'static + Send + Sync {
|
|||||||
fn view(&self) -> AnyView;
|
fn view(&self) -> AnyView;
|
||||||
fn focus_handle(&self, cx: &App) -> FocusHandle;
|
fn focus_handle(&self, cx: &App) -> FocusHandle;
|
||||||
fn dump(&self, cx: &App) -> PanelState;
|
fn dump(&self, cx: &App) -> PanelState;
|
||||||
fn inner_padding(&self, cx: &App) -> bool;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: Panel> PanelView for Entity<T> {
|
impl<T: Panel> PanelView for Entity<T> {
|
||||||
@@ -252,10 +246,6 @@ impl<T: Panel> PanelView for Entity<T> {
|
|||||||
fn dump(&self, cx: &App) -> PanelState {
|
fn dump(&self, cx: &App) -> PanelState {
|
||||||
self.read(cx).dump(cx)
|
self.read(cx).dump(cx)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn inner_padding(&self, cx: &App) -> bool {
|
|
||||||
self.read(cx).inner_padding(cx)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<&dyn PanelView> for AnyView {
|
impl From<&dyn PanelView> for AnyView {
|
||||||
|
|||||||
@@ -230,11 +230,6 @@ impl Panel for TabPanel {
|
|||||||
}
|
}
|
||||||
state
|
state
|
||||||
}
|
}
|
||||||
|
|
||||||
fn inner_padding(&self, cx: &App) -> bool {
|
|
||||||
self.active_panel(cx)
|
|
||||||
.is_none_or(|panel| panel.inner_padding(cx))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// State used to move the window when the title bar area is dragged.
|
/// State used to move the window when the title bar area is dragged.
|
||||||
@@ -965,8 +960,6 @@ impl TabPanel {
|
|||||||
return Empty {}.into_any_element();
|
return Empty {}.into_any_element();
|
||||||
};
|
};
|
||||||
|
|
||||||
let has_inner_padding = self.inner_padding(cx);
|
|
||||||
|
|
||||||
let placeholder = self.drop_placeholder_animation;
|
let placeholder = self.drop_placeholder_animation;
|
||||||
let placeholder_animation_name = self.drop_placeholder_animation_name.clone();
|
let placeholder_animation_name = self.drop_placeholder_animation_name.clone();
|
||||||
|
|
||||||
@@ -974,7 +967,6 @@ impl TabPanel {
|
|||||||
.id("active-panel")
|
.id("active-panel")
|
||||||
.group("")
|
.group("")
|
||||||
.flex_1()
|
.flex_1()
|
||||||
.when(has_inner_padding, |this| this.pt_2())
|
|
||||||
.child(
|
.child(
|
||||||
div()
|
div()
|
||||||
.id("tab-content")
|
.id("tab-content")
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ utils = { path = "../utils" }
|
|||||||
|
|
||||||
gpui.workspace = true
|
gpui.workspace = true
|
||||||
gpui-component.workspace = true
|
gpui-component.workspace = true
|
||||||
|
gpui-base.workspace = true
|
||||||
gix.workspace = true
|
gix.workspace = true
|
||||||
nostr.workspace = true
|
nostr.workspace = true
|
||||||
|
|
||||||
|
|||||||
@@ -9,8 +9,9 @@ use dock::{Panel, PanelEvent};
|
|||||||
use gpui::prelude::*;
|
use gpui::prelude::*;
|
||||||
use gpui::{
|
use gpui::{
|
||||||
AnyElement, App, Context, Entity, EventEmitter, FocusHandle, Focusable, Pixels, Render,
|
AnyElement, App, Context, Entity, EventEmitter, FocusHandle, Focusable, Pixels, Render,
|
||||||
SharedString, Size, Window, div, px, size,
|
SharedString, Size, Window, div, px, relative, size,
|
||||||
};
|
};
|
||||||
|
use gpui_base::Button as BaseButton;
|
||||||
use gpui_component::avatar::Avatar;
|
use gpui_component::avatar::Avatar;
|
||||||
use gpui_component::button::{Button, ButtonVariants};
|
use gpui_component::button::{Button, ButtonVariants};
|
||||||
use gpui_component::dialog::{DialogDescription, DialogFooter, DialogHeader, DialogTitle};
|
use gpui_component::dialog::{DialogDescription, DialogFooter, DialogHeader, DialogTitle};
|
||||||
@@ -19,8 +20,7 @@ use gpui_component::input::{Input, InputState, Textarea, TextareaState};
|
|||||||
use gpui_component::scroll::Scrollbar;
|
use gpui_component::scroll::Scrollbar;
|
||||||
use gpui_component::tooltip::Tooltip;
|
use gpui_component::tooltip::Tooltip;
|
||||||
use gpui_component::{
|
use gpui_component::{
|
||||||
ActiveTheme, Icon, IconName, Selectable, Sizable, StyledExt, VirtualListScrollHandle,
|
ActiveTheme, Icon, Sizable, VirtualListScrollHandle, WindowExt, h_flex, v_flex, v_virtual_list,
|
||||||
WindowExt, h_flex, v_flex, v_virtual_list,
|
|
||||||
};
|
};
|
||||||
use nostr::prelude::Event;
|
use nostr::prelude::Event;
|
||||||
use signed_core::{RepoStatus, activity_subject};
|
use signed_core::{RepoStatus, activity_subject};
|
||||||
@@ -29,11 +29,11 @@ use utils::relative_time;
|
|||||||
|
|
||||||
use super::helpers::placeholder;
|
use super::helpers::placeholder;
|
||||||
|
|
||||||
/// Height of one issue row in the virtual list: 12px padding on top and
|
/// Height of one issue row in the virtual list: 8px vertical padding
|
||||||
/// bottom, a 14px title line and a 24px meta line (the small avatar is the
|
/// (`py_2`) on top and bottom, a 32px title line (`h_8`) and a 24px meta
|
||||||
/// tallest item). Gpui's default line height is phi (~1.62x), so the title
|
/// line (`h_6`), plus the 1px bottom border; the row totals 73px. The
|
||||||
/// line is ~22.7px; the row totals ~71px.
|
/// status chip (`size_7`, 28px) is shorter than the content.
|
||||||
const ISSUE_ROW_HEIGHT: f32 = 71.;
|
const ISSUE_ROW_HEIGHT: f32 = 73.;
|
||||||
|
|
||||||
/// Status filter of the issues list, chosen via the header's filter buttons.
|
/// Status filter of the issues list, chosen via the header's filter buttons.
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
@@ -42,7 +42,8 @@ enum IssueFilter {
|
|||||||
All,
|
All,
|
||||||
/// Issues whose resolved status is [`RepoStatus::Open`].
|
/// Issues whose resolved status is [`RepoStatus::Open`].
|
||||||
Open,
|
Open,
|
||||||
/// Issues whose resolved status is [`RepoStatus::Closed`].
|
/// Issues whose resolved status is [`RepoStatus::Closed`] or
|
||||||
|
/// [`RepoStatus::Applied`] (both are "done" states).
|
||||||
Closed,
|
Closed,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -52,7 +53,10 @@ impl IssueFilter {
|
|||||||
match self {
|
match self {
|
||||||
Self::All => true,
|
Self::All => true,
|
||||||
Self::Open => store.status_of(issue) == RepoStatus::Open,
|
Self::Open => store.status_of(issue) == RepoStatus::Open,
|
||||||
Self::Closed => store.status_of(issue) == RepoStatus::Closed,
|
Self::Closed => matches!(
|
||||||
|
store.status_of(issue),
|
||||||
|
RepoStatus::Closed | RepoStatus::Applied
|
||||||
|
),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -111,10 +115,10 @@ impl IssuesView {
|
|||||||
|
|
||||||
h_flex()
|
h_flex()
|
||||||
.id(ix)
|
.id(ix)
|
||||||
.h(px(ISSUE_ROW_HEIGHT))
|
|
||||||
.w_full()
|
.w_full()
|
||||||
.gap_4()
|
.gap_4()
|
||||||
.p_3()
|
.px_4()
|
||||||
|
.py_2()
|
||||||
.border_b_1()
|
.border_b_1()
|
||||||
.border_color(cx.theme().border)
|
.border_color(cx.theme().border)
|
||||||
.items_start()
|
.items_start()
|
||||||
@@ -124,6 +128,7 @@ impl IssuesView {
|
|||||||
.flex_1()
|
.flex_1()
|
||||||
.child(
|
.child(
|
||||||
div()
|
div()
|
||||||
|
.h_8()
|
||||||
.min_w_0()
|
.min_w_0()
|
||||||
.text_ellipsis()
|
.text_ellipsis()
|
||||||
.whitespace_nowrap()
|
.whitespace_nowrap()
|
||||||
@@ -133,6 +138,7 @@ impl IssuesView {
|
|||||||
)
|
)
|
||||||
.child(
|
.child(
|
||||||
h_flex()
|
h_flex()
|
||||||
|
.h_6()
|
||||||
.gap_2()
|
.gap_2()
|
||||||
.text_xs()
|
.text_xs()
|
||||||
.child(
|
.child(
|
||||||
@@ -152,9 +158,10 @@ impl IssuesView {
|
|||||||
.text_color(cx.theme().muted_foreground)
|
.text_color(cx.theme().muted_foreground)
|
||||||
.child(SharedString::from(&id_hex[..8])),
|
.child(SharedString::from(&id_hex[..8])),
|
||||||
)
|
)
|
||||||
.child(div().child(age)),
|
.child(SharedString::from(age)),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
.hover(|this| this.bg(cx.theme().list_hover))
|
||||||
.into_any_element()
|
.into_any_element()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -171,8 +178,8 @@ impl IssuesView {
|
|||||||
CustomIconName::GitIssueClosed,
|
CustomIconName::GitIssueClosed,
|
||||||
"closed",
|
"closed",
|
||||||
"Issue is closed",
|
"Issue is closed",
|
||||||
cx.theme().warning,
|
cx.theme().danger,
|
||||||
cx.theme().warning_foreground,
|
cx.theme().danger_foreground,
|
||||||
),
|
),
|
||||||
RepoStatus::Draft => (
|
RepoStatus::Draft => (
|
||||||
CustomIconName::GitIssueOngoing,
|
CustomIconName::GitIssueOngoing,
|
||||||
@@ -193,76 +200,163 @@ impl IssuesView {
|
|||||||
v_flex()
|
v_flex()
|
||||||
.id(label)
|
.id(label)
|
||||||
.flex_shrink_0()
|
.flex_shrink_0()
|
||||||
.size_6()
|
.size_7()
|
||||||
.items_center()
|
.items_center()
|
||||||
.justify_center()
|
.justify_center()
|
||||||
.rounded(cx.theme().radius)
|
.rounded(cx.theme().radius)
|
||||||
.bg(bg)
|
.bg(bg)
|
||||||
.child(Icon::new(icon).xsmall().text_color(fg))
|
.child(Icon::new(icon).small().text_color(fg))
|
||||||
.tooltip(move |window, cx| Tooltip::new(tooltip).build(window, cx))
|
.tooltip(move |window, cx| Tooltip::new(tooltip).build(window, cx))
|
||||||
.into_any_element()
|
.into_any_element()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn render_header(&self, cx: &mut Context<Self>) -> AnyElement {
|
fn render_header(&self, cx: &mut Context<Self>) -> AnyElement {
|
||||||
|
let store = self.store.read(cx);
|
||||||
|
let (total, open, closed) =
|
||||||
|
store
|
||||||
|
.issues
|
||||||
|
.iter()
|
||||||
|
.fold(
|
||||||
|
(0usize, 0usize, 0usize),
|
||||||
|
|(total, open, closed), issue| match store.status_of(issue) {
|
||||||
|
RepoStatus::Open => (total + 1, open + 1, closed),
|
||||||
|
RepoStatus::Closed => (total + 1, open, closed + 1),
|
||||||
|
RepoStatus::Draft | RepoStatus::Applied => (total + 1, open, closed),
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
h_flex()
|
h_flex()
|
||||||
|
.px_4()
|
||||||
.w_full()
|
.w_full()
|
||||||
.items_center()
|
|
||||||
.gap_3()
|
.gap_3()
|
||||||
.px_3()
|
|
||||||
.pb_2()
|
|
||||||
.border_b_1()
|
.border_b_1()
|
||||||
.border_color(cx.theme().border)
|
.border_color(cx.theme().border)
|
||||||
.child(
|
|
||||||
div()
|
|
||||||
.text_sm()
|
|
||||||
.text_color(cx.theme().muted_foreground)
|
|
||||||
.font_semibold()
|
|
||||||
.child("Issues"),
|
|
||||||
)
|
|
||||||
.child(
|
.child(
|
||||||
h_flex()
|
h_flex()
|
||||||
.gap_1()
|
.h_12()
|
||||||
|
.gap_2()
|
||||||
.child(
|
.child(
|
||||||
Button::new("all")
|
BaseButton::new("all")
|
||||||
.icon(CustomIconName::GitIssueOpen)
|
.flex()
|
||||||
.label("All")
|
.items_center()
|
||||||
.ghost()
|
.h_7()
|
||||||
|
.px_2()
|
||||||
|
.gap_1()
|
||||||
|
.child(Icon::new(CustomIconName::GitIssueDone))
|
||||||
|
.child(div().text_sm().child("All"))
|
||||||
|
.child(
|
||||||
|
h_flex()
|
||||||
|
.justify_center()
|
||||||
|
.ml_2()
|
||||||
|
.px_1()
|
||||||
|
.py_0p5()
|
||||||
|
.min_w_4()
|
||||||
|
.text_size(px(8.))
|
||||||
|
.bg(cx.theme().muted)
|
||||||
|
.text_color(cx.theme().muted_foreground)
|
||||||
|
.rounded(cx.theme().radius)
|
||||||
|
.line_height(relative(1.))
|
||||||
|
.child(SharedString::from(total.to_string())),
|
||||||
|
)
|
||||||
|
.text_color(cx.theme().button_foreground)
|
||||||
|
.rounded(cx.theme().radius)
|
||||||
|
.hover(|this| this.bg(cx.theme().button_hover))
|
||||||
|
.active(|this| this.bg(cx.theme().button_active))
|
||||||
.selected(self.filter == IssueFilter::All)
|
.selected(self.filter == IssueFilter::All)
|
||||||
|
.when(self.filter == IssueFilter::All, |this| {
|
||||||
|
this.bg(cx.theme().button_active)
|
||||||
|
})
|
||||||
.on_click(cx.listener(|this, _event, _window, cx| {
|
.on_click(cx.listener(|this, _event, _window, cx| {
|
||||||
this.filter = IssueFilter::All;
|
this.filter = IssueFilter::All;
|
||||||
cx.notify();
|
cx.notify();
|
||||||
})),
|
})),
|
||||||
)
|
)
|
||||||
.child(
|
.child(
|
||||||
Button::new("open")
|
BaseButton::new("open")
|
||||||
.icon(CustomIconName::GitIssueOpen)
|
.flex()
|
||||||
.label("Open")
|
.items_center()
|
||||||
.ghost()
|
.h_7()
|
||||||
|
.px_2()
|
||||||
|
.gap_1()
|
||||||
|
.child(Icon::new(CustomIconName::GitIssueOpen))
|
||||||
|
.child(div().text_sm().child("Open"))
|
||||||
|
.child(
|
||||||
|
h_flex()
|
||||||
|
.justify_center()
|
||||||
|
.ml_2()
|
||||||
|
.px_1()
|
||||||
|
.py_0p5()
|
||||||
|
.min_w_4()
|
||||||
|
.text_size(px(8.))
|
||||||
|
.bg(cx.theme().muted)
|
||||||
|
.text_color(cx.theme().muted_foreground)
|
||||||
|
.rounded(cx.theme().radius)
|
||||||
|
.line_height(relative(1.))
|
||||||
|
.child(SharedString::from(open.to_string())),
|
||||||
|
)
|
||||||
|
.text_color(cx.theme().button_foreground)
|
||||||
|
.rounded(cx.theme().radius)
|
||||||
|
.hover(|this| this.bg(cx.theme().button_hover))
|
||||||
.selected(self.filter == IssueFilter::Open)
|
.selected(self.filter == IssueFilter::Open)
|
||||||
|
.when(self.filter == IssueFilter::Open, |this| {
|
||||||
|
this.bg(cx.theme().button_active)
|
||||||
|
})
|
||||||
.on_click(cx.listener(|this, _event, _window, cx| {
|
.on_click(cx.listener(|this, _event, _window, cx| {
|
||||||
this.filter = IssueFilter::Open;
|
this.filter = IssueFilter::Open;
|
||||||
cx.notify();
|
cx.notify();
|
||||||
})),
|
})),
|
||||||
)
|
)
|
||||||
.child(
|
.child(
|
||||||
Button::new("closed")
|
BaseButton::new("closed")
|
||||||
.icon(CustomIconName::GitIssueClosed)
|
.flex()
|
||||||
.label("Closed")
|
.items_center()
|
||||||
.ghost()
|
.h_7()
|
||||||
|
.px_2()
|
||||||
|
.gap_1()
|
||||||
|
.child(Icon::new(CustomIconName::GitIssueClosed))
|
||||||
|
.child(div().text_sm().child("Closed"))
|
||||||
|
.child(
|
||||||
|
h_flex()
|
||||||
|
.justify_center()
|
||||||
|
.ml_2()
|
||||||
|
.px_1()
|
||||||
|
.py_0p5()
|
||||||
|
.min_w_4()
|
||||||
|
.text_size(px(8.))
|
||||||
|
.bg(cx.theme().muted)
|
||||||
|
.text_color(cx.theme().muted_foreground)
|
||||||
|
.rounded(cx.theme().radius)
|
||||||
|
.line_height(relative(1.))
|
||||||
|
.child(SharedString::from(closed.to_string())),
|
||||||
|
)
|
||||||
|
.text_color(cx.theme().button_foreground)
|
||||||
|
.rounded(cx.theme().radius)
|
||||||
|
.hover(|this| this.bg(cx.theme().button_hover))
|
||||||
.selected(self.filter == IssueFilter::Closed)
|
.selected(self.filter == IssueFilter::Closed)
|
||||||
|
.when(self.filter == IssueFilter::Closed, |this| {
|
||||||
|
this.bg(cx.theme().button_active)
|
||||||
|
})
|
||||||
.on_click(cx.listener(|this, _event, _window, cx| {
|
.on_click(cx.listener(|this, _event, _window, cx| {
|
||||||
this.filter = IssueFilter::Closed;
|
this.filter = IssueFilter::Closed;
|
||||||
cx.notify();
|
cx.notify();
|
||||||
})),
|
})),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
// Spacer: pushes the button to the right edge.
|
|
||||||
.child(div().flex_1())
|
.child(div().flex_1())
|
||||||
.child(
|
.child(
|
||||||
Button::new("new-issue")
|
BaseButton::new("new")
|
||||||
.icon(IconName::Plus)
|
.flex()
|
||||||
.label("New issue")
|
.items_center()
|
||||||
.primary()
|
.h_7()
|
||||||
|
.px_2()
|
||||||
|
.gap_1()
|
||||||
|
.child(Icon::new(CustomIconName::CirclePlus))
|
||||||
|
.child(div().text_sm().child("New issue"))
|
||||||
|
.text_color(cx.theme().button_primary_foreground)
|
||||||
|
.rounded(cx.theme().radius)
|
||||||
|
.bg(cx.theme().button_primary)
|
||||||
|
.hover(|this| this.bg(cx.theme().button_primary_hover))
|
||||||
|
.active(|this| this.bg(cx.theme().button_primary_active))
|
||||||
.on_click(cx.listener(|this, _event, window, cx| {
|
.on_click(cx.listener(|this, _event, window, cx| {
|
||||||
open_new_issue_dialog(this.store.clone(), window, cx);
|
open_new_issue_dialog(this.store.clone(), window, cx);
|
||||||
})),
|
})),
|
||||||
@@ -283,8 +377,8 @@ fn open_new_issue_dialog(store: Entity<RepoStore>, window: &mut Window, cx: &mut
|
|||||||
let store = store.clone();
|
let store = store.clone();
|
||||||
|
|
||||||
dialog
|
dialog
|
||||||
.width(px(520.))
|
.keyboard(true)
|
||||||
.margin_top(px(50.))
|
.close_button(true)
|
||||||
.content(move |body, _window, _cx| {
|
.content(move |body, _window, _cx| {
|
||||||
body.child(
|
body.child(
|
||||||
DialogHeader::new()
|
DialogHeader::new()
|
||||||
@@ -383,7 +477,6 @@ impl Render for IssuesView {
|
|||||||
|
|
||||||
let sizes = self.item_sizes.clone();
|
let sizes = self.item_sizes.clone();
|
||||||
let scroll_handle = self.scroll_handle.clone();
|
let scroll_handle = self.scroll_handle.clone();
|
||||||
let view = cx.entity().clone();
|
|
||||||
|
|
||||||
v_flex()
|
v_flex()
|
||||||
.size_full()
|
.size_full()
|
||||||
@@ -396,15 +489,20 @@ impl Render for IssuesView {
|
|||||||
.w_full()
|
.w_full()
|
||||||
.when(count > 0, |this| {
|
.when(count > 0, |this| {
|
||||||
this.child(
|
this.child(
|
||||||
v_virtual_list(view, "il", sizes, move |this, range, _window, cx| {
|
v_virtual_list(
|
||||||
let issues = &this.store.read(cx).issues;
|
cx.entity().clone(),
|
||||||
range
|
"issues",
|
||||||
.map(|ix| {
|
sizes,
|
||||||
let issue_ix = this.visible_issues[ix];
|
move |this, range, _window, cx| {
|
||||||
this.render_row(issue_ix, &issues[issue_ix], cx)
|
let issues = &this.store.read(cx).issues;
|
||||||
})
|
range
|
||||||
.collect()
|
.map(|ix| {
|
||||||
})
|
let issue = this.visible_issues[ix];
|
||||||
|
this.render_row(issue, &issues[issue], cx)
|
||||||
|
})
|
||||||
|
.collect()
|
||||||
|
},
|
||||||
|
)
|
||||||
.track_scroll(&scroll_handle)
|
.track_scroll(&scroll_handle)
|
||||||
.size_full(),
|
.size_full(),
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -18,11 +18,11 @@ use gpui_component::combobox::{
|
|||||||
Caret, Combobox, ComboboxEvent, ComboboxState, ComboboxTriggerContext,
|
Caret, Combobox, ComboboxEvent, ComboboxState, ComboboxTriggerContext,
|
||||||
};
|
};
|
||||||
use gpui_component::searchable_list::SearchableVec;
|
use gpui_component::searchable_list::SearchableVec;
|
||||||
use gpui_component::tab::{Tab, TabBar};
|
|
||||||
use gpui_component::tag::Tag;
|
use gpui_component::tag::Tag;
|
||||||
use gpui_component::tree::TreeState;
|
use gpui_component::tree::TreeState;
|
||||||
use gpui_component::{
|
use gpui_component::{
|
||||||
ActiveTheme, Icon, IconName, Sizable, StyledExt, VirtualListScrollHandle, h_flex, v_flex,
|
ActiveTheme, Icon, IconName, Selectable, Sizable, StyledExt, VirtualListScrollHandle, h_flex,
|
||||||
|
v_flex,
|
||||||
};
|
};
|
||||||
use signed_core::Announcement;
|
use signed_core::Announcement;
|
||||||
use signed_git::{CommitList, FileCommit};
|
use signed_git::{CommitList, FileCommit};
|
||||||
@@ -960,7 +960,7 @@ impl RepoDetailView {
|
|||||||
.child(
|
.child(
|
||||||
div()
|
div()
|
||||||
.min_w_0()
|
.min_w_0()
|
||||||
.text_xs()
|
.text_sm()
|
||||||
.text_color(cx.theme().muted_foreground)
|
.text_color(cx.theme().muted_foreground)
|
||||||
.line_clamp(2)
|
.line_clamp(2)
|
||||||
.text_ellipsis()
|
.text_ellipsis()
|
||||||
@@ -1034,24 +1034,31 @@ impl RepoDetailView {
|
|||||||
.child(
|
.child(
|
||||||
h_flex()
|
h_flex()
|
||||||
.items_center()
|
.items_center()
|
||||||
|
.gap_2()
|
||||||
.child(
|
.child(
|
||||||
TabBar::new("repo-tabs")
|
Button::new("files-tab")
|
||||||
.segmented()
|
.label("Files")
|
||||||
.selected_index(self.active_tab)
|
.selected(self.active_tab == 0)
|
||||||
.child(Tab::new().label("Files"))
|
.toggled(self.active_tab == 0)
|
||||||
.child(Tab::new().label("Commits").when_some(
|
.on_click(cx.listener(|this, _event, _window, cx| {
|
||||||
commits_count,
|
this.active_tab = 0;
|
||||||
|this, count| {
|
cx.notify();
|
||||||
this.suffix(
|
})),
|
||||||
Tag::secondary()
|
)
|
||||||
.xsmall()
|
.child(
|
||||||
.mr_1()
|
Button::new("commits-tab")
|
||||||
.child(SharedString::from(count.to_string())),
|
.label("Commits")
|
||||||
)
|
.selected(self.active_tab == 1)
|
||||||
},
|
.toggled(self.active_tab == 1)
|
||||||
))
|
.when_some(commits_count, |this, count| {
|
||||||
.on_click(cx.listener(|this, index, _window, cx| {
|
this.child(
|
||||||
this.active_tab = *index;
|
Tag::secondary()
|
||||||
|
.xsmall()
|
||||||
|
.child(SharedString::from(count.to_string())),
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.on_click(cx.listener(|this, _event, _window, cx| {
|
||||||
|
this.active_tab = 1;
|
||||||
cx.notify();
|
cx.notify();
|
||||||
})),
|
})),
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -150,10 +150,6 @@ impl Panel for SidebarPanel {
|
|||||||
fn closable(&self, _cx: &App) -> bool {
|
fn closable(&self, _cx: &App) -> bool {
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
fn inner_padding(&self, _cx: &App) -> bool {
|
|
||||||
false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EventEmitter<PanelEvent> for SidebarPanel {}
|
impl EventEmitter<PanelEvent> for SidebarPanel {}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
use assets::CustomIconName;
|
use assets::CustomIconName;
|
||||||
use gpui::prelude::*;
|
use gpui::prelude::*;
|
||||||
use gpui::{AnyWindowHandle, App, Entity, SharedString, Subscription, Window, div, px};
|
use gpui::{AnyWindowHandle, App, Entity, SharedString, Subscription, Window, div};
|
||||||
use gpui_component::button::{Button, ButtonVariants};
|
use gpui_component::button::{Button, ButtonVariants};
|
||||||
use gpui_component::dialog::{DialogDescription, DialogFooter, DialogHeader, DialogTitle};
|
use gpui_component::dialog::{DialogDescription, DialogFooter, DialogHeader, DialogTitle};
|
||||||
use gpui_component::form::{field, v_form};
|
use gpui_component::form::{field, v_form};
|
||||||
@@ -49,8 +49,9 @@ pub fn open(window: &mut Window, cx: &mut App) {
|
|||||||
let state = state.clone();
|
let state = state.clone();
|
||||||
|
|
||||||
dialog
|
dialog
|
||||||
.width(px(420.))
|
.close_button(false)
|
||||||
.margin_top(px(50.))
|
.overlay_closable(false)
|
||||||
|
.keyboard(false)
|
||||||
.content(move |content, _window, cx| {
|
.content(move |content, _window, cx| {
|
||||||
let busy = state.read(cx).busy;
|
let busy = state.read(cx).busy;
|
||||||
let error = state.read(cx).error.clone();
|
let error = state.read(cx).error.clone();
|
||||||
|
|||||||
Reference in New Issue
Block a user