blob: 7fd78ff272873c8eb955094a7a1d8fe9c93a18f2 (
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
47
48
49
50
51
52
53
|
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>
<script>
// remove all bad chars from all inputs in the form
$('form input, form textarea').on('blur', function(e) {
var val = e.target.value;
e.target.value = replaceBadChars(val);
});
</script>
</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
}
|