-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a05273
commit caf4ce1
Showing
19 changed files
with
135 additions
and
67 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 |
---|---|---|
@@ -1 +1,10 @@ | ||
<h2>Homepage</h2> | ||
<script lang="ts"> | ||
import NavigationBar from "$lib/components/custom/NavigationBar.svelte"; | ||
let user = { | ||
firstName: "Max", | ||
lastName: "Mustermann", | ||
}; | ||
</script> | ||
|
||
<NavigationBar {user} pageTitle="SnowballR" /> |
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 |
---|---|---|
@@ -1 +1,10 @@ | ||
<h2>Archived Projects</h2> | ||
<script lang="ts"> | ||
import NavigationBar from "$lib/components/custom/NavigationBar.svelte"; | ||
let user = { | ||
firstName: "Max", | ||
lastName: "Mustermann", | ||
}; | ||
</script> | ||
|
||
<NavigationBar {user} pageTitle="Archived Projects" backRef="/" /> |
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,10 @@ | ||
<script lang="ts"> | ||
import NavigationBar from "$lib/components/custom/NavigationBar.svelte"; | ||
let user = { | ||
firstName: "Max", | ||
lastName: "Mustermann", | ||
}; | ||
</script> | ||
|
||
<NavigationBar {user} pageTitle="Invitations" backRef="/" /> |
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<script lang="ts"> | ||
import type { PageData } from "./$types"; | ||
export let data: PageData; | ||
let { data } = $props(); | ||
</script> | ||
|
||
<h2>Paper {data.paperId} View</h2> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,18 @@ | ||
<script lang="ts"> | ||
import ProjectNavigationBar from "$lib/components/custom/ProjectNavigationBar.svelte"; | ||
let { data } = $props(); | ||
let user = { | ||
firstName: "Max", | ||
lastName: "Mustermann", | ||
}; | ||
let project = { | ||
id: data.projectId, | ||
name: `Project ${data.projectId}`, | ||
}; | ||
</script> | ||
|
||
<ProjectNavigationBar {user} {project} defaultTabValue="dashboard" /> | ||
|
||
<h3>Project {data.projectId} Dashboard</h3> |
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<script lang="ts"> | ||
import type { PageData } from "./$types"; | ||
export let data: PageData; | ||
let { data } = $props(); | ||
</script> | ||
|
||
<h3>Project {data.projectId} Paper {data.paperId} View</h3> |
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<script lang="ts"> | ||
import type { PageData } from "./$types"; | ||
export let data: PageData; | ||
let { data } = $props(); | ||
</script> | ||
|
||
<h3>Project {data.projectId} New Paper</h3> |
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 |
---|---|---|
@@ -1,7 +1,18 @@ | ||
<script lang="ts"> | ||
import type { PageData } from "./$types"; | ||
import ProjectNavigationBar from "$lib/components/custom/ProjectNavigationBar.svelte"; | ||
export let data: PageData; | ||
let { data } = $props(); | ||
let user = { | ||
firstName: "Max", | ||
lastName: "Mustermann", | ||
}; | ||
let project = { | ||
id: data.projectId, | ||
name: `Project ${data.projectId}`, | ||
}; | ||
</script> | ||
|
||
<ProjectNavigationBar {user} {project} defaultTabValue="papers" /> | ||
|
||
<h3>Project {data.projectId} Papers</h3> |
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 |
---|---|---|
@@ -1,7 +1,19 @@ | ||
<script lang="ts"> | ||
import ProjectNavigationBar from "$lib/components/custom/ProjectNavigationBar.svelte"; | ||
let { children, data } = $props(); | ||
let user = { | ||
firstName: "Max", | ||
lastName: "Mustermann", | ||
}; | ||
let project = { | ||
id: data.projectId, | ||
name: `Project ${data.projectId}`, | ||
}; | ||
</script> | ||
|
||
<h3>Project {data.projectId} Settings Layout</h3> | ||
<ProjectNavigationBar {user} {project} defaultTabValue="settings" /> | ||
|
||
<h3>Project {data.projectId} Settings</h3> | ||
|
||
{@render children()} |
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<script lang="ts"> | ||
import type { PageData } from "./$types"; | ||
export let data: PageData; | ||
let { data } = $props(); | ||
</script> | ||
|
||
<h4>Project {data.projectId} Settings - General</h4> |
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<script lang="ts"> | ||
import type { PageData } from "./$types"; | ||
export let data: PageData; | ||
let { data } = $props(); | ||
</script> | ||
|
||
<h4>Project {data.projectId} Settings - Members</h4> |
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<script lang="ts"> | ||
import type { PageData } from "./$types"; | ||
export let data: PageData; | ||
let { data } = $props(); | ||
</script> | ||
|
||
<h4>Project {data.projectId} Settings - Review</h4> |
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
<script lang="ts"> | ||
import type { PageData } from "./$types"; | ||
export let data: PageData; | ||
let { data } = $props(); | ||
</script> | ||
|
||
<h4>Project {data.projectId} Settings - SLR</h4> |
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 |
---|---|---|
@@ -1,7 +1,17 @@ | ||
<script lang="ts"> | ||
import type { PageData } from "./$types"; | ||
import ProjectNavigationBar from "$lib/components/custom/ProjectNavigationBar.svelte"; | ||
export let data: PageData; | ||
let { data } = $props(); | ||
let user = { | ||
firstName: "Max", | ||
lastName: "Mustermann", | ||
}; | ||
let project = { | ||
id: data.projectId, | ||
name: `Project ${data.projectId}`, | ||
}; | ||
</script> | ||
|
||
<ProjectNavigationBar {user} {project} defaultTabValue="statistics" /> | ||
|
||
<h3>Project {data.projectId} Statistics</h3> |
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 |
---|---|---|
@@ -1 +1,10 @@ | ||
<h2>Reading List</h2> | ||
<script lang="ts"> | ||
import NavigationBar from "$lib/components/custom/NavigationBar.svelte"; | ||
let user = { | ||
firstName: "Max", | ||
lastName: "Mustermann", | ||
}; | ||
</script> | ||
|
||
<NavigationBar {user} pageTitle="Reading List" backRef="/" /> |
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 |
---|---|---|
@@ -1,7 +1,14 @@ | ||
<script lang="ts"> | ||
import NavigationBar from "$lib/components/custom/NavigationBar.svelte"; | ||
let { children } = $props(); | ||
let user = { | ||
firstName: "Max", | ||
lastName: "Mustermann", | ||
}; | ||
</script> | ||
|
||
<h2>Settings Layout</h2> | ||
<NavigationBar {user} pageTitle="Settings" backRef="/" /> | ||
|
||
{@render children()} |