aboutsummaryrefslogtreecommitdiff
path: root/examples/06-custom-effects/src/app.gleam
blob: 5399903e294a9e59293733a83d7742a2b67cb7ee (plain)
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
import gleam/option.{type Option, None, Some}
import lustre
import lustre/attribute
import lustre/effect.{type Effect}
import lustre/element.{type Element}
import lustre/event
// These examples are written with `lustre/ui` in mind. They'll work regardless,
// but to see what `lustre/ui` can do make sure to run each of these examples with
// the `--use-example-styles` flag:
//
//   $ gleam run -m lustre/dev start --use-example-styles
//
// In your own apps, make sure to add the `lustre/ui` dependency and include the
// stylesheet somewhere.
import lustre/ui

// MAIN ------------------------------------------------------------------------

pub fn main() {
  let app = lustre.application(init, update, view)
  let assert Ok(_) = lustre.start(app, "#app", Nil)
}

// MODEL -----------------------------------------------------------------------

type Model {
  Model(message: Option(String))
}

fn init(_) -> #(Model, Effect(Msg)) {
  #(Model(message: None), read_localstorage("message", GotMessage))
}

// UPDATE ----------------------------------------------------------------------

pub opaque type Msg {
  GotInput(String)
  GotMessage(Result(String, Nil))
}

fn update(model: Model, msg: Msg) -> #(Model, Effect(Msg)) {
  case msg {
    GotInput(input) -> #(
      Model(message: Some(input)),
      write_localstorage("message", input),
    )
    GotMessage(Ok(message)) -> #(Model(message: Some(message)), effect.none())
    GotMessage(Error(_)) -> #(model, effect.none())
  }
}

fn read_localstorage(
  key: String,
  to_msg: fn(Result(String, Nil)) -> msg,
) -> Effect(msg) {
  effect.from(fn(dispatch) {
    do_read_localstorage(key)
    |> to_msg
    |> dispatch
  })
}

@external(javascript, "./app.ffi.mjs", "read_localstorage")
fn do_read_localstorage(_key: String) -> Result(String, Nil) {
  Error(Nil)
}

fn write_localstorage(key: String, value: String) -> Effect(msg) {
  effect.from(fn(_) { do_write_localstorage(key, value) })
}

@external(javascript, "./app.ffi.mjs", "write_localstorage")
fn do_write_localstorage(_key: String, _value: String) -> Nil {
  Nil
}

// VIEW ------------------------------------------------------------------------

fn view(model: Model) -> Element(Msg) {
  let styles = [#("width", "100vw"), #("height", "100vh")]
  let message = option.unwrap(model.message, "")

  ui.centre(
    [attribute.style(styles)],
    ui.field(
      [],
      [],
      ui.input([attribute.value(message), event.on_input(GotInput)]),
      [element.text("Type a message and refresh the page")],
    ),
  )
}