GithubHelp home page GithubHelp logo

Comments (5)

QuinnBast avatar QuinnBast commented on August 12, 2024 8

I agree it would be nice to have this built into the plugin. I implemented it myself in localstorage. For @samizarraa, here's an example of how to do it:

import Vue from 'vue';
import Vuex from 'vuex';
import createPersistedState from 'vuex-persistedstate';

Vue.use(Vuex);

export default new Vuex.Store({
  state: {
    expiryDate: new Date(),
  },
  getters: {
    isExpired: state => (new Date(state.expiryDate) < new Date()),
  },
  // Actions that alter the state of the store
  mutations: {
    setExpiryDate: (state) => {
      // Create a date
      const date = new Date();
      // Add your delta for expiry. I am expiring in one day.
      date.setDate(date.getDate() + 1);
      // Set the state
      state.expiryDate = date;
    },
  },
  plugins: [createPersistedState()],
});

Hope this helps. If you use the isExpired getter and it returns true, you'll need to re-load all your store values and then use setExpiryDate to update the expiry date to the next expiration value.

from vuex-persistedstate.

robinvdvleuten avatar robinvdvleuten commented on August 12, 2024 3

@samizarraa absolutely no time for that

from vuex-persistedstate.

igventurelli avatar igventurelli commented on August 12, 2024 2

Following the example of @QuinnBast , I've created an getter to check if the token is expired based on it decoded and added this verification into my authenticated middleware:

I'm using Nuxt

Auth store (store/auth.js):

import jwt from 'jsonwebtoken'
import moment from 'moment'

export default {
  state: () => ({
    token: null,
    user: null
  }),
  getters: {
    token: state => state.token,
    user: state => state.user,
    expired: (state) => {
      const decoded = jwt.decode(state.token)
      return decoded && moment.unix(decoded.exp).isBefore(moment().format())
    }
  },
  mutations: {
    SET_TOKEN: (state, payload) => {
      state.token = payload
    },
    SET_USER: (state, payload) => {
      state.user = payload
    },
    INVALIDATE_TOKEN: (state) => {
      state.token = null
    },
    INVALIDATE_USER: (state) => {
      state.user = null
    }
  },
  actions: {
    setToken: ({ commit }, payload) => {
      commit('SET_TOKEN', payload)
    },
    setUser: ({ commit }, payload) => {
      commit('SET_USER', payload)
    },
    invalidate: ({ commit }) => {
      commit('INVALIDATE_TOKEN')
      commit('INVALIDATE_USER')
    }
  }
}

Authenticated middleware (middleware/authenticated.js)

export default function ({ store, redirect }) {
  if (!store.getters['auth/token']) {
    return redirect('/login')
  }

  if (store.getters['auth/expired']) {
    store.dispatch('auth/invalidate')
    return redirect('/login')
  }
}

I hope it helps somebody :)

from vuex-persistedstate.

robinvdvleuten avatar robinvdvleuten commented on August 12, 2024

Hi @rootsli! Thanks for the suggestion but I would like to keep this library's functionality to a bare minimum. You can do it quite easily yourself if you look at the example in the readme where I set an expiration time to the cookie.

from vuex-persistedstate.

samizarraa avatar samizarraa commented on August 12, 2024

can you please put example for set expire time to localstorage !

from vuex-persistedstate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.