Files
FixIt/layouts/_shortcodes/tabs.html
T
Cell 5b43c2b6a3 fix(tabs): improve tab shortcode rendering and restore sticky code header (#772)
* fix(tabs): improve tab shortcode rendering and trim whitespace

* fix(tabs): restore sticky code header for left/right placement
2026-05-28 12:56:07 +08:00

57 lines
2.3 KiB
HTML

{{- /*
Renders a tabbed interface with multiple tabs and their corresponding content.
See https://fixit.lruihao.cn/documentation/content-management/shortcodes/extended/tabs/
@param {int} [defaultTab=0] - The index of the tab to be active by default (0-based)
@param {string} [type="underline"] - The style type of the tabs ("underline", "pill", "card", "segment", etc.)
@param {string} [placement="top"] - The placement of the tabs ("top", "bottom", "left", "right")
Usage:
{{< tabs defaultTab="1" type="card" placement="top" >}}
{{% tab title="Tab 1" %}}
Content for Tab 1
{{% /tab %}}
{{% tab title="Tab 2" %}}
Content for Tab 2
{{% /tab %}}
{{< /tabs >}}
Note: Tabs must be defined using the nested "tab" shortcode within the "tabs" shortcode.
*/ -}}
{{- if ne hugo.Context.MarkupScope "home" -}}
{{- $tabs := .Store.Get "tabs" -}}
{{- if not $tabs -}}
{{- errorf "No tabs found. Please add at least one tab to the tabs shortcode. See %s %s" .Name .Position -}}
{{- end -}}
{{- $lenTabs := len $tabs -}}
{{- $defaultTab := .Get "defaultTab" | default 0 -}}
{{- $type := .Get "type" | default "underline" -}}
{{- $placement := .Get "placement" | default "top" -}}
{{- $placementMap := slice "top" "bottom" "left" "right" -}}
{{- if ge $defaultTab $lenTabs -}}
{{- warnf "The defaultTab value %v is out of range [0, %v]. See %s %s" $defaultTab (sub $lenTabs 1) .Name .Position -}}
{{- $defaultTab = 0 -}}
{{- end -}}
{{- if not (in $placementMap $placement) -}}
{{- warnf "The placement value %q is invalid. Supported values are: %v. See %s %s" $placement (delimit $placementMap ", ") .Name .Position -}}
{{- $placement = "top" -}}
{{- end -}}
{{- /* Tabs Container */ -}}
<div class="shortcode-tabs">
<tab-container default-tab="{{ $defaultTab }}" placement="{{ $placement }}"{{ with $type }} type="{{ . }}"{{ end }}>
{{- range $index, $tab := $tabs -}}
{{- $title := $tab.title | default (printf "Untitled%v" $index) -}}
{{- $id := $tab.id -}}
<button class="tab-button" type="button" role="tab" id="tab-{{ $id }}" aria-selected="{{ eq $index $defaultTab }}">{{ $title | $.Page.RenderString }}</button>
{{- end -}}
{{- .Inner | strings.TrimSpace | .Page.RenderString -}}
</tab-container>
</div>
{{- .Page.Store.Set "hasTabs" true -}}
{{- end -}}