Giter Club home page Giter Club logo

Comments (4)

CaliCastle avatar CaliCastle commented on July 30, 2024

Hi, I added this for when the bulletin appeared, see if this can help you:
#47

from bulletinboard.

alexisakers avatar alexisakers commented on July 30, 2024

This feature shipped with the version 2.0.0-beta.3 of the library. You now can set a presentationHandler and a dismissalHandler on the item to handle these events. These are called during the transition in BLTNManager.

Thanks again for your suggestion!

from bulletinboard.

MEnnabah avatar MEnnabah commented on July 30, 2024

@alexaubry is there a way to set a dismissal handler on the BLTNItemManager itself, so it get called when the bulletinController is dismissed?
It would be helpful to do some task only once with bulletinController, instead handling each case with each item..

Thank you

from bulletinboard.

eliburke avatar eliburke commented on July 30, 2024

There is not a way in the current version of the framework.

But you can accomplish something similar if you are willing to configure your code in a particular way. I conform to this protocol, handle all button press actions within each BLTNPageItem, and then explicitly close the the BLTNItemManager with either displayPageError() or closeBulletinBoard(). Every Page has a custom init() that takes a BulletinPageResult completion block. When Pages create other Pages, they pass the completion block along. Any Page can terminate the manager, and a single call will be made to the completion. It spits out a Bool, but you could modify it to return an enum or whatever you like.

typealias BulletinPageResult = (Bool) -> ()

protocol CustomBulletinPage where Self : BLTNPageItem {
    
    var errorTitle: String { get }
    var completion: BulletinPageResult? { get }
    
    func displayPageError(msg: String, closeBulletin: Bool)
    func closeBulletinBoard(_ result: Bool)
}

extension CustomBulletinPage {
    
    func enableCustomDismissalHandler() {
        self.isDismissable = true
        self.dismissalHandler = { _ in
            self.completion?(false)
        }
    }
    
    func displayPageError(msg: String, closeBulletin: Bool = true) {
        let alertView = AlertController(title: errorTitle, message: msg, preferredStyle: .alert)
        alertView.addAction(UIAlertAction(title: "OK", style: .default) { alertAction in
            if closeBulletin {
                self.closeBulletinBoard(false)
            }
        })
        self.manager?.present(alertView, animated: true)
    }
    
    func closeBulletinBoard(_ result: Bool) {
        if let manager = self.manager {
            manager.dismissBulletin(animated: true)
        } else {
            DDLogError("Unable to dismiss BulletinBoard with nil manager")
        }
        completion?(result)
    }
}

from bulletinboard.

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.