Actions for image lens

This commit is contained in:
Liyas Thomas
2020-06-23 08:27:41 +05:30
parent d12c09aca0
commit d9ac947fe1
3 changed files with 55 additions and 12 deletions

View File

@@ -6,7 +6,7 @@
:key="lens.lensName" :key="lens.lensName"
:id="lens.lensName" :id="lens.lensName"
:label="lens.lensName" :label="lens.lensName"
:selected="index == 0" :selected="index === 0"
> >
<component :is="lens.renderer" :response="response" /> <component :is="lens.renderer" :response="response" />
</tab> </tab>

View File

@@ -33,7 +33,7 @@
class="icon" class="icon"
@click="downloadResponse" @click="downloadResponse"
ref="downloadResponse" ref="downloadResponse"
v-if="response.body && canDownloadResponse" v-if="response.body"
v-tooltip="$t('download_file')" v-tooltip="$t('download_file')"
> >
<i class="material-icons">save_alt</i> <i class="material-icons">save_alt</i>
@@ -126,14 +126,6 @@ export default {
this.$refs.downloadResponse.innerHTML = this.downloadButton this.$refs.downloadResponse.innerHTML = this.downloadButton
}, 1000) }, 1000)
}, },
canDownloadResponse() {
return (
this.response &&
this.response.headers &&
this.response.headers["content-type"] &&
isJSONContentType(this.response.headers["content-type"])
)
},
copyResponse() { copyResponse() {
this.$refs.copyResponse.innerHTML = this.doneButton this.$refs.copyResponse.innerHTML = this.doneButton
this.$toast.success(this.$t("copied_to_clipboard"), { this.$toast.success(this.$t("copied_to_clipboard"), {

View File

@@ -1,10 +1,33 @@
<template> <template>
<ul> <ul>
<li> <li>
<img :src="imageSource" /> <div class="flex-wrap">
<label for="body">{{ $t("response") }}</label>
<div>
<button
class="icon"
@click="downloadResponse"
ref="downloadResponse"
v-if="response.body"
v-tooltip="$t('download_file')"
>
<i class="material-icons">save_alt</i>
</button>
</div>
</div>
<div id="response-details-wrapper">
<img class="response-image" :src="imageSource" />
</div>
</li> </li>
</ul> </ul>
</template> </template>
<style scoped lang="scss">
.response-image {
max-width: 100%;
}
</style>
<script> <script>
export default { export default {
props: { props: {
@@ -13,8 +36,15 @@ export default {
data() { data() {
return { return {
imageSource: "", imageSource: "",
doneButton: '<i class="material-icons">done</i>',
downloadButton: '<i class="material-icons">save_alt</i>',
} }
}, },
computed: {
responseType() {
return (this.response.headers["content-type"] || "").split(";")[0].toLowerCase()
},
},
watch: { watch: {
response: { response: {
immediate: true, immediate: true,
@@ -33,7 +63,6 @@ export default {
}, },
}, },
}, },
mounted() { mounted() {
this.imageSource = "" this.imageSource = ""
@@ -47,5 +76,27 @@ export default {
} }
reader.readAsDataURL(blob) reader.readAsDataURL(blob)
}, },
methods: {
downloadResponse() {
const dataToWrite = this.response.body
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 = `response on ${Date()}`.replace(/\./g, "[dot]")
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)
},
},
} }
</script> </script>