reblocks-navigation-widget

2023-06-18

A container widget which switches between children widgets when user changes an url.

Upstream URL

github.com/40ants/reblocks-navigation-widget

Author

Alexander Artemenko <svetlyak.40wt@gmail.com>

License

Unlicense
README

Reblocks Navigation Widget

REBLOCKS-NAVIGATION-WIDGET ASDF System Details

Installation

You can install this library from Quicklisp, but you want to receive updates quickly, then install it from Ultralisp.org:

(ql-dist:install-dist "http://dist.ultralisp.org/"
                      :prompt nil)
(ql:quickload :reblocks-navigation-widget)

Usage

This addon for Reblocks frameworks allows you to define which widgets should be shown to the user dependening on URL's path.

The main entry-point is defroutes macro. Use it to define a subclass of navigation widget and then return this widget from the session initialization method of your Reblocks application.

API

macro reblocks-navigation-widget:defroutes class-name &rest rules

Defines a new class with name CLASS-NAME, inherited from navigation-widget.

And a function make-{class-name} to make instances of this class.

Each entry in rules should be a list of two items. First item is a regex pattern to match URL path. Second item is a form to create a widget. A new widget will be created only if URL was changed.

Here is an example of a widget with two rules:

(defroutes tasks-routes
        ("/tasks/d+" (make-task-page))
        ("/tasks/" (make-task-list "Make my first Reblocks app"
                                   "Deploy it somewhere"
                                   "Have a profit")))

With these rules, when user opens URL /tasks/ a widget returned by MAKE-TASK-LIST will be set as current-widget and shown to the user. If user clicks on some task and URL change to /tasks/100500, then a widget for a task will be created by a call to MAKE-TASK-PAGE.

Pay attention that widget creation form is responsible for extraction of the parameters from the URL. In above case, MAKE-TASK-PAGE should call REBLOCKS/REQUEST:GET-PATH and parse path to extract task's id. Probably this will change in future defroutes will catch matched path pieces.

class reblocks-navigation-widget:navigation-widget (ui-widget)

Base class for all navigation widgets.

When rendered it tracks if URL was changed and creates a new child widget according to given navigation rules.

Usually you don't want to inherit from this class manually, but instead use defroutes macro.

reader reblocks-navigation-widget:current-widget (navigation-widget) (= nil)

reader reblocks-navigation-widget:current-path (navigation-widget) (= nil)

reader reblocks-navigation-widget:navigation-rules (navigation-widget) (:rules)


[generated by 40ANTS-DOC]

Dependencies (10)

  • 40ants-asdf-system
  • ci
  • doc
  • docs-builder
  • log4cl
  • named-readtables
  • pythonic-string-reader
  • reblocks
  • reblocks-ui
  • rove
  • GitHub
  • Quicklisp