Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

admin: adds VueUI theme support #72

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ type UITheme int8
const (
MaterialUI UITheme = iota + 1
AntDesignUI
VueUI
)

type FieldType uint
Expand Down Expand Up @@ -671,6 +672,7 @@ func (ad *admin) ServeHTTP(w http.ResponseWriter, r *http.Request) {
UITheme UITheme
MaterialUI UITheme
AntDesignUI UITheme
VueUI UITheme
}{
Debug: ad.debugMode,
ThemeJS: template.JS(indexJSMinified.Code),
Expand All @@ -679,6 +681,7 @@ func (ad *admin) ServeHTTP(w http.ResponseWriter, r *http.Request) {
UITheme: ad.uiTheme,
MaterialUI: MaterialUI,
AntDesignUI: AntDesignUI,
VueUI: VueUI,
}

adminTemplate, err := newTemplate("Admin").Parse(ad.adminTemplateText)
Expand Down Expand Up @@ -777,6 +780,14 @@ const defaultAdminTemplateText string = `
<script src="//cdn.jsdelivr.net/npm/@material-ui/[email protected]/umd/material-ui.production.min.js"></script>
[[- end ]]

[[- if and (eq .UITheme .VueUI) .Debug ]]
<script src="//cdn.jsdelivr.net/npm/[email protected]/dist/vue.global.min.js"></script>
[[- end -]]

[[- if and (eq .UITheme .VueUI) (not .Debug) ]]
<script src="//cdn.jsdelivr.net/npm/[email protected]/dist/vue.global.js"></script>
[[- end ]]

<script type="text/javascript">[[ .ThemeJS ]]</script>
</body>

Expand Down
Loading