examples(auth-jwt): use named store export to prevent warning (#5775)

This commit is contained in:
Alexandre David 2019-05-21 18:56:37 +01:00 committed by Pooya Parsa
parent a764e1f90d
commit 0e48eb634b
1 changed files with 21 additions and 27 deletions

View File

@ -1,32 +1,26 @@
import Vuex from 'vuex'
const cookieparser = process.server ? require('cookieparser') : undefined
const createStore = () => {
return new Vuex.Store({
state: {
auth: null
},
mutations: {
setAuth(state, auth) {
state.auth = auth
}
},
actions: {
nuxtServerInit({ commit }, { req }) {
let auth = null
if (req.headers.cookie) {
const parsed = cookieparser.parse(req.headers.cookie)
try {
auth = JSON.parse(parsed.auth)
} catch (err) {
// No valid cookie found
}
}
commit('setAuth', auth)
export const state = () => {
return {
auth: null
}
}
export const mutations = {
setAuth(state, auth) {
state.auth = auth
}
}
export const actions = {
nuxtServerInit({ commit }, { req }) {
let auth = null
if (req.headers.cookie) {
const parsed = cookieparser.parse(req.headers.cookie)
try {
auth = JSON.parse(parsed.auth)
} catch (err) {
// No valid cookie found
}
}
})
commit('setAuth', auth)
}
}
export default createStore