goodsReducer.js 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. import { createApi } from '@reduxjs/toolkit/query/react'
  2. import { graphqlRequestBaseQuery } from "@rtk-query/graphql-request-base-query"
  3. import { gql } from "graphql-request";
  4. import { createFullQuery } from '../gql';
  5. //import { prepareHeaders } from "./index";
  6. export const prepareHeaders = (headers, { getState }) => {
  7. const token = getState().auth.token;
  8. if (token) {
  9. headers.set("Authorization", `Bearer ${token}`);
  10. }
  11. return headers;
  12. }
  13. const getGoodsSearchParams = (searchStr, queryExt) => (
  14. {
  15. searchStr: searchStr,
  16. searchFieldNames: ["name", "description"],
  17. queryExt
  18. });
  19. export const goodsApi = createApi({
  20. reducerPath: 'goods',
  21. baseQuery: graphqlRequestBaseQuery({
  22. url: '/graphql',
  23. prepareHeaders
  24. }),
  25. endpoints: (builder) => ({
  26. getGoods: builder.query({
  27. query: ({ fromPage, pageSize, searchStr = '', queryExt = {} }) => {
  28. let params = createFullQuery(
  29. getGoodsSearchParams(searchStr, queryExt),
  30. { fromPage, pageSize });
  31. return {
  32. document: gql`
  33. query GoodFind($q: String) {
  34. GoodFind(query: $q) {
  35. _id name price description
  36. images { _id url }
  37. }
  38. }
  39. `,
  40. variables: params
  41. }
  42. },
  43. }),
  44. getGoodsCount: builder.query({
  45. query: ({ searchStr = '', queryExt = {} }) => {
  46. let params = createFullQuery(
  47. getGoodsSearchParams(searchStr, queryExt));
  48. return {
  49. document: gql`
  50. query GoodsCount($q: String) { GoodCount(query: $q) }
  51. `,
  52. variables: params
  53. }
  54. },
  55. providesTags: (result, error, id) => ([{ type: 'GoodsCount', id }]),
  56. }),
  57. getGoodById: builder.query({
  58. query: (_id) => {
  59. let params = createFullQuery({ searchStr: _id, searchFieldNames: ["_id"] });
  60. return {
  61. document: gql`
  62. query GoodFindOne($q: String) {
  63. GoodFindOne(query: $q) {
  64. _id name price description
  65. images { _id url }
  66. }
  67. }
  68. `,
  69. variables: params
  70. }
  71. },
  72. }),
  73. saveGood: builder.mutation({
  74. query: ({ good }) => ({
  75. document: gql`
  76. mutation GoodUpsert($good: GoodInput) {
  77. GoodUpsert(good: $good) {
  78. _id
  79. }
  80. }
  81. `,
  82. variables: { good: { ...good, images: good?.images.map(img => ({ _id: img._id })) ?? [] } }
  83. })
  84. }),
  85. }),
  86. })
  87. export const { useGetGoodsQuery, useGetGoodsCountQuery, useGetGoodByIdQuery, useSaveGoodMutation } = goodsApi;