gancio/components/Completed.vue

45 lines
1.2 KiB
Vue
Raw Permalink Normal View History

2021-09-27 11:12:14 +02:00
<template lang="pug">
v-container
v-card-title.d-block.text-h5.text-center(v-text="$t('setup.completed')")
v-card-text(v-html="$t('setup.completed_description', user)")
v-alert.mb-3.mt-1(v-if='isHttp' outlined type='warning' color='red' show-icon :icon='mdiAlert') {{$t('setup.https_warning')}}
v-alert.mb-3.mt-1(outlined type='warning' color='red' show-icon :icon='mdiAlert') {{$t('setup.copy_password_dialog')}}
v-card-actions
v-btn(text @click='next' color='primary' :loading='loading' :disabled='loading') {{$t('setup.start')}}
v-icon(v-text='mdiArrowRight')
2021-09-27 11:12:14 +02:00
</template>
<script>
import { mdiArrowRight, mdiAlert } from '@mdi/js'
2021-09-27 11:12:14 +02:00
export default {
props: {
isHttp: { type: Boolean, default: false },
},
2021-09-27 11:12:14 +02:00
data () {
return {
mdiArrowRight, mdiAlert,
2021-09-27 11:12:14 +02:00
loading: false,
user: {
email: 'admin',
password: ''
}
}
},
methods: {
next () {
2021-10-18 15:45:16 +02:00
window.location='/admin'
2021-09-27 11:12:14 +02:00
},
async start (user) {
this.user = { ...user }
this.loading = true
try {
await this.$axios.$get('/ping')
this.loading = false
} catch (e) {
setTimeout(() => this.start(user), 1000)
}
}
}
}
</script>