2020-07-12 11:10:56 +02:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-07-12 11:10:56 +02:00
|
|
|
|
|
|
|
package svg
|
|
|
|
|
2022-11-08 16:13:58 +01:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"html/template"
|
2023-04-12 12:16:45 +02:00
|
|
|
"path"
|
2022-11-08 16:13:58 +01:00
|
|
|
"strings"
|
|
|
|
|
2023-08-05 06:34:59 +02:00
|
|
|
gitea_html "code.gitea.io/gitea/modules/html"
|
2023-04-12 12:16:45 +02:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/public"
|
2022-11-08 16:13:58 +01:00
|
|
|
)
|
|
|
|
|
2023-08-05 06:34:59 +02:00
|
|
|
var svgIcons map[string]string
|
2022-11-08 16:13:58 +01:00
|
|
|
|
|
|
|
const defaultSize = 16
|
2020-07-12 11:10:56 +02:00
|
|
|
|
2023-08-05 06:34:59 +02:00
|
|
|
// Init discovers SVG icons and populates the `svgIcons` variable
|
2023-04-12 12:16:45 +02:00
|
|
|
func Init() error {
|
2023-08-05 06:34:59 +02:00
|
|
|
const svgAssetsPath = "assets/img/svg"
|
|
|
|
files, err := public.AssetFS().ListFiles(svgAssetsPath)
|
2023-04-12 12:16:45 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-03-21 06:39:27 +01:00
|
|
|
|
2023-08-05 06:34:59 +02:00
|
|
|
svgIcons = make(map[string]string, len(files))
|
2023-04-12 12:16:45 +02:00
|
|
|
for _, file := range files {
|
|
|
|
if path.Ext(file) != ".svg" {
|
|
|
|
continue
|
|
|
|
}
|
2023-08-05 06:34:59 +02:00
|
|
|
bs, err := public.AssetFS().ReadFile(svgAssetsPath, file)
|
2023-04-12 12:16:45 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Error("Failed to read SVG file %s: %v", file, err)
|
|
|
|
} else {
|
2023-08-05 06:34:59 +02:00
|
|
|
svgIcons[file[:len(file)-4]] = string(Normalize(bs, defaultSize))
|
2023-04-12 12:16:45 +02:00
|
|
|
}
|
2023-03-21 06:39:27 +01:00
|
|
|
}
|
2023-04-12 12:16:45 +02:00
|
|
|
return nil
|
2020-07-12 11:10:56 +02:00
|
|
|
}
|
2022-11-08 16:13:58 +01:00
|
|
|
|
2023-04-12 12:16:45 +02:00
|
|
|
// RenderHTML renders icons - arguments icon name (string), size (int), class (string)
|
2023-07-04 20:36:08 +02:00
|
|
|
func RenderHTML(icon string, others ...any) template.HTML {
|
2023-08-05 06:34:59 +02:00
|
|
|
size, class := gitea_html.ParseSizeAndClass(defaultSize, "", others...)
|
|
|
|
if svgStr, ok := svgIcons[icon]; ok {
|
|
|
|
// the code is somewhat hacky, but it just works, because the SVG contents are all normalized
|
2022-11-08 16:13:58 +01:00
|
|
|
if size != defaultSize {
|
2023-08-05 06:34:59 +02:00
|
|
|
svgStr = strings.Replace(svgStr, fmt.Sprintf(`width="%d"`, defaultSize), fmt.Sprintf(`width="%d"`, size), 1)
|
|
|
|
svgStr = strings.Replace(svgStr, fmt.Sprintf(`height="%d"`, defaultSize), fmt.Sprintf(`height="%d"`, size), 1)
|
2022-11-08 16:13:58 +01:00
|
|
|
}
|
|
|
|
if class != "" {
|
|
|
|
svgStr = strings.Replace(svgStr, `class="`, fmt.Sprintf(`class="%s `, class), 1)
|
|
|
|
}
|
|
|
|
return template.HTML(svgStr)
|
|
|
|
}
|
2023-06-13 12:51:02 +02:00
|
|
|
return ""
|
2022-11-08 16:13:58 +01:00
|
|
|
}
|