nice overall component done
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
export default function CreateTeam() {
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>this is the place to create a team</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
+58
-11
@@ -7,18 +7,24 @@ import { GetServerSidePropsContext } from "next"
|
|||||||
import nookies from 'nookies'
|
import nookies from 'nookies'
|
||||||
import firebaseAdmin from 'firebase-admin'
|
import firebaseAdmin from 'firebase-admin'
|
||||||
import unfetch from 'isomorphic-unfetch'
|
import unfetch from 'isomorphic-unfetch'
|
||||||
|
import {
|
||||||
|
FaPeopleCarry,
|
||||||
|
FaArrowRight,
|
||||||
|
FaBullhorn
|
||||||
|
} from "react-icons/fa";
|
||||||
|
import BackgroundLayout from "../../components/Layouts/BackgroundLayout"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* figure out where to take the user based on everything
|
* figure out where to take the user based on everything
|
||||||
*/
|
*/
|
||||||
function RouteHandler({ user }) {
|
function RouteHandler() {
|
||||||
const { currUser } = useAuth()
|
const { currUser } = useAuth()
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const userService: UserService = new UserService()
|
const userService: UserService = new UserService()
|
||||||
const [loading, setLoading] = useState<Boolean>(false)
|
const [loading, setLoading] = useState<Boolean>(true)
|
||||||
|
const [user, setUser] = useState<User | null>(null)
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
||||||
(async function() {
|
(async function() {
|
||||||
try {
|
try {
|
||||||
// if not authenticated, take user to the login
|
// if not authenticated, take user to the login
|
||||||
@@ -28,31 +34,72 @@ function RouteHandler({ user }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// get user
|
// get user
|
||||||
const user: User | null = await userService.getUser(currUser.uid)
|
const returnedUser: User | null = await userService.getUser(currUser.uid)
|
||||||
console.log(user)
|
console.log(returnedUser)
|
||||||
// if user has no profile, then go to create profile
|
// if user has no profile, then go to create profile
|
||||||
if (!user || !user.firstName || !user.lastName || !user.nickName) {
|
if (!returnedUser || !returnedUser.firstName || !returnedUser.lastName || !returnedUser.nickName) {
|
||||||
console.log('no profile for the user, routing him/her there')
|
console.log('no profile for the user, routing him/her there')
|
||||||
router.push('/teams/profile')
|
router.push('/teams/profile')
|
||||||
}
|
}
|
||||||
|
setUser(returnedUser)
|
||||||
// check if user is in a team go to the team dashboard
|
|
||||||
|
|
||||||
|
|
||||||
|
// check if user is in a team go to the team dashboard
|
||||||
|
|
||||||
} catch(error) {
|
} catch(error) {
|
||||||
console.log(error)
|
console.log(error)
|
||||||
router.push('/teams/login')
|
router.push('/teams/login')
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
setLoading(false)
|
||||||
}, [currUser])
|
}, [currUser])
|
||||||
|
|
||||||
if (loading) {
|
if (loading || !user) {
|
||||||
return <div>figuring out where you should go</div>
|
return <div>figuring out where you should go</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// not in a team yet, and have not created a team yet
|
||||||
return (
|
return (
|
||||||
<div className="text-black">this is the route handler page</div>
|
<div className="container mx-auto flex flex-col max-w-md m-10 bg-white p-10 rounded-lg shadow-md space-y-5">
|
||||||
|
{/* header */}
|
||||||
|
<div className="flex flex-row items-center justify-between">
|
||||||
|
<span className="flex flex-col justify-start">
|
||||||
|
<div className="text-lg">👋Hey, {user.firstName}</div>
|
||||||
|
<span className="text-gray-300 text-md">Let's get you started</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<button onClick={() => router.push('/teams/profile')}>
|
||||||
|
<img src={user ? user.avatarUrl : currUser.photoURL} alt="asdf" className="rounded-full w-12" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* create team hover thing */}
|
||||||
|
<button onClick={() => router.push('/teams/create')} className="group flex flex-row py-5 px-3 items-center border border-dashed rounded hover:shadow-lg transition duration-400">
|
||||||
|
<FaPeopleCarry className="text-5xl text-teal-500" />
|
||||||
|
|
||||||
|
<span className="flex flex-col items-start ml-2 mr-10">
|
||||||
|
<span className="text-gray-500">Create a Team</span>
|
||||||
|
<span className="text-gray-300 text-sm text-left">Add members, and get started immediately.</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<button className='ml-auto bg-gray-500 bg-opacity-25 p-2 rounded group-hover:bg-opacity-40 group-hover:bg-teal-500'>
|
||||||
|
<FaArrowRight className='text-sm text-white' />
|
||||||
|
</button>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{/* tell your manager to add your email */}
|
||||||
|
<button className="group flex flex-row py-5 px-3 items-center border border-dashed rounded">
|
||||||
|
<FaBullhorn className="text-5xl text-orange-300" />
|
||||||
|
|
||||||
|
<span className="flex flex-col items-start ml-2 mr-10">
|
||||||
|
<span className="text-gray-500">Remind Your Manager</span>
|
||||||
|
<span className="text-gray-300 text-sm text-left">Your account email is {user.emailAddress}</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<span className="text-gray-300 ml-auto text-md mt-10">Learn more about <button onClick={() => router.push('/teams/landing')} className="underline font-satisfy text-xl text-teal-500 decoration-teal-500">nirvana</button></span>
|
||||||
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -44,7 +44,9 @@ export default function Profile() {
|
|||||||
})();
|
})();
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
async function handleSubmit() {
|
async function handleSubmit(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
if (!firstName) {
|
if (!firstName) {
|
||||||
setError('Must input first name')
|
setError('Must input first name')
|
||||||
return
|
return
|
||||||
@@ -133,7 +135,7 @@ export default function Profile() {
|
|||||||
{
|
{
|
||||||
user && user.nickName ?
|
user && user.nickName ?
|
||||||
<>
|
<>
|
||||||
<button className="bg-gray-100 py-2 px-5 rounded text-gray-400">Cancel</button>
|
<button onClick={() => router.push('/teams') } className="bg-gray-100 py-2 px-5 rounded text-gray-400">Cancel</button>
|
||||||
<button type="submit" className='text-sm text-white font-semibold py-2 px-5 bg-teal-500 rounded'>
|
<button type="submit" className='text-sm text-white font-semibold py-2 px-5 bg-teal-500 rounded'>
|
||||||
Save
|
Save
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user