| 1 | {{ define "actions-sidebar" -}} |
| 2 | <aside class="shithub-actions-sidebar" aria-label="Actions navigation"> |
| 3 | <div class="shithub-actions-sidebar-head"> |
| 4 | <h2>Actions</h2> |
| 5 | <span class="shithub-button shithub-button-primary shithub-actions-new-workflow is-disabled" aria-disabled="true" title="Workflow creation UI is coming later">New workflow</span> |
| 6 | </div> |
| 7 | <nav> |
| 8 | <a href="{{ .ActionsSidebar.AllHref }}" class="shithub-actions-nav-item{{ if .ActionsSidebar.AllActive }} is-active{{ end }}"{{ if .ActionsSidebar.AllActive }} aria-current="page"{{ end }}> |
| 9 | <span>All workflows</span> |
| 10 | </a> |
| 11 | <div class="shithub-actions-sidebar-section"> |
| 12 | <h3>Workflows</h3> |
| 13 | {{ if .ActionsSidebar.Workflows }} |
| 14 | {{ range .ActionsSidebar.Workflows }} |
| 15 | <a href="{{ .Href }}" class="shithub-actions-nav-item{{ if .Active }} is-active{{ end }}"{{ if .Active }} aria-current="page"{{ end }}> |
| 16 | <span>{{ .Name }}</span> |
| 17 | <span class="shithub-actions-pin-placeholder" aria-hidden="true">{{ octicon "pin" }}</span> |
| 18 | </a> |
| 19 | {{ end }} |
| 20 | {{ else }} |
| 21 | <p>No workflows have run yet.</p> |
| 22 | {{ end }} |
| 23 | </div> |
| 24 | <div class="shithub-actions-sidebar-section"> |
| 25 | <h3>Management</h3> |
| 26 | {{ range .ActionsSidebar.Management }} |
| 27 | <a href="{{ .Href }}" class="shithub-actions-nav-item shithub-actions-nav-item-visual{{ if .Active }} is-active{{ end }}"{{ if .Active }} aria-current="page"{{ end }}> |
| 28 | <span class="shithub-actions-nav-visual">{{ octicon .Icon }}</span> |
| 29 | <span>{{ .Label }}</span> |
| 30 | </a> |
| 31 | {{ end }} |
| 32 | </div> |
| 33 | </nav> |
| 34 | </aside> |
| 35 | {{- end }} |