mirror of https://github.com/metafizzy/isotope
Filter & sort magical layouts
http://isotope.metafizzy.co
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.1 KiB
60 lines
1.1 KiB
( function( window ) { |
|
|
|
'use strict'; |
|
|
|
function fitColumnsDefinition( LayoutMode ) { |
|
|
|
var FitColumns = LayoutMode.create('fitColumns'); |
|
|
|
FitColumns.prototype._resetLayout = function() { |
|
this.x = 0; |
|
this.y = 0; |
|
this.maxX = 0; |
|
}; |
|
|
|
FitColumns.prototype._getItemLayoutPosition = function( item ) { |
|
item.getSize(); |
|
|
|
// if this element cannot fit in the current row |
|
if ( this.y !== 0 && item.size.outerHeight + this.y > this.isotope.size.innerHeight ) { |
|
this.y = 0; |
|
this.x = this.maxX; |
|
} |
|
|
|
var position = { |
|
x: this.x, |
|
y: this.y |
|
}; |
|
|
|
this.maxX = Math.max( this.maxX, this.x + item.size.outerWidth ); |
|
this.y += item.size.outerHeight; |
|
|
|
return position; |
|
}; |
|
|
|
FitColumns.prototype._getContainerSize = function() { |
|
return { width: this.maxX }; |
|
}; |
|
|
|
FitColumns.prototype.resize = function() { |
|
this.resizeVertical(); |
|
}; |
|
|
|
return FitColumns; |
|
|
|
} |
|
|
|
if ( typeof define === 'function' && define.amd ) { |
|
// AMD |
|
define( [ |
|
'../layout-mode' |
|
], |
|
fitColumnsDefinition ); |
|
} else { |
|
// browser global |
|
fitColumnsDefinition( |
|
window.Isotope.LayoutMode |
|
); |
|
} |
|
|
|
})( window );
|
|
|