feat(web): added CWs, better images

This commit is contained in:
əlemi 2024-04-23 23:28:19 +02:00
parent d50a762f63
commit 8969780b29
Signed by: alemi
GPG key ID: A4895B84D311642C
2 changed files with 46 additions and 7 deletions

View file

@ -155,10 +155,11 @@
max-height: 2em;
}
img.attachment {
max-height: 15em;
max-width: 90%;
height: 10em;
width: 100%;
border: 5px solid #bf616a;
padding: 5px;
object-fit: cover;
}
div.tl-header {
background-color: #bf616a55;
@ -181,6 +182,19 @@
td.bottom {
vertical-align: bottom;
}
details>summary::marker {
display: none;
}
details>summary {
list-style: none;
cursor: pointer;
}
details>summary:hover {
font-weight: bold;
}
code.cw {
display: block;
}
input[type="submit"].active {
background-color: var(--accent);
border-color: var(--accent);

View file

@ -7,15 +7,23 @@ use apb::{target::Addressed, Base, Object};
#[component]
pub fn Object(object: serde_json::Value) -> impl IntoView {
let uid = object.id().unwrap_or_default().to_string();
let summary = object.summary().unwrap_or_default().to_string();
let content = dissolve::strip_html_tags(object.content().unwrap_or_default());
let author_id = object.attributed_to().id().unwrap_or_default();
let author = CACHE.get_or(&author_id, serde_json::Value::String(author_id.clone()));
let attachments = object.attachment()
.map(|x| view! {
<p class="center"><img class="attachment" src={x.url().id().unwrap_or_default()} title={x.name().unwrap_or_default().to_string()} /></p>
<p class="center">
<a href={x.url().id().unwrap_or_default()} target="_blank">
<img class="attachment" src={x.url().id().unwrap_or_default()} title={x.name().unwrap_or_default().to_string()} />
</a>
</p>
})
.collect_view();
let attachments_padding = if object.attachment().is_empty() {
None
} else {
Some(view! { <div class="pb-1"></div> })
};
view! {
<table class="align w-100">
<tr>
@ -33,10 +41,27 @@ pub fn Object(object: serde_json::Value) -> impl IntoView {
</tr>
</table>
<blockquote class="tl">
{if summary.is_empty() { None } else { Some(view! { <code class="color ml-1">{summary}</code> })}}
{content.into_iter().map(|x| view! { <p>{x}</p> }).collect_view()}
<Summary summary=object.summary().map(|x| x.to_string()) >
{content.into_iter().map(|x| view! { <p>{x}</p> }).collect_view()}
{attachments_padding}
{attachments}
</Summary>
</blockquote>
{attachments}
}
}
#[component]
pub fn Summary(summary: Option<String>, children: Children) -> impl IntoView {
match summary.filter(|x| !x.is_empty()) {
None => children().into_view(),
Some(summary) => view! {
<details class="pa-s">
<summary>
<code class="cw color ml-s w-100">{summary}</code>
</summary>
{children()}
</details>
}.into_view(),
}
}