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
#![doc = include_str!("../README.md")]
use std::fmt::Display;

use wasm_bindgen::{__rt::IntoJsResult, prelude::*};
use web_sys::{Element, HtmlElement};
use yew::prelude::*;

mod js;

#[derive(Properties, PartialEq)]
pub struct SplitProps {
    /// Classes to apply to the split container element
    #[prop_or_default]
    pub class: Classes,

    /// Initial sizes of each element
    pub sizes: Option<Vec<f64>>,

    /// Minimum size of all elements (if min_sizes is specified, this will be ignored)
    pub min_size: Option<f64>,

    /// Minimum size of each element
    pub min_sizes: Option<Vec<f64>>,

    /// Maximum size of all elements (if max_sizes is specified, this will be ignored)
    pub max_size: Option<f64>,

    /// Maximum size of each element
    pub max_sizes: Option<Vec<f64>>,

    /// Grow initial sizes to min_size (default: false)
    pub expand_to_min: Option<bool>,

    /// Gutter size in pixels (default: 10)
    pub gutter_size: Option<f64>,

    /// Gutter alignment between elements (default: GutterAlign::Center)
    pub gutter_align: Option<GutterAlign>,

    /// Snap to minimum size offset in pixels (default: 30)
    pub snap_offset: Option<f64>,

    /// Number of pixels to drag (default: 1)
    pub drag_interval: Option<f64>,

    /// Direction to split: horizontal or vertical (default: Direction::Horizontal)
    pub direction: Option<Direction>,

    /// Cursor to display while dragging (default: Cursor::ColResize)
    pub cursor: Option<Cursor>,

    /// Called to create each gutter element
    #[prop_or(
        Closure::<dyn Fn(js_sys::BigInt, String, Element) -> Element>::new(
            |_index, direction, _pair_element| {
                let gutter_element = web_sys::window()
                    .expect_throw("No window")
                    .document()
                    .expect_throw("No document")
                    .create_element("div")
                    .expect_throw("Failed to create gutter div");

                gutter_element.set_class_name(&format!("gutter gutter-{}", direction));
                js_sys::Reflect::set(
                    &gutter_element,
                    &"__isSplitGutter".into(),
                    &true.into(),
                )
                .expect_throw("Unable to set __isSplitGutter property");
                gutter_element
            },
        )
        .into_js_value()
        .into()
    )]
    pub gutter: js_sys::Function,

    /// Called to set the style of each element
    pub element_style: Option<js_sys::Function>,

    /// Called to set the style of the gutter
    pub gutter_style: Option<js_sys::Function>,

    /// Called on drag
    pub on_drag: Option<js_sys::Function>,

    /// Called on drag start
    pub on_drag_start: Option<js_sys::Function>,

    /// Called on drag end
    pub on_drag_end: Option<js_sys::Function>,

    pub collapsed: Option<usize>,

    pub children: Children,
}

pub struct Split {
    parent_ref: NodeRef,
    split: Option<js::Split>,
}

impl Component for Split {
    type Message = ();
    type Properties = SplitProps;

    fn rendered(&mut self, ctx: &Context<Self>, first_render: bool) {
        if first_render {
            let children = self
                .parent_ref
                .cast::<HtmlElement>()
                .unwrap_throw()
                .children();

            let children = js_sys::Array::from(&children);
            let options = ctx.props().make_options_object();
            self.split = Some(js::Split::new(children, options));

            if let Some(collapsed) = ctx.props().collapsed {
                self.split.as_ref().unwrap_throw().collapse(collapsed);
            }
        }
    }

    fn create(_ctx: &Context<Self>) -> Self {
        Self {
            parent_ref: NodeRef::default(),
            split: None,
        }
    }

    fn view(&self, ctx: &Context<Self>) -> Html {
        let SplitProps {
            class, children, ..
        } = ctx.props();

        html! {
            <div class={(*class).clone()} ref={self.parent_ref.clone()}>
                { for children.iter() }
            </div>
        }
    }

    fn changed(&mut self, ctx: &Context<Self>, old_props: &Self::Properties) -> bool {
        let SplitProps {
            sizes,
            min_size,
            min_sizes,
            collapsed,
            ..
        } = ctx.props();

        let SplitProps {
            min_size: old_min_size,
            min_sizes: old_min_sizes,
            sizes: old_sizes,
            collapsed: old_collapsed,
            ..
        } = old_props;

        let mut needs_recreate = ctx.props().other_props_changed(old_props);

        if min_sizes.is_some() && old_min_sizes.is_some() {
            let mut min_size_changed = false;

            min_sizes
                .as_ref()
                .unwrap_throw()
                .iter()
                .enumerate()
                .for_each(|(i, min_size_i)| {
                    min_size_changed |= min_size_i
                        != old_min_sizes.as_ref().unwrap_throw().get(i).expect_throw(
                            "Cannot index min_sizes during update. Did the length change?",
                        );
                });

            needs_recreate |= min_size_changed;
        } else if min_sizes.is_some() || old_min_sizes.is_some() {
            needs_recreate = true;
        } else {
            needs_recreate |= min_size != old_min_size;
        }

        if needs_recreate {
            let options = ctx.props().make_options_object();

            // This is done in the React version, not sure why exactly but I'm doing it as well
            let cur_sizes = js_sys::Reflect::get(&options, &"sizes".into()).unwrap_throw();
            if cur_sizes.is_falsy() {
                js_sys::Reflect::set(
                    &options,
                    &"sizes".into(),
                    &js::Split::get_sizes(self.split.as_ref().unwrap_throw()),
                )
                .unwrap_throw();
            }

            js::Split::destroy(self.split.as_ref().unwrap_throw(), true.into(), true.into());

            // The old gutter creates new div elements, here we just want to get the divs already
            // in the DOM
            let new_gutter: js_sys::Function =
                Closure::<dyn Fn(js_sys::BigInt, String, Element) -> Element>::new(
                    |_index, _direction, pair_element: Element| {
                        pair_element
                            .previous_sibling()
                            .map(|node| node.into_js_result().unwrap_throw())
                            .unwrap_or(JsValue::UNDEFINED)
                            .into()
                    },
                )
                .into_js_value()
                .into();
            js_sys::Reflect::set(&options, &"gutter".into(), &new_gutter).unwrap_throw();

            let non_gutter_children = js_sys::Array::from(
                &self
                    .parent_ref
                    .cast::<HtmlElement>()
                    .expect_throw("No parent during update")
                    .children(),
            )
            .filter(&mut |element, _, _| {
                js_sys::Reflect::get(&element, &"__isSplitGutter".into())
                    .unwrap_throw()
                    .is_falsy()
            });

            self.split = Some(js::Split::new(non_gutter_children, options));
        } else if sizes.is_some() {
            let mut size_changed = false;

            sizes
                .as_ref()
                .unwrap_throw()
                .iter()
                .enumerate()
                .for_each(|(i, size_i)| {
                    size_changed |= size_i
                        != old_sizes.as_ref().unwrap_throw().get(i).expect_throw(
                            "Cannot index sizes during update. Did the length change?",
                        );
                });

            if size_changed {
                let new_sizes = js_sys::Array::new();
                for size in sizes.as_ref().unwrap_throw().iter() {
                    new_sizes.push(&JsValue::from(*size));
                }
                js::Split::set_sizes(self.split.as_ref().unwrap_throw(), new_sizes);
            }
        }

        if collapsed.is_some()
            && (old_collapsed.is_some() && collapsed.unwrap_throw() != old_collapsed.unwrap_throw()
                || needs_recreate)
        {
            js::Split::collapse(self.split.as_ref().unwrap_throw(), collapsed.unwrap_throw());
        }

        true
    }

    fn destroy(&mut self, _ctx: &Context<Self>) {
        js::Split::destroy(
            self.split.as_ref().unwrap_throw(),
            false.into(),
            false.into(),
        );
        self.split = None;
    }
}

#[derive(PartialEq)]
pub enum GutterAlign {
    Start,
    End,
    Center,
}

impl Display for GutterAlign {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            GutterAlign::Start => write!(f, "start"),
            GutterAlign::End => write!(f, "end"),
            GutterAlign::Center => write!(f, "center"),
        }
    }
}

#[derive(PartialEq)]
pub enum Direction {
    Vertical,
    Horizontal,
}

impl Display for Direction {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Direction::Vertical => write!(f, "vertical"),
            Direction::Horizontal => write!(f, "horizontal"),
        }
    }
}

#[derive(PartialEq)]
pub enum Cursor {
    ColResize,
    RowResize,
}

impl Display for Cursor {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Cursor::ColResize => write!(f, "col-resize"),
            Cursor::RowResize => write!(f, "row-resize"),
        }
    }
}

impl SplitProps {
    fn other_props_changed(&self, old_props: &SplitProps) -> bool {
        let SplitProps {
            max_size,
            expand_to_min,
            gutter_size,
            gutter_align,
            snap_offset,
            drag_interval,
            direction,
            cursor,
            ..
        } = self;

        let SplitProps {
            max_size: old_max_size,
            expand_to_min: old_expand_to_min,
            gutter_size: old_gutter_size,
            gutter_align: old_gutter_align,
            snap_offset: old_snap_offset,
            drag_interval: old_drag_interval,
            direction: old_direction,
            cursor: old_cursor,
            ..
        } = old_props;

        max_size != old_max_size
            || expand_to_min != old_expand_to_min
            || gutter_size != old_gutter_size
            || gutter_align != old_gutter_align
            || snap_offset != old_snap_offset
            || drag_interval != old_drag_interval
            || direction != old_direction
            || cursor != old_cursor
    }

    fn set_option<T, F: Fn(&T) -> JsValue>(
        options: &js_sys::Object,
        key: &str,
        value: &Option<T>,
        f: F,
    ) {
        if value.is_some() {
            js_sys::Reflect::set(
                options,
                &key.into(),
                &value.as_ref().map_or(JsValue::UNDEFINED, f),
            )
            .unwrap_throw();
        }
    }

    fn make_options_object(&self) -> js_sys::Object {
        let SplitProps {
            sizes,
            min_size,
            min_sizes,
            max_size,
            max_sizes,
            expand_to_min,
            gutter_size,
            gutter_align,
            snap_offset,
            drag_interval,
            direction,
            cursor,
            gutter,
            element_style,
            gutter_style,
            on_drag,
            on_drag_start,
            on_drag_end,
            ..
        } = self;

        let options = js_sys::Object::new();
        let f64_vec_to_arr = |v: &Vec<f64>| {
            let arr = js_sys::Array::new();
            for val in v.iter() {
                arr.push(&JsValue::from(*val));
            }
            arr.into()
        };

        fn val_to_js<T: Into<JsValue> + Clone>(v: &T) -> JsValue {
            (*v).clone().into()
        }

        fn to_js_string<T: Display>(v: &T) -> JsValue {
            v.to_string().into()
        }

        Self::set_option(&options, "sizes", sizes, f64_vec_to_arr);

        if min_sizes.is_some() {
            Self::set_option(&options, "minSize", min_sizes, f64_vec_to_arr);
        } else if min_size.is_some() {
            Self::set_option(&options, "minSize", min_size, val_to_js);
        }

        if max_sizes.is_some() {
            Self::set_option(&options, "maxSize", max_sizes, f64_vec_to_arr);
        } else if max_size.is_some() {
            Self::set_option(&options, "maxSize", max_size, val_to_js);
        }

        Self::set_option(&options, "expandToMin", expand_to_min, val_to_js);
        Self::set_option(&options, "gutterSize", gutter_size, val_to_js);
        Self::set_option(&options, "gutterAlign", gutter_align, to_js_string);
        Self::set_option(&options, "snapOffset", snap_offset, val_to_js);
        Self::set_option(&options, "dragInterval", drag_interval, val_to_js);
        Self::set_option(&options, "direction", direction, to_js_string);
        Self::set_option(&options, "cursor", cursor, to_js_string);
        Self::set_option(&options, "gutter", &Some(gutter), val_to_js);
        Self::set_option(&options, "elementStyle", element_style, val_to_js);
        Self::set_option(&options, "gutterStyle", gutter_style, val_to_js);
        Self::set_option(&options, "onDrag", on_drag, val_to_js);
        Self::set_option(&options, "onDragStart", on_drag_start, val_to_js);
        Self::set_option(&options, "onDragEnd", on_drag_end, val_to_js);

        options
    }
}