-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from seanmorley15/development
feat: Add profile page server load function and Svelte component
- Loading branch information
Showing
3 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { redirect } from '@sveltejs/kit'; | ||
import type { PageServerLoad, RequestEvent } from '../$types'; | ||
|
||
export const load: PageServerLoad = async (event: RequestEvent) => { | ||
if (!event.locals.user) { | ||
return redirect(302, '/login'); | ||
} | ||
return { | ||
user: event.locals.user | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<script lang="ts"> | ||
export let data; | ||
</script> | ||
|
||
<!-- | ||
// v0 by Vercel. | ||
// https://v0.dev/t/EtPnDdQYcbn | ||
--> | ||
|
||
<!-- | ||
// v0 by Vercel. | ||
// https://v0.dev/t/DYwTru570WN | ||
--> | ||
|
||
{#if data.user.profile_pic} | ||
<div class="avatar flex items-center justify-center"> | ||
<div class="w-24 rounded"> | ||
<!-- svelte-ignore a11y-missing-attribute --> | ||
<img src={data.user.profile_pic} class="w-24 rounded-full" /> | ||
</div> | ||
</div> | ||
{/if} | ||
|
||
{#if data.user && data.user.first_name && data.user.last_name} | ||
<h1 class="text-center text-4xl font-bold"> | ||
{data.user.first_name}, {data.user.last_name} | ||
</h1> | ||
{/if} | ||
<p class="text-center text-lg mt-2">{data.user.username}</p> | ||
|
||
{#if data.user && data.user.date_joined} | ||
<p class="ml-1 text-lg text-center mt-4">Member Since</p> | ||
<div class="flex items-center justify-center text-center"> | ||
<iconify-icon icon="mdi:calendar" class="text-2xl"></iconify-icon> | ||
<p class="ml-1 text-xl">{new Date(data.user.date_joined).toLocaleDateString()}</p> | ||
</div> | ||
{/if} |