EveripediaNetwork / issues

Issues repo
9 stars 0 forks source link

Activity page not using proper linking #2729

Closed Softdev1 closed 3 weeks ago

Softdev1 commented 1 month ago

Description

If you go to the activity and navigate to a wiki, there is a flash in the dark mode transition. This usually means that it's not using routing properly. If we add proper routing, it will go faster and won't have the glitch of changing colors. For testing, set dark mode, go to activity, and click on a wiki.

Image

Image

Damola18 commented 3 weeks ago

@kesar i tested this sir, I couldnt notice the change on page transition due to the fact I have to scroll down to the section that has the image attached

kesar commented 3 weeks ago

image attached its about other places where linking is not done properly

kesar commented 3 weeks ago

go to activity page in dark mode and click in any item. I realized the issue its clicking in the image. if you go to the wiki page on the right section, there are other links that are not properly linked and reload the full page, like the one in the screenshot.

there are more, you need to navigate through the site to find them, on wiki widgets & activity image card 👍🏻

Damola18 commented 3 weeks ago

go to activity page in dark mode and click in any item. I realized the issue its clicking in the image. if you go to the wiki page on the right section, there are other links that are not properly linked and reload the full page, like the one in the screenshot.

there are more, you need to navigate through the site to find them, on wiki widgets & activity image card 👍🏻

ok sir, doing that now

kesar commented 3 weeks ago

image

here for example its because its using chakra link it should add the nextlink

image

kesar commented 3 weeks ago

https://github.com/EveripediaNetwork/ep-ui/blob/main/src/components/Wiki/WikiAccordion/AccordionWidget.tsx#L90C12-L90C16

here its missing the same, adding the as= NextLink to use the next routing and avoid full loading of the page

Damola18 commented 3 weeks ago

https://github.com/EveripediaNetwork/ep-ui/blob/main/src/components/Wiki/WikiAccordion/AccordionWidget.tsx#L90C12-L90C16

here its missing the same, adding the as= NextLink to use the next routing and avoid full loading of the page

ok sir