2FAuth/resources/js/views/Accounts.vue

99 lines
3.2 KiB
Vue
Raw Normal View History

<template>
<div>
<div class="container">
<div class="buttons are-large is-centered">
<span v-for="account in accounts" class="button is-black twofaccount" @click.stop="getAccount(account.id)">
<img src="https://fakeimg.pl/64x64/">
{{ account.name }}
<span class="is-family-primary is-size-7 has-text-grey">{{ account.email }}</span>
</span>
</div>
</div>
2019-12-21 23:25:19 +01:00
<modal v-model="ShowTwofaccountInModal">
<twofaccount-show
:twofaccountid='twofaccount.id'
:name='twofaccount.name'
:icon='twofaccount.icon'
:email='twofaccount.email'>
2019-12-21 23:25:19 +01:00
<one-time-password ref="OneTimePassword"></one-time-password>
</twofaccount-show>
</modal>
</div>
</template>
<script>
import Modal from '../components/Modal'
2019-12-21 23:25:19 +01:00
import TwofaccountShow from '../components/TwofaccountShow'
import OneTimePassword from '../components/OneTimePassword'
export default {
data(){
return {
accounts : [],
2019-12-21 23:25:19 +01:00
ShowTwofaccountInModal : false,
twofaccount: {}
}
},
mounted(){
let token = localStorage.getItem('jwt')
axios.defaults.headers.common['Content-Type'] = 'application/json'
axios.defaults.headers.common['Authorization'] = 'Bearer ' + token
axios.get('api/twofaccounts').then(response => {
response.data.forEach((data) => {
this.accounts.push({
id : data.id,
name : data.name,
email : data.email,
icon : data.icon
})
})
})
2019-07-02 00:48:48 +02:00
this.$on('modalClose', function() {
console.log('modalClose triggered')
this.$refs.OneTimePassword.clearOTP()
});
2019-12-21 23:25:19 +01:00
},
components: {
Modal,
2019-12-21 23:25:19 +01:00
TwofaccountShow,
OneTimePassword
},
methods: {
getAccount: function (id) {
let token = localStorage.getItem('jwt')
let accountId = id
axios.defaults.headers.common['Content-Type'] = 'application/json'
axios.defaults.headers.common['Authorization'] = 'Bearer ' + token
axios.get('api/twofaccounts/' + id).then(response => {
2019-07-02 00:48:48 +02:00
this.twofaccount.id = response.data.id
this.twofaccount.name = response.data.name
this.twofaccount.email = response.data.email
this.twofaccount.icon = response.data.icon
2019-07-02 00:48:48 +02:00
this.$refs.OneTimePassword.AccountId = response.data.id
this.$refs.OneTimePassword.getOTP()
2019-12-21 23:25:19 +01:00
this.ShowTwofaccountInModal = true;
})
}
},
beforeRouteEnter (to, from, next) {
if ( ! localStorage.getItem('jwt')) {
return next('login')
}
next()
}
}
</script>