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

238 lines
9.7 KiB
Vue
Raw Normal View History

<template>
<div>
<div class="container" v-if="this.showAccounts">
2020-01-11 16:46:59 +01:00
<div class="columns is-gapless is-mobile is-centered">
<div class="column is-three-quarters-mobile is-one-third-tablet is-one-quarter-desktop is-one-quarter-widescreen is-one-quarter-fullhd">
<div class="field">
<div class="control has-icons-right">
<input type="text" class="input is-rounded is-search" v-model="search">
2020-01-11 16:46:59 +01:00
<span class="icon is-small is-right">
<font-awesome-icon :icon="['fas', 'search']" v-if="!search" />
<a class="delete" v-if="search" @click="search = '' "></a>
</span>
</div>
</div>
</div>
</div>
<div class="buttons are-large is-centered">
2020-01-11 16:46:59 +01:00
<span v-for="account in filteredAccounts" class="button is-black has-background-black-bis twofaccount" >
2020-01-02 00:09:52 +01:00
<span @click.stop="getAccount(account.id)">
2020-01-08 23:22:51 +01:00
<img :src="'storage/icons/' + account.icon" v-if="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>
<div class="container has-text-centered" v-show="this.showNoAccount">
<p class="no-account"></p>
2020-01-10 10:48:16 +01:00
<p class="subtitle is-5 has-text-grey">
{{ $t('twofaccounts.no_account_here') }}
2020-01-07 21:45:47 +01:00
</p>
<router-link :to="{ name: 'create' }" class="button is-medium is-link is-focused">{{ $t('twofaccounts.add_one') }}</router-link>
2020-01-07 17:05:13 +01:00
</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">
2020-01-07 21:45:47 +01:00
<div class="columns is-gapless" v-if="this.accounts.length > 0">
2020-01-07 11:46:18 +01:00
<div class="column has-text-centered">
2020-01-07 23:10:04 +01:00
<div class="field is-grouped">
2020-01-07 11:46:18 +01:00
<p class="control">
2020-01-07 23:10:04 +01:00
<router-link :to="{ name: 'create' }" class="button is-link is-rounded is-focus">
<span>{{ $t('twofaccounts.new') }}</span>
2020-01-07 11:46:18 +01:00
<span class="icon is-small">
2020-01-07 23:10:04 +01:00
<font-awesome-icon :icon="['fas', 'qrcode']" />
2020-01-07 11:46:18 +01:00
</span>
2020-01-07 23:10:04 +01:00
</router-link>
2020-01-07 11:46:18 +01:00
</p>
<p class="control">
<a class="button is-dark is-rounded" @click="editMode = true" v-if="!editMode">{{ $t('twofaccounts.manage') }}</a>
2020-01-07 23:10:04 +01:00
<a class="button is-success is-rounded" @click="editMode = false" v-if="editMode">
<span>{{ $t('twofaccounts.done') }}</span>
2020-01-07 11:46:18 +01:00
<span class="icon is-small">
2020-01-07 23:10:04 +01:00
<font-awesome-icon :icon="['fas', 'check']" />
2020-01-07 11:46:18 +01:00
</span>
2020-01-07 23:10:04 +01:00
</a>
2020-01-07 11:46:18 +01:00
</p>
</div>
</div>
</div>
<div class="content has-text-centered">
<span v-if="token">
{{ $t('auth.hello', {username: username}) }} <a class="has-text-grey" @click="logout">{{ $t('auth.sign_out') }}</a>
2020-01-07 11:46:18 +01:00
</span>
<span v-else>
<router-link :to="{ name: 'login' }" class="button is-black">
{{ $t('auth.sign_in') }}
2020-01-07 11:46:18 +01:00
</router-link>
<router-link :to="{ name: 'register' }" class="button is-black">
{{ $t('auth.register') }}
2020-01-07 11:46:18 +01:00
</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-11 16:46:59 +01:00
search: '',
2020-01-07 11:46:18 +01:00
token : null,
username : null,
editMode: this.InitialEditMode,
showAccounts: null,
showNoAccount: null
}
},
2020-01-11 16:46:59 +01:00
computed: {
filteredAccounts() {
return this.accounts.filter(
item => {
return item.service.toLowerCase().includes(this.search.toLowerCase()) || item.account.toLowerCase().includes(this.search.toLowerCase());
}
);
}
},
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,
2020-01-07 21:46:16 +01:00
account : data.account ? data.account : '-',
icon : data.icon
})
})
this.showAccounts = this.accounts.length > 0 ? true : false
this.showNoAccount = !this.showAccounts
})
2019-07-02 00:48:48 +02:00
2020-01-07 17:05:13 +01:00
// stop OTP generation on modal close
2019-07-02 00:48:48 +02:00
this.$on('modalClose', function() {
console.log('modalClose triggered')
this.$refs.OneTimePassword.clearOTP()
this.twofaccount.id = ''
this.twofaccount.service = ''
this.twofaccount.account = ''
this.twofaccount.icon = ''
2019-07-02 00:48:48 +02:00
});
2020-01-07 17:05:13 +01:00
},
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;
})
.catch(error => {
if (error.response.status === 404) {
this.$router.push({name: '404', params: { err : error.response.data.error }});
}
else {
this.$router.push({ name: 'genericError', params: { err: error.response.data.message } });
}
});
2020-01-02 00:09:52 +01:00
},
deleteAccount: function (id) {
if(confirm(this.$t('twofaccounts.confirm.delete'))) {
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-10 00:22:45 +01:00
axios.delete('/api/twofaccounts/' + id)
2020-01-10 00:22:45 +01:00
this.accounts.splice(this.accounts.findIndex(x => x.id === id), 1);
this.showAccounts = this.accounts.length > 0 ? true : false
this.showNoAccount = !this.showAccounts
2020-01-06 22:03:40 +01:00
}
2020-01-07 11:46:18 +01:00
},
logout(evt) {
if(confirm(this.$t('auth.confirm.logout'))) {
2020-01-07 11:46:18 +01:00
axios.post('api/logout').then(response => {
localStorage.removeItem('jwt');
localStorage.removeItem('user');
2020-01-07 11:46:18 +01:00
delete axios.defaults.headers.common['Authorization'];
this.$router.go('/login');
})
.catch(error => {
this.$router.push({ name: 'genericError', params: { err: error.response.data.message } });
2020-01-07 11:46:18 +01:00
});
}
}
2020-01-07 11:46:18 +01:00
},
beforeRouteEnter (to, from, next) {
if ( ! localStorage.getItem('jwt')) {
return next('login')
}
next()
}
}
</script>