@@ -677,6 +682,7 @@ export default {
preRequestScript: "",
copyButton: 'file_copy',
copiedButton: 'done',
+ downloadedButton: 'cloud_done',
isHidden: true,
response: {
status: "",
@@ -1535,6 +1541,37 @@ export default {
1000
);
},
+
+ downloadResponse(){
+ // Storing the data in a organized way
+ var dataToWrite = JSON.stringify(this.response.body, null, 2);
+ // Default filename, maybe its better to add the url requested ?
+ var filename = 'response'
+ // Creating the Blob with data and mimetype
+ var file = new Blob([dataToWrite], {type: 'application/json'});
+ // Create a "a" element
+ var a = document.createElement("a"),
+ url = URL.createObjectURL(file);
+
+ // Point "a" element to url of new to be downloaded
+ a.href = url;
+ // Makes "a" element downloadable with filename
+ a.download = filename;
+ // Appends the brand new "a" element on body.
+ document.body.appendChild(a);
+ // Finally click on element to download it!
+ a.click();
+ this.$refs.downloadResponse.innerHTML =
+ this.downloadedButton + "Downloaded";
+ this.$toast.success("Download started, check your browser", {
+ icon: "done"
+ });
+ setTimeout(function() {
+ document.body.removeChild(a);
+ window.URL.revokeObjectURL(url);
+ }, 0);
+
+ },
togglePreview() {
this.previewEnabled = !this.previewEnabled;
if (this.previewEnabled) {