2018-12-06 18:54:16 +01:00
|
|
|
@use templates::{base, partials::post_card, users::header};
|
|
|
|
@use template_utils::*;
|
|
|
|
@use plume_models::posts::Post;
|
|
|
|
@use plume_models::users::User;
|
2018-12-07 12:05:01 +01:00
|
|
|
@use routes::*;
|
2018-12-06 18:54:16 +01:00
|
|
|
|
|
|
|
@(ctx: BaseContext, user: User, follows: bool, is_remote: bool, remote_url: String, recents: Vec<Post>, reshares: Vec<Post>)
|
|
|
|
|
2019-03-06 18:28:10 +01:00
|
|
|
@:base(ctx, user.name(), {}, {}, {
|
2018-12-06 18:54:16 +01:00
|
|
|
@:header(ctx, &user, follows, is_remote, remote_url)
|
|
|
|
|
|
|
|
@tabs(&[
|
2019-03-06 18:28:10 +01:00
|
|
|
(&uri!(user::details: name = &user.fqn).to_string(), i18n!(ctx.1, "Articles"), true),
|
|
|
|
(&uri!(user::followers: name = &user.fqn, page = _).to_string(), i18n!(ctx.1, "Subscribers"), false),
|
|
|
|
(&uri!(user::followed: name = &user.fqn, page = _).to_string(), i18n!(ctx.1, "Subscriptions"), false)
|
2018-12-06 18:54:16 +01:00
|
|
|
])
|
|
|
|
|
|
|
|
@if !recents.is_empty() {
|
2018-12-08 21:52:46 +01:00
|
|
|
<div class="h-feed">
|
2018-12-06 18:54:16 +01:00
|
|
|
<h2>
|
2018-12-08 21:52:46 +01:00
|
|
|
<span class="p-name">@i18n!(ctx.1, "Latest articles")</span>
|
2019-04-07 05:53:38 +02:00
|
|
|
<small><a href="@uri!(user::atom_feed: name = &user.fqn)" title="@i18n!(ctx.1, "Atom feed")">@icon!("rss")</a></small>
|
2018-12-06 18:54:16 +01:00
|
|
|
</h2>
|
|
|
|
<div class="cards">
|
|
|
|
@for article in recents {
|
|
|
|
@:post_card(ctx, article)
|
|
|
|
}
|
|
|
|
</div>
|
2018-12-08 21:52:46 +01:00
|
|
|
</div>
|
2018-12-06 18:54:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@if !reshares.is_empty() {
|
2018-12-08 21:52:46 +01:00
|
|
|
<div class="h-feed">
|
|
|
|
<h2 class="p-name">@i18n!(ctx.1, "Recently boosted")</h2>
|
2018-12-06 18:54:16 +01:00
|
|
|
<div class="cards">
|
|
|
|
@for article in reshares {
|
|
|
|
@:post_card(ctx, article)
|
|
|
|
}
|
|
|
|
</div>
|
2018-12-08 21:52:46 +01:00
|
|
|
</div>
|
2018-12-06 18:54:16 +01:00
|
|
|
}
|
|
|
|
})
|