mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 11:33:20 +01:00
22 lines
1.2 KiB
HTML
22 lines
1.2 KiB
HTML
{{- $width := cond .IsNamedParams (.Get "width") (.Get 0) | default "100%" -}}
|
|
{{- $height := cond .IsNamedParams (.Get "height") (.Get 1) | default "30rem" -}}
|
|
{{- if (.Get "file") -}}
|
|
{{- $chart_filename := (.Get "file") -}}
|
|
{{- $scratch := newScratch -}}
|
|
{{- $scratch.Set "absolute_filename" "" -}}
|
|
{{- with .Get "file" -}}
|
|
{{- $chart_name := index (split (path.Base $chart_filename) ".") 0 -}}
|
|
{{- $chart_absolute_filename := add "/" $chart_filename -}}
|
|
{{- $scratch.Set "absolute_filename" $chart_absolute_filename -}}
|
|
{{- $id := add "echart_" $chart_name -}}
|
|
{{- $scratch.Set "divid" $id -}}
|
|
{{- end -}}
|
|
{{ $id := $scratch.Get "divid" }}
|
|
{{ $chart_absolute_filename := $scratch.Get "absolute_filename" }}
|
|
<div class="echarts" data-filename="{{- $chart_absolute_filename -}}" id="{{ $id }}" style="width: {{ $width }}; height: {{ $height }};"></div>
|
|
{{- else -}}
|
|
{{- $content := .Inner | transform.Unmarshal | jsonify -}}
|
|
{{- $id := dict "Content" $content "Scratch" .Page.Scratch | partial "function/id.html" -}}
|
|
<div class="echarts" id="{{ $id }}" style="width: {{ $width }}; height: {{ $height }};"></div>
|
|
{{- end -}}
|
|
{{- .Page.Scratch.SetInMap "this" "echarts" true -}}
|