Compare commits

...

17 Commits

Author SHA1 Message Date
1d24b8bcad move reaction section to own template 2023-12-29 18:35:09 -06:00
129dfdd7c8 format the html 2023-12-29 18:34:55 -06:00
bbc89f5969 have reactions enabled 2023-12-29 18:34:42 -06:00
bb63b18391 Move the col class to gallery 2023-12-29 18:22:12 -06:00
c8fd56837f move masonry to official cdn 2023-12-29 17:50:53 -06:00
eaddc0641f hide the title if there's a headline, add the reaction button to headline 2023-12-29 17:50:33 -06:00
40911124fd Add a headline 2023-12-29 17:25:50 -06:00
92a985b3e1 ensure title and heading contain something before rendering containers 2023-12-29 17:25:41 -06:00
31c761a991 Show card loading for example 2023-12-29 17:19:46 -06:00
4efdf5a674 Add headline to card 2023-12-29 17:19:21 -06:00
9fda7b5714 remove bootstrap from repo 2023-12-29 16:27:13 -06:00
a8e4957ce9 don't need image sizes 2023-12-29 16:14:08 -06:00
94e51683e2 make description and title optional; can't react to no-title pictures 2023-12-29 16:12:43 -06:00
1c26150822 more compact and more compliant(?) titles bars 2023-12-29 16:05:14 -06:00
61345ebb61 fix typo, disable call to action 2023-12-29 15:50:35 -06:00
b0520d2548 enable masonry 2023-12-29 15:48:28 -06:00
98741cde04 Add masonry 2023-12-29 15:46:25 -06:00
7 changed files with 123 additions and 98 deletions

View File

@@ -1,61 +1,58 @@
<div class="col">
<div class="card shadow-sm">
<div class="card-header">
<span class="flex">{{ this.title }}</span>
<a
href="#"
class="btn btn-link float-end"
data-bs-toggle="tooltip"
data-bs-placement="top"
data-bs-title="Add a reaction"
>
<i class="bi-heart-fill text-end" style="font-size: 1rem; color: pink;"></i>
<div class="card shadow-sm">
{% if this.headline and this.headline|length >= 1 and not this.title %}
<div class="card-header position-relative">
{{ this.headline }}
{% if gallery.reactions_enabled|default(False) %}
<a href="#" class="btn btn-link float-end">
<i class="bi-heart-fill position-absolute translate-middle top-50 end-1 text-danger"></i>
</a>
{% endif %}
</div>
{% endif %}
<img
class="card-image-top"
width="{{ this.width | default('100%') }}"
height="{{ this.height | default('100%') }}"
src="{{ this.src }}"
alt="{{ this.alt_text if this.alt_text else this.title }}"
/>
<div class="card-body">
<p class="card-text">{{ this.description | default('') }}</p>
</div>
{% if this.description and this.description|length >= 1 %}
<div class="card-body position-relative">
{% if this.reactions and gallery.max_reactions_per_card|int >= 1 %}
<div class="card-footer text-body-secondary text-end">
{% if this.title and this.title|length >= 1 %}
<h5 class="card-title">{{ this.title }}</h5>
{% set reaction_iterations = namespace(value=0) %}
{% for reaction, reaction_count in this.reactions|dictsort(by="value") %}
{# Don't render reaction if we've reached the max number, or its counter is 0 (or lower) #}
{% if reaction_iterations.value|int != gallery.max_reactions_per_card|int and reaction_count|int >= 1 %}
<button class="btn btn-link btn-sm disabled text-body position-relative">
{# TODO: Enable the button, and make clicking it toggle adding/removing that reaction to the counter, also color reaction button #}
<i class="bi-{{ reaction }}"></i>
{# Only show counter if more than 2 people gave the same reaction #}
{% if reaction_count|int >= 2 %}
<span class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-body-inverted text-body-inverted">
{# Don't render reaction counts larger than 1000 #}
{{ reaction_count if reaction_count <= 999 else '1K+' }}
<span class="visually-hidden">
{{ reaction_count }} people reacted with {{ reaction }}
</span>
</span>
{% if this.subtitle and this.subtitle|length >= 1 %}
<h6 class="card-subtitle mb-2 text-body-secondary">{{ this.subtitle }}</h6>
{% endif %}
</button>
{% set reaction_iterations.value = reaction_iterations.value + 1 %}
{% if gallery.reactions_enabled|default(False) %}
<a href="#" class="btn btn-link position-absolute bottom-1 end-0">
<i class="bi-heart-fill text-danger"></i>
</a>
{% endif %}
{% endfor %}
{% set reaction_iterations = none %}
</div>
{% endif %}
<p class="card-text">{{ this.description }}</p>
{% if this.subtext and this.subtext|length >= 1 %}
<p class="card-text">
<small class="text-body-secondary">
{{ this.subtext }}
</small>
</p>
{% endif %}
</div>
{% endif %}
{# Don't render reaction section if disabled or max reactions are zero (or less) #}
{% if gallery.reactions_enabled|default(False) or gallery.max_reactions_per_card|int <= 0 %}
{% include 'card_reaction_section.html' %}
{% endif %}
</div>

View File

@@ -1,5 +1,4 @@
<div class="col">
<div class="card" aria-hidden="true">
<div class="card" aria-hidden="true">
<div class="card-header">
<div class="d-flex align-items-center">
<strong role="status">Loading...</strong>
@@ -19,5 +18,5 @@
<span class="placeholder col-8"></span>
</p>
</div>
</div>
</div>

View File

@@ -0,0 +1,35 @@
{% if this.reactions and gallery.max_reactions_per_card|int >= 1 %}
<div class="card-footer text-body-secondary text-end">
{% set reaction_iterations = namespace(value=0) %}
{% for reaction, reaction_count in this.reactions|dictsort(by="value") %}
{# Don't render reaction if we've reached the max number, or its counter is 0 (or lower) #}
{% if reaction_iterations.value|int != gallery.max_reactions_per_card|int and reaction_count|int >= 1 %}
<button class="btn btn-link btn-sm disabled text-body position-relative">
{# TODO: Enable the button, and make clicking it toggle adding/removing that reaction to the counter, also color reaction button #}
<i class="bi-{{ reaction }}"></i>
{# Only show counter if more than 2 people gave the same reaction #}
{% if reaction_count|int >= 2 %}
<span class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-body-inverted text-body-inverted">
{# Don't render reaction counts larger than 1000 #}
{{ reaction_count if reaction_count <= 999 else '1K+' }}
<span class="visually-hidden">
{{ reaction_count }} people reacted with {{ reaction }}
</span>
</span>
{% endif %}
</button>
{% set reaction_iterations.value = reaction_iterations.value + 1 %}
{% endif %}
{% endfor %}
{% set reaction_iterations = none %}
</div>
{% endif %}

View File

@@ -1,10 +1,10 @@
<div class="album py-5 bg-body-tertiary">
<div class="container">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3" data-memory='{"PercentPossition": true}'>
{% for this in gallery_items %}
{% include 'card.html' %}
{# include 'card_loading.html' #}
<div class="col-md">{% include 'card.html' %}</div>
<div class="col-md">{% include 'card_loading.html' %}</div>
{% endfor %}
</div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

21
test.py
View File

@@ -19,12 +19,18 @@ template_vars = {
"static": {
"scripts": {
"bootstrap": {
"src": "./templates/static/bootstrap.bundle.min.js",
"src": "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js",
},
"theme": {
"src": "./templates/static/color-modes.js",
"place_in_head": True,
},
"masonry": {
"src": "https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"
},
"theme": {"src": "./templates/static/color-modes.js", "place_in_head": True},
},
"css": {
"bootstrap": {"src": "./templates/static/bootstrap.min.css"},
"bootstrap": {"src": "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"},
"theme": {"src": "./templates/static/gallery.css"},
"icons": {
"src": "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css"
@@ -49,7 +55,7 @@ template_vars = {
"extra_lines": ["This is another line", "This is yet another line"],
},
"call_to_action": {
"active": True,
"active": False,
"header": "This is a call to action",
"lead_text": "Some interesting text for the user",
"buttons": [
@@ -66,12 +72,13 @@ template_vars = {
},
"gallery": {
"max_reactions_per_card": 9,
"reactions_enabled": True,
},
"gallery_items": [
{
"src": "https://files.c0defox.es/Pictures/arctic-fox.jpg",
"headline": "Alopex-Vulpes",
"description": "An arctic fox :3",
"title": "fox",
"reactions": {
"0-circle": 1,
"1-circle": 2,
@@ -109,8 +116,8 @@ template_vars = {
{
"src": "https://c0defox.es/paw-tail.svg",
"alt_text": "a fox tail next to a paw print",
"title": ""
}
"title": "",
},
],
}