Crochet React Query personnalisé

VérifiéSûr

Génère un hook TanStack Query personnalisé pour le chargement de données, incluant requêtes et mutations. Il lit le contrôleur backend pour vérifier les URL d'endpoint et les types de réponse, puis produit un hook typé utilisant l'instance Axios du projet. Utile lors de la création de hooks d'intégration API qui doivent respecter les conventions de l'équipe et éviter les données mises en cache obsolètes.

Spar Skills Guide Bot
DeveloppementIntermédiaire
16002/06/2026
Claude Code
#react-query#data-fetching#custom-hook#typescript#tanstack-query

Recommandé pour

Notre avis

Génère un hook React Query personnalisé pour la récupération de données avec typage strict.

Points forts

  • Typage fort en accord avec les DTOs backend
  • Gestion automatique du cache avec invalidation après mutation
  • Suivi des conventions de nommage et structure de projet

Limites

  • Nécessite une configuration Axios existante et des endpoints backend définis
  • Ne gère pas les cas complexes comme les requêtes parallèles ou la pagination avancée
Quand l'utiliser

Utilisez cette compétence lorsque vous devez créer un hook React Query pour interagir avec une API REST existante dans une application React.

Quand l'éviter

Évitez cette compétence si vous utilisez une autre bibliothèque de gestion d'état (Redux, Zustand) ou si l'API n'est pas encore définie.

Analyse de sécurité

Sûr
Score qualité90/100

The skill only instructs an AI to read files and generate React/TypeScript code for data fetching using TanStack Query and Axios. There are no shell commands, no data exfiltration, no runtime evaluation, and no destructive actions. The file reads are within the project structure and do not introduce external risks.

Aucun point d'attention détecté

Exemples

Create a GET query hook for tasks
Generate a React Query hook for fetching a task by ID: GET /tasks/:id with response type Task.
Create a mutation hook to create a project
Generate a React Query mutation hook for creating a project via POST /projects. The hook should invalidate the 'projects' query on success.
Create a query hook for user list with pagination
Generate a React Query hook for fetching a paginated list of users from GET /users?page=1&limit=20. The hook should accept page and limit parameters and return data with total count.

name: react-query-hook description: Generate a custom React Query hook for data fetching with proper typing. Use when creating API integration hooks.

Generate React Query Hook

Create a custom hook using TanStack Query for data fetching.

Important: Follow the Learning Mode guidelines in _templates/learning-mode.md

Arguments

  • $ARGUMENTS - Hook name or API endpoint (e.g., "useTasks", "GET /projects/:id")

Pre-flight (BAT BUOC)

Truoc khi tao hook, DOC:

  1. apps/web/src/services/api.ts — confirm Axios instance config
  2. Backend controller tuong ung — confirm endpoint URL + response type
  3. .context/research/PITFALLS.md > React section — TanStack Query cache stale
  4. .context/research/CONVENTIONS.md > API Response Format

Instructions

Step 1: Clarify (Query vs Mutation, parameters)

Step 2: Read backend code (KHONG SKIP) — confirm endpoint URL + data shape

Step 3: Create the hook

Query (GET):

import { useQuery } from '@tanstack/react-query';
import { api } from '@/services/api';

export const use[Name] = (id: string) => {
  return useQuery({
    queryKey: ['[name]', id],
    queryFn: async () => {
      const { data } = await api.get<[Type]>(`/[endpoint]/${id}`);
      return data;
    },
    enabled: !!id,
  });
};

Mutation (POST/PATCH/DELETE):

import { useMutation, useQueryClient } from '@tanstack/react-query';
import { api } from '@/services/api';

export const use[Name] = () => {
  const queryClient = useQueryClient();
  return useMutation({
    mutationFn: async (input: [Type]) => {
      const { data } = await api.post('/[endpoint]', input);
      return data;
    },
    onSuccess: () => {
      queryClient.invalidateQueries({ queryKey: ['[related]'] });
    },
  });
};

Code Standards

  1. Naming: use[Action][Resource]useGetTasks, useCreateProject
  2. Query Keys: Array ['resource', id, params]
  3. API client: LUON dung @/services/api — KHONG tao Axios instance moi
  4. Types: Match backend DTOs — KHONG tu bia type
  5. Response: Object truc tiep (khong wrapper), list { data, total, page, limit }

Pitfalls

  • enabled: !!dependency cho dependent queries
  • invalidateQueries() sau mutation — tranh stale cache
  • Destructure dung: const { data } = await api.get(...) — data la response body

After Completion

Remind user: "Test hook trong component" + "Update PROGRESS.md!"

Skills similaires