29 lines
595 B
Go
Raw Normal View History

2017-06-16 16:12:18 +00:00
package utils
import (
"io/ioutil"
"strings"
)
2017-06-16 16:19:32 +00:00
var svgIcons = make(map[string]string)
func init() {
2017-06-17 13:14:15 +00:00
files, _ := ioutil.ReadDir("images/icons/")
2017-06-16 16:19:32 +00:00
for _, file := range files {
2017-06-27 11:06:19 +00:00
name := strings.TrimSuffix(file.Name(), ".svg")
2017-06-17 13:14:15 +00:00
data, _ := ioutil.ReadFile("images/icons/" + name + ".svg")
2017-06-27 11:06:19 +00:00
svgIcons[name] = strings.Replace(string(data), "<svg ", "<svg class='icon icon-"+name+"' ", 1)
2017-06-16 16:19:32 +00:00
}
}
2017-06-16 16:12:18 +00:00
// Icon ...
func Icon(name string) string {
2017-06-16 16:19:32 +00:00
return svgIcons[name]
2017-06-16 16:12:18 +00:00
}
// RawIcon ...
func RawIcon(name string) string {
2017-07-12 18:37:34 +00:00
return strings.Replace(svgIcons[name], "class='icon", "class='raw-icon", 1)
2017-06-16 16:12:18 +00:00
}