2020-02-26 16:13:48 -06:00
|
|
|
//! Renders a bit of code as HTML.
|
|
|
|
|
2020-10-24 03:39:57 -05:00
|
|
|
use ide_db::base_db::SourceDatabase;
|
2020-07-29 12:49:10 -05:00
|
|
|
use oorandom::Rand32;
|
2020-08-27 08:02:56 -05:00
|
|
|
use stdx::format_to;
|
2020-08-12 11:26:51 -05:00
|
|
|
use syntax::{AstNode, TextRange, TextSize};
|
2020-02-26 16:13:48 -06:00
|
|
|
|
2020-04-24 17:17:50 -05:00
|
|
|
use crate::{syntax_highlighting::highlight, FileId, RootDatabase};
|
2020-02-26 16:13:48 -06:00
|
|
|
|
|
|
|
pub(crate) fn highlight_as_html(db: &RootDatabase, file_id: FileId, rainbow: bool) -> String {
|
|
|
|
let parse = db.parse(file_id);
|
|
|
|
|
|
|
|
fn rainbowify(seed: u64) -> String {
|
2020-07-29 12:49:10 -05:00
|
|
|
let mut rng = Rand32::new(seed);
|
2020-02-26 16:13:48 -06:00
|
|
|
format!(
|
|
|
|
"hsl({h},{s}%,{l}%)",
|
2020-07-29 12:49:10 -05:00
|
|
|
h = rng.rand_range(0..361),
|
|
|
|
s = rng.rand_range(42..99),
|
|
|
|
l = rng.rand_range(40..91),
|
2020-02-26 16:13:48 -06:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-06-23 08:17:53 -05:00
|
|
|
let ranges = highlight(db, file_id, None, false);
|
2020-04-06 16:00:09 -05:00
|
|
|
let text = parse.tree().syntax().to_string();
|
2020-04-24 16:40:41 -05:00
|
|
|
let mut prev_pos = TextSize::from(0);
|
2020-02-26 16:13:48 -06:00
|
|
|
let mut buf = String::new();
|
|
|
|
buf.push_str(&STYLE);
|
|
|
|
buf.push_str("<pre><code>");
|
2020-04-06 16:00:09 -05:00
|
|
|
for range in &ranges {
|
|
|
|
if range.range.start() > prev_pos {
|
2020-04-24 17:17:50 -05:00
|
|
|
let curr = &text[TextRange::new(prev_pos, range.range.start())];
|
2020-04-06 16:00:09 -05:00
|
|
|
let text = html_escape(curr);
|
2020-02-26 16:13:48 -06:00
|
|
|
buf.push_str(&text);
|
|
|
|
}
|
2020-04-24 17:17:50 -05:00
|
|
|
let curr = &text[TextRange::new(range.range.start(), range.range.end())];
|
2020-04-06 16:00:09 -05:00
|
|
|
|
|
|
|
let class = range.highlight.to_string().replace('.', " ");
|
|
|
|
let color = match (rainbow, range.binding_hash) {
|
|
|
|
(true, Some(hash)) => {
|
|
|
|
format!(" data-binding-hash=\"{}\" style=\"color: {};\"", hash, rainbowify(hash))
|
|
|
|
}
|
|
|
|
_ => "".into(),
|
|
|
|
};
|
2020-08-27 08:02:56 -05:00
|
|
|
format_to!(buf, "<span class=\"{}\"{}>{}</span>", class, color, html_escape(curr));
|
2020-04-06 16:00:09 -05:00
|
|
|
|
|
|
|
prev_pos = range.range.end();
|
2020-02-26 16:13:48 -06:00
|
|
|
}
|
2020-04-06 16:00:09 -05:00
|
|
|
// Add the remaining (non-highlighted) text
|
2020-04-24 17:17:50 -05:00
|
|
|
let curr = &text[TextRange::new(prev_pos, TextSize::of(&text))];
|
2020-04-06 16:00:09 -05:00
|
|
|
let text = html_escape(curr);
|
|
|
|
buf.push_str(&text);
|
2020-02-26 16:13:48 -06:00
|
|
|
buf.push_str("</code></pre>");
|
|
|
|
buf
|
|
|
|
}
|
|
|
|
|
|
|
|
//FIXME: like, real html escaping
|
|
|
|
fn html_escape(text: &str) -> String {
|
|
|
|
text.replace("<", "<").replace(">", ">")
|
|
|
|
}
|
|
|
|
|
|
|
|
const STYLE: &str = "
|
|
|
|
<style>
|
|
|
|
body { margin: 0; }
|
|
|
|
pre { color: #DCDCCC; background: #3F3F3F; font-size: 22px; padding: 0.4em; }
|
|
|
|
|
2020-02-28 09:49:46 -06:00
|
|
|
.lifetime { color: #DFAF8F; font-style: italic; }
|
2020-12-23 10:15:01 -06:00
|
|
|
.label { color: #DFAF8F; font-style: italic; }
|
2020-02-26 16:13:48 -06:00
|
|
|
.comment { color: #7F9F7F; }
|
2020-06-22 09:28:07 -05:00
|
|
|
.documentation { color: #629755; }
|
2020-06-18 09:30:40 -05:00
|
|
|
.injected { opacity: 0.65 ; }
|
2020-02-28 07:47:33 -06:00
|
|
|
.struct, .enum { color: #7CB8BB; }
|
|
|
|
.enum_variant { color: #BDE0F3; }
|
|
|
|
.string_literal { color: #CC9393; }
|
2020-02-26 16:13:48 -06:00
|
|
|
.field { color: #94BFF3; }
|
|
|
|
.function { color: #93E0E3; }
|
2020-06-08 08:23:03 -05:00
|
|
|
.function.unsafe { color: #BC8383; }
|
|
|
|
.operator.unsafe { color: #BC8383; }
|
2020-02-26 16:13:48 -06:00
|
|
|
.parameter { color: #94BFF3; }
|
|
|
|
.text { color: #DCDCCC; }
|
|
|
|
.type { color: #7CB8BB; }
|
2020-02-28 07:47:33 -06:00
|
|
|
.builtin_type { color: #8CD0D3; }
|
|
|
|
.type_param { color: #DFAF8F; }
|
2020-02-26 16:13:48 -06:00
|
|
|
.attribute { color: #94BFF3; }
|
2020-02-28 07:47:33 -06:00
|
|
|
.numeric_literal { color: #BFEBBF; }
|
2020-05-21 11:40:52 -05:00
|
|
|
.bool_literal { color: #BFE6EB; }
|
2020-02-26 16:13:48 -06:00
|
|
|
.macro { color: #94BFF3; }
|
|
|
|
.module { color: #AFD8AF; }
|
2020-07-11 07:50:00 -05:00
|
|
|
.value_param { color: #DCDCCC; }
|
2020-02-26 16:13:48 -06:00
|
|
|
.variable { color: #DCDCCC; }
|
2020-04-28 02:44:20 -05:00
|
|
|
.format_specifier { color: #CC696B; }
|
2020-02-28 07:47:33 -06:00
|
|
|
.mutable { text-decoration: underline; }
|
2020-06-17 08:27:13 -05:00
|
|
|
.escape_sequence { color: #94BFF3; }
|
2020-02-28 07:47:33 -06:00
|
|
|
.keyword { color: #F0DFAF; font-weight: bold; }
|
|
|
|
.keyword.unsafe { color: #BC8383; font-weight: bold; }
|
|
|
|
.control { font-style: italic; }
|
2020-07-11 07:50:00 -05:00
|
|
|
|
|
|
|
.unresolved_reference { color: #FC5555; text-decoration: wavy underline; }
|
2020-02-26 16:13:48 -06:00
|
|
|
</style>
|
|
|
|
";
|