From 1815b08e88bd0981455048cf325b65d4200a8f2e Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Fri, 30 Jun 2023 14:08:59 +0000 Subject: [PATCH] feat(*): Add basic example estimation page --- src/components/AverageEstimate.svelte | 8 +++ src/components/EstimateGroupsList.svelte | 23 +++++++ src/components/UsersList.svelte | 20 ++++++ src/routes/+page.svelte | 1 - src/routes/estimation/+page.svelte | 77 ++++++++++++++++++++++++ 5 files changed, 128 insertions(+), 1 deletion(-) create mode 100644 src/components/AverageEstimate.svelte create mode 100644 src/components/EstimateGroupsList.svelte create mode 100644 src/components/UsersList.svelte create mode 100644 src/routes/estimation/+page.svelte diff --git a/src/components/AverageEstimate.svelte b/src/components/AverageEstimate.svelte new file mode 100644 index 0000000..aae6762 --- /dev/null +++ b/src/components/AverageEstimate.svelte @@ -0,0 +1,8 @@ + + +
+

Average Estimate

+

{average}

+
diff --git a/src/components/EstimateGroupsList.svelte b/src/components/EstimateGroupsList.svelte new file mode 100644 index 0000000..5190262 --- /dev/null +++ b/src/components/EstimateGroupsList.svelte @@ -0,0 +1,23 @@ + + +
+

Estimate Groups

+ +
diff --git a/src/components/UsersList.svelte b/src/components/UsersList.svelte new file mode 100644 index 0000000..47d194a --- /dev/null +++ b/src/components/UsersList.svelte @@ -0,0 +1,20 @@ + + +
+

Users

+ +
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 8633603..a4ca2ee 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -5,4 +5,3 @@

Estimation Poker

- diff --git a/src/routes/estimation/+page.svelte b/src/routes/estimation/+page.svelte new file mode 100644 index 0000000..f0f8ec1 --- /dev/null +++ b/src/routes/estimation/+page.svelte @@ -0,0 +1,77 @@ + + +

Estimation Page

+ + + +{#if Object.keys(estimateGroups).length > 0} + + +{/if} + +