forked from ChatGPTNextWeb/NextChat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ChatGPTNextWeb#318 from leedom92/textarea-height-o…
…ptimize feat: textarea with adaptive height
- Loading branch information
Showing
9 changed files
with
155 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ async function makeRequest(req: NextRequest) { | |
}, | ||
{ | ||
status: 500, | ||
} | ||
}, | ||
); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
/** | ||
* fork from element-plus | ||
* https://github.com/element-plus/element-plus/blob/dev/packages/components/input/src/utils.ts | ||
*/ | ||
|
||
import { isFirefox } from "./utils"; | ||
|
||
let hiddenTextarea: HTMLTextAreaElement | undefined = undefined; | ||
|
||
const HIDDEN_STYLE = ` | ||
height:0 !important; | ||
visibility:hidden !important; | ||
${isFirefox() ? "" : "overflow:hidden !important;"} | ||
position:absolute !important; | ||
z-index:-1000 !important; | ||
top:0 !important; | ||
right:0 !important; | ||
`; | ||
|
||
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", | ||
]; | ||
|
||
type NodeStyle = { | ||
contextStyle: string; | ||
boxSizing: string; | ||
paddingSize: number; | ||
borderSize: number; | ||
}; | ||
|
||
type TextAreaHeight = { | ||
height: string; | ||
minHeight?: string; | ||
}; | ||
|
||
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)}`, | ||
).join(";"); | ||
|
||
return { contextStyle, paddingSize, borderSize, boxSizing }; | ||
} | ||
|
||
export default function calcTextareaHeight( | ||
targetElement: HTMLTextAreaElement, | ||
minRows: number = 2, | ||
maxRows?: number, | ||
): TextAreaHeight { | ||
if (!hiddenTextarea) { | ||
hiddenTextarea = document.createElement("textarea"); | ||
document.body.appendChild(hiddenTextarea); | ||
} | ||
|
||
const { paddingSize, borderSize, boxSizing, contextStyle } = | ||
calculateNodeStyling(targetElement); | ||
|
||
hiddenTextarea.setAttribute("style", `${contextStyle};${HIDDEN_STYLE}`); | ||
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 (minRows) { | ||
let minHeight = singleRowHeight * minRows; | ||
if (boxSizing === "border-box") { | ||
minHeight = minHeight + paddingSize + borderSize; | ||
} | ||
height = Math.max(minHeight, height); | ||
result.minHeight = `${minHeight}px`; | ||
} | ||
if (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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters