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
Labels
Merge Requests
138
Merge Requests
138
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
d89f4164
Commit
d89f4164
authored
Apr 17, 2019
by
Roque
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_officejs: handle action uses custom code from configuration side (WIP)
parent
4f6fb29e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
63 deletions
+62
-63
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_handle_action_js.js
.../web_page_module/gadget_officejs_page_handle_action_js.js
+60
-61
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_handle_action_js.xml
...web_page_module/gadget_officejs_page_handle_action_js.xml
+2
-2
No files found.
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_handle_action_js.js
View file @
d89f4164
/*global window, rJS, RSVP */
/*jslint nomen: true, indent: 2, maxerr: 3 */
/*jslint evil: true */
(
function
(
document
,
window
,
rJS
,
RSVP
)
{
"
use strict
"
;
var
gadget_utils
,
action_reference
;
var
gadget_utils
,
action_reference
,
action_type
;
rJS
(
window
)
/////////////////////////////////////////////////////////////////
...
...
@@ -26,8 +25,7 @@
var
gadget
=
this
,
child_gadget_url
=
'
gadget_erp5_pt_form_view_editable.html
'
,
portal_type
,
parent_portal_type
,
parent_relative_url
,
form_definition
,
action_type
,
custom_code
;
parent_relative_url
,
form_definition
,
custom_code
;
return
RSVP
.
Queue
()
.
push
(
function
()
{
return
RSVP
.
all
([
...
...
@@ -51,9 +49,8 @@
gadget_utils
=
result
[
8
];
// This is the custom code to handle each specific action
if
(
action_reference
===
"
new
"
)
{
var
doc_options
=
{};
doc_options
.
portal_type
=
portal_type
;
doc_options
.
parent_relative_url
=
parent_relative_url
;
options
.
portal_type
=
portal_type
;
options
.
parent_relative_url
=
parent_relative_url
;
// Temporarily hardcoded until new action in post module is fixed
return
gadget_utils
.
getFormDefinition
(
"
HTML Post
"
,
"
jio_view
"
)
//parent_portal_type, action_reference)
.
push
(
function
(
result
)
{
...
...
@@ -65,7 +62,7 @@
eval
(
custom_code
[
0
]);
}
}
return
gadget_utils
.
createDocument
(
doc_
options
);
return
gadget_utils
.
createDocument
(
options
);
})
.
push
(
function
(
jio_key
)
{
return
gadget
.
jio_get
(
jio_key
)
...
...
@@ -93,34 +90,30 @@
if
(
action_type
===
"
object_jio_js_script
"
)
{
if
(
form_definition
.
fields_raw_properties
.
hasOwnProperty
(
"
gadget_field_action_js_script
"
))
{
custom_code
=
form_definition
.
fields_raw_properties
.
gadget_field_action_js_script
.
values
.
renderjs_extra
[
0
];
eval
(
custom_code
[
0
]);
// move this to form configuration
custom_code
=
[
"
return gadget.jio_get(options.jio_key)
\
.push(function (result) {
\
parent_document = result;
\
var title = parent_document.title;
\
if (!title.startsWith('Re: ')) { title = 'Re: ' + parent_document.title; }
\
console.log(title);
\
return gadget.changeState({
\
doc: {title: title},
\
submit_code: submit_code,
\
parent_document: parent_document,
\
child_gadget_url: child_gadget_url,
\
form_definition: form_definition,
\
view: action_reference,
\
editable: true,
\
has_more_views: false,
\
has_more_actions: false,
\
is_form_list: false
\
}); });
"
,
"
console.log('some submit code')
"
];
return
window
.
eval
.
call
(
window
,
'
(function (gadget, options, action_reference, form_definition, child_gadget_url, submit_code)
\
{
'
+
custom_code
[
0
]
+
'
})
'
)
(
gadget
,
options
,
action_reference
,
form_definition
,
child_gadget_url
,
custom_code
[
1
]);
}
}
var
parent_document
,
child_document
,
child_jio_key
;
return
gadget
.
jio_get
(
options
.
jio_key
)
.
push
(
function
(
result
)
{
parent_document
=
result
;
return
gadget_utils
.
getFormDefinition
(
parent_document
.
portal_type
,
action_reference
);
})
.
push
(
function
(
result
)
{
var
title
=
parent_document
.
title
;
form_definition
=
result
;
if
(
!
title
.
startsWith
(
"
Re:
"
))
{
title
=
"
Re:
"
+
parent_document
.
title
;
}
return
gadget
.
changeState
({
doc
:
{
title
:
title
},
parent_document
:
parent_document
,
child_gadget_url
:
child_gadget_url
,
form_definition
:
form_definition
,
view
:
action_reference
,
//HARDCODED: following fields should be indicated by the configuration
editable
:
true
,
has_more_views
:
false
,
has_more_actions
:
false
,
is_form_list
:
false
});
});
});
}
throw
"
Action
"
+
action_reference
+
"
not implemented yet
"
;
...
...
@@ -148,34 +141,40 @@
property
;
// This is the custom code to handle each specific action
if
(
action_reference
===
"
reply
"
)
{
var
document
=
{
my_title
:
gadget
.
state
.
doc
.
title
,
portal_type
:
gadget
.
state
.
parent_document
.
portal_type
,
parent_relative_url
:
gadget
.
state
.
parent_document
.
parent_relative_url
,
my_source_reference
:
gadget
.
state
.
parent_document
.
source_reference
};
for
(
property
in
content_dict
)
{
if
(
content_dict
.
hasOwnProperty
(
property
))
{
document
[
"
my_
"
+
property
]
=
content_dict
[
property
];
}
}
return
gadget_utils
.
createDocument
(
document
)
.
push
(
function
(
id
)
{
jio_key
=
id
;
return
gadget
.
notifySubmitting
();
})
.
push
(
function
()
{
return
gadget
.
notifySubmitted
({
message
:
'
Data Updated
'
,
status
:
'
success
'
});
})
.
push
(
function
()
{
return
gadget
.
redirect
({
command
:
'
display
'
,
options
:
{
jio_key
:
jio_key
,
editable
:
true
if
(
action_type
===
"
object_jio_js_script
"
)
{
var
submit_code
=
gadget
.
state
.
submit_code
;
// move this to form configuration
submit_code
=
"
var document = {
\
my_title: gadget.state.doc.title,
\
portal_type: gadget.state.parent_document.portal_type,
\
parent_relative_url: gadget.state.parent_document.parent_relative_url,
\
my_source_reference: gadget.state.parent_document.source_reference
\
}, property;
\
for (property in content_dict) {
\
if (content_dict.hasOwnProperty(property)) {
\
document['my_' + property] = content_dict[property];
\
}
\
}
\
return gadget_utils.createDocument(document)
\
.push(function (id) {
\
jio_key = id;
\
return gadget.notifySubmitting();
\
})
\
.push(function () {
\
return gadget.notifySubmitted({message: 'Data Updated', status: 'success'});
\
})
\
.push(function () {
\
return gadget.redirect({
\
command: 'display',
\
options: {
\
jio_key: jio_key,
\
editable: true
\
}
\
});
\
});
"
;
return
window
.
eval
.
call
(
window
,
'
(function (gadget, gadget_utils, content_dict)
\
{
'
+
submit_code
+
'
})
'
)(
gadget
,
gadget_utils
,
content_dict
);
}
});
});
}
if
(
action_reference
===
"
new
"
)
{
return
gadget
.
notifySubmitting
()
...
...
bt5/erp5_officejs/PathTemplateItem/web_page_module/gadget_officejs_page_handle_action_js.xml
View file @
d89f4164
...
...
@@ -269,7 +269,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
975.
4704.7332.52360
</string>
</value>
<value>
<string>
975.
5092.42049.34269
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -287,7 +287,7 @@
</tuple>
<state>
<tuple>
<float>
15554
24781.77
</float>
<float>
15554
47984.11
</float>
<string>
UTC
</string>
</tuple>
</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