forked from icza/gowut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsonedit.go
206 lines (183 loc) · 7.06 KB
/
jsonedit.go
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
// Copyright (C) 2013 Andras Belicza. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Defines the TextBox component.
// w.AddHeadHTML(`<script src="https://cdn.jsdelivr.net/npm/@json-editor/json-editor/dist/jsoneditor.min.js"></script>`)
package gwu
import (
"net/http"
"fmt"
// "strconv"
)
// FileUpload interface defines a component for file upload purpose.
//
// Suggested event type to handle actions: ETypeChange
//
// By default the value of the FileUpload is synchronized with the server
// on ETypeChange event which is when the TextBox loses focus
// or when the ENTER key is pressed.
//
// Default style class: "gwu-TextBox"
type JSONEdit interface {
// FileUpload is a component.
Comp
HasText
// FileUpload can be enabled/disabled.
HasEnabled
SetSchema(s string)
}
// FileUpload implementation.
type jsonEditImpl struct {
compImpl // Component implementation
hasTextImpl // Has enabled implementation
hasEnabledImpl // Has enabled implementation
schema string
}
// NewJSONEdit creates a new FileUpload.
func NewJSONEdit() JSONEdit {
c := newJSONEditImpl(strEncURIThisV)
c.Style().AddClass("gwu-JSONEdit")
return &c
}
// newFileUploadImpl creates a new fileUploadImpl.
func newJSONEditImpl(valueProviderJs []byte) jsonEditImpl {
c := jsonEditImpl{newCompImpl(valueProviderJs), newHasTextImpl(""), newHasEnabledImpl(), ""}
c.AddSyncOnETypes(ETypeChange)
return c
}
func (c *jsonEditImpl) SetSchema(s string) {
c.schema = s
}
func (c *jsonEditImpl) preprocessEvent(event Event, r *http.Request) {
// Empty string for text box is a valid value.
// So we have to check whether it is supplied, not just whether its len() > 0
value := r.FormValue(paramCompValue)
//fmt.Printf("Getting value %+v\n", value)
if len(value) > 0 {
c.text = value
} else {
// Empty string might be a valid value, if the component value param is present:
values, present := r.Form[paramCompValue] // Form is surely parsed (we called FormValue())
if present && len(values) > 0 {
c.text = values[0]
}
}
}
var editorConf = `<script>
JSONEditor.defaults.languages.es = {
error_notset: "Cal informar la propietat",
error_notempty: "Cal un valor",
error_enum: "Value must be one of the enumerated values",
error_anyOf: "Value must validate against at least one of the provided schemas",
error_oneOf: 'Value must validate against exactly one of the provided schemas. It currently validates against {{0}} of the schemas.',
error_not: "Value must not validate against the provided schema",
error_type_union: "Value must be one of the provided types",
error_type: "Value must be of type {{0}}",
error_disallow_union: "Value must not be one of the provided disallowed types",
error_disallow: "Value must not be of type {{0}}",
error_multipleOf: "Value must be a multiple of {{0}}",
error_maximum_excl: "Value must be less than {{0}}",
error_maximum_incl: "Value must be at most {{0}}",
error_minimum_excl: "Value must be greater than {{0}}",
error_minimum_incl: "Value must be at least {{0}}",
error_maxLength: "Value must be at most {{0}} characters long",
error_minLength: "Value must be at least {{0}} characters long",
error_pattern: "Value must match the pattern {{0}}",
error_additionalItems: "No additional items allowed in this array",
error_maxItems: "Value must have at most {{0}} items",
error_minItems: "Value must have at least {{0}} items",
error_uniqueItems: "Array must have unique items",
error_maxProperties: "Object must have at most {{0}} properties",
error_minProperties: "Object must have at least {{0}} properties",
error_required: "Object is missing the required property '{{0}}'",
error_additional_properties: "No additional properties allowed, but property {{0}} is set",
error_dependency: "Must have property {{0}}",
error_date: 'Date must be in the format {{0}}',
error_time: 'Time must be in the format {{0}}',
error_datetime_local: 'Datetime must be in the format {{0}}',
error_invalid_epoch: 'Date must be greater than 1 January 1970',
button_delete_all: "Tot",
button_delete_all_title: "Esborrar tot",
button_delete_last: "Últim {{0}}",
button_delete_last_title: "Delete Last {{0}}",
button_add_row_title: "Afegir {{0}}",
button_move_down_title: "More avall",
button_move_up_title: "Moure amunt",
button_delete_row_title: "Esborrar {{0}}",
button_delete_row_title_short: "Esborrar",
button_collapse: "Collapse",
button_expand: "Expand",
flatpickr_toggle_button: "Toggle",
flatpickr_clear_button: "Netejar"
};
JSONEditor.defaults.default_language = 'es';
</script>
`
func (c *jsonEditImpl) Render(w Writer) {
/*
w.Write(strFileUpload)
c.renderAttrsAndStyle(w)
c.renderEnabled(w)
//c.renderEHandlers(w)
w.Write(strInputCl)
*/
w.Write([]byte(fmt.Sprintf(`<div id="%d" />`, c.id)))
if c.text != "" {
w.Write([]byte(fmt.Sprintf(`
<script>
// Initialize the editor with a JSON schema
var editor%d = new JSONEditor(document.getElementById('%d'),{
schema: %s,
startval: %s,
theme: 'bootstrap4',
disable_collapse: true,
disable_edit_json: true,
disable_properties: true,
show_errors: "change"
});
// Hook up the submit button to log to the console
//document.getElementById('submit').addEventListener('click',function() {
// Get the value from the editor
// console.log(editor.getValue());
//});
editor%d.on('change',function() {
// Do something
value = editor%d.getValue()
console.log("The data has changed!" + JSON.stringify(value) );
se2(null,11,%d,JSON.stringify(value))
});
</script>
`, c.id, c.id, c.schema, c.text, c.id, c.id, c.id)))
} else {
w.Write([]byte(fmt.Sprintf(`
<script>
// Initialize the editor with a JSON schema
var editor%d = new JSONEditor(document.getElementById('%d'),{
schema: %s,
theme: 'bootstrap4',
disable_collapse: true,
disable_edit_json: true,
disable_properties: true,
show_errors: "change"
});
editor%d.on('change',function() {
// Do something
value = editor%d.getValue()
console.log("The data has changed!" + JSON.stringify(value) );
se2(null,11,%d,JSON.stringify(value))
});
</script>
`, c.id, c.id, c.schema, c.id, c.id, c.id)))
}
}