Header.tsx 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. 'use client'
  2. import { BsCaretDownFill } from "react-icons/bs";
  3. import { useSession, signIn, signOut } from "next-auth/react"
  4. import { createRef, useEffect, useState } from "react";
  5. import { trpc } from "@/lib/trpc";
  6. import Cookies from 'js-cookie';
  7. import { useAtomValue } from "jotai";
  8. import { instantDataAtom, stepsNodesAtom } from "../store";
  9. import { exportFlowToDocx } from "../export";
  10. import { BsCloudDownload } from "react-icons/bs";
  11. export default function Header() {
  12. const { data: session, status } = useSession()
  13. const logOut = async () => {
  14. const res = await fetch("https://beta.api.cocorobo.cn/api/logout", {
  15. method: "POST", credentials: 'include'
  16. });
  17. await signOut({ redirect: false })
  18. }
  19. return (
  20. <div className="navbar shrink-0 bg-base-100 shadow-xl rounded-box justify-center relative">
  21. {/* <div className="dropdown">
  22. <div tabIndex={0} role="button" className="btn btn-sm btn-wide btn-ghost">选择对话<BsCaretDownFill /></div>
  23. <ul tabIndex={0} className="dropdown-content menu bg-base-100 rounded-box z-[2] w-52 p-2 shadow">
  24. <li><a>Item 1</a></li>
  25. <li><a>Item 2</a></li>
  26. </ul>
  27. </div> */}
  28. <div className="absolute right-4 flex items-center">
  29. {status === 'authenticated'
  30. ? (
  31. <div className="flex gap-2 items-center">
  32. <p>Hi, </p>
  33. <div className="dropdown dropdown-bottom dropdown-end">
  34. <label tabIndex={0} className="btn btn-sm m-1">{session.user?.name}</label>
  35. <ul tabIndex={0} className="dropdown-content z-[1] menu p-2 shadow bg-base-100 rounded-box w-52">
  36. <li><a onClick={logOut}>退出登录</a></li>
  37. </ul>
  38. </div>
  39. </div>
  40. ) : null
  41. }
  42. </div>
  43. </div >
  44. )
  45. }