1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use crate::{
RenderInfo,
components::{node_page::aspect_class, props::Props},
};
use jellycommon::{
jellyobject::Object,
routes::{u_image, u_node_slug, u_node_slug_player},
*,
};
markup::define! {
NodeCard<'a>(ri: &'a RenderInfo<'a>, nku: Object<'a>) {
@let node = nku.get(NKU_NODE).unwrap_or_default();
@let slug = node.get(NO_SLUG).unwrap_or_default();
@let cls = format!("node card poster {}", aspect_class(node));
div[class=cls] {
.poster {
a[href=u_node_slug(&slug)] {
img[src=u_image(node.get(NO_PICTURES).unwrap_or_default().get(PICT_COVER).unwrap_or_default(), 512), loading="lazy"];
}
.cardhover.item {
@if node.has(NO_TRACK.0) {
a.play.icon[href=u_node_slug_player(&slug)] { "play_arrow" }
}
@Props { ri, nku: *nku, full: false }
}
}
div.title {
a[href=u_node_slug(&slug)] {
@node.get(NO_TITLE)
}
}
div.subtitle {
span {
@node.get(NO_SUBTITLE)
}
}
}
}
NodeCardWide<'a>(ri: &'a RenderInfo<'a>, nku: Object<'a>) {
div[class="node card widecard poster"] {
// div[class=&format!("poster {}", aspect_class(node.kind))] {
// a[href=u_node_slug(&node.slug)] {
// img[src=u_node_image(&node.slug, PictureSlot::Cover, 512), loading="lazy"];
// }
// .cardhover.item {
// @if node.media.is_some() {
// a.play.icon[href=u_node_slug_player(&node.slug)] { "play_arrow" }
// }
// }
// }
// div.details {
// a.title[href=u_node_slug(&node.slug)] { @node.title }
// @Props { node, udata, full: false, lang }
// span.overview { @node.description }
// }
}
}
}
|