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
|
use iced::advanced::text::highlighter::Format;
use iced::border::Radius;
use iced::widget::{button, hover, pane_grid, right, text, text_editor};
use iced::{Border, Font, Length};
use iced_custom_highlighter::{Highlight, Highlighter, Scope, Settings};
use iced_material::Theme;
use super::style;
use crate::icon;
use crate::types::{DesignerPane, Message};
// TODO: implement a highlight style for the material theme
//fn highlight_style(theme: &Theme, scope: &Scope) -> Format<Font> {
// let theme = if theme.is_dark() {
// iced::Theme::SolarizedDark
// } else {
// iced::Theme::SolarizedLight
// };
//
// match scope {
// Scope::Custom { .. } | Scope::Other => Format {
// color: Some(theme.extended_palette().primary.strong.color),
// font: None,
// },
// _ => Highlight::default_style(&theme, scope),
// }
//}
fn highlight_style(theme: &Theme, scope: &Scope) -> Format<Font> {
let colors = theme.colors();
let color = match scope {
// Comments are low-priority and often de-emphasized
Scope::Comment => colors.outline.variant,
// Strings and escape sequences are content-rich
Scope::String
| Scope::QuotedString
| Scope::QuotedSingle
| Scope::EscapeSequence => colors.tertiary.color,
// Regex deserves distinct treatment, often looking like code but acting like a string
Scope::RegExp => colors.secondary.container,
// Numeric literals and constants (user- or built-in)
Scope::Number | Scope::BuiltinConstant | Scope::UserDefinedConstant => {
colors.secondary.color
}
// Variable identifiers and function call references
Scope::Variable | Scope::VariableFunction | Scope::VariableStart => {
colors.primary.color
}
// Function and method declarations
Scope::FunctionName | Scope::LibraryFunction => {
colors.primary.container
}
// Keywords and language operators
Scope::Keyword
| Scope::KeywordOperator
| Scope::KeywordOther
| Scope::Operator
| Scope::Continuation => colors.secondary.container,
// Module/class/namespace declarations
Scope::Class
| Scope::LibraryClass
| Scope::StorageType
| Scope::StorageModifier
| Scope::Storage => colors.tertiary.container,
// Import paths or directives
Scope::Import => colors.tertiary.color,
// Error cases, invalid tokens
Scope::Exception | Scope::Invalid => colors.error.color,
// HTML-like tags or markup tokens
Scope::TagName | Scope::TagStart => colors.primary.container,
// Special constants, macros, etc.
Scope::Special | Scope::SupportConstruct => {
colors.inverse.inverse_primary
}
// Braces, parentheses, brackets — structural but low priority
Scope::Braces | Scope::Parantheses | Scope::Brackets => {
colors.outline.variant
}
// Fallback
Scope::Other => colors.surface.text_variant,
// Handle user-defined custom scope
Scope::Custom { name, .. } => {
if name.contains("comment") {
colors.outline.variant
} else if name.contains("error") {
colors.error.color
} else if name.contains("string") {
colors.tertiary.color
} else if name.contains("keyword") {
colors.secondary.container
} else if name.contains("function") {
colors.primary.container
} else {
// Default fallback for unknown custom scopes
colors.surface.text_variant
}
}
};
Format {
color: Some(color),
font: None,
}
}
pub fn view(
editor_content: &text_editor::Content,
is_focused: bool,
) -> pane_grid::Content<'_, Message, Theme> {
let title_bar = pane_grid::TitleBar::new(text("Generated Code").center())
.controls(pane_grid::Controls::dynamic(
button("Switch to Designer view")
.on_press(DesignerPane::DesignerView.into()),
button(icon::switch()).on_press(DesignerPane::DesignerView.into()),
))
.padding(10)
.style(style::title_bar);
let editor = text_editor(editor_content)
.on_action(Message::EditorAction)
.font(Font::MONOSPACE)
.highlight_with::<Highlighter<Theme>>(
Settings::new(vec![], highlight_style, "rs"),
Highlight::to_format,
)
.style(|theme, _| {
let style = iced_material::text_editor::default(
theme,
text_editor::Status::Active,
);
text_editor::Style {
border: Border {
radius: Radius::default(),
..style.border
},
..style
}
})
.height(Length::Fill)
.padding(20);
let copy = button(icon::copy().size(22).line_height(1.0).center())
.on_press(Message::CopyCode)
.padding(3)
.width(28)
.style(|theme, status| {
let style = iced_material::button::text(theme, status);
button::Style {
border: style.border.rounded(4),
..style
}
});
pane_grid::Content::new(hover(editor, right(copy).padding(16.0 * 0.875)))
.title_bar(title_bar)
.style(if is_focused {
style::pane_focused
} else {
style::pane_active
})
}
|