Vuex的各个模块封装的实现
网络编程 2021-07-04 15:03www.168986.cn编程入门
这篇文章主要介绍了Vuex的各个模块封装的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们狼蚁网站SEO优化随着长沙网络推广来一起学习学习吧
一、各个模块的作用
- state 用来数据共享数据存储
- mutation 用来注册改变数据状态(同步)
- getters 用来对共享数据进行过滤并计数操作
- action 解决异步改变共享数据(异步)
二、 创建文件
- actions.js
- getters.js
- index.js
- mutations.js
- mutation-types.js
- state.js
三、编辑文件
这里只是拿出自己的项目来做一个例子,只是介绍封装的方法。
index.js
import Vue from 'vue' import Vuex from 'vuex' import as actions from './actions' import as getters from './getters' import state from './state' import mutations from './mutations' import createLogger from 'vuex/dist/logger' // vuex调试工具 Vue.use(Vuex) const debug = process.env.NODE_ENV !== 'prodycution' // 开发环境下开启严格模式 export default new Vuex.Store({ actions, getters, state, mutations, strict: debug, plugins: debug ? [createLogger()] : [] })
state.js
import {playMode} from 'mon/js/config' import {loadSearch} from 'mon/js/cache' const state = { singer: {}, playing: false, fullScreen: false, playlist: [], sequenceList: [], mode: playMode.sequence, currentIndex: -1, disc: {}, List: {}, searchHistory: loadSearch() } export default state
mutations.js
import as types from './mutation-types' const mutations = { [types.SET_SINGER](state, singer) { state.singer = singer }, [types.SET_PLAYING_STATE](state, flag) { state.playing = flag }, [types.SET_FULL_SCREEN](state, flag) { state.fullScreen = flag }, [types.SET_PLAYLIST](state, list) { state.playlist = list }, [types.SET_SEQUENCE_LIST](state, list) { state.sequenceList = list }, [types.SET_PLAY_MODE](state, mode) { state.mode = mode }, [types.SET_CURRENT_INDEX](state, index) { state.currentIndex = index }, [types.SET_DISC](state, disc) { state.disc = disc }, [types.SET_TOP_LIST](state, List) { state.List = List }, [types.SET_SEARCH_HISTORY](state, history) { state.searchHistory = history } } export default mutations
mutation-types.js
export const SET_SINGER = 'SET_SINGER' export const SET_PLAYING_STATE = 'SET_PLAYING_STATE' export const SET_FULL_SCREEN = 'SET_FULL_SCREEN' export const SET_PLAYLIST = 'SET_PLAYLIST' export const SET_SEQUENCE_LIST = 'SET_SEQUENCE_LIST' export const SET_PLAY_MODE = 'SET_PLAY_MODE' export const SET_CURRENT_INDEX = 'SET_CURRENT_INDEX' export const SET_DISC = 'SET_DISC' export const SET_TOP_LIST = 'SET_TOP_LIST' export const SET_SEARCH_HISTORY = 'SET_SEARCH_HISTORY'
getters.js
export const singer = state => state.singer export const playing = state => state.playing export const fullScreen = state => state.fullScreen export const playlist = state => state.playlist export const sequenceList = state => state.sequenceList export const mode = state => state.mode export const currentIndex = state => state.currentIndex export const currentSong = (state) => { return state.playlist[state.currentIndex] || {} } export const disc = state => state.disc export const List = state => state.List export const searchHistory = state => state.searchHistory
actions.js
import as types from './mutation-types' import {playMode} from 'mon/js/config' import {shuffle} from 'mon/js/util' import {saveSearch, deleteSearch, clearSearch} from 'mon/js/cache' function findIndex(list, song) { return list.findIndex((item) => { return item.id === song.id }) } export const selectPlay = function ({mit, state}, {list, index}) { mit(types.SET_SEQUENCE_LIST, list) if (state.mode === playMode.random) { let randomList = shuffle(list) mit(types.SET_PLAYLIST, randomList) index = findIndex(randomList, list[index]) } else { mit(types.SET_PLAYLIST, list) } mit(types.SET_CURRENT_INDEX, index) mit(types.SET_FULL_SCREEN, true) mit(types.SET_PLAYING_STATE, true) } export const randomPlay = function({mit}, {list}) { mit(types.SET_PLAY_MODE, playMode.random) mit(types.SET_SEQUENCE_LIST, list) let randomList = shuffle(list) mit(types.SET_PLAYLIST, randomList) mit(types.SET_CURRENT_INDEX, 0) mit(types.SET_FULL_SCREEN, true) mit(types.SET_PLAYING_STATE, true) } export const insertSong = function({mit, state}, song) { let playlist = state.playlist.slice() let sequenceList = state.sequenceList.slice() let currentIndex = state.currentIndex // 记录当前歌曲 let currentSong = playlist[currentIndex] // 查找当前列表中是否有待插入的歌曲并返回其索引 let fpIndex = findIndex(playlist, song) // 因为是插入歌曲,所以索引要+1 currentIndex++ // 插入这首歌到当前索引位置 playlist.splice(currentIndex, 0, song) // 如果已经包含这首歌 if (fpIndex > -1) { // 如果当前插入的序号大于列表中的序号 if (currentIndex > fpIndex) { playlist.splice(fpIndex, 1) currentIndex-- } else { playlist.splice(fpIndex + 1, 1) } } let currentSIndex = findIndex(sequenceList, currentSong) + 1 let fsIndex = findIndex(sequenceList, song) sequenceList.splice(currentSIndex, 0, song) if (fsIndex > -1) { if (currentSIndex > fsIndex) { sequenceList.splice(fsIndex, 1) } else { sequenceList.splice(fsIndex + 1, 1) } } mit(types.SET_PLAYLIST, playlist) mit(types.SET_SEQUENCE_LIST, sequenceList) mit(types.SET_CURRENT_INDEX, currentIndex) mit(types.SET_FULL_SCREEN, true) mit(types.SET_PLAYING_STATE, true) } export const saveSearchHistory = function({mit}, query) { mit(types.SET_SEARCH_HISTORY, saveSearch(query)) } export const deleteSearchHistory = function({mit}, query) { mit(types.SET_SEARCH_HISTORY, deleteSearch(query)) } export const clearSeachHistory = function({mit}) { mit(types.SET_SEARCH_HISTORY, clearSearch()) }
小贴士
默认接口: export default
具名接口: export
1、export导出多个对象,export default只能导出一个对象。
2、export导出对象需要用{ },export default不需要{ }。
3、在其他文件引用export default导出的对象时不一定使用导出时的名字。因为这种方式实际上是将该导出对象设置为默认导出对象。
4、导入和导出都可以使用as重新命名,as前为原来的名字,后为定义后的名字。
举例
import as someIdentifier from "someModule"; export { es6 as default } from './someModule'; // 等同于 import { es6 } from './someModule'; export default es6;
到此这篇关于Vuex的各个模块封装的实现的文章就介绍到这了,更多相关Vuex 模块封装内容请搜索狼蚁SEO以前的文章或继续浏览狼蚁网站SEO优化的相关文章希望大家以后多多支持狼蚁SEO!
上一篇:详解JS函数防抖
下一篇:js实现表单项的全选、反选及删除操作示例
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程