1 Star 11 Fork 8

ifer / v3tspinia

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MulanPSL-2.0

目标

Vue3 + TS + Pinia => TodoMVC

静态结构

npm create vite

静态结构

src/App.vue

<template>
  <section class="todoapp">
    <header class="header">
      <h1>todos</h1>
      <input class="new-todo" placeholder="What needs to be done?" autofocus />
    </header>
    <!-- This section should be hidden by default and shown when there are todos -->
    <section class="main">
      <input id="toggle-all" class="toggle-all" type="checkbox" />
      <label for="toggle-all">Mark all as complete</label>
      <ul class="todo-list">
        <!-- These are here just to show the structure of the list items -->
        <!-- List items should get the class `editing` when editing and `completed` when marked as completed -->
        <li class="completed">
          <div class="view">
            <input class="toggle" type="checkbox" checked />
            <label>Taste JavaScript</label>
            <button class="destroy"></button>
          </div>
          <input class="edit" value="Create a TodoMVC template" />
        </li>
        <li>
          <div class="view">
            <input class="toggle" type="checkbox" />
            <label>Buy a unicorn</label>
            <button class="destroy"></button>
          </div>
          <input class="edit" value="Rule the web" />
        </li>
      </ul>
    </section>
    <!-- This footer should be hidden by default and shown when there are todos -->
    <footer class="footer">
      <!-- This should be `0 items left` by default -->
      <span class="todo-count"><strong>0</strong> item left</span>
      <!-- Remove this if you don't implement routing -->
      <ul class="filters">
        <li>
          <a class="selected" href="#/">All</a>
        </li>
        <li>
          <a href="#/active">Active</a>
        </li>
        <li>
          <a href="#/completed">Completed</a>
        </li>
      </ul>
      <!-- Hidden if no completed items are left ↓ -->
      <button class="clear-completed">Clear completed</button>
    </footer>
  </section>
</template>

src/styles/base.css

hr {
	margin: 20px 0;
	border: 0;
	border-top: 1px dashed #c5c5c5;
	border-bottom: 1px dashed #f7f7f7;
}

.learn a {
	font-weight: normal;
	text-decoration: none;
	color: #b83f45;
}

.learn a:hover {
	text-decoration: underline;
	color: #787e7e;
}

.learn h3,
.learn h4,
.learn h5 {
	margin: 10px 0;
	font-weight: 500;
	line-height: 1.2;
	color: #000;
}

.learn h3 {
	font-size: 24px;
}

.learn h4 {
	font-size: 18px;
}

.learn h5 {
	margin-bottom: 0;
	font-size: 14px;
}

.learn ul {
	padding: 0;
	margin: 0 0 30px 25px;
}

.learn li {
	line-height: 20px;
}

.learn p {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 0;
}

#issue-count {
	display: none;
}

.quote {
	border: none;
	margin: 20px 0 60px 0;
}

.quote p {
	font-style: italic;
}

.quote p:before {
	content: '“';
	font-size: 50px;
	opacity: .15;
	position: absolute;
	top: -20px;
	left: 3px;
}

.quote p:after {
	content: '”';
	font-size: 50px;
	opacity: .15;
	position: absolute;
	bottom: -42px;
	right: 3px;
}

.quote footer {
	position: absolute;
	bottom: -40px;
	right: 0;
}

.quote footer img {
	border-radius: 3px;
}

.quote footer a {
	margin-left: 5px;
	vertical-align: middle;
}

.speech-bubble {
	position: relative;
	padding: 10px;
	background: rgba(0, 0, 0, .04);
	border-radius: 5px;
}

.speech-bubble:after {
	content: '';
	position: absolute;
	top: 100%;
	right: 30px;
	border: 13px solid transparent;
	border-top-color: rgba(0, 0, 0, .04);
}

.learn-bar > .learn {
	position: absolute;
	width: 272px;
	top: 8px;
	left: -300px;
	padding: 10px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, .6);
	transition-property: left;
	transition-duration: 500ms;
}

@media (min-width: 899px) {
	.learn-bar {
		width: auto;
		padding-left: 300px;
	}

	.learn-bar > .learn {
		left: 8px;
	}
}

src/styles/index.css

html,
body {
	margin: 0;
	padding: 0;
}

button {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-size: 100%;
	vertical-align: baseline;
	font-family: inherit;
	font-weight: inherit;
	color: inherit;
	-webkit-appearance: none;
	appearance: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height: 1.4em;
	background: #f5f5f5;
	color: #111111;
	min-width: 230px;
	max-width: 550px;
	margin: 0 auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 300;
}

.hidden {
	display: none;
}

.todoapp {
	background: #fff;
	margin: 130px 0 40px 0;
	position: relative;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
	            0 25px 50px 0 rgba(0, 0, 0, 0.1);
}

.todoapp input::-webkit-input-placeholder {
	font-style: italic;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4);
}

.todoapp input::-moz-placeholder {
	font-style: italic;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4);
}

.todoapp input::input-placeholder {
	font-style: italic;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4);
}

.todoapp h1 {
	position: absolute;
	top: -140px;
	width: 100%;
	font-size: 80px;
	font-weight: 200;
	text-align: center;
	color: #b83f45;
	-webkit-text-rendering: optimizeLegibility;
	-moz-text-rendering: optimizeLegibility;
	text-rendering: optimizeLegibility;
}

.new-todo,
.edit {
	position: relative;
	margin: 0;
	width: 100%;
	font-size: 24px;
	font-family: inherit;
	font-weight: inherit;
	line-height: 1.4em;
	color: inherit;
	padding: 6px;
	border: 1px solid #999;
	box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.new-todo {
	padding: 16px 16px 16px 60px;
	height: 65px;
	border: none;
	background: rgba(0, 0, 0, 0.003);
	box-shadow: inset 0 -2px 1px rgba(0,0,0,0.03);
}

.main {
	position: relative;
	z-index: 2;
	border-top: 1px solid #e6e6e6;
}

.toggle-all {
	width: 1px;
	height: 1px;
	border: none; /* Mobile Safari */
	opacity: 0;
	position: absolute;
	right: 100%;
	bottom: 100%;
}

.toggle-all + label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 65px;
	font-size: 0;
	position: absolute;
	top: -65px;
	left: -0;
}

.toggle-all + label:before {
	content: '❯';
	display: inline-block;
	font-size: 22px;
	color: #949494;
	padding: 10px 27px 10px 27px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.toggle-all:checked + label:before {
	color: #484848;
}

.todo-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.todo-list li {
	position: relative;
	font-size: 24px;
	border-bottom: 1px solid #ededed;
}

.todo-list li:last-child {
	border-bottom: none;
}

.todo-list li.editing {
	border-bottom: none;
	padding: 0;
}

.todo-list li.editing .edit {
	display: block;
	width: calc(100% - 43px);
	padding: 12px 16px;
	margin: 0 0 0 43px;
}

.todo-list li.editing .view {
	display: none;
}

.todo-list li .toggle {
	text-align: center;
	width: 40px;
	/* auto, since non-WebKit browsers doesn't support input styling */
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	border: none; /* Mobile Safari */
	-webkit-appearance: none;
	appearance: none;
}

.todo-list li .toggle {
	opacity: 0;
}

.todo-list li .toggle + label {
	/*
		Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433
		IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/
	*/
	background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23949494%22%20stroke-width%3D%223%22/%3E%3C/svg%3E');
	background-repeat: no-repeat;
	background-position: center left;
}

.todo-list li .toggle:checked + label {
	background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%2359A193%22%20stroke-width%3D%223%22%2F%3E%3Cpath%20fill%3D%22%233EA390%22%20d%3D%22M72%2025L42%2071%2027%2056l-4%204%2020%2020%2034-52z%22%2F%3E%3C%2Fsvg%3E');
}

.todo-list li label {
	word-break: break-all;
	padding: 15px 15px 15px 60px;
	display: block;
	line-height: 1.2;
	transition: color 0.4s;
	font-weight: 400;
	color: #484848;
}

.todo-list li.completed label {
	color: #949494;
	text-decoration: line-through;
}

.todo-list li .destroy {
	display: none;
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	width: 40px;
	height: 40px;
	margin: auto 0;
	font-size: 30px;
	color: #949494;
	transition: color 0.2s ease-out;
}

.todo-list li .destroy:hover,
.todo-list li .destroy:focus {
	color: #C18585;
}

.todo-list li .destroy:after {
	content: '×';
	display: block;
	height: 100%;
	line-height: 1.1;
}

.todo-list li:hover .destroy {
	display: block;
}

.todo-list li .edit {
	display: none;
}

.todo-list li.editing:last-child {
	margin-bottom: -1px;
}

.footer {
	padding: 10px 15px;
	height: 20px;
	text-align: center;
	font-size: 15px;
	border-top: 1px solid #e6e6e6;
}

.footer:before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 50px;
	overflow: hidden;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2),
	            0 8px 0 -3px #f6f6f6,
	            0 9px 1px -3px rgba(0, 0, 0, 0.2),
	            0 16px 0 -6px #f6f6f6,
	            0 17px 2px -6px rgba(0, 0, 0, 0.2);
}

.todo-count {
	float: left;
	text-align: left;
}

.todo-count strong {
	font-weight: 300;
}

.filters {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	right: 0;
	left: 0;
}

.filters li {
	display: inline;
}

.filters li a {
	color: inherit;
	margin: 3px;
	padding: 3px 7px;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 3px;
}

.filters li a:hover {
	border-color: #DB7676;
}

.filters li a.selected {
	border-color: #CE4646;
}

.clear-completed,
html .clear-completed:active {
	float: right;
	position: relative;
	line-height: 19px;
	text-decoration: none;
	cursor: pointer;
}

.clear-completed:hover {
	text-decoration: underline;
}

.info {
	margin: 65px auto 0;
	color: #4d4d4d;
	font-size: 11px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	text-align: center;
}

.info p {
	line-height: 1;
}

.info a {
	color: inherit;
	text-decoration: none;
	font-weight: 400;
}

.info a:hover {
	text-decoration: underline;
}

/*
	Hack to remove background from Mobile Safari.
	Can't use it globally since it destroys checkboxes in Firefox
*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.toggle-all,
	.todo-list li .toggle {
		background: none;
	}

	.todo-list li .toggle {
		height: 40px;
	}
}

@media (max-width: 430px) {
	.footer {
		height: 50px;
	}

	.filters {
		bottom: 10px;
	}
}

:focus,
.toggle:focus + label,
.toggle-all:focus + label {
	box-shadow: 0 0 2px 2px #CF7D7D;
	outline: 0;
}

src/main.ts

import { createApp } from 'vue'
import './styles/base.css'
import './styles/index.css'
import App from './App.vue'

createApp(App).mount('#app')

拆分组件

App.vue

<script setup lang="ts">
import TodoHeader from './components/TodoHeader.vue'
import TodoMain from './components/TodoMain.vue'
import TodoFooter from './components/TodoFooter.vue'
</script>
<template>
  <section class="todoapp">
    <!-- TodoHeader -->
    <TodoHeader />
    <!-- TodoMain -->
    <TodoMain />
    <!-- TodoFooter -->
    <TodoFooter />
  </section>
</template>

跑通 Pinia

src/main.ts

import { createApp } from 'vue'
import './styles/base.css'
import './styles/index.css'
import App from './App.vue'
// #1
import { createPinia } from 'pinia'
// #2
const pinia = createPinia()
// #3
createApp(App).use(pinia).mount('#app')

src/store/index.ts

import useMainStore from './modules/main'
import useFooterStore from './modules/footer'
const o: { [key: string]: any } = {}
export default function useStore() {
  if (!o.main) o.main = useMainStore()
  if (!o.footer) o.footer = useFooterStore()
  return o
}

src/store/modules/main.ts

import { defineStore } from 'pinia'

const useMainStore = defineStore('main', {
  state: () => {
    return {
      list: [],
    }
  },
})

export default useMainStore

src/store/modules/footer.ts

import { defineStore } from 'pinia'

const useFooterStore = defineStore('footer', {
  state: () => {
    return {
      tabs: [],
    }
  },
})

export default useFooterStore

列表渲染

准备接口

data.json

{
  "todos": [
    {
      "id": 0,
      "name": "吃饭",
      "done": false
    },
    {
      "id": 1,
      "name": "睡觉",
      "done": true
    },
    {
      "id": 2,
      "name": "写代码",
      "done": false
    }
  ]
}
# 跑通接口
json-server data.json -p 8888

封装 Axios

yarn add axios

src/utils/request.ts

import axios from 'axios'
const request = axios.create({
  baseURL: 'http://localhost:8888/todos',
})

export default request

定义 Action

src/store/modules/main.ts

import { defineStore } from 'pinia'
import { ITodoItem } from '../../types/data'
import request from '../../utils/request'

const useMainStore = defineStore('main', {
  state: () => {
    return {
      list: [] as ITodoItem[],
    }
  },
  actions: {
    async getList() {
      const { data } = await request.get<ITodoItem[]>('/')
      this.list = data
    },
  },
})

export default useMainStore

src/types/data.d.ts

export interface ITodoItem {
  id: number
  name: string
  done: boolean
}

请求数据并渲染

src/components/TodoMain.vue

<script setup lang="ts">
import { storeToRefs } from 'pinia'
import useStore from '../store'
const { main } = useStore()
const { getList } = main
const { list } = storeToRefs(main)
getList()
</script>
<template>
  <section class="main">
    <input id="toggle-all" class="toggle-all" type="checkbox" />
    <label for="toggle-all">Mark all as complete</label>
    <ul class="todo-list">
      <!-- These are here just to show the structure of the list items -->
      <!-- List items should get the class `editing` when editing and `completed` when marked as completed -->
      <li
        :class="{
          completed: item.done,
        }"
        v-for="item in list"
        :key="item.id"
      >
        <div class="view">
          <input class="toggle" type="checkbox" :checked="item.done" />
          <label>{{ item.name }}</label>
          <button class="destroy"></button>
        </div>
        <input class="edit" value="Create a TodoMVC template" />
      </li>
    </ul>
  </section>
</template>

删除数据

src/store/modules/main.ts

import { defineStore } from 'pinia'
import { ITodoItem } from '../../types/data'
import request from '../../utils/request'

const useMainStore = defineStore('main', {
  state: () => {
    return {
      list: [] as ITodoItem[],
    }
  },
  actions: {
    async getList() {
      const { data } = await request.get<ITodoItem[]>('/')
      this.list = data
    },
    async deleteTodo(id: number) {
      await request.delete(`/${id}`)
      this.getList()
    },
  },
})

export default useMainStore

src/components/TotoMain.ts

<script setup lang="ts">
import { storeToRefs } from 'pinia'
import useStore from '../store'
const { main } = useStore()
const { getList, deleteTodo } = main
const { list } = storeToRefs(main)
const handleDelete = (id: number) => deleteTodo(id)
getList()
</script>
<template>
  <section class="main">
    <input id="toggle-all" class="toggle-all" type="checkbox" />
    <label for="toggle-all">Mark all as complete</label>
    <ul class="todo-list">
      <!-- These are here just to show the structure of the list items -->
      <!-- List items should get the class `editing` when editing and `completed` when marked as completed -->
      <li
        :class="{
          completed: item.done,
        }"
        v-for="item in list"
        :key="item.id"
      >
        <div class="view">
          <input class="toggle" type="checkbox" :checked="item.done" />
          <label>{{ item.name }}</label>
          <button class="destroy" @click="handleDelete(item.id)"></button>
        </div>
        <input class="edit" value="Create a TodoMVC template" />
      </li>
    </ul>
  </section>
</template>

状态切换

src/store/modules/main.ts

import { defineStore } from 'pinia'
import { ITodoItem } from '../../types/data'
import request from '../../utils/request'

const useMainStore = defineStore('main', {
  state: () => {
    return {
      list: [] as ITodoItem[],
    }
  },
  actions: {
    async getList() {
      const { data } = await request.get<ITodoItem[]>('/')
      this.list = data
    },
    async deleteTodo(id: number) {
      await request.delete(`/${id}`)
      this.getList()
    },
    async updateTodo(id: number, key: string, value: string | boolean) {
      await request.patch(`/${id}`, {
        [key]: value,
      })
      this.getList()
    },
  },
})

export default useMainStore

src/components/TodoMain.vue

<script setup lang="ts">
import { storeToRefs } from 'pinia'
import useStore from '../store'
import { ITodoItem } from '../types/data'
const { main } = useStore()
const { getList, deleteTodo, updateTodo } = main
const { list } = storeToRefs(main)
const handleDelete = (id: number) => deleteTodo(id)
const handleChange = (item: ITodoItem) => updateTodo(item.id, 'done', !item.done)
getList()
</script>
<template>
  <section class="main">
    <input id="toggle-all" class="toggle-all" type="checkbox" />
    <label for="toggle-all">Mark all as complete</label>
    <ul class="todo-list">
      <!-- These are here just to show the structure of the list items -->
      <!-- List items should get the class `editing` when editing and `completed` when marked as completed -->
      <li
        :class="{
          completed: item.done,
        }"
        v-for="item in list"
        :key="item.id"
      >
        <div class="view">
          <input class="toggle" type="checkbox" :checked="item.done" @change="handleChange(item)" />
          <label>{{ item.name }}</label>
          <button class="destroy" @click="handleDelete(item.id)"></button>
        </div>
        <input class="edit" value="Create a TodoMVC template" />
      </li>
    </ul>
  </section>
</template>

添加数据

src/store/modules/main.ts

import { defineStore } from 'pinia'
import { ITodoItem } from '../../types/data'
import request from '../../utils/request'

const useMainStore = defineStore('main', {
  state: () => {
    return {
      list: [] as ITodoItem[],
    }
  },
  actions: {
    async getList() {
      const { data } = await request.get<ITodoItem[]>('/')
      this.list = data
    },
    async deleteTodo(id: number) {
      await request.delete(`/${id}`)
      this.getList()
    },
    async updateTodo(id: number, key: string, value: string | boolean) {
      await request.patch(`/${id}`, {
        [key]: value,
      })
      this.getList()
    },
    async addTodo(name: string) {
      await await request.post('/', {
        name,
        done: false,
      })
      this.getList()
    },
  },
})

export default useMainStore

src/components/TodoHeader.vue

<script setup lang="ts">
import { ref } from 'vue'
import useStore from '../store'
const { main } = useStore()
const { addTodo } = main
const name = ref('')
const handleKeyUp = (e: KeyboardEvent) => {
  if (e.key === 'Enter') {
    if (name.value.trim() === '') return alert('内容不能为空')
    addTodo(name.value)
    name.value = ''
  }
}
</script>
<template>
  <header class="header">
    <h1>todos</h1>
    <input class="new-todo" placeholder="What needs to be done?" autofocus v-model="name" @keyup="handleKeyUp" />
  </header>
</template>

全选功能

src/store/modules/main.ts

import { defineStore } from 'pinia'
import { ITodoItem } from '../../types/data'
import request from '../../utils/request'

const useMainStore = defineStore('main', {
  state: () => {
    return {
      list: [] as ITodoItem[],
    }
  },
  actions: {
    async getList() {
      const { data } = await request.get<ITodoItem[]>('/')
      this.list = data
    },
    async deleteTodo(id: number) {
      await request.delete(`/${id}`)
      this.getList()
    },
    async updateTodo(id: number, key: string, value: string | boolean) {
      await request.patch(`/${id}`, {
        [key]: value,
      })
      this.getList()
    },
    async addTodo(name: string) {
      await await request.post('/', {
        name,
        done: false,
      })
      this.getList()
    },
    // #3
    async updateAllDone(done: boolean) {
      const arrPromise = this.list.map((item) => {
        return request.patch(`/${item.id}`, {
          done,
        })
      })
      await Promise.all(arrPromise)
      this.getList()
    },
  },
  getters: {
    // #1
    mainRadioStatus(): boolean {
      return this.list.every((item) => item.done)
    },
  },
})

export default useMainStore

src/components/TodoMain.vue

<script setup lang="ts">
import { storeToRefs } from 'pinia'
import useStore from '../store'
import { ITodoItem } from '../types/data'
const { main } = useStore()
const { getList, deleteTodo, updateTodo, updateAllDone } = main
const { list, mainRadioStatus } = storeToRefs(main)
const handleDelete = (id: number) => deleteTodo(id)
const handleChange = (item: ITodoItem) => updateTodo(item.id, 'done', !item.done)
// #4
const handleChangeAll = (done: boolean) => updateAllDone(done)
getList()
</script>
<template>
  <section class="main">
    <!-- #2 -->
    <input id="toggle-all" class="toggle-all" type="checkbox" :checked="mainRadioStatus" @change="handleChangeAll(!mainRadioStatus)" />
    <label for="toggle-all">Mark all as complete</label>
    <ul class="todo-list">
      <!-- These are here just to show the structure of the list items -->
      <!-- List items should get the class `editing` when editing and `completed` when marked as completed -->
      <li
        :class="{
          completed: item.done,
        }"
        v-for="item in list"
        :key="item.id"
      >
        <div class="view">
          <input class="toggle" type="checkbox" :checked="item.done" @change="handleChange(item)" />
          <label>{{ item.name }}</label>
          <button class="destroy" @click="handleDelete(item.id)"></button>
        </div>
        <input class="edit" value="Create a TodoMVC template" />
      </li>
    </ul>
  </section>
</template>

双击显示编辑框

拆分组件

src/components/TodoMain.vue

<script setup lang="ts">
import { storeToRefs } from 'pinia'
import useStore from '../store'
import TodoItem from './TodoItem.vue'
const { main } = useStore()
const { getList, updateAllDone } = main
const { list, mainRadioStatus } = storeToRefs(main)
// #4
const handleChangeAll = (done: boolean) => updateAllDone(done)
getList()
</script>
<template>
  <section class="main">
    <!-- #2 -->
    <input id="toggle-all" class="toggle-all" type="checkbox" :checked="mainRadioStatus" @change="handleChangeAll(!mainRadioStatus)" />
    <label for="toggle-all">Mark all as complete</label>
    <ul class="todo-list">
      <!-- These are here just to show the structure of the list items -->
      <!-- List items should get the class `editing` when editing and `completed` when marked as completed -->
      <TodoItem v-for="item in list" :item="item" />
    </ul>
  </section>
</template>

src/components/TodoItem.vue

<script setup lang="ts">
import useStore from '../store'
import { ITodoItem } from '../types/data'
const { main } = useStore()
const { deleteTodo, updateTodo } = main
const handleDelete = (id: number) => deleteTodo(id)
const handleChange = (item: ITodoItem) => updateTodo(item.id, 'done', !item.done)
defineProps<{
  item: ITodoItem
}>()
</script>
<template>
  <li
    :class="{
      completed: item.done,
    }"
  >
    <div class="view">
      <input class="toggle" type="checkbox" :checked="item.done" @change="handleChange(item)" />
      <label>{{ item.name }}</label>
      <button class="destroy" @click="handleDelete(item.id)"></button>
    </div>
    <input class="edit" value="Create a TodoMVC template" />
  </li>
</template>

显示编辑框

src/components/TodoItem.vue

<script setup lang="ts">
import { ref } from 'vue'
import useStore from '../store'
import { ITodoItem } from '../types/data'
// #1
const isEditing = ref(false)
const { main } = useStore()
const { deleteTodo, updateTodo } = main
const handleDelete = (id: number) => deleteTodo(id)
const handleChange = (item: ITodoItem) => updateTodo(item.id, 'done', !item.done)
// #2
const handleDblClick = () => {
  isEditing.value = true
}
defineProps<{
  item: ITodoItem
}>()
</script>
<template>
  <li
    :class="{
      completed: item.done,
      editing: isEditing,
    }"
  >
    <div class="view">
      <input class="toggle" type="checkbox" :checked="item.done" @change="handleChange(item)" />
      <label @dblclick="handleDblClick">{{ item.name }}</label>
      <button class="destroy" @click="handleDelete(item.id)"></button>
    </div>
    <input class="edit" value="Create a TodoMVC template" />
  </li>
</template>

双击聚焦输入框

src/components/TodoItem.vue

<script setup lang="ts">
import { nextTick, ref } from 'vue'
import useStore from '../store'
import { ITodoItem } from '../types/data'

const isEditing = ref(false)
// #1
const inputRef = ref<HTMLInputElement>()
const { main } = useStore()
const { deleteTodo, updateTodo } = main
const handleDelete = (id: number) => deleteTodo(id)
const handleChange = (item: ITodoItem) => updateTodo(item.id, 'done', !item.done)
const handleDblClick = () => {
  isEditing.value = true
  // #2
  nextTick(() => inputRef.value?.focus())
}
const handleBlur = () => {
  // #3
  isEditing.value = false
}
defineProps<{
  item: ITodoItem
}>()
</script>
<template>
  <li
    :class="{
      completed: item.done,
      editing: isEditing,
    }"
  >
    <div class="view">
      <input class="toggle" type="checkbox" :checked="item.done" @change="handleChange(item)" />
      <label @dblclick="handleDblClick">{{ item.name }}</label>
      <button class="destroy" @click="handleDelete(item.id)"></button>
    </div>
    <input class="edit" value="Create a TodoMVC template" ref="inputRef" @blur="handleBlur" />
  </li>
</template>

双击回显数据

<script setup lang="ts">
import { nextTick, ref } from 'vue'
import useStore from '../store'
import { ITodoItem } from '../types/data'
const isEditing = ref(false)
// #1
const currentName = ref('')
const inputRef = ref<HTMLInputElement>()
const { main } = useStore()
const { deleteTodo, updateTodo } = main
const handleDelete = (id: number) => deleteTodo(id)
const handleChange = (item: ITodoItem) => updateTodo(item.id, 'done', !item.done)
const handleDblClick = () => {
  isEditing.value = true
  // #2
  currentName.value = props.item.name
  nextTick(() => inputRef.value?.focus())
}
const handleBlur = () => {
  isEditing.value = false
  // #4
  currentName.value = ''
}
const props = defineProps<{
  item: ITodoItem
}>()
</script>
<template>
  <li
    :class="{
      completed: item.done,
      editing: isEditing,
    }"
  >
    <div class="view">
      <input class="toggle" type="checkbox" :checked="item.done" @change="handleChange(item)" />
      <label @dblclick="handleDblClick">{{ item.name }}</label>
      <button class="destroy" @click="handleDelete(item.id)"></button>
    </div>
    <!-- #3 -->
    <input class="edit" ref="inputRef" @blur="handleBlur" v-model="currentName" />
  </li>
</template>

修改数据

<script setup lang="ts">
import { nextTick, ref } from 'vue'
import useStore from '../store'
import { ITodoItem } from '../types/data'
const isEditing = ref(false)
const currentName = ref('')
const inputRef = ref<HTMLInputElement>()
const { main } = useStore()
const { deleteTodo, updateTodo } = main
const handleDelete = (id: number) => deleteTodo(id)
const handleChange = (item: ITodoItem) => updateTodo(item.id, 'done', !item.done)
const handleDblClick = () => {
  isEditing.value = true
  currentName.value = props.item.name
  nextTick(() => inputRef.value?.focus())
}
const handleBlur = () => {
  isEditing.value = false
  currentName.value = ''
}
// #mark
const handleKeyUp = (e: KeyboardEvent) => {
  if (e.key === 'Escape') {
    handleBlur()
    return
  }
  if (e.key === 'Enter') {
    if (currentName.value.trim() === '') return alert('内容不能为空')
    updateTodo(props.item.id, 'name', currentName.value)
    handleBlur()
  }
}
const props = defineProps<{
  item: ITodoItem
}>()
</script>
<template>
  <li
    :class="{
      completed: item.done,
      editing: isEditing,
    }"
  >
    <div class="view">
      <input class="toggle" type="checkbox" :checked="item.done" @change="handleChange(item)" />
      <label @dblclick="handleDblClick">{{ item.name }}</label>
      <button class="destroy" @click="handleDelete(item.id)"></button>
    </div>
    <input class="edit" ref="inputRef" @blur="handleBlur" v-model="currentName" @keyup="handleKeyUp" />
  </li>
</template>

清空已完成和剩余数量统计

src/store/modules/main.ts

import { defineStore } from 'pinia'
import { ITodoItem } from '../../types/data'
import request from '../../utils/request'

const useMainStore = defineStore('main', {
  state: () => {
    return {
      list: [] as ITodoItem[],
    }
  },
  actions: {
    async getList() {
      const { data } = await request.get<ITodoItem[]>('/')
      this.list = data
    },
    async deleteTodo(id: number) {
      await request.delete(`/${id}`)
      this.getList()
    },
    async updateTodo(id: number, key: string, value: string | boolean) {
      await request.patch(`/${id}`, {
        [key]: value,
      })
      this.getList()
    },
    async addTodo(name: string) {
      await await request.post('/', {
        name,
        done: false,
      })
      this.getList()
    },
    async updateAllDone(done: boolean) {
      const arrPromise = this.list.map((item) => {
        return request.patch(`/${item.id}`, {
          done,
        })
      })
      await Promise.all(arrPromise)
      this.getList()
    },
    // #2
    async clearCompleted() {
      const arrPromise = this.completed.map((item) => {
        return request.delete(`/${item.id}`)
      })
      await Promise.all(arrPromise)
      this.getList()
    },
  },
  getters: {
    mainRadioStatus(): boolean {
      return this.list.every((item) => item.done)
    },
    // #1
    completed(): ITodoItem[] {
      return this.list.filter((item) => item.done)
    },
    unCompleted(): ITodoItem[] {
      return this.list.filter((item) => !item.done)
    },
  },
})

export default useMainStore

src/components/TodoFooter.vue

<script setup lang="ts">
import { storeToRefs } from 'pinia'
import useStore from '../store'

const { main } = useStore()
const { clearCompleted } = main
const { completed, unCompleted } = storeToRefs(main)
</script>
<template>
  <footer class="footer">
    <!-- This should be `0 items left` by default -->
    <span class="todo-count"
      ><strong>{{ unCompleted.length }}</strong> item left</span
    >
    <!-- Remove this if you don't implement routing -->
    <ul class="filters">
      <li>
        <a class="selected" href="#/">All</a>
      </li>
      <li>
        <a href="#/active">Active</a>
      </li>
      <li>
        <a href="#/completed">Completed</a>
      </li>
    </ul>
    <!-- Hidden if no completed items are left ↓ -->
    <button v-if="completed.length > 0" class="clear-completed" @click="clearCompleted">Clear completed</button>
  </footer>
</template>

点击底部按钮高亮

src/store/modules/footer.ts

import { defineStore } from 'pinia'

const useFooterStore = defineStore('footer', {
  state: () => {
    return {
      tabs: ['All', 'Active', 'Completed'],
      active: 'All',
    }
  },
  actions: {
    updateActive(active: string) {
      this.active = active
    },
  },
})

export default useFooterStore

src/components/TodoFooter.vue

<script setup lang="ts">
import { storeToRefs } from 'pinia'
import useStore from '../store'
const { main, footer } = useStore()
const { clearCompleted } = main
const { updateActive } = footer
const { tabs, active } = storeToRefs(footer)
const { completed, unCompleted, list } = storeToRefs(main)
const initActive = () => {
  const hs = window.location.hash
  // active.value = hs === '#/Active' || hs === '#/Completed' ? hs.slice(2) : 'All'
  const hsRes = hs === '#/Active' || hs === '#/Completed' ? hs.slice(2) : 'All'
  updateActive(hsRes)
}
initActive()
</script>
<template>
  <footer class="footer" v-if="list.length > 0">
    <!-- This should be `0 items left` by default -->
    <span class="todo-count"
      ><strong>{{ unCompleted.length }}</strong> item left</span
    >
    <!-- Remove this if you don't implement routing -->
    <ul class="filters">
      <li v-for="item in tabs" :key="item" @click="updateActive(item)">
        <a
          :class="{
            selected: item === active,
          }"
          :href="`#/${item}`"
          >{{ item }}</a
        >
      </li>
    </ul>
    <!-- Hidden if no completed items are left ↓ -->
    <button v-if="completed.length > 0" class="clear-completed" @click="clearCompleted">Clear completed</button>
  </footer>
</template>

切换功能完成

src/store/modules/main.ts

import { defineStore } from 'pinia'
import { ITodoItem } from '../../types/data'
import request from '../../utils/request'
import footerStore from './footer'

const useMainStore = defineStore('main', {
  state: () => {
    return {
      list: [] as ITodoItem[],
    }
  },
  actions: {
    async getList() {
      const { data } = await request.get<ITodoItem[]>('/')
      this.list = data
    },
    async deleteTodo(id: number) {
      await request.delete(`/${id}`)
      this.getList()
    },
    async updateTodo(id: number, key: string, value: string | boolean) {
      await request.patch(`/${id}`, {
        [key]: value,
      })
      this.getList()
    },
    async addTodo(name: string) {
      await await request.post('/', {
        name,
        done: false,
      })
      this.getList()
    },
    async updateAllDone(done: boolean) {
      const arrPromise = this.list.map((item) => {
        return request.patch(`/${item.id}`, {
          done,
        })
      })
      await Promise.all(arrPromise)
      this.getList()
    },
    // #2
    async clearCompleted() {
      const arrPromise = this.completed.map((item) => {
        return request.delete(`/${item.id}`)
      })
      await Promise.all(arrPromise)
      this.getList()
    },
  },
  getters: {
    mainRadioStatus(): boolean {
      return this.list.every((item) => item.done)
    },
    // #1
    completed(): ITodoItem[] {
      return this.list.filter((item) => item.done)
    },
    unCompleted(): ITodoItem[] {
      return this.list.filter((item) => !item.done)
    },
    renderList(): ITodoItem[] {
      const footer = footerStore()
      if (footer.active === 'Active') {
        return this.list.filter((item) => !item.done)
      } else if (footer.active === 'Completed') {
        return this.list.filter((item) => item.done)
      }
      return this.list
    },
  },
})

export default useMainStore

src/components/TodoMain.vue

<script setup lang="ts">
import { storeToRefs } from 'pinia'
import useStore from '../store'
import TodoItem from './TodoItem.vue'
const { main } = useStore()
const { getList, updateAllDone } = main
const { mainRadioStatus, renderList } = storeToRefs(main)
// #4
const handleChangeAll = (done: boolean) => updateAllDone(done)
getList()
</script>
<template>
  <section class="main">
    <!-- #2 -->
    <input id="toggle-all" class="toggle-all" type="checkbox" :checked="mainRadioStatus" @change="handleChangeAll(!mainRadioStatus)" />
    <label for="toggle-all">Mark all as complete</label>
    <ul class="todo-list">
      <!-- These are here just to show the structure of the list items -->
      <!-- List items should get the class `editing` when editing and `completed` when marked as completed -->
      <TodoItem v-for="item in renderList" :item="item" />
    </ul>
  </section>
</template>
木兰宽松许可证, 第2版 木兰宽松许可证, 第2版 2020年1月 http://license.coscl.org.cn/MulanPSL2 您对“软件”的复制、使用、修改及分发受木兰宽松许可证,第2版(“本许可证”)的如下条款的约束: 0. 定义 “软件”是指由“贡献”构成的许可在“本许可证”下的程序和相关文档的集合。 “贡献”是指由任一“贡献者”许可在“本许可证”下的受版权法保护的作品。 “贡献者”是指将受版权法保护的作品许可在“本许可证”下的自然人或“法人实体”。 “法人实体”是指提交贡献的机构及其“关联实体”。 “关联实体”是指,对“本许可证”下的行为方而言,控制、受控制或与其共同受控制的机构,此处的控制是指有受控方或共同受控方至少50%直接或间接的投票权、资金或其他有价证券。 1. 授予版权许可 每个“贡献者”根据“本许可证”授予您永久性的、全球性的、免费的、非独占的、不可撤销的版权许可,您可以复制、使用、修改、分发其“贡献”,不论修改与否。 2. 授予专利许可 每个“贡献者”根据“本许可证”授予您永久性的、全球性的、免费的、非独占的、不可撤销的(根据本条规定撤销除外)专利许可,供您制造、委托制造、使用、许诺销售、销售、进口其“贡献”或以其他方式转移其“贡献”。前述专利许可仅限于“贡献者”现在或将来拥有或控制的其“贡献”本身或其“贡献”与许可“贡献”时的“软件”结合而将必然会侵犯的专利权利要求,不包括对“贡献”的修改或包含“贡献”的其他结合。如果您或您的“关联实体”直接或间接地,就“软件”或其中的“贡献”对任何人发起专利侵权诉讼(包括反诉或交叉诉讼)或其他专利维权行动,指控其侵犯专利权,则“本许可证”授予您对“软件”的专利许可自您提起诉讼或发起维权行动之日终止。 3. 无商标许可 “本许可证”不提供对“贡献者”的商品名称、商标、服务标志或产品名称的商标许可,但您为满足第4条规定的声明义务而必须使用除外。 4. 分发限制 您可以在任何媒介中将“软件”以源程序形式或可执行形式重新分发,不论修改与否,但您必须向接收者提供“本许可证”的副本,并保留“软件”中的版权、商标、专利及免责声明。 5. 免责声明与责任限制 “软件”及其中的“贡献”在提供时不带任何明示或默示的担保。在任何情况下,“贡献者”或版权所有者不对任何人因使用“软件”或其中的“贡献”而引发的任何直接或间接损失承担责任,不论因何种原因导致或者基于何种法律理论,即使其曾被建议有此种损失的可能性。 6. 语言 “本许可证”以中英文双语表述,中英文版本具有同等法律效力。如果中英文版本存在任何冲突不一致,以中文版为准。 条款结束 如何将木兰宽松许可证,第2版,应用到您的软件 如果您希望将木兰宽松许可证,第2版,应用到您的新软件,为了方便接收者查阅,建议您完成如下三步: 1, 请您补充如下声明中的空白,包括软件名、软件的首次发表年份以及您作为版权人的名字; 2, 请您在软件包的一级目录下创建以“LICENSE”为名的文件,将整个许可证文本放入该文件中; 3, 请将如下声明文本放入每个源文件的头部注释中。 Copyright (c) [Year] [name of copyright holder] [Software Name] is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details. Mulan Permissive Software License,Version 2 Mulan Permissive Software License,Version 2 (Mulan PSL v2) January 2020 http://license.coscl.org.cn/MulanPSL2 Your reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v2 (this License) with the following terms and conditions: 0. Definition Software means the program and related documents which are licensed under this License and comprise all Contribution(s). Contribution means the copyrightable work licensed by a particular Contributor under this License. Contributor means the Individual or Legal Entity who licenses its copyrightable work under this License. Legal Entity means the entity making a Contribution and all its Affiliates. Affiliates means entities that control, are controlled by, or are under common control with the acting entity under this License, ‘control’ means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity. 1. Grant of Copyright License Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not. 2. Grant of Patent License Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution, where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed. The patent license shall not apply to any modification of the Contribution, and any other combination which includes the Contribution. If you or your Affiliates directly or indirectly institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken. 3. No Trademark License No trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in Section 4. 4. Distribution Restriction You may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software. 5. Disclaimer of Warranty and Limitation of Liability THE SOFTWARE AND CONTRIBUTION IN IT ARE PROVIDED WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. IN NO EVENT SHALL ANY CONTRIBUTOR OR COPYRIGHT HOLDER BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO ANY DIRECT, OR INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING FROM YOUR USE OR INABILITY TO USE THE SOFTWARE OR THE CONTRIBUTION IN IT, NO MATTER HOW IT’S CAUSED OR BASED ON WHICH LEGAL THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 6. Language THIS LICENSE IS WRITTEN IN BOTH CHINESE AND ENGLISH, AND THE CHINESE VERSION AND ENGLISH VERSION SHALL HAVE THE SAME LEGAL EFFECT. IN THE CASE OF DIVERGENCE BETWEEN THE CHINESE AND ENGLISH VERSIONS, THE CHINESE VERSION SHALL PREVAIL. END OF THE TERMS AND CONDITIONS How to Apply the Mulan Permissive Software License,Version 2 (Mulan PSL v2) to Your Software To apply the Mulan PSL v2 to your work, for easy identification by recipients, you are suggested to complete following three steps: i Fill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner; ii Create a file named “LICENSE” which contains the whole context of this License in the first directory of your software package; iii Attach the statement to the appropriate annotated syntax at the beginning of each source file. Copyright (c) [Year] [name of copyright holder] [Software Name] is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details.

简介

Vue3 + TS + Pinia 使用流程。 展开 收起
CSS 等 4 种语言
MulanPSL-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ifercarly/v3tspinia.git
git@gitee.com:ifercarly/v3tspinia.git
ifercarly
v3tspinia
v3tspinia
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891