2023-02-06 13:27:28 -05:00
|
|
|
import React from 'react';
|
2023-03-28 20:36:21 +08:00
|
|
|
import { useRecoilValue } from 'recoil';
|
2023-03-12 00:32:03 +08:00
|
|
|
|
2023-03-28 20:36:21 +08:00
|
|
|
import store from '~/store';
|
2023-03-12 00:32:03 +08:00
|
|
|
|
2023-03-28 20:36:21 +08:00
|
|
|
export default function MobileNav({ setNavVisible }) {
|
|
|
|
|
const conversation = useRecoilValue(store.conversation);
|
|
|
|
|
const { newConversation } = store.useConversation();
|
|
|
|
|
const { title = 'New Chat' } = conversation || {};
|
2023-03-12 00:32:03 +08:00
|
|
|
|
2023-02-06 13:27:28 -05:00
|
|
|
return (
|
2023-05-18 11:09:31 -07:00
|
|
|
<div className="fixed left-0 right-0 top-0 z-10 flex items-center border-b border-white/20 bg-gray-800 pl-1 pt-1 text-gray-200 sm:pl-3 md:hidden">
|
2023-02-06 13:27:28 -05:00
|
|
|
<button
|
|
|
|
|
type="button"
|
2023-07-15 10:43:15 -04:00
|
|
|
className="-ml-0.5 -mt-0.5 inline-flex h-10 w-10 items-center justify-center rounded-md hover:text-gray-900 focus:outline-none focus:ring-0 focus:ring-inset focus:ring-white dark:hover:text-white"
|
2023-05-18 11:44:07 -07:00
|
|
|
onClick={() => setNavVisible((prev) => !prev)}
|
2023-02-06 13:27:28 -05:00
|
|
|
>
|
|
|
|
|
<span className="sr-only">Open sidebar</span>
|
|
|
|
|
<svg
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
fill="none"
|
|
|
|
|
strokeWidth="1.5"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
|
|
|
|
className="h-6 w-6"
|
|
|
|
|
height="1em"
|
|
|
|
|
width="1em"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
>
|
2023-05-18 11:09:31 -07:00
|
|
|
<line x1="3" y1="12" x2="21" y2="12" />
|
|
|
|
|
<line x1="3" y1="6" x2="21" y2="6" />
|
|
|
|
|
<line x1="3" y1="18" x2="21" y2="18" />
|
2023-02-06 13:27:28 -05:00
|
|
|
</svg>
|
|
|
|
|
</button>
|
2023-03-15 04:05:14 +08:00
|
|
|
<h1 className="flex-1 text-center text-base font-normal">{title || 'New Chat'}</h1>
|
2023-05-18 11:09:31 -07:00
|
|
|
<button type="button" className="px-3" onClick={() => newConversation()}>
|
2023-02-06 13:27:28 -05:00
|
|
|
<svg
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
fill="none"
|
|
|
|
|
strokeWidth="1.5"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
|
|
|
|
className="h-6 w-6"
|
|
|
|
|
height="1em"
|
|
|
|
|
width="1em"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
>
|
2023-05-18 11:09:31 -07:00
|
|
|
<line x1="12" y1="5" x2="12" y2="19" />
|
|
|
|
|
<line x1="5" y1="12" x2="19" y2="12" />
|
2023-02-06 13:27:28 -05:00
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|