Commit ef50c183 authored by Roque's avatar Roque

erp5_post: action gadgets handle submit

parent 0e88bea9
...@@ -3,9 +3,6 @@ ...@@ -3,9 +3,6 @@
(function (window, rJS, RSVP) { (function (window, rJS, RSVP) {
"use strict"; "use strict";
var child_gadget_url = 'gadget_erp5_pt_form_view_editable.html',
form_view_gadget_url = "gadget_officejs_form_view.html";
rJS(window) rJS(window)
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
...@@ -14,8 +11,6 @@ ...@@ -14,8 +11,6 @@
.declareAcquiredMethod("jio_get", "jio_get") .declareAcquiredMethod("jio_get", "jio_get")
.declareAcquiredMethod("jio_put", "jio_put") .declareAcquiredMethod("jio_put", "jio_put")
.declareAcquiredMethod("jio_post", "jio_post") .declareAcquiredMethod("jio_post", "jio_post")
.declareAcquiredMethod("getSetting", "getSetting")
.declareAcquiredMethod('getUrlParameter', 'getUrlParameter')
.declareAcquiredMethod("notifySubmitted", 'notifySubmitted') .declareAcquiredMethod("notifySubmitted", 'notifySubmitted')
.declareAcquiredMethod("notifySubmitting", "notifySubmitting") .declareAcquiredMethod("notifySubmitting", "notifySubmitting")
.declareAcquiredMethod("redirect", "redirect") .declareAcquiredMethod("redirect", "redirect")
...@@ -44,52 +39,50 @@ ...@@ -44,52 +39,50 @@
return gadget.jio_post(doc); return gadget.jio_post(doc);
}) })
.declareMethod("render", function (parent_gadget) { .declareMethod("render", function (parent_options, action_reference, form_definition) {
var gadget = this;
return gadget.createDocument(parent_options)
.push(function (jio_key) {
return gadget.jio_get(jio_key)
.push(function (new_document) {
return gadget.changeState({
jio_key: jio_key,
doc: new_document,
child_gadget_url: 'gadget_erp5_pt_form_view_editable.html',
form_definition: form_definition,
view: action_reference,
editable: true,
has_more_views: false,
has_more_actions: true,
is_form_list: false
});
});
});
})
.onStateChange(function () {
var gadget = this; var gadget = this;
return gadget.declareGadget(form_view_gadget_url) return gadget.declareGadget("gadget_officejs_form_view.html")
.push(function (form_view_gadget) { .push(function (form_view_gadget) {
return form_view_gadget.renderGadget(parent_gadget); return form_view_gadget.renderGadget(gadget);
}); });
}) })
.declareMethod("handleRender", function (parent_gadget, options, action_reference, form_definition) { .declareMethod('triggerSubmit', function () {
var this_gadget = this; return this.getDeclaredGadget('fg')
return RSVP.Queue() .push(function (gadget) {
.push(function () { return gadget.triggerSubmit();
return RSVP.all([
parent_gadget.getUrlParameter('portal_type'),
parent_gadget.getUrlParameter('parent_relative_url'),
parent_gadget.getSetting('portal_type'),
parent_gadget.getSetting('parent_relative_url')
]);
})
.push(function (result) {
if (result[0] !== undefined) {options.portal_type = result[0]; } else {options.portal_type = result[2]; }
if (result[1] !== undefined) {options.parent_relative_url = result[1]; } else {options.parent_relative_url = result[3]; }
return this_gadget.createDocument(options)
.push(function (jio_key) {
return parent_gadget.jio_get(jio_key)
.push(function (new_document) {
return parent_gadget.changeState({
jio_key: jio_key,
doc: new_document,
child_gadget_url: child_gadget_url,
form_definition: form_definition,
view: action_reference,
editable: true,
has_more_views: false,
has_more_actions: true,
is_form_list: false
});
});
});
}); });
}) })
.declareMethod("handleSubmit", function (parent_gadget, jio_key, content_dict) { .allowPublicAcquisition('submitContent', function (options) {
return parent_gadget.notifySubmitting() var gadget = this,
jio_key = options[0],
//target_url = options[1],
content_dict = options[2];
return gadget.notifySubmitting()
.push(function () { .push(function () {
return parent_gadget.jio_get(jio_key); return gadget.jio_get(jio_key);
}) })
.push(function (document) { .push(function (document) {
var property; var property;
...@@ -98,13 +91,13 @@ ...@@ -98,13 +91,13 @@
document[property] = content_dict[property]; document[property] = content_dict[property];
} }
} }
return parent_gadget.jio_put(jio_key, document); return gadget.jio_put(jio_key, document);
}) })
.push(function () { .push(function () {
return parent_gadget.notifySubmitted({message: 'Data Updated', status: 'success'}); return gadget.notifySubmitted({message: 'Data Updated', status: 'success'});
}) })
.push(function () { .push(function () {
return parent_gadget.redirect({ return gadget.redirect({
command: 'display', command: 'display',
options: { options: {
jio_key: jio_key, jio_key: jio_key,
......
...@@ -3,19 +3,13 @@ ...@@ -3,19 +3,13 @@
(function (window, rJS, RSVP) { (function (window, rJS, RSVP) {
"use strict"; "use strict";
var child_gadget_url = 'gadget_erp5_pt_form_view_editable.html',
form_view_gadget_url = "gadget_officejs_form_view.html";
rJS(window) rJS(window)
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
// Acquired methods // Acquired methods
///////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////
.declareAcquiredMethod("jio_get", "jio_get") .declareAcquiredMethod("jio_get", "jio_get")
.declareAcquiredMethod("jio_put", "jio_put")
.declareAcquiredMethod("jio_post", "jio_post") .declareAcquiredMethod("jio_post", "jio_post")
.declareAcquiredMethod("getSetting", "getSetting")
.declareAcquiredMethod('getUrlParameter', 'getUrlParameter')
.declareAcquiredMethod("notifySubmitted", 'notifySubmitted') .declareAcquiredMethod("notifySubmitted", 'notifySubmitted')
.declareAcquiredMethod("notifySubmitting", "notifySubmitting") .declareAcquiredMethod("notifySubmitting", "notifySubmitting")
.declareAcquiredMethod("redirect", "redirect") .declareAcquiredMethod("redirect", "redirect")
...@@ -44,23 +38,16 @@ ...@@ -44,23 +38,16 @@
return gadget.jio_post(doc); return gadget.jio_post(doc);
}) })
.declareMethod("render", function (parent_gadget) { .declareMethod("render", function (options, action_reference, form_definition) {
var gadget = this; var gadget = this;
return gadget.declareGadget(form_view_gadget_url) return gadget.jio_get(options.jio_key)
.push(function (form_view_gadget) {
return form_view_gadget.renderGadget(parent_gadget);
});
})
.declareMethod("handleRender", function (parent_gadget, options, action_reference, form_definition) {
return parent_gadget.jio_get(options.jio_key)
.push(function (parent_document) { .push(function (parent_document) {
var title = parent_document.title; var title = parent_document.title;
if (!title.startsWith('Re: ')) { title = 'Re: ' + parent_document.title; } if (!title.startsWith('Re: ')) { title = 'Re: ' + parent_document.title; }
return parent_gadget.changeState({ return gadget.changeState({
doc: {title: title}, doc: {title: title},
parent_document: parent_document, parent_document: parent_document,
child_gadget_url: child_gadget_url, child_gadget_url: 'gadget_erp5_pt_form_view_editable.html',
form_definition: form_definition, form_definition: form_definition,
view: action_reference, view: action_reference,
editable: true, editable: true,
...@@ -71,12 +58,31 @@ ...@@ -71,12 +58,31 @@
}); });
}) })
.declareMethod("handleSubmit", function (parent_gadget, jio_key, content_dict) { .onStateChange(function () {
var document = { var gadget = this;
my_title: parent_gadget.state.doc.title, return gadget.declareGadget("gadget_officejs_form_view.html")
portal_type: parent_gadget.state.parent_document.portal_type, .push(function (form_view_gadget) {
parent_relative_url: parent_gadget.state.parent_document.parent_relative_url, return form_view_gadget.renderGadget(gadget);
my_source_reference: parent_gadget.state.parent_document.source_reference });
})
.declareMethod('triggerSubmit', function () {
return this.getDeclaredGadget('fg')
.push(function (gadget) {
return gadget.triggerSubmit();
});
})
.allowPublicAcquisition('submitContent', function (options) {
var gadget = this,
jio_key = options[0],
//target_url = options[1],
content_dict = options[2],
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; }, property;
for (property in content_dict) { for (property in content_dict) {
if (content_dict.hasOwnProperty(property)) { if (content_dict.hasOwnProperty(property)) {
...@@ -86,13 +92,13 @@ ...@@ -86,13 +92,13 @@
return this.createDocument(document) return this.createDocument(document)
.push(function (id) { .push(function (id) {
jio_key = id; jio_key = id;
return parent_gadget.notifySubmitting(); return gadget.notifySubmitting();
}) })
.push(function () { .push(function () {
return parent_gadget.notifySubmitted({message: 'Data Updated', status: 'success'}); return gadget.notifySubmitted({message: 'Data Updated', status: 'success'});
}) })
.push(function () { .push(function () {
return parent_gadget.redirect({ return gadget.redirect({
command: 'display', command: 'display',
options: { options: {
jio_key: jio_key, jio_key: jio_key,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment