Jennifer-Hinrichsen / emotion-tracker

https://emotion-tracker-theta.vercel.app
2 stars 1 forks source link

Bookmark Emotion Entry #6

Closed Leon910 closed 2 weeks ago

Leon910 commented 1 month ago

Value Proposition

As a user

I want to bookmark emotion entries,

so that I can quickly recall significant emotional experiences and identify patterns or triggers over time.

Description

Image

Acceptance Criteria

Tasks

F-Kirchhoff commented 1 month ago

maybe there is another way to display the navigation everywhere (think about layouts)

Leon910 commented 1 month ago

maybe there is another way to display the navigation everywhere (think about layouts)

We do not want to have the navigation-bar on the details-page yet. That is why we create a component for the navigation-bar. On the Details-page we at first only want to implement the back-arrow as navigation. Do you mean with "layouts" the global styling?

NikRoe commented 1 month ago

I am assuming Felix meant this Layout pattern you often see in Next.js applications.

This layout will be displayed on every page.

Since you don't want to have the navigation visible when on a details page, you would need to modify this. Ensuring it only gets displayed on pages that are no detail pages. You could achieve this by working with useRouter and checking what the current path is. For your use case, it does sound like quite some work for some small results.

Therefore I would also ask, why don't you want the navigation also visible for the details page? Are there any downsides? 🤔

NikRoe commented 1 month ago

👍 LGTM