Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rjs_json_form
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
rjs_json_form
Commits
a6bc0bae
Commit
a6bc0bae
authored
Aug 21, 2018
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
render null type fields added and fix render_const
parent
0d88985d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
jsonform/gadget_json_generated_form_child.js
jsonform/gadget_json_generated_form_child.js
+9
-3
No files found.
jsonform/gadget_json_generated_form_child.js
View file @
a6bc0bae
...
...
@@ -200,12 +200,15 @@
function
render_const
(
schema
,
json_document
)
{
var
input
=
document
.
createElement
(
"
input
"
),
ser_doc
=
JSON
.
stringify
(
json_document
),
ser_const
=
JSON
.
stringify
(
schema
.
const
);
input
.
setAttribute
(
'
readonly
'
,
true
);
if
(
deepEqual
(
json_document
,
schema
.
const
))
{
if
(
json_document
===
undefined
||
deepEqual
(
json_document
,
schema
.
const
))
{
input
.
setAttribute
(
'
data-origin-value
'
,
ser_const
);
input
.
value
=
ser_const
;
}
else
{
input
.
value
=
JSON
.
stringify
(
json_document
)
+
'
≠
'
+
ser_const
;
input
.
value
=
ser_doc
+
'
≠
'
+
ser_const
;
input
.
setAttribute
(
'
data-origin-value
'
,
ser_doc
);
input
.
setAttribute
(
'
data-const-value
'
,
ser_const
);
}
return
input
;
...
...
@@ -773,13 +776,16 @@
if
(
json_field
.
const
!==
undefined
)
{
input
=
render_const
(
json_field
,
default_value
);
type_changed
=
true
;
}
else
if
(
json_field
.
enum
!==
undefined
)
{
input
=
render_enum
(
json_field
,
default_value
);
// XXX take in account existing type with enum
type_changed
=
false
;
}
if
(
!
input
&&
type
===
"
null
"
)
{
input
=
render_const
({
const
:
null
},
default_value
);
}
if
(
!
input
&&
type
===
"
boolean
"
)
{
input
=
render_boolean
(
json_field
,
default_value
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment