Fixed auth
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-12-06 02:13:13 +01:00
parent 633f2af5eb
commit 5a727a6872
5 changed files with 35 additions and 31 deletions

View File

@@ -41,7 +41,7 @@ export default {
},
methods: {
performLogin() {
this.$store.dispatch("performLogin", this.creds).then(() => {
this.$store.dispatch("auth/performLogin", this.creds).then(() => {
this.$router.push({name: 'Dashboard'});
}).catch(() => {
this.invalidLogin = true;
@@ -52,14 +52,14 @@ export default {
}
},
computed: {
...mapGetters(['authInProgress'])
...mapGetters('auth', ['authInProgress'])
}
}
</script>
<style scoped>
.text-alert {
color: red;
color: red !important;
font-weight: bold;
}

View File

@@ -23,7 +23,8 @@
<md-card-actions>
<md-progress-spinner :md-diameter="30" :md-stroke="3" md-mode="indeterminate" v-if="authInProgress"
class="md-accent"></md-progress-spinner>
<md-button type="submit" class="md-primary" :disabled="authInProgress && passwordGood">Register</md-button>
<md-button type="submit" class="md-primary" :disabled="authInProgress || !passwordGood">Register
</md-button>
</md-card-actions>
</form>
</div>
@@ -46,13 +47,13 @@ export default {
methods: {
performRegister() {
const creds = {name: this.form.name, password: this.form.password};
this.$store.dispatch("performRegister", creds).then(() => {
this.$store.dispatch("auth/performRegister", creds).then(() => {
this.$router.push({name: 'Dashboard'});
})
}
},
computed: {
...mapGetters(['authInProgress']),
...mapGetters('auth', ['authInProgress']),
passwordGood() {
return this.form.password !== "" && this.form.password === this.form.passwordConfirm;
}

View File

@@ -8,8 +8,8 @@
<md-list>
<md-list-item>
<md-avatar class="md-avatar-icon">J</md-avatar>
<span class="md-list-item-text">Joska</span>
<md-avatar class="md-avatar-icon">{{ avatarText }}</md-avatar>
<span class="md-list-item-text">{{ $store.state.auth.name }}</span>
</md-list-item>
<md-list-item>
@@ -26,10 +26,15 @@ export default {
name: "WorkspaceDrawerContent",
methods: {
performLogout() {
this.$store.dispatch("performLogout").then(() => {
this.$store.dispatch("auth/performLogout").then(() => {
this.$router.push({name: "Welcome"})
})
}
},
computed: {
avatarText() {
return this.$store.state.auth.name.slice(0,2);
}
}
}
</script>