2023-04-06 12:07:57 +01:00
|
|
|
package sort
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
|
2023-12-29 20:32:03 +00:00
|
|
|
"github.com/go-task/task/v3/taskfile/ast"
|
2023-04-06 12:07:57 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type TaskSorter interface {
|
2023-12-29 20:32:03 +00:00
|
|
|
Sort([]*ast.Task)
|
2023-04-06 12:07:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type Noop struct{}
|
|
|
|
|
2023-12-29 20:32:03 +00:00
|
|
|
func (s *Noop) Sort(tasks []*ast.Task) {}
|
2023-04-06 12:07:57 +01:00
|
|
|
|
|
|
|
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.
|
2023-12-29 20:32:03 +00:00
|
|
|
func (s *AlphaNumeric) Sort(tasks []*ast.Task) {
|
2023-04-06 12:07:57 +01:00
|
|
|
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.
|
2023-12-29 20:32:03 +00:00
|
|
|
func (s *AlphaNumericWithRootTasksFirst) Sort(tasks []*ast.Task) {
|
2023-04-06 12:07:57 +01:00
|
|
|
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
|
|
|
|
})
|
|
|
|
}
|