mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* feat(components): [input] add `modelModifiers` prop * refactor: update * refactor: update * fix: input uncontrolled in lazy mode * docs: add desc * perf: cache `Object.keys(props.modelModifiers).length` Co-authored-by: warmthsea <2586244885@qq.com> --------- Co-authored-by: warmthsea <2586244885@qq.com> Co-authored-by: btea <2356281422@qq.com>
128 lines
3.1 KiB
TypeScript
128 lines
3.1 KiB
TypeScript
import { isFirefox, isNumber } from '@element-plus/utils'
|
|
|
|
let hiddenTextarea: HTMLTextAreaElement | undefined = undefined
|
|
|
|
const HIDDEN_STYLE = {
|
|
height: '0',
|
|
visibility: 'hidden',
|
|
overflow: isFirefox() ? '' : 'hidden',
|
|
position: 'absolute',
|
|
'z-index': '-1000',
|
|
top: '0',
|
|
right: '0',
|
|
}
|
|
|
|
const CONTEXT_STYLE = [
|
|
'letter-spacing',
|
|
'line-height',
|
|
'padding-top',
|
|
'padding-bottom',
|
|
'font-family',
|
|
'font-weight',
|
|
'font-size',
|
|
'text-rendering',
|
|
'text-transform',
|
|
'width',
|
|
'text-indent',
|
|
'padding-left',
|
|
'padding-right',
|
|
'border-width',
|
|
'box-sizing',
|
|
'word-break',
|
|
]
|
|
|
|
type NodeStyle = {
|
|
contextStyle: string[][]
|
|
boxSizing: string
|
|
paddingSize: number
|
|
borderSize: number
|
|
}
|
|
|
|
type TextAreaHeight = {
|
|
height: string
|
|
minHeight?: string
|
|
}
|
|
|
|
export const looseToNumber = (val: any): any => {
|
|
const n = Number.parseFloat(val)
|
|
return Number.isNaN(n) ? val : n
|
|
}
|
|
|
|
function calculateNodeStyling(targetElement: Element): NodeStyle {
|
|
const style = window.getComputedStyle(targetElement)
|
|
|
|
const boxSizing = style.getPropertyValue('box-sizing')
|
|
|
|
const paddingSize =
|
|
Number.parseFloat(style.getPropertyValue('padding-bottom')) +
|
|
Number.parseFloat(style.getPropertyValue('padding-top'))
|
|
|
|
const borderSize =
|
|
Number.parseFloat(style.getPropertyValue('border-bottom-width')) +
|
|
Number.parseFloat(style.getPropertyValue('border-top-width'))
|
|
|
|
const contextStyle = CONTEXT_STYLE.map((name) => [
|
|
name,
|
|
style.getPropertyValue(name),
|
|
])
|
|
|
|
return { contextStyle, paddingSize, borderSize, boxSizing }
|
|
}
|
|
|
|
export function calcTextareaHeight(
|
|
targetElement: HTMLTextAreaElement,
|
|
minRows = 1,
|
|
maxRows?: number
|
|
): TextAreaHeight {
|
|
if (!hiddenTextarea) {
|
|
hiddenTextarea = document.createElement('textarea')
|
|
;(targetElement.parentNode ?? document.body).appendChild(hiddenTextarea)
|
|
}
|
|
|
|
const { paddingSize, borderSize, boxSizing, contextStyle } =
|
|
calculateNodeStyling(targetElement)
|
|
|
|
contextStyle.forEach(([key, value]) =>
|
|
hiddenTextarea?.style.setProperty(key, value)
|
|
)
|
|
|
|
Object.entries(HIDDEN_STYLE).forEach(([key, value]) =>
|
|
hiddenTextarea?.style.setProperty(key, value, 'important')
|
|
)
|
|
|
|
hiddenTextarea.value = targetElement.value || targetElement.placeholder || ''
|
|
|
|
let height = hiddenTextarea.scrollHeight
|
|
const result = {} as TextAreaHeight
|
|
|
|
if (boxSizing === 'border-box') {
|
|
height = height + borderSize
|
|
} else if (boxSizing === 'content-box') {
|
|
height = height - paddingSize
|
|
}
|
|
|
|
hiddenTextarea.value = ''
|
|
const singleRowHeight = hiddenTextarea.scrollHeight - paddingSize
|
|
|
|
if (isNumber(minRows)) {
|
|
let minHeight = singleRowHeight * minRows
|
|
if (boxSizing === 'border-box') {
|
|
minHeight = minHeight + paddingSize + borderSize
|
|
}
|
|
height = Math.max(minHeight, height)
|
|
result.minHeight = `${minHeight}px`
|
|
}
|
|
if (isNumber(maxRows)) {
|
|
let maxHeight = singleRowHeight * maxRows
|
|
if (boxSizing === 'border-box') {
|
|
maxHeight = maxHeight + paddingSize + borderSize
|
|
}
|
|
height = Math.min(maxHeight, height)
|
|
}
|
|
result.height = `${height}px`
|
|
hiddenTextarea.parentNode?.removeChild(hiddenTextarea)
|
|
hiddenTextarea = undefined
|
|
|
|
return result
|
|
}
|