122 lines
3.3 KiB
JavaScript
Raw Normal View History

2023-03-28 18:04:49 +08:00
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
2023-04-07 16:49:43 +08:00
historicalSearch: [],
2023-04-11 17:56:16 +08:00
allForumList: [], // 全部板块数据
homeRequestState: false, // 首页推荐和收藏接口的数据请求状态 这个是是否需要发送请求,因为用户点击收藏后需要重新获取
getUserInfoState: false, // 这个是是否在请求状态
2023-04-10 15:37:48 +08:00
favoriteList: [],
recommendList: [],
2023-04-11 17:56:16 +08:00
user: {}, // 用户信息
hotSearchkeywords: [], // 热门搜索
loading: null,
2023-03-28 18:04:49 +08:00
},
getters: {
},
2023-04-07 16:49:43 +08:00
2023-03-28 18:04:49 +08:00
mutations: {
setHistoricalSearch(state, payload) {
2023-04-07 16:49:43 +08:00
if (!Array.isArray(payload)) payload = [payload]
let targetArr = [...new Set([...payload, ...state.historicalSearch])]
if (targetArr.length > 10) targetArr = targetArr.slice(0, 10)
state.historicalSearch = targetArr
localStorage.setItem('historicalSearch', JSON.stringify(targetArr))
},
setAllForumList(state, payload) {
state.allForumList = payload
},
2023-04-10 15:37:48 +08:00
setHomeRequestState(state, payload) {
state.homeRequestState = payload
},
setFavoriteList(state, payload) {
state.favoriteList = payload
},
setRecommendList(state, payload) {
state.recommendList = payload
},
2023-04-11 17:56:16 +08:00
setUser(state, payload) {
state.user = payload
},
setHotSearchkeywords(state, payload) {
state.hotSearchkeywords = payload
},
setgetUserInfoState(state, payload) {
state.getUserInfoState = payload
},
2023-03-28 18:04:49 +08:00
},
2023-04-07 16:49:43 +08:00
2023-03-28 18:04:49 +08:00
actions: {
// 获取历史搜索的数据
fetchHistoricalSearch({ commit }) {
let historicalSearch = JSON.parse(localStorage.getItem('historicalSearch')) || []
commit('setHistoricalSearch', historicalSearch)
},
2023-04-07 16:49:43 +08:00
// 获取全部板块的数据
getAllForum({ commit }, that) {
2023-04-11 17:56:16 +08:00
// getAllForum(commit, that) {
2023-04-07 16:49:43 +08:00
that.$startupUnderLoading(that)
that.$http.get("/api/home/allForum").then(res => {
if (res.code != 200) return;
let allForumList = res.data
commit('setAllForumList', allForumList)
}).catch(err => {
that.$message.error(err.message)
}).finally(() => {
that.$closeUnderLoading(that)
})
2023-04-11 17:56:16 +08:00
},
// 获取用户信息 获取收藏信息那些数据
getUserInfo({ state, commit }, that) {
if (state.getUserInfoState) return
commit('setgetUserInfoState', true)
// that.$startupUnderLoading(that)
that.$http.post("/api/home").then(res => {
if (res.code != 200) return;
let data = res.data
let { config, favorite, hotSearchkeywords, recommend, user } = data
commit('setHomeRequestState', true)
commit('setUser', user)
commit('setFavoriteList', favorite)
commit('setRecommendList', recommend)
commit('setHotSearchkeywords', hotSearchkeywords)
if (that.userInfo) { // 这个是顶部用户数据的 这样不用监听是否请求成功
that.userInfo = user
that.islogin = user.uid > 0 ? true : false;
that.hotSearchkeywords = hotSearchkeywords
}
}).catch(err => {
that.$message.error(err.message)
}).finally(() => {
// that.$closeUnderLoading(that)
commit('setgetUserInfoState', false)
})
},
2023-04-07 16:49:43 +08:00
2023-03-28 18:04:49 +08:00
},
modules: {
2023-03-28 18:04:49 +08:00
}
})