Giter Club home page Giter Club logo

Comments (9)

ItalyPaleAle avatar ItalyPaleAle commented on August 9, 2024 1

See also #26

Yes that is probably the best way. The router will not do that for you as we cannot make assumptions about your app.

from svelte-spa-router.

liquiddandruff avatar liquiddandruff commented on August 9, 2024

Thank you!

from svelte-spa-router.

liquiddandruff avatar liquiddandruff commented on August 9, 2024

From some experimenting, this quickfix works great for forward navigations but it breaks history and back navigation (since navigating backwards will run that page's onMount). I believe the cleanest implementation would need routing library support to restore stored positions on back navigation. See the same discussion with angular's route: angular/angular#7791 and angular/angular#6946.

The defaults they later decided on preserves scroll position on back navigation and scroll to top on forward navigation (which is a sensible default for a routing library since it matches the default behaviour of browsers).

I'm about to try something similar as their implementation https://github.com/angular/angular/pull/20030/files . Will update if I get anywhere.

from svelte-spa-router.

ItalyPaleAle avatar ItalyPaleAle commented on August 9, 2024

The problem with that approach is that it would be quite hard to implement here.

The router has no concept of history stack, and it can’t have, so there’s no way we can know if this is a forward navigation or backwards. We could maintain a stack of all visited pages in memory, but even there we wouldn’t be able to know if the navigation is forward or backward (eg page that links back to the previous page as a forward navigation). It also wouldn’t survive a refresh of the page.

If this is something that’s very important to you, it should be implementable in the app layer. The new “routeLoaded” event introduced in 1.3 should make this easier too, as it doesn’t require creating an on amount in every component.

from svelte-spa-router.

liquiddandruff avatar liquiddandruff commented on August 9, 2024

Feel free to take a look, small changes. This works great for my use case (still haven't handled push, pop, replace yet, probably will once I need it).

Tried to make things semi-releasable, at very least others might find this useful.

Some things to look at would be to somehow make back navigation not flash if there's lots of content to load (maybe fade the page in etc).

from svelte-spa-router.

frederikhors avatar frederikhors commented on August 9, 2024

@ItalyPaleAle, I understand what you say about few features that work good.

Your hint to use the new routeLoaded is great and I'm using it right now.

But is a bit DRY if used in many <Router> components in my app.

Look here: https://github.com/vikignt/svelte-ui/blob/master/example/src/main.js#L25-L30.
They use page.js and forEach route they have a func().
Maybe an idea?

from svelte-spa-router.

frederikhors avatar frederikhors commented on August 9, 2024

I'm sorry, I'm wrong.

Your routeLoaded works for every underlying route. My fault.

from svelte-spa-router.

frederikhors avatar frederikhors commented on August 9, 2024

But perhaps, now that I think about it, this is another the problem.

How to use it only for some <Router> components?

from svelte-spa-router.

frederikhors avatar frederikhors commented on August 9, 2024

#57

from svelte-spa-router.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.