Ver código fonte

Upload image from browser cache.

Signed-off-by: Lapo Luchini <lapo@lapo.it>
local-upload
Lapo Luchini 4 anos atrás
pai
commit
4549bc4f67
1 arquivos alterados com 30 adições e 13 exclusões
  1. +30
    -13
      pinry-spa/src/components/pin_edit/FileUpload.vue

+ 30
- 13
pinry-spa/src/components/pin_edit/FileUpload.vue Ver arquivo

@@ -49,19 +49,11 @@ export default {
},
watch: {
dropFile(newFile) {
this.$emit('imageUploadProcessing');
this.loading = true;
API.Pin.uploadImage(newFile).then(
(resp) => {
this.uploadedImage = resp.data;
this.loading = false;
this.$emit('imageUploadSucceed', this.uploadedImage.id);
},
() => {
this.loading = false;
this.$emit('imageUploadFailed');
},
);
this.uploadFile(newFile);
},
previewImageURL() {
if (!this.previewExists()) return;
this.uploadURL(this.previewImageURL);
},
},
computed: {
@@ -79,6 +71,31 @@ export default {
previewExists() {
return this.previewImageURL !== null && this.previewImageURL !== '';
},
uploadFile(newFile) {
this.$emit('imageUploadProcessing');
this.loading = true;
API.Pin.uploadImage(newFile).then(
(resp) => {
this.uploadedImage = resp.data;
this.loading = false;
this.$emit('imageUploadSucceed', this.uploadedImage.id);
},
() => {
this.loading = false;
this.$emit('imageUploadFailed');
},
);
},
uploadURL(url) {
const filename = new URL(url).pathname.split('/').pop();
fetch(url).then(r => r.blob()).then((blob) => {
this.uploadFile(new File([blob], filename));
});
},
},
mounted() {
if (!this.previewExists()) return;
this.uploadURL(this.previewImageURL);
},
};
</script>


Carregando…
Cancelar
Salvar