1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
mod bike_network;
mod explore;
mod layers;
mod predict;
mod quick_sketch;
mod trip;
use geom::CornerRadii;
use map_gui::tools::CityPicker;
use widgetry::{
EventCtx, HorizontalAlignment, Key, Line, Panel, PanelDims, State, VerticalAlignment, Widget,
DEFAULT_CORNER_RADIUS,
};
pub use self::explore::ExploreMap;
pub use self::layers::Layers;
use crate::app::{App, Transition};
pub use predict::ModeShiftData;
pub use trip::RoutingPreferences;
#[derive(PartialEq)]
pub enum Tab {
Explore,
Trip,
AddLanes,
PredictImpact,
}
pub trait TakeLayers {
fn take_layers(self) -> Layers;
}
impl Tab {
pub fn make_left_panel(self, ctx: &mut EventCtx, app: &App, contents: Widget) -> Panel {
let mut contents = Some(contents.section(ctx));
let header = Widget::row(vec![
map_gui::tools::home_btn(ctx),
Line("Ungap the Map")
.small_heading()
.into_widget(ctx)
.centered_vert(),
map_gui::tools::change_map_btn(ctx, app)
.centered_vert()
.align_right(),
]);
let mut build_tab = |(tab, image_path, tab_title, hotkey): (Tab, &str, &str, Key)| {
let mut btn = ctx
.style()
.btn_tab
.icon_text(image_path, tab_title)
.hotkey(hotkey);
if self == tab {
btn = btn
.corner_rounding(CornerRadii {
top_left: DEFAULT_CORNER_RADIUS,
top_right: DEFAULT_CORNER_RADIUS,
bottom_left: 0.0,
bottom_right: 0.0,
})
.disabled(true);
}
let btn_widget = btn.build_def(ctx).margin_left(1);
let mut tab_elements = vec![btn_widget];
if self == tab {
let mut contents = contents.take().unwrap();
contents = contents.corner_rounding(CornerRadii {
top_left: 0.0,
top_right: DEFAULT_CORNER_RADIUS,
bottom_left: DEFAULT_CORNER_RADIUS,
bottom_right: DEFAULT_CORNER_RADIUS,
});
tab_elements.push(contents);
}
Widget::custom_col(tab_elements)
};
let tabs = Widget::col(vec![
build_tab((
Tab::Explore,
"system/assets/tools/pan.svg",
"Explore",
Key::Num1,
)),
build_tab((
Tab::Trip,
"system/assets/tools/pin.svg",
"Your trip",
Key::Num2,
)),
build_tab((
Tab::AddLanes,
"system/assets/tools/pencil.svg",
"Propose new bike lanes",
Key::Num3,
)),
build_tab((
Tab::PredictImpact,
"system/assets/meters/trip_histogram.svg",
"Predict impact",
Key::Num4,
)),
]);
let mut panel = Panel::new_builder(Widget::col(vec![header, tabs]))
.dims_width(PanelDims::ExactPixels(620.0))
.dims_height(PanelDims::ExactPercent(1.0))
.aligned(HorizontalAlignment::Left, VerticalAlignment::Top);
if self == Tab::Trip {
panel = panel.ignore_initial_events();
}
panel.build(ctx)
}
pub fn handle_action<T: TakeLayers + State<App>>(
self,
ctx: &mut EventCtx,
app: &mut App,
action: &str,
) -> Option<Transition> {
match action {
"Home" => Some(Transition::Pop),
"change map" => {
Some(Transition::Push(CityPicker::new_state(
ctx,
app,
Box::new(move |ctx, app| {
let layers = Layers::new(ctx, app);
Transition::Multi(vec![
Transition::Pop,
Transition::Replace(match self {
Tab::Explore => ExploreMap::new_state(ctx, app, layers),
Tab::Trip => trip::TripPlanner::new_state(ctx, app, layers),
Tab::AddLanes => {
quick_sketch::QuickSketch::new_state(ctx, app, layers)
}
Tab::PredictImpact => {
predict::ShowGaps::new_state(ctx, app, layers)
}
}),
])
}),
)))
}
"Explore" => Some(Transition::ConsumeState(Box::new(|state, ctx, app| {
let state = state.downcast::<T>().ok().unwrap();
vec![ExploreMap::new_state(ctx, app, state.take_layers())]
}))),
"Your trip" => Some(Transition::ConsumeState(Box::new(|state, ctx, app| {
let state = state.downcast::<T>().ok().unwrap();
vec![trip::TripPlanner::new_state(ctx, app, state.take_layers())]
}))),
"Propose new bike lanes" => {
app.primary.current_selection = None;
Some(Transition::ConsumeState(Box::new(|state, ctx, app| {
let state = state.downcast::<T>().ok().unwrap();
vec![quick_sketch::QuickSketch::new_state(
ctx,
app,
state.take_layers(),
)]
})))
}
"Predict impact" => Some(Transition::ConsumeState(Box::new(|state, ctx, app| {
let state = state.downcast::<T>().ok().unwrap();
vec![predict::ShowGaps::new_state(ctx, app, state.take_layers())]
}))),
_ => None,
}
}
}