forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix display time of milestones (go-gitea#18753)
* Fix display time of milestones * Move the SecToTime function From the models/issue_stopwatch.go file to the modules/util package * Rename the sec_to_time file * Updated formatting * Include copyright notice in sec_to_time.go * Apply PR review suggestions - Update copyright notice dates to 2022 - Change `1 day 3h 5min 7s` to `1d 3h 5m 7s` * Rename hrs var and combine conditions * Update unit tests to match new time pattern Changed `1min` to `1m` Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
- Loading branch information
1 parent
895a61a
commit a1e15f2
Showing
7 changed files
with
79 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2022 Gitea. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package util | ||
|
||
import "fmt" | ||
|
||
// SecToTime converts an amount of seconds to a human-readable string (example: 66s -> 1min 6s) | ||
func SecToTime(duration int64) string { | ||
seconds := duration % 60 | ||
minutes := (duration / (60)) % 60 | ||
hours := duration / (60 * 60) % 24 | ||
days := duration / (60 * 60) / 24 | ||
|
||
var formattedTime string | ||
|
||
if days > 0 { | ||
formattedTime = fmt.Sprintf("%dd", days) | ||
} | ||
if hours > 0 { | ||
if formattedTime == "" { | ||
formattedTime = fmt.Sprintf("%dh", hours) | ||
} else { | ||
formattedTime = fmt.Sprintf("%s %dh", formattedTime, hours) | ||
} | ||
} | ||
if minutes > 0 { | ||
if formattedTime == "" { | ||
formattedTime = fmt.Sprintf("%dm", minutes) | ||
} else { | ||
formattedTime = fmt.Sprintf("%s %dm", formattedTime, minutes) | ||
} | ||
} | ||
if seconds > 0 { | ||
if formattedTime == "" { | ||
formattedTime = fmt.Sprintf("%ds", seconds) | ||
} else { | ||
formattedTime = fmt.Sprintf("%s %ds", formattedTime, seconds) | ||
} | ||
} | ||
|
||
return formattedTime | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright 2022 Gitea. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package util | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestSecToTime(t *testing.T) { | ||
assert.Equal(t, SecToTime(10), "10s") | ||
assert.Equal(t, SecToTime(100), "1m 40s") | ||
assert.Equal(t, SecToTime(1000), "16m 40s") | ||
assert.Equal(t, SecToTime(10000), "2h 46m 40s") | ||
assert.Equal(t, SecToTime(100000), "1d 3h 46m 40s") | ||
assert.Equal(t, SecToTime(1000000), "11d 13h 46m 40s") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters