GithubHelp home page GithubHelp logo

Make a Router about vugu HOT 4 OPEN

vugu avatar vugu commented on April 28, 2024 7
Make a Router

from vugu.

Comments (4)

erinpentecost avatar erinpentecost commented on April 28, 2024

Are you basically looking for a port of Vue's router?

from vugu.

bradleypeabody avatar bradleypeabody commented on April 28, 2024

Thanks for the links. I'm not really sure yet what the right approach is. The Vue router is pretty cool but there are things that I "feel I should be able to do" with it that are not simple.

For example, if I'm making some big screen with various controls in it, it would be really handy to be able to just "bind" the query parameters (or perhaps something in the path too?) directly to the data in my component. The rough pseudocode would be like:

type MyCompData struct {
    ShowLeftPanel bool   `urlparam:"showleft"`
    DisplayID     string `urlparam:"id"`
    SomeThingElse int    `urlparam:"-"` // explicitly not included in URL params
}
// and then somewhere, not sure where, I can do:
router.Bind(data) // data is *MyCompData - tell router to synchronize URL in both directions

And this would result in /path/to/page?showleft=true&id=whatever - and if the user changes the URL it updates the data in the component and if the component changes data it updates the URL.

I'm not aware of a way to do this with the Vue router. But it's functionality that I've often wanted. I'd like to figure out a design that solves it (without precluding other cases that Vue's router does solve well). This is something I will give more thought to over the coming days and then prototype. Suggestions welcome.

Some more random thoughts, just so I don't forget: "Browser" seems like an interface to me, with a "BrowseTo" method or some such. Likewise, the difference between encoding data into the query string or into the fragment could be two different router implementations. Figuring out how to effectively use the Go type system will be important here, otherwise the result will be one giant struct with a bunch of random options on it and will be hard to reason about and maintain. The functionality show in the code snippet above could be described by a "Binder" interface, possibly.

from vugu.

bradleypeabody avatar bradleypeabody commented on April 28, 2024

FYI: https://github.com/vugu/vgrouter

from vugu.

bradleypeabody avatar bradleypeabody commented on April 28, 2024

Vugu Router works reasonably well now: https://www.vugu.org/doc/routing

from vugu.

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.