Giter VIP home page Giter VIP logo

Comments (4)

alisd23 avatar alisd23 commented on July 26, 2024 1

I guess we still might want the unsubscribe method exposed, as that gives the user a way of disconnecting the router state from the history (unsubscribing the store from the browser history) if they **really ** needed to.

So for the name: I guess mobx-state-tree-react-router rolls off the tongue nicely...
Maybe just mst-react-router would work.

I'd be happy to quickly whip up the library in the next couple of days to get a basic first concept going.
I'll link it back on here when it's up so you can take a look and suggest any changes ๐Ÿ‘

from mobx-react-router.

alisd23 avatar alisd23 commented on July 26, 2024

I'm open to it, and it doesn't seem like too much extra code.

However, I'm just considering how to go about it. As there will need to be a peer dependency on mobx-state-tree in this library (because of the types.model stuff), even people not using mobx-state-tree will get "missing peer dependencies" warnings constantly.

It seems that the best way to go about this (unfortunately) might be to create another router binding library specifically for mobx-state-tree.
mobx-state-tree has such a different API to pure mobx observables, that trying to merge router bindings for both probably doesn't make sense.

Open for discussion though.

Edit:
Actually users would be required to install MST, because of the references to types.model, unless we create a completely separate target (bundle) for MST users

from mobx-react-router.

marcofugaro avatar marcofugaro commented on July 26, 2024

True, I'm also for the idea of a different library, quite some things would be different.

For example you wouldn't need the subscribe and unsubscribe methods with mobx-state-tree, thanks to its helper function onSnapshot (or others) to which you can pass the router branch.

For example this is my simple implementation of the syncHistoryWithStore function

export const syncHistoryWithStore = (history, store) => {
  // Set initial history and location
  store._setHistory(history)
  store._setLocation(history.location)

  // Handle update from history object
  history.listen(location => store._setLocation(location))

  return history
}

from mobx-react-router.

alisd23 avatar alisd23 commented on July 26, 2024

Took a bit longer than I hoped, but v1.0.0 is now live: https://github.com/alisd23/mst-react-router.

Thanks @dbertella and @marcofugaro for the help with the initial investigation/code.

๐ŸŽ‰ ๐ŸŽ‰ ๐ŸŽ‰ ๐ŸŒฎ

from mobx-react-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.