Skip to content

Commit 760c7f0

Browse files
committed
rustdoc: make JS trait impls act more like HTML
1 parent 67e3eea commit 760c7f0

File tree

4 files changed

+99
-6
lines changed

4 files changed

+99
-6
lines changed

src/librustdoc/html/render/write_shared.rs

+19-2
Original file line numberDiff line numberDiff line change
@@ -529,20 +529,37 @@ if (typeof exports !== 'undefined') {exports.searchIndex = searchIndex};
529529
.values()
530530
.flat_map(|AliasedTypeImpl { impl_, type_aliases }| {
531531
let mut ret = Vec::new();
532-
let trait_ = impl_.inner_impl().trait_.as_ref().map(|path| path.last().to_string());
532+
let trait_ = impl_
533+
.inner_impl()
534+
.trait_
535+
.as_ref()
536+
.map(|trait_| format!("{:#}", trait_.print(cx)));
533537
// render_impl will filter out "impossible-to-call" methods
534538
// to make that functionality work here, it needs to be called with
535539
// each type alias, and if it gives a different result, split the impl
536540
for &(type_alias_fqp, ref type_alias_item) in type_aliases {
537541
let mut buf = Buffer::html();
538542
cx.id_map = Default::default();
539543
cx.deref_id_map = Default::default();
544+
let target_did = impl_
545+
.inner_impl()
546+
.trait_
547+
.as_ref()
548+
.map(|trait_| trait_.def_id())
549+
.or_else(|| impl_.inner_impl().for_.def_id(cache));
550+
let provided_methods;
551+
let assoc_link = if let Some(target_did) = target_did {
552+
provided_methods = impl_.inner_impl().provided_trait_methods(cx.tcx());
553+
AssocItemLink::GotoSource(ItemId::DefId(target_did), &provided_methods)
554+
} else {
555+
AssocItemLink::Anchor(None)
556+
};
540557
super::render_impl(
541558
&mut buf,
542559
cx,
543560
*impl_,
544561
&type_alias_item,
545-
AssocItemLink::Anchor(None),
562+
assoc_link,
546563
RenderMode::Normal,
547564
None,
548565
&[],

src/librustdoc/html/static/js/main.js

+12-3
Original file line numberDiff line numberDiff line change
@@ -628,12 +628,14 @@ function preLoadCss(cssUrl) {
628628

629629
let implementations = document.getElementById("implementations-list");
630630
let trait_implementations = document.getElementById("trait-implementations-list");
631+
let trait_implementations_header = document.getElementById("trait-implementations");
631632

632633
// We want to include the current type alias's impls, and no others.
633634
const script = document.querySelector("script[data-self-path]");
634635
const selfPath = script ? script.getAttribute("data-self-path") : null;
635636

636637
// These sidebar blocks need filled in, too.
638+
const mainContent = document.querySelector("#main-content");
637639
const sidebarSection = document.querySelector(".sidebar section");
638640
let methods = document.querySelector(".sidebar .block.method");
639641
let associatedTypes = document.querySelector(".sidebar .block.associatedtype");
@@ -667,18 +669,18 @@ function preLoadCss(cssUrl) {
667669
const h = document.createElement("h3");
668670
h.appendChild(link);
669671
trait_implementations = outputList;
672+
trait_implementations_header = outputListHeader;
670673
sidebarSection.appendChild(h);
671674
sidebarTraitList = document.createElement("ul");
672675
sidebarTraitList.className = "block trait-implementation";
673676
sidebarSection.appendChild(sidebarTraitList);
674-
const mainContent = document.querySelector("#main-content");
675677
mainContent.appendChild(outputListHeader);
676678
mainContent.appendChild(outputList);
677679
} else {
678680
implementations = outputList;
679681
if (trait_implementations) {
680-
document.insertBefore(outputListHeader, trait_implementations);
681-
document.insertBefore(outputList, trait_implementations);
682+
mainContent.insertBefore(outputListHeader, trait_implementations_header);
683+
mainContent.insertBefore(outputList, trait_implementations_header);
682684
} else {
683685
const mainContent = document.querySelector("#main-content");
684686
mainContent.appendChild(outputListHeader);
@@ -710,7 +712,14 @@ function preLoadCss(cssUrl) {
710712
}
711713
}
712714
if (i !== 0) {
715+
const oldHref = `#${el.id}`;
716+
const newHref = `#${el.id}-${i}`;
713717
el.id = `${el.id}-${i}`;
718+
onEachLazy(template.content.querySelectorAll("a[href]"), link => {
719+
if (link.getAttribute("href") === oldHref) {
720+
link.href = newHref;
721+
}
722+
});
714723
}
715724
idMap.set(el.id, i + 1);
716725
});

tests/rustdoc-gui/src/test_docs/lib.rs

+20
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,26 @@ impl SomeOtherTypeWithMethodsAndInlining {
167167
pub fn some_other_method_directly(&self) {}
168168
}
169169

170+
/// Another type alias, this time with methods.
171+
pub struct UnderlyingFooBarBaz;
172+
pub type SomeOtherTypeWithMethodsAndInliningAndTraits = UnderlyingFooBarBaz;
173+
174+
impl AsRef<str> for UnderlyingFooBarBaz {
175+
fn as_ref(&self) -> &str {
176+
"hello"
177+
}
178+
}
179+
180+
impl UnderlyingFooBarBaz {
181+
pub fn inherent_fn(&self) {}
182+
}
183+
184+
impl AsRef<u8> for SomeOtherTypeWithMethodsAndInliningAndTraits {
185+
fn as_ref(&self) -> &u8 {
186+
b"hello"
187+
}
188+
}
189+
170190
pub mod huge_amount_of_consts {
171191
include!(concat!(env!("OUT_DIR"), "/huge_amount_of_consts.rs"));
172192
}

tests/rustdoc-gui/type-impls.goml

+48-1
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,39 @@ assert-text: (".block.method li:nth-child(2)", 'some_other_method_directly')
2424
assert-text: (".block.method li:nth-child(3)", 'warning1')
2525
assert-text: (".block.method li:nth-child(4)", 'warning2')
2626

27+
// Now try trait implementation merging and duplicate renumbering
28+
go-to: "file://" + |DOC_PATH| + "/test_docs/type.SomeOtherTypeWithMethodsAndInliningAndTraits.html"
29+
30+
// method directly on type alias
31+
assert: "//*[@id='method.as_ref']"
32+
assert-count: ("//*[@id='method.as_ref']", 1)
33+
// method on underlying type
34+
assert: "//*[@id='method.as_ref-1']"
35+
36+
// sidebar items
37+
assert-count: (
38+
"//*[@class='sidebar-elems']//h3/a[@href='#trait-implementations']",
39+
1
40+
)
41+
assert-text: ("//*[@class='sidebar-elems']//li/a[@href='#impl-AsRef%3Cstr%3E-for-UnderlyingFooBarBaz']", "AsRef<str>")
42+
assert-text: (
43+
"//*[@class='sidebar-elems']//li/a[@href='#impl-AsRef%3Cu8%3E-for-SomeOtherTypeWithMethodsAndInliningAndTraits']",
44+
"AsRef<u8>"
45+
)
46+
assert-count: ("#trait-implementations-list", 1)
47+
assert-count: ("#trait-implementations-list > details", 2)
48+
// Both links point at the underlying trait
49+
store-property: ("//*[@id='method.as_ref']//a[@class='fn']", {"href": href})
50+
assert-property: ("//*[@id='method.as_ref-1']//a[@class='fn']", {"href": |href|})
51+
// Both links have a self-anchor
52+
assert: "//*[@id='method.as_ref']//a[@class='anchor'][@href='#method.as_ref']"
53+
assert: "//*[@id='method.as_ref-1']//a[@class='anchor'][@href='#method.as_ref-1']"
54+
2755
///////////////////////////////////////////////////////////////////////////
2856
// Now, if JavaScript is disabled, only the first method will be present //
2957
///////////////////////////////////////////////////////////////////////////
3058
javascript: false
31-
reload:
59+
go-to: "file://" + |DOC_PATH| + "/test_docs/type.SomeOtherTypeWithMethodsAndInlining.html"
3260

3361
// method directly on type alias
3462
wait-for: "//*[@id='method.some_other_method_directly']"
@@ -37,3 +65,22 @@ wait-for: "//*[@id='method.some_other_method_directly']"
3765
assert-false: "//*[@id='method.must_use']"
3866
assert-false: "//*[@id='method.warning1']"
3967
assert-false: "//*[@id='method.warning2']"
68+
69+
// Now try trait implementation merging and duplicate renumbering
70+
go-to: "file://" + |DOC_PATH| + "/test_docs/type.SomeOtherTypeWithMethodsAndInliningAndTraits.html"
71+
72+
// methods directly on type alias
73+
assert: "//*[@id='method.as_ref']"
74+
assert-count: ("//*[@id='method.as_ref']", 1)
75+
// method on target type
76+
assert-false: "//*[@id='method.as_ref-1']"
77+
78+
// sidebar items
79+
assert-count: (
80+
"//*[@class='sidebar-elems']//h3/a[@href='#trait-implementations']",
81+
1
82+
)
83+
assert-false: "//a[@href='#impl-AsRef%3Cstr%3E-for-UnderlyingFooBarBaz']"
84+
assert: "//a[@href='#impl-AsRef%3Cu8%3E-for-SomeOtherTypeWithMethodsAndInliningAndTraits']"
85+
assert-count: ("#trait-implementations-list", 1)
86+
assert-count: ("#trait-implementations-list > details", 1)

0 commit comments

Comments
 (0)