fix textarea adjust height issue on first render

This commit is contained in:
Lone 2025-03-13 11:44:54 +00:00
parent 3a3546a18e
commit 5fb3c902cc
7 changed files with 18 additions and 19 deletions

File diff suppressed because one or more lines are too long

1
dist/assets/index-DlSAFVEZ.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
dist/index.html vendored
View File

@ -5,8 +5,8 @@
<link rel="icon" type="image/svg+xml" href="/extension.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kunkun Nostr NIP-19</title>
<script type="module" crossorigin src="/assets/index-B5dIneCy.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-JjVny7Es.css">
<script type="module" crossorigin src="/assets/index-pucRp8ky.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-DlSAFVEZ.css">
</head>
<body>
<div id="root"></div>

View File

@ -2,7 +2,7 @@
"$schema": "https://schema.kunkun.sh",
"name": "kunkun-ext-nostr-nip-19",
"license": "CC0-1.0",
"version": "0.0.991",
"version": "0.0.992",
"type": "module",
"kunkun": {
"name": "Nostr NIP-19",

View File

@ -1,7 +1,6 @@
import { Textarea as KKTextarea } from "@kksh/react"
import { useEffect, useRef } from "preact/hooks"
import { useEffect, useRef, useState } from "preact/hooks"
import { connect } from 'unistore/preact';
import { generateSecretKey } from 'nostr-tools/pure'
// store
import { storeActions } from "@store"
@ -13,6 +12,7 @@ export const Textarea = connect([
],
storeActions)(({ input, setInput, placeholder, }) => {
const textareaRef = useRef(null);
const [inputHasChanged, setInputHasChanged] = useState(false);
// Function to adjust the height
const adjustHeight = () => {
@ -23,17 +23,22 @@ storeActions)(({ input, setInput, placeholder, }) => {
textarea.style.height = 'auto';
// Set the height to match content
textarea.style.height = `${textarea.scrollHeight}px`;
console.log(textarea.scrollHeight)
};
// Adjust height when input changes
useEffect(() => {
adjustHeight();
if (!inputHasChanged &&input.length > 0) {
setInputHasChanged(true);
adjustHeight();
}
if (inputHasChanged && textareaRef.current) {
adjustHeight();
}
}, [input]);
return (<KKTextarea
ref={textareaRef}
className="w-full h-full max-w-full min-h-[40px] overflow-hidden resize-none"
className="w-full h-auto max-w-full min-h-[40px] overflow-hidden"
placeholder={placeholder}
value={input}
onChange={e => {