A
A
Aleksey ladutska2019-08-10 02:00:00
React
Aleksey ladutska, 2019-08-10 02:00:00

How to write to the state the data that was received through additional parameters in the url?

I have a link: localhost:3003/calendar?month=2019-08&day=21&time=10:00:00
I want to write month data to state (but later I will use other data: day, time). How can I do this better and is it right to transfer data to state?
The bottom line: the user receives a link to email and when he clicks on it, he will see a calendar with the desired month and other data. I need this data to understand what to display to the user.
I'm thinking of pulling this data through location.search

state = {
    currentMonth: null;  // currentMonth: 2019-08
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
H
hzzzzl, 2019-08-10
@ladutia

url = new URL('localhost:3003/calendar?month=2019-08&day=21&time=10:00:00')

params = [...url.searchParams.entries()].reduce((acc, val) => {
  acc[val[0]] = val[1];
  return acc
}, {})

// {month: "2019-08", day: "21", time: "10:00:00"}

but I don't think that props should be duplicated in the state
(the props will change later, and you will have to manually change the state)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question