forked from muicss/mui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.js
More file actions
58 lines (44 loc) · 1.31 KB
/
forms.js
File metadata and controls
58 lines (44 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* MUI CSS/JS form helpers module
* @module lib/forms.py
*/
'use strict';
var jqLite = require('./jqLite');
/**
* Menu position/size/scroll helper
* @returns {Object} Object with keys 'height', 'top', 'scrollTop'
*/
function getMenuPositionalCSSFn(wrapperEl, menuEl, selectedRow) {
var viewHeight = document.documentElement.clientHeight,
numRows = menuEl.children.length;
// determine menu height
var h = parseInt(menuEl.offsetHeight),
height = Math.min(h, viewHeight);
// determine row height
var p = parseInt(jqLite.css(menuEl, 'padding-top')),
rowHeight = (h - 2 * p) / numRows;
// determine 'top'
var top, initTop, minTop, maxTop;
initTop = -1 * selectedRow * rowHeight;
minTop = -1 * wrapperEl.getBoundingClientRect().top;
maxTop = (viewHeight - height) + minTop;
top = Math.min(Math.max(initTop, minTop), maxTop);
// determine 'scrollTop'
var scrollTop = 0,
scrollIdeal,
scrollMax;
if (h > viewHeight) {
scrollIdeal = top + p + selectedRow * rowHeight;
scrollMax = numRows * rowHeight + 2 * p - height;
scrollTop = Math.min(scrollIdeal, scrollMax);
}
return {
'height': height + 'px',
'top': top + 'px',
'scrollTop': scrollTop
};
}
/** Define module API */
module.exports = {
getMenuPositionalCSS: getMenuPositionalCSSFn
};