forked from GoAdminGroup/go-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.go
281 lines (233 loc) · 6.7 KB
/
page.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
// Copyright 2019 GoAdmin Core Team. All rights reserved.
// Use of this source code is governed by a Apache-2.0 style
// license that can be found in the LICENSE file.
package types
import (
"bytes"
"fmt"
"github.com/GoAdminGroup/go-admin/context"
"github.com/GoAdminGroup/go-admin/modules/config"
"github.com/GoAdminGroup/go-admin/modules/menu"
"github.com/GoAdminGroup/go-admin/modules/system"
"github.com/GoAdminGroup/go-admin/modules/utils"
"github.com/GoAdminGroup/go-admin/plugins/admin/models"
"html/template"
"strconv"
)
// Attribute is the component interface of template. Every component of
// template should implement it.
type Attribute struct {
TemplateList map[string]string
}
// Page used in the template as a top variable.
type Page struct {
// User is the login user.
User models.UserModel
// Menu is the left side menu of the template.
Menu menu.Menu
// Panel is the main content of template.
Panel Panel
// System contains some system info.
System SystemInfo
// UrlPrefix is the prefix of url.
UrlPrefix string
// Title is the title of the web page.
Title string
// Logo is the logo of the template.
Logo template.HTML
// MiniLogo is the downsizing logo of the template.
MiniLogo template.HTML
// ColorScheme is the color scheme of the template.
ColorScheme string
// IndexUrl is the home page url of the site.
IndexUrl string
// AssetUrl is the cdn link of assets
CdnUrl string
// Custom html in the tag head.
CustomHeadHtml template.HTML
// Custom html after body.
CustomFootHtml template.HTML
TmplHeadHTML template.HTML
TmplFootJS template.HTML
// Components assets
AssetsList template.HTML
// Footer info
FooterInfo template.HTML
// Load as Iframe or not
Iframe bool
// Top Nav Buttons
navButtons Buttons
NavButtonsHTML template.HTML
}
type NewPageParam struct {
User models.UserModel
Menu *menu.Menu
Panel Panel
Assets template.HTML
Buttons Buttons
Iframe bool
TmplHeadHTML template.HTML
TmplFootJS template.HTML
}
func (param NewPageParam) NavButtonsAndJS() (template.HTML, template.HTML) {
navBtnFooter := template.HTML("")
navBtn := template.HTML("")
btnJS := template.JS("")
for _, btn := range param.Buttons {
navBtnFooter += btn.GetAction().FooterContent()
content, js := btn.Content()
navBtn += content
btnJS += js
}
return template.HTML(ParseTableDataTmpl(navBtn)),
navBtnFooter + template.HTML(ParseTableDataTmpl(`<script>`+btnJS+`</script>`))
}
func NewPage(param NewPageParam) *Page {
navBtn, btnJS := param.NavButtonsAndJS()
return &Page{
User: param.User,
Menu: *param.Menu,
Panel: param.Panel,
System: SystemInfo{
Version: system.Version(),
Theme: config.GetTheme(),
},
UrlPrefix: config.AssertPrefix(),
Title: config.GetTitle(),
Logo: config.GetLogo(),
MiniLogo: config.GetMiniLogo(),
ColorScheme: config.GetColorScheme(),
IndexUrl: config.GetIndexURL(),
CdnUrl: config.GetAssetUrl(),
CustomHeadHtml: config.GetCustomHeadHtml(),
CustomFootHtml: config.GetCustomFootHtml() + btnJS,
FooterInfo: config.GetFooterInfo(),
AssetsList: param.Assets,
navButtons: param.Buttons,
Iframe: param.Iframe,
NavButtonsHTML: navBtn,
TmplHeadHTML: param.TmplHeadHTML,
TmplFootJS: param.TmplFootJS,
}
}
func (page *Page) AddButton(title template.HTML, icon string, action Action) *Page {
page.navButtons = append(page.navButtons, GetNavButton(title, icon, action))
page.CustomFootHtml += action.FooterContent()
return page
}
func NewPagePanel(panel Panel) *Page {
return &Page{
Panel: panel,
System: SystemInfo{
Version: system.Version(),
},
}
}
// SystemInfo contains basic info of system.
type SystemInfo struct {
Version string
Theme string
}
type TableRowData struct {
Id template.HTML
Ids template.HTML
Value map[string]InfoItem
}
func ParseTableDataTmpl(content interface{}) string {
var (
c string
ok bool
)
if c, ok = content.(string); !ok {
if cc, ok := content.(template.HTML); ok {
c = string(cc)
} else {
c = string(content.(template.JS))
}
}
t := template.New("row_data_tmpl")
t, _ = t.Parse(c)
buf := new(bytes.Buffer)
_ = t.Execute(buf, TableRowData{Ids: `typeof(selectedRows)==="function" ? selectedRows().join() : ""`})
return buf.String()
}
func ParseTableDataTmplWithID(id template.HTML, content string, value ...map[string]InfoItem) string {
t := template.New("row_data_tmpl")
t, _ = t.Parse(content)
buf := new(bytes.Buffer)
v := make(map[string]InfoItem)
if len(value) > 0 {
v = value[0]
}
_ = t.Execute(buf, TableRowData{
Id: id,
Ids: `typeof(selectedRows)==="function" ? selectedRows().join() : ""`,
Value: v,
})
return buf.String()
}
// Panel contains the main content of the template which used as pjax.
type Panel struct {
Title template.HTML
Description template.HTML
Content template.HTML
CSS template.CSS
JS template.JS
Url string
// Whether to toggle the sidebar
MiniSidebar bool
// Auto refresh page switch.
AutoRefresh bool
// Refresh page intervals, the unit is second.
RefreshInterval []int
Callbacks Callbacks
}
func (p Panel) GetContent(params ...bool) Panel {
prod := false
if len(params) > 0 {
prod = params[0]
}
animation := template.HTML("")
style := template.HTML("")
remove := template.HTML("")
ani := config.GetAnimation()
if ani.Type != "" && (len(params) < 2 || params[1]) {
animation = template.HTML(` class='pjax-container-content animated ` + ani.Type + `'`)
if ani.Delay != 0 {
style = template.HTML(fmt.Sprintf(`animation-delay: %fs;-webkit-animation-delay: %fs;`, ani.Delay, ani.Delay))
}
if ani.Duration != 0 {
style = template.HTML(fmt.Sprintf(`animation-duration: %fs;-webkit-animation-duration: %fs;`, ani.Duration, ani.Duration))
}
if style != "" {
style = ` style="` + style + `"`
}
remove = template.HTML(`<script>
$('.pjax-container-content .modal.fade').on('show.bs.modal', function (event) {
// Fix Animate.css
$('.pjax-container-content').removeClass('` + ani.Type + `');
});
</script>`)
}
p.Content = `<div` + animation + style + ">" + p.Content + "</div>" + remove
if p.MiniSidebar {
p.Content += `<script>$("body").addClass("sidebar-collapse")</script>`
}
if p.AutoRefresh {
refreshTime := 60
if len(p.RefreshInterval) > 0 {
refreshTime = p.RefreshInterval[0]
}
p.Content += `<script>
window.setTimeout(function(){
$.pjax.reload('#pjax-container');
}, ` + template.HTML(strconv.Itoa(refreshTime*1000)) + `);
</script>`
}
if prod {
utils.CompressedContent(&p.Content)
}
return p
}
type GetPanelFn func(ctx interface{}) (Panel, error)
type GetPanelInfoFn func(ctx *context.Context) (Panel, error)