Gathering detailed insights and metrics for ampersand-grid-view
Gathering detailed insights and metrics for ampersand-grid-view
Gathering detailed insights and metrics for ampersand-grid-view
Gathering detailed insights and metrics for ampersand-grid-view
npm install ampersand-grid-view
Typescript
Module System
Node Version
NPM Version
Total Downloads
1,318
Last Day
2
Last Week
4
Last Month
8
Last Year
64
Minified
Minified + Gzipped
Latest Version
0.9.0
Package Id
ampersand-grid-view@0.9.0
Size
4.49 kB
NPM Version
2.1.16
Node Version
0.10.33
Cumulative downloads
Total Downloads
Last Day
0%
2
Compared to previous day
Last Week
0%
4
Compared to previous week
Last Month
-27.3%
8
Compared to previous month
Last Year
-66%
64
Compared to previous year
A collection backed grid view.
This is not quite a 1.0 release, but it's pretty close. It works for the simple cases.
The grid view takes a container and an ampersand-collection and renders it into a grid with a set number of columns. Items will be rendered into the currently shortest column. Hence this module can be used to create a Pinterest-like grid of items.
1var AmpGridView = require('ampersand-grid-view'); 2var data = new AmpersandCollection(); // Create a collection containing your models 3 4var MyView = require('./my-model-view'); 5 6var gridView = new AmpGridView({ 7 view: MyView, 8 collection: data, 9 el: document.querySelector('.some-container'), 10 columnCount: 3, 11 gutter: 10, 12 viewOptions: { 13 // additional properties passed to new views. 14 } 15});
This will create a grid of three columns with 10px spacing between each view.
Each model in the collection data
will be represented by the view MyView
.
If more models are added to the collection they will automatically render into the view.
Views can be asynchronous, meaning, you can tell the grid that you do not want
to be inserted right after rendering. But rather at some point later. You do
this by adding a property async
to your view and set it to true
. Then
have the view emit a ready
event when it is ready to be drawn into the grid.
This is useful when you are rendering images of unknown sizes for example. Since the grid has to know the height of the view being rendered it can't just insert it into the grid and have the image load later, this will cause overlapping.
1module.exports = AmpersandView.extend({ 2 async: true, 3 done: false, 4 template: function () { 5 return someTemplateThatHasAnImage; 6 }, 7 8 render: function initPostView() { 9 this.renderWithTemplate(this); 10 var self = this; 11 // Star loading image 12 var image = new Image(); 13 image.src = this.model.image; 14 15 // Upon success set our imageUrl property to the URL and have 16 // bindings update the src attribute. 17 // Then set `async` to false to prevent consecutive renders if the grid 18 // reflows for example 19 image.onload = function imageLoaded() { 20 self.imageUrl = image.src; 21 self.trigger('ready'); 22 self.async = false; 23 }; 24 image.onerror = function imageError() { 25 // You could remove the image here and render the view anyway. Or replace 26 // it with some standard image. 27 self.trigger('ready'); 28 self.async = false; 29 }; 30 }, 31});
Note that currently there is not way to ensure ordering of views in async mode unless you keep track outside of the grid view yourself. This will be fixed in the future though.
If you need to change the number of colums based on the window size for example
you can do this by hooking up an event listener on the resize
event of the
window
object. Then set the property columnCount
on the grid view and call
the reflow()
method.
The grid view won't handle anything like this automatically.
A view will always be the container's width divided by column count. So you can
adjust the views widths by setting the width of the container yourself and
adjusting the gutter
property.
If you want endless scrolling you can just listen to the scroll event yourself and then when the user reaches the bottom you load more models and add them to the collection. They will automatically render in the grid.
You could use my toBottom module for this.
If you have different kinds of models in you collection and need to render
different kinds of views you can set the view
option to an object where the
keys match model.type || model.getType()
and the value is a matching view
constructor.
All the views will be absolutely positioned within it's container. This is to make the layout job for the browser easier. DOM operations are also somewhat grouped together to decrease the repaints etc necessary.
MIT
No vulnerabilities found.
No security vulnerabilities found.