inzynieria_frontend/pages/check.vue

54 lines
1.5 KiB
Vue
Raw Normal View History

<template>
<main>
<Loader v-if="loading" />
<InputFile label="YOUR PICTURE" :edit="image && image.file" @set="(value) => handlePhotoChange(value)" />
2021-12-17 18:06:18 +01:00
<div id="con">
<Button v-if="result === null" text="CONTINUE" :disabled="image === null" :icon="['fas', 'arrow-right']" @click.native="() => getResult()" />
<template v-else>
<!-- @MACIEJ tutaj wstaw nowy komponent, do ktorego np. przeslesz rozny tekst i typ (success, fail) zaleznie od zmiennej result. Ma wyswietlac czy jest kotek czy nie -->
<!-- @temp -->
2021-12-18 17:55:30 +01:00
<Result :result="result" />
<div id="buttons">
<Button id="again" text="TRY AGAIN" :icon="['fas', 'redo']" @click.native="getResult" />
<Button id="con" text="PICK ANOTHER" :icon="['fas', 'arrow-right']" @click.native="clear" />
</div>
2021-12-17 18:06:18 +01:00
</template>
</div>
</main>
</template>
<script>
export default {
data () {
return {
image: null,
result: null,
loading: false
}
},
methods: {
handlePhotoChange (value) {
this.image = value
},
2022-01-03 21:02:57 +01:00
async checkPhoto (photo) {
const formData = new FormData()
2022-01-03 21:10:45 +01:00
formData.append('image', photo.file)
2022-01-03 21:02:57 +01:00
const res = await this.$store.dispatch('axios/file', ['/image/check', formData])
return res
},
clear () {
this.image = null
this.result = null
},
getResult () {
this.loading = true
setTimeout(() => {
this.result = this.checkPhoto(this.image)
this.loading = false
}, 1500)
}
}
}
</script>