leptos_ui 0.1.36

Macros to build UI components easily with Leptos and Tailwind CSS.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
pub use leptos::prelude::*;
pub use tw_merge::*;

pub use crate::utils::Utils;

/// A macro that creates a component with tailwind class merging
///
/// # Example
///
/// ```
/// use leptos::prelude::*;
/// use leptos_ui::clx;
///
/// // Define the component
/// clx! {Card, div, "rounded-lg p-4", "bg-sky-500"} // 🩵
///
/// #[component]
/// pub fn DemoCard() -> impl IntoView {
///     view! {
///         <Card>"Default: bg-sky-500 🩵"</Card>
///         <Card class="bg-orange-500">"Override: bg-orange-500 🧡"</Card>
///         // └──> 🤯 NO CLASS CONFLICT! Still using the SAME component.
///     }
/// }
/// ```
#[macro_export]
macro_rules! clx {
    ($name:ident, $element:ident, $($base_class:expr),+ $(,)?) => {
        #[component]
        pub fn $name(
            #[prop(into, optional)] class: Signal<String>,
            #[prop(into, optional)] style: Option<String>,
            #[prop(into, optional)] onclick: Option<String>,
            #[prop(into, optional)] title: Option<String>,
            #[prop(into, optional)] id: Option<String>,
            #[prop(optional)] role: Option<&'static str>,
            #[prop(optional)] onclose: Option<&'static str>,
            #[prop(optional)] tabindex: Option<&'static str>,
            #[prop(optional)] aria_hidden: Option<&'static str>,
            #[prop(optional)] aria_label: Option<&'static str>,
            #[prop(optional)] aria_disabled: Option<&'static str>,
            #[prop(optional)] aria_checked: Option<&'static str>,
            #[prop(optional)] aria_current: Option<&'static str>,
            #[prop(optional)] aria_haspopup: Option<&'static str>,
            #[prop(optional)] aria_expanded: Option<&'static str>,
            #[prop(optional)] aria_selected: Option<&'static str>,
            #[prop(optional)] aria_valuemin: Option<&'static str>,
            #[prop(optional)] aria_valuemax: Option<&'static str>,
            #[prop(optional)] aria_valuenow: Option<&'static str>,
            #[prop(optional)] aria_orientation: Option<&'static str>,
            #[prop(optional)] data_state: Option<&'static str>,
            #[prop(optional)] data_side: Option<&'static str>,
            #[prop(optional)] data_orientation: Option<&'static str>,
            #[prop(optional)] dir: Option<&'static str>,
            children: Children,
        ) -> impl IntoView {
            let merged_classes = Memo::new(move |_| {
                tw_merge::tw_merge!(tw_merge::tw_join!($($base_class),+), class())
            });

            view! {
                <$element
                    class=merged_classes
                    data-name=stringify!($name)
                    style=style
                    id=id
                    role=role
                    onclick=onclick
                    onclose=onclose
                    tabindex=tabindex
                    title=title
                    aria-hidden=aria_hidden
                    aria-label=aria_label
                    aria-disabled=aria_disabled
                    aria-checked=aria_checked
                    aria-current=aria_current
                    aria-haspopup=aria_haspopup
                    aria-expanded=aria_expanded
                    aria-selected=aria_selected
                    aria-valuemin=aria_valuemin
                    aria-valuemax=aria_valuemax
                    aria-valuenow=aria_valuenow
                    aria-orientation=aria_orientation
                    data-state=data_state
                    data-side=data_side
                    data-orientation=data_orientation
                    dir=dir
                >
                    {children()}
                </$element>
            }
        }
    };
}

/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/*                     ✨ NO CHILDREN ✨                       */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

// * Special macro since input doesn't accept children.
#[macro_export]
macro_rules! input {
    ($name:ident, $($base_class:expr),+ $(,)?) => {
        #[component]
        pub fn $name(
            #[prop(into, optional)] class: Signal<String>,
            #[prop(into, optional)] r#type: Option<String>,
            #[prop(optional_no_strip)] value: Option<ReadSignal<String>>,
            #[prop(optional)] placeholder: Option<&'static str>,
            #[prop(optional)] name: Option<&'static str>,
            #[prop(optional)] id: Option<&'static str>,
            #[prop(into, optional)] min: Option<String>,
            #[prop(into, optional)] step: Option<String>,
            #[prop(into, optional)] max: Option<String>,
            #[prop(into, optional)] autofocus: bool,
            #[prop(optional)] autocomplete: Option<&'static str>,
            #[prop(optional)] required: bool,
            #[prop(optional)] onfocus: Option<&'static str>,
            #[prop(optional)] onblur: Option<&'static str>,
            #[prop(optional)] checked: bool,
        ) -> impl IntoView {
            let merged_classes = Memo::new(move |_| {
                tw_merge::tw_merge!(tw_merge::tw_join!($($base_class),+), class())
            });

            view! {
                <input
                    class=merged_classes
                    name=name
                    data-name=stringify!($name)
                    value=value
                    type=r#type
                    placeholder=placeholder
                    required=required
                    min=min
                    step=step
                    max=max
                    autofocus=autofocus
                    autocomplete=autocomplete
                    onfocus=onfocus
                    onblur=onblur
                    checked=checked
                />
            }
        }
    };
}

// * Special macro since img doesn't accept children.
#[macro_export]
macro_rules! img {
    ($name:ident, $($base_class:expr),+ $(,)?) => {
        #[component]
        pub fn $name(
            #[prop(into, optional)] class: Signal<String>,
            #[prop(optional)] src: Option<&'static str>,
            #[prop(optional)] alt: Option<&'static str>,
        ) -> impl IntoView {
            let merged_classes = Memo::new(move |_| {
                tw_merge::tw_merge!(tw_merge::tw_join!($($base_class),+), class())
            });

            view! {
                <img
                    class=merged_classes
                    src=src
                    alt=alt
                />
            }
        }
    };
}

// * Special macro for button (with r#type).
#[macro_export]
macro_rules! button {
    ($name:ident, $($base_class:expr),+ $(,)?) => {
        #[component]
        pub fn $name(
            #[prop(into, optional)] class: Signal<String>,
            #[prop(into, optional)] style: Option<String>,
            #[prop(into, optional)] title: Option<String>,
            #[prop(into, optional)] id: Option<String>,
            #[prop(optional)] r#type: Option<&'static str>,
            #[prop(optional)] role: Option<&'static str>,
            #[prop(optional)] onclick: Option<&'static str>,
            #[prop(optional)] onclose: Option<&'static str>,
            #[prop(optional)] tabindex: Option<&'static str>,
            #[prop(optional)] aria_hidden: Option<&'static str>,
            #[prop(optional)] aria_label: Option<&'static str>,
            #[prop(optional)] aria_disabled: Option<&'static str>,
            #[prop(optional)] aria_checked: Option<&'static str>,
            #[prop(optional)] aria_haspopup: Option<&'static str>,
            #[prop(optional)] aria_expanded: Option<&'static str>,
            #[prop(optional)] aria_current: bool,
            #[prop(optional)] aria_selected: bool,
            #[prop(optional)] aria_valuemin: Option<&'static str>,
            #[prop(optional)] aria_valuemax: Option<&'static str>,
            #[prop(optional)] aria_valuenow: Option<&'static str>,
            #[prop(optional)] aria_orientation: Option<&'static str>,
            #[prop(optional)] data_state: Option<&'static str>,
            #[prop(optional)] data_orientation: Option<&'static str>,
            #[prop(optional)] dir: Option<&'static str>,
            #[prop(optional)] disabled: bool,
            // TODO. Merge properly with aria_current and aria_selected. Will be removed in the future.
            // TODO. I don't know yet if it's better to have bool or static &str.
            #[prop(optional)] data_current: Option<&'static str>,
            #[prop(optional)] data_selected: Option<&'static str>,
            children: Children,
        ) -> impl IntoView {
            let merged_classes = Memo::new(move |_| {
                tw_merge::tw_merge!(tw_merge::tw_join!($($base_class),+), class())
            });

            view! {
                <button
                class=merged_classes
                data-name=stringify!($name)
                style=style
                r#type=r#type
                id=id
                role=role
                onclick=onclick
                onclose=onclose
                tabindex=tabindex
                title=title
                disabled=disabled
                aria-hidden=aria_hidden
                aria-label=aria_label
                aria-disabled=aria_disabled
                aria-checked=aria_checked
                aria-haspopup=aria_haspopup
                aria-expanded=aria_expanded
                aria-current=aria_current
                aria-selected=aria_selected
                aria-valuemin=aria_valuemin
                aria-valuemax=aria_valuemax
                aria-valuenow=aria_valuenow
                aria-orientation=aria_orientation
                data-state=data_state
                data-orientation=data_orientation
                dir=dir
                data-current=data_current
                data-selected=data_selected
                >
                    {children()}
                </button>
            }
        }
    };
}

// * Special macro for div that don't accept children.
#[macro_export]
macro_rules! div {
    ($name:ident, $($base_class:expr),+ $(,)?) => {
        #[component]
        pub fn $name(
            #[prop(into, optional)] class: Signal<String>,
            #[prop(into, optional)] style: Option<String>,
            #[prop(into, optional)] title: Option<String>,
            #[prop(into, optional)] id: Option<String>,
            #[prop(optional)] onclick: Option<&'static str>,
            #[prop(optional)] role: Option<&'static str>,
            #[prop(optional)] tabindex: Option<&'static str>,
            #[prop(optional)] aria_hidden: Option<&'static str>,
            #[prop(optional)] aria_label: Option<&'static str>,
            #[prop(optional)] aria_disabled: Option<&'static str>,
            #[prop(optional)] data_side: Option<&'static str>,
            #[prop(optional)] data_state: Option<&'static str>,
            #[prop(optional)] data_orientation: Option<&'static str>,
            #[prop(optional)] dir: Option<&'static str>,
        ) -> impl IntoView {
            let merged_classes = Memo::new(move |_| {
                tw_merge::tw_merge!(tw_merge::tw_join!($($base_class),+), class())
            });

            view! {
                <div
                    class=merged_classes
                    data-name=stringify!($name)
                    style=style
                    id=id
                    onclick=onclick
                    role=role
                    tabindex=tabindex
                    title=title
                    aria-hidden=aria_hidden
                    aria-label=aria_label
                    aria-disabled=aria_disabled
                    data-side=data_side
                    data-state=data_state
                    data-orientation=data_orientation
                    dir=dir
                />
            }
        }
    };
}

// * Special macro for span that don't accept children.
#[macro_export]
macro_rules! span {
    ($name:ident, $($base_class:expr),+ $(,)?) => {
        #[component]
        pub fn $name(
            #[prop(into, optional)] class: Signal<String>,
            #[prop(into, optional)] style: Option<String>,
            #[prop(into, optional)] id: Option<String>,
            #[prop(optional)] data_state: Option<&'static str>,
            #[prop(optional)] aria_valuemin: Option<&'static str>,
            #[prop(optional)] aria_valuemax: Option<&'static str>,
            #[prop(optional)] aria_valuenow: Option<&'static str>,
            #[prop(optional)] aria_orientation: Option<&'static str>,
            #[prop(optional)] data_orientation: Option<&'static str>,
            #[prop(optional)] dir: Option<&'static str>,
        ) -> impl IntoView {
            let merged_classes = Memo::new(move |_| {
                tw_merge::tw_merge!(tw_merge::tw_join!($($base_class),+), class())
            });

            view! {
                <span
                    class=merged_classes
                    data-name=stringify!($name)
                    style=style
                    id=id
                    data-state=data_state
                    aria-valuemin=aria_valuemin
                    aria-valuemax=aria_valuemax
                    aria-valuenow=aria_valuenow
                    aria-orientation=aria_orientation
                    data-orientation=data_orientation
                    dir=dir
                />
            }
        }
    };
}

#[macro_export]
macro_rules! a {
    ($name:ident, $($base_class:expr),+ $(,)?) => {
        #[component]
        pub fn $name(
            #[prop(into, optional)] class: Signal<String>,
            #[prop(into, optional)] href: Option<String>,
            #[prop(into, optional)] id: Option<String>,
            #[prop(optional)] aria_hidden: Option<&'static str>,
            #[prop(optional)] aria_label: Option<&'static str>,
            #[prop(optional)] aria_disabled: Option<&'static str>,
            #[prop(optional)] aria_checked: Option<&'static str>,
            #[prop(optional)] aria_haspopup: Option<&'static str>,
            #[prop(optional)] aria_expanded: Option<&'static str>,
            #[prop(optional)] aria_current: Option<&'static str>,
            #[prop(optional)] aria_selected: Option<&'static str>,
            #[prop(optional)] aria_valuemin: Option<&'static str>,
            #[prop(optional)] aria_valuemax: Option<&'static str>,
            #[prop(optional)] aria_valuenow: Option<&'static str>,
            #[prop(optional)] aria_orientation: Option<&'static str>,
            #[prop(optional)] data_state: Option<&'static str>,
            #[prop(optional)] data_active: Option<&'static str>,
            children: Children,
        ) -> impl IntoView {
            let merged_classes = Memo::new(move |_| {
                tw_merge::tw_merge!(tw_merge::tw_join!($($base_class),+), class())
            });

            view! {
                <a
                    class=merged_classes
                    href=href
                    id=id
                    aria-hidden=aria_hidden
                    aria-label=aria_label
                    aria-disabled=aria_disabled
                    aria-checked=aria_checked
                    aria-haspopup=aria_haspopup
                    aria-expanded=aria_expanded
                    aria-current=aria_current
                    aria-selected=aria_selected
                    aria-valuemin=aria_valuemin
                    aria-valuemax=aria_valuemax
                    aria-valuenow=aria_valuenow
                    aria-orientation=aria_orientation
                    data-state=data_state
                    data-active=data_active
                >
                    {children()}
                </a>
            }
        }
    };
}

/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/*                     ✨ FUNCTIONS ✨                        */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

// * Must be used with Utils::use_random_transition_name().
#[macro_export]
macro_rules! transition {
    ($name:ident, $element:ident, $($base_class:expr),+ $(,)?) => {
        #[component]
        pub fn $name(
            #[prop(into, optional)] class: Signal<String>,
            #[prop(into, optional)] id: Option<String>,
            #[prop(optional)] role: Option<&'static str>,
            #[prop(optional)] onclick: Option<&'static str>,
            #[prop(optional)] onclose: Option<&'static str>,
            #[prop(optional)] tabindex: Option<&'static str>,
            children: Children,
        ) -> impl IntoView {
            let merged_classes = Memo::new(move |_| {
                tw_merge::tw_merge!(tw_merge::tw_join!($($base_class),+), class())
            });

            let random_name = Utils::use_random_transition_name();

            view! {
                <$element
                    class=merged_classes
                    style=random_name
                    role=role
                    onclick=onclick
                    onclose=onclose
                    id=id
                    tabindex=tabindex
                >
                    {children()}
                </$element>
            }
        }
    };
}