mirror of
https://github.com/adoyle0/leptos-use.git
synced 2025-01-22 16:49:22 -05:00
added use_textarea_autosize
This commit is contained in:
parent
82e7655d14
commit
10b1a8a0e8
21 changed files with 828 additions and 10 deletions
1
.idea/leptos-use.iml
generated
1
.idea/leptos-use.iml
generated
|
@ -85,6 +85,7 @@
|
|||
<sourceFolder url="file://$MODULE_DIR$/examples/use_web_lock/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/examples/use_window_size/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/examples/aaaaa/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/examples/use_textarea_autosize/src" isTestSource="false" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/examples/use_event_listener/target" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/target" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/docs/book/book" />
|
||||
|
|
|
@ -3,6 +3,12 @@
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.13.5] - 2024-09-15
|
||||
|
||||
### New Function 🚀
|
||||
|
||||
- `use_textarea_autosize`
|
||||
|
||||
## [0.13.4] - 2024-09-05
|
||||
|
||||
### Fix 🍕
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "leptos-use"
|
||||
version = "0.13.4"
|
||||
version = "0.13.5"
|
||||
edition = "2021"
|
||||
authors = ["Marc-Stefan Cassola"]
|
||||
categories = ["gui", "web-programming"]
|
||||
|
@ -48,6 +48,7 @@ unic-langid = { version = "0.9", features = ["macros"] }
|
|||
|
||||
[features]
|
||||
default = [
|
||||
"use_textarea_autosize",
|
||||
"use_web_lock",
|
||||
"use_window_size",
|
||||
"is_err",
|
||||
|
@ -122,6 +123,12 @@ default = [
|
|||
"watch_with_options",
|
||||
"whenever"
|
||||
]
|
||||
use_textarea_autosize = [
|
||||
"use_resize_observer",
|
||||
"web-sys/CssStyleDeclaration",
|
||||
"web-sys/HtmlElement",
|
||||
"web-sys/HtmlTextAreaElement",
|
||||
]
|
||||
use_web_lock = [
|
||||
"web-sys/AbortSignal",
|
||||
"web-sys/Lock",
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<a href="https://crates.io/crates/leptos-use"><img src="https://img.shields.io/crates/v/leptos-use.svg?label=&color=%232C1275" alt="Crates.io"/></a>
|
||||
<a href="https://leptos-use.rs/server_side_rendering.html"><img src="https://img.shields.io/badge/-SSR-%236a214b" alt="SSR"></a>
|
||||
<a href="https://leptos-use.rs"><img src="https://img.shields.io/badge/-docs%20%26%20demos-%239A233F" alt="Docs & Demos"></a>
|
||||
<a href="https://leptos-use.rs"><img src="https://img.shields.io/badge/-86%20functions-%23EF3939" alt="86 Functions" /></a>
|
||||
<a href="https://leptos-use.rs"><img src="https://img.shields.io/badge/-87%20functions-%23EF3939" alt="87 Functions" /></a>
|
||||
</p>
|
||||
|
||||
<br/>
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
- [use_preferred_dark](browser/use_preferred_dark.md)
|
||||
- [use_prefers_reduced_motion](browser/use_prefers_reduced_motion.md)
|
||||
- [use_service_worker](browser/use_service_worker.md)
|
||||
- [use_textarea_autosize](browser/use_textarea_autosize.md)
|
||||
- [use_user_media](browser/use_user_media.md)
|
||||
- [use_web_lock](browser/use_web_lock.md)
|
||||
- [use_web_notification](browser/use_web_notification.md)
|
||||
|
|
3
docs/book/src/browser/use_textarea_autosize.md
Normal file
3
docs/book/src/browser/use_textarea_autosize.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# use_textarea_autosize
|
||||
|
||||
<!-- cmdrun python3 ../extract_doc_comment.py use_textarea_autosize use_textarea_autosize -->
|
|
@ -79,7 +79,8 @@
|
|||
|
||||
.demo-container input[type="text"],
|
||||
.demo-container input[type="search"],
|
||||
.demo-container input[type="number"] {
|
||||
.demo-container input[type="number"],
|
||||
.demo-container textarea {
|
||||
display: block;
|
||||
font-size: 90%;
|
||||
padding: .5em 1em .4em;
|
||||
|
@ -96,6 +97,7 @@
|
|||
.demo-container textarea {
|
||||
background: var(--bg);
|
||||
border: 1px solid var(--theme-popup-border);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.demo-container input[type=range],
|
||||
|
|
|
@ -12,6 +12,6 @@
|
|||
<a href="https://crates.io/crates/leptos-use"><img src="https://img.shields.io/crates/v/leptos-use.svg?label=&color=%232C1275" alt="Crates.io"/></a>
|
||||
<a href="https://leptos-use.rs/server_side_rendering.html"><img src="https://img.shields.io/badge/-SSR-%236a214b" alt="SSR"></a>
|
||||
<a href="./get_started.html"><img src="https://img.shields.io/badge/-docs%20%26%20demos-%239A233F" alt="Docs & Demos"></a>
|
||||
<a href="./functions.html"><img src="https://img.shields.io/badge/-86%20functions-%23EF3939" alt="86 Functions" /></a>
|
||||
<a href="./functions.html"><img src="https://img.shields.io/badge/-87%20functions-%23EF3939" alt="87 Functions" /></a>
|
||||
</p>
|
||||
</div>
|
|
@ -55,6 +55,7 @@ members = [
|
|||
"use_service_worker",
|
||||
"use_sorted",
|
||||
"use_storage",
|
||||
"use_textarea_autosize",
|
||||
"use_throttle_fn",
|
||||
"use_timeout_fn",
|
||||
"use_timestamp",
|
||||
|
|
16
examples/use_textarea_autosize/Cargo.toml
Normal file
16
examples/use_textarea_autosize/Cargo.toml
Normal file
|
@ -0,0 +1,16 @@
|
|||
[package]
|
||||
name = "use_textarea_autosize"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
leptos = { version = "0.6", features = ["nightly", "csr"] }
|
||||
console_error_panic_hook = "0.1"
|
||||
console_log = "1"
|
||||
log = "0.4"
|
||||
leptos-use = { path = "../..", features = ["use_textarea_autosize", "docs"] }
|
||||
web-sys = "0.3"
|
||||
|
||||
[dev-dependencies]
|
||||
wasm-bindgen = "0.2"
|
||||
wasm-bindgen-test = "0.3.0"
|
23
examples/use_textarea_autosize/README.md
Normal file
23
examples/use_textarea_autosize/README.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
A simple example for `use_textarea_autosize`.
|
||||
|
||||
If you don't have it installed already, install [Trunk](https://trunkrs.dev/) and [Tailwind](https://tailwindcss.com/docs/installation)
|
||||
as well as the nightly toolchain for Rust and the wasm32-unknown-unknown target:
|
||||
|
||||
```bash
|
||||
cargo install trunk
|
||||
npm install -D tailwindcss @tailwindcss/forms
|
||||
rustup toolchain install nightly
|
||||
rustup target add wasm32-unknown-unknown
|
||||
```
|
||||
|
||||
Then, open two terminals. In the first one, run:
|
||||
|
||||
```
|
||||
npx tailwindcss -i ./input.css -o ./style/output.css --watch
|
||||
```
|
||||
|
||||
In the second one, run:
|
||||
|
||||
```bash
|
||||
trunk serve --open
|
||||
```
|
2
examples/use_textarea_autosize/Trunk.toml
Normal file
2
examples/use_textarea_autosize/Trunk.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[build]
|
||||
public_url = "/demo/"
|
7
examples/use_textarea_autosize/index.html
Normal file
7
examples/use_textarea_autosize/index.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link data-trunk rel="css" href="style/output.css">
|
||||
</head>
|
||||
<body></body>
|
||||
</html>
|
3
examples/use_textarea_autosize/input.css
Normal file
3
examples/use_textarea_autosize/input.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
2
examples/use_textarea_autosize/rust-toolchain.toml
Normal file
2
examples/use_textarea_autosize/rust-toolchain.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[toolchain]
|
||||
channel = "nightly"
|
34
examples/use_textarea_autosize/src/main.rs
Normal file
34
examples/use_textarea_autosize/src/main.rs
Normal file
|
@ -0,0 +1,34 @@
|
|||
use leptos::*;
|
||||
use leptos_use::docs::demo_or_body;
|
||||
use leptos_use::{use_textarea_autosize, UseTextareaAutosizeReturn};
|
||||
|
||||
#[component]
|
||||
fn Demo() -> impl IntoView {
|
||||
let textarea = create_node_ref::<html::Textarea>();
|
||||
|
||||
let UseTextareaAutosizeReturn {
|
||||
content,
|
||||
set_content,
|
||||
..
|
||||
} = use_textarea_autosize(textarea);
|
||||
|
||||
view! {
|
||||
<div class="mb-4">Type, the textarea will grow:</div>
|
||||
<textarea
|
||||
value=content
|
||||
on:input=move |evt| set_content.set(event_target_value(&evt))
|
||||
node_ref=textarea
|
||||
class="resize-none box-border"
|
||||
placeholder="What's on your mind?"
|
||||
/>
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {
|
||||
_ = console_log::init_with_level(log::Level::Debug);
|
||||
console_error_panic_hook::set_once();
|
||||
|
||||
mount_to(demo_or_body(), || {
|
||||
view! { <Demo /> }
|
||||
})
|
||||
}
|
342
examples/use_textarea_autosize/style/output.css
Normal file
342
examples/use_textarea_autosize/style/output.css
Normal file
|
@ -0,0 +1,342 @@
|
|||
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
background-color: #fff;
|
||||
border-color: #6b7280;
|
||||
border-width: 1px;
|
||||
border-radius: 0px;
|
||||
padding-top: 0.5rem;
|
||||
padding-right: 0.75rem;
|
||||
padding-bottom: 0.5rem;
|
||||
padding-left: 0.75rem;
|
||||
font-size: 1rem;
|
||||
line-height: 1.5rem;
|
||||
--tw-shadow: 0 0 #0000;
|
||||
}
|
||||
|
||||
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
|
||||
outline: 2px solid transparent;
|
||||
outline-offset: 2px;
|
||||
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
||||
--tw-ring-offset-width: 0px;
|
||||
--tw-ring-offset-color: #fff;
|
||||
--tw-ring-color: #2563eb;
|
||||
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
||||
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
||||
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||||
border-color: #2563eb;
|
||||
}
|
||||
|
||||
input::-moz-placeholder, textarea::-moz-placeholder {
|
||||
color: #6b7280;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
input::placeholder,textarea::placeholder {
|
||||
color: #6b7280;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
::-webkit-datetime-edit-fields-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-date-and-time-value {
|
||||
min-height: 1.5em;
|
||||
text-align: inherit;
|
||||
}
|
||||
|
||||
::-webkit-datetime-edit {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
select {
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
|
||||
background-position: right 0.5rem center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 1.5em 1.5em;
|
||||
padding-right: 2.5rem;
|
||||
-webkit-print-color-adjust: exact;
|
||||
print-color-adjust: exact;
|
||||
}
|
||||
|
||||
[multiple],[size]:where(select:not([size="1"])) {
|
||||
background-image: initial;
|
||||
background-position: initial;
|
||||
background-repeat: unset;
|
||||
background-size: initial;
|
||||
padding-right: 0.75rem;
|
||||
-webkit-print-color-adjust: unset;
|
||||
print-color-adjust: unset;
|
||||
}
|
||||
|
||||
[type='checkbox'],[type='radio'] {
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
padding: 0;
|
||||
-webkit-print-color-adjust: exact;
|
||||
print-color-adjust: exact;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
background-origin: border-box;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
flex-shrink: 0;
|
||||
height: 1rem;
|
||||
width: 1rem;
|
||||
color: #2563eb;
|
||||
background-color: #fff;
|
||||
border-color: #6b7280;
|
||||
border-width: 1px;
|
||||
--tw-shadow: 0 0 #0000;
|
||||
}
|
||||
|
||||
[type='checkbox'] {
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
[type='radio'] {
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
[type='checkbox']:focus,[type='radio']:focus {
|
||||
outline: 2px solid transparent;
|
||||
outline-offset: 2px;
|
||||
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
||||
--tw-ring-offset-width: 2px;
|
||||
--tw-ring-offset-color: #fff;
|
||||
--tw-ring-color: #2563eb;
|
||||
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
||||
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
||||
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||||
}
|
||||
|
||||
[type='checkbox']:checked,[type='radio']:checked {
|
||||
border-color: transparent;
|
||||
background-color: currentColor;
|
||||
background-size: 100% 100%;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
[type='checkbox']:checked {
|
||||
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
|
||||
}
|
||||
|
||||
@media (forced-colors: active) {
|
||||
[type='checkbox']:checked {
|
||||
-webkit-appearance: auto;
|
||||
-moz-appearance: auto;
|
||||
appearance: auto;
|
||||
}
|
||||
}
|
||||
|
||||
[type='radio']:checked {
|
||||
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
|
||||
}
|
||||
|
||||
@media (forced-colors: active) {
|
||||
[type='radio']:checked {
|
||||
-webkit-appearance: auto;
|
||||
-moz-appearance: auto;
|
||||
appearance: auto;
|
||||
}
|
||||
}
|
||||
|
||||
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
|
||||
border-color: transparent;
|
||||
background-color: currentColor;
|
||||
}
|
||||
|
||||
[type='checkbox']:indeterminate {
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
|
||||
border-color: transparent;
|
||||
background-color: currentColor;
|
||||
background-size: 100% 100%;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
@media (forced-colors: active) {
|
||||
[type='checkbox']:indeterminate {
|
||||
-webkit-appearance: auto;
|
||||
-moz-appearance: auto;
|
||||
appearance: auto;
|
||||
}
|
||||
}
|
||||
|
||||
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
|
||||
border-color: transparent;
|
||||
background-color: currentColor;
|
||||
}
|
||||
|
||||
[type='file'] {
|
||||
background: unset;
|
||||
border-color: inherit;
|
||||
border-width: 0;
|
||||
border-radius: 0;
|
||||
padding: 0;
|
||||
font-size: unset;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
[type='file']:focus {
|
||||
outline: 1px solid ButtonText;
|
||||
outline: 1px auto -webkit-focus-ring-color;
|
||||
}
|
||||
|
||||
*, ::before, ::after {
|
||||
--tw-border-spacing-x: 0;
|
||||
--tw-border-spacing-y: 0;
|
||||
--tw-translate-x: 0;
|
||||
--tw-translate-y: 0;
|
||||
--tw-rotate: 0;
|
||||
--tw-skew-x: 0;
|
||||
--tw-skew-y: 0;
|
||||
--tw-scale-x: 1;
|
||||
--tw-scale-y: 1;
|
||||
--tw-pan-x: ;
|
||||
--tw-pan-y: ;
|
||||
--tw-pinch-zoom: ;
|
||||
--tw-scroll-snap-strictness: proximity;
|
||||
--tw-gradient-from-position: ;
|
||||
--tw-gradient-via-position: ;
|
||||
--tw-gradient-to-position: ;
|
||||
--tw-ordinal: ;
|
||||
--tw-slashed-zero: ;
|
||||
--tw-numeric-figure: ;
|
||||
--tw-numeric-spacing: ;
|
||||
--tw-numeric-fraction: ;
|
||||
--tw-ring-inset: ;
|
||||
--tw-ring-offset-width: 0px;
|
||||
--tw-ring-offset-color: #fff;
|
||||
--tw-ring-color: rgb(59 130 246 / 0.5);
|
||||
--tw-ring-offset-shadow: 0 0 #0000;
|
||||
--tw-ring-shadow: 0 0 #0000;
|
||||
--tw-shadow: 0 0 #0000;
|
||||
--tw-shadow-colored: 0 0 #0000;
|
||||
--tw-blur: ;
|
||||
--tw-brightness: ;
|
||||
--tw-contrast: ;
|
||||
--tw-grayscale: ;
|
||||
--tw-hue-rotate: ;
|
||||
--tw-invert: ;
|
||||
--tw-saturate: ;
|
||||
--tw-sepia: ;
|
||||
--tw-drop-shadow: ;
|
||||
--tw-backdrop-blur: ;
|
||||
--tw-backdrop-brightness: ;
|
||||
--tw-backdrop-contrast: ;
|
||||
--tw-backdrop-grayscale: ;
|
||||
--tw-backdrop-hue-rotate: ;
|
||||
--tw-backdrop-invert: ;
|
||||
--tw-backdrop-opacity: ;
|
||||
--tw-backdrop-saturate: ;
|
||||
--tw-backdrop-sepia: ;
|
||||
--tw-contain-size: ;
|
||||
--tw-contain-layout: ;
|
||||
--tw-contain-paint: ;
|
||||
--tw-contain-style: ;
|
||||
}
|
||||
|
||||
::backdrop {
|
||||
--tw-border-spacing-x: 0;
|
||||
--tw-border-spacing-y: 0;
|
||||
--tw-translate-x: 0;
|
||||
--tw-translate-y: 0;
|
||||
--tw-rotate: 0;
|
||||
--tw-skew-x: 0;
|
||||
--tw-skew-y: 0;
|
||||
--tw-scale-x: 1;
|
||||
--tw-scale-y: 1;
|
||||
--tw-pan-x: ;
|
||||
--tw-pan-y: ;
|
||||
--tw-pinch-zoom: ;
|
||||
--tw-scroll-snap-strictness: proximity;
|
||||
--tw-gradient-from-position: ;
|
||||
--tw-gradient-via-position: ;
|
||||
--tw-gradient-to-position: ;
|
||||
--tw-ordinal: ;
|
||||
--tw-slashed-zero: ;
|
||||
--tw-numeric-figure: ;
|
||||
--tw-numeric-spacing: ;
|
||||
--tw-numeric-fraction: ;
|
||||
--tw-ring-inset: ;
|
||||
--tw-ring-offset-width: 0px;
|
||||
--tw-ring-offset-color: #fff;
|
||||
--tw-ring-color: rgb(59 130 246 / 0.5);
|
||||
--tw-ring-offset-shadow: 0 0 #0000;
|
||||
--tw-ring-shadow: 0 0 #0000;
|
||||
--tw-shadow: 0 0 #0000;
|
||||
--tw-shadow-colored: 0 0 #0000;
|
||||
--tw-blur: ;
|
||||
--tw-brightness: ;
|
||||
--tw-contrast: ;
|
||||
--tw-grayscale: ;
|
||||
--tw-hue-rotate: ;
|
||||
--tw-invert: ;
|
||||
--tw-saturate: ;
|
||||
--tw-sepia: ;
|
||||
--tw-drop-shadow: ;
|
||||
--tw-backdrop-blur: ;
|
||||
--tw-backdrop-brightness: ;
|
||||
--tw-backdrop-contrast: ;
|
||||
--tw-backdrop-grayscale: ;
|
||||
--tw-backdrop-hue-rotate: ;
|
||||
--tw-backdrop-invert: ;
|
||||
--tw-backdrop-opacity: ;
|
||||
--tw-backdrop-saturate: ;
|
||||
--tw-backdrop-sepia: ;
|
||||
--tw-contain-size: ;
|
||||
--tw-contain-layout: ;
|
||||
--tw-contain-paint: ;
|
||||
--tw-contain-style: ;
|
||||
}
|
||||
|
||||
.static {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.mb-4 {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.box-border {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.grow {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.resize-none {
|
||||
resize: none;
|
||||
}
|
||||
|
||||
.text-\[--brand-color\] {
|
||||
color: var(--brand-color);
|
||||
}
|
||||
|
||||
.text-green-600 {
|
||||
--tw-text-opacity: 1;
|
||||
color: rgb(22 163 74 / var(--tw-text-opacity));
|
||||
}
|
||||
|
||||
.opacity-75 {
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.dark\:text-green-500 {
|
||||
--tw-text-opacity: 1;
|
||||
color: rgb(34 197 94 / var(--tw-text-opacity));
|
||||
}
|
||||
}
|
15
examples/use_textarea_autosize/tailwind.config.js
Normal file
15
examples/use_textarea_autosize/tailwind.config.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: {
|
||||
files: ["*.html", "./src/**/*.rs", "../../src/docs/**/*.rs"],
|
||||
},
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
corePlugins: {
|
||||
preflight: false,
|
||||
},
|
||||
plugins: [
|
||||
require('@tailwindcss/forms'),
|
||||
],
|
||||
}
|
|
@ -126,6 +126,8 @@ mod use_service_worker;
|
|||
mod use_sorted;
|
||||
#[cfg(feature = "use_supported")]
|
||||
mod use_supported;
|
||||
#[cfg(feature = "use_textarea_autosize")]
|
||||
mod use_textarea_autosize;
|
||||
#[cfg(feature = "use_throttle_fn")]
|
||||
mod use_throttle_fn;
|
||||
#[cfg(feature = "use_timeout_fn")]
|
||||
|
@ -272,6 +274,8 @@ pub use use_service_worker::*;
|
|||
pub use use_sorted::*;
|
||||
#[cfg(feature = "use_supported")]
|
||||
pub use use_supported::*;
|
||||
#[cfg(feature = "use_textarea_autosize")]
|
||||
pub use use_textarea_autosize::*;
|
||||
#[cfg(feature = "use_throttle_fn")]
|
||||
pub use use_throttle_fn::*;
|
||||
#[cfg(feature = "use_timeout_fn")]
|
||||
|
|
345
src/use_textarea_autosize.rs
Normal file
345
src/use_textarea_autosize.rs
Normal file
|
@ -0,0 +1,345 @@
|
|||
use crate::core::{ElementMaybeSignal, MaybeRwSignal};
|
||||
use default_struct_builder::DefaultBuilder;
|
||||
use leptos::*;
|
||||
use std::rc::Rc;
|
||||
|
||||
/// Automatically update the height of a textarea depending on the content.
|
||||
///
|
||||
/// ## Demo
|
||||
///
|
||||
/// [Link to Demo](https://github.com/Synphonyte/leptos-use/tree/main/examples/use_textarea_autosize)
|
||||
///
|
||||
/// ## Usage
|
||||
///
|
||||
/// ### Simple example
|
||||
///
|
||||
/// ```
|
||||
/// # use leptos::*;
|
||||
/// # use leptos::html::Textarea;
|
||||
/// # use leptos_use::{use_textarea_autosize, UseTextareaAutosizeReturn};
|
||||
/// #
|
||||
/// # #[component]
|
||||
/// # fn Demo() -> impl IntoView {
|
||||
/// let textarea = create_node_ref::<Textarea>();
|
||||
///
|
||||
/// let UseTextareaAutosizeReturn {
|
||||
/// content,
|
||||
/// set_content,
|
||||
/// trigger_resize
|
||||
/// } = use_textarea_autosize(textarea);
|
||||
///
|
||||
/// view! {
|
||||
/// <textarea
|
||||
/// value=content
|
||||
/// on:input=move |evt| set_content.set(event_target_value(&evt))
|
||||
/// node_ref=textarea
|
||||
/// class="resize-none"
|
||||
/// placeholder="What's on your mind?"
|
||||
/// />
|
||||
/// }
|
||||
/// # }
|
||||
/// ```
|
||||
///
|
||||
/// > Make sure that you set `box-sizing: border-box` on the textarea element.
|
||||
/// >
|
||||
/// > It's also recommended to reset the scrollbar styles for the textarea element to avoid
|
||||
/// > incorrect height values for large amounts of text.
|
||||
///
|
||||
/// ```css
|
||||
/// textarea {
|
||||
/// -ms-overflow-style: none;
|
||||
/// scrollbar-width: none;
|
||||
/// }
|
||||
///
|
||||
/// textarea::-webkit-scrollbar {
|
||||
/// display: none;
|
||||
/// }
|
||||
/// ```
|
||||
///
|
||||
/// ### With `rows` attribute
|
||||
///
|
||||
/// If you need support for the rows attribute on a textarea element, then you should set the
|
||||
/// `style_prop` option to `"min-height"`.
|
||||
///
|
||||
/// ```
|
||||
/// # use leptos::*;
|
||||
/// # use leptos::html::Textarea;
|
||||
/// # use leptos_use::{use_textarea_autosize_with_options, UseTextareaAutosizeOptions, UseTextareaAutosizeReturn};
|
||||
/// #
|
||||
/// # #[component]
|
||||
/// # fn Demo() -> impl IntoView {
|
||||
/// let textarea = create_node_ref::<Textarea>();
|
||||
///
|
||||
/// let UseTextareaAutosizeReturn {
|
||||
/// content,
|
||||
/// set_content,
|
||||
/// ..
|
||||
/// } = use_textarea_autosize_with_options(
|
||||
/// textarea,
|
||||
/// UseTextareaAutosizeOptions::default().style_prop("min-height"),
|
||||
/// );
|
||||
///
|
||||
/// view! {
|
||||
/// <textarea
|
||||
/// value=content
|
||||
/// on:input=move |evt| set_content.set(event_target_value(&evt))
|
||||
/// node_ref=textarea
|
||||
/// class="resize-none"
|
||||
/// placeholder="What's on your mind?"
|
||||
/// rows="3"
|
||||
/// />
|
||||
/// }
|
||||
/// # }
|
||||
/// ```
|
||||
///
|
||||
/// ## Server-Side Rendering
|
||||
///
|
||||
/// On the server this will always return an empty string as ´content` and a no-op `trigger_resize`.
|
||||
// #[doc(cfg(feature = "use_textarea_autosize"))]
|
||||
pub fn use_textarea_autosize<El, T>(el: El) -> UseTextareaAutosizeReturn<impl Fn() + Clone>
|
||||
where
|
||||
El: Into<ElementMaybeSignal<T, web_sys::Element>> + Clone,
|
||||
T: Into<web_sys::Element> + Clone + 'static,
|
||||
{
|
||||
use_textarea_autosize_with_options::<El, T, web_sys::Element>(
|
||||
el,
|
||||
UseTextareaAutosizeOptions::default(),
|
||||
)
|
||||
}
|
||||
|
||||
/// Version of [`fn@crate::use_textarea_autosize`] that takes a `UseTextareaAutosizeOptions`. See [`fn@crate::use_textarea_autosize`] for how to use.
|
||||
// #[doc(cfg(feature = "use_textarea_autosize"))]
|
||||
pub fn use_textarea_autosize_with_options<El, T, StyleT>(
|
||||
el: El,
|
||||
options: UseTextareaAutosizeOptions<StyleT>,
|
||||
) -> UseTextareaAutosizeReturn<impl Fn() + Clone>
|
||||
where
|
||||
El: Into<ElementMaybeSignal<T, web_sys::Element>> + Clone,
|
||||
T: Into<web_sys::Element> + Clone + 'static,
|
||||
StyleT: Into<web_sys::Element> + Clone + 'static,
|
||||
{
|
||||
#[cfg(not(feature = "ssr"))]
|
||||
{
|
||||
use wasm_bindgen::JsCast;
|
||||
|
||||
let el = el.into();
|
||||
let textarea = Signal::derive(move || {
|
||||
el.get()
|
||||
.map(|el| el.into().unchecked_into::<web_sys::HtmlTextAreaElement>())
|
||||
});
|
||||
|
||||
let UseTextareaAutosizeOptions {
|
||||
content,
|
||||
watch: watch_fn,
|
||||
on_resize,
|
||||
style_target,
|
||||
style_prop,
|
||||
} = options;
|
||||
|
||||
let (content, set_content) = content.into_signal();
|
||||
|
||||
let (textarea_scroll_height, set_textarea_scroll_height) = create_signal(1);
|
||||
let (textarea_old_width, set_textarea_old_width) = create_signal(0.0);
|
||||
|
||||
let trigger_resize = move || {
|
||||
textarea.with(|textarea| {
|
||||
if let Some(textarea) = textarea {
|
||||
let mut height = "".to_string();
|
||||
|
||||
let border_offset =
|
||||
if let Ok(Some(style)) = window().get_computed_style(textarea) {
|
||||
(parse_num(
|
||||
&style
|
||||
.get_property_value("border-top-width")
|
||||
.unwrap_or_default(),
|
||||
) + parse_num(
|
||||
&style
|
||||
.get_property_value("border-bottom-width")
|
||||
.unwrap_or_default(),
|
||||
)) as i32
|
||||
} else {
|
||||
0
|
||||
};
|
||||
|
||||
textarea.style().set_property(&style_prop, "1px").ok();
|
||||
set_textarea_scroll_height.set(textarea.scroll_height() + border_offset + 1);
|
||||
|
||||
if let Some(style_target) = style_target.get() {
|
||||
// If style target is provided update its height
|
||||
style_target
|
||||
.into()
|
||||
.unchecked_into::<web_sys::HtmlElement>()
|
||||
.style()
|
||||
.set_property(
|
||||
&style_prop,
|
||||
&format!("{}px", textarea_scroll_height.get_untracked()),
|
||||
)
|
||||
.ok();
|
||||
} else {
|
||||
// else update textarea's height by updating height variable
|
||||
height = format!("{}px", textarea_scroll_height.get_untracked());
|
||||
}
|
||||
|
||||
textarea.style().set_property(&style_prop, &height).ok();
|
||||
}
|
||||
})
|
||||
};
|
||||
|
||||
let _ = watch(
|
||||
move || {
|
||||
content.track();
|
||||
textarea.track();
|
||||
},
|
||||
{
|
||||
let trigger_resize = trigger_resize.clone();
|
||||
|
||||
move |_, _, _| {
|
||||
trigger_resize();
|
||||
}
|
||||
},
|
||||
true,
|
||||
);
|
||||
|
||||
let _ = watch(
|
||||
move || textarea_scroll_height.track(),
|
||||
move |_, _, _| {
|
||||
on_resize();
|
||||
},
|
||||
false,
|
||||
);
|
||||
|
||||
crate::use_resize_observer(textarea, {
|
||||
let trigger_resize = trigger_resize.clone();
|
||||
|
||||
move |entries, _| {
|
||||
for entry in entries {
|
||||
let width = entry.content_rect().width();
|
||||
|
||||
if width != textarea_old_width.get_untracked() {
|
||||
set_textarea_old_width.set(width);
|
||||
trigger_resize();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
let _ = watch(
|
||||
move || watch_fn(),
|
||||
{
|
||||
let trigger_resize = trigger_resize.clone();
|
||||
|
||||
move |_, _, _| {
|
||||
trigger_resize();
|
||||
}
|
||||
},
|
||||
false,
|
||||
);
|
||||
|
||||
UseTextareaAutosizeReturn {
|
||||
content,
|
||||
set_content,
|
||||
trigger_resize,
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(feature = "ssr")]
|
||||
{
|
||||
let _ = el;
|
||||
let _ = options;
|
||||
|
||||
let (content, set_content) = create_signal("".to_string());
|
||||
|
||||
UseTextareaAutosizeReturn {
|
||||
content: content.into(),
|
||||
set_content,
|
||||
trigger_resize: || {},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Options for [`fn@crate::use_textarea_autosize_with_options`].
|
||||
// #[doc(cfg(feature = "use_textarea_autosize"))]
|
||||
#[derive(DefaultBuilder)]
|
||||
#[cfg_attr(feature = "ssr", allow(dead_code))]
|
||||
pub struct UseTextareaAutosizeOptions<T>
|
||||
where
|
||||
T: Into<web_sys::Element> + Clone + 'static,
|
||||
{
|
||||
/// Textarea content
|
||||
#[builder(into)]
|
||||
content: MaybeRwSignal<String>,
|
||||
|
||||
/// Watch sources that should trigger a textarea resize
|
||||
watch: Rc<dyn Fn()>,
|
||||
|
||||
/// Function called when the textarea size changes
|
||||
on_resize: Rc<dyn Fn()>,
|
||||
|
||||
/// Specify style target to apply the height based on textarea content.
|
||||
/// If not provided it will use textarea it self.
|
||||
#[builder(skip)]
|
||||
style_target: ElementMaybeSignal<T, web_sys::Element>,
|
||||
|
||||
/// Specify the style property that will be used to manipulate height.
|
||||
/// Should be `"height"` or `"min-height"`. Default value is `"height"`.
|
||||
#[builder(into)]
|
||||
style_prop: String,
|
||||
}
|
||||
|
||||
impl Default for UseTextareaAutosizeOptions<web_sys::Element> {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
content: MaybeRwSignal::default(),
|
||||
watch: Rc::new(|| ()),
|
||||
on_resize: Rc::new(|| ()),
|
||||
style_target: Default::default(),
|
||||
style_prop: "height".to_string(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> UseTextareaAutosizeOptions<T>
|
||||
where
|
||||
T: Into<web_sys::Element> + Clone + 'static,
|
||||
{
|
||||
/// List of elementss that should not trigger the callback. Defaults to `[]`.
|
||||
#[cfg_attr(feature = "ssr", allow(dead_code))]
|
||||
pub fn style_target<NewT>(
|
||||
self,
|
||||
style_target: impl Into<ElementMaybeSignal<NewT, web_sys::Element>>,
|
||||
) -> UseTextareaAutosizeOptions<NewT>
|
||||
where
|
||||
NewT: Into<web_sys::Element> + Clone + 'static,
|
||||
{
|
||||
UseTextareaAutosizeOptions {
|
||||
content: self.content,
|
||||
watch: self.watch,
|
||||
on_resize: self.on_resize,
|
||||
style_target: style_target.into(),
|
||||
style_prop: self.style_prop,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Return type of [`fn@crate::use_textarea_autosize`].
|
||||
// #[doc(cfg(feature = "use_textarea_autosize"))]
|
||||
pub struct UseTextareaAutosizeReturn<F>
|
||||
where
|
||||
F: Fn() + Clone,
|
||||
{
|
||||
/// The textarea content
|
||||
pub content: Signal<String>,
|
||||
|
||||
/// Set the textarea content
|
||||
pub set_content: WriteSignal<String>,
|
||||
|
||||
/// Function to trigger a textarea resize manually
|
||||
pub trigger_resize: F,
|
||||
}
|
||||
|
||||
#[cfg(not(feature = "ssr"))]
|
||||
fn parse_num(s: &str) -> u32 {
|
||||
s.chars()
|
||||
.map_while(|c| c.to_digit(10))
|
||||
.fold(0, |acc, digit| acc * 10 + digit)
|
||||
}
|
|
@ -1,5 +1,4 @@
|
|||
use crate::core::MaybeRwSignal;
|
||||
use cfg_if::cfg_if;
|
||||
use default_struct_builder::DefaultBuilder;
|
||||
use leptos::*;
|
||||
use wasm_bindgen::{JsCast, JsValue};
|
||||
|
@ -62,7 +61,8 @@ pub fn use_user_media_with_options(
|
|||
let (stream, set_stream) = create_signal(None::<Result<web_sys::MediaStream, JsValue>>);
|
||||
|
||||
let _start = move || async move {
|
||||
cfg_if! { if #[cfg(not(feature = "ssr"))] {
|
||||
#[cfg(not(feature = "ssr"))]
|
||||
{
|
||||
if stream.get_untracked().is_some() {
|
||||
return;
|
||||
}
|
||||
|
@ -70,10 +70,13 @@ pub fn use_user_media_with_options(
|
|||
let stream = create_media(video, audio).await;
|
||||
|
||||
set_stream.update(|s| *s = Some(stream));
|
||||
} else {
|
||||
}
|
||||
|
||||
#[cfg(feature = "ssr")]
|
||||
{
|
||||
let _ = video;
|
||||
let _ = audio;
|
||||
}}
|
||||
}
|
||||
};
|
||||
|
||||
let _stop = move || {
|
||||
|
@ -87,7 +90,8 @@ pub fn use_user_media_with_options(
|
|||
};
|
||||
|
||||
let start = move || {
|
||||
cfg_if! { if #[cfg(not(feature = "ssr"))] {
|
||||
#[cfg(not(feature = "ssr"))]
|
||||
{
|
||||
spawn_local(async move {
|
||||
_start().await;
|
||||
stream.with_untracked(move |stream| {
|
||||
|
@ -96,7 +100,7 @@ pub fn use_user_media_with_options(
|
|||
}
|
||||
});
|
||||
});
|
||||
}}
|
||||
}
|
||||
};
|
||||
|
||||
let stop = move || {
|
||||
|
|
Loading…
Add table
Reference in a new issue