Giter VIP home page Giter VIP logo

Comments (3)

matyj avatar matyj commented on May 24, 2024 2

Thank you so much!

from simple-stack.

Zhuinden avatar Zhuinden commented on May 24, 2024

My question is: is there a way to do that in a simple way different from setting stack history explicitly?

I think you're most likely looking for HistoryBuilder.removeUntil() (which keeps the key you specified, but removes all elements from top to that element), but you will need to set the stack history explicitly with setHistory(newHistory, Direction.BACKWARD).

So something like,

backstack.setHistory(HistoryBuilder.from(backstack)
                                   .removeUntil(KeyToGoTo.create())
                                   .build(), 
                     Direction.BACKWARD);

is there any simple way to push some parameters when going back in stack? I want to have behaviour like "onActivityResult".

Now that's a bit tricky because there are two ways:

1.) either replace the key in the stack with a version of it that has the parameter set, for example you could add a StateBundle to the key (although you should most likely extend it so that hashCode()/equals() does not make it think it is a different object, so equals if obj == this || (obj != null && obj instanceof StateBundle) - that way, using backstack.goTo() would work)

2.) create a "MessageQueue" that you check for pending messages when your view is ready, and identify if the given view has received messages from other views

As you can see, my example used the second option, although it's a bit rudimentary.

from simple-stack.

Zhuinden avatar Zhuinden commented on May 24, 2024

I know it's probably irrelevant at this point, but with the revised Backstack (which was "BackstackManager" previously after 1.1.0) implementation, I could update the Multistack sample like so:

https://github.com/Zhuinden/simple-stack/blob/f28fcae66287dbb92faefdc905cd2901dd3e7e8d/simple-stack-example-multistack-view/src/main/java/com/zhuinden/simplestackdemomultistack/core/navigation/Multistack.kt

Which is much more convenient to use than BackstackDelegate + setPersistenceTag.


Although it wouldn't change the above recommendation regarding a MessageQueue-like thing. Lately, you'd probably use a shared ScopedService and an EventEmitter.

from simple-stack.

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.