mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
8820191476
Follow #23328 The improvements: 1. The `contains` functions are covered by tests 2. The inconsistent behavior of `containGeneric` is replaced by `StringUtils.Contains` and `SliceUtils.Contains` 3. In the future we can move more help functions into XxxUtils to simplify the `helper.go` and reduce unnecessary global functions. FAQ: 1. Why it's called `StringUtils.Contains` but not `strings.Contains` like Golang? Because our `StringUtils` is not Golang's `strings` package. There will be our own string functions. --------- Co-authored-by: silverwind <me@silverwind.io>
43 lines
1.2 KiB
Handlebars
43 lines
1.2 KiB
Handlebars
<div class="dropzone-attachments">
|
|
{{if .Attachments}}
|
|
<div class="ui divider"></div>
|
|
{{end}}
|
|
{{$hasThumbnails := false}}
|
|
{{- range .Attachments -}}
|
|
<div class="gt-df">
|
|
<div class="gt-f1 gt-p-3">
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}" title='{{$.ctxData.locale.Tr "repo.issues.attachment.open_tab" .Name}}'>
|
|
{{if FilenameIsImage .Name}}
|
|
{{if not (StringUtils.Contains $.Content .UUID)}}
|
|
{{$hasThumbnails = true}}
|
|
{{end}}
|
|
{{svg "octicon-file"}}
|
|
{{else}}
|
|
{{svg "octicon-desktop-download"}}
|
|
{{end}}
|
|
<span><strong>{{.Name}}</strong></span>
|
|
</a>
|
|
</div>
|
|
<div class="gt-p-3 gt-df gt-ac">
|
|
<span class="ui text grey right">{{.Size | FileSize}}</span>
|
|
</div>
|
|
</div>
|
|
{{end -}}
|
|
|
|
{{if $hasThumbnails}}
|
|
<div class="ui divider"></div>
|
|
<div class="ui small thumbnails">
|
|
{{- range .Attachments -}}
|
|
{{if FilenameIsImage .Name}}
|
|
{{if not (StringUtils.Contains $.Content .UUID)}}
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
|
|
<img alt="{{.Name}}" src="{{.DownloadURL}}" title='{{$.ctxData.locale.Tr "repo.issues.attachment.open_tab" .Name}}'>
|
|
</a>
|
|
{{end}}
|
|
{{end}}
|
|
{{end -}}
|
|
</div>
|
|
{{end}}
|
|
|
|
</div>
|