1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import { createApi } from '@reduxjs/toolkit/query/react'
- import { graphqlRequestBaseQuery } from "@rtk-query/graphql-request-base-query"
- import { gql } from "graphql-request";
- import { createFullQuery } from '../gql';
- //import { prepareHeaders } from "./index";
- export const prepareHeaders = (headers, { getState }) => {
- const token = getState().auth.token;
- if (token) {
- headers.set("Authorization", `Bearer ${token}`);
- }
- return headers;
- }
- const getGoodsSearchParams = (searchStr, queryExt) => (
- {
- searchStr: searchStr,
- searchFieldNames: ["name", "description"],
- queryExt
- });
- export const goodsApi = createApi({
- reducerPath: 'goods',
- baseQuery: graphqlRequestBaseQuery({
- url: '/graphql',
- prepareHeaders
- }),
- endpoints: (builder) => ({
- getGoods: builder.query({
- query: ({ fromPage, pageSize, searchStr = '', queryExt = {} }) => {
- let params = createFullQuery(
- getGoodsSearchParams(searchStr, queryExt),
- { fromPage, pageSize });
- return {
- document: gql`
- query GoodFind($q: String) {
- GoodFind(query: $q) {
- _id name price description
- images { _id url }
- }
- }
- `,
- variables: params
- }
- },
- }),
- getGoodsCount: builder.query({
- query: ({ searchStr = '', queryExt = {} }) => {
- let params = createFullQuery(
- getGoodsSearchParams(searchStr, queryExt));
- return {
- document: gql`
- query GoodsCount($q: String) { GoodCount(query: $q) }
- `,
- variables: params
- }
- },
- providesTags: (result, error, id) => ([{ type: 'GoodsCount', id }]),
- }),
- getGoodById: builder.query({
- query: (_id) => {
- let params = createFullQuery({ searchStr: _id, searchFieldNames: ["_id"] });
- return {
- document: gql`
- query GoodFindOne($q: String) {
- GoodFindOne(query: $q) {
- _id name price description
- images { _id url }
- }
- }
- `,
- variables: params
- }
- },
- }),
- saveGood: builder.mutation({
- query: ({ good }) => ({
- document: gql`
- mutation GoodUpsert($good: GoodInput) {
- GoodUpsert(good: $good) {
- _id
- }
- }
- `,
- variables: { good: { ...good, images: good?.images.map(img => ({ _id: img._id })) ?? [] } }
- })
- }),
- }),
- })
- export const { useGetGoodsQuery, useGetGoodsCountQuery, useGetGoodByIdQuery, useSaveGoodMutation } = goodsApi;
|