ant-design-vue/components/input/calculateNodeHeight.js

157 lines
4.2 KiB
JavaScript
Raw Normal View History

2017-12-06 10:54:20 +00:00
// Thanks to https://github.com/andreypopp/react-textarea-autosize/
/**
* calculateNodeHeight(uiTextNode, useCache = false)
*/
const HIDDEN_TEXTAREA_STYLE = `
2019-01-03 12:51:56 +00:00
min-height:0 !important;
max-height:none !important;
height:0 !important;
visibility:hidden !important;
overflow:hidden !important;
position:absolute !important;
z-index:-1000 !important;
top:0 !important;
right:0 !important
2019-01-12 03:33:27 +00:00
`;
2017-12-06 10:54:20 +00:00
const SIZING_STYLE = [
'letter-spacing',
'line-height',
'padding-top',
'padding-bottom',
'font-family',
'font-weight',
'font-size',
2019-04-07 09:19:18 +00:00
'font-variant',
2017-12-06 10:54:20 +00:00
'text-rendering',
'text-transform',
'width',
'text-indent',
'padding-left',
'padding-right',
'border-width',
'box-sizing',
2019-01-12 03:33:27 +00:00
];
2017-12-06 10:54:20 +00:00
2019-01-12 03:33:27 +00:00
const computedStyleCache = {};
let hiddenTextarea;
2017-12-06 10:54:20 +00:00
2019-04-07 09:19:18 +00:00
export function calculateNodeStyling(node, useCache = false) {
2019-01-12 03:33:27 +00:00
const nodeRef =
node.getAttribute('id') || node.getAttribute('data-reactid') || node.getAttribute('name');
2017-12-06 10:54:20 +00:00
if (useCache && computedStyleCache[nodeRef]) {
2019-01-12 03:33:27 +00:00
return computedStyleCache[nodeRef];
2017-12-06 10:54:20 +00:00
}
2019-01-12 03:33:27 +00:00
const style = window.getComputedStyle(node);
2017-12-06 10:54:20 +00:00
2019-01-03 12:51:56 +00:00
const boxSizing =
2017-12-06 10:54:20 +00:00
style.getPropertyValue('box-sizing') ||
2019-01-03 12:51:56 +00:00
style.getPropertyValue('-moz-box-sizing') ||
2019-01-12 03:33:27 +00:00
style.getPropertyValue('-webkit-box-sizing');
2017-12-06 10:54:20 +00:00
2019-01-03 12:51:56 +00:00
const paddingSize =
2017-12-06 10:54:20 +00:00
parseFloat(style.getPropertyValue('padding-bottom')) +
2019-01-12 03:33:27 +00:00
parseFloat(style.getPropertyValue('padding-top'));
2017-12-06 10:54:20 +00:00
2019-01-03 12:51:56 +00:00
const borderSize =
2017-12-06 10:54:20 +00:00
parseFloat(style.getPropertyValue('border-bottom-width')) +
2019-01-12 03:33:27 +00:00
parseFloat(style.getPropertyValue('border-top-width'));
2017-12-06 10:54:20 +00:00
2019-01-12 03:33:27 +00:00
const sizingStyle = SIZING_STYLE.map(name => `${name}:${style.getPropertyValue(name)}`).join(';');
2017-12-06 10:54:20 +00:00
const nodeInfo = {
sizingStyle,
paddingSize,
borderSize,
boxSizing,
2019-01-12 03:33:27 +00:00
};
2017-12-06 10:54:20 +00:00
if (useCache && nodeRef) {
2019-01-12 03:33:27 +00:00
computedStyleCache[nodeRef] = nodeInfo;
2017-12-06 10:54:20 +00:00
}
2019-01-12 03:33:27 +00:00
return nodeInfo;
2017-12-06 10:54:20 +00:00
}
2019-01-12 03:33:27 +00:00
export default function calculateNodeHeight(
2017-12-06 10:54:20 +00:00
uiTextNode,
useCache = false,
minRows = null,
maxRows = null,
) {
if (!hiddenTextarea) {
2019-01-12 03:33:27 +00:00
hiddenTextarea = document.createElement('textarea');
document.body.appendChild(hiddenTextarea);
2017-12-06 10:54:20 +00:00
}
// Fix wrap="off" issue
// https://github.com/ant-design/ant-design/issues/6577
if (uiTextNode.getAttribute('wrap')) {
2019-01-12 03:33:27 +00:00
hiddenTextarea.setAttribute('wrap', uiTextNode.getAttribute('wrap'));
2017-12-06 10:54:20 +00:00
} else {
2019-01-12 03:33:27 +00:00
hiddenTextarea.removeAttribute('wrap');
2017-12-06 10:54:20 +00:00
}
// Copy all CSS properties that have an impact on the height of the content in
// the textbox
2019-01-03 12:51:56 +00:00
const { paddingSize, borderSize, boxSizing, sizingStyle } = calculateNodeStyling(
uiTextNode,
useCache,
2019-01-12 03:33:27 +00:00
);
2017-12-06 10:54:20 +00:00
// Need to have the overflow attribute to hide the scrollbar otherwise
// text-lines will not calculated properly as the shadow will technically be
// narrower for content
2019-01-12 03:33:27 +00:00
hiddenTextarea.setAttribute('style', `${sizingStyle};${HIDDEN_TEXTAREA_STYLE}`);
hiddenTextarea.value = uiTextNode.value || uiTextNode.placeholder || '';
2017-12-06 10:54:20 +00:00
2019-01-12 03:33:27 +00:00
let minHeight = Number.MIN_SAFE_INTEGER;
let maxHeight = Number.MAX_SAFE_INTEGER;
let height = hiddenTextarea.scrollHeight;
let overflowY;
2017-12-06 10:54:20 +00:00
if (boxSizing === 'border-box') {
2019-01-03 12:51:56 +00:00
// border-box: add border, since height = content + padding + border
2019-01-12 03:33:27 +00:00
height = height + borderSize;
2017-12-06 10:54:20 +00:00
} else if (boxSizing === 'content-box') {
2019-01-03 12:51:56 +00:00
// remove padding, since height = content
2019-01-12 03:33:27 +00:00
height = height - paddingSize;
2017-12-06 10:54:20 +00:00
}
if (minRows !== null || maxRows !== null) {
2019-01-03 12:51:56 +00:00
// measure height of a textarea with a single row
2019-01-12 03:33:27 +00:00
hiddenTextarea.value = ' ';
const singleRowHeight = hiddenTextarea.scrollHeight - paddingSize;
2017-12-06 10:54:20 +00:00
if (minRows !== null) {
2019-01-12 03:33:27 +00:00
minHeight = singleRowHeight * minRows;
2017-12-06 10:54:20 +00:00
if (boxSizing === 'border-box') {
2019-01-12 03:33:27 +00:00
minHeight = minHeight + paddingSize + borderSize;
2017-12-06 10:54:20 +00:00
}
2019-01-12 03:33:27 +00:00
height = Math.max(minHeight, height);
2017-12-06 10:54:20 +00:00
}
if (maxRows !== null) {
2019-01-12 03:33:27 +00:00
maxHeight = singleRowHeight * maxRows;
2017-12-06 10:54:20 +00:00
if (boxSizing === 'border-box') {
2019-01-12 03:33:27 +00:00
maxHeight = maxHeight + paddingSize + borderSize;
2017-12-06 10:54:20 +00:00
}
2019-01-12 03:33:27 +00:00
overflowY = height > maxHeight ? '' : 'hidden';
height = Math.min(maxHeight, height);
2017-12-06 10:54:20 +00:00
}
}
// Remove scroll bar flash when autosize without maxRows
2019-01-03 12:51:56 +00:00
// donot remove in vue
2017-12-06 10:54:20 +00:00
if (!maxRows) {
2019-01-12 03:33:27 +00:00
overflowY = 'hidden';
2017-12-06 10:54:20 +00:00
}
2019-01-12 03:33:27 +00:00
return {
height: `${height}px`,
minHeight: `${minHeight}px`,
maxHeight: `${maxHeight}px`,
overflowY,
};
2017-12-06 10:54:20 +00:00
}