Nuxt/examples/auth-jwt/store/index.js

27 lines
545 B
JavaScript

const cookieparser = process.server ? require('cookieparser') : undefined
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)
}
}