2020-09-13 20:37:07 +08:00
|
|
|
package db
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
2023-06-28 16:18:52 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/langs/codes"
|
2020-09-13 20:37:07 +08:00
|
|
|
"github.com/iwind/TeaGo/actions"
|
|
|
|
|
"net/http"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Helper struct {
|
2023-06-28 16:18:52 +08:00
|
|
|
helpers.LangHelper
|
2020-09-13 20:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *Helper) BeforeAction(action *actions.ActionObject) {
|
|
|
|
|
if action.Request.Method != http.MethodGet {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
action.Data["teaMenu"] = "db"
|
|
|
|
|
|
2023-08-08 14:17:16 +08:00
|
|
|
var selectedTabbar = action.Data["mainTab"]
|
2020-09-13 20:37:07 +08:00
|
|
|
|
2023-06-28 16:18:52 +08:00
|
|
|
var tabbar = actionutils.NewTabbar()
|
2023-06-30 18:08:30 +08:00
|
|
|
tabbar.Add(this.Lang(action, codes.DBNode_TabNodes), "", "/db", "", selectedTabbar == "db")
|
2020-09-13 20:37:07 +08:00
|
|
|
actionutils.SetTabbar(action, tabbar)
|
|
|
|
|
}
|