Last active
August 29, 2015 14:21
-
-
Save LachlanArthur/0dca4670f0294b239769 to your computer and use it in GitHub Desktop.
Isotope Grid Mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! | |
| * grid layout mode for Isotope | |
| * based on cellsByRows layout | |
| */ | |
| ( function( window ) { | |
| 'use strict'; | |
| function GridDefinition( LayoutMode ) { | |
| var Grid = LayoutMode.create( 'grid' ); | |
| Grid.prototype.getRowHeight = function() { | |
| var rowHeights = []; | |
| var containerWidth = this.isotope.size.innerWidth; | |
| var runningWidth = 0; | |
| var currentRow = 0; | |
| for (var i = 0; i < this.isotope.filteredItems.length; i++) { | |
| this.isotope.filteredItems[i].element.style.height = ''; | |
| this.isotope.filteredItems[i].element.style.left = '0'; | |
| this.isotope.filteredItems[i].getSize(); | |
| var width = this.isotope.filteredItems[i].size.outerWidth; | |
| var height = this.isotope.filteredItems[i].size.outerHeight; | |
| // Save left & row | |
| this.isotope.filteredItems[i].element.x = (runningWidth > containerWidth) ? 0 : runningWidth; | |
| this.isotope.filteredItems[i].element.row = (runningWidth > containerWidth) ? 0 : currentRow; | |
| runningWidth += width; | |
| if (runningWidth >= containerWidth) { | |
| currentRow++; | |
| runningWidth = 0; | |
| } | |
| if (!rowHeights[currentRow]) rowHeights[currentRow] = 0; | |
| rowHeights[currentRow] = Math.max(rowHeights[currentRow], height); | |
| }; | |
| this.rowHeight = rowHeights; | |
| }; | |
| Grid.prototype._resetLayout = function() { | |
| this.getRowHeight(); | |
| }; | |
| Grid.prototype._getItemLayoutPosition = function( item ) { | |
| item.getSize(); | |
| var row = item.element.row; | |
| var x = item.element.x; | |
| var y = 0; | |
| for (var i = 0; i < row; i++) { | |
| y += this.rowHeight[i]; | |
| }; | |
| item.element.style.height = this.rowHeight[row] + 'px'; | |
| return { | |
| x: x, | |
| y: y | |
| }; | |
| }; | |
| Grid.prototype._getContainerSize = function() { | |
| var totalHeight = 0; | |
| for (var i = 0; i < this.rowHeight.length; i++) { | |
| totalHeight += this.rowHeight[i]; | |
| }; | |
| return { | |
| height: totalHeight | |
| }; | |
| }; | |
| return Grid; | |
| } | |
| if ( typeof define === 'function' && define.amd ) { | |
| define( [ 'isotope/js/layout-mode' ], GridDefinition ); | |
| } else { | |
| GridDefinition( window.Isotope.LayoutMode ); | |
| } | |
| })( window ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment