123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333/// FOURJS_START_COPYRIGHT(D,2015)
/// Property of Four Js*
/// (c) Copyright Four Js 2015, 2022. All Rights Reserved.
/// * Trademark of Four Js Development Tools Europe Ltd
/// in the United States and elsewhere
///
/// This file can be modified by licensees according to the
/// product manual.
/// FOURJS_END_COPYRIGHT
"use strict";
modulum('StretchableScrollGridWidget', ['StretchableScrollGridWidgetBase', 'WidgetFactory'],
function(context, cls) {
/**
* Stretchable scroll grid widget.
* @class StretchableScrollGridWidget
* @memberOf classes
* @extends classes.StretchableScrollGridWidgetBase
* @publicdoc
*/
cls.StretchableScrollGridWidget = context.oo.Class(cls.StretchableScrollGridWidgetBase, function($super) {
return /** @lends classes.StretchableScrollGridWidget.prototype */ {
__name: "StretchableScrollGridWidget",
/** @type {?number} */
_pageSize: null,
/** @type {?number} */
_size: null,
/** @type {?number} */
_offset: null,
/** @type {?number} */
lastSentOffset: null,
/** @type {number} */
_rowHeight: 0,
/** @type {number} */
_currentRow: 0,
/** Handlers */
/** @type {classes.UserInterfaceWidget} */
_uiWidget: null,
/** @type {classes.FolderWidgetBase} */
_folderPageWidget: null,
/** @function */
_uiActivateHandler: null,
/** @function */
_pageActivateHandler: null,
/** @type {classes.ContextMenuWidget} */
_rowBoundWidget: null,
/** @type {boolean} */
_hasReduceFilter: false,
/** @type {Number} **/
_firstPageSize: null,
/**
* @constructs
* @param {*} opts - Options passed to the constructor
*/
constructor: function(opts) {
opts = opts || {};
this._uiWidget = opts.uiWidget;
this._folderPageWidget = opts.folderPageWidget;
$super.constructor.call(this, opts);
},
/**
* @inheritDoc
*/
_initElement: function() {
$super._initElement.call(this);
this._element.on('scroll.StretchableScrollGridWidget', function(event) {
this.emit(context.constants.widgetEvents.scroll, event, this.getRowHeight());
}.bind(this));
this._uiActivateHandler = this._uiWidget.onActivate(this.updateVerticalScroll.bind(this, true));
if (this._folderPageWidget) {
this._pageActivateHandler = this._folderPageWidget.onActivate(this.updateVerticalScroll.bind(this, true));
}
this._rowBoundWidget = this.getApplicationWidget().getRowBoundMenu();
},
/**
* @inheritDoc
*/
destroy: function() {
if (this._uiActivateHandler) {
this._uiActivateHandler();
this._uiActivateHandler = null;
}
if (this._pageActivateHandler) {
this._pageActivateHandler();
this._pageActivateHandler = null;
}
this._element.off('scroll.StretchableScrollGridWidget');
this._rowBoundWidget = null;
this._uiWidget = null;
this._folderPageWidget = null;
this.destroyChildren();
$super.destroy.call(this);
},
/**
* @inheritDoc
*/
setFocus: function(fromMouse) {
$super.setFocus.call(this, fromMouse);
// if focus comes from VM not mouse
if (!fromMouse) {
this.activateRowBound();
}
},
/**
* Activate rowbound on widget.
*/
activateRowBound: function() {
this.addClass("rowBound");
// update rowBound quick actions
for (const row of this.getChildren()) {
row.getRowBoundDecoratorWidget().updateQuickActions();
}
},
/**
* @inheritDoc
*/
loseVMFocus: function(vmNewFocusedWidget = null) {
$super.loseVMFocus.call(this, vmNewFocusedWidget);
// if new focused widget is not in the scrollgrid
if (!vmNewFocusedWidget.isInScrollGrid(this)) {
this.removeClass("rowBound");
}
},
/**
* @inheritDoc
*/
manageMouseClick: function(domEvent) {
cls.ScrollGridWidget._onClick.call(this, domEvent);
return true;
},
/**
* @inheritDoc
*/
manageMouseDblClick: function(domEvent) {
cls.ScrollGridWidget._onDblClick.call(this, domEvent);
return true;
},
/**
* @inheritDoc
*/
addChildWidget: function(widget, options) {
if (widget.isInstanceOf(cls.StretchableScrollGridLineWidget)) {
$super.addChildWidget.call(this, widget, options);
if (this.hasRowBound()) {
widget.addRowBoundDecorator();
}
}
/*else if (widget.isInstanceOf(cls.ContextMenuWidget)) {
// Rowbound menu
this._rowBoundWidget = widget;
this._rowBoundWidget.setParentWidget(this);
}*/
},
/**
* @returns {number} scroll grid data area height
*/
getDataAreaHeight: function() {
return this.getLayoutInformation().getAvailable().getHeight();
},
/**
* Returns scrollable area DOM Element
* @returns {HTMLElement} scrollable area DOM Element
*/
getScrollableArea: function() {
return this.getElement();
},
/**
* Returns the row height in pixels
* @returns {number} row height
* @publicdoc
*/
getRowHeight: function() {
if (this._rowHeight === 0 && this.getChildren().length !== 0) {
this._rowHeight = this.getChildren()[0]._element.getBoundingClientRect().height;
if (this._rowHeight > 0) {
let rowMargin = parseInt(context.ThemeService.getValue("gbc-ScrollGridWidget-inner-gutter"), 10);
this._rowHeight += rowMargin;
}
}
return this._rowHeight;
},
/**
* Defines the scroll grid pageSize
* @param {number} pageSize - page size
*/
setPageSize: function(pageSize) {
this._pageSize = pageSize;
},
/**
* Defines the scroll grid size (total number of row)
* @param {number} size - size value
*/
setSize: function(size) {
this._size = size;
},
/**
* Defines the scroll grid offset
* @param {number} offset - offset value
*/
setOffset: function(offset) {
this._offset = offset;
},
/**
* Update vertical scroll
* @param {boolean} forceScroll - true to force scrolling
*/
updateVerticalScroll: function(forceScroll) {
this.setVerticalScroll(this._size, this._pageSize, this._offset, forceScroll);
},
/**
* Sets vertical scroll parameters
* BEWARE this code should be the same as TableWidget::setVerticalScroll
* @param {?number} size
* @param {?number} pageSize
* @param {?number} offset
* @param {boolean} forceScroll
*/
setVerticalScroll: function(size, pageSize, offset, forceScroll) {
this.setSize(size);
this._pageSize = pageSize;
var top = offset * this.getRowHeight();
var height = (size - offset) * this.getRowHeight();
this.setStyle("> .containerElement", {
"margin-top": top + "px",
"height": height + "px"
});
if (forceScroll || (this.lastSentOffset === null ||
this.lastSentOffset === offset) && offset !== this._offset) {
this._offset = offset;
// need to do this because to scroll we need to wait the style "height" set just before is really applied in the dom
this.afterDomMutator(function() {
this.getScrollableArea().scrollTop = top;
}.bind(this));
}
this.lastSentOffset = null;
},
/**
* Returns rowBound widget
* @returns {classes.ContextMenuWidget} rowBound
*/
getRowBoundWidget: function() {
return this._rowBoundWidget;
},
/**
* Returns if rowBound is activated
* @returns {boolean} rowBound activated ?
*/
hasRowBound: function() {
return this._rowBoundWidget !== null;
},
/**
* Indicates if the scrollgrid can have a reduce filter
* @param {boolean} b - true if table can have a reduce filter
*/
setReduceFilter: function(b) {
this._hasReduceFilter = b;
},
/**
* Return if the scrollgrid can have a reduce filter
* @returns {boolean} true if table can have a reduce filter
*/
hasReduceFilter: function() {
return this._hasReduceFilter;
},
/**
* Set how children will align
* @param {string} alignment
*/
setItemsAlignment: function(alignment) {
if (this._containerElement) {
this._containerElement.style.alignItems = {
start: "flex-start",
left: "flex-start",
center: "center",
stretch: "stretch",
right: "flex-end",
end: "flex-end"
} [alignment] || "stretch";
}
},
/**
* Sets scrollgrid is scrolling
* @param {boolean} up - scrolling up
* @param {boolean} down - scrolling down
*/
setScrolling: function(up, down) {},
};
});
cls.WidgetFactory.registerBuilder('StretchableScrollGrid', cls.StretchableScrollGridWidget);
});