2017-04-05 10:18:53 -04:00
package output
import (
"strings"
2018-01-18 04:16:21 -05:00
// "fmt"
2017-04-05 10:18:53 -04:00
2017-06-13 12:42:45 -04:00
"github.com/gohugoio/hugo/docshelper"
2017-04-05 10:18:53 -04:00
)
// This is is just some helpers used to create some JSON used in the Hugo docs.
func init ( ) {
docsProvider := func ( ) map [ string ] interface { } {
docs := make ( map [ string ] interface { } )
docs [ "formats" ] = DefaultFormats
docs [ "layouts" ] = createLayoutExamples ( )
return docs
}
docshelper . AddDocProvider ( "output" , docsProvider )
}
func createLayoutExamples ( ) interface { } {
type Example struct {
Example string
2018-01-18 04:16:21 -05:00
Kind string
2017-04-05 10:18:53 -04:00
OutputFormat string
Suffix string
Layouts [ ] string ` json:"Template Lookup Order" `
}
var (
basicExamples [ ] Example
demoLayout = "demolayout"
demoType = "demotype"
)
for _ , example := range [ ] struct {
2018-01-13 11:21:42 -05:00
name string
d LayoutDescriptor
hasTheme bool
f Format
2017-04-05 10:18:53 -04:00
} {
2018-01-18 04:16:21 -05:00
// Taxonomy output.LayoutDescriptor={categories category taxonomy en false Type Section
{ "Single page in \"posts\" section" , LayoutDescriptor { Kind : "page" , Type : "posts" } , false , HTMLFormat } ,
{ "Single page in \"posts\" section with layout set" , LayoutDescriptor { Kind : "page" , Type : "posts" , Layout : demoLayout } , false , HTMLFormat } ,
{ "AMP single page" , LayoutDescriptor { Kind : "page" , Type : "posts" } , false , AMPFormat } ,
// All section or typeless pages gets "page" as type
{ "Home page" , LayoutDescriptor { Kind : "home" , Type : "page" } , false , HTMLFormat } ,
{ "Home page with type set" , LayoutDescriptor { Kind : "home" , Type : demoType } , false , HTMLFormat } ,
{ "Home page with layout set" , LayoutDescriptor { Kind : "home" , Type : "page" , Layout : demoLayout } , false , HTMLFormat } ,
{ ` Home page with theme ` , LayoutDescriptor { Kind : "home" , Type : "page" } , true , HTMLFormat } ,
{ ` AMP home, French language" ` , LayoutDescriptor { Kind : "home" , Type : "page" , Lang : "fr" } , false , AMPFormat } ,
{ "JSON home" , LayoutDescriptor { Kind : "home" , Type : "page" } , false , JSONFormat } ,
{ "RSS home" , LayoutDescriptor { Kind : "home" , Type : "page" } , false , RSSFormat } ,
{ "Section list for \"posts\" section" , LayoutDescriptor { Kind : "section" , Type : "posts" , Section : "posts" } , false , HTMLFormat } ,
{ "Section list for \"posts\" section with type set to \"blog\"" , LayoutDescriptor { Kind : "section" , Type : "blog" , Section : "posts" } , false , HTMLFormat } ,
{ "Section list for \"posts\" section with layout set to \"demoLayout\"" , LayoutDescriptor { Kind : "section" , Layout : demoLayout , Section : "posts" } , false , HTMLFormat } ,
{ "Taxonomy list in categories" , LayoutDescriptor { Kind : "taxonomy" , Type : "categories" , Section : "category" } , false , HTMLFormat } ,
{ "Taxonomy term in categories" , LayoutDescriptor { Kind : "taxonomyTerm" , Type : "categories" , Section : "category" } , false , HTMLFormat } ,
2017-04-05 10:18:53 -04:00
} {
l := NewLayoutHandler ( example . hasTheme )
2018-01-13 11:21:42 -05:00
layouts , _ := l . For ( example . d , example . f )
2017-04-05 10:18:53 -04:00
basicExamples = append ( basicExamples , Example {
Example : example . name ,
2018-01-18 04:16:21 -05:00
Kind : example . d . Kind ,
2017-04-05 10:18:53 -04:00
OutputFormat : example . f . Name ,
Suffix : example . f . MediaType . Suffix ,
Layouts : makeLayoutsPresentable ( layouts ) } )
}
return basicExamples
}
func makeLayoutsPresentable ( l [ ] string ) [ ] string {
var filtered [ ] string
for _ , ll := range l {
ll = strings . TrimPrefix ( ll , "_text/" )
if strings . Contains ( ll , "theme/" ) {
ll = strings . Replace ( ll , "theme/" , "demoTheme/layouts/" , - 1 )
} else {
ll = "layouts/" + ll
}
if ! strings . Contains ( ll , "indexes" ) {
filtered = append ( filtered , ll )
}
}
return filtered
}