• Pan's avatar
    init · d1037008
    Pan authored
    d1037008
app.js 946 Bytes
import Cookies from 'js-cookie';

const app = {
  state: {
    sidebar: {
      opened: !+Cookies.get('sidebarStatus')
    },
    theme: 'default',
    livenewsChannels: Cookies.get('livenewsChannels') || '[]'
  },
  mutations: {
    TOGGLE_SIDEBAR: state => {
      if (state.sidebar.opened) {
        Cookies.set('sidebarStatus', 1);
      } else {
        Cookies.set('sidebarStatus', 0);
      }
      state.sidebar.opened = !state.sidebar.opened;
    },
    SET_LIVENEWS_CHANNELS: (status, channels) => {
      status.livenewsChannels = JSON.stringify(channels);
      Cookies.set('livenewsChannels', JSON.stringify(channels));
    }
  },
  actions: {
    ToggleSideBar: ({ commit }) => {
      commit('TOGGLE_SIDEBAR')
    },
    setTheme: ({ commit }, theme) => {
      commit('SET_THEME', theme)
    },
    setlivenewsChannels: ({ commit }, channels) => {
      commit('SET_LIVENEWS_CHANNELS', channels)
    }
  }
};

export default app;