提交 aca1bd7d 编写于 作者: G Guillaume Gomez

First step for important traits UI

上级 be68d34a
......@@ -1816,8 +1816,7 @@ fn plain_summary_line(s: Option<&str>) -> String {
fn document(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item) -> fmt::Result {
document_stability(w, cx, item)?;
let mut prefix = render_assoc_const_value(item);
prefix.push_str(&render_spotlight_traits(item)?);
let prefix = render_assoc_const_value(item);
document_full(w, item, cx, &prefix)?;
Ok(())
}
......@@ -2267,10 +2266,15 @@ fn item_function(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
AbiSpace(f.abi),
it.name.as_ref().unwrap(),
f.generics).len();
let mut extra = render_spotlight_traits(it)?;
if !extra.is_empty() {
extra.insert_str(0, "<div class=\"important-traits\">ⓘ<div class=\"content hidden\">");
extra.push_str("</div></div>");
};
write!(w, "<pre class='rust fn'>")?;
render_attributes(w, it)?;
write!(w, "{vis}{constness}{unsafety}{abi}fn \
{name}{generics}{decl}{where_clause}</pre>",
{name}{generics}{decl}{where_clause}</pre>{extra}",
vis = VisSpace(&it.visibility),
constness = ConstnessSpace(f.constness),
unsafety = UnsafetySpace(f.unsafety),
......@@ -2282,7 +2286,8 @@ fn item_function(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
decl: &f.decl,
name_len,
indent: 0,
})?;
},
extra = extra)?;
document(w, cx, it)
}
......@@ -3266,7 +3271,7 @@ fn spotlight_decl(decl: &clean::FnDecl) -> Result<String, fmt::Error> {
if out.is_empty() {
out.push_str("<span class=\"docblock autohide\">");
out.push_str(&format!("<h3>Important traits for {}</h3>", impl_.for_));
out.push_str("<code class=\"spotlight\">");
out.push_str("<code class=\"content\">");
}
//use the "where" class here to make it small
......@@ -3287,7 +3292,8 @@ fn spotlight_decl(decl: &clean::FnDecl) -> Result<String, fmt::Error> {
}
if !out.is_empty() {
out.push_str("</code></span>");
out.insert_str(0, "<div class=\"important-traits\">ⓘ<div class=\"content hidden\">");
out.push_str("</code></span></div></div>");
}
Ok(out)
......@@ -3327,7 +3333,6 @@ fn doc_impl_item(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item,
trait_: Option<&clean::Trait>, show_def_docs: bool) -> fmt::Result {
let item_type = item.type_();
let name = item.name.as_ref().unwrap();
let mut method_prefix: Option<String> = None;
let render_method_item: bool = match render_mode {
RenderMode::Normal => true,
......@@ -3342,6 +3347,7 @@ fn doc_impl_item(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item,
let id = derive_id(format!("{}.{}", item_type, name));
let ns_id = derive_id(format!("{}.{}", name, item_type.name_space()));
write!(w, "<h4 id='{}' class=\"{}\">", id, item_type)?;
write!(w, "{}", spotlight_decl(decl)?)?;
write!(w, "<span id='{}' class='invisible'>", ns_id)?;
write!(w, "<code>")?;
render_assoc_item(w, item, link.anchor(&id), ItemType::Impl)?;
......@@ -3356,7 +3362,6 @@ fn doc_impl_item(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item,
render_stability_since_raw(w, item.stable_since(), outer_version)?;
}
write!(w, "</span></h4>\n")?;
method_prefix = Some(spotlight_decl(decl)?);
}
}
clean::TypedefItem(ref tydef, _) => {
......@@ -3388,11 +3393,7 @@ fn doc_impl_item(w: &mut fmt::Formatter, cx: &Context, item: &clean::Item,
}
if render_method_item || render_mode == RenderMode::Normal {
let mut prefix = render_assoc_const_value(item);
if let Some(method_prefix) = method_prefix {
prefix.push_str(&method_prefix);
}
let prefix = render_assoc_const_value(item);
if !is_default_item {
if let Some(t) = trait_ {
......
......@@ -1624,7 +1624,9 @@
}
onEach(document.getElementById('main').getElementsByClassName('docblock'), function(e) {
e.parentNode.insertBefore(createToggle(), e);
if (e.parentNode.id === "main") {
e.parentNode.insertBefore(createToggle(), e);
}
});
onEach(document.getElementsByClassName('docblock'), function(e) {
......@@ -1711,6 +1713,19 @@
}
});
function showModal(content) {
var modal = document.createElement('div');
addClass(modal, 'modal');
modal.innerHTML = '<div class="modal-content">' + content + "</div>";
document.getElementsByTagName('body')[0].appendChild(modal);
}
onEach(document.getElementsByClassName('important-traits'), function(e) {
e.onclick = function() {
showModal(e.firstElementChild.innerHTML);
};
});
var search_input = document.getElementsByClassName("search-input")[0];
if (search_input) {
......
......@@ -954,3 +954,34 @@ pre.rust {
color: #888;
font-size: 16px;
}
h4 > .important-traits {
position: absolute;
left: -44px;
top: 2px;
cursor: pointer;
}
.modal {
position: fixed;
width: 100vw;
height: 100vh;
background-color: rgba(0,0,0,0.3);
z-index: 10000;
top: 0;
left: 0;
}
.modal-content {
display: block;
max-width: 60%;
min-width: 200px;
background-color: white;
padding: 5px;
top: 10%;
position: absolute;
left: 50%;
transform: translate(-50%, -50%);
border: 1px solid #999;
border-radius: 4px;
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册