-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
510 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package fuego | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
"encoding/xml" | ||
"fmt" | ||
"io" | ||
|
||
"gopkg.in/yaml.v3" | ||
) | ||
|
||
// DataOrTemplate is a struct that can return either data or a template | ||
// depending on the asked type. | ||
type DataOrTemplate[T any] struct { | ||
Data T | ||
Template any | ||
} | ||
|
||
var ( | ||
_ CtxRenderer = DataOrTemplate[any]{} // Can render HTML (template) | ||
_ json.Marshaler = DataOrTemplate[any]{} // Can render JSON (data) | ||
_ xml.Marshaler = DataOrTemplate[any]{} // Can render XML (data) | ||
_ yaml.Marshaler = DataOrTemplate[any]{} // Can render YAML (data) | ||
_ fmt.Stringer = DataOrTemplate[any]{} // Can render string (data) | ||
) | ||
|
||
func (m DataOrTemplate[T]) MarshalJSON() ([]byte, error) { | ||
return json.Marshal(m.Data) | ||
} | ||
|
||
func (m DataOrTemplate[T]) MarshalXML(e *xml.Encoder, _ xml.StartElement) error { | ||
return e.Encode(m.Data) | ||
} | ||
|
||
func (m DataOrTemplate[T]) MarshalYAML() (interface{}, error) { | ||
return m.Data, nil | ||
} | ||
|
||
func (m DataOrTemplate[T]) String() string { | ||
return fmt.Sprintf("%v", m.Data) | ||
} | ||
|
||
func (m DataOrTemplate[T]) Render(c context.Context, w io.Writer) error { | ||
switch m.Template.(type) { | ||
case CtxRenderer: | ||
return m.Template.(CtxRenderer).Render(c, w) | ||
case Renderer: | ||
return m.Template.(Renderer).Render(w) | ||
default: | ||
panic("template must be either CtxRenderer or Renderer") | ||
} | ||
} | ||
|
||
// Helper function to create a DataOrTemplate return item without specifying the type. | ||
func DataOrHTML[T any](data T, template any) *DataOrTemplate[T] { | ||
return &DataOrTemplate[T]{ | ||
Data: data, | ||
Template: template, | ||
} | ||
} |
Oops, something went wrong.