Skip to content

Commit d420c17

Browse files
authored
Merge pull request #31 from dmackdev/demo-collapsible-sidebar
Make sidebar collapsible for demo
2 parents 011c487 + c181894 commit d420c17

File tree

1 file changed

+43
-21
lines changed

1 file changed

+43
-21
lines changed

examples/demo/src/main.rs

+43-21
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ use apps::{
33
editor::JsonEditorExample, search::SearchExample,
44
toggle_buttons::ToggleButtonsCustomisationDemo, Example, Show,
55
};
6-
use egui::global_theme_preference_buttons;
76
use serde_json::json;
87

98
mod apps;
109

1110
struct DemoApp {
1211
examples: Vec<Box<dyn Show>>,
1312
open_example_idx: Option<usize>,
13+
left_sidebar_expanded: bool,
1414
}
1515

1616
impl Default for DemoApp {
@@ -42,6 +42,7 @@ impl Default for DemoApp {
4242
Box::new(ToggleButtonsCustomisationDemo::new(complex_object)),
4343
],
4444
open_example_idx: None,
45+
left_sidebar_expanded: true,
4546
}
4647
}
4748
}
@@ -50,13 +51,16 @@ impl eframe::App for DemoApp {
5051
fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame) {
5152
egui::SidePanel::left("left-panel")
5253
.resizable(false)
53-
.show(ctx, |ui| {
54-
egui::TopBottomPanel::top("theme-preference-top-panel")
55-
.frame(egui::Frame::side_top_panel(&ctx.style()).inner_margin(10.0))
56-
.show_inside(ui, |ui| {
57-
global_theme_preference_buttons(ui);
58-
});
54+
.frame(egui::Frame::side_top_panel(&ctx.style()).inner_margin(10.0))
55+
.show_animated(ctx, self.left_sidebar_expanded, |ui| {
56+
collapsible_sidebar_button_ui(ui, &mut self.left_sidebar_expanded);
57+
ui.add_space(10.0);
58+
59+
ui.label(egui::RichText::new("Theme").monospace());
60+
egui::global_theme_preference_buttons(ui);
5961
ui.add_space(10.0);
62+
63+
ui.label(egui::RichText::new("Examples").monospace());
6064
ui.with_layout(egui::Layout::top_down_justified(egui::Align::LEFT), |ui| {
6165
for (idx, example) in self.examples.iter().enumerate() {
6266
let is_open = self
@@ -74,36 +78,54 @@ impl eframe::App for DemoApp {
7478
});
7579
});
7680

77-
match self.open_example_idx {
78-
Some(open_idx) => {
79-
let example = &mut self.examples[open_idx];
80-
egui::TopBottomPanel::top("top-panel")
81-
.frame(egui::Frame::side_top_panel(&ctx.style()).inner_margin(10.0))
82-
.show(ctx, |ui| {
81+
let example = self
82+
.open_example_idx
83+
.map(|open_idx| &mut self.examples[open_idx]);
84+
85+
if let Some(example) = &example {
86+
egui::TopBottomPanel::top("top-panel")
87+
.frame(egui::Frame::side_top_panel(&ctx.style()).inner_margin(10.0))
88+
.show(ctx, |ui| {
89+
ui.horizontal_centered(|ui| {
90+
if !self.left_sidebar_expanded {
91+
collapsible_sidebar_button_ui(ui, &mut self.left_sidebar_expanded);
92+
}
8393
ui.heading(example.title());
8494
});
85-
egui::CentralPanel::default().show(ctx, |ui| {
86-
example.show(ui);
8795
});
88-
}
89-
None => {
90-
egui::CentralPanel::default().show(ctx, |ui| {
96+
}
97+
98+
egui::CentralPanel::default().show(ctx, |ui| {
99+
match example {
100+
Some(example) => {
101+
example.show(ui);
102+
}
103+
None => {
104+
if !self.left_sidebar_expanded {
105+
collapsible_sidebar_button_ui(ui, &mut self.left_sidebar_expanded);
106+
}
91107
ui.with_layout(
92108
egui::Layout::centered_and_justified(egui::Direction::LeftToRight),
93109
|ui| {
94110
ui.heading("Select an example.");
95111
},
96112
);
97-
});
98-
}
99-
}
113+
}
114+
};
115+
});
100116
}
101117

102118
fn clear_color(&self, visuals: &egui::Visuals) -> [f32; 4] {
103119
visuals.panel_fill.to_normalized_gamma_f32()
104120
}
105121
}
106122

123+
fn collapsible_sidebar_button_ui(ui: &mut egui::Ui, open: &mut bool) {
124+
if ui.button("☰").clicked() {
125+
*open = !*open;
126+
}
127+
}
128+
107129
#[cfg(not(target_arch = "wasm32"))]
108130
fn main() {
109131
let _ = eframe::run_native(

0 commit comments

Comments
 (0)