Open
Description
The core of the library is now nearly feature complete, so to keep the size reasonable, we'll think twice before adding new features to the core.
But sometimes additional features will be useful to a subset of users. To allow for sharing the code for these kinds of features, we need to refactor to make it easy to add plugins. Then we can freely add unlimited new features as plugins while keeping the core of the library as small as possible.
Work in progress
- Namespace methods calls
- Events
- Add events hooks
- Make events modifiable
- Update library to trigger all events
- Documentation with events listing
- Documentation on how to use them
- Tests (Add tests #17)
- Plugins
- Add plugins system
- Plugins load order
- Pass options into plugins
- Tests
- Documentation (how to use, listing, building your own plugin)
- Separate tests for each plugin
- Move click/touch/pointer events into a plugin
- Move
center
,contain
andfit
into a plugin - Move controls into a plugin
- Move pan limit into a plugin (Keep SVG content visible when zooming #37)
- Move min/max zoom into a plugin
- Move enable/disable pan into a plugin
- Move enable/disable zoom into a plugin
- Move double click into a plugin
- Move mouse wheel scroll into a plugin
- Allow building momentum/inertia plugins (as in Inertia effect to end pan #117 and Add momentum scrolling support #174)
- Add right click plugin (as in Add right-click to reset zoom and pan #87)
- Move thumbnail viewer/navigator into a plugin (Thumbnail viewer / navigator? #110)
- Add Change mouse cursor when panning into a plugin (Change mouse cursor when panning #154)
- Move rotation into a plugin (Add rotate options in javascript #169)
- Separate zoom for X and Y axis (Separate Zoom for X-Y axis #176)
- Join beforePan/beforeZoom and onPan/onZoom into one event beforeChange/onChange that will contain both zoom and pan data
- Remove
customEventsHandler
- Update demos
- On actual CTM update fire
render
event (onZoom, onPan events to early #121)
@bumbu and @dlg-yahoo, are there other things needed to make it easy to add plugins? It might be awhile before I have time to do this myself, so don't let me be the bottleneck if either of you want to tackle this sooner. I'm fine with whatever you prefer, @bumbu.