Handle state mutations for users better in Vuex

This commit is contained in:
Dane Everitt 2018-05-28 15:37:09 -07:00
parent a1444b047e
commit caa0d21ac9
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 55 additions and 30 deletions

View file

@ -1,33 +1,48 @@
import { Collection, Model } from 'vue-mc';
import JwtDecode from 'jwt-decode';
const User = function () {
this.id = 0;
this.admin = false;
this.email = '';
};
export class User extends Model {
static defaults() {
return {
id: null,
uuid: '',
username: '',
email: '',
name_first: '',
name_last: '',
language: 'en',
root_admin: false,
}
}
/**
* Return a new instance of the user model using a JWT.
*
* @param {string} token
* @returns {User}
*/
User.prototype.fromJwt = function (token) {
return this.newModel(JwtDecode(token));
};
static mutations() {
return {
id: Number,
uuid: String,
username: String,
email: String,
name_first: String,
name_last: String,
language: String,
root_admin: Boolean,
}
}
/**
* Return an instance of this user model with the properties set on it.
*
* @param {object} obj
* @returns {User}
*/
User.prototype.newModel = function (obj) {
this.id = obj.id;
this.admin = obj.admin;
this.email = obj.email;
static fromJWT(token) {
return new User(JwtDecode(token).user || {});
}
}
return this;
};
export class UserCollection extends Collection {
static model() {
return User;
}
export default User;
get todo() {
return this.sum('done');
}
get done() {
return this.todo === 0;
}
}

View file

@ -1,4 +1,4 @@
import User from './models/user';
import { User } from './models/user';
export const storeData = {
state: {
@ -13,15 +13,25 @@ export const storeData = {
},
},
getters: {
user: function (state) {
getCurrentUser: function (state) {
if (!(state.user instanceof User)) {
state.user = User.fromJWT(localStorage.getItem('token'));
}
return state.user;
},
},
mutations: {
/**
* Log in a user and store them in vuex using the local storage token.
*
* @param state
*/
login: function (state) {
state.user = new User().fromJwt(localStorage.getItem('token'));
state.user = User.fromJWT(localStorage.getItem('token'));
},
logout: function (state) {
console.log('logout');
state.user = null;
}
}