Skip to content

Add customized compare for Link in rustdoc #137106

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion src/librustdoc/html/render/sidebar.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use std::borrow::Cow;
use std::cmp::Ordering;

use rinja::Template;
use rustc_data_structures::fx::FxHashSet;
Expand All @@ -12,6 +13,7 @@ use crate::clean;
use crate::formats::Impl;
use crate::formats::item_type::ItemType;
use crate::html::markdown::{IdMap, MarkdownWithToc};
use crate::html::render::print_item::compare_names;

#[derive(Clone, Copy)]
pub(crate) enum ModuleLike {
Expand Down Expand Up @@ -77,7 +79,7 @@ impl<'a> LinkBlock<'a> {
}

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

impl PartialOrd for Link<'_> {
fn partial_cmp(&self, other: &Link<'_>) -> Option<Ordering> {
match compare_names(&self.name, &other.name) {
Ordering::Equal => (),
result => return Some(result),
}
(&self.name_html, &self.href, &self.children).partial_cmp(&(
&other.name_html,
&other.href,
&other.children,
))
}
}

impl<'a> Link<'a> {
pub fn new(href: impl Into<Cow<'a, str>>, name: impl Into<Cow<'a, str>>) -> Self {
Self { href: href.into(), name: name.into(), children: vec![], name_html: None }
Expand Down
15 changes: 15 additions & 0 deletions tests/rustdoc-gui/sidebar-foreign-impl-sort.goml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Checks sidebar resizing close the Settings popover
go-to: "file://" + |DOC_PATH| + "/test_docs/SidebarSort/trait.Sort.html#foreign-impls"

// Check that the sidebar contains the expected foreign implementations
assert-text: (".sidebar-elems section ul > li:nth-child(1)", "&'a str")
assert-text: (".sidebar-elems section ul > li:nth-child(2)", "AtomicBool")
assert-text: (".sidebar-elems section ul > li:nth-child(3)", "AtomicU8")
assert-text: (".sidebar-elems section ul > li:nth-child(4)", "AtomicU16")
assert-text: (".sidebar-elems section ul > li:nth-child(5)", "AtomicU32")
assert-text: (".sidebar-elems section ul > li:nth-child(6)", "Cell<u8>")
assert-text: (".sidebar-elems section ul > li:nth-child(7)", "Cell<u16>")
assert-text: (".sidebar-elems section ul > li:nth-child(8)", "u8")
assert-text: (".sidebar-elems section ul > li:nth-child(9)", "u16")
assert-text: (".sidebar-elems section ul > li:nth-child(10)", "u32")
assert-text: (".sidebar-elems section ul > li:nth-child(11)", "usize")
18 changes: 18 additions & 0 deletions tests/rustdoc-gui/src/test_docs/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -713,3 +713,21 @@ pub trait ItemsTrait {
/// blablala
fn bar();
}

pub mod SidebarSort {
use std::cell::Cell;
use std::sync::atomic::*;
pub trait Sort {}

impl Sort for u32 {}
impl Sort for u8 {}
impl Sort for u16 {}
impl Sort for usize {}
impl Sort for AtomicU32 {}
impl Sort for AtomicU16 {}
impl Sort for AtomicU8 {}
impl Sort for AtomicBool {}
impl Sort for Cell<u16> {}
impl Sort for Cell<u8> {}
impl<'a> Sort for &'a str {}
}
Loading