104 lines
4.5 KiB
TypeScript
104 lines
4.5 KiB
TypeScript
import Head from 'next/head';
|
|
import Link from 'next/link';
|
|
import { useRef } from 'react';
|
|
import prisma from '../../lib/prisma';
|
|
import Shell from '../../components/Shell';
|
|
import SettingsShell from '../../components/Settings';
|
|
import { signIn, useSession, getSession } from 'next-auth/client';
|
|
|
|
export default function Settings(props) {
|
|
const [ session, loading ] = useSession();
|
|
const oldPasswordRef = useRef();
|
|
const newPasswordRef = useRef();
|
|
|
|
if (loading) {
|
|
return <p className="text-gray-400">Loading...</p>;
|
|
} else {
|
|
if (!session) {
|
|
window.location.href = "/auth/login";
|
|
}
|
|
}
|
|
|
|
async function changePasswordHandler(event) {
|
|
event.preventDefault();
|
|
|
|
const enteredOldPassword = oldPasswordRef.current.value;
|
|
const enteredNewPassword = newPasswordRef.current.value;
|
|
|
|
// TODO: Add validation
|
|
|
|
const response = await fetch('/api/auth/changepw', {
|
|
method: 'PATCH',
|
|
body: JSON.stringify({oldPassword: enteredOldPassword, newPassword: enteredNewPassword}),
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
});
|
|
|
|
console.log(response);
|
|
}
|
|
|
|
return(
|
|
<Shell heading="Password">
|
|
<Head>
|
|
<title>Change Password | Calendso</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
<SettingsShell>
|
|
<form className="divide-y divide-gray-200 lg:col-span-9" onSubmit={changePasswordHandler}>
|
|
<div className="py-6 px-4 sm:p-6 lg:pb-8">
|
|
<div>
|
|
<h2 className="text-lg leading-6 font-medium text-gray-900">Change Password</h2>
|
|
<p className="mt-1 text-sm text-gray-500">
|
|
Change the password for your Calendso account.
|
|
</p>
|
|
</div>
|
|
|
|
<div className="mt-6 flex">
|
|
<div className="w-1/2 mr-2">
|
|
<label htmlFor="current_password" className="block text-sm font-medium text-gray-700">Current Password</label>
|
|
<div className="mt-1">
|
|
<input ref={oldPasswordRef} type="password" name="current_password" id="current_password" className="shadow-sm focus:ring-blue-500 focus:border-blue-500 block w-full sm:text-sm border-gray-300 rounded-md" placeholder="Your old password" />
|
|
</div>
|
|
</div>
|
|
<div className="w-1/2 ml-2">
|
|
<label htmlFor="new_password" className="block text-sm font-medium text-gray-700">New Password</label>
|
|
<div className="mt-1">
|
|
<input ref={newPasswordRef} type="password" name="new_password" id="new_password" className="shadow-sm focus:ring-blue-500 focus:border-blue-500 block w-full sm:text-sm border-gray-300 rounded-md" placeholder="Your super secure new password" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr className="mt-8" />
|
|
<div className="py-4 flex justify-end">
|
|
<button type="button" className="bg-white border border-gray-300 rounded-md shadow-sm py-2 px-4 inline-flex justify-center text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
|
|
Cancel
|
|
</button>
|
|
<button type="submit" className="ml-2 bg-blue-600 border border-transparent rounded-md shadow-sm py-2 px-4 inline-flex justify-center text-sm font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
|
|
Save
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</SettingsShell>
|
|
</Shell>
|
|
);
|
|
}
|
|
|
|
export async function getServerSideProps(context) {
|
|
const session = await getSession(context);
|
|
|
|
const user = await prisma.user.findFirst({
|
|
where: {
|
|
email: session.user.email,
|
|
},
|
|
select: {
|
|
id: true,
|
|
username: true,
|
|
name: true
|
|
}
|
|
});
|
|
|
|
return {
|
|
props: {user}, // will be passed to the page component as props
|
|
}
|
|
} |