代码拉取完成,页面将自动刷新
/*
Nging is a toolbox for webmasters
Copyright (C) 2018-present Wenhui Shen <swh@admpub.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package navigate
import (
"path"
)
//Item 操作
type Item struct {
DisplayOnMenu bool //是否在菜单三显示
Name string //名称
Action string //操作(一般为网址)
Icon string //图标
Target string //打开方式
Unlimited bool //是否不限制权限
Children *List
}
func (a *Item) FullPath(parentPath string) string {
if a == nil {
return parentPath
}
return path.Join(parentPath, a.Action)
}
//List 操作列表
type List []*Item
func (a *List) FullPath(parentPath string) []string {
var r []string
if a == nil {
return r
}
for _, nav := range *a {
urlPath := path.Join(parentPath, nav.Action)
//fmt.Println(`<FullPath>`, urlPath)
if nav.Children == nil {
r = append(r, urlPath)
continue
}
r = append(r, nav.Children.FullPath(urlPath)...)
}
return r
}
//Remove 删除元素
func (a *List) Remove(index int) *List {
if index < 0 {
*a = (*a)[0:0]
return a
}
size := len(*a)
if size > index {
if size > index+1 {
*a = append((*a)[0:index], (*a)[index+1:]...)
} else {
*a = (*a)[0:index]
}
}
return a
}
//Set 设置元素
func (a *List) Set(index int, list ...*Item) *List {
if len(list) == 0 {
return a
}
if index < 0 {
*a = append(*a, list...)
return a
}
size := len(*a)
if size > index {
(*a)[index] = list[0]
if len(list) > 1 {
a.Set(index+1, list[1:]...)
}
return a
}
for start, end := size, index-1; start < end; start++ {
*a = append(*a, nil)
}
*a = append(*a, list...)
return a
}
//Add 添加列表项
func (a *List) Add(index int, list ...*Item) *List {
if len(list) == 0 {
return a
}
if index < 0 {
*a = append(*a, list...)
return a
}
size := len(*a)
if size > index {
list = append(list, (*a)[index])
(*a)[index] = list[0]
if len(list) > 1 {
a.Add(index+1, list[1:]...)
}
return a
}
for start, end := size, index-1; start < end; start++ {
*a = append(*a, nil)
}
*a = append(*a, list...)
return a
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。