fluix 0.1.23

Rust UI components for GPUI
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
use gpui::*;
use fluix::{Button, ButtonVariant, ComponentSize, ButtonEvent, Icon, IconName};

fn main() {
    env_logger::init();

    let app = Application::new().with_assets(fluix::Assets);

    app.run(move |cx| {
        let window_options = WindowOptions {
            window_bounds: Some(WindowBounds::Windowed(Bounds {
                origin: point(px(100.), px(100.)),
                size: size(px(900.), px(1000.)),
            })),
            titlebar: Some(TitlebarOptions {
                title: Some("Fluix Button Variants Demo".into()),
                appears_transparent: false,
                ..Default::default()
            }),
            ..Default::default()
        };

        cx.open_window(window_options, |window, cx| {
            cx.new(|cx| ButtonVariantsDemo::new(window, cx))
        }).unwrap();
    });
}

struct ButtonVariantsDemo {
    scroll_handle: ScrollHandle,
    // Variants
    default_button: Entity<Button>,
    outline_button: Entity<Button>,
    secondary_button: Entity<Button>,
    danger_button: Entity<Button>,
    text_button: Entity<Button>,
    // Sizes
    small_button: Entity<Button>,
    large_button: Entity<Button>,
    // States
    disabled_button: Entity<Button>,
}

impl ButtonVariantsDemo {
    fn new(window: &mut Window, cx: &mut Context<Self>) -> Self {
        let scroll_handle = ScrollHandle::new();

        // Variants
        let default_button = cx.new(|_cx| {
            Button::new("Button")
                .variant(ButtonVariant::Primary)
                .size(ComponentSize::Medium)
        });

        let outline_button = cx.new(|_cx| {
            Button::new("Button")
                .variant(ButtonVariant::Outline)
                .size(ComponentSize::Medium)
        });

        let secondary_button = cx.new(|_cx| {
            Button::new("Button")
                .variant(ButtonVariant::Secondary)
                .size(ComponentSize::Medium)
        });

        let danger_button = cx.new(|_cx| {
            Button::new("Button")
                .variant(ButtonVariant::Danger)
                .size(ComponentSize::Medium)
        });

        let text_button = cx.new(|_cx| {
            Button::new("Button")
                .variant(ButtonVariant::Text)
                .size(ComponentSize::Medium)
        });

        // Sizes
        let small_button = cx.new(|_cx| {
            Button::new("Button")
                .variant(ButtonVariant::Primary)
                .size(ComponentSize::Small)
        });

        let large_button = cx.new(|_cx| {
            Button::new("Button")
                .variant(ButtonVariant::Primary)
                .size(ComponentSize::Large)
        });

        // States
        let disabled_button = cx.new(|_cx| {
            Button::new("Button")
                .variant(ButtonVariant::Primary)
                .size(ComponentSize::Medium)
                .disabled(true)
        });

        // Subscribe to events
        cx.subscribe_in(&default_button, window, Self::on_button_click).detach();
        cx.subscribe_in(&outline_button, window, Self::on_button_click).detach();
        cx.subscribe_in(&secondary_button, window, Self::on_button_click).detach();
        cx.subscribe_in(&danger_button, window, Self::on_button_click).detach();
        cx.subscribe_in(&text_button, window, Self::on_button_click).detach();
        cx.subscribe_in(&small_button, window, Self::on_button_click).detach();
        cx.subscribe_in(&large_button, window, Self::on_button_click).detach();

        Self {
            scroll_handle,
            default_button,
            outline_button,
            secondary_button,
            danger_button,
            text_button,
            small_button,
            large_button,
            disabled_button,
        }
    }

    fn on_button_click(
        &mut self,
        _button: &Entity<Button>,
        _event: &ButtonEvent,
        _window: &mut Window,
        _cx: &mut Context<Self>,
    ) {
        println!("Button clicked!");
    }
}

impl Render for ButtonVariantsDemo {
    fn render(&mut self, _: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
        div()
            .size_full()
            .overflow_hidden()
            .child(
                div()
                    .id("scroll-container")
                    .size_full()
                    .overflow_y_scroll()
                    .track_scroll(&self.scroll_handle)
                    .child(
                        div()
                            .flex()
                            .flex_col()
                            .w_full()
                            .bg(rgb(0xFFFFFF))
                            .p_8()
                            .gap_6()
                            .child(
                                div()
                                    .flex()
                                    .flex_col()
                                    .w_full()
                                    .max_w(px(800.))
                                    .mx_auto()
                                    .gap_6()
                                    // Header
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_2()
                                            .child(
                                                div()
                                                    .text_3xl()
                                                    .font_weight(FontWeight::BOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("Button Variants")
                                            )
                                            .child(
                                                div()
                                                    .text_sm()
                                                    .text_color(rgb(0x6B7280))
                                                    .child("Different button styles and states")
                                            )
                                    )
                                    // Default
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_3()
                                            .child(
                                                div()
                                                    .text_lg()
                                                    .font_weight(FontWeight::SEMIBOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("Default")
                                            )
                                            .child(
                                                div()
                                                    .flex()
                                                    .w_auto()
                                                    .child(self.default_button.clone())
                                            )
                                    )
                                    // Outline
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_3()
                                            .child(
                                                div()
                                                    .text_lg()
                                                    .font_weight(FontWeight::SEMIBOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("Outline")
                                            )
                                            .child(
                                                div()
                                                    .flex()
                                                    .w_auto()
                                                    .child(self.outline_button.clone())
                                            )
                                    )
                                    // Secondary
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_3()
                                            .child(
                                                div()
                                                    .text_lg()
                                                    .font_weight(FontWeight::SEMIBOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("Secondary")
                                            )
                                            .child(
                                                div()
                                                    .flex()
                                                    .w_auto()
                                                    .child(self.secondary_button.clone())
                                            )
                                    )
                                    // Danger
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_3()
                                            .child(
                                                div()
                                                    .text_lg()
                                                    .font_weight(FontWeight::SEMIBOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("Danger")
                                            )
                                            .child(
                                                div()
                                                    .flex()
                                                    .w_auto()
                                                    .child(self.danger_button.clone())
                                            )
                                    )
                                    // Text
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_3()
                                            .child(
                                                div()
                                                    .text_lg()
                                                    .font_weight(FontWeight::SEMIBOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("Text")
                                            )
                                            .child(
                                                div()
                                                    .flex()
                                                    .w_auto()
                                                    .child(self.text_button.clone())
                                            )
                                    )
                                    // Small Size
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_3()
                                            .child(
                                                div()
                                                    .text_lg()
                                                    .font_weight(FontWeight::SEMIBOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("Small Size")
                                            )
                                            .child(
                                                div()
                                                    .flex()
                                                    .w_auto()
                                                    .child(self.small_button.clone())
                                            )
                                    )
                                    // Large Size
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_3()
                                            .child(
                                                div()
                                                    .text_lg()
                                                    .font_weight(FontWeight::SEMIBOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("Large Size")
                                            )
                                            .child(
                                                div()
                                                    .flex()
                                                    .w_auto()
                                                    .child(self.large_button.clone())
                                            )
                                    )
                                    // Disabled
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_3()
                                            .child(
                                                div()
                                                    .text_lg()
                                                    .font_weight(FontWeight::SEMIBOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("Disabled")
                                            )
                                            .child(
                                                div()
                                                    .flex()
                                                    .w_auto()
                                                    .child(self.disabled_button.clone())
                                            )
                                    )
                                    // With Icon - button with icon and text
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_3()
                                            .child(
                                                div()
                                                    .text_lg()
                                                    .font_weight(FontWeight::SEMIBOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("With Icon")
                                            )
                                            .child(
                                                div()
                                                    .flex()
                                                    .w_auto()
                                                    .gap_2()
                                                    .child(
                                                        div()
                                                            .flex()
                                                            .items_center()
                                                            .justify_center()
                                                            .gap_2()
                                                            .py(px(8.))  // Match ComponentSize::Medium padding_y
                                                            .px(px(16.))  // Match ComponentSize::Medium padding_x
                                                            .min_w(px(88.))  // Match ComponentSize::Medium min_width
                                                            .text_size(px(14.))  // Match ComponentSize::Medium font_size
                                                            .rounded(px(8.))
                                                            .bg(rgb(0x696FC7))
                                                            .text_color(rgb(0xFFFFFF))
                                                            .font_weight(FontWeight::MEDIUM)
                                                            .cursor(CursorStyle::PointingHand)
                                                            .shadow(vec![BoxShadow {
                                                                color: rgba(0x00000018).into(),
                                                                offset: point(px(0.), px(1.)),
                                                                blur_radius: px(2.),
                                                                spread_radius: px(0.),
                                                            }])
                                                            .on_mouse_down(MouseButton::Left, cx.listener(|_this, _event: &MouseDownEvent, _window, _cx| {
                                                                println!("Button with Send icon clicked!");
                                                            }))
                                                            .child(
                                                                Icon::new(IconName::Send)
                                                                    .size(fluix::IconSize::Small)
                                                                    .color(rgb(0xFFFFFF))
                                                            )
                                                            .child("Send")
                                                    )
                                                    .child(
                                                        div()
                                                            .flex()
                                                            .items_center()
                                                            .justify_center()
                                                            .gap_2()
                                                            .py(px(8.))  // Match ComponentSize::Medium padding_y
                                                            .px(px(16.))  // Match ComponentSize::Medium padding_x
                                                            .min_w(px(88.))  // Match ComponentSize::Medium min_width
                                                            .text_size(px(14.))  // Match ComponentSize::Medium font_size
                                                            .rounded(px(8.))
                                                            .bg(rgb(0x10B981))
                                                            .text_color(rgb(0xFFFFFF))
                                                            .font_weight(FontWeight::MEDIUM)
                                                            .cursor(CursorStyle::PointingHand)
                                                            .shadow(vec![BoxShadow {
                                                                color: rgba(0x00000018).into(),
                                                                offset: point(px(0.), px(1.)),
                                                                blur_radius: px(2.),
                                                                spread_radius: px(0.),
                                                            }])
                                                            .on_mouse_down(MouseButton::Left, cx.listener(|_this, _event: &MouseDownEvent, _window, _cx| {
                                                                println!("Button with Check icon clicked!");
                                                            }))
                                                            .child(
                                                                Icon::new(IconName::Check)
                                                                    .size(fluix::IconSize::Small)
                                                                    .color(rgb(0xFFFFFF))
                                                            )
                                                            .child("Save")
                                                    )
                                                    .child(
                                                        div()
                                                            .flex()
                                                            .items_center()
                                                            .justify_center()
                                                            .gap_2()
                                                            .py(px(8.))  // Match ComponentSize::Medium padding_y
                                                            .px(px(16.))  // Match ComponentSize::Medium padding_x
                                                            .min_w(px(88.))  // Match ComponentSize::Medium min_width
                                                            .text_size(px(14.))  // Match ComponentSize::Medium font_size
                                                            .rounded(px(8.))
                                                            .bg(rgb(0xF3F4F6))
                                                            .text_color(rgb(0x374151))
                                                            .font_weight(FontWeight::MEDIUM)
                                                            .cursor(CursorStyle::PointingHand)
                                                            .shadow(vec![BoxShadow {
                                                                color: rgba(0x00000018).into(),
                                                                offset: point(px(0.), px(1.)),
                                                                blur_radius: px(2.),
                                                                spread_radius: px(0.),
                                                            }])
                                                            .on_mouse_down(MouseButton::Left, cx.listener(|_this, _event: &MouseDownEvent, _window, _cx| {
                                                                println!("Button with Plus icon clicked!");
                                                            }))
                                                            .child(
                                                                Icon::new(IconName::Plus)
                                                                    .size(fluix::IconSize::Small)
                                                                    .color(rgb(0x374151))
                                                            )
                                                            .child("Add")
                                                    )
                                            )
                                    )
                                    // Icon Button - only icon, no text
                                    .child(
                                        div()
                                            .flex()
                                            .flex_col()
                                            .gap_3()
                                            .child(
                                                div()
                                                    .text_lg()
                                                    .font_weight(FontWeight::SEMIBOLD)
                                                    .text_color(rgb(0x111827))
                                                    .child("Icon Button")
                                            )
                                            .child(
                                                div()
                                                    .flex()
                                                    .w_auto()
                                                    .gap_2()
                                                    .child(
                                                        div()
                                                            .flex()
                                                            .items_center()
                                                            .justify_center()
                                                            .size(px(36.))
                                                            .rounded(px(8.))
                                                            .bg(rgb(0x696FC7))
                                                            .cursor(CursorStyle::PointingHand)
                                                            .shadow(vec![BoxShadow {
                                                                color: rgba(0x00000018).into(),
                                                                offset: point(px(0.), px(1.)),
                                                                blur_radius: px(2.),
                                                                spread_radius: px(0.),
                                                            }])
                                                            .on_mouse_down(MouseButton::Left, cx.listener(|_this, _event: &MouseDownEvent, _window, _cx| {
                                                                println!("Icon button clicked!");
                                                            }))
                                                            .child(
                                                                Icon::new(IconName::Attachment)
                                                                    .size(fluix::IconSize::Small)
                                                                    .color(rgb(0xFFFFFF))
                                                            )
                                                    )
                                                    .child(
                                                        div()
                                                            .flex()
                                                            .items_center()
                                                            .justify_center()
                                                            .size(px(36.))
                                                            .rounded(px(8.))
                                                            .bg(rgb(0xF3F4F6))
                                                            .cursor(CursorStyle::PointingHand)
                                                            .shadow(vec![BoxShadow {
                                                                color: rgba(0x00000018).into(),
                                                                offset: point(px(0.), px(1.)),
                                                                blur_radius: px(2.),
                                                                spread_radius: px(0.),
                                                            }])
                                                            .on_mouse_down(MouseButton::Left, cx.listener(|_this, _event: &MouseDownEvent, _window, _cx| {
                                                                println!("Icon button (outline) clicked!");
                                                            }))
                                                            .child(
                                                                Icon::new(IconName::Search)
                                                                    .size(fluix::IconSize::Small)
                                                                    .color(rgb(0x374151))
                                                            )
                                                    )
                                                    .child(
                                                        div()
                                                            .flex()
                                                            .items_center()
                                                            .justify_center()
                                                            .size(px(36.))
                                                            .rounded(px(8.))
                                                            .bg(rgb(0xDC2626))
                                                            .cursor(CursorStyle::PointingHand)
                                                            .shadow(vec![BoxShadow {
                                                                color: rgba(0x00000018).into(),
                                                                offset: point(px(0.), px(1.)),
                                                                blur_radius: px(2.),
                                                                spread_radius: px(0.),
                                                            }])
                                                            .on_mouse_down(MouseButton::Left, cx.listener(|_this, _event: &MouseDownEvent, _window, _cx| {
                                                                println!("Icon button (danger) clicked!");
                                                            }))
                                                            .child(
                                                                Icon::new(IconName::Close)
                                                                    .size(fluix::IconSize::Small)
                                                                    .color(rgb(0xFFFFFF))
                                                            )
                                                    )
                                            )
                                    )
                            )
                    )
            )
    }
}