mirror of
https://github.com/joel-st/kunkun-nostr-nip-19.git
synced 2025-04-03 01:36:43 +00:00
fix textarea adjust height issue on first render
This commit is contained in:
parent
3a3546a18e
commit
5fb3c902cc
6
dist/assets/index-B5dIneCy.js
vendored
6
dist/assets/index-B5dIneCy.js
vendored
File diff suppressed because one or more lines are too long
1
dist/assets/index-DlSAFVEZ.css
vendored
Normal file
1
dist/assets/index-DlSAFVEZ.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/assets/index-JjVny7Es.css
vendored
1
dist/assets/index-JjVny7Es.css
vendored
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
4
dist/index.html
vendored
@ -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>
|
||||
|
@ -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",
|
||||
|
@ -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,27 +12,33 @@ export const Textarea = connect([
|
||||
],
|
||||
storeActions)(({ input, setInput, placeholder, }) => {
|
||||
const textareaRef = useRef(null);
|
||||
const [inputHasChanged, setInputHasChanged] = useState(false);
|
||||
|
||||
// Function to adjust the height
|
||||
const adjustHeight = () => {
|
||||
const textarea = textareaRef.current;
|
||||
if (!textarea) return;
|
||||
|
||||
|
||||
// Reset height temporarily to get the correct scrollHeight
|
||||
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 => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user