1、store/index.js——mutations 增加 listClean 方法清除已完成,filter() 筛选出来完成状态为false的列表项并重新赋值给 state.list ;getters 增加 unDoneLength() 方法统计未完成项目条数,同样是用 filter() 实现。
import Vue from 'vue'
import Vuex from 'vuex'
import axios from 'axios'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
list: [],
inputValue: '', // 文本框内容
nextId: 5 // list中id属性取值
},
mutations: {
initList (state, step) {
state.list = step
},
// 为 inputValue 赋值
setInputValue (state, val) {
state.inputValue = val
},
// 将inputValue存储到list中
addInputValue (state) {
const obj = {
id: state.nextId,
info: state.inputValue.trim(),
done: false
}
state.list.push(obj)
state.nextId++
state.inputValue = ''
},
removeItem1 (state, step) {
state.list.forEach((e, index) => {
if (e.id === step) {
return state.list.splice(index, 1)
}
})
},
removeItem2 (state, step) {
// 根据id查找对应的索引
const i = state.list.findIndex(x => x.id === step)
// 根据索引,删除对应的元素
if (i !== -1) {
state.list.splice(i, 1)
}
},
// 修改列表项的选中状态
changeStatus (state, param) {
const i = state.list.findIndex(x => x.id === param.id)
if (i !== -1) {
state.list[i].done = param.done
}
},
// 清除已完成列表项
listClean (state) {
state.list = state.list.filter(x => x.done === false)
}
},
actions: {
getList (context) {
axios.get('/list.json').then(({
data }) => {
console.log(data)
context.commit('initList', data)
})
}
},
getters: {
// 统计未完成任务条数
unDoneLength (state) {
return state.list.filter(x => x.done === false).length
}
}
})
2、App.vue——剩余条数统计使用插值表达式 { { unDoneLength }} ,获取像之前一样将需要的getters函数映射为当前组件的computed;超链接 “清除已完成” 绑定cleanDone() ,调用刚才 store 中写好的 listClean() 。
<template>
<div id="app">
<a-input
placeholder="请输入任务"
class="my_ipt"
:value="inputValue"
@change="handleInputChange"
/>
<a-button type="primary" @click="addItemToList()">添加事项a-button>
<a-list bordered :dataSource="list" class="dt_list">
<a-list-item slot="renderItem" slot-scope="item">
<a-checkbox :checked='item.done' @change='onChange($event, item.id)'>{
{ item.info }}a-checkbox>
<a slot="actions" @click="removeItemById(item.id)">删除a>
a-list-item>
<div slot="footer" class="footer">
<span>{
{ unDoneLength }}条剩余span>
<a-button-group>
<a-button type="primary">全部a-button>
<a-button>未完成a-button>
<a-button>已完成a-button>
a-button-group>
<a @click="cleanDone()">清除已完成a>
div>
a-list>
div>
template>
<script>
import {
mapState, mapMutations, mapGetters } from 'vuex'
export default {
name: 'app',
data () {
return {
}
},
created () {
this.$store.dispatch('getList')
},
computed: {
...mapState(['list', 'inputValue']),
...mapGetters(['unDoneLength'])
},
methods: {
...mapMutations(['setInputValue', 'addInputValue', 'removeItem1', 'removeItem2', 'changeStatus', 'listClean']),
// 监听文本框内容变化
handleInputChange (e) {
// 拿到最新值,并同步到store
console.log(e.target.value)
this.setInputValue(e.target.value)
},
// 向列表项中新增 item 项
addItemToList () {
if (this.inputValue.trim().length <= 0) {
// 判空处理
return this.$message.warning('文本框内容不能为空')
}
this.addInputValue()
},
removeItemById (id) {
this.removeItem1(id)
},
// 监听复选框选中状态的变化
onChange (e, id) {
// 通过 e.target.checked 可以接受到最新的选中状态
const param = {
id: id,
done: e.target.checked
}
this.changeStatus(param)
// 另一种写法:
// @change='(e) => {onChange(e, item.id)}'
// console.log(`checked = ${e.target.checked}`)
},
// 清除已完成绑定事件
cleanDone () {
this.listClean()
}
}
}
script>
<style scoped>
#app {
padding: 10px;
}
.my_ipt {
width: 500px;
margin-right: 10px;
}
.dt_list {
width: 500px;
margin-top: 10px;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
}
style>