148 lines
4.2 KiB
Vue
148 lines
4.2 KiB
Vue
<template>
|
|
<div>
|
|
<div class="row-wrapper">
|
|
<label for="body">{{ $t("response_body") }}</label>
|
|
<div>
|
|
<button
|
|
v-if="response.body"
|
|
ref="ToggleExpandResponse"
|
|
v-tooltip="{
|
|
content: !expandResponse
|
|
? $t('expand_response')
|
|
: $t('collapse_response'),
|
|
}"
|
|
class="icon button"
|
|
@click="ToggleExpandResponse"
|
|
>
|
|
<i class="material-icons">
|
|
{{ !expandResponse ? "unfold_more" : "unfold_less" }}
|
|
</i>
|
|
</button>
|
|
<button
|
|
v-if="response.body && canDownloadResponse"
|
|
ref="downloadResponse"
|
|
v-tooltip="$t('download_file')"
|
|
class="icon button"
|
|
@click="downloadResponse"
|
|
>
|
|
<i class="material-icons">save_alt</i>
|
|
</button>
|
|
<button
|
|
v-if="response.body"
|
|
ref="copyResponse"
|
|
v-tooltip="$t('copy_response')"
|
|
class="icon button"
|
|
@click="copyResponse"
|
|
>
|
|
<i class="material-icons">content_copy</i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div id="response-details-wrapper">
|
|
<SmartAceEditor
|
|
:value="jsonBodyText"
|
|
:lang="'json'"
|
|
:provide-j-s-o-n-outline="true"
|
|
:options="{
|
|
maxLines: responseBodyMaxLines,
|
|
minLines: '16',
|
|
fontSize: '15px',
|
|
autoScrollEditorIntoView: true,
|
|
readOnly: true,
|
|
showPrintMargin: false,
|
|
useWorker: false,
|
|
}"
|
|
styles="rounded-b-lg"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TextContentRendererMixin from "./mixins/TextContentRendererMixin"
|
|
import { isJSONContentType } from "~/helpers/utils/contenttypes"
|
|
|
|
export default {
|
|
mixins: [TextContentRendererMixin],
|
|
props: {
|
|
response: { type: Object, default: () => {} },
|
|
},
|
|
data() {
|
|
return {
|
|
expandResponse: false,
|
|
responseBodyMaxLines: 16,
|
|
doneButton: '<i class="material-icons">done</i>',
|
|
downloadButton: '<i class="material-icons">save_alt</i>',
|
|
copyButton: '<i class="material-icons">content_copy</i>',
|
|
}
|
|
},
|
|
computed: {
|
|
jsonBodyText() {
|
|
try {
|
|
return JSON.stringify(JSON.parse(this.responseBodyText), null, 2)
|
|
} catch (e) {
|
|
// Most probs invalid JSON was returned, so drop prettification (should we warn ?)
|
|
return this.responseBodyText
|
|
}
|
|
},
|
|
responseType() {
|
|
return (this.response.headers["content-type"] || "")
|
|
.split(";")[0]
|
|
.toLowerCase()
|
|
},
|
|
canDownloadResponse() {
|
|
return (
|
|
this.response &&
|
|
this.response.headers &&
|
|
this.response.headers["content-type"] &&
|
|
isJSONContentType(this.response.headers["content-type"])
|
|
)
|
|
},
|
|
},
|
|
methods: {
|
|
ToggleExpandResponse() {
|
|
this.expandResponse = !this.expandResponse
|
|
this.responseBodyMaxLines =
|
|
this.responseBodyMaxLines === Infinity ? 16 : Infinity
|
|
},
|
|
downloadResponse() {
|
|
const dataToWrite = this.responseBodyText
|
|
const file = new Blob([dataToWrite], { type: this.responseType })
|
|
const a = document.createElement("a")
|
|
const url = URL.createObjectURL(file)
|
|
a.href = url
|
|
// TODO get uri from meta
|
|
a.download = `${url.split("/").pop().split("#")[0].split("?")[0]}`
|
|
document.body.appendChild(a)
|
|
a.click()
|
|
this.$refs.downloadResponse.innerHTML = this.doneButton
|
|
this.$toast.success(this.$t("download_started"), {
|
|
icon: "done",
|
|
})
|
|
setTimeout(() => {
|
|
document.body.removeChild(a)
|
|
window.URL.revokeObjectURL(url)
|
|
this.$refs.downloadResponse.innerHTML = this.downloadButton
|
|
}, 1000)
|
|
},
|
|
copyResponse() {
|
|
this.$refs.copyResponse.innerHTML = this.doneButton
|
|
this.$toast.success(this.$t("copied_to_clipboard"), {
|
|
icon: "done",
|
|
})
|
|
const aux = document.createElement("textarea")
|
|
const copy = this.responseBodyText
|
|
aux.innerText = copy
|
|
document.body.appendChild(aux)
|
|
aux.select()
|
|
document.execCommand("copy")
|
|
document.body.removeChild(aux)
|
|
setTimeout(
|
|
() => (this.$refs.copyResponse.innerHTML = this.copyButton),
|
|
1000
|
|
)
|
|
},
|
|
},
|
|
}
|
|
</script>
|