mirror of https://github.com/portainer/portainer
44 lines
882 B
Go
44 lines
882 B
Go
|
package endpoints
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
|
||
|
portainer "github.com/portainer/portainer/api"
|
||
|
"github.com/portainer/portainer/api/internal/natsort"
|
||
|
)
|
||
|
|
||
|
type EndpointsByName []portainer.Endpoint
|
||
|
|
||
|
func (e EndpointsByName) Len() int {
|
||
|
return len(e)
|
||
|
}
|
||
|
|
||
|
func (e EndpointsByName) Swap(i, j int) {
|
||
|
e[i], e[j] = e[j], e[i]
|
||
|
}
|
||
|
|
||
|
func (e EndpointsByName) Less(i, j int) bool {
|
||
|
return natsort.Compare(strings.ToLower(e[i].Name), strings.ToLower(e[j].Name))
|
||
|
}
|
||
|
|
||
|
type EndpointsByGroup []portainer.Endpoint
|
||
|
|
||
|
func (e EndpointsByGroup) Len() int {
|
||
|
return len(e)
|
||
|
}
|
||
|
|
||
|
func (e EndpointsByGroup) Swap(i, j int) {
|
||
|
e[i], e[j] = e[j], e[i]
|
||
|
}
|
||
|
|
||
|
func (e EndpointsByGroup) Less(i, j int) bool {
|
||
|
if e[i].GroupID == e[j].GroupID {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
groupA := endpointGroupNames[e[i].GroupID]
|
||
|
groupB := endpointGroupNames[e[j].GroupID]
|
||
|
|
||
|
return natsort.Compare(strings.ToLower(groupA), strings.ToLower(groupB))
|
||
|
}
|