mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-15 20:40:52 +09:00
b998c3c1aa
### Description This PR implements an optimized, adaptive client-side auto-refresh mechanism for the Gitea Actions workflow runs list page. It allows users to see workflow progress updates dynamically without having to reload the page. Fixes https://github.com/go-gitea/gitea/issues/37457 --------- Signed-off-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
47 lines
2.3 KiB
Handlebars
47 lines
2.3 KiB
Handlebars
{{$page := or $.Page ctx.RootData.Page}}
|
|
{{$paginationLink := $.Link}}
|
|
{{if eq $paginationLink nil}}{{$paginationLink = ctx.RootData.Link}}{{end}}
|
|
{{if eq $paginationLink AppSubUrl}}{{$paginationLink = print $paginationLink "/"}}{{end}}
|
|
{{$paginationParams := $page.GetParams}}
|
|
{{with $page.Paginater}}
|
|
{{if or (eq .TotalPages -1) (gt .TotalPages 1)}}
|
|
{{$showFirstLast := gt .TotalPages 1}}
|
|
<div class="center page buttons">
|
|
<div class="ui borderless pagination menu">
|
|
{{if $showFirstLast}}
|
|
<a class="{{if .IsFirst}}disabled{{end}} item navigation" {{if not .IsFirst}}href="{{$paginationLink}}{{if $paginationParams}}?{{$paginationParams}}{{end}}"{{end}}>
|
|
{{svg "gitea-double-chevron-left" 16 "tw-mr-1"}}
|
|
<span class="navigation_label">{{ctx.Locale.Tr "admin.first_page"}}</span>
|
|
</a>
|
|
{{end}}
|
|
|
|
<a class="{{if not .HasPrevious}}disabled{{end}} item navigation" {{if .HasPrevious}}href="{{$paginationLink}}?page={{.Previous}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}>
|
|
{{svg "octicon-chevron-left" 16 "tw-mr-1"}}
|
|
<span class="navigation_label">{{ctx.Locale.Tr "repo.issues.previous"}}</span>
|
|
</a>
|
|
{{$pages := .Pages}}
|
|
{{$pagesLen := len $pages}}
|
|
{{range $pages}}
|
|
{{if eq .Num -1}}
|
|
<a class="disabled item">...</a>
|
|
{{else}}
|
|
{{/* do not highlight the current page if there is only one page */}}
|
|
<a class="{{if and .IsCurrent (gt $pagesLen 1)}}active {{end}}item" {{if not .IsCurrent}}href="{{$paginationLink}}?page={{.Num}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}>{{.Num}}</a>
|
|
{{end}}
|
|
{{end}}
|
|
<a class="{{if not .HasNext}}disabled{{end}} item navigation" {{if .HasNext}}href="{{$paginationLink}}?page={{.Next}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}>
|
|
<span class="navigation_label">{{ctx.Locale.Tr "repo.issues.next"}}</span>
|
|
{{svg "octicon-chevron-right" 16 "tw-ml-1"}}
|
|
</a>
|
|
|
|
{{if $showFirstLast}}
|
|
<a class="{{if .IsLast}}disabled{{end}} item navigation" {{if not .IsLast}}href="{{$paginationLink}}?page={{.TotalPages}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}>
|
|
<span class="navigation_label">{{ctx.Locale.Tr "admin.last_page"}}</span>
|
|
{{svg "gitea-double-chevron-right" 16 "tw-ml-1"}}
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
{{end}}
|