forked from rebillar/site-accueil-insa
53 lines
2.9 KiB
Twig
53 lines
2.9 KiB
Twig
|
|
{% macro sparklineEvolution(evolution) %}
|
|
{% set evolutionPretty = evolution.percent %}
|
|
{% set compareValue = evolution.trend is defined ? evolution.trend : evolution.percent %}
|
|
{% if compareValue < 0 %}
|
|
{% set evolutionClass = 'negative-evolution' %}
|
|
{% set evolutionIcon = 'arrow_down.png' %}
|
|
{% elseif compareValue == 0 or compareValue == '0%' %}
|
|
{% set evolutionClass = 'neutral-evolution' %}
|
|
{% set evolutionIcon = 'stop.png' %}
|
|
{% else %}
|
|
{% set evolutionClass = 'positive-evolution' %}
|
|
{% set evolutionIcon = 'arrow_up.png' %}
|
|
{% set evolutionPretty = '+' ~ evolution.percent %}
|
|
{% endif %}
|
|
|
|
<span class="metricEvolution" title="{{ evolution.tooltip|rawSafeDecoded|e('html_attr') }}">
|
|
<img style="padding-right:4px" src="plugins/MultiSites/images/{{ evolutionIcon }}" alt="" />
|
|
<strong class="{{ evolutionClass }}" aria-hidden="true">{{ evolutionPretty }}</strong></span>
|
|
{% endmacro %}
|
|
|
|
{% macro singleSparkline(sparkline, allMetricsDocumentation, areSparklinesLinkable) %}
|
|
|
|
<div class="sparkline {% if areSparklinesLinkable is defined and not areSparklinesLinkable %}notLinkable{% endif %}"
|
|
{% if sparkline.seriesIndices|default is not empty %}data-series-indices="{{ sparkline.seriesIndices|json_encode|e('html_attr') }}"{% endif %}
|
|
{% if sparkline.graphParams|default is not empty %}data-graph-params="{{ sparkline.graphParams|json_encode|e('html_attr') }}"{% endif %}
|
|
>
|
|
<div>
|
|
{% if sparkline.title|default is not empty %}<h6 class="sparkline-title" title="{{ sparkline.title|rawSafeDecoded|e('html_attr') }}">{{ sparkline.title }}</h6>{% endif %}
|
|
{% if sparkline.url %}{{ sparkline(sparkline.url)|raw }}{% endif %}
|
|
</div>
|
|
<div>
|
|
{% for groupName, group in sparkline.metrics %}
|
|
{% if groupName is not empty %}<span class="metric-group-title">{{ groupName }}</span>{% endif %}
|
|
{% for metric in group %}
|
|
<span class="sparkline-metrics" {% if allMetricsDocumentation[metric.column] is defined and allMetricsDocumentation[metric.column] %}title="{{ allMetricsDocumentation[metric.column] }}"{% endif %}>
|
|
{% if '%s' in metric.description -%}
|
|
{{ metric.description|translate("<strong>"~metric.value|number(2)~"</strong>")|raw }}
|
|
{%- else %}
|
|
<strong>{{ metric.value|number(2) }}</strong> {{ metric.description }}
|
|
{%- endif %}{% if not loop.last %}, {% endif %}
|
|
</span>
|
|
{% if metric.evolution is defined %}
|
|
{{ _self.sparklineEvolution(metric.evolution) }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% if sparkline.evolution is defined %}
|
|
{{ _self.sparklineEvolution(sparkline.evolution) }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endmacro %}
|