feat(web): expandable images
is it sustainable to create a signal for each image? we'll find out!
This commit is contained in:
parent
1ce364276b
commit
7617170206
2 changed files with 19 additions and 6 deletions
|
@ -155,12 +155,18 @@
|
|||
max-height: 2em;
|
||||
}
|
||||
img.attachment {
|
||||
cursor: pointer;
|
||||
height: 10em;
|
||||
width: 100%;
|
||||
border: 5px solid #bf616a;
|
||||
padding: 5px;
|
||||
object-fit: cover;
|
||||
}
|
||||
img.expand {
|
||||
height: unset;
|
||||
max-height: 50vh;
|
||||
object-fit: contain;
|
||||
}
|
||||
div.tl-header {
|
||||
background-color: #bf616a55;
|
||||
color: #bf616a;
|
||||
|
|
|
@ -11,12 +11,19 @@ pub fn Object(object: serde_json::Value) -> impl IntoView {
|
|||
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! {
|
||||
.map(|x| {
|
||||
let (expand, set_expand) = create_signal(false);
|
||||
view! {
|
||||
<p class="center">
|
||||
<a href={x.url().id().unwrap_or_default()} target="_blank">
|
||||
<img class="attachment ml-1" src={x.url().id().unwrap_or_default()} title={x.name().unwrap_or_default().to_string()} />
|
||||
</a>
|
||||
<img
|
||||
class="attachment ml-1"
|
||||
class:expand=expand
|
||||
src={x.url().id().unwrap_or_default()}
|
||||
title={x.name().unwrap_or_default().to_string()}
|
||||
on:click=move |_| set_expand.set(!expand.get())
|
||||
/>
|
||||
</p>
|
||||
}
|
||||
})
|
||||
.collect_view();
|
||||
let attachments_padding = if object.attachment().is_empty() {
|
||||
|
|
Loading…
Reference in a new issue