mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
29 lines
480 B
Go
29 lines
480 B
Go
package master_ui
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
type Breadcrumb struct {
|
|
Name string
|
|
Link string
|
|
}
|
|
|
|
func ToBreadcrumb(fullpath string) (crumbs []Breadcrumb) {
|
|
parts := strings.Split(fullpath, "/")
|
|
|
|
for i := 0; i < len(parts); i++ {
|
|
crumb := Breadcrumb{
|
|
Name: parts[i] + " /",
|
|
Link: "/" + filepath.ToSlash(filepath.Join(parts[0:i+1]...)),
|
|
}
|
|
if !strings.HasSuffix(crumb.Link, "/") {
|
|
crumb.Link += "/"
|
|
}
|
|
crumbs = append(crumbs, crumb)
|
|
}
|
|
|
|
return
|
|
}
|