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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
use super::{types::*, App, AppInitCfg, OrdersContainer};
use crate::browser::{url, Url};
use crate::virtual_dom::View;
use std::marker::PhantomData;

pub mod after_mount;
pub mod before_mount;
pub mod init;

pub use after_mount::{AfterMount, IntoAfterMount, UndefinedAfterMount, UrlHandling};
pub use before_mount::{BeforeMount, MountPoint, MountType, UndefinedMountPoint};
pub use init::{IntoInit, UndefinedInitAPI, UndefinedIntoInit};

#[deprecated(
    since = "0.5.0",
    note = "Used for compatibility with old Init API. Use `BeforeAfterInitAPI` together with `BeforeMount` and `AfterMount` instead."
)]
pub struct MountPointInitInitAPI<MP, II> {
    mount_point: MP,
    into_init: II,
}
// TODO Remove when removing the other `InitAPI`s.
pub struct BeforeAfterInitAPI<IAM> {
    before_mount_handler: Box<dyn FnOnce(Url) -> BeforeMount>,
    into_after_mount: IAM,
}
// TODO Remove when removing the other `InitAPI`s.
impl Default for BeforeAfterInitAPI<UndefinedAfterMount> {
    fn default() -> Self {
        BeforeAfterInitAPI {
            before_mount_handler: Box::new(|_| BeforeMount::default()),
            into_after_mount: UndefinedAfterMount,
        }
    }
}

// TODO Remove when removing the other `InitAPI`s.
pub trait InitAPI<Ms: 'static, Mdl, ElC: View<Ms>, GMs> {
    type Builder;
    fn build(builder: Self::Builder) -> App<Ms, Mdl, ElC, GMs>;
}

// TODO Remove when removing the other `InitAPI`s.
pub trait InitAPIData {
    type IntoAfterMount;
    #[deprecated(
        since = "0.5.0",
        note = "Used for compatibility with old Init API. Use `IntoBeforeMount` and `IntoAfterMount` instead."
    )]
    type IntoInit;
    #[deprecated(
        since = "0.5.0",
        note = "Used for compatibility with old Init API. Use `IntoBeforeMount` and `IntoAfterMount` instead."
    )]
    type MountPoint;

    fn before_mount(
        self,
        before_mount_handler: Box<dyn FnOnce(Url) -> BeforeMount>,
    ) -> BeforeAfterInitAPI<Self::IntoAfterMount>;
    fn after_mount<
        Ms: 'static,
        Mdl,
        ElC: View<Ms>,
        GMs,
        NewIAM: IntoAfterMount<Ms, Mdl, ElC, GMs>,
    >(
        self,
        into_after_mount: NewIAM,
    ) -> BeforeAfterInitAPI<NewIAM>;

    #[deprecated(
        since = "0.5.0",
        note = "Used for compatibility with old Init API. Use `before_mount` and `after_mount` instead."
    )]
    fn init<Ms: 'static, Mdl, ElC: View<Ms>, GMs, NewII: IntoInit<Ms, Mdl, ElC, GMs>>(
        self,
        into_init: NewII,
    ) -> MountPointInitInitAPI<Self::MountPoint, NewII>;
    #[deprecated(
        since = "0.5.0",
        note = "Used for compatibility with old Init API. Use `before_mount` and `after_mount` instead."
    )]
    fn mount<NewMP: MountPoint>(
        self,
        mount_point: NewMP,
    ) -> MountPointInitInitAPI<NewMP, Self::IntoInit>;
}

// TODO Remove when removing the other `InitAPI`s.
#[deprecated(
    since = "0.5.0",
    note = "Used for compatibility with old Init API. Use `BeforeAfterInitAPI` together with `BeforeMount` and `AfterMount` instead."
)]
impl<
        Ms: 'static,
        Mdl: 'static,
        ElC: 'static + View<Ms>,
        GMs: 'static,
        MP: MountPoint,
        II: IntoInit<Ms, Mdl, ElC, GMs>,
    > InitAPI<Ms, Mdl, ElC, GMs> for MountPointInitInitAPI<MP, II>
{
    type Builder = Builder<Ms, Mdl, ElC, GMs, Self>;
    fn build(builder: Self::Builder) -> App<Ms, Mdl, ElC, GMs> {
        let MountPointInitInitAPI {
            into_init,
            mount_point,
        } = builder.init_api;

        let mut app = App::new(
            builder.update,
            builder.sink,
            builder.view,
            mount_point.element_getter()(),
            builder.routes,
            builder.window_events,
            None,
        );

        let mut initial_orders = OrdersContainer::new(app.clone());
        let init = into_init.into_init(url::current(), &mut initial_orders);

        app.init_cfg.replace(AppInitCfg {
            mount_type: init.mount_type,
            into_after_mount: Box::new((init, initial_orders)),
            phantom: PhantomData,
        });

        app
    }
}
// TODO Remove when removing the other `InitAPI`s.
impl<
        Ms: 'static,
        Mdl: 'static,
        ElC: 'static + View<Ms>,
        GMs: 'static,
        IAM: 'static + IntoAfterMount<Ms, Mdl, ElC, GMs>,
    > InitAPI<Ms, Mdl, ElC, GMs> for BeforeAfterInitAPI<IAM>
{
    type Builder = Builder<Ms, Mdl, ElC, GMs, Self>;
    fn build(builder: Self::Builder) -> App<Ms, Mdl, ElC, GMs> {
        let BeforeAfterInitAPI {
            before_mount_handler,
            into_after_mount,
        } = builder.init_api;

        let BeforeMount {
            mount_point_getter,
            mount_type,
        } = before_mount_handler(url::current());

        App::new(
            builder.update,
            builder.sink,
            builder.view,
            mount_point_getter(),
            builder.routes,
            builder.window_events,
            Some(AppInitCfg {
                mount_type,
                into_after_mount: Box::new(into_after_mount),
                phantom: PhantomData,
            }),
        )
    }
}
// TODO Remove when removing the other `InitAPI`s.
impl<Ms: 'static, Mdl: 'static + Default, ElC: 'static + View<Ms>, GMs: 'static>
    InitAPI<Ms, Mdl, ElC, GMs> for UndefinedInitAPI
{
    type Builder = Builder<Ms, Mdl, ElC, GMs, Self>;
    fn build(builder: Self::Builder) -> App<Ms, Mdl, ElC, GMs> {
        BeforeAfterInitAPI::build(Builder {
            update: builder.update,
            view: builder.view,

            routes: builder.routes,
            window_events: builder.window_events,
            sink: builder.sink,

            init_api: BeforeAfterInitAPI::default(),
        })
    }
}

#[deprecated(
    since = "0.5.0",
    note = "Used for compatibility with old Init API. Use `BeforeAfterInitAPI` together with `BeforeMount` and `AfterMount` instead."
)]
impl<MP, II> InitAPIData for MountPointInitInitAPI<MP, II> {
    type IntoAfterMount = UndefinedAfterMount;
    type IntoInit = II;
    type MountPoint = MP;

    fn before_mount(
        self,
        before_mount_handler: Box<dyn FnOnce(Url) -> BeforeMount>,
    ) -> BeforeAfterInitAPI<Self::IntoAfterMount> {
        BeforeAfterInitAPI {
            before_mount_handler,
            into_after_mount: UndefinedAfterMount,
        }
    }
    fn after_mount<
        Ms: 'static,
        Mdl,
        ElC: View<Ms>,
        GMs,
        NewIAM: IntoAfterMount<Ms, Mdl, ElC, GMs>,
    >(
        self,
        into_after_mount: NewIAM,
    ) -> BeforeAfterInitAPI<NewIAM> {
        BeforeAfterInitAPI {
            into_after_mount,
            before_mount_handler: Box::new(|_| BeforeMount::default()),
        }
    }

    fn init<Ms: 'static, Mdl, ElC: View<Ms>, GMs, NewII: IntoInit<Ms, Mdl, ElC, GMs>>(
        self,
        into_init: NewII,
    ) -> MountPointInitInitAPI<Self::MountPoint, NewII> {
        MountPointInitInitAPI {
            into_init,
            mount_point: self.mount_point,
        }
    }
    fn mount<NewMP: MountPoint>(
        self,
        mount_point: NewMP,
    ) -> MountPointInitInitAPI<NewMP, Self::IntoInit> {
        MountPointInitInitAPI {
            mount_point,
            into_init: self.into_init,
        }
    }
}
// TODO Remove when removing the other `InitAPI`s.
impl<IAM> InitAPIData for BeforeAfterInitAPI<IAM> {
    type IntoAfterMount = IAM;
    type IntoInit = UndefinedIntoInit;
    type MountPoint = UndefinedMountPoint;

    fn before_mount(
        self,
        before_mount_handler: Box<dyn FnOnce(Url) -> BeforeMount>,
    ) -> BeforeAfterInitAPI<Self::IntoAfterMount> {
        BeforeAfterInitAPI {
            before_mount_handler,
            into_after_mount: self.into_after_mount,
        }
    }
    fn after_mount<
        Ms: 'static,
        Mdl,
        ElC: View<Ms>,
        GMs,
        NewIAM: IntoAfterMount<Ms, Mdl, ElC, GMs>,
    >(
        self,
        into_after_mount: NewIAM,
    ) -> BeforeAfterInitAPI<NewIAM> {
        BeforeAfterInitAPI {
            into_after_mount,
            before_mount_handler: self.before_mount_handler,
        }
    }

    fn init<Ms: 'static, Mdl, ElC: View<Ms>, GMs, NewII: IntoInit<Ms, Mdl, ElC, GMs>>(
        self,
        into_init: NewII,
    ) -> MountPointInitInitAPI<Self::MountPoint, NewII> {
        MountPointInitInitAPI {
            into_init,
            mount_point: UndefinedMountPoint,
        }
    }
    fn mount<NewMP: MountPoint>(
        self,
        mount_point: NewMP,
    ) -> MountPointInitInitAPI<NewMP, Self::IntoInit> {
        MountPointInitInitAPI {
            mount_point,
            into_init: UndefinedIntoInit,
        }
    }
}
// TODO Remove when removing the other `InitAPI`s.
impl InitAPIData for UndefinedInitAPI {
    type IntoAfterMount = UndefinedAfterMount;
    type IntoInit = UndefinedIntoInit;
    type MountPoint = UndefinedMountPoint;

    fn before_mount(
        self,
        before_mount_handler: Box<dyn FnOnce(Url) -> BeforeMount>,
    ) -> BeforeAfterInitAPI<Self::IntoAfterMount> {
        BeforeAfterInitAPI {
            before_mount_handler,
            into_after_mount: UndefinedAfterMount,
        }
    }
    fn after_mount<
        Ms: 'static,
        Mdl,
        ElC: View<Ms>,
        GMs,
        NewIAM: IntoAfterMount<Ms, Mdl, ElC, GMs>,
    >(
        self,
        into_after_mount: NewIAM,
    ) -> BeforeAfterInitAPI<NewIAM> {
        BeforeAfterInitAPI {
            into_after_mount,
            before_mount_handler: Box::new(|_| BeforeMount::default()),
        }
    }

    fn init<Ms: 'static, Mdl, ElC: View<Ms>, GMs, NewII: IntoInit<Ms, Mdl, ElC, GMs>>(
        self,
        into_init: NewII,
    ) -> MountPointInitInitAPI<Self::MountPoint, NewII> {
        MountPointInitInitAPI {
            into_init,
            mount_point: UndefinedMountPoint,
        }
    }
    fn mount<NewMP: MountPoint>(
        self,
        mount_point: NewMP,
    ) -> MountPointInitInitAPI<NewMP, Self::IntoInit> {
        MountPointInitInitAPI {
            mount_point,
            into_init: UndefinedIntoInit,
        }
    }
}

/// Used to create and store initial app configuration, ie items passed by the app creator.
pub struct Builder<Ms: 'static, Mdl: 'static, ElC: View<Ms>, GMs, InitAPIType> {
    update: UpdateFn<Ms, Mdl, ElC, GMs>,
    view: ViewFn<Mdl, ElC>,

    routes: Option<RoutesFn<Ms>>,
    window_events: Option<WindowEventsFn<Ms, Mdl>>,
    sink: Option<SinkFn<Ms, Mdl, ElC, GMs>>,

    // TODO: Remove when removing legacy init fields.
    init_api: InitAPIType,
}

impl<Ms, Mdl, ElC: View<Ms> + 'static, GMs: 'static> Builder<Ms, Mdl, ElC, GMs, UndefinedInitAPI> {
    /// Constructs the Builder.
    pub(super) fn new(update: UpdateFn<Ms, Mdl, ElC, GMs>, view: ViewFn<Mdl, ElC>) -> Self {
        Builder {
            update,
            view,

            routes: None,
            window_events: None,
            sink: None,

            init_api: UndefinedInitAPI,
        }
    }
}

impl<
        Ms,
        Mdl,
        ElC: View<Ms> + 'static,
        GMs: 'static,
        IAM: 'static,
        MP,
        II,
        InitAPIType: InitAPIData<IntoInit = II, MountPoint = MP, IntoAfterMount = IAM>,
    > Builder<Ms, Mdl, ElC, GMs, InitAPIType>
{
    #[deprecated(
        since = "0.5.0",
        note = "Used for compatibility with old Init API. Use `before_mount` and `after_mount` instead."
    )]
    pub fn init<NewII: IntoInit<Ms, Mdl, ElC, GMs>>(
        self,
        new_init: NewII,
    ) -> Builder<Ms, Mdl, ElC, GMs, MountPointInitInitAPI<MP, NewII>> {
        Builder {
            update: self.update,
            view: self.view,

            routes: self.routes,
            window_events: self.window_events,
            sink: self.sink,

            init_api: self.init_api.init(new_init),
        }
    }

    /// Choose the element where the application will be mounted.
    /// The default one is the element with `id` = "app".
    ///
    /// # Examples
    ///
    /// ```rust,no_run
    /// // argument is `&str`
    /// mount("another_id")
    ///
    /// // argument is `HTMLElement`
    /// // NOTE: Be careful with mounting into body,
    /// // it can cause hard-to-debug bugs when there are other scripts in the body.
    /// mount(seed::body())
    ///
    /// // argument is `Element`
    /// mount(seed::body().querySelector("section").unwrap().unwrap())
    /// ```
    #[deprecated(
        since = "0.5.0",
        note = "Used for compatibility with old Init API. Use `before_mount` and `after_mount` instead."
    )]
    pub fn mount<NewMP: MountPoint>(
        self,
        new_mount_point: NewMP,
    ) -> Builder<Ms, Mdl, ElC, GMs, MountPointInitInitAPI<NewMP, II>> {
        Builder {
            update: self.update,
            view: self.view,

            routes: self.routes,
            window_events: self.window_events,
            sink: self.sink,

            init_api: self.init_api.mount(new_mount_point),
        }
    }

    /// Select HTML element where the app will be mounted and how it'll be mounted.
    ///
    /// See `BeforeMount::mount_point` and `BeforeMount::mount_type` docs for more info.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    ///fn before_mount(_url: Url) -> BeforeMount {
    ///    BeforeMount::new()
    ///        .mount_point("main")
    ///        .mount_type(MountType::Takeover)
    ///}
    /// ```
    pub fn before_mount(
        self,
        before_mount: impl FnOnce(Url) -> BeforeMount + 'static,
    ) -> Builder<Ms, Mdl, ElC, GMs, BeforeAfterInitAPI<IAM>> {
        Builder {
            update: self.update,
            view: self.view,

            routes: self.routes,
            window_events: self.window_events,
            sink: self.sink,

            init_api: self.init_api.before_mount(Box::new(before_mount)),
        }
    }

    /// You can create your `Model` and handle initial URL in this method.
    ///
    /// See `AfterMount::url_handling` for more info about initial URL handling.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    ///fn after_mount(_url: Url, _orders: &mut impl Orders<Msg, GMsg>) -> AfterMount<Model> {
    ///    let model = Model { clicks: 0 };
    ///    AfterMount::new(model).url_handling(UrlHandling::None)
    ///}
    /// ```
    pub fn after_mount<AM: 'static + IntoAfterMount<Ms, Mdl, ElC, GMs>>(
        self,
        after_mount: AM,
    ) -> Builder<Ms, Mdl, ElC, GMs, BeforeAfterInitAPI<AM>> {
        Builder {
            update: self.update,
            view: self.view,

            routes: self.routes,
            window_events: self.window_events,
            sink: self.sink,

            init_api: self.init_api.after_mount(after_mount),
        }
    }

    /// Registers a function which maps URLs to messages.
    ///
    /// When you return `None`, Seed doesn't call your `update` function
    /// and also doesn't push the new route or prevent page refresh.
    /// It's useful if the user clicked on a link and Seed shouldn't intercept it,
    /// because it's e.g. a download link.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    ///fn routes(url: Url) -> Option<Msg> {
    ///    Some(Msg::UrlChanged(url))
    ///}
    /// ```
    pub fn routes(mut self, routes: RoutesFn<Ms>) -> Self {
        self.routes = Some(routes);
        self
    }

    /// Registers a function which decides how window events will be handled.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    ///fn window_events(_model: &Model) -> Vec<Listener<Msg>> {
    ///    vec![keyboard_ev(Ev::KeyDown, Msg::KeyPressed)]
    ///}
    /// ```
    pub fn window_events(mut self, window_events: WindowEventsFn<Ms, Mdl>) -> Self {
        self.window_events = Some(window_events);
        self
    }

    /// Registers a sink function.
    ///
    /// The sink function is a function which can update the model based
    /// on global messages. Consider to use a sink function when a
    /// submodule needs to trigger changes in other modules.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    ///fn sink(g_msg: GMsg, _model: &mut Model, _orders: &mut impl Orders<Msg, GMsg>) {
    ///    match g_msg {
    ///        GMsg::SayHello => log!("Hello!"),
    ///    }
    ///}
    /// ```
    pub fn sink(mut self, sink: SinkFn<Ms, Mdl, ElC, GMs>) -> Self {
        self.sink = Some(sink);
        self
    }
}

impl<
        Ms: 'static,
        Mdl,
        ElC: View<Ms> + 'static,
        GMs: 'static,
        InitAPIType: InitAPI<Ms, Mdl, ElC, GMs, Builder = Self>,
    > Builder<Ms, Mdl, ElC, GMs, InitAPIType>
{
    /// Build, mount and start the app.
    pub fn build_and_start(self) -> App<Ms, Mdl, ElC, GMs> {
        InitAPIType::build(self).run()
    }
}

impl<
        Ms: 'static,
        Mdl,
        ElC: View<Ms> + 'static,
        GMs: 'static,
        MP: MountPoint,
        II: IntoInit<Ms, Mdl, ElC, GMs>,
    > Builder<Ms, Mdl, ElC, GMs, MountPointInitInitAPI<MP, II>>
{
    /// Turn this [`Builder`] into an [`App`] which is ready to run.
    ///
    /// [`Builder`]: struct.Builder.html
    /// [`App`]: struct.App.html
    #[deprecated(since = "0.4.2", note = "Please use `.build_and_start` instead")]
    pub fn finish(self) -> App<Ms, Mdl, ElC, GMs> {
        MountPointInitInitAPI::build(self)
    }
}