2023-07-31 22:13:42 +00:00
|
|
|
<div id="activity-feed" class="flex-list">
|
|
|
|
{{range .Feeds}}
|
|
|
|
<div class="flex-item">
|
|
|
|
<div class="flex-item-leading">
|
2023-08-10 03:19:39 +00:00
|
|
|
{{ctx.AvatarUtils.AvatarByAction .}}
|
2023-07-31 22:13:42 +00:00
|
|
|
</div>
|
2024-03-24 14:31:35 +00:00
|
|
|
<div class="flex-item-main tw-gap-2">
|
2023-07-31 22:13:42 +00:00
|
|
|
<div>
|
|
|
|
{{if gt .ActUser.ID 0}}
|
2024-03-02 15:30:18 +00:00
|
|
|
<a href="{{AppSubUrl}}/{{(.GetActUserName ctx) | PathEscape}}" title="{{.GetActDisplayNameTitle ctx}}">{{.GetActDisplayName ctx}}</a>
|
2023-07-31 22:13:42 +00:00
|
|
|
{{else}}
|
2023-09-29 12:12:54 +00:00
|
|
|
{{.ShortActUserName ctx}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{end}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{if .GetOpType.InActions "create_repo"}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.create_repo" (.GetRepoLink ctx) (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "rename_repo"}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.rename_repo" .GetContent (.GetRepoLink ctx) (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "commit_repo"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{if .Content}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.commit_repo" (.GetRepoLink ctx) (.GetRefLink ctx) .GetBranch (.ShortRepoPath ctx)}}
|
2019-03-27 22:22:39 +00:00
|
|
|
{{else}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.create_branch" (.GetRepoLink ctx) (.GetRefLink ctx) .GetBranch (.ShortRepoPath ctx)}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{end}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "create_issue"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.create_issue" (printf "%s/issues/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "create_pull_request"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.create_pull_request" (printf "%s/pulls/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "transfer_repo"}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.transfer_repo" .GetContent (.GetRepoLink ctx) (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "push_tag"}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.push_tag" (.GetRepoLink ctx) (.GetRefLink ctx) .GetTag (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "comment_issue"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.comment_issue" (printf "%s/issues/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "merge_pull_request"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.merge_pull_request" (printf "%s/pulls/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "close_issue"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.close_issue" (printf "%s/issues/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "reopen_issue"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.reopen_issue" (printf "%s/issues/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "close_pull_request"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.close_pull_request" (printf "%s/pulls/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "reopen_pull_request"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.reopen_pull_request" (printf "%s/pulls/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "delete_tag"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.delete_tag" (.GetRepoLink ctx) .GetTag (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "delete_branch"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.delete_branch" (.GetRepoLink ctx) .GetBranch (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "mirror_sync_push"}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.mirror_sync_push" (.GetRepoLink ctx) (.GetRefLink ctx) .GetBranch (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "mirror_sync_create"}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.mirror_sync_create" (.GetRepoLink ctx) (.GetRefLink ctx) .GetBranch (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "mirror_sync_delete"}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.mirror_sync_delete" (.GetRepoLink ctx) .GetBranch (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "approve_pull_request"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.approve_pull_request" (printf "%s/pulls/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "reject_pull_request"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.reject_pull_request" (printf "%s/pulls/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "comment_pull"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.comment_pull" (printf "%s/pulls/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx)}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "publish_release"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$linkText := .Content | RenderEmoji $.Context}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.publish_release" (.GetRepoLink ctx) (printf "%s/releases/tag/%s" (.GetRepoLink ctx) .GetTag) (.ShortRepoPath ctx) $linkText}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "review_dismissed"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$index := index .GetIssueInfos 0}}
|
|
|
|
{{$reviewer := index .GetIssueInfos 1}}
|
2024-02-25 14:02:20 +00:00
|
|
|
{{ctx.Locale.Tr "action.review_dismissed" (printf "%s/pulls/%s" (.GetRepoLink ctx) $index) $index (.ShortRepoPath ctx) $reviewer}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{end}}
|
2023-09-30 15:48:34 +00:00
|
|
|
{{TimeSince .GetCreate ctx.Locale}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2023-09-07 14:23:13 +00:00
|
|
|
{{if .GetOpType.InActions "commit_repo" "mirror_sync_push"}}
|
2023-08-23 04:23:30 +00:00
|
|
|
{{$push := ActionContent2Commits .}}
|
2023-09-29 12:12:54 +00:00
|
|
|
{{$repoLink := (.GetRepoLink ctx)}}
|
2023-10-11 14:02:15 +00:00
|
|
|
{{$repo := .Repo}}
|
2024-03-24 14:31:35 +00:00
|
|
|
<div class="tw-flex tw-flex-col tw-gap-1">
|
2023-09-30 15:48:34 +00:00
|
|
|
{{range $push.Commits}}
|
|
|
|
{{$commitLink := printf "%s/commit/%s" $repoLink .Sha1}}
|
|
|
|
<div class="flex-text-block">
|
|
|
|
<img class="ui avatar" src="{{$push.AvatarLink $.Context .AuthorEmail}}" title="{{.AuthorName}}" width="16" height="16">
|
|
|
|
<a class="ui sha label" href="{{$commitLink}}">{{ShortSha .Sha1}}</a>
|
|
|
|
<span class="text truncate">
|
2024-01-15 08:49:24 +00:00
|
|
|
{{RenderCommitMessage $.Context .Message ($repo.ComposeMetas ctx)}}
|
2023-09-30 15:48:34 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-08-23 04:23:30 +00:00
|
|
|
{{if and (gt $push.Len 1) $push.CompareURL}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<a href="{{AppSubUrl}}/{{$push.CompareURL}}">{{ctx.Locale.Tr "action.compare_commits" $push.Len}} »</a>
|
2023-08-23 04:23:30 +00:00
|
|
|
{{end}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "create_issue"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
<span class="text truncate issue title">{{index .GetIssueInfos 1 | RenderEmoji $.Context | RenderCodeBlock}}</span>
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "create_pull_request"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
<span class="text truncate issue title">{{index .GetIssueInfos 1 | RenderEmoji $.Context | RenderCodeBlock}}</span>
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "comment_issue" "approve_pull_request" "reject_pull_request" "comment_pull"}}
|
2023-09-29 12:12:54 +00:00
|
|
|
<a href="{{.GetCommentLink ctx}}" class="text truncate issue title">{{(.GetIssueTitle ctx) | RenderEmoji $.Context | RenderCodeBlock}}</a>
|
2023-07-31 22:13:42 +00:00
|
|
|
{{$comment := index .GetIssueInfos 1}}
|
2023-12-04 21:48:42 +00:00
|
|
|
{{if $comment}}
|
2024-03-23 21:22:15 +00:00
|
|
|
<div class="markup tw-text-14">{{RenderMarkdownToHtml ctx $comment}}</div>
|
2023-07-31 22:13:42 +00:00
|
|
|
{{end}}
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "merge_pull_request"}}
|
2023-10-07 23:26:27 +00:00
|
|
|
<div class="flex-item-body text black">{{index .GetIssueInfos 1}}</div>
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "close_issue" "reopen_issue" "close_pull_request" "reopen_pull_request"}}
|
2023-09-29 12:12:54 +00:00
|
|
|
<span class="text truncate issue title">{{(.GetIssueTitle ctx) | RenderEmoji $.Context | RenderCodeBlock}}</span>
|
2023-09-07 14:23:13 +00:00
|
|
|
{{else if .GetOpType.InActions "pull_review_dismissed"}}
|
2023-10-07 23:26:27 +00:00
|
|
|
<div class="flex-item-body text black">{{ctx.Locale.Tr "action.review_dismissed_reason"}}</div>
|
|
|
|
<div class="flex-item-body text black">{{index .GetIssueInfos 2 | RenderEmoji $.Context}}</div>
|
2023-07-31 22:13:42 +00:00
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2023-07-31 22:13:42 +00:00
|
|
|
<div class="flex-item-trailing">
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
|
|
|
{{svg (printf "octicon-%s" (ActionIcon .GetOpType)) 32 "text grey tw-mr-1"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-07-31 22:13:42 +00:00
|
|
|
{{end}}
|
|
|
|
{{template "base/paginate" .}}
|
|
|
|
</div>
|