TypeScript在Vuex4中使用TS实战分享

简介

虽然TypeScript知识点学了很多,但是在实际项目中很多小伙伴还并不知道怎么用,今天笔者结合Vuex4来使用TypeScript实战一下。

本文分vuex4类型 Api分析和vuex4实战两部分讲述。

首先我们来分析下 vuex4 的类型 Api

createStore

我们可以先看看createStore方法,发现它需要传递一个泛型,并且这个泛型会应用到state上。

export function createStore(options: StoreOptions): Store;
export interface StoreOptions {
  state?: S | (() => S);
  getters?: GetterTree;
  actions?: ActionTree;
  mutations?: MutationTree;
  modules?: ModuleTree;
  plugins?: Plugin[];
  strict?: boolean;
  devtools?: boolean;
}

GetterTree

我们可以看到getters的类型GetterTree接收了两个泛型。

export interface GetterTree {
  [key: string]: Getter;
}

这两个泛型分别应用在本模块state上和根state上。

export type Getter = (state: S, getters: any, rootState: R, rootGetters: any) => any;

MutationTree

我们可以看到mutations的类型MutationTree只接收了一个泛型。

export interface MutationTree {
  [key: string]: Mutation;
}

并且这个泛型只应用到本模块state上。

export type Mutation = (state: S, payload?: any) => any;

ActionTree

我们可以看到actions的类型ActionTree接收了两个泛型。

export interface ActionTree {
  [key: string]: Action;
}

并且也将这两个泛型分别应用在本模块state上和根state上。我们还可以看到,由于action支持对象和方法形式的写法,所以Action的类型是ActionHandlerActionObject的联合类型。

export type Action = ActionHandler | ActionObject;
export type ActionHandler = (this: Store, injectee: ActionContext, payload?: any) => any;
export interface ActionContext {
  dispatch: Dispatch;
  commit: Commit;
  state: S;
  getters: any;
  rootState: R;
  rootGetters: any;
}

ModuleTree

我们可以看到modules的类型ModuleTree只接收了一个泛型。并且将这个泛型传递到了Module里面。

export interface ModuleTree {
  [key: string]: Module;
}

我们可以发现,module的类型和createStoreStoreOptions是非常像的。

因为模块本身也有自己的state、getters、actions、mutations、modules

export interface Module {
  namespaced?: boolean;
  state?: S | (() => S);
  getters?: GetterTree;
  actions?: ActionTree;
  mutations?: MutationTree;
  modules?: ModuleTree;
}

了解了vuex4类型 Api接下来我们就进入到实战环节了。

实战

首先我们需要使用vuecli创建一个TypeScript的项目。

整体目录结构

笔者store整体目录结构如下:

TypeScript在Vuex4中使用TS实战分享_第1张图片

  • index.ts 和以前的还是一样,用来创建根store并导出根store
  • interfaces.ts 用来存放store的类型。
  • modules.ts 和以前的还是一样,用来存放模块。

首先定义根state的类型

// interfaces.ts
type Info = { address: string };
export interface IRootState {
  name: string;
  age: number;
  info: Info;
}

在创建store的时候将根state的类型传递进去。

// index.ts
import { createStore, Store } from "vuex";
import { InjectionKey } from "vue";
import { IRootState } from "./interfaces";

export default createStore({
  state: {
    name: "root",
    age: 0,
    info: { address: "" },
  },
  getters: {
    getRootName(state) {
      return state.name;
    },
    getRootInfo(state) {
      return state.info;
    },
  },
  mutations: {},
  actions: {},
});

并且需要导出key

// index.ts
export const key: InjectionKey> = Symbol();

在Vue实例使用store的时候将key一并传入。

// main.ts
import store, { key } from "@/store";

createApp(App).use(store, key).mount("#app");

在vue组件使用

这样我们在vue组件就能享受到TypeScript的优势啦。

注意这里的useStore(),也需要我们把key传递进去。

import { useStore } from "vuex";
import { key } from "@/store";
setup() {
  const store = useStore(key);

  return {
    rootName: store.state.name,
  };
},

可以看到,我们使用state的时候就会被自动提示啦。

TypeScript在Vuex4中使用TS实战分享_第2张图片

并且当你使用不存在的属性时会在我们编写代码的时候就会直接报错提示。

TypeScript在Vuex4中使用TS实战分享_第3张图片

相较js,大大提高了开发效率不说,还减少了bug

自定义useStore()方法

如果觉得每次useStore(),还需要我们把key传递进去麻烦的话,我们可以创建自己的useStore()方法。

// index.ts
import { useStore as baseUseStore } from "vuex";

export function useStore() {
  return baseUseStore(key);
}

这样我们在vue组件使用store的时候引入自己的useStore方法就可以啦。

import { useStore } from "@/store";

setup() {
  const store = useStore();

  return {
    rootName: store.state.name,
  };
},

我们知道,在实际项目中只创建一个根store是远远不够的。一般我们都会使用modules。下面笔者介绍下怎么使用modules

modules的使用

模块的类型是Module,并且需要传递本模块state类型和根state类型。

本模块state类型需要传递进去我们可以理解,但是为什么要传递根state类型呢?

因为我们的gettersactions参数里面是有rootState的,所以需要引入根state类型。

// modeuls/test1.ts
import { Module } from "vuex";
import { IRootState, ITest1State } from "../interfaces";
const Test1: Module = {
  state: {
    name: "test1",
    count: 0,
  },
  getters: {
    getTest1Name(state) {
      return state.name;
    },
    getAllName(state, rootState) {
      return state.name + rootState.age;
    },
  },
};
export default Test1;

创建好模块后我们需要在根store里面引入进去,引入方式和以前还是一样。

并且我们需要把模块的state类型一并传递到InjectionKey中和根state类型形成交叉类型,并重新生成key

// index.ts
import { createStore, Store, useStore as baseUseStore } from "vuex";
import { InjectionKey } from "vue";
import { IRootState, ITest1State } from "./interfaces";
import test1 from "./modeuls/test1";
export default createStore({
  // ...
  modules: {
    test1: test1,
    // ...多个模块,类似
  },
});
// 定义模块类型
type Modules = {
  test1: ITest1State;
  // ...多个模块,类似
};

// 使用交叉类型形成新的key
export const key: InjectionKey> = Symbol();

我们来看看在vue组件中的使用效果。

我们可以发现,当我们使用state的时候,test1模块也会被提示出来

TypeScript在Vuex4中使用TS实战分享_第4张图片

并且它里面的属性也会被直接提示出来

好了,实战环节就讲述的差不多了,小伙伴们时候都懂了呢?

总结

虽然vuex4TypeScript有了很好的支持,但是笔者觉得还是不够的。

比如 使用麻烦,每次需要定义一个key,还需要把可以传递到vueuse方法里面,并且在使用useStore的时候也还需要将key传递进去,无疑增加了开发成本。

其次,这样的配置并不会对getters、mutations、actions生效,只会对state有提示。

pinia比起来,整体使用体验还是会差很多。如果想学习pinia,并想了解pinia和vuex区别的话可以看看TypeScript Pinia实战分享(Vuex和Pinia对比梳理总结)一文。

到此这篇关于TypeScript在Vuex4中使用TS实战分享的文章就介绍到这了,更多相关TypeScript Vuex4内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(TypeScript在Vuex4中使用TS实战分享)