Skip to content

onClick Button from Page "A to Page B" #100

Answered by mpagels
Mersag asked this question in Web
Discussion options

You must be logged in to vote

Du könntest in deinem zustand Store eine weitere Liste anlegen, die die Übungen speichert, die dann auf deiner Page "Asana Routine" angezeigt wird.

Bsp:

const useStore = create(set => ({
    exercises : [], // or cards
    routine: [],

   addRoutine: id => {
   // ...logic to find the id in the `exercises` array, and put this exercise then into the `routine` array
   return [...routine, newRoutine]
}
})

Dein Button braucht dann nur noch die id deiner exercise und ruft bei onClick die addRoutine Funktion aus dem zustand Store auf.

In deiner Page "Asana Routine" nutzt du dann die Liste routine aus deinem zustand Store, um die gespeicherten Routinen anzuzeigen.

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@Mersag
Comment options

@mpagels
Comment options

@UniversalTraveller
Comment options

Answer selected by Mersag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Web
Labels
None yet
3 participants