From 7b320f01c3d1f9a3f962e4d224d01ce8231b6db0 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi <256895@studenti.unimore.it> Date: Thu, 29 Apr 2021 17:04:56 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Start=20building=20PageDashboard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/frontend/src/routes/PageDashboard.js | 76 ++++++++++--------- .../src/routes/PageDashboard.module.css | 11 ++- 2 files changed, 47 insertions(+), 40 deletions(-) diff --git a/code/frontend/src/routes/PageDashboard.js b/code/frontend/src/routes/PageDashboard.js index cf4da58..aa476bf 100644 --- a/code/frontend/src/routes/PageDashboard.js +++ b/code/frontend/src/routes/PageDashboard.js @@ -10,48 +10,50 @@ import Radio from "../components/base/Radio" import Button from "../components/base/Button" import FormLabelled from "../components/base/FormLabelled" import FormLabel from "../components/base/formparts/FormLabel" +import RepositoryEditor from "../components/providers/RepositoryEditor" +import BoxConditionHashtag from "../components/interactive/BoxConditionHashtag" +import BoxConditions from "../components/interactive/BoxConditions" export default function PageDashboard({ children, className, ...props }) { return (
- - Create a new repository - - Search by zone - }> - 🚧 Not implemented. - - Search by hashtag - }> - 🚧 Not implemented. - - Search by time period - }> - 🚧 Not implemented. - - - - - - - - -   - - - - - + + + Create a new repository + + Search by zone + }> + 🚧 Not implemented. + + + Search by time period + }> + 🚧 Not implemented. + + + + + + + + + +   + + + + + +
) } diff --git a/code/frontend/src/routes/PageDashboard.module.css b/code/frontend/src/routes/PageDashboard.module.css index ce700f5..48a6af6 100644 --- a/code/frontend/src/routes/PageDashboard.module.css +++ b/code/frontend/src/routes/PageDashboard.module.css @@ -6,8 +6,9 @@ "b c" "b d" "b e" + "b f" ; - grid-template-rows: auto 1fr 1fr auto; + grid-template-rows: auto auto auto 1fr auto; grid-gap: 10px; @@ -31,6 +32,10 @@ grid-area: d; } -.CreateDialog { +.Conditions { grid-area: e; -} \ No newline at end of file +} + +.CreateDialog { + grid-area: f; +}