afBedSheetDraftUser Guide
Overview
BedSheetDraft is a library for integrating draft components with the BedSheet web framework.
With BedSheetDraft you can:
- Use draft Routes
- Use draft Flash
Install
Install BedSheetDraft with the Fantom Respository Manager:
C:\> fanr install -r http://repo.status302.com/fanr/ afBedSheetDraft
To use in a BedSheet project, add a dependency to build.fan:
depends = ["sys 1.0", ..., "afBedSheetDraft 1.1+"]
Draft Routing
Draft Routes match request URIs and calls request handlers with a single map of arguments. Contribute draft routes to the DraftRoutes service:
using afIoc
using afBedSheetDraft
using draft::Route as DraftRoute
class AppModule {
...
@Contribute { serviceType=DraftRoutes# }
static Void contributeRoutes(OrderedConfig conf) {
conf.add(DraftRoute("/", "GET", PageHandler#index))
conf.add(DraftRoute("/echo/{name}/{age}", "GET", PageHandler#print))
}
}
Draft Flash
Draft Flash is contributed as a threaded service and may be accessed as such:
@Inject private Flash flash
Note that Flash is not a const class so it may not be injected into const services. Instead create a flash method that accesses the afIoc registry:
using afIoc
using draft::Flash as DraftFlash
class ThreadedHandler {
@Inject
private Registry registry
new make(|This|in) { in(this) }
DraftFlash flash() {
registry.dependencyByType(DraftFlash#)
}
}
Release Notes
v1.1.2
v1.1.0
- Chg: Updated to use BedSheet v1.2.
- Chg:
DraftRouteobjects must now be contributed to the DraftRoutes service, not theBedSheetRoutesservice.
v1.0.4
- Chg: Updated to afIoc v1.4.
- Chg: Transferred VCS ownership to AlienFactory
v1.0.2
- Chg: Updated tests to use
BedServerandBedClient
v1.0.0
- New: Initial release