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

184 lines
6.8 KiB
Vue
Raw Normal View History

<template>
<div>
<div class="container">
<div class="buttons are-large is-centered">
2020-01-02 00:09:52 +01:00
<span v-for="account in accounts" class="button is-black twofaccount" >
<span @click.stop="getAccount(account.id)">
2020-01-05 23:21:28 +01:00
<img :src="account.icon">
{{ account.service }}
<span class="is-family-primary is-size-7 has-text-grey">{{ account.account }}</span>
2020-01-02 00:09:52 +01:00
</span>
<span v-if="editMode">
2020-01-07 11:46:18 +01:00
<router-link :to="{ name: 'edit', params: { twofaccountId: account.id }}" class="tag is-dark">
<font-awesome-icon :icon="['fas', 'edit']" />
</router-link>
2020-01-07 11:46:18 +01:00
<a class="tag is-dark" v-on:click="deleteAccount(account.id)">
<font-awesome-icon :icon="['fas', 'trash']" />
</a>
</span>
</span>
</div>
</div>
2019-12-21 23:25:19 +01:00
<modal v-model="ShowTwofaccountInModal">
<twofaccount-show
:twofaccountid='twofaccount.id'
:service='twofaccount.service'
:icon='twofaccount.icon'
:account='twofaccount.account'>
2019-12-21 23:25:19 +01:00
<one-time-password ref="OneTimePassword"></one-time-password>
</twofaccount-show>
</modal>
2020-01-07 11:46:18 +01:00
<footer class="has-background-black-ter">
<div class="columns is-gapless">
<div class="column has-text-centered">
<a class="button is-dark is-rounded" @click="editMode = true" v-if="!editMode">Manage</a>
<div class="field has-addons" v-if="editMode">
<p class="control">
<button class="button is-success is-rounded" @click="editMode = false">
<span class="icon is-small">
<font-awesome-icon :icon="['fas', 'check']" />
</span>
<span>Done</span>
</button>
</p>
<p class="control">
<router-link :to="{ name: 'create' }" class="button is-dark is-rounded">
<span class="icon is-small">
2020-01-07 13:43:18 +01:00
<font-awesome-icon :icon="['fas', 'qrcode']" />
2020-01-07 11:46:18 +01:00
</span>
</router-link>
</p>
</div>
</div>
</div>
<div class="content has-text-centered">
<span v-if="token">
Hi {{username}} ! <a class="" @click="logout">Sign out</a>
</span>
<span v-else>
<router-link :to="{ name: 'login' }" class="button is-black">
Sign in
</router-link>
<router-link :to="{ name: 'register' }" class="button is-black">
Register
</router-link>
</span>
</div>
</footer>
</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: {},
2020-01-07 11:46:18 +01:00
token : null,
username : null,
editMode: this.InitialEditMode
}
},
props: ['InitialEditMode'],
mounted(){
2020-01-07 11:46:18 +01:00
this.token = localStorage.getItem('jwt')
this.username = localStorage.getItem('user')
axios.defaults.headers.common['Content-Type'] = 'application/json'
2020-01-07 11:46:18 +01:00
axios.defaults.headers.common['Authorization'] = 'Bearer ' + this.token
axios.get('api/twofaccounts').then(response => {
response.data.forEach((data) => {
this.accounts.push({
id : data.id,
service : data.service,
account : data.account,
icon : data.icon
})
})
})
2019-07-02 00:48:48 +02:00
this.$on('modalClose', function() {
console.log('modalClose triggered')
this.$refs.OneTimePassword.clearOTP()
});
},
components: {
Modal,
2019-12-21 23:25:19 +01:00
TwofaccountShow,
OneTimePassword
},
methods: {
getAccount: function (id) {
let accountId = id
axios.defaults.headers.common['Content-Type'] = 'application/json'
2020-01-07 11:46:18 +01:00
axios.defaults.headers.common['Authorization'] = 'Bearer ' + this.token
axios.get('api/twofaccounts/' + id).then(response => {
2019-07-02 00:48:48 +02:00
this.twofaccount.id = response.data.id
this.twofaccount.service = response.data.service
this.twofaccount.account = response.data.account
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;
})
2020-01-02 00:09:52 +01:00
},
deleteAccount: function (id) {
2020-01-06 22:03:40 +01:00
if(confirm("Are you sure you want to delete this account?")) {
2020-01-02 00:09:52 +01:00
2020-01-06 22:03:40 +01:00
axios.defaults.headers.common['Content-Type'] = 'application/json'
2020-01-07 11:46:18 +01:00
axios.defaults.headers.common['Authorization'] = 'Bearer ' + this.token
2020-01-02 00:09:52 +01:00
2020-01-06 22:03:40 +01:00
axios.delete('/api/twofaccounts/' + id).then(response => {
this.accounts.splice(this.accounts.findIndex(x => x.id === id), 1);
})
}
2020-01-07 11:46:18 +01:00
},
logout(evt) {
if(confirm("Are you sure you want to log out?")) {
axios.post('api/logout').then(response => {
localStorage.removeItem('jwt');
delete axios.defaults.headers.common['Authorization'];
this.$router.go('/login');
})
.catch(error => {
localStorage.removeItem('jwt');
delete axios.defaults.headers.common['Authorization'];
this.$router.go('/login');
});
}
}
2020-01-07 11:46:18 +01:00
},
beforeRouteEnter (to, from, next) {
if ( ! localStorage.getItem('jwt')) {
return next('login')
}
next()
}
}
</script>