blob: 75092c0f3ae9cd9e7c78446cd0101ee36f06604d (
plain)
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
|
package manager
import (
"bytes"
"fmt"
"html/template"
"github.com/nilslice/cms/management/editor"
)
const managerHTML = `
<div class="card editor">
<form method="post" action="/admin/edit">
<input type="hidden" name="id" value="{{.ID}}"/>
<input type="hidden" name="type" value="{{.Kind}}"/>
{{ .Editor }}
</form>
</div>
`
type manager struct {
ID int
Kind string
Editor template.HTML
}
// Manage ...
func Manage(e editor.Editable, typeName string) ([]byte, error) {
v, err := e.MarshalEditor()
if err != nil {
return nil, fmt.Errorf("Couldn't marshal editor for content %T. %s", e, err.Error())
}
m := manager{
ID: e.ContentID(),
Kind: typeName,
Editor: template.HTML(v),
}
// execute html template into buffer for func return val
buf := &bytes.Buffer{}
tmpl := template.Must(template.New("manager").Parse(managerHTML))
tmpl.Execute(buf, m)
return buf.Bytes(), nil
}
|