Skip to content

Commit 8ccfd06

Browse files
authored
Rollup merge of #137106 - chenyukang:yukang-fix-sidebar-sort, r=notriddle
Add customized compare for Link in rustdoc Maybe some other types in sidebar need to be sorted in this way, maybe add this crate `natord` is ok? r? clubby789 Fixes #137098
2 parents 6055793 + a467eca commit 8ccfd06

File tree

3 files changed

+50
-1
lines changed

3 files changed

+50
-1
lines changed

src/librustdoc/html/render/sidebar.rs

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use std::borrow::Cow;
2+
use std::cmp::Ordering;
23

34
use rinja::Template;
45
use rustc_data_structures::fx::FxHashSet;
@@ -12,6 +13,7 @@ use crate::clean;
1213
use crate::formats::Impl;
1314
use crate::formats::item_type::ItemType;
1415
use crate::html::markdown::{IdMap, MarkdownWithToc};
16+
use crate::html::render::print_item::compare_names;
1517

1618
#[derive(Clone, Copy)]
1719
pub(crate) enum ModuleLike {
@@ -77,7 +79,7 @@ impl<'a> LinkBlock<'a> {
7779
}
7880

7981
/// A link to an item. Content should not be escaped.
80-
#[derive(PartialOrd, Ord, PartialEq, Eq, Hash, Clone)]
82+
#[derive(Ord, PartialEq, Eq, Hash, Clone)]
8183
pub(crate) struct Link<'a> {
8284
/// The content for the anchor tag and title attr
8385
name: Cow<'a, str>,
@@ -89,6 +91,20 @@ pub(crate) struct Link<'a> {
8991
children: Vec<Link<'a>>,
9092
}
9193

94+
impl PartialOrd for Link<'_> {
95+
fn partial_cmp(&self, other: &Link<'_>) -> Option<Ordering> {
96+
match compare_names(&self.name, &other.name) {
97+
Ordering::Equal => (),
98+
result => return Some(result),
99+
}
100+
(&self.name_html, &self.href, &self.children).partial_cmp(&(
101+
&other.name_html,
102+
&other.href,
103+
&other.children,
104+
))
105+
}
106+
}
107+
92108
impl<'a> Link<'a> {
93109
pub fn new(href: impl Into<Cow<'a, str>>, name: impl Into<Cow<'a, str>>) -> Self {
94110
Self { href: href.into(), name: name.into(), children: vec![], name_html: None }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Checks sidebar resizing close the Settings popover
2+
go-to: "file://" + |DOC_PATH| + "/test_docs/SidebarSort/trait.Sort.html#foreign-impls"
3+
4+
// Check that the sidebar contains the expected foreign implementations
5+
assert-text: (".sidebar-elems section ul > li:nth-child(1)", "&'a str")
6+
assert-text: (".sidebar-elems section ul > li:nth-child(2)", "AtomicBool")
7+
assert-text: (".sidebar-elems section ul > li:nth-child(3)", "AtomicU8")
8+
assert-text: (".sidebar-elems section ul > li:nth-child(4)", "AtomicU16")
9+
assert-text: (".sidebar-elems section ul > li:nth-child(5)", "AtomicU32")
10+
assert-text: (".sidebar-elems section ul > li:nth-child(6)", "Cell<u8>")
11+
assert-text: (".sidebar-elems section ul > li:nth-child(7)", "Cell<u16>")
12+
assert-text: (".sidebar-elems section ul > li:nth-child(8)", "u8")
13+
assert-text: (".sidebar-elems section ul > li:nth-child(9)", "u16")
14+
assert-text: (".sidebar-elems section ul > li:nth-child(10)", "u32")
15+
assert-text: (".sidebar-elems section ul > li:nth-child(11)", "usize")

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

+18
Original file line numberDiff line numberDiff line change
@@ -713,3 +713,21 @@ pub trait ItemsTrait {
713713
/// blablala
714714
fn bar();
715715
}
716+
717+
pub mod SidebarSort {
718+
use std::cell::Cell;
719+
use std::sync::atomic::*;
720+
pub trait Sort {}
721+
722+
impl Sort for u32 {}
723+
impl Sort for u8 {}
724+
impl Sort for u16 {}
725+
impl Sort for usize {}
726+
impl Sort for AtomicU32 {}
727+
impl Sort for AtomicU16 {}
728+
impl Sort for AtomicU8 {}
729+
impl Sort for AtomicBool {}
730+
impl Sort for Cell<u16> {}
731+
impl Sort for Cell<u8> {}
732+
impl<'a> Sort for &'a str {}
733+
}

0 commit comments

Comments
 (0)