package miaou-core

  1. Overview
  2. Docs
Miaou core/widgets (no drivers, no SDL)

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.5.2.tar.gz
md5=60a3b9f181f24572a06a9492532bfdda
sha512=fcc35a275066be2900e6201782faf47503076fa4640f08cf78067835a6f447b74613009e55b2ac799adb7ca46f1bffa261fc5971753f2cc3c6bef327511c7ef6

doc/src/miaou_widgets_input/select_widget.ml.html

Source file select_widget.ml

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
(*****************************************************************************)
(*                                                                           *)
(* SPDX-License-Identifier: MIT                                              *)
(* Copyright (c) 2025 Nomadic Labs <contact@nomadic-labs.com>                *)
(* Copyright (c) 2026 Mathias Bourgoin <mathias.bourgoin@atacama.tech>       *)
(*                                                                           *)
(*****************************************************************************)
(* Select widget: supports both monomorphic string items and a polymorphic API *)
[@@@warning "-32-34-37-69"]

module Helpers = Miaou_helpers.Helpers

type outer_t = {
  title : string;
  items : string list;
  cursor : int;
  cancelled : bool;
}

let clamp lo hi x = max lo (min hi x)

let move_cursor ~total ~cursor ~delta =
  let max_idx = max 0 (total - 1) in
  clamp 0 max_idx (cursor + delta)

let page_move ~total ~cursor ~page_size ~dir =
  let delta = match dir with `Up -> -page_size | `Down -> page_size in
  move_cursor ~total ~cursor ~delta

let create_inner ?(cursor = 0) ~title ~items () =
  {
    title;
    items;
    cursor = clamp 0 (max 0 (List.length items - 1)) cursor;
    cancelled = false;
  }

let open_centered_inner ?(cursor = 0) ~title ~items () =
  create_inner ~cursor ~title ~items ()

let create_sectioned_inner ?cursor_label ~title
    ~(sections : (string * string list) list) () =
  let sections = List.filter (fun (_h, lst) -> lst <> []) sections in
  let items = List.concat (List.map snd sections) in
  let cursor =
    match cursor_label with
    | None -> 0
    | Some lbl ->
        let rec find i = function
          | [] -> 0
          | x :: xs -> if x = lbl then i else find (i + 1) xs
        in
        find 0 items
  in
  create_inner ~cursor ~title ~items ()

let open_centered_sectioned_inner ?cursor_label ~title ~sections () =
  create_sectioned_inner ?cursor_label ~title ~sections ()

let is_cancelled_inner w = w.cancelled

let reset_cancelled_inner w = {w with cancelled = false}

let value_inner w = List.nth w.items w.cursor

let get_selection_inner w = value_inner w

(* Compute which items are visible given current state and size.
   Returns (start_index, max_shown, has_top_indicator). *)
let compute_visible_window w ~(size : LTerm_geom.size) =
  let total = List.length w.items in
  let rows_total = size.rows in
  let vertical_space =
    let v = rows_total - 4 in
    if v < 6 then 6 else if v > 40 then 40 else v
  in
  let show_all = total <= vertical_space in
  let max_shown = if show_all then total else vertical_space in
  let start =
    if show_all then 0
    else
      let half = max_shown / 2 in
      let s = w.cursor - half in
      let s = if s < 0 then 0 else s in
      let s = if s + max_shown > total then total - max_shown else s in
      s
  in
  let has_top_indicator = start > 0 in
  (start, max_shown, has_top_indicator)

let handle_key_inner_with_size w ~key ~(size : LTerm_geom.size) =
  let total = List.length w.items in
  match key with
  | "Up" -> {w with cursor = move_cursor ~total ~cursor:w.cursor ~delta:(-1)}
  | "Down" -> {w with cursor = move_cursor ~total ~cursor:w.cursor ~delta:1}
  | "PageUp" ->
      {w with cursor = page_move ~total ~cursor:w.cursor ~page_size:8 ~dir:`Up}
  | "PageDown" ->
      {
        w with
        cursor = page_move ~total ~cursor:w.cursor ~page_size:8 ~dir:`Down;
      }
  | "Home" -> {w with cursor = 0}
  | "End" -> {w with cursor = max 0 (total - 1)}
  | "Esc" -> {w with cancelled = true}
  | "WheelUp" ->
      {
        w with
        cursor =
          move_cursor
            ~total
            ~cursor:w.cursor
            ~delta:(-Miaou_helpers.Mouse.wheel_scroll_lines);
      }
  | "WheelDown" ->
      {
        w with
        cursor =
          move_cursor
            ~total
            ~cursor:w.cursor
            ~delta:Miaou_helpers.Mouse.wheel_scroll_lines;
      }
  | key -> (
      (* Check for mouse click to select item *)
      match Miaou_helpers.Mouse.parse_click key with
      | Some {row; col = _} ->
          (* Layout: header (2 lines) + optional top_indicator + items *)
          let start, max_shown, has_top_indicator =
            compute_visible_window w ~size
          in
          let header_lines = 2 in
          let top_indicator_lines = if has_top_indicator then 1 else 0 in
          (* Row where items start (1-indexed) *)
          let items_start_row = header_lines + top_indicator_lines + 1 in
          (* Which visible item was clicked (0-indexed relative to visible slice) *)
          let visible_item_idx = row - items_start_row in
          if visible_item_idx >= 0 && visible_item_idx < max_shown then
            (* Map back to absolute item index *)
            let absolute_idx = start + visible_item_idx in
            if absolute_idx >= 0 && absolute_idx < total then
              {w with cursor = absolute_idx}
            else w
          else w
      | None -> w)

let handle_key_inner w ~key =
  (* Fallback without size - use default *)
  let default_size : LTerm_geom.size = {rows = 24; cols = 80} in
  handle_key_inner_with_size w ~key ~size:default_size

let render_inner
    ?(backend : Miaou_widgets_display.Widgets.backend =
      Miaou_widgets_display.Widgets.get_backend ()) w ~focus:_
    ~(size : LTerm_geom.size) =
  let open Miaou_widgets_display.Widgets in
  let total = List.length w.items in
  (* Available vertical space after reserving header + footer lines. *)
  let rows_total = size.rows in
  (* Usable rows for items is (modal height - 4) now: header + subtle footer. *)
  let vertical_space =
    let v = rows_total - 4 in
    if v < 6 then 6 else if v > 40 then 40 else v
  in
  (* Width handling: truncate long labels to available width with ellipsis. *)
  let max_width = max 10 (size.cols - 2) in
  let truncate s =
    let len = visible_chars_count s in
    if len <= max_width then s
    else if max_width <= 1 then String.make max_width '.'
    else
      let cut = max 0 (max_width - 1) in
      String.sub s 0 cut ^ "."
  in
  let show_all = total <= vertical_space in
  let max_shown = if show_all then total else vertical_space in
  let start =
    if show_all then 0
    else
      let half = max_shown / 2 in
      let s = w.cursor - half in
      let s = if s < 0 then 0 else s in
      let s = if s + max_shown > total then total - max_shown else s in
      s
  in
  let slice =
    w.items
    |> List.mapi (fun i v -> (i, v))
    |> List.filter (fun (i, _) -> i >= start && i < start + max_shown)
  in
  (* Avoid padding items to the terminal width here. Padding to a large
     max_width (derived from terminal cols) caused the modal renderer to
     later wrap those long lines to the modal content width, producing
     artificial blank lines between entries and breaking scrolling in
     nested/modal contexts. Keep truncation but don't pad; the modal box
     will handle horizontal padding/clipping. *)
  let pad_to_width s = s in
  let body_core =
    List.map
      (fun (i, lbl) ->
        let lbl = truncate lbl |> pad_to_width in
        (* Use themed_selection for highlighted item, themed_text for others *)
        if i = w.cursor then themed_selection lbl else themed_text lbl)
      slice
  in
  let top_indicator =
    if start > 0 then [dim (glyph_up ~backend () ^ " more")] else []
  in
  let bottom_indicator =
    if start + max_shown < total then [dim (glyph_down ~backend () ^ " more")]
    else []
  in
  let range_hint =
    if show_all then []
    else
      [
        dim
          (Printf.sprintf
             "Items %d-%d of %d"
             (start + 1)
             (min (start + max_shown) total)
             total);
      ]
  in
  let up = glyph_up ~backend () in
  let down = glyph_down ~backend () in
  let header =
    [
      w.title;
      dim
        (Printf.sprintf
           "%s/%s move · PgUp/PgDn page · Home/End jump · Enter confirm · Esc \
            cancel"
           up
           down);
    ]
  in
  Helpers.concat_lines
    (header @ top_indicator @ body_core @ bottom_indicator @ range_hint)

(* Polymorphic-by-default API *)

type 'a t = {
  title : string;
  items : 'a list;
  to_string : 'a -> string;
  inner : outer_t;
  max_visible : int option;
}

let open_centered ?(cursor = 0) ?max_visible ~title ~items ~to_string () : 'a t
    =
  let labels = List.map to_string items in
  let inner = open_centered_inner ~cursor ~title ~items:labels () in
  {title; items; to_string; inner; max_visible}

let open_centered_sectioned ?cursor_label ?max_visible ~title ~sections
    ~to_string () : 'a t =
  let sections_str =
    List.map (fun (h, lst) -> (h, List.map to_string lst)) sections
  in
  let inner =
    create_sectioned_inner ?cursor_label ~title ~sections:sections_str ()
  in
  let items = List.concat (List.map snd sections) in
  {title; items; to_string; inner; max_visible}

(* Size-aware rendering API. New callers may use [render_with_size]. *)
let render_with_size
    ?(backend : Miaou_widgets_display.Widgets.backend =
      Miaou_widgets_display.Widgets.get_backend ()) (w : 'a t) ~focus
    ~(size : LTerm_geom.size) =
  let size =
    match w.max_visible with
    | None -> size
    | Some mv ->
        (* Adjust virtual size rows so vertical_space logic clamps to mv. We add
					 5 back (header+footer reserve) to match internal subtraction. *)
        let rows =
          let desired = mv + 5 in
          if size.rows <= desired then size.rows else desired
        in
        {size with rows}
  in
  render_inner ~backend w.inner ~focus ~size

(* Backwards-compatible [render] which uses a sensible default terminal size
	 when no size is provided by the caller. *)
let render_for_backend backend (w : 'a t) ~focus =
  let default_size : LTerm_geom.size = {rows = 24; cols = 80} in
  render_inner ~backend w.inner ~focus ~size:default_size

let render
    ?(backend : Miaou_widgets_display.Widgets.backend =
      Miaou_widgets_display.Widgets.get_backend ()) (w : 'a t) ~focus =
  render_for_backend backend w ~focus

let handle_key_with_size (w : 'a t) ~key ~(size : LTerm_geom.size) : 'a t =
  (* Adjust size for max_visible, same as in render_with_size *)
  let size : LTerm_geom.size =
    match w.max_visible with
    | None -> size
    | Some mv ->
        let desired = mv + 5 in
        let rows =
          if size.LTerm_geom.rows <= desired then size.rows else desired
        in
        {size with rows}
  in
  let inner' = handle_key_inner_with_size w.inner ~key ~size in
  if inner' == w.inner then w else {w with inner = inner'}

let handle_key (w : 'a t) ~key : 'a t =
  let default_size : LTerm_geom.size = {rows = 24; cols = 80} in
  handle_key_with_size w ~key ~size:default_size

let on_key (w : 'a t) ~key : 'a t * Miaou_interfaces.Key_event.result =
  let w' = handle_key w ~key in
  let handled =
    match key with
    | "Up" | "Down" | "PageUp" | "PageDown" | "Home" | "End" | "Esc" | "Enter"
    | "Space" | " " | "WheelUp" | "WheelDown" ->
        true
    | _ -> Miaou_helpers.Mouse.is_click key
  in
  (w', Miaou_interfaces.Key_event.of_bool handled)

let get_selection (w : 'a t) : 'a option =
  match w.items with [] -> None | _ -> Some (List.nth w.items w.inner.cursor)

let is_cancelled (w : 'a t) = w.inner.cancelled

let reset_cancelled (w : 'a t) =
  {w with inner = {w.inner with cancelled = false}}

(* Convenience: label string for current selection *)
let value (w : 'a t) : string = List.nth w.inner.items w.inner.cursor

let () =
  Miaou_registry.register ~name:"select" ~mli:[%blob "select_widget.mli"] ()