mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
144 lines
4.1 KiB
Rust
144 lines
4.1 KiB
Rust
use serde::{Deserialize, Serialize};
|
|
use yew::prelude::*;
|
|
use yew_router::prelude::*;
|
|
|
|
use crate::Route;
|
|
|
|
const ELLIPSIS: &str = "\u{02026}";
|
|
|
|
#[derive(Serialize, Deserialize, PartialEq, Eq, Clone, Debug)]
|
|
pub struct PageQuery {
|
|
pub page: u64,
|
|
}
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Properties)]
|
|
pub struct Props {
|
|
pub page: u64,
|
|
pub total_pages: u64,
|
|
pub route_to_page: Route,
|
|
}
|
|
|
|
pub struct Pagination;
|
|
|
|
impl Component for Pagination {
|
|
type Message = ();
|
|
type Properties = Props;
|
|
|
|
fn create(_ctx: &Context<Self>) -> Self {
|
|
Self
|
|
}
|
|
|
|
fn view(&self, ctx: &Context<Self>) -> Html {
|
|
html! {
|
|
<nav class="pagination is-right" role="navigation" aria-label="pagination">
|
|
{ self.view_relnav_buttons(ctx.props()) }
|
|
<ul class="pagination-list">
|
|
{ self.view_links(ctx.props()) }
|
|
</ul>
|
|
</nav>
|
|
}
|
|
}
|
|
}
|
|
impl Pagination {
|
|
fn render_link(&self, to_page: u64, props: &Props) -> Html {
|
|
let Props {
|
|
page,
|
|
route_to_page,
|
|
..
|
|
} = props.clone();
|
|
|
|
let is_current_class = if to_page == page { "is-current" } else { "" };
|
|
|
|
html! {
|
|
<li>
|
|
<Link<Route, PageQuery>
|
|
classes={classes!("pagination-link", is_current_class)}
|
|
to={route_to_page}
|
|
query={Some(PageQuery{page: to_page})}
|
|
>
|
|
{ to_page }
|
|
</Link<Route, PageQuery>>
|
|
</li>
|
|
}
|
|
}
|
|
|
|
fn render_links<P>(&self, mut pages: P, len: usize, max_links: usize, props: &Props) -> Html
|
|
where
|
|
P: Iterator<Item = u64> + DoubleEndedIterator,
|
|
{
|
|
if len > max_links {
|
|
let last_link = self.render_link(pages.next_back().unwrap(), props);
|
|
// remove 1 for the ellipsis and 1 for the last link
|
|
let links = pages
|
|
.take(max_links - 2)
|
|
.map(|page| self.render_link(page, props));
|
|
html! {
|
|
<>
|
|
{ for links }
|
|
<li><span class="pagination-ellipsis">{ ELLIPSIS }</span></li>
|
|
{ last_link }
|
|
</>
|
|
}
|
|
} else {
|
|
html! {
|
|
for page in pages {
|
|
{self.render_link(page, props)}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn view_links(&self, props: &Props) -> Html {
|
|
const LINKS_PER_SIDE: usize = 3;
|
|
|
|
let Props {
|
|
page, total_pages, ..
|
|
} = *props;
|
|
|
|
let pages_prev = page.checked_sub(1).unwrap_or_default() as usize;
|
|
let pages_next = (total_pages - page) as usize;
|
|
|
|
let links_left = LINKS_PER_SIDE.min(pages_prev)
|
|
// if there are less than `LINKS_PER_SIDE` to the right, we add some more on the left.
|
|
+ LINKS_PER_SIDE.checked_sub(pages_next).unwrap_or_default();
|
|
let links_right = 2 * LINKS_PER_SIDE - links_left;
|
|
|
|
html! {
|
|
<>
|
|
{ self.render_links(1..page, pages_prev, links_left, props) }
|
|
<li>{ self.render_link(page, props) }</li>
|
|
{ self.render_links(page + 1..=total_pages, pages_next, links_right, props) }
|
|
</>
|
|
}
|
|
}
|
|
|
|
fn view_relnav_buttons(&self, props: &Props) -> Html {
|
|
let Props {
|
|
page,
|
|
total_pages,
|
|
route_to_page: to,
|
|
} = props.clone();
|
|
|
|
html! {
|
|
<>
|
|
<Link<Route, PageQuery>
|
|
classes={classes!("pagination-previous")}
|
|
disabled={page==1}
|
|
query={Some(PageQuery{page: page - 1})}
|
|
to={to.clone()}
|
|
>
|
|
{ "Previous" }
|
|
</Link<Route, PageQuery>>
|
|
<Link<Route, PageQuery>
|
|
classes={classes!("pagination-next")}
|
|
disabled={page==total_pages}
|
|
query={Some(PageQuery{page: page + 1})}
|
|
{to}
|
|
>
|
|
{ "Next page" }
|
|
</Link<Route, PageQuery>>
|
|
</>
|
|
}
|
|
}
|
|
}
|