Browse Source

Set heatmap color range configurable (#5165)

tags/v1.7.0-dev
Antoine GIRARD 5 years ago
parent
commit
ffd5fb8139

+ 2
- 0
custom/conf/app.ini.sample View File

@@ -85,6 +85,8 @@ MAX_DISPLAY_FILE_SIZE = 8388608
SHOW_USER_EMAIL = true
; Set the default theme for the Gitea install
DEFAULT_THEME = gitea
; Set the color range to use for heatmap (default to `['#f4f4f4', '#459928']` but can use `['#2d303b', '#80bb46']` with the theme `arc-green`)
HEATMAP_COLOR_RANGE = `['#f4f4f4', '#459928']`

[ui.admin]
; Number of users that are displayed on one page

+ 2
- 0
modules/setting/setting.go View File

@@ -300,6 +300,7 @@ var (
MaxDisplayFileSize int64
ShowUserEmail bool
DefaultTheme string
HeatmapColorRange string

Admin struct {
UserPagingNum int
@@ -326,6 +327,7 @@ var (
ThemeColorMetaTag: `#6cc644`,
MaxDisplayFileSize: 8388608,
DefaultTheme: `gitea`,
HeatmapColorRange: `['#f4f4f4', '#459928']`,
Admin: struct {
UserPagingNum int
RepoPagingNum int

+ 3
- 0
modules/templates/helper.go View File

@@ -193,6 +193,9 @@ func NewFuncMap() []template.FuncMap {
"DefaultTheme": func() string {
return setting.UI.DefaultTheme
},
"HeatmapColorRange": func() string {
return setting.UI.HeatmapColorRange
},
"dict": func(values ...interface{}) (map[string]interface{}, error) {
if len(values) == 0 {
return nil, errors.New("invalid dict call")

+ 1
- 1
templates/base/footer.tmpl View File

@@ -65,7 +65,7 @@
var heatmap = calendarHeatmap()
.data(chartData)
.selector('#user-heatmap')
.colorRange(['#f4f4f4', '#459928'])
.colorRange({{SafeJS HeatmapColorRange}})
.tooltipEnabled(true);
heatmap();
});

Loading…
Cancel
Save