Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TWE-10 - BE - Statistics group block (Division page) #328

Merged
merged 5 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions tbx/core/blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -973,6 +973,27 @@ class NumericStatisticsBlock(blocks.StructBlock):

class Meta:
icon = "table"
label_format = "{headline_number} {description} {further_details}"


class NumericStatisticsGroupBlock(blocks.StructBlock):
title = blocks.CharBlock(max_length=255, required=False)
intro = blocks.RichTextBlock(
features=settings.NO_HEADING_RICH_TEXT_FEATURES, required=False
)
statistics = blocks.ListBlock(
NumericStatisticsBlock(),
max_num=4,
min_num=1,
)

class Meta:
group = "Custom"
icon = "table"
label = "Numeric statistics"
template = (
"patterns/molecules/streamfield/blocks/numeric_stats_group_block.html"
)


class TextualStatisticsBlock(blocks.StructBlock):
Expand Down
2 changes: 2 additions & 0 deletions tbx/divisions/blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
FeaturedServicesBlock,
FourPhotoCollageBlock,
IntroductionWithImagesBlock,
NumericStatisticsGroupBlock,
PartnersBlock,
StoryBlock,
)
Expand All @@ -10,5 +11,6 @@
class DivisionStoryBlock(StoryBlock):
four_photo_collage = FourPhotoCollageBlock()
introduction_with_images = IntroductionWithImagesBlock()
numeric_statistics = NumericStatisticsGroupBlock()
partners_block = PartnersBlock()
featured_services = FeaturedServicesBlock()
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{% load wagtailcore_tags wagtailimages_tags %}
<div class="grid__stats-group stats-group">
{% if value.title %}
{% include "patterns/atoms/motif-heading/motif-heading.html" with heading_level=2 heading=value.title classes="motif-heading motif-heading--two-c motif-heading--static stats-group__heading" %}
{% endif %}
{% if value.intro %}
<div class="text text--five stats-group__intro">{{ value.intro|richtext }}</div>
{% endif %}
{# Stats #}
{# Not sure if the impact report page (which uses stats_numeric.html) should be affected. #}
{% include "patterns/molecules/streamfield/blocks/stats_numeric.html" with value=value.statistics %}
</div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
context:
value:
title: Lighting little fires
intro: 'Torchbox has been supporting charities since the start of the digital era. Some of the stats we&apos;re particularly proud of:'
statistics:
- headline_number: 120
description: charities
further_details: and counting...
- headline_number: 24
description: years
further_details: working with the sector
- headline_number: '263%'
description: traffic increase
further_details: for an imaginary charity
- headline_number: 1
description: Guinness record
further_details: working with the DEC
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ <h2 class="underline mt-8 mb-2">Stats block textual</h2>
{% include "patterns/molecules/streamfield/blocks/stats_textual.html" %}
</div>

<div>
<h2 class="underline mt-8 mb-2">Numeric stats group block</h2>
{% include "patterns/molecules/streamfield/blocks/numeric_stats_group_block.html" %}
</div>

<div>
<h2 class="underline mt-8 mb-2">Event block</h2>
{% include "patterns/molecules/streamfield/blocks/event_block.html" %}
Expand Down
3 changes: 2 additions & 1 deletion tbx/static_src/sass/components/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@
}

&__related-posts-simple,
&__team-listing {
&__team-listing,
&__stats-group {
grid-column: 2 / span 4;

@include media-query(large) {
Expand Down
20 changes: 20 additions & 0 deletions tbx/static_src/sass/components/_stats-group.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@use 'config' as *;

.stats-group {
&__heading {
margin-bottom: $spacer-mini;

@include media-query('large') {
max-width: 50%;
}
}

&__intro {
margin-bottom: $spacer-medium;

@include media-query('large') {
margin-bottom: $spacer-half;
max-width: 60%;
}
}
}
12 changes: 6 additions & 6 deletions tbx/static_src/sass/components/_stats.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@

&__number {
@include font-size(size-zero);
color: var(--color--heading);
color: var(--color--theme-primary);
display: block;
font-weight: $weight--light;
line-height: 1;
font-weight: $weight--semibold;
}

&__text {
Expand All @@ -51,14 +50,15 @@
}

&__description {
@include font-size('size-five');
@include font-size('size-four');
font-weight: $weight--semibold;
color: var(--color--heading);
display: block;
margin-bottom: $spacer-mini;
line-height: 1;
}

&__details {
@include font-size('size-eight');
@include font-size('size-seven');
display: block;
}
}
1 change: 1 addition & 0 deletions tbx/static_src/sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
@use 'components/markdown-block';
@use 'components/mode-switcher';
@use 'components/motif-heading';
@use 'components/stats-group';
@use 'components/pagination';
@use 'components/partners';
@use 'components/photo-collage';
Expand Down
Loading