nebula/store/article.js

109 lines
2.4 KiB
JavaScript
Raw Normal View History

2020-06-21 21:56:34 +08:00
import Vue from 'vue';
import { isBrowser } from '~/environment';
2020-06-22 17:13:42 +08:00
export const ARTICLE_API_PATH = '/api/v1/console'
2020-06-21 21:56:34 +08:00
const getDefaultListData = () => {
return {
2020-06-22 17:13:42 +08:00
articles: [],
pagination: {}
2020-06-21 21:56:34 +08:00
}
}
2020-06-22 17:13:42 +08:00
export const state = () => {
return {
list: {
fetching: false,
data: getDefaultListData()
},
detail: {
fetching: false,
data: {}
}
2020-06-21 21:56:34 +08:00
}
2020-06-22 17:13:42 +08:00
}
2020-06-21 21:56:34 +08:00
2020-06-22 17:13:42 +08:00
export const mutations = {
2020-06-21 21:56:34 +08:00
// 文章列表
updateListFetching(state, action) {
state.list.fetching = action
},
updateListData(state, action) {
state.list.data = action
},
2020-06-22 17:13:42 +08:00
updateExistingListData(state, action) {
state.list.data.data.push(...action.data)
state.list.data.pagination = action.pagination
},
2020-06-21 21:56:34 +08:00
// 文章详情
updateDetailFetching(state, action) {
state.detail.fetching = action
},
updateDetailData(state, action) {
2020-06-23 17:40:43 +08:00
state.detail.data = action.article
2020-06-22 17:13:42 +08:00
},
// 更新文章阅读全文状态
updateDetailRenderedState(state, action) {
Vue.set(
state.detail.data,
'isRenderedFullContent',
action == null ? true : action
)
2020-06-21 21:56:34 +08:00
}
2020-06-22 17:13:42 +08:00
}
2020-06-21 21:56:34 +08:00
2020-06-22 17:13:42 +08:00
export const actions = {
2020-06-21 21:56:34 +08:00
// 获取文章列表
fetchList({commit}, params = {}) {
2020-06-22 17:13:42 +08:00
2020-06-21 21:56:34 +08:00
// 清空已有数据
2020-06-22 17:13:42 +08:00
// commit('updateListData', getDefaultListData())
2020-06-21 21:56:34 +08:00
commit('updateListFetching', true)
return this.$axios
2020-06-22 17:13:42 +08:00
.$get(`${ARTICLE_API_PATH}/articles`, {params})
2020-06-21 21:56:34 +08:00
.then(response => {
commit('updateListFetching', false)
2020-06-22 17:13:42 +08:00
commit('updateListData', response.data)
if (isBrowser) {
2020-06-21 21:56:34 +08:00
Vue.nextTick(() => {
2020-06-22 17:13:42 +08:00
window.scrollTo(0,0);
2020-06-21 21:56:34 +08:00
})
}
})
.catch(error => commit('updateListFetching', false))
2020-06-22 17:13:42 +08:00
},
// 获取文章详情
fetchDetail({ commit }, params = {}) {
2020-06-23 17:40:43 +08:00
// const delay = fetchDelay(
// isBrowser
// )
2020-06-30 17:50:32 +08:00
// if (isBrowser) {
// Vue.nextTick(() => {
// window.scrollTo(0, 300);
// })
// }
2020-06-22 17:13:42 +08:00
commit('updateDetailFetching', true)
2020-06-30 17:50:32 +08:00
// commit('updateDetailData', {})
2020-06-22 17:13:42 +08:00
return this.$axios
.$get(`${ARTICLE_API_PATH}/article/${params.article_id}`)
.then(response => {
2020-06-30 17:50:32 +08:00
return new Promise(resolve => {
commit('updateDetailData', response.data)
commit('updateDetailFetching', false)
resolve(response)
// delay(() => {
// resolve(response)
// })
})
2020-06-22 17:13:42 +08:00
})
.catch(error => {
commit('updateDetailFetching', false)
return Promise.reject(error)
})
2020-06-21 21:56:34 +08:00
}
2020-06-22 17:13:42 +08:00
}