Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
erp5
Commits
ddbcf9ce
Commit
ddbcf9ce
authored
Oct 28, 2016
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[erp5_web_renderjs_ui] Reimplement radiofield
Support calling render multiple times
parent
44a914b2
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
160 additions
and
82 deletions
+160
-82
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_radiofield_html.html
...Item/web_page_module/rjs_gadget_erp5_radiofield_html.html
+1
-5
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_radiofield_html.xml
...eItem/web_page_module/rjs_gadget_erp5_radiofield_html.xml
+3
-3
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_radiofield_js.js
...lateItem/web_page_module/rjs_gadget_erp5_radiofield_js.js
+139
-68
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_radiofield_js.xml
...ateItem/web_page_module/rjs_gadget_erp5_radiofield_js.xml
+3
-3
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_html5_input_js.js
...TemplateItem/web_page_module/rjs_gadget_html5_input_js.js
+12
-1
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_html5_input_js.xml
...emplateItem/web_page_module/rjs_gadget_html5_input_js.xml
+2
-2
No files found.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_radiofield_html.html
View file @
ddbcf9ce
...
@@ -13,9 +13,5 @@
...
@@ -13,9 +13,5 @@
</head>
</head>
<body>
<body>
<fieldset
class=
"ui-controlgroup ui-corner-all ui-controlgroup-vertical"
>
<div
class=
"radiogroup"
>
</div>
</fieldset>
</body>
</body>
</html>
</html>
\ No newline at end of file
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_radiofield_html.xml
View file @
ddbcf9ce
...
@@ -234,7 +234,7 @@
...
@@ -234,7 +234,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
serial
</string>
</key>
<key>
<string>
serial
</string>
</key>
<value>
<string>
9
43.62898.42115.10666
</string>
</value>
<value>
<string>
9
54.45675.44850.53452
</string>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
state
</string>
</key>
<key>
<string>
state
</string>
</key>
...
@@ -252,8 +252,8 @@
...
@@ -252,8 +252,8 @@
</tuple>
</tuple>
<state>
<state>
<tuple>
<tuple>
<float>
14
35816933.09
</float>
<float>
14
77649679.02
</float>
<string>
GMT+2
</string>
<string>
UTC
</string>
</tuple>
</tuple>
</state>
</state>
</object>
</object>
...
...
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_radiofield_js.js
View file @
ddbcf9ce
...
@@ -3,83 +3,154 @@
...
@@ -3,83 +3,154 @@
(
function
(
window
,
rJS
,
RSVP
)
{
(
function
(
window
,
rJS
,
RSVP
)
{
"
use strict
"
;
"
use strict
"
;
rJS
(
window
)
function
appendCheckboxField
(
gadget
,
item
)
{
.
ready
(
function
(
gadget
)
{
var
input_gadget
,
return
gadget
.
getElement
()
label_gadget
;
.
push
(
function
(
element
)
{
return
new
RSVP
.
Queue
()
gadget
.
props
=
{};
.
push
(
function
()
{
gadget
.
props
.
element
=
element
;
return
gadget
.
declareGadget
(
'
gadget_html5_input.html
'
,
{
scope
:
item
[
1
]});
});
})
.
push
(
function
(
result
)
{
input_gadget
=
result
;
var
state_dict
=
{
type
:
'
radio
'
,
name
:
gadget
.
state
.
name
,
value
:
item
[
1
],
editable
:
true
};
if
(
item
[
1
]
===
gadget
.
state
.
value
)
{
state_dict
.
checked
=
1
;
}
return
result
.
render
(
state_dict
);
})
})
.
declareAcquiredMethod
(
"
notifyInvalid
"
,
"
notifyInvalid
"
)
.
push
(
function
()
{
.
declareAcquiredMethod
(
"
notifyValid
"
,
"
notifyValid
"
)
return
gadget
.
declareGadget
(
'
gadget_html5_element.html
'
);
})
.
push
(
function
(
result
)
{
label_gadget
=
result
;
var
state_dict
=
{
tag
:
'
label
'
,
text_content
:
item
[
0
]
};
return
result
.
render
(
state_dict
);
})
.
push
(
function
()
{
var
div
=
document
.
createElement
(
"
div
"
);
div
.
setAttribute
(
"
class
"
,
"
ui-field-contain
"
);
div
.
appendChild
(
label_gadget
.
element
);
div
.
appendChild
(
input_gadget
.
element
);
gadget
.
element
.
appendChild
(
div
);
});
}
rJS
(
window
)
.
declareMethod
(
'
render
'
,
function
(
options
)
{
.
declareMethod
(
'
render
'
,
function
(
options
)
{
var
radio_group
=
this
.
props
.
element
.
querySelector
(
"
.radiogroup
"
),
var
field_json
=
options
.
field_json
||
{},
i
,
state_dict
=
{
input
,
value
:
field_json
.
value
||
field_json
.
default
,
label
,
select_first_item
:
field_json
.
select_first_item
,
div
,
editable
:
field_json
.
editable
,
field_json
=
options
.
field_json
,
name
:
field_json
.
key
,
value
=
field_json
.
default
||
""
,
title
:
field_json
.
title
,
editable
=
field_json
.
editable
,
item_list
:
field_json
.
items
items
=
field_json
.
items
;
};
//the first item will always be selected if no initial default value is supplied.
//the first item will always be selected if no initial default value is supplied.
if
(
value
===
""
&&
field_json
.
select_first_item
)
{
if
(
state_dict
.
value
===
""
&&
state_dict
.
select_first_item
)
{
value
=
items
[
0
][
1
];
state_dict
.
value
=
state_dict
.
items
[
0
][
1
];
}
}
this
.
props
.
field_json
=
field_json
;
for
(
i
=
0
;
i
<
items
.
length
;
i
+=
1
)
{
return
this
.
changeState
(
state_dict
);
div
=
document
.
createElement
(
"
div
"
);
})
div
.
setAttribute
(
"
class
"
,
"
ui-field-contain
"
);
input
=
document
.
createElement
(
"
input
"
);
.
onStateChange
(
function
()
{
input
.
setAttribute
(
"
class
"
,
"
ui-btn
"
);
var
element
=
this
.
element
,
input
.
setAttribute
(
"
type
"
,
"
radio
"
);
gadget
=
this
,
input
.
setAttribute
(
"
name
"
,
field_json
.
key
);
value
=
this
.
state
.
value
,
input
.
setAttribute
(
"
value
"
,
items
[
i
][
1
]);
item_list
=
this
.
state
.
item_list
,
if
(
items
[
i
][
1
]
===
value
)
{
i
,
input
.
setAttribute
(
"
checked
"
,
true
);
sub_gadget
,
queue
;
// Clear first to DOM, append after to reduce flickering/manip
while
(
element
.
firstChild
)
{
element
.
removeChild
(
element
.
firstChild
);
}
function
enQueue
()
{
var
argument_list
=
arguments
;
queue
.
push
(
function
()
{
return
appendCheckboxField
.
apply
(
this
,
argument_list
);
});
}
}
if
(
editable
===
0
)
{
input
.
setAttribute
(
"
class
"
,
"
ui-btn ui-state-disabled
"
);
if
(
gadget
.
state
.
editable
)
{
queue
=
new
RSVP
.
Queue
();
for
(
i
=
0
;
i
<
item_list
.
length
;
i
+=
1
)
{
enQueue
(
gadget
,
item_list
[
i
]);
}
}
else
{
queue
=
gadget
.
declareGadget
(
'
gadget_html5_element.html
'
,
{
scope
:
'
sub
'
})
.
push
(
function
(
result
)
{
sub_gadget
=
result
;
var
text_content
=
""
;
for
(
i
=
0
;
i
<
item_list
.
length
;
i
+=
1
)
{
if
(
item_list
[
i
][
1
]
===
value
)
{
text_content
=
item_list
[
i
][
0
];
}
}
label
=
document
.
createElement
(
"
label
"
);
label
.
setAttribute
(
'
for
'
,
items
[
i
][
0
]);
label
.
textContent
=
items
[
i
][
0
];
label
.
setAttribute
(
'
data-i18n
'
,
items
[
i
][
0
]);
div
.
appendChild
(
label
);
div
.
appendChild
(
input
);
radio_group
.
appendChild
(
div
);
}
}
radio_group
.
setAttribute
(
"
data-type
"
,
field_json
.
orientation
);
return
sub_gadget
.
render
({
text_content
:
text_content
,
tag
:
'
p
'
});
})
})
.
declareMethod
(
'
checkValidity
'
,
function
()
{
var
gadget
=
this
,
json_field
=
gadget
.
props
.
field_json
;
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
.
push
(
function
()
{
return
gadget
.
notifyValid
();
element
.
appendChild
(
sub_gadget
.
element
);
});
}
return
queue
;
})
})
.
declareMethod
(
'
getContent
'
,
function
()
{
var
i
,
queue
=
new
RSVP
.
Queue
(),
final_result
=
{},
result_list
=
[],
gadget
=
this
;
function
calculateSubContent
(
scope
)
{
queue
.
push
(
function
()
{
.
push
(
function
()
{
return
gadget
.
getContent
();
return
gadget
.
getDeclaredGadget
(
scope
)
.
push
(
function
(
result
)
{
return
result
.
getContent
();
})
})
.
push
(
function
(
result
)
{
.
push
(
function
(
result
)
{
if
(
json_field
.
required
&&
!
result
.
hasOwnProperty
(
json_field
.
key
))
{
result_list
.
push
(
result
);
return
gadget
.
notifyInvalid
(
"
This field is required
"
);
});
}
return
true
;
});
});
})
.
declareMethod
(
'
getContent
'
,
function
()
{
var
inputs
=
this
.
props
.
element
.
querySelectorAll
(
"
input
"
),
i
,
result
=
{};
for
(
i
=
0
;
i
<
inputs
.
length
;
i
+=
1
)
{
if
(
inputs
[
i
].
checked
===
true
)
{
result
[
this
.
props
.
field_json
.
key
]
=
inputs
[
i
].
value
;
break
;
}
}
if
(
this
.
state
.
editable
)
{
for
(
i
=
0
;
i
<
gadget
.
state
.
item_list
.
length
;
i
+=
1
)
{
calculateSubContent
(
gadget
.
state
.
item_list
[
i
][
1
]);
}
return
queue
.
push
(
function
()
{
var
j
;
for
(
j
=
0
;
j
<
result_list
.
length
;
j
+=
1
)
{
if
(
result_list
[
j
].
hasOwnProperty
(
gadget
.
state
.
name
))
{
return
result_list
[
j
];
}
}
});
}
}
return
result
;
return
final_
result
;
});
});
}(
window
,
rJS
,
RSVP
));
}(
window
,
rJS
,
RSVP
));
\ No newline at end of file
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_radiofield_js.xml
View file @
ddbcf9ce
...
@@ -230,7 +230,7 @@
...
@@ -230,7 +230,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
serial
</string>
</key>
<key>
<string>
serial
</string>
</key>
<value>
<string>
9
44.6869.21158.19933
</string>
</value>
<value>
<string>
9
54.58788.20793.64136
</string>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
state
</string>
</key>
<key>
<string>
state
</string>
</key>
...
@@ -248,8 +248,8 @@
...
@@ -248,8 +248,8 @@
</tuple>
</tuple>
<state>
<state>
<tuple>
<tuple>
<float>
14
35817661.94
</float>
<float>
14
77649548.1
</float>
<string>
GMT+2
</string>
<string>
UTC
</string>
</tuple>
</tuple>
</state>
</state>
</object>
</object>
...
...
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_html5_input_js.js
View file @
ddbcf9ce
...
@@ -36,6 +36,9 @@
...
@@ -36,6 +36,9 @@
textarea
.
setAttribute
(
'
value
'
,
this
.
state
.
value
);
textarea
.
setAttribute
(
'
value
'
,
this
.
state
.
value
);
textarea
.
value
=
this
.
state
.
value
;
textarea
.
value
=
this
.
state
.
value
;
}
}
if
(
this
.
state
.
type
===
'
radio
'
)
{
textarea
.
checked
=
this
.
state
.
checked
;
}
textarea
.
setAttribute
(
'
name
'
,
this
.
state
.
name
);
textarea
.
setAttribute
(
'
name
'
,
this
.
state
.
name
);
textarea
.
setAttribute
(
'
type
'
,
this
.
state
.
type
);
textarea
.
setAttribute
(
'
type
'
,
this
.
state
.
type
);
if
(
this
.
state
.
title
)
{
if
(
this
.
state
.
title
)
{
...
@@ -90,6 +93,10 @@
...
@@ -90,6 +93,10 @@
}
}
}
else
if
(
this
.
state
.
type
===
'
checkbox
'
)
{
}
else
if
(
this
.
state
.
type
===
'
checkbox
'
)
{
result
[
input
.
getAttribute
(
'
name
'
)]
=
(
input
.
checked
?
1
:
0
);
result
[
input
.
getAttribute
(
'
name
'
)]
=
(
input
.
checked
?
1
:
0
);
}
else
if
(
this
.
state
.
type
===
'
radio
'
)
{
if
(
input
.
checked
)
{
result
[
input
.
getAttribute
(
'
name
'
)]
=
input
.
value
;
}
}
else
{
}
else
{
result
[
input
.
getAttribute
(
'
name
'
)]
=
input
.
value
;
result
[
input
.
getAttribute
(
'
name
'
)]
=
input
.
value
;
}
}
...
@@ -98,10 +105,14 @@
...
@@ -98,10 +105,14 @@
})
})
.
declareMethod
(
'
getTextContent
'
,
function
()
{
.
declareMethod
(
'
getTextContent
'
,
function
()
{
var
result
,
var
result
=
''
,
input
=
this
.
element
.
querySelector
(
'
input
'
);
input
=
this
.
element
.
querySelector
(
'
input
'
);
if
(
this
.
state
.
type
===
'
checkbox
'
)
{
if
(
this
.
state
.
type
===
'
checkbox
'
)
{
result
=
(
input
.
checked
?
'
✓
'
:
''
);
result
=
(
input
.
checked
?
'
✓
'
:
''
);
}
else
if
(
this
.
state
.
type
===
'
radio
'
)
{
if
(
input
.
checked
)
{
result
=
input
.
value
;
}
}
else
{
}
else
{
result
=
input
.
value
;
result
=
input
.
value
;
}
}
...
...
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_html5_input_js.xml
View file @
ddbcf9ce
...
@@ -230,7 +230,7 @@
...
@@ -230,7 +230,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
serial
</string>
</key>
<key>
<string>
serial
</string>
</key>
<value>
<string>
954.
47167.27024.21401
</string>
</value>
<value>
<string>
954.
58784.35206.25787
</string>
</value>
</item>
</item>
<item>
<item>
<key>
<string>
state
</string>
</key>
<key>
<string>
state
</string>
</key>
...
@@ -248,7 +248,7 @@
...
@@ -248,7 +248,7 @@
</tuple>
</tuple>
<state>
<state>
<tuple>
<tuple>
<float>
147
6952365.89
</float>
<float>
147
7649395.4
</float>
<string>
UTC
</string>
<string>
UTC
</string>
</tuple>
</tuple>
</state>
</state>
...
...
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