aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-03-29 18:52:31 -0600
committerMelody Horn <melody@boringcactus.com>2021-03-29 18:52:31 -0600
commit563eda8e7772a49ebe242b65849359db0a077672 (patch)
tree88cb421fba5982620f1d7f657a2fb2f86588c046 /templates
parente7b83c7c57483277fa243dd7ff1068c8ff33438f (diff)
downloadwhere-packaged-563eda8e7772a49ebe242b65849359db0a077672.tar.gz
where-packaged-563eda8e7772a49ebe242b65849359db0a077672.zip
flatten repository metastructure
Diffstat (limited to 'templates')
-rw-r--r--templates/badge.svg.jinja30
1 files changed, 10 insertions, 20 deletions
diff --git a/templates/badge.svg.jinja b/templates/badge.svg.jinja
index 972c39a..8143cff 100644
--- a/templates/badge.svg.jinja
+++ b/templates/badge.svg.jinja
@@ -2,20 +2,13 @@
{%- set ROW_MARGIN = 2 -%}
{%- set FONT_SIZE_PERCENT = 75 -%}
{%- set FONT_SIZE = (ROW_HEIGHT - ROW_MARGIN) * FONT_SIZE_PERCENT / 100 -%}
-{%- set ROWS = 1 + versions|length + (versions.values()|map('length')|sum) -%}
+{%- set ROWS = 1 + versions|length -%}
{%- set OUTER_MARGIN = 5 -%}
-{%- set REPO_LEFT_MARGIN = 15 -%}
{%- set FONT_WIDENESS = 0.5 -%}
-{# ugh. just ugh. #}
-{%- set ns = namespace(longest_repo = 0, longest_version = 0) -%}
-{%- for family_contents in versions.values() -%}
- {%- set this_longest_repo = family_contents.keys()|map('length')|max -%}
- {%- set this_longest_version = family_contents.values()|map('string')|map('length')|max -%}
- {%- set ns.longest_repo = [ns.longest_repo, this_longest_repo]|max -%}
- {%- set ns.longest_version = [ns.longest_version, this_longest_version]|max -%}
-{%- endfor -%}
-{%- set VERSION_X = OUTER_MARGIN + REPO_LEFT_MARGIN + ns.longest_repo * FONT_WIDENESS * FONT_SIZE -%}
-{%- set VERSION_WIDTH = OUTER_MARGIN + ns.longest_version * FONT_WIDENESS * FONT_SIZE -%}
+{%- set LONGEST_REPO = versions.keys()|map('length')|max -%}
+{%- set LONGEST_VERSION = versions.values()|map('string')|map('length')|max -%}
+{%- set VERSION_X = OUTER_MARGIN + LONGEST_REPO * FONT_WIDENESS * FONT_SIZE -%}
+{%- set VERSION_WIDTH = OUTER_MARGIN + LONGEST_VERSION * FONT_WIDENESS * FONT_SIZE -%}
{%- set WIDTH = VERSION_X + VERSION_WIDTH -%}
{%- set ns = namespace(y = 0) -%}
{%- macro y(offset=0) -%}{{ ns.y + offset }}{%- endmacro -%}
@@ -27,13 +20,10 @@
<text x="5" y="{{ texty() }}" fill="white">Packaging Status</text>
<line x1="0" y1="{{ y(ROW_HEIGHT - ROW_MARGIN / 2) }}" x2="{{ WIDTH }}" y2="{{ y(ROW_HEIGHT - ROW_MARGIN / 2) }}"
stroke="white" stroke-width="{{ ROW_MARGIN }}"></line>{{ end_row() }}
- {% for family, family_contents in versions.items() %}
- <text x="{{ OUTER_MARGIN }}" y="{{ texty() }}">{{ family }}</text>{{ end_row() }}
- {% for repo, version in family_contents.items() %}
- <text x="{{ REPO_LEFT_MARGIN }}" y="{{ texty() }}">{{ repo }}</text>
- <rect x="{{ VERSION_X }}" y="{{ y() }}" width="{{ VERSION_WIDTH }}" height="{{ ROW_HEIGHT }}"
- fill="{% if version < newest_version %}red{% else %}green{% endif %}"></rect>
- <text x="{{ VERSION_X + OUTER_MARGIN }}" y="{{ texty() }}">{{ version }}</text>{{ end_row() }}
- {% endfor %}
+ {% for repo, version in versions.items() %}
+ <text x="{{ OUTER_MARGIN }}" y="{{ texty() }}">{{ repo }}</text>
+ <rect x="{{ VERSION_X }}" y="{{ y() }}" width="{{ VERSION_WIDTH }}" height="{{ ROW_HEIGHT }}"
+ fill="{% if version < newest_version %}red{% else %}green{% endif %}"></rect>
+ <text x="{{ VERSION_X + OUTER_MARGIN }}" y="{{ texty() }}">{{ version }}</text>{{ end_row() }}
{% endfor %}
</svg>