rust/crates/ide/src/syntax_highlighting/html.rs

94 lines
3.1 KiB
Rust
Raw Normal View History

//! 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;
use syntax::AstNode;
2020-04-24 17:17:50 -05:00
use crate::{syntax_highlighting::highlight, FileId, RootDatabase};
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);
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),
)
}
2021-01-09 06:18:49 -06:00
let hl_ranges = highlight(db, file_id, None, false);
let text = parse.tree().syntax().to_string();
let mut buf = String::new();
2021-06-12 22:54:16 -05:00
buf.push_str(STYLE);
buf.push_str("<pre><code>");
2021-01-09 06:18:49 -06:00
for r in &hl_ranges {
let chunk = html_escape(&text[r.range]);
if r.highlight.is_empty() {
format_to!(buf, "{}", chunk);
continue;
}
2021-01-09 06:18:49 -06:00
let class = r.highlight.to_string().replace('.', " ");
let color = match (rainbow, r.binding_hash) {
(true, Some(hash)) => {
format!(" data-binding-hash=\"{}\" style=\"color: {};\"", hash, rainbowify(hash))
}
_ => "".into(),
};
2021-01-09 06:18:49 -06:00
format_to!(buf, "<span class=\"{}\"{}>{}</span>", class, color, chunk);
}
buf.push_str("</code></pre>");
buf
}
//FIXME: like, real html escaping
fn html_escape(text: &str) -> String {
text.replace("<", "&lt;").replace(">", "&gt;")
}
const STYLE: &str = "
<style>
body { margin: 0; }
pre { color: #DCDCCC; background: #3F3F3F; font-size: 22px; padding: 0.4em; }
.lifetime { color: #DFAF8F; font-style: italic; }
2020-12-23 10:15:01 -06:00
.label { color: #DFAF8F; font-style: italic; }
.comment { color: #7F9F7F; }
.documentation { color: #629755; }
.intra_doc_link { font-style: italic; }
.injected { opacity: 0.65 ; }
2020-02-28 07:47:33 -06:00
.struct, .enum { color: #7CB8BB; }
.enum_variant { color: #BDE0F3; }
.string_literal { color: #CC9393; }
.field { color: #94BFF3; }
.function { color: #93E0E3; }
2020-06-08 08:23:03 -05:00
.function.unsafe { color: #BC8383; }
.trait.unsafe { color: #BC8383; }
2020-06-08 08:23:03 -05:00
.operator.unsafe { color: #BC8383; }
.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; }
.attribute { color: #94BFF3; }
2020-02-28 07:47:33 -06:00
.numeric_literal { color: #BFEBBF; }
.bool_literal { color: #BFE6EB; }
.macro { color: #94BFF3; }
.module { color: #AFD8AF; }
.value_param { color: #DCDCCC; }
.variable { color: #DCDCCC; }
.format_specifier { color: #CC696B; }
2020-02-28 07:47:33 -06:00
.mutable { text-decoration: underline; }
.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; }
.unresolved_reference { color: #FC5555; text-decoration: wavy underline; }
</style>
";