mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
f22389a824
* refactor: move deepcopy into its own package * feat: add generic orderedmap implementation * refactor: implement tasks with orderedmap * feat: implement sort flag for all task outputs * refactor: implement vars with orderedmap * chore: docs * fix: linting issues * fix: non deterministic behavior in tests
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package sort
|
|
|
|
import (
|
|
"sort"
|
|
"strings"
|
|
|
|
"github.com/go-task/task/v3/taskfile"
|
|
)
|
|
|
|
type TaskSorter interface {
|
|
Sort([]*taskfile.Task)
|
|
}
|
|
|
|
type Noop struct{}
|
|
|
|
func (s *Noop) Sort(tasks []*taskfile.Task) {}
|
|
|
|
type AlphaNumeric struct{}
|
|
|
|
// Tasks that are not namespaced should be listed before tasks that are.
|
|
// We detect this by searching for a ':' in the task name.
|
|
func (s *AlphaNumeric) Sort(tasks []*taskfile.Task) {
|
|
sort.Slice(tasks, func(i, j int) bool {
|
|
return tasks[i].Task < tasks[j].Task
|
|
})
|
|
}
|
|
|
|
type AlphaNumericWithRootTasksFirst struct{}
|
|
|
|
// Tasks that are not namespaced should be listed before tasks that are.
|
|
// We detect this by searching for a ':' in the task name.
|
|
func (s *AlphaNumericWithRootTasksFirst) Sort(tasks []*taskfile.Task) {
|
|
sort.Slice(tasks, func(i, j int) bool {
|
|
iContainsColon := strings.Contains(tasks[i].Task, ":")
|
|
jContainsColon := strings.Contains(tasks[j].Task, ":")
|
|
if iContainsColon == jContainsColon {
|
|
return tasks[i].Task < tasks[j].Task
|
|
}
|
|
if !iContainsColon && jContainsColon {
|
|
return true
|
|
}
|
|
return false
|
|
})
|
|
}
|