Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ayush Tiwari
erp5
Commits
af7f4b91
Commit
af7f4b91
authored
Sep 19, 2017
by
Tomáš Peterka
Committed by
Tomáš Peterka
Oct 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[renderjs+json_style] Form Dialog reacts accordingly to Content-Type
parent
82365205
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
108 additions
and
112 deletions
+108
-112
bt5/erp5_hal_json_style/SkinTemplateItem/portal_skins/erp5_hal_json_style/Base_redirect.py
...ateItem/portal_skins/erp5_hal_json_style/Base_redirect.py
+5
-0
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_pt_form_dialog_js.js
...Item/web_page_module/rjs_gadget_erp5_pt_form_dialog_js.js
+101
-110
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_pt_form_dialog_js.xml
...tem/web_page_module/rjs_gadget_erp5_pt_form_dialog_js.xml
+2
-2
No files found.
bt5/erp5_hal_json_style/SkinTemplateItem/portal_skins/erp5_hal_json_style/Base_redirect.py
View file @
af7f4b91
...
@@ -34,6 +34,11 @@ context.Base_prepareCorsResponse(RESPONSE=response)
...
@@ -34,6 +34,11 @@ context.Base_prepareCorsResponse(RESPONSE=response)
# http://en.wikipedia.org/wiki/Post/Redirect/Get
# http://en.wikipedia.org/wiki/Post/Redirect/Get
response
.
setStatus
(
201
)
response
.
setStatus
(
201
)
response
.
setHeader
(
"X-Location"
,
"urn:jio:get:%s"
%
context
.
getRelativeUrl
())
response
.
setHeader
(
"X-Location"
,
"urn:jio:get:%s"
%
context
.
getRelativeUrl
())
# be explicit with the reponse content type because in case of reports - they
# can be in text/plain, application/pdf ... so the RJS form needs to know what
# is going exactly on. ERP5Document_getHateoas returns application/hal+json
# therefor we don't need to be afraid of clashes
response
.
setHeader
(
"Content-type"
,
"application/json; charset=utf-8"
)
result_dict
=
{
result_dict
=
{
'portal_status_message'
:
"%s"
%
keep_items
.
pop
(
"portal_status_message"
,
""
),
'portal_status_message'
:
"%s"
%
keep_items
.
pop
(
"portal_status_message"
,
""
),
...
...
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_pt_form_dialog_js.js
View file @
af7f4b91
...
@@ -6,59 +6,10 @@
...
@@ -6,59 +6,10 @@
/* Make sure that returned object is an Array instance. */
/* Make sure that returned object is an Array instance. */
function
ensureArray
(
obj
)
{
function
ensureArray
(
obj
)
{
if
(
!
obj
)
{
return
[];
}
if
(
!
obj
)
{
return
[];
}
if
(
!
Array
.
isArray
(
obj
))
{
return
[
obj
]
;
}
if
(
Array
.
isArray
(
obj
))
{
return
obj
;
}
return
obj
;
return
[
obj
]
;
}
}
function
extractParamListFromContentDisposition
(
text
)
{
// text = " ATTACHMENT; FILENAME = MyFile "
// Returns -> [" ATTACHMENT", " FILENAME = MyFile "]
return
text
.
split
(
"
;
"
);
}
function
parseContentDispositionParam
(
text
)
{
// text = " ATTACHMENT"
// Returns -> {name:"attachment", value:null}
// text = " FILENAME = MyFile "
// Returns -> {name:"filename", value:"MyFile"}
var
i
,
l
=
text
.
length
;
for
(
i
=
0
;
i
<
l
;
i
+=
1
)
{
if
(
text
[
i
]
===
"
=
"
)
{
return
{
name
:
text
.
slice
(
0
,
i
).
trim
().
toLowerCase
(),
value
:
text
.
slice
(
i
+
1
).
trim
()};
}
}
return
{
name
:
text
.
trim
().
toLowerCase
(),
value
:
null
};
}
function
parseEachContentDispositionParamToDict
(
paramList
)
{
// paramList = [" ATTACHMENT", " FILENAME = MyFile "]
// Returns -> {attachment: null, filename: "MyFile"}
var
i
,
l
=
paramList
.
length
,
r
=
{},
p
=
null
;
for
(
i
=
0
;
i
<
l
;
i
+=
1
)
{
p
=
parseContentDispositionParam
(
paramList
[
i
]);
r
[
p
.
name
]
=
p
.
value
;
}
return
r
;
}
function
parseContentDisposition
(
text
)
{
// text = " ATTACHMENT; FILENAME = MyFile "
// Returns -> {attachment:null, filename:"MyFile"}
return
parseEachContentDispositionParamToDict
(
extractParamListFromContentDisposition
(
text
));
}
function
extractFilenameFromContentDisposition
(
text
)
{
// text = " ATTACHMENT; FILENAME = \"MyFile \" "
// Returns -> "MyFile "
var
o
=
parseContentDisposition
(
text
);
if
(
typeof
o
.
filename
===
"
string
"
)
{
if
(
o
.
filename
[
0
]
===
"
\"
"
&&
o
.
filename
[
o
.
filename
.
length
-
1
]
===
"
\"
"
)
{
return
o
.
filename
.
slice
(
1
,
-
1
);
}
return
o
.
filename
;
}
return
null
;
}
rJS
(
window
)
rJS
(
window
)
.
setState
({
.
setState
({
...
@@ -76,8 +27,7 @@
...
@@ -76,8 +27,7 @@
.
declareAcquiredMethod
(
"
notifySubmitted
"
,
"
notifySubmitted
"
)
.
declareAcquiredMethod
(
"
notifySubmitted
"
,
"
notifySubmitted
"
)
.
declareAcquiredMethod
(
"
translate
"
,
"
translate
"
)
.
declareAcquiredMethod
(
"
translate
"
,
"
translate
"
)
.
declareAcquiredMethod
(
"
notifyChange
"
,
"
notifyChange
"
)
.
declareAcquiredMethod
(
"
notifyChange
"
,
"
notifyChange
"
)
.
declareAcquiredMethod
(
"
displayFormulatorValidationError
"
,
.
declareAcquiredMethod
(
"
forcePageChange
"
,
"
displayFormulatorValidationError
"
)
"
displayFormulatorValidationError
"
)
/////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////
// Proxy methods to the child gadget
// Proxy methods to the child gadget
...
@@ -193,13 +143,33 @@
...
@@ -193,13 +143,33 @@
});
});
})
})
.
declareJob
(
"
deferRevokeObjectUrlWithLink
"
,
function
(
object_url
,
a_tag
)
{
/** The only way how to force download from javascript (working everywhere)
* is unfortunately constructing <a> and clicking on it
*/
.
declareJob
(
"
forceDownload
"
,
function
(
attachment
)
{
var
attachment_data
=
attachment
.
target
.
response
,
filename
=
/
(?:
^|;
)\s
*filename
\s
*=
\s
*"
?([^
";
]
+
)
/i
.
exec
(
attachment
.
target
.
getResponseHeader
(
"
Content-Disposition
"
)
||
""
),
a_tag
=
document
.
createElement
(
"
a
"
);
if
(
attachment
.
target
.
responseType
!==
"
blob
"
)
{
attachment_data
=
new
Blob
(
[
attachment
.
target
.
response
],
{
type
:
attachment
.
target
.
getResponseHeader
(
"
Content-Type
"
)});
}
a_tag
.
style
=
"
display: none
"
;
a_tag
.
href
=
URL
.
createObjectURL
(
attachment_data
);
a_tag
.
download
=
filename
?
filename
[
1
].
trim
()
:
"
untitled
"
;
document
.
body
.
appendChild
(
a_tag
);
a_tag
.
click
();
return
new
RSVP
.
Queue
()
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
.
push
(
function
()
{
return
RSVP
.
delay
(
10
);
return
RSVP
.
delay
(
10
);
})
})
.
push
(
function
()
{
.
push
(
function
()
{
URL
.
revokeObjectURL
(
object_url
);
URL
.
revokeObjectURL
(
a_tag
.
href
);
document
.
body
.
removeChild
(
a_tag
);
document
.
body
.
removeChild
(
a_tag
);
});
});
})
})
...
@@ -238,64 +208,85 @@
...
@@ -238,64 +208,85 @@
action
.
href
,
action
.
href
,
data
data
);
);
})
})
.
push
(
function
(
ev
t
)
{
.
push
(
function
(
attachmen
t
)
{
if
(
evt
.
target
.
responseType
===
"
blob
"
)
{
return
RSVP
.
all
([
if
(
attachment
.
target
.
response
.
type
===
"
application/json
"
)
{
evt
,
// successful form save returns simple redirect and answer as JSON
jIO
.
util
.
readBlobAsText
(
evt
.
target
.
response
)
// validation errors are handled in failure branch on bottom
]);
return
new
RSVP
.
Queue
()
}
.
push
(
function
()
{
return
[
evt
,
{
target
:
{
result
:
evt
.
target
.
response
}}]
;
return
jIO
.
util
.
readBlobAsText
(
attachment
.
target
.
response
)
;
})
})
.
push
(
function
(
result_list
)
{
.
push
(
function
(
response_text
)
{
var
evt
=
result_list
[
0
],
var
response
=
JSON
.
parse
(
response_text
.
target
.
result
);
responseText
=
result_list
[
1
].
target
.
result
,
location
=
evt
.
target
.
getResponseHeader
(
"
X-Location
"
),
jio_key
,
list
=
[],
a
,
object_url
,
message
;
try
{
message
=
JSON
.
parse
(
responseText
).
portal_status_message
;
}
catch
(
ignore
)
{
}
list
.
push
(
form_gadget
.
notifySubmitted
({
"
message
"
:
message
,
"
status
"
:
"
success
"
}));
return
form_gadget
.
notifySubmitted
({
"
message
"
:
response
.
portal_status_message
,
"
status
"
:
"
success
"
});
})
.
push
(
function
()
{
// here we figure out where to go after form submit - indicated
// by X-Location HTTP header placed by Base_redirect script
var
jio_key
=
new
URI
(
attachment
.
target
.
getResponseHeader
(
"
X-Location
"
)).
segment
(
2
);
if
(
redirect_to_parent
)
{
if
(
redirect_to_parent
)
{
list
.
push
(
form_gadget
.
redirect
({
command
:
'
history_previous
'
}));
return
form_gadget
.
redirect
({
command
:
'
history_previous
'
});
}
else
{
if
(
location
===
undefined
||
location
===
null
)
{
// Download the data
if
(
evt
.
target
.
responseType
===
"
blob
"
)
{
message
=
evt
.
target
.
response
;
}
else
{
message
=
new
Blob
([
evt
.
target
.
response
],
{
type
:
evt
.
target
.
getResponseHeader
(
"
Content-Type
"
)});
}
}
object_url
=
URL
.
createObjectURL
(
message
);
a
=
document
.
createElement
(
"
a
"
);
a
.
style
=
"
display: none
"
;
a
.
href
=
object_url
;
a
.
download
=
extractFilenameFromContentDisposition
(
evt
.
target
.
getResponseHeader
(
"
Content-Disposition
"
))
||
"
untitled
"
;
document
.
body
.
appendChild
(
a
);
a
.
click
();
form_gadget
.
deferRevokeObjectUrlWithLink
(
object_url
,
a
);
}
else
{
jio_key
=
new
URI
(
location
).
segment
(
2
);
if
(
form_gadget
.
state
.
jio_key
===
jio_key
)
{
if
(
form_gadget
.
state
.
jio_key
===
jio_key
)
{
// Do not update navigation history if dialog redirect to the same document
// don't update navigation history when not really redirecting
list
.
push
(
form_gadget
.
redirect
({
command
:
'
change
'
,
options
:
{
jio_key
:
jio_key
,
view
:
"
view
"
,
page
:
undefined
,
editable
:
form_gadget
.
state
.
editable
}}));
return
form_gadget
.
redirect
({
}
else
{
command
:
'
change
'
,
list
.
push
(
form_gadget
.
redirect
({
command
:
'
push_history
'
,
options
:
{
jio_key
:
jio_key
,
editable
:
form_gadget
.
state
.
editable
}}));
options
:
{
"
jio_key
"
:
jio_key
,
"
view
"
:
"
view
"
,
"
page
"
:
undefined
,
"
editable
"
:
form_gadget
.
state
.
editable
}
}
});
}
// forced document change thus we update history
return
form_gadget
.
redirect
({
command
:
'
push_history
'
,
options
:
{
"
jio_key
"
:
jio_key
,
"
editable
"
:
form_gadget
.
state
.
editable
}
}
});
});
}
if
(
attachment
.
target
.
response
.
type
===
"
application/hal+json
"
)
{
// we have received a view definition thus we need to redirect
// this will happen only in report/export when "Format" is unspecified
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
return
form_gadget
.
notifySubmitted
({
"
message
"
:
"
Data received.
"
,
"
status
"
:
"
success
"
});
})
.
push
(
function
()
{
return
jIO
.
util
.
readBlobAsText
(
attachment
.
target
.
response
);
})
.
push
(
function
(
response_text
)
{
return
form_gadget
.
forcePageChange
(
JSON
.
parse
(
response_text
.
target
.
result
));
});
}
}
return
RSVP
.
all
(
list
);
// any other attachment type we force to download because it is most
// likely product of export/report (thus PDF, ODT ...)
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
return
form_gadget
.
notifySubmitted
({
"
message
"
:
"
Data received.
"
,
"
status
"
:
"
success
"
});
})
.
push
(
function
()
{
return
form_gadget
.
forceDownload
(
attachment
);
});
})
})
.
push
(
undefined
,
function
(
error
)
{
.
push
(
undefined
,
function
(
error
)
{
if
(
error
.
target
!==
undefined
)
{
if
(
error
.
target
!==
undefined
)
{
...
@@ -333,7 +324,7 @@
...
@@ -333,7 +324,7 @@
return
{
target
:
{
result
:
error
.
target
.
response
}};
return
{
target
:
{
result
:
error
.
target
.
response
}};
})
})
.
push
(
function
(
event
)
{
.
push
(
function
(
event
)
{
return
form_gadget
.
displayFormulatorValidationError
(
JSON
.
parse
(
event
.
target
.
result
));
return
form_gadget
.
forcePageChange
(
JSON
.
parse
(
event
.
target
.
result
));
});
});
}
}
return
promise
;
return
promise
;
...
...
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_pt_form_dialog_js.xml
View file @
af7f4b91
...
@@ -230,7 +230,7 @@
...
@@ -230,7 +230,7 @@
</item>
</item>
<item>
<item>
<key>
<string>
serial
</string>
</key>
<key>
<string>
serial
</string>
</key>
<value>
<string>
96
1.62321.34764.3761
4
</string>
</value>
<value>
<string>
96
2.12762.25157.2022
4
</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>
150
4874104.0
4
</float>
<float>
150
5826868.6
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