zola/components/pagination/src/lib.rs

276 lines
9.5 KiB
Rust
Raw Normal View History

2017-07-01 07:47:41 +00:00
#[macro_use]
extern crate serde_derive;
extern crate tera;
extern crate errors;
extern crate config;
extern crate content;
2017-08-23 10:17:24 +00:00
extern crate utils;
2017-07-01 07:47:41 +00:00
#[cfg(test)]
extern crate front_matter;
2017-05-03 08:52:49 +00:00
use std::collections::HashMap;
2017-07-01 07:47:41 +00:00
use tera::{Tera, Context, to_value, Value};
2017-05-03 08:52:49 +00:00
use errors::{Result, ResultExt};
2017-07-01 07:47:41 +00:00
use config::Config;
2017-05-14 05:14:58 +00:00
use content::{Page, Section};
2017-08-23 10:17:24 +00:00
use utils::templates::render_template;
2017-05-03 08:52:49 +00:00
/// A list of all the pages in the paginator with their index and links
#[derive(Clone, Debug, PartialEq, Serialize)]
pub struct Pager<'a> {
/// The page number in the paginator (1-indexed)
index: usize,
/// Permalink to that page
permalink: String,
/// Path to that page
path: String,
/// All pages for the pager
pages: Vec<&'a Page>
}
impl<'a> Pager<'a> {
fn new(index: usize, pages: Vec<&'a Page>, permalink: String, path: String) -> Pager<'a> {
Pager {
index,
permalink,
path,
pages,
2017-05-03 08:52:49 +00:00
}
}
/// Returns a manually cloned Pager with the pages removed
/// for use as template context
fn clone_without_pages(&self) -> Pager<'a> {
Pager {
index: self.index,
permalink: self.permalink.clone(),
path: self.path.clone(),
pages: vec![],
}
}
2017-05-03 08:52:49 +00:00
}
#[derive(Clone, Debug, PartialEq)]
pub struct Paginator<'a> {
/// All pages in the section
all_pages: &'a [Page],
/// Pages split in chunks of `paginate_by`
pub pagers: Vec<Pager<'a>>,
/// How many content pages on a paginated page at max
paginate_by: usize,
/// The section struct we're building the paginator for
section: &'a Section,
}
impl<'a> Paginator<'a> {
/// Create a new paginator
/// It will always at least create one pager (the first) even if there are no pages to paginate
2017-05-03 08:52:49 +00:00
pub fn new(all_pages: &'a [Page], section: &'a Section) -> Paginator<'a> {
let paginate_by = section.meta.paginate_by.unwrap();
let paginate_path = match section.meta.paginate_path {
Some(ref p) => p,
None => unreachable!(),
};
let mut pages = vec![];
let mut current_page = vec![];
for page in all_pages {
current_page.push(page);
if current_page.len() == paginate_by {
pages.push(current_page);
current_page = vec![];
}
}
if !current_page.is_empty() {
pages.push(current_page);
}
let mut pagers = vec![];
2017-05-08 08:39:31 +00:00
for (index, page) in pages.iter().enumerate() {
2017-05-03 08:52:49 +00:00
// First page has no pagination path
if index == 0 {
2017-05-08 08:39:31 +00:00
pagers.push(Pager::new(1, page.clone(), section.permalink.clone(), section.path.clone()));
2017-05-03 08:52:49 +00:00
continue;
}
let page_path = format!("{}/{}/", paginate_path, index + 1);
let permalink = format!("{}{}", section.permalink, page_path);
let pager_path = if section.is_index() {
page_path
2017-05-03 08:52:49 +00:00
} else {
format!("{}{}", section.path, page_path)
2017-05-03 08:52:49 +00:00
};
pagers.push(Pager::new(
index + 1,
2017-05-08 08:39:31 +00:00
page.clone(),
2017-05-03 08:52:49 +00:00
permalink,
pager_path,
2017-05-03 08:52:49 +00:00
));
}
// We always have the index one at least
if pagers.is_empty() {
pagers.push(Pager::new(1, vec![], section.permalink.clone(), section.path.clone()));
}
2017-05-03 08:52:49 +00:00
Paginator {
all_pages,
pagers,
paginate_by,
section,
2017-05-03 08:52:49 +00:00
}
}
pub fn build_paginator_context(&self, current_pager: &Pager) -> HashMap<&str, Value> {
let mut paginator = HashMap::new();
// the pager index is 1-indexed so we want a 0-indexed one for indexing there
let pager_index = current_pager.index - 1;
// Global variables
paginator.insert("paginate_by", to_value(self.paginate_by).unwrap());
paginator.insert("first", to_value(&self.section.permalink).unwrap());
let last_pager = &self.pagers[self.pagers.len() - 1];
paginator.insert("last", to_value(&last_pager.permalink).unwrap());
paginator.insert(
"pagers",
to_value(
&self.pagers.iter().map(|p| p.clone_without_pages()).collect::<Vec<_>>()
).unwrap()
);
2017-05-03 08:52:49 +00:00
// Variables for this specific page
if pager_index > 0 {
let prev_pager = &self.pagers[pager_index - 1];
paginator.insert("previous", to_value(&prev_pager.permalink).unwrap());
} else {
paginator.insert("previous", to_value::<Option<()>>(None).unwrap());
}
if pager_index < self.pagers.len() - 1 {
let next_pager = &self.pagers[pager_index + 1];
paginator.insert("next", to_value(&next_pager.permalink).unwrap());
} else {
paginator.insert("next", to_value::<Option<()>>(None).unwrap());
}
paginator.insert("pages", to_value(&current_pager.pages).unwrap());
paginator.insert("current_index", to_value(current_pager.index).unwrap());
paginator
}
pub fn render_pager(&self, pager: &Pager, config: &Config, tera: &Tera) -> Result<String> {
2017-05-03 08:52:49 +00:00
let mut context = Context::new();
2017-07-01 07:47:41 +00:00
context.add("config", &config);
2017-05-03 08:52:49 +00:00
context.add("section", self.section);
context.add("current_url", &pager.permalink);
context.add("current_path", &pager.path);
context.add("paginator", &self.build_paginator_context(pager));
2017-08-23 10:17:24 +00:00
render_template(&self.section.get_template_name(), tera, &context, config.theme.clone())
.chain_err(|| format!("Failed to render pager {} of section '{}'", pager.index, self.section.file.path.display()))
2017-05-03 08:52:49 +00:00
}
}
#[cfg(test)]
mod tests {
2017-07-01 07:47:41 +00:00
use tera::to_value;
2017-05-03 08:52:49 +00:00
use front_matter::SectionFrontMatter;
2017-05-14 05:14:58 +00:00
use content::{Page, Section};
2017-05-03 08:52:49 +00:00
2017-07-01 07:47:41 +00:00
use super::Paginator;
2017-05-03 08:52:49 +00:00
fn create_section(is_index: bool) -> Section {
let mut f = SectionFrontMatter::default();
2017-05-03 08:52:49 +00:00
f.paginate_by = Some(2);
f.paginate_path = Some("page".to_string());
let mut s = Section::new("content/_index.md", f);
if !is_index {
s.path = "posts/".to_string();
s.permalink = "https://vincent.is/posts/".to_string();
s.file.components = vec!["posts".to_string()];
2017-05-03 08:52:49 +00:00
} else {
s.permalink = "https://vincent.is/".to_string();
2017-05-03 08:52:49 +00:00
}
s
}
#[test]
fn test_can_create_paginator() {
let pages = vec![
Page::default(),
Page::default(),
Page::default(),
2017-05-03 08:52:49 +00:00
];
let section = create_section(false);
let paginator = Paginator::new(pages.as_slice(), &section);
assert_eq!(paginator.pagers.len(), 2);
assert_eq!(paginator.pagers[0].index, 1);
assert_eq!(paginator.pagers[0].pages.len(), 2);
assert_eq!(paginator.pagers[0].permalink, "https://vincent.is/posts/");
assert_eq!(paginator.pagers[0].path, "posts/");
2017-05-03 08:52:49 +00:00
assert_eq!(paginator.pagers[1].index, 2);
assert_eq!(paginator.pagers[1].pages.len(), 1);
assert_eq!(paginator.pagers[1].permalink, "https://vincent.is/posts/page/2/");
assert_eq!(paginator.pagers[1].path, "posts/page/2/");
2017-05-03 08:52:49 +00:00
}
#[test]
fn test_can_create_paginator_for_index() {
let pages = vec![
Page::default(),
Page::default(),
Page::default(),
2017-05-03 08:52:49 +00:00
];
let section = create_section(true);
let paginator = Paginator::new(pages.as_slice(), &section);
assert_eq!(paginator.pagers.len(), 2);
assert_eq!(paginator.pagers[0].index, 1);
assert_eq!(paginator.pagers[0].pages.len(), 2);
assert_eq!(paginator.pagers[0].permalink, "https://vincent.is/");
2017-05-03 08:52:49 +00:00
assert_eq!(paginator.pagers[0].path, "");
assert_eq!(paginator.pagers[1].index, 2);
assert_eq!(paginator.pagers[1].pages.len(), 1);
assert_eq!(paginator.pagers[1].permalink, "https://vincent.is/page/2/");
assert_eq!(paginator.pagers[1].path, "page/2/");
2017-05-03 08:52:49 +00:00
}
#[test]
fn test_can_build_paginator_context() {
let pages = vec![
Page::default(),
Page::default(),
Page::default(),
2017-05-03 08:52:49 +00:00
];
let section = create_section(false);
let paginator = Paginator::new(pages.as_slice(), &section);
assert_eq!(paginator.pagers.len(), 2);
let context = paginator.build_paginator_context(&paginator.pagers[0]);
assert_eq!(context["paginate_by"], to_value(2).unwrap());
assert_eq!(context["first"], to_value("https://vincent.is/posts/").unwrap());
assert_eq!(context["last"], to_value("https://vincent.is/posts/page/2/").unwrap());
2017-05-03 08:52:49 +00:00
assert_eq!(context["previous"], to_value::<Option<()>>(None).unwrap());
assert_eq!(context["next"], to_value("https://vincent.is/posts/page/2/").unwrap());
2017-05-03 08:52:49 +00:00
assert_eq!(context["current_index"], to_value(1).unwrap());
let context = paginator.build_paginator_context(&paginator.pagers[1]);
assert_eq!(context["paginate_by"], to_value(2).unwrap());
assert_eq!(context["first"], to_value("https://vincent.is/posts/").unwrap());
assert_eq!(context["last"], to_value("https://vincent.is/posts/page/2/").unwrap());
2017-05-03 08:52:49 +00:00
assert_eq!(context["next"], to_value::<Option<()>>(None).unwrap());
assert_eq!(context["previous"], to_value("https://vincent.is/posts/").unwrap());
2017-05-03 08:52:49 +00:00
assert_eq!(context["current_index"], to_value(2).unwrap());
}
}