Fix subsection pages not being filled correctly
This commit is contained in:
parent
a07835bbe3
commit
195b760fdc
|
@ -304,10 +304,14 @@ impl Site {
|
|||
/// Find out the direct subsections of each subsection if there are some
|
||||
/// as well as the pages for each section
|
||||
pub fn populate_sections(&mut self) {
|
||||
let mut grandparent_paths = HashMap::new();
|
||||
let mut grandparent_paths: HashMap<PathBuf, Vec<PathBuf>> = HashMap::new();
|
||||
|
||||
for section in self.sections.values_mut() {
|
||||
if let Some(ref grand_parent) = section.file.grand_parent {
|
||||
grandparent_paths.entry(grand_parent.to_path_buf()).or_insert_with(|| vec![]).push(section.clone());
|
||||
grandparent_paths
|
||||
.entry(grand_parent.to_path_buf())
|
||||
.or_insert_with(|| vec![])
|
||||
.push(section.file.path.clone());
|
||||
}
|
||||
// Make sure the pages of a section are empty since we can call that many times on `serve`
|
||||
section.pages = vec![];
|
||||
|
@ -321,14 +325,20 @@ impl Site {
|
|||
}
|
||||
}
|
||||
|
||||
self.sort_sections_pages(None);
|
||||
// TODO: remove this clone
|
||||
let sections = self.sections.clone();
|
||||
|
||||
for section in self.sections.values_mut() {
|
||||
match grandparent_paths.get(§ion.file.parent) {
|
||||
Some(paths) => section.subsections.extend(paths.clone()),
|
||||
Some(paths) => {
|
||||
for p in paths {
|
||||
section.subsections.push(sections[p].clone());
|
||||
}
|
||||
},
|
||||
None => continue,
|
||||
};
|
||||
}
|
||||
|
||||
self.sort_sections_pages(None);
|
||||
}
|
||||
|
||||
/// Sorts the pages of the section at the given path
|
||||
|
|
|
@ -6,5 +6,6 @@
|
|||
{% endfor %}
|
||||
{% for subsection in section.subsections %}
|
||||
{{subsection.title}}
|
||||
Sub-pages: {{subsection.pages | length}}
|
||||
{% endfor %}
|
||||
{% endblock content %}
|
||||
|
|
|
@ -115,6 +115,8 @@ fn can_build_site_without_live_reload() {
|
|||
assert!(file_exists!(public, "posts/tutorials/index.html"));
|
||||
assert!(file_exists!(public, "posts/tutorials/devops/index.html"));
|
||||
assert!(file_exists!(public, "posts/tutorials/programming/index.html"));
|
||||
// Ensure subsection pages are correctly filled
|
||||
assert!(file_contains!(public, "posts/tutorials/index.html", "Sub-pages: 2"));
|
||||
// TODO: add assertion for syntax highlighting
|
||||
|
||||
// aliases work
|
||||
|
|
Loading…
Reference in a new issue