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
Rafael Monnerat
rjs_json_form
Commits
f8b40a42
Commit
f8b40a42
authored
Feb 23, 2018
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initial add
@rafael
Rafael Monnerat work
parents
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1515 additions
and
0 deletions
+1515
-0
gadget_erp5_page_slap_load_schema.html
gadget_erp5_page_slap_load_schema.html
+23
-0
gadget_erp5_page_slap_load_schema.js
gadget_erp5_page_slap_load_schema.js
+280
-0
gadget_erp5_page_slap_parameter_form.css
gadget_erp5_page_slap_parameter_form.css
+203
-0
gadget_erp5_page_slap_parameter_form.html
gadget_erp5_page_slap_parameter_form.html
+52
-0
gadget_erp5_page_slap_parameter_form.js
gadget_erp5_page_slap_parameter_form.js
+957
-0
No files found.
gadget_erp5_page_slap_load_schema.html
0 → 100644
View file @
f8b40a42
<!DOCTYPE html>
<html
manifest=
"gadget_erp5.appcache"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<title>
ERP5
</title>
<link
rel=
"shortcut icon"
href=
"favicon.ico"
>
<script
src=
"rsvp.js"
type=
"text/javascript"
></script>
<script
src=
"renderjs.js"
type=
"text/javascript"
></script>
<script
src=
"URI.js"
type=
"text/javascript"
></script>
<script
src=
"jquery.js"
type=
"text/javascript"
></script>
<script
src=
"tv4.min.js"
type=
"text/javascript"
></script>
<script
src=
"URI.js"
type=
"text/javascript"
></script>
<script
src=
"jio.js"
type=
"text/javascript"
></script>
<script
src=
"gadget_erp5_page_slap_load_schema.js"
type=
"text/javascript"
></script>
</head>
<body>
<div
/>
</body>
</html>
\ No newline at end of file
gadget_erp5_page_slap_load_schema.js
0 → 100644
View file @
f8b40a42
/*jslint nomen: true, maxlen: 200, indent: 2*/
/*global window, rJS, console, RSVP, jQuery, jIO, tv4, URI, JSON, $ */
(
function
(
window
,
rJS
,
$
,
RSVP
)
{
"
use strict
"
;
var
gk
=
rJS
(
window
);
function
getJSON
(
url
)
{
var
protocol
=
URI
(
url
).
protocol
();
if
(
protocol
===
"
http
"
||
protocol
===
"
https
"
)
{
if
(
URI
(
window
.
location
).
protocol
()
!==
protocol
)
{
throw
new
Error
(
"
You cannot mixed http and https calls
"
);
}
}
return
RSVP
.
Queue
()
.
push
(
function
()
{
return
jIO
.
util
.
ajax
({
url
:
url
})
.
then
(
function
(
evt
)
{
return
evt
.
target
.
responseText
;
});
});
}
function
resolveLocalReference
(
ref
,
schema
)
{
// 2 here is for #/
var
i
,
ref_path
=
ref
.
substr
(
2
,
ref
.
length
),
parts
=
ref_path
.
split
(
"
/
"
);
if
(
parts
.
length
===
1
&&
parts
[
0
]
===
""
)
{
// It was uses #/ to reference the entire json so just return it.
return
schema
;
}
for
(
i
=
0
;
i
<
parts
.
length
;
i
+=
1
)
{
schema
=
schema
[
parts
[
i
]];
}
return
schema
;
}
function
resolveReference
(
partial_schema
,
schema
,
base_url
)
{
var
parts
,
external_schema
,
ref
=
partial_schema
.
$ref
;
if
(
ref
===
undefined
)
{
return
RSVP
.
Queue
().
push
(
function
()
{
return
partial_schema
;
});
}
if
(
ref
.
substr
(
0
,
1
)
===
"
#
"
)
{
return
RSVP
.
Queue
().
push
(
function
()
{
return
resolveLocalReference
(
ref
,
schema
);
});
}
return
RSVP
.
Queue
().
push
(
function
()
{
if
(
URI
(
ref
).
protocol
()
===
""
)
{
if
(
base_url
!==
undefined
)
{
ref
=
base_url
+
"
/
"
+
ref
;
}
}
return
getJSON
(
ref
);
})
.
push
(
function
(
json
)
{
external_schema
=
JSON
.
parse
(
json
);
parts
=
ref
.
split
(
"
#
"
);
ref
=
"
#
"
+
parts
[
1
];
return
resolveLocalReference
(
ref
,
external_schema
);
});
}
function
clone
(
obj
)
{
return
JSON
.
parse
(
JSON
.
stringify
(
obj
));
}
// Inspired from https://github.com/nexedi/dream/blob/master/dream/platform/src/jsplumb/jsplumb.js#L398
function
expandSchema
(
json_schema
,
full_schema
,
base_url
)
{
var
i
,
expanded_json_schema
=
clone
(
json_schema
)
||
{};
if
(
!
expanded_json_schema
.
properties
)
{
expanded_json_schema
.
properties
=
{};
}
return
RSVP
.
Queue
().
push
(
function
()
{
if
(
json_schema
.
$ref
)
{
return
resolveReference
(
json_schema
,
full_schema
,
base_url
)
.
push
(
function
(
remote_schema
)
{
return
expandSchema
(
remote_schema
,
full_schema
,
base_url
);
}).
push
(
function
(
referencedx
)
{
$
.
extend
(
expanded_json_schema
,
referencedx
);
delete
expanded_json_schema
.
$ref
;
return
true
;
});
}
return
true
;
}).
push
(
function
()
{
var
property
,
queue
=
RSVP
.
Queue
();
function
wrapperResolveReference
(
p
)
{
return
resolveReference
(
json_schema
.
properties
[
p
],
full_schema
,
base_url
).
push
(
function
(
external_schema
)
{
// console.log(p);
return
expandSchema
(
external_schema
,
full_schema
,
base_url
)
.
push
(
function
(
referencedx
)
{
$
.
extend
(
expanded_json_schema
.
properties
[
p
],
referencedx
);
if
(
json_schema
.
properties
[
p
].
$ref
)
{
delete
expanded_json_schema
.
properties
[
p
].
$ref
;
}
return
referencedx
;
});
});
}
// expand ref in properties
for
(
property
in
json_schema
.
properties
)
{
if
(
json_schema
.
properties
.
hasOwnProperty
(
property
))
{
queue
.
push
(
wrapperResolveReference
.
bind
(
this
,
property
)
);
}
}
return
queue
;
})
.
push
(
function
()
{
var
zqueue
=
RSVP
.
Queue
();
function
wrapperExpandSchema
(
p
)
{
return
expandSchema
(
json_schema
.
allOf
[
p
],
full_schema
,
base_url
).
push
(
function
(
referencedx
)
{
if
(
referencedx
.
properties
)
{
$
.
extend
(
expanded_json_schema
.
properties
,
referencedx
.
properties
);
delete
referencedx
.
properties
;
}
$
.
extend
(
expanded_json_schema
,
referencedx
);
});
}
if
(
json_schema
.
allOf
)
{
for
(
i
=
0
;
i
<
json_schema
.
allOf
.
length
;
i
+=
1
)
{
zqueue
.
push
(
wrapperExpandSchema
.
bind
(
this
,
i
));
}
}
return
zqueue
;
})
.
push
(
function
()
{
if
(
expanded_json_schema
.
allOf
)
{
delete
expanded_json_schema
.
allOf
;
}
if
(
expanded_json_schema
.
$ref
)
{
delete
expanded_json_schema
.
$ref
;
}
// console.log(expanded_json_schema);
return
clone
(
expanded_json_schema
);
});
}
function
getMetaJSONSchema
()
{
return
getJSON
(
"
slapos_load_meta_schema.json
"
);
}
function
validateJSONSchema
(
json
,
base_url
)
{
return
getMetaJSONSchema
()
.
push
(
function
(
meta_schema
)
{
if
(
!
tv4
.
validate
(
json
,
meta_schema
))
{
throw
new
Error
(
"
Non valid JSON schema
"
+
json
);
}
return
JSON
.
parse
(
json
);
})
.
push
(
function
(
schema
)
{
return
expandSchema
(
schema
,
schema
,
base_url
);
});
}
gk
.
declareMethod
(
"
loadJSONSchema
"
,
function
(
url
)
{
return
getJSON
(
url
)
.
push
(
function
(
json
)
{
var
base_url
,
url_uri
;
url_uri
=
URI
(
url
);
base_url
=
url_uri
.
path
().
split
(
"
/
"
);
base_url
.
pop
();
base_url
=
url
.
split
(
url_uri
.
path
())[
0
]
+
base_url
.
join
(
"
/
"
);
return
validateJSONSchema
(
json
,
base_url
);
});
})
.
declareMethod
(
"
loadSoftwareJSON
"
,
function
(
url
)
{
return
getJSON
(
url
)
.
push
(
function
(
json
)
{
return
JSON
.
parse
(
json
);
});
})
.
declareMethod
(
"
validateJSONForSoftwareType
"
,
function
(
schema_url
,
software_type
,
generated_json
)
{
return
getJSON
(
schema_url
)
.
push
(
function
(
json
)
{
return
JSON
.
parse
(
json
);
})
.
push
(
function
(
json_object
)
{
var
parameter_schema_url
,
st
,
base_url
,
url_uri
=
URI
(
schema_url
);
for
(
st
in
json_object
[
"
software-type
"
])
{
if
(
json_object
[
"
software-type
"
].
hasOwnProperty
(
st
))
{
if
(
st
===
software_type
)
{
parameter_schema_url
=
json_object
[
"
software-type
"
][
st
].
request
;
}
}
}
if
(
URI
(
parameter_schema_url
).
protocol
()
===
""
)
{
base_url
=
url_uri
.
path
().
split
(
"
/
"
);
base_url
.
pop
();
base_url
=
schema_url
.
split
(
url_uri
.
path
())[
0
]
+
base_url
.
join
(
"
/
"
);
if
(
base_url
!==
undefined
)
{
parameter_schema_url
=
base_url
+
"
/
"
+
parameter_schema_url
;
}
}
return
getJSON
(
parameter_schema_url
)
.
push
(
function
(
json
)
{
var
schema
=
JSON
.
parse
(
json
);
return
expandSchema
(
schema
,
schema
,
base_url
)
.
push
(
function
(
loaded_json
)
{
return
tv4
.
validateMultiple
(
generated_json
,
loaded_json
);
});
});
});
})
.
declareMethod
(
"
validateJSON
"
,
function
(
schema_url
,
generated_json
)
{
return
getJSON
(
schema_url
)
.
push
(
function
(
json
)
{
var
base_url
,
url_uri
=
URI
(
schema_url
),
schema
=
JSON
.
parse
(
json
);
base_url
=
url_uri
.
path
().
split
(
"
/
"
);
base_url
.
pop
();
base_url
=
schema_url
.
split
(
url_uri
.
path
())[
0
]
+
base_url
.
join
(
"
/
"
);
return
expandSchema
(
schema
,
schema
,
base_url
)
.
push
(
function
(
loaded_schema
)
{
return
tv4
.
validateMultiple
(
generated_json
,
loaded_schema
);
});
});
});
}(
window
,
rJS
,
$
,
RSVP
));
\ No newline at end of file
gadget_erp5_page_slap_parameter_form.css
0 → 100644
View file @
f8b40a42
div
.subfield
{
margin-left
:
15px
;
}
fieldset
>
.subfield
{
padding-left
:
0
}
.subfield
{
padding-left
:
20px
;
}
label
.slapos-parameter-dict-key
::before
{
content
:
"\25BC Parameter Entry: "
;
}
label
.slapos-parameter-dict-key-colapse
::before
{
content
:
"\25BA Parameter Entry: "
;
}
label
.slapos-parameter-dict-key
{
text-transform
:
capitalize
;
/* display: block !important; */
width
:
99%
;
padding
:
5px
;
font-size
:
110%
;
line-height
:
20px
;
color
:
rgb
(
93
,
128
,
125
)
!important
;
cursor
:
pointer
;
}
div
.slapos-parameter-dict-key
{
margin-top
:
10px
;
background
:
rgb
(
239
,
252
,
249
);
border
:
1px
solid
rgb
(
233
,
247
,
253
);
padding
:
5px
;
}
div
.slapos-parameter-dict-key
.subfield
:last-child
{
padding
:
5px
5px
10px
20px
;
}
#software-type
{
padding
:
10px
0
0
;}
#software-type
.field
[
title
=
'serialisation_type'
]
.input
{
padding-top
:
0
;
}
.subfield
,
#software-type
.input
{
padding-top
:
10px
;
}
.subfield
label
,
#software-type
label
{
display
:
inline-block
;
margin-bottom
:
1px
;
color
:
rgb
(
124
,
134
,
149
)
}
fieldset
>
.subfield
>
label
{
font-size
:
113%
;
color
:
rgb
(
112
,
125
,
136
);
}
.subfield
span
{
font-weight
:
normal
;
font-style
:
italic
;
padding-left
:
7px
;
color
:
rgb
(
94
,
127
,
141
)
}
.subfield
select
{
margin-bottom
:
10px
;}
.subfield
textarea
{
width
:
250px
;
height
:
60px
;}
.subfield
.error
{
color
:
#E82525
;
font-weight
:
700
;
}
.subfield
input
{
font-size
:
100%
;
width
:
240px
;
}
.input
button
{
margin-left
:
10px
;}
.add-sub-form
{
background
:
#3498db
;
background-image
:
-webkit-linear-gradient
(
top
,
#3498db
,
#2980b9
);
background-image
:
-moz-linear-gradient
(
top
,
#3498db
,
#2980b9
);
background-image
:
-ms-linear-gradient
(
top
,
#3498db
,
#2980b9
);
background-image
:
-o-linear-gradient
(
top
,
#3498db
,
#2980b9
);
background-image
:
linear-gradient
(
to
bottom
,
#3498db
,
#2980b9
);
-webkit-border-radius
:
4
;
-moz-border-radius
:
4
;
border-radius
:
4px
;
border
:
1px
solid
#3498db
;
color
:
#ffffff
;
font-size
:
15px
;
font-weight
:
bold
;
padding
:
6px
20px
;
text-decoration
:
none
;
cursor
:
pointer
;
}
.add-sub-form
:hover
{
background
:
#3cb0fd
;
background-image
:
-webkit-linear-gradient
(
top
,
#3cb0fd
,
#3498db
);
background-image
:
-moz-linear-gradient
(
top
,
#3cb0fd
,
#3498db
);
background-image
:
-ms-linear-gradient
(
top
,
#3cb0fd
,
#3498db
);
background-image
:
-o-linear-gradient
(
top
,
#3cb0fd
,
#3498db
);
background-image
:
linear-gradient
(
to
bottom
,
#3cb0fd
,
#3498db
);
text-decoration
:
none
;
}
.bt_close
,
.subfield
.slapos-parameter-dict-key
span
.bt_close
{
padding
:
0
6px
;
display
:
block
;
float
:
right
;
text-overflow
:
clip
;
white-space
:
nowrap
;
overflow
:
hidden
;
font-size
:
1.5em
;
border-radius
:
2px
;
}
.bt_close
:hover
{
background
:
#81afab
;
color
:
#fff
;
}
.hs-short-title
{
margin-left
:
6px
;
padding-bottom
:
10px
;
font-size
:
12px
;
font-weight
:
normal
;
display
:
inline-block
;
}
button
.hidden-button
{
display
:
none
;
}
.listbox-parameters
a
{
word-wrap
:
break-word
;
max-width
:
400px
;
display
:
inline-block
;
word-break
:
keep-all
;
}
.non-editable
>
div
.input
{
border
:
1px
solid
rgb
(
201
,
201
,
201
);
padding
:
5px
;
background
:
white
;
font-weight
:
normal
;
margin
:
5px
0
10px
;
max-height
:
250px
;
width
:
80%
;}
.subfield
{
padding-left
:
20px
;
}
label
.slapos-parameter-dict-key
::before
{
content
:
"Parameter Entry: "
;
}
label
.slapos-parameter-dict-key
{
font-color
:
"red"
;
}
div
.slapos-parameter-dict-key
{
margin-top
:
10px
;
margin-left
:
6px
;
}
.subfield
{
padding-top
:
3px
;
}
textarea
.slapos-parameter
{
width
:
400px
;
height
:
100px
;
}
button
.hidden-button
{
display
:
none
;
}
.add-sub-form
{
background
:
#3498db
;
background-image
:
-webkit-linear-gradient
(
top
,
#3498db
,
#2980b9
);
background-image
:
-moz-linear-gradient
(
top
,
#3498db
,
#2980b9
);
background-image
:
-ms-linear-gradient
(
top
,
#3498db
,
#2980b9
);
background-image
:
-o-linear-gradient
(
top
,
#3498db
,
#2980b9
);
background-image
:
linear-gradient
(
to
bottom
,
#3498db
,
#2980b9
);
-webkit-border-radius
:
28
;
-moz-border-radius
:
28
;
border-radius
:
28px
;
font-family
:
Arial
;
color
:
#ffffff
;
font-size
:
12px
;
padding
:
5px
20px
5px
20px
;
text-decoration
:
none
;
}
.add-sub-form
:hover
{
background
:
#3cb0fd
;
background-image
:
-webkit-linear-gradient
(
top
,
#3cb0fd
,
#3498db
);
background-image
:
-moz-linear-gradient
(
top
,
#3cb0fd
,
#3498db
);
background-image
:
-ms-linear-gradient
(
top
,
#3cb0fd
,
#3498db
);
background-image
:
-o-linear-gradient
(
top
,
#3cb0fd
,
#3498db
);
background-image
:
linear-gradient
(
to
bottom
,
#3cb0fd
,
#3498db
);
text-decoration
:
none
;
}
\ No newline at end of file
gadget_erp5_page_slap_parameter_form.html
0 → 100644
View file @
f8b40a42
<!DOCTYPE html>
<html
manifest=
"gadget_erp5.appcache"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<title>
ERP5
</title>
<link
rel=
"shortcut icon"
href=
"favicon.ico"
>
<script
src=
"rsvp.js"
type=
"text/javascript"
></script>
<script
src=
"renderjs.js"
type=
"text/javascript"
></script>
<script
src=
"URI.js"
type=
"text/javascript"
></script>
<script
src=
"jquery.js"
type=
"text/javascript"
></script>
<script
src=
"vkbeautify.js"
type=
"text/javascript"
></script>
<script
src=
"gadget_erp5_page_slap_parameter_form.js"
type=
"text/javascript"
></script>
<link
href=
"gadget_erp5_page_slap_parameter_form.css"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
<body>
<div>
<fieldset
id=
"software-type"
>
<div
class=
"field"
title=
"software_type"
>
<label>
Software Type
</label>
<div
class=
"input"
>
<select
size=
"1"
name=
"software_type"
class=
"slapos-software-type"
>
</select>
</div>
</div>
<div
class=
"field"
title=
"serialisation_type"
>
<div
class=
"input"
>
<input
type=
hidden
name=
"serialisation_type"
class=
"slapos-serialisation-type"
></input>
</div>
</div>
</div>
<div
class=
"field"
title=
"hide_show_button"
>
<div
class=
"input"
>
<button
type=
"button"
class=
"slapos-show-form hidden-button"
>
Show Parameter Form
</button>
<button
type=
"button"
class=
"slapos-show-raw-parameter"
>
Show Parameter XML
</button>
</div>
</div>
</fieldset>
<fieldset
id=
"parameter-main"
>
</fieldset>
<fieldset
id=
"parameter-optional"
>
</fieldset>
<fieldset
id=
"parameter-xml"
>
<input
type=
hidden
name=
"parameter_hash"
class=
"parameter_hash_output"
></input>
<input
type=
hidden
name=
"shared"
class=
"parameter_shared"
></input>
</fieldset>
</div>
<div
class=
"loadschema"
data-gadget-url=
"gadget_erp5_page_slap_load_schema.html"
data-gadget-scope=
"loadschema"
>
</div>
</body>
</html>
\ No newline at end of file
gadget_erp5_page_slap_parameter_form.js
0 → 100644
View file @
f8b40a42
/*jslint nomen: true, maxlen: 200, indent: 2*/
/*global rJS, console, window, document, RSVP, btoa, atob, $, XMLSerializer, jQuery, URI, vkbeautify */
(
function
(
window
,
document
,
rJS
,
$
,
XMLSerializer
,
jQuery
,
vkbeautify
)
{
"
use strict
"
;
var
gk
=
rJS
(
window
);
function
jsonDictToParameterXML
(
json
)
{
var
parameter_id
,
xml_output
=
$
(
$
.
parseXML
(
'
<?xml version="1.0" encoding="utf-8" ?><instance />
'
));
// Used by serialisation XML
for
(
parameter_id
in
json
)
{
if
(
json
.
hasOwnProperty
(
parameter_id
))
{
$
(
'
instance
'
,
xml_output
).
append
(
$
(
'
<parameter />
'
,
xml_output
)
.
text
(
json
[
parameter_id
])
.
attr
({
id
:
parameter_id
})
);
}
}
return
vkbeautify
.
xml
(
(
new
XMLSerializer
()).
serializeToString
(
xml_output
.
context
)
);
}
function
jsonDictToParameterJSONInXML
(
json
)
{
var
xml_output
=
$
(
$
.
parseXML
(
'
<?xml version="1.0" encoding="utf-8" ?><instance />
'
));
// Used by serialisation XML
$
(
'
instance
'
,
xml_output
).
append
(
$
(
'
<parameter />
'
,
xml_output
)
.
text
(
vkbeautify
.
json
(
JSON
.
stringify
(
json
)))
.
attr
({
id
:
"
_
"
})
);
return
vkbeautify
.
xml
(
(
new
XMLSerializer
()).
serializeToString
(
xml_output
.
context
)
);
}
function
loopEventListener
(
target
,
type
,
useCapture
,
callback
,
prevent_default
)
{
//////////////////////////
// Infinite event listener (promise is never resolved)
// eventListener is removed when promise is cancelled/rejected
//////////////////////////
var
handle_event_callback
,
callback_promise
;
if
(
prevent_default
===
undefined
)
{
prevent_default
=
true
;
}
function
cancelResolver
()
{
if
((
callback_promise
!==
undefined
)
&&
(
typeof
callback_promise
.
cancel
===
"
function
"
))
{
callback_promise
.
cancel
();
}
}
function
canceller
()
{
if
(
handle_event_callback
!==
undefined
)
{
target
.
removeEventListener
(
type
,
handle_event_callback
,
useCapture
);
}
cancelResolver
();
}
function
itsANonResolvableTrap
(
resolve
,
reject
)
{
var
result
;
handle_event_callback
=
function
(
evt
)
{
if
(
prevent_default
)
{
evt
.
stopPropagation
();
evt
.
preventDefault
();
}
cancelResolver
();
try
{
result
=
callback
(
evt
);
}
catch
(
e
)
{
result
=
RSVP
.
reject
(
e
);
}
callback_promise
=
result
;
new
RSVP
.
Queue
()
.
push
(
function
()
{
return
result
;
})
.
push
(
undefined
,
function
(
error
)
{
if
(
!
(
error
instanceof
RSVP
.
CancellationError
))
{
canceller
();
reject
(
error
);
}
});
};
target
.
addEventListener
(
type
,
handle_event_callback
,
useCapture
);
}
return
new
RSVP
.
Promise
(
itsANonResolvableTrap
,
canceller
);
}
function
render_selection
(
json_field
,
default_value
)
{
var
input
=
document
.
createElement
(
"
select
"
),
option
=
document
.
createElement
(
"
option
"
),
option_index
,
optionz
;
input
.
size
=
1
;
option
.
value
=
""
;
if
(
default_value
===
undefined
)
{
option
.
selected
=
"
selected
"
;
}
input
.
appendChild
(
option
);
for
(
option_index
in
json_field
[
'
enum
'
])
{
if
(
json_field
[
'
enum
'
].
hasOwnProperty
(
option_index
))
{
optionz
=
document
.
createElement
(
"
option
"
);
optionz
.
value
=
json_field
[
'
enum
'
][
option_index
];
optionz
.
textContent
=
json_field
[
'
enum
'
][
option_index
];
if
(
json_field
[
'
enum
'
][
option_index
]
===
default_value
)
{
optionz
.
selected
=
"
selected
"
;
}
input
.
appendChild
(
optionz
);
}
}
return
input
;
}
function
render_textarea
(
json_field
,
default_value
,
data_format
)
{
var
input
=
document
.
createElement
(
"
textarea
"
);
if
(
default_value
!==
undefined
)
{
if
(
default_value
instanceof
Array
)
{
input
.
value
=
default_value
.
join
(
"
\n
"
);
}
else
{
input
.
value
=
default_value
;
}
}
input
[
"
data-format
"
]
=
data_format
;
return
input
;
}
function
render_field
(
json_field
,
default_value
)
{
if
(
json_field
[
'
enum
'
]
!==
undefined
)
{
return
render_selection
(
json_field
,
default_value
);
}
if
(
json_field
.
type
===
"
boolean
"
)
{
json_field
[
'
enum
'
]
=
[
true
,
false
];
if
(
default_value
===
"
true
"
)
{
default_value
=
true
;
}
if
(
default_value
===
"
false
"
)
{
default_value
=
false
;
}
return
render_selection
(
json_field
,
default_value
);
}
if
(
json_field
.
type
===
"
array
"
)
{
return
render_textarea
(
json_field
,
default_value
,
"
array
"
);
}
if
(
json_field
.
type
===
"
string
"
&&
json_field
.
textarea
===
true
)
{
return
render_textarea
(
json_field
,
default_value
,
"
string
"
);
}
var
input
=
document
.
createElement
(
"
input
"
);
if
(
default_value
!==
undefined
)
{
input
.
value
=
default_value
;
}
if
(
json_field
.
type
===
"
integer
"
)
{
input
.
type
=
"
number
"
;
}
else
{
input
.
type
=
"
text
"
;
}
return
input
;
}
function
render_subform
(
json_field
,
default_dict
,
root
,
path
)
{
var
div_input
,
key
,
div
,
label
,
input
,
default_value
,
default_used_list
=
[],
default_div
,
span_error
,
span_info
;
if
(
default_dict
===
undefined
)
{
default_dict
=
{};
}
if
(
path
===
undefined
)
{
path
=
"
/
"
;
}
if
(
json_field
.
patternProperties
!==
undefined
)
{
if
(
json_field
.
patternProperties
[
'
.*
'
]
!==
undefined
)
{
div
=
document
.
createElement
(
"
div
"
);
div
.
setAttribute
(
"
class
"
,
"
subfield
"
);
div
.
title
=
json_field
.
description
;
/* console.log(key); */
div_input
=
document
.
createElement
(
"
div
"
);
div_input
=
document
.
createElement
(
"
div
"
);
div_input
.
setAttribute
(
"
class
"
,
"
input
"
);
input
=
document
.
createElement
(
"
input
"
);
input
.
type
=
"
text
"
;
div_input
.
appendChild
(
input
);
input
=
document
.
createElement
(
"
button
"
);
input
.
value
=
btoa
(
JSON
.
stringify
(
json_field
.
patternProperties
[
'
.*
'
]));
input
.
setAttribute
(
"
class
"
,
"
add-sub-form
"
);
input
.
type
=
"
button
"
;
input
.
name
=
path
;
input
.
textContent
=
"
Add
"
;
div_input
.
appendChild
(
input
);
div
.
appendChild
(
div_input
);
for
(
default_value
in
default_dict
)
{
if
(
default_dict
.
hasOwnProperty
(
default_value
))
{
default_div
=
document
.
createElement
(
"
div
"
);
default_div
.
setAttribute
(
"
class
"
,
"
slapos-parameter-dict-key
"
);
label
=
document
.
createElement
(
"
label
"
);
label
.
textContent
=
default_value
;
label
.
setAttribute
(
"
class
"
,
"
slapos-parameter-dict-key
"
);
default_div
.
appendChild
(
label
);
default_div
=
render_subform
(
json_field
.
patternProperties
[
'
.*
'
],
default_dict
[
default_value
],
default_div
,
path
+
"
/
"
+
default_value
);
div
.
appendChild
(
default_div
);
}
}
root
.
appendChild
(
div
);
return
div
;
}
}
for
(
key
in
json_field
.
properties
)
{
if
(
json_field
.
properties
.
hasOwnProperty
(
key
))
{
div
=
document
.
createElement
(
"
div
"
);
div
.
setAttribute
(
"
class
"
,
"
subfield
"
);
div
.
title
=
json_field
.
properties
[
key
].
description
;
/* console.log(key); */
label
=
document
.
createElement
(
"
label
"
);
label
.
textContent
=
json_field
.
properties
[
key
].
title
;
div
.
appendChild
(
label
);
div_input
=
document
.
createElement
(
"
div
"
);
div_input
.
setAttribute
(
"
class
"
,
"
input
"
);
if
(
json_field
.
properties
[
key
].
type
===
'
object
'
)
{
div_input
=
render_subform
(
json_field
.
properties
[
key
],
default_dict
[
key
],
div_input
,
path
+
"
/
"
+
key
);
}
else
{
input
=
render_field
(
json_field
.
properties
[
key
],
default_dict
[
key
]);
input
.
name
=
path
+
"
/
"
+
key
;
input
.
setAttribute
(
"
class
"
,
"
slapos-parameter
"
);
div_input
.
appendChild
(
input
);
}
default_used_list
.
push
(
key
);
if
(
json_field
.
properties
[
key
][
'
default
'
]
!==
undefined
)
{
span_info
=
document
.
createElement
(
"
span
"
);
span_info
.
textContent
=
'
(default =
'
+
json_field
.
properties
[
key
][
'
default
'
]
+
'
)
'
;
div_input
.
appendChild
(
span_info
);
}
span_error
=
document
.
createElement
(
"
span
"
);
span_error
.
setAttribute
(
"
class
"
,
"
error
"
);
div_input
.
appendChild
(
span_error
);
div
.
appendChild
(
div_input
);
root
.
appendChild
(
div
);
}
}
for
(
key
in
default_dict
)
{
if
(
default_dict
.
hasOwnProperty
(
key
))
{
if
(
default_used_list
.
indexOf
(
key
)
<
0
)
{
div
=
document
.
createElement
(
"
div
"
);
div
.
setAttribute
(
"
class
"
,
"
subfield
"
);
div
.
title
=
key
;
label
=
document
.
createElement
(
"
label
"
);
label
.
textContent
=
key
;
div
.
appendChild
(
label
);
div_input
=
document
.
createElement
(
"
div
"
);
div_input
.
setAttribute
(
"
class
"
,
"
input
"
);
input
=
render_field
({
"
type
"
:
"
string
"
},
default_dict
[
key
]);
input
.
name
=
path
+
"
/
"
+
key
;
input
.
setAttribute
(
"
class
"
,
"
slapos-parameter
"
);
div_input
.
appendChild
(
input
);
default_used_list
.
push
(
key
);
span_info
=
document
.
createElement
(
"
span
"
);
span_info
.
textContent
=
'
(Not part of the schema)
'
;
div_input
.
appendChild
(
span_info
);
span_error
=
document
.
createElement
(
"
span
"
);
span_error
.
setAttribute
(
"
class
"
,
"
error
"
);
div_input
.
appendChild
(
span_error
);
div
.
appendChild
(
div_input
);
root
.
appendChild
(
div
);
}
}
}
return
root
;
}
function
getFormValuesAsJSONDict
(
element
)
{
var
json_dict
=
{},
entry
,
multi_level_dict
=
{};
$
(
element
.
querySelectorAll
(
"
.slapos-parameter
"
)).
each
(
function
(
key
,
input
)
{
if
(
input
.
value
!==
""
)
{
if
(
input
.
type
===
'
number
'
)
{
json_dict
[
input
.
name
]
=
parseInt
(
input
.
value
,
10
);
}
else
if
(
input
.
value
===
"
true
"
)
{
json_dict
[
input
.
name
]
=
true
;
}
else
if
(
input
.
value
===
"
false
"
)
{
json_dict
[
input
.
name
]
=
false
;
}
else
if
(
input
.
tagName
===
"
TEXTAREA
"
)
{
if
(
input
[
"
data-format
"
]
===
"
string
"
)
{
json_dict
[
input
.
name
]
=
input
.
value
;
}
else
{
json_dict
[
input
.
name
]
=
input
.
value
.
split
(
'
\n
'
);
}
}
else
{
json_dict
[
input
.
name
]
=
input
.
value
;
}
}
});
function
convertOnMultiLevel
(
key
,
value
,
d
)
{
var
i
,
kk
,
key_list
=
key
.
split
(
"
/
"
);
for
(
i
=
2
;
i
<
key_list
.
length
;
i
+=
1
)
{
kk
=
key_list
[
i
];
if
(
i
===
key_list
.
length
-
1
)
{
d
[
kk
]
=
value
;
}
else
{
if
(
!
d
.
hasOwnProperty
(
kk
))
{
d
[
kk
]
=
{};
}
d
=
d
[
kk
];
}
}
}
for
(
entry
in
json_dict
)
{
if
(
json_dict
.
hasOwnProperty
(
entry
))
{
convertOnMultiLevel
(
entry
,
json_dict
[
entry
],
multi_level_dict
);
}
}
return
multi_level_dict
;
}
function
validateForm
(
gadget
,
json_url
)
{
return
gadget
.
processValidation
(
json_url
);
}
function
collapseParameter
(
element
)
{
$
(
element
).
parent
().
children
(
"
div
"
).
toggle
(
300
);
if
(
$
(
element
).
hasClass
(
"
slapos-parameter-dict-key-colapse
"
))
{
$
(
element
).
removeClass
(
"
slapos-parameter-dict-key-colapse
"
);
}
else
{
$
(
element
).
addClass
(
"
slapos-parameter-dict-key-colapse
"
);
}
return
element
;
}
function
addSubForm
(
element
)
{
var
subform_json
=
JSON
.
parse
(
atob
(
element
.
value
)),
input_text
=
element
.
parentNode
.
querySelector
(
"
input[type='text']
"
),
div
=
document
.
createElement
(
"
div
"
),
label
;
if
(
input_text
.
value
===
""
)
{
return
false
;
}
div
.
setAttribute
(
"
class
"
,
"
slapos-parameter-dict-key
"
);
label
=
document
.
createElement
(
"
label
"
);
label
.
textContent
=
input_text
.
value
;
label
.
setAttribute
(
"
class
"
,
"
slapos-parameter-dict-key
"
);
div
.
appendChild
(
label
);
div
=
render_subform
(
subform_json
,
{},
div
,
element
.
name
+
"
/
"
+
input_text
.
value
);
element
.
parentNode
.
parentNode
.
insertBefore
(
div
,
element
.
parentNode
.
parentNode
.
children
[
1
]);
// element.parentNode.parentNode.appendChild(div);
return
div
;
}
function
loadEventList
(
gadget
)
{
var
g
=
gadget
,
field_list
=
g
.
element
.
querySelectorAll
(
"
.slapos-parameter
"
),
button_list
=
g
.
element
.
querySelectorAll
(
'
button.add-sub-form
'
),
label_list
=
g
.
element
.
querySelectorAll
(
'
label.slapos-parameter-dict-key
'
),
i
,
promise_list
=
[];
for
(
i
=
0
;
i
<
field_list
.
length
;
i
=
i
+
1
)
{
promise_list
.
push
(
loopEventListener
(
field_list
[
i
],
'
change
'
,
false
,
validateForm
.
bind
(
g
,
g
,
g
.
options
.
value
.
parameter
.
json_url
)
));
}
for
(
i
=
0
;
i
<
button_list
.
length
;
i
=
i
+
1
)
{
promise_list
.
push
(
loopEventListener
(
button_list
[
i
],
'
click
'
,
false
,
addSubForm
.
bind
(
g
,
button_list
[
i
])
));
}
for
(
i
=
0
;
i
<
label_list
.
length
;
i
=
i
+
1
)
{
promise_list
.
push
(
loopEventListener
(
label_list
[
i
],
'
click
'
,
false
,
collapseParameter
.
bind
(
g
,
label_list
[
i
])
));
}
return
RSVP
.
all
(
promise_list
);
}
function
getSoftwareTypeFromForm
(
element
)
{
var
input
=
element
.
querySelector
(
"
.slapos-software-type
"
);
if
(
input
!==
undefined
&&
input
!==
null
)
{
return
input
.
value
;
}
return
""
;
}
function
getSerialisationTypeFromForm
(
element
)
{
var
input
=
element
.
querySelector
(
"
.slapos-serialisation-type
"
);
if
(
input
!==
undefined
&&
input
!==
null
)
{
return
input
.
value
;
}
return
""
;
}
gk
.
declareMethod
(
"
loadJSONSchema
"
,
function
(
url
)
{
return
this
.
getDeclaredGadget
(
'
loadschema
'
)
.
push
(
function
(
gadget
)
{
return
gadget
.
loadJSONSchema
(
url
);
});
})
.
declareMethod
(
"
validateJSONForSoftwareType
"
,
function
(
schema_url
,
softwaretype
,
generated_json
)
{
return
this
.
getDeclaredGadget
(
'
loadschema
'
)
.
push
(
function
(
gadget
)
{
return
gadget
.
validateJSONForSoftwareType
(
schema_url
,
softwaretype
,
generated_json
);
});
})
.
declareMethod
(
"
loadSoftwareJSON
"
,
function
(
url
)
{
return
this
.
getDeclaredGadget
(
'
loadschema
'
)
.
push
(
function
(
gadget
)
{
return
gadget
.
loadSoftwareJSON
(
url
);
});
})
.
declareMethod
(
'
processValidation
'
,
function
(
json_url
)
{
var
g
=
this
,
software_type
=
getSoftwareTypeFromForm
(
g
.
element
),
json_dict
=
getFormValuesAsJSONDict
(
g
.
element
),
serialisation_type
=
getSerialisationTypeFromForm
(
g
.
element
);
if
(
software_type
===
""
)
{
if
(
g
.
options
.
value
.
parameter
.
shared
)
{
throw
new
Error
(
"
The software type is not part of the json (
"
+
software_type
+
"
as slave)
"
);
}
throw
new
Error
(
"
The software type is not part of the json (
"
+
software_type
+
"
)
"
);
}
return
g
.
validateJSONForSoftwareType
(
json_url
,
software_type
,
json_dict
)
.
push
(
function
(
validation
)
{
var
error_index
,
parameter_hash_input
=
g
.
element
.
querySelectorAll
(
'
.parameter_hash_output
'
)[
0
],
field_name
,
div
,
divm
,
missing_index
,
missing_field_name
,
xml_output
;
$
(
g
.
element
.
querySelectorAll
(
"
span.error
"
)).
each
(
function
(
i
,
span
)
{
span
.
textContent
=
""
;
});
$
(
g
.
element
.
querySelectorAll
(
"
div.error-input
"
)).
each
(
function
(
i
,
div
)
{
div
.
setAttribute
(
"
class
"
,
""
);
});
if
(
serialisation_type
===
"
json-in-xml
"
)
{
xml_output
=
jsonDictToParameterJSONInXML
(
json_dict
);
}
else
{
xml_output
=
jsonDictToParameterXML
(
json_dict
);
}
parameter_hash_input
.
value
=
btoa
(
xml_output
);
// console.log(parameter_hash_input.value);
if
(
validation
.
valid
)
{
return
xml_output
;
}
for
(
error_index
in
validation
.
errors
)
{
if
(
validation
.
errors
.
hasOwnProperty
(
error_index
))
{
field_name
=
validation
.
errors
[
error_index
].
dataPath
;
div
=
$
(
"
.slapos-parameter[name='/
"
+
field_name
+
"
']
"
)[
0
].
parentNode
;
div
.
setAttribute
(
"
class
"
,
"
slapos-parameter error-input
"
);
div
.
querySelector
(
"
span.error
"
).
textContent
=
validation
.
errors
[
error_index
].
message
;
}
}
for
(
missing_index
in
validation
.
missing
)
{
if
(
validation
.
missing
.
hasOwnProperty
(
missing_index
))
{
missing_field_name
=
validation
.
missing
[
missing_index
].
dataPath
;
divm
=
$
(
'
.slapos-parameter[name=/
'
+
missing_field_name
+
"
']
"
)[
0
].
parentNode
;
divm
.
setAttribute
(
"
class
"
,
"
error-input
"
);
divm
.
querySelector
(
"
span.error
"
).
textContent
=
validation
.
missing
[
missing_index
].
message
;
}
}
return
"
ERROR
"
;
});
})
.
declareMethod
(
'
renderParameterForm
'
,
function
(
json_url
,
default_dict
)
{
var
g
=
this
;
return
g
.
loadJSONSchema
(
json_url
)
.
push
(
function
(
json
)
{
var
fieldset_list
=
g
.
element
.
querySelectorAll
(
'
fieldset
'
),
fieldset
=
document
.
createElement
(
"
fieldset
"
);
fieldset
=
render_subform
(
json
,
default_dict
,
fieldset
);
$
(
fieldset_list
[
1
]).
replaceWith
(
fieldset
);
return
fieldset_list
;
});
})
.
declareMethod
(
'
renderFailoverTextArea
'
,
function
(
content
,
error
)
{
var
g
=
this
,
div
=
document
.
createElement
(
"
div
"
),
div_error
=
document
.
createElement
(
"
div
"
),
span_error
=
document
.
createElement
(
"
span
"
),
textarea
=
document
.
createElement
(
"
textarea
"
),
fieldset
=
document
.
createElement
(
"
fieldset
"
),
fieldset_list
=
g
.
element
.
querySelectorAll
(
'
fieldset
'
),
button0
=
g
.
element
.
querySelector
(
"
button.slapos-show-raw-parameter
"
),
button1
=
g
.
element
.
querySelector
(
"
button.slapos-show-form
"
);
if
(
button0
!==
null
)
{
$
(
button0
).
addClass
(
"
hidden-button
"
);
}
if
(
button1
!==
null
)
{
$
(
button1
).
addClass
(
"
hidden-button
"
);
}
div
.
setAttribute
(
"
class
"
,
"
field
"
);
textarea
.
setAttribute
(
"
rows
"
,
"
10
"
);
textarea
.
setAttribute
(
"
cols
"
,
"
80
"
);
textarea
.
setAttribute
(
"
name
"
,
"
text_content
"
);
textarea
.
textContent
=
content
;
span_error
.
setAttribute
(
"
class
"
,
"
error
"
);
span_error
.
textContent
=
"
Parameter form is not available, use the textarea above for edit the instance parameters.
"
;
div_error
.
setAttribute
(
"
class
"
,
"
error
"
);
div
.
appendChild
(
textarea
);
div_error
.
appendChild
(
span_error
);
div
.
appendChild
(
textarea
);
fieldset
.
appendChild
(
div
);
fieldset
.
appendChild
(
div_error
);
fieldset_list
[
0
].
innerHTML
=
''
;
$
(
fieldset_list
[
1
]).
replaceWith
(
fieldset
);
fieldset_list
[
2
].
innerHTML
=
''
;
return
fieldset
;
})
.
declareMethod
(
'
renderRawParameterTextArea
'
,
function
(
content
)
{
var
g
=
this
,
div
=
document
.
createElement
(
"
div
"
),
div_error
=
document
.
createElement
(
"
div
"
),
textarea
=
document
.
createElement
(
"
textarea
"
),
fieldset
=
document
.
createElement
(
"
fieldset
"
),
fieldset_list
=
g
.
element
.
querySelectorAll
(
'
fieldset
'
);
div
.
setAttribute
(
"
class
"
,
"
field
"
);
textarea
.
setAttribute
(
"
rows
"
,
"
10
"
);
textarea
.
setAttribute
(
"
cols
"
,
"
80
"
);
textarea
.
setAttribute
(
"
name
"
,
"
text_content
"
);
textarea
.
textContent
=
content
;
div
.
appendChild
(
textarea
);
div
.
appendChild
(
textarea
);
fieldset
.
appendChild
(
div
);
fieldset
.
appendChild
(
div_error
);
$
(
fieldset_list
[
1
]).
replaceWith
(
fieldset
);
fieldset_list
[
2
].
innerHTML
=
''
;
return
fieldset
;
})
.
declareMethod
(
'
render
'
,
function
(
options
)
{
var
gadget
=
this
,
to_hide
=
gadget
.
element
.
querySelector
(
"
button.slapos-show-form
"
),
to_show
=
gadget
.
element
.
querySelector
(
"
button.slapos-show-raw-parameter
"
),
softwaretype
,
json_url
=
options
.
value
.
parameter
.
json_url
;
gadget
.
options
=
options
;
if
(
options
.
value
.
parameter
.
parameter_hash
!==
undefined
)
{
// A JSON where provided via gadgetfield
options
.
value
.
parameter
.
parameter_xml
=
atob
(
options
.
value
.
parameter
.
parameter_hash
);
}
if
(
json_url
===
undefined
)
{
throw
new
Error
(
"
undefined json_url
"
);
}
if
(
to_hide
!==
null
)
{
$
(
to_hide
).
addClass
(
"
hidden-button
"
);
}
if
(
to_show
!==
null
)
{
$
(
to_show
).
removeClass
(
"
hidden-button
"
);
}
return
gadget
.
loadSoftwareJSON
(
json_url
)
.
push
(
function
(
json
)
{
var
option_index
,
option
,
option_selected
=
options
.
value
.
parameter
.
softwaretypeindex
,
restricted_softwaretype
=
options
.
value
.
parameter
.
restricted_softwaretype
,
input
=
gadget
.
element
.
querySelector
(
'
select.slapos-software-type
'
),
parameter_shared
=
gadget
.
element
.
querySelector
(
'
input.parameter_shared
'
),
s_input
=
gadget
.
element
.
querySelector
(
'
input.slapos-serialisation-type
'
);
if
(
option_selected
===
undefined
)
{
option_selected
=
options
.
value
.
parameter
.
softwaretype
;
}
if
(
input
.
children
.
length
===
0
)
{
for
(
option_index
in
json
[
'
software-type
'
])
{
if
(
json
[
'
software-type
'
].
hasOwnProperty
(
option_index
))
{
option
=
document
.
createElement
(
"
option
"
);
if
(
json
[
'
software-type
'
][
option_index
][
'
software-type
'
]
!==
undefined
)
{
option
.
value
=
json
[
'
software-type
'
][
option_index
][
'
software-type
'
];
}
else
{
option
.
value
=
option_index
;
}
option
[
'
data-id
'
]
=
option_index
;
option
.
textContent
=
json
[
'
software-type
'
][
option_index
].
title
;
// option.index = json['software-type'][option_index].index;
if
(
options
.
value
.
parameter
.
shared
===
undefined
)
{
options
.
value
.
parameter
.
shared
=
false
;
}
if
(
option_selected
===
undefined
)
{
option_selected
=
option_index
;
if
(
json
[
'
software-type
'
][
option_index
].
shared
===
true
)
{
parameter_shared
.
value
=
true
;
}
else
{
parameter_shared
.
value
=
false
;
}
}
if
(
softwaretype
===
undefined
)
{
softwaretype
=
option_selected
;
}
if
(
json
[
'
software-type
'
][
option_index
].
shared
===
undefined
)
{
json
[
'
software-type
'
][
option_index
].
shared
=
false
;
}
option
[
'
data-shared
'
]
=
json
[
'
software-type
'
][
option_index
].
shared
;
if
((
option_index
===
option_selected
)
&&
(
options
.
value
.
parameter
.
shared
===
json
[
'
software-type
'
][
option_index
].
shared
))
{
option
.
selected
=
"
selected
"
;
if
(
json
[
'
software-type
'
][
option_index
].
shared
===
true
)
{
parameter_shared
.
value
=
true
;
}
else
{
parameter_shared
.
value
=
false
;
}
}
if
(
restricted_softwaretype
===
true
)
{
if
(
option
.
value
===
options
.
value
.
parameter
.
softwaretype
)
{
if
(
options
.
value
.
parameter
.
shared
===
json
[
'
software-type
'
][
option_index
].
shared
)
{
input
.
appendChild
(
option
);
}
}
}
else
{
input
.
appendChild
(
option
);
}
}
}
}
if
(
softwaretype
===
undefined
)
{
softwaretype
=
option_selected
;
}
if
(
input
.
children
.
length
===
0
)
{
if
(
options
.
value
.
parameter
.
shared
)
{
throw
new
Error
(
"
The software type is not part of the json (
"
+
softwaretype
+
"
as slave)
"
);
}
throw
new
Error
(
"
The software type is not part of the json (
"
+
softwaretype
+
"
)
"
);
}
if
(
json
[
'
software-type
'
][
softwaretype
]
===
undefined
)
{
throw
new
Error
(
"
The sotware type is not part of the json (
"
+
softwaretype
+
"
)
"
);
}
if
(
json
[
'
software-type
'
][
softwaretype
].
serialisation
!==
undefined
)
{
s_input
.
value
=
json
[
'
software-type
'
][
softwaretype
].
serialisation
;
options
.
serialisation
=
json
[
'
software-type
'
][
softwaretype
].
serialisation
;
}
else
{
s_input
.
value
=
json
.
serialisation
;
options
.
serialisation
=
json
.
serialisation
;
}
return
json
[
'
software-type
'
][
softwaretype
].
request
;
})
.
push
(
function
(
parameter_json_schema_url
)
{
var
parameter_dict
=
{},
json_url_uri
,
prefix
,
parameter_entry
;
if
(
options
.
value
.
parameter
.
parameter_xml
!==
undefined
)
{
if
(
options
.
serialisation
===
"
json-in-xml
"
)
{
parameter_entry
=
jQuery
.
parseXML
(
options
.
value
.
parameter
.
parameter_xml
).
querySelector
(
"
parameter[id='_']
"
);
if
(
parameter_entry
!==
null
)
{
parameter_dict
=
JSON
.
parse
(
parameter_entry
.
textContent
);
}
}
else
{
$
(
jQuery
.
parseXML
(
options
.
value
.
parameter
.
parameter_xml
)
.
querySelectorAll
(
"
parameter
"
))
.
each
(
function
(
key
,
p
)
{
parameter_dict
[
p
.
id
]
=
p
.
textContent
;
});
}
}
if
(
URI
(
parameter_json_schema_url
).
protocol
()
===
""
)
{
// URL is relative, turn into absolute
json_url_uri
=
URI
(
options
.
value
.
parameter
.
json_url
);
prefix
=
json_url_uri
.
path
().
split
(
"
/
"
);
prefix
.
pop
();
prefix
=
options
.
value
.
parameter
.
json_url
.
split
(
json_url_uri
.
path
())[
0
]
+
prefix
.
join
(
"
/
"
);
parameter_json_schema_url
=
prefix
+
"
/
"
+
parameter_json_schema_url
;
}
return
gadget
.
renderParameterForm
(
parameter_json_schema_url
,
parameter_dict
);
})
.
push
(
function
()
{
var
i
,
div_list
=
gadget
.
element
.
querySelectorAll
(
'
.slapos-parameter-dict-key > div
'
),
label_list
=
gadget
.
element
.
querySelectorAll
(
'
label.slapos-parameter-dict-key
'
);
console
.
log
(
"
Collapse paramaters
"
);
for
(
i
=
0
;
i
<
div_list
.
length
;
i
=
i
+
1
)
{
$
(
div_list
[
i
]).
hide
();
}
for
(
i
=
0
;
i
<
label_list
.
length
;
i
=
i
+
1
)
{
$
(
label_list
[
i
]).
addClass
(
"
slapos-parameter-dict-key-colapse
"
);
}
return
gadget
;
})
.
push
(
function
()
{
console
.
log
(
"
FINISHED TO RENDER, RETURNING THE GADGET
"
);
return
gadget
;
})
.
fail
(
function
(
error
)
{
var
parameter_xml
=
''
;
console
.
log
(
error
.
stack
);
if
(
gadget
.
options
.
value
.
parameter
.
parameter_hash
!==
undefined
)
{
parameter_xml
=
atob
(
gadget
.
options
.
value
.
parameter
.
parameter_hash
);
}
return
gadget
.
renderFailoverTextArea
(
parameter_xml
,
error
.
toString
())
.
push
(
function
()
{
error
=
undefined
;
return
gadget
;
});
});
})
.
declareService
(
function
()
{
var
g
=
this
,
element
=
g
.
element
.
getElementsByTagName
(
'
select
'
)[
0
];
if
(
element
===
undefined
)
{
return
true
;
}
function
updateParameterForm
(
evt
)
{
var
e
=
g
.
element
.
getElementsByTagName
(
'
select
'
)[
0
],
parameter_shared
=
g
.
element
.
querySelector
(
'
input.parameter_shared
'
);
if
(
e
===
undefined
)
{
throw
new
Error
(
"
Select not found.
"
);
}
g
.
options
.
value
.
parameter
.
softwaretype
=
e
.
value
;
g
.
options
.
value
.
parameter
.
softwaretypeindex
=
e
.
selectedOptions
[
0
][
"
data-id
"
];
parameter_shared
.
value
=
e
.
selectedOptions
[
0
][
"
data-shared
"
];
return
g
.
render
(
g
.
options
)
.
push
(
function
()
{
return
loadEventList
(
g
);
});
}
return
loopEventListener
(
element
,
'
change
'
,
false
,
updateParameterForm
.
bind
(
g
)
);
})
.
declareService
(
function
()
{
var
g
=
this
,
element
=
g
.
element
.
querySelector
(
"
button.slapos-show-raw-parameter
"
);
if
(
element
===
undefined
)
{
return
true
;
}
function
showRawParameter
(
evt
)
{
var
e
=
g
.
element
.
querySelector
(
"
button.slapos-show-raw-parameter
"
),
to_show
=
g
.
element
.
querySelector
(
"
button.slapos-show-form
"
),
parameter_xml
;
if
(
g
.
options
.
value
.
parameter
.
parameter_hash
!==
undefined
)
{
parameter_xml
=
atob
(
g
.
options
.
value
.
parameter
.
parameter_hash
);
}
$
(
e
).
addClass
(
"
hidden-button
"
);
$
(
to_show
).
removeClass
(
"
hidden-button
"
);
return
g
.
renderRawParameterTextArea
(
parameter_xml
)
.
push
(
function
()
{
return
loadEventList
(
g
);
});
}
return
loopEventListener
(
element
,
'
click
'
,
false
,
showRawParameter
.
bind
(
g
)
);
})
.
declareService
(
function
()
{
var
g
=
this
,
element
=
g
.
element
.
querySelector
(
"
button.slapos-show-form
"
);
function
showParameterForm
(
evt
)
{
var
e
=
g
.
element
.
getElementsByTagName
(
'
select
'
)[
0
],
to_hide
=
g
.
element
.
querySelector
(
"
button.slapos-show-form
"
),
to_show
=
g
.
element
.
querySelector
(
"
button.slapos-show-raw-parameter
"
);
if
(
e
===
undefined
)
{
throw
new
Error
(
"
Select not found.
"
);
}
$
(
to_hide
).
addClass
(
"
hidden-button
"
);
$
(
to_show
).
removeClass
(
"
hidden-button
"
);
g
.
options
.
value
.
parameter
.
softwaretype
=
e
.
value
;
g
.
options
.
value
.
parameter
.
softwaretypeindex
=
e
.
selectedOptions
[
0
][
"
data-id
"
];
return
g
.
render
(
g
.
options
)
.
push
(
function
()
{
return
loadEventList
(
g
);
});
}
return
loopEventListener
(
element
,
'
click
'
,
false
,
showParameterForm
.
bind
(
g
)
);
})
.
declareService
(
function
()
{
return
loadEventList
(
this
);
})
.
declareMethod
(
'
getContent
'
,
function
()
{
var
gadget
=
this
;
return
gadget
.
getElement
()
.
push
(
function
(
element
)
{
var
text_content
=
element
.
querySelector
(
'
textarea[name=text_content]
'
);
if
(
text_content
!==
null
)
{
return
"
SKIP
"
;
}
return
gadget
.
processValidation
(
gadget
.
options
.
value
.
parameter
.
json_url
);
})
.
push
(
function
(
xml_result
)
{
if
(
xml_result
===
"
SKIP
"
)
{
/* The raw parameters are already on the request */
return
{};
}
return
{
"
text_content
"
:
xml_result
};
})
.
fail
(
function
(
e
)
{
return
{};
});
});
//.declareService(function () {
// var gadget = this;
//return gadget.processValidation(gadget.options.json_url)
// .fail(function (error) {
// var parameter_xml = '';
// console.log(error.stack);
// if (gadget.options.value.parameter.parameter_hash !== undefined) {
// parameter_xml = atob(gadget.options.value.parameter.parameter_hash);
// }
// return gadget.renderFailoverTextArea(parameter_xml, error.toString())
// .push(function () {
// error = undefined;
// return gadget;
// });
// });
//});
}(
window
,
document
,
rJS
,
$
,
XMLSerializer
,
jQuery
,
vkbeautify
));
\ No newline at end of file
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