Skip to content

Commit

Permalink
Revert accidental merge of old version of workspace2 render function (#…
Browse files Browse the repository at this point in the history
…3694)

Something happened with my local diff and
#3691 somehow contained an old
version of workspace2's render function. Perhaps I rebased at some point
and borked it? Not sure 🤷‍♀️

Release Notes:

- N/A
  • Loading branch information
ForLoveOfCats authored Dec 18, 2023
1 parent a623929 commit 4707248
Showing 1 changed file with 58 additions and 31 deletions.
89 changes: 58 additions & 31 deletions crates/workspace2/src/workspace2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3534,6 +3534,8 @@ impl Render for Workspace {
)
};

let theme = cx.theme().clone();
let colors = theme.colors();
cx.set_rem_size(ui_font_size);

self.actions(div(), cx)
Expand All @@ -3546,10 +3548,10 @@ impl Render for Workspace {
.gap_0()
.justify_start()
.items_start()
.text_color(cx.theme().colors().text)
.bg(cx.theme().colors().background)
.text_color(colors.text)
.bg(colors.background)
.border()
.border_color(cx.theme().colors().border)
.border_color(colors.border)
.children(self.titlebar_item.clone())
.child(
div()
Expand All @@ -3562,7 +3564,7 @@ impl Render for Workspace {
.overflow_hidden()
.border_t()
.border_b()
.border_color(cx.theme().colors().border)
.border_color(colors.border)
.child(
canvas(cx.listener(|workspace, bounds, _| {
workspace.bounds = *bounds;
Expand Down Expand Up @@ -3601,43 +3603,68 @@ impl Render for Workspace {
.flex_row()
.h_full()
// Left Dock
.child(
div()
.flex()
.flex_none()
.overflow_hidden()
.child(self.left_dock.clone()),
)
.children(self.zoomed_position.ne(&Some(DockPosition::Left)).then(
|| {
div()
.flex()
.flex_none()
.overflow_hidden()
.child(self.left_dock.clone())
},
))
// Panes
.child(
div()
.flex()
.flex_col()
.flex_1()
.overflow_hidden()
.child({
self.center.render(
&self.project,
&self.follower_states,
self.active_call(),
&self.active_pane,
self.zoomed.as_ref(),
&self.app_state,
cx,
)
})
.child(self.bottom_dock.clone()),
.child(self.center.render(
&self.project,
&self.follower_states,
self.active_call(),
&self.active_pane,
self.zoomed.as_ref(),
&self.app_state,
cx,
))
.children(
self.zoomed_position
.ne(&Some(DockPosition::Bottom))
.then(|| self.bottom_dock.clone()),
),
)
// Right Dock
.child(
div()
.flex()
.flex_none()
.overflow_hidden()
.child(self.right_dock.clone()),
),
.children(self.zoomed_position.ne(&Some(DockPosition::Right)).then(
|| {
div()
.flex()
.flex_none()
.overflow_hidden()
.child(self.right_dock.clone())
},
)),
)
.children(self.render_notifications(cx)),
.children(self.render_notifications(cx))
.children(self.zoomed.as_ref().and_then(|view| {
let zoomed_view = view.upgrade()?;
let div = div()
.z_index(1)
.absolute()
.overflow_hidden()
.border_color(colors.border)
.bg(colors.background)
.child(zoomed_view)
.inset_0()
.shadow_lg();

Some(match self.zoomed_position {
Some(DockPosition::Left) => div.right_2().border_r(),
Some(DockPosition::Right) => div.left_2().border_l(),
Some(DockPosition::Bottom) => div.top_2().border_t(),
None => div.top_2().bottom_2().left_2().right_2().border(),
})
})),
)
.child(self.status_bar.clone())
}
Expand Down

0 comments on commit 4707248

Please sign in to comment.