Rank 3: Container
how can I get the status if the request are being made from nextjs to appwrite, something like request interceptor
Votes
0
Replies
8
Participants
Unknown
Messages
9
Rank 3: Container
how can I get the status if the request are being made from nextjs to appwrite, something like request interceptor
Do you mean from server side? Why?
Rank 3: Container
To check if requests being made, i do spinner component
Uhh...typically, what you do is have a Boolean to show or hide the spinner. Before making the API call, set the Boolean to true. After the API call, set the Boolean to false 🧐
Rank 3: Container
😂😂😂 right going to have boolean to check loading status. But intercepted requests. I only check once , then showing spinner . No need to do for all components
But wouldn't you show the loading spinner specifically at a certain spot related to the data being fetched? 🧐
Rank 3: Container
Right but once globally
Hmm ...well the SDK doesn't have any interceptor....but maybe you can make one by subclassing the client
Rank 3: Container
will try to check it out.