Gathering detailed insights and metrics for ampersand-view-switcher
Gathering detailed insights and metrics for ampersand-view-switcher
Gathering detailed insights and metrics for ampersand-view-switcher
Gathering detailed insights and metrics for ampersand-view-switcher
A utility for swapping out views inside a container element.
npm install ampersand-view-switcher
Typescript
Module System
Node Version
NPM Version
70.5
Supply Chain
97.3
Quality
81.2
Maintenance
100
Vulnerability
99.6
License
JavaScript (100%)
Total Downloads
326,772
Last Day
26
Last Week
139
Last Month
871
Last Year
14,429
MIT License
23 Stars
83 Commits
13 Forks
9 Watchers
2 Branches
23 Contributors
Updated on Jan 23, 2022
Minified
Minified + Gzipped
Latest Version
3.0.0
Package Id
ampersand-view-switcher@3.0.0
Size
6.40 kB
NPM Version
5.3.0
Node Version
8.1.3
Cumulative downloads
Total Downloads
Last Day
0%
26
Compared to previous day
Last Week
-50.7%
139
Compared to previous week
Last Month
-4.8%
871
Compared to previous month
Last Year
-23.4%
14,429
Compared to previous year
1
Lead Maintainer: Kamil Ogórek
##Purpose
This module does one thing: it helps you swap out views inside of an element. It's compatible with ampersand-view, backbone views and any view that has an .el
, .render()
and .remove()
What might you do with it?
What it does
remove
on it..el
property that is the root element of the view..remove()
method that cleans up and unbinds methods accordingly..render()
method it will get called before it's shown.npm install ampersand-view-switcher
Here's an example of how you might use the view switcher to handle page views within your ampersand app.
mainview.js
1var AmpersandView = require('ampersand-view');
2var ViewSwitcher = require('ampersand-view-switcher');
3var templates = require('./templates');
4
5module.exports = AmpersandView.extend({
6 template: templates.body,
7 render: function () {
8 // render our template
9 this.renderWithTemplate();
10
11 // grab the element without our template based on its "data-hook" attribute
12 this.pageContainer = this.queryByHook('page-container');
13
14 // set up our page switcher for that element
15 this.pageSwitcher = new ViewSwitcher({
16 el: this.pageContainer,
17 // here we provide a few things we'd like to do each time
18 // we switch pages in the app.
19 show: function (view) {
20 // set our document title
21 document.title = view.pageTitle || 'my awesome app';
22 // scroll to the top
23 document.body.scrollTop = 0;
24 // perhaps store a reference to our current page on our
25 // app global for easy access from the browser console.
26 app.currentPage = view;
27 }
28 });
29 }
30});
Or if you wanted to animate them you can do it asynchronously like so:
1// set up our page switcher for that element
2this.pageSwitcher = new ViewSwitcher({
3 el: this.pageContainer,
4 // whether or not to wait for remove to be done before starting show
5 waitForRemove: true,
6 // here we provide a few things to do before the element gets
7 // removed from the DOM.
8 hide: function (oldView, cb) {
9 // it's inserted and rendered for me so we'll add a class
10 // that has a corresponding CSS transition.
11 oldView.el.classList.add('animateOut');
12 // give it time to finish (yes there are other ways to do this)
13 setTimeout(cb, 1000);
14 },
15 // here we provide a few things we'd like to do each time
16 // we switch pages in the app.
17 show: function (newView) {
18 // it's inserted and rendered for me
19 document.title = newView.pageTitle || 'app name';
20 document.body.scrollTop = 0;
21
22 // store an additional reference, just because
23 app.currentPage = newView;
24
25 newView.el.classList.add('animateIn');
26 }
27});
new ViewSwitcher([options])
options
{Object} [optional]
el
{Element} The DOM element that should contain the views.show
{Function} [optional] A function that gets called when a view is being shown. It's passed the new view.hide
{Function} [optional] A function that gets called when a view is being removed. It's passed the old view and a callback. If you name 2 incoming arguments for example function (oldView, callback) { ... }
the view switcher will wait for you to call the callback before it's considered ready. If you only use one like this: function (oldView) { ... }
it won't wait for you to call a callback.waitForRemove
{Boolean} [default: false
] Whether or not to wait until your hide
animation callback gets called before starting your show
animation.prepend
{Boolean} [default: false
] Whether or not to prepend the view to the element
. When this is false
, the view is appended.empty
{Function} [optional] A function that gets called any time the view switcher is empty. Including when you instantiate it without giving it a view to start with.view
{View} [optional] A view instance to start with.1var switcher = new ViewSwitcher(document.querySelector('#pageContainer')); 2 3var view = new MyView({ model: model }); 4 5switcher.set(view);
switcher.set(viewInstance)
viewInstance
{View} The new view to render.The instantiated view switcher has this one main method. Simply call it with the new view you wish to show.
This is most likely going to be an instantiated ampersand-view or Backbone.View, but can be anything that has a .el
property that represents that view's root element and .remove()
method that cleans up after itself. In addition if your custom view object has a .render()
method it will get called before the view is added to the DOM.
1var switcher = new ViewSwitcher({el: document.querySelector('#pageContainer')}); 2 3var view = new MyView({ model: model }); 4 5switcher.set(view);
switcher.clear(callback)
callback
{Function} [optional] An optional callback when removed. Useful if you're doing custom animations.Removes the current view from the view switcher. Calls callback
when done if one was provided.`
1var switcher = new ViewSwitcher({el: document.querySelector('#pageContainer')}); 2 3var view = new MyView({ model: model }); 4 5switcher.set(view); 6 7switcher.clear();
Written by @HenrikJoreteg with inspiration and ideas from @philip_roberts and @wraithgar and other awesome Yetis.
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 8/19 approved changesets -- score normalized to 4
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
112 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-03-31
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More