feat(web): nicer lemmy post view

This commit is contained in:
əlemi 2024-06-24 04:09:46 +02:00
parent 38e45c11d4
commit 357e2cd4c0
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -78,7 +78,7 @@ pub fn Attachment(
"link" => "link" =>
view! { view! {
<code class="cw color center"> <code class="cw color center mt-1 mb-1 mr-s ml-s">
<a href={href.clone()} title={href.clone()} rel="noreferrer nofollow" target="_blank"> <a href={href.clone()} title={href.clone()} rel="noreferrer nofollow" target="_blank">
{Uri::pretty(&href)} {Uri::pretty(&href)}
</a> </a>
@ -161,22 +161,20 @@ pub fn Object(object: crate::Object) -> impl IntoView {
}.into_view(), }.into_view(),
// lemmy with Page, peertube with Video // lemmy with Page, peertube with Video
Ok(apb::ObjectType::Document(t)) => view! { Ok(apb::ObjectType::Document(t)) => view! {
<div class="border pa-1 ml-1 mr-1 mt-1"> <article>
<b>{object.name().unwrap_or_default().to_string()}</b> <div class="border center pr-1 pl-1 pt-s pb-s ma-1" title={t.as_ref().to_string()}>
<hr /> <b>{object.name().unwrap_or_default().to_string()}</b>
</div>
{post_inner} {post_inner}
<a class="clean color" rel="nofollow noreferrer" href={oid.clone()} target="_blank"> </article>
<input class="w-100" type="button" value={t.as_ref().to_string()} />
</a>
</div>
}.into_view(), }.into_view(),
// wordpress, ... ? // wordpress, ... ?
Ok(apb::ObjectType::Article) => view! { Ok(apb::ObjectType::Article) => view! {
<div> <article>
<h3>{object.name().unwrap_or_default().to_string()}</h3> <h3>{object.name().unwrap_or_default().to_string()}</h3>
<hr /> <hr />
{post_inner} {post_inner}
</div> </article>
}.into_view(), }.into_view(),
// everything else // everything else
Ok(t) => view! { Ok(t) => view! {