vorteil/direktiv

View on GitHub
ui/src/api/enterprise/tokens/mutate/delete.ts

Summary

Maintainability
B
6 hrs
Test Coverage
import {
  TokenDeletedSchema,
  TokenListSchemaType,
  TokenSchemaType,
} from "../schema";

import { apiFactory } from "~/api/apiFactory";
import { tokenKeys } from "..";
import { useApiKey } from "~/util/store/apiKey";
import useMutationWithPermissions from "~/api/useMutationWithPermissions";
import { useNamespace } from "~/util/store/namespace";
import { useQueryClient } from "@tanstack/react-query";
import { useToast } from "~/design/Toast";
import { useTranslation } from "react-i18next";

const updateCache = (
  oldData: TokenListSchemaType | undefined,
  variables: Parameters<ReturnType<typeof useDeleteToken>["mutate"]>[0]
) => {
  if (!oldData) return undefined;
  const remainingTokens = oldData.tokens.filter(
    (token) => token.id !== variables.id
  );
  return {
    ...oldData,
    tokens: remainingTokens,
  };
};

const deleteToken = apiFactory({
  url: ({ namespace, tokenId }: { namespace: string; tokenId: string }) =>
    `/api/v2/namespaces/${namespace}/tokens/${tokenId}`,
  method: "DELETE",
  schema: TokenDeletedSchema,
});

export const useDeleteToken = ({
  onSuccess,
}: { onSuccess?: () => void } = {}) => {
  const apiKey = useApiKey();
  const namespace = useNamespace();
  const { toast } = useToast();
  const queryClient = useQueryClient();
  const { t } = useTranslation();

  if (!namespace) {
    throw new Error("namespace is undefined");
  }

  return useMutationWithPermissions({
    mutationFn: (token: TokenSchemaType) =>
      deleteToken({
        apiKey: apiKey ?? undefined,
        urlParams: {
          tokenId: token.id,
          namespace,
        },
      }),
    onSuccess(_, variables) {
      queryClient.setQueryData<TokenListSchemaType>(
        tokenKeys.tokenList(namespace, {
          apiKey: apiKey ?? undefined,
        }),
        (oldData) => updateCache(oldData, variables)
      );
      toast({
        title: t("api.tokens.mutate.deleteToken.success.title"),
        description: t("api.tokens.mutate.deleteToken.success.description"),
        variant: "success",
      });
      onSuccess?.();
    },
    onError: () => {
      toast({
        title: t("api.generic.error"),
        description: t("api.tokens.mutate.deleteToken.error.description"),
        variant: "error",
      });
    },
  });
};