Newer
Older
taehui / taehui-fe / src / avatar / usePostAvatar.ts
@Taehui Taehui on 13 Mar 1 KB v1.0.0
import { useMutation } from "@tanstack/react-query";
import { useTranslation } from "react-i18next";
import { toast } from "react-toastify";
import { getMillis } from "taehui-ts/date";

import { wwwAXIOS } from "src/Www";
import usePostGetTotem from "src/avatar/usePostGetTotem";

export default function usePostAvatar() {
  const { t } = useTranslation();

  const { mutateAsync: postGetTotem } = usePostGetTotem();

  return useMutation({
    mutationFn: async ({
      avatarID,
      avatarName,
      avatarCipher,
      fax,
    }: {
      avatarID: string;
      avatarName: string;
      avatarCipher: string;
      fax: string;
    }) => {
      await wwwAXIOS.post(
        "/avatar",
        {
          avatarID,
          avatarCipher,
          avatarName,
          fax,
        },
        {
          headers: {
            millis: getMillis(),
          },
        },
      );
    },
    onSuccess: async (data, { avatarID, avatarCipher }) => {
      await postGetTotem({ avatarID, avatarCipher });
    },
    onError: () => {
      toast.error(t("alreadyAvatarID"));
    },
  });
}