A ui component that tracks progress through a series of steps.
Check out the live demo on CodePen, which uses the stand-alone files.
Ensure component(1) is installed, then:
$ component install tanem/funnel
This library may be used stand-alone without the component tool. To build the stand-alone files, ensure UglifyJS2 is installed, then:
$ make standalone
Then add ./standalone/funnel.css and ./standalone/funnel.js to your application and reference the Funnel
global.
Ensure testling is installed, then:
$ make test
Ensure JSHint is installed, then:
$ make jshint
Initialize a new Funnel
:
var Funnel = require('funnel');
var funnel = new Funnel();
Set the name of the funnel.
funnel.name('foo')
Add a step to the funnel.
funnel.step({
label: 'foo',
url: 'http://foo.com'
})
Hit the funnel.
If the the passed url
matches a step url, then this will count as a step hit.
funnel.hit('http://foo.com')
Remove the funnel.
funnel.remove()
- Heavily influenced by the Ducksboard funnel
- Mixpanel funnels
The MIT License (MIT)
Copyright (c) 2014 Tane Morgan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.