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
190
191
192
193
194
195
|
/// Configuration options for rendering
#[derive(Debug, Clone)]
pub struct Options {
pub show_background: bool,
pub smart_label_positioning: bool,
}
impl Default for Options {
fn default() -> Self {
Self {
show_background: true,
smart_label_positioning: true,
}
}
}
/// Color configuration
#[derive(Debug, Clone)]
pub struct Colors {
pub background: String,
pub axis: String,
pub vertex: String,
pub label: String,
pub stage_foreground: String,
pub stage_background: String,
pub inertia: String,
pub evolution: String,
pub groups: Vec<String>,
}
impl Default for Colors {
fn default() -> Self {
Self {
background: "#FFFFFF".to_string(),
axis: "#0F261F".to_string(),
vertex: "#0F261F".to_string(),
label: "#0F261F".to_string(),
stage_foreground: "#DAE6E3".to_string(),
stage_background: "#FFFFFF".to_string(),
inertia: "#FA2B00".to_string(),
evolution: "#4F8FE6".to_string(),
groups: vec![
"#3A5BA0".to_string(), // Olympic Blue
"#C44536".to_string(), // Jasper Red
"#8FBE92".to_string(), // Light Porcelain Green
"#FAD55C".to_string(), // Naples Yellow
"#EC9CAB".to_string(), // Hermosa Pink
],
}
}
}
/// Size configuration
#[derive(Debug, Clone)]
pub struct Sizes {
pub map_width: f64,
pub map_height: f64,
pub padding: f64,
pub bottom_padding: f64,
pub line_width: f64,
pub vertex_size: f64,
pub arrowhead_size: f64,
pub stage_height: f64,
}
impl Default for Sizes {
fn default() -> Self {
Self {
map_width: 1300.0,
map_height: 1000.0,
padding: 42.0,
bottom_padding: 120.0,
line_width: 0.5,
vertex_size: 25.0,
arrowhead_size: 10.0,
stage_height: 100.0,
}
}
}
/// Font configuration
#[derive(Debug, Clone)]
pub struct Fonts {
pub family: String,
pub axis_label: f64,
pub vertex_label: f64,
pub note: f64,
}
impl Default for Fonts {
fn default() -> Self {
Self {
family: "Helvetica Neue, Helvetica, Arial, sans-serif".to_string(),
axis_label: 14.0,
vertex_label: 12.0,
note: 12.0,
}
}
}
/// Line height configuration
#[derive(Debug, Clone)]
pub struct LineHeights {
pub vertex_label: f64,
pub note: f64,
}
impl Default for LineHeights {
fn default() -> Self {
Self {
vertex_label: 18.0,
note: 18.0,
}
}
}
/// Opacity configuration
#[derive(Debug, Clone)]
pub struct Opacity {
pub groups: f64,
}
impl Default for Opacity {
fn default() -> Self {
Self { groups: 0.1 }
}
}
/// Theme configuration
#[derive(Debug, Clone, Default)]
pub struct Theme {
pub colors: Colors,
pub sizes: Sizes,
pub fonts: Fonts,
pub line_heights: LineHeights,
pub opacity: Opacity,
}
/// Main configuration struct
#[derive(Debug, Clone, Default)]
pub struct Configuration {
pub options: Options,
pub theme: Theme,
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_default_configuration() {
let config = Configuration::default();
// Test options
assert!(config.options.show_background);
assert!(config.options.smart_label_positioning);
// Test colors (matching JS implementation exactly)
assert_eq!(config.theme.colors.background, "#FFFFFF");
assert_eq!(config.theme.colors.axis, "#0F261F");
assert_eq!(config.theme.colors.vertex, "#0F261F");
assert_eq!(config.theme.colors.label, "#0F261F");
assert_eq!(config.theme.colors.stage_foreground, "#DAE6E3");
assert_eq!(config.theme.colors.stage_background, "#FFFFFF");
assert_eq!(config.theme.colors.inertia, "#FA2B00");
assert_eq!(config.theme.colors.evolution, "#4F8FE6");
assert_eq!(config.theme.colors.groups.len(), 5);
// Test sizes (matching JS implementation with extra bottom padding for wrapped labels)
assert_eq!(config.theme.sizes.map_width, 1300.0);
assert_eq!(config.theme.sizes.map_height, 1000.0);
assert_eq!(config.theme.sizes.padding, 42.0);
assert_eq!(config.theme.sizes.bottom_padding, 120.0);
assert_eq!(config.theme.sizes.line_width, 0.5);
assert_eq!(config.theme.sizes.vertex_size, 25.0);
assert_eq!(config.theme.sizes.arrowhead_size, 10.0);
assert_eq!(config.theme.sizes.stage_height, 100.0);
// Test fonts
assert_eq!(
config.theme.fonts.family,
"Helvetica Neue, Helvetica, Arial, sans-serif"
);
assert_eq!(config.theme.fonts.axis_label, 14.0);
assert_eq!(config.theme.fonts.vertex_label, 12.0);
assert_eq!(config.theme.fonts.note, 12.0);
// Test line heights
assert_eq!(config.theme.line_heights.vertex_label, 18.0);
assert_eq!(config.theme.line_heights.note, 18.0);
// Test opacity
assert_eq!(config.theme.opacity.groups, 0.1);
}
}
|