bricks/bricks/dynamiccolumn.js
2024-06-28 11:41:39 +08:00

55 lines
1.3 KiB
JavaScript

var bricks = window.bricks || {};
bricks.DynamicColumn = class extends bricks.Layout {
/*
{
mobile_cols:
col_cwidth:
col_cgap:
col_width:
}
*/
constructor(opts){
if (! opts.col_cwidth){
if(! opts.col_width){
opts.col_cwidth = 20;
}
}
opts.col_cgap = opts.col_cgap || 0.5;
opts.mobile_cols = opts.mobile_cols|| 1;
super(opts);
this.set_style('display', 'grid');
// this.set_column_width();
this.bind('on_parent', this.set_column_width.bind(this));
this.bind('resize', this.set_column_width.bind(this));
if (this.cwidth){
bricks.app.bind('charsize', this.set_column_width.bind(this));
}
}
set_column_width(){
var cw;
var cols;
var gap;
var width = this.get_width();
if (this.col_cwidth){
cw = bricks.app.charsize * this.col_cwidth;
} else {
cw = this.col_width;
}
gap = bricks.app.charsize * (this.col_cgap || 0.1);
if (width > 0){
if (bricks.is_mobile() && (width < this.get_height())){
cols = this.mobile_cols || 1;
} else {
cols = (width + gap) / (cw + gap)
}
cols = Math.floor(width/cw);
cw = (width - (cols - 1) * gap) / cols;
}
this.dom_element.style.gridTemplateColumns = "repeat(auto-fill, minmax(" + cw + "px, 1fr))";
this.set_style('gap', gap + 'px');
}
}
bricks.Factory.register('DynamicColumn', bricks.DynamicColumn);