Class: Tuile::Component::CheckboxGroup

Inherits:
Component
  • Object
show all
Includes:
HasContent, HasValue
Defined in:
lib/tuile/component/checkbox_group.rb,
sig/tuile.rbs

Overview

Multi-select from a set of typed items, one checkable row each. Arrows move a cursor; Space, Enter or a left click toggles the row under it:

[x] Errors
[ ] Warnings     <- cursor row, highlighted across the full width
[x] Info
^ the composed {List}'s one-column gutter

cg = Component::CheckboxGroup.new(items: %w[Errors Warnings Info])
cg.value = %w[Errors Info]                    # any Enumerable, stored as a Set
cg.on_value_change = ->(set) { filter(set) }   # once per toggle
cg.value                                       # => #<Set: {"Errors", "Info"}>
cg.item_label = ->(level) { level.name }       # default :to_s

#value is a frozen Set of the selected items themselves — of whatever type #items holds, never their labels. Frozen so cg.value << item fails loudly rather than mutating the selection behind HasValue#on_value_change's back; assign a new set or an Array instead. Treat it as unordered: it iterates in toggle order, so use cg.items & cg.value.to_a when you need #items order.

Composes rather than subclasses, like ComboBox: a List of the items is its single HasContent child, which is where the cursor, scrolling, the scrollbar and per-row mouse hit-testing come from — the group only supplies the List#renderer that puts the box in front of the label. content is that list, so an app can tune it (scrollbar_visibility, show_cursor_when_inactive, …). Rows beyond #rect's height scroll; the inner list is the tab stop, not the group.

items is chrome; value is authoritative

#items= changes only what is presented. It never touches #value and never fires HasValue#on_value_change, and a selected item absent from #items renders no checked row while surviving intact — so a form saved without the user editing anything changes nothing silently. Keeping the two in sync is the app's job: cg.value &= cg.items.to_set reconciles them. Same contract as Tuile::Component::ComboBox#value, one item at a time.

There is no select-all — neither a key nor a header row. An app that wants one writes cg.value = cg.items behind its own affordance.

Implementation details

Items need stable #hash/#eql?, since the selection is a Set: an item mutated after being selected becomes unfindable. Two ==-equal items also share one selection — their rows check and uncheck together — whereas two distinct items that merely render the same label toggle independently, because a row resolves to its own item, never to its label.

Rows repeat Checkbox's [x] /[ ] glyph convention rather than importing a constant from it.

UI-thread-confined, like every component (see Screen).

Constant Summary collapse

EMPTY_SELECTION =

Returns:

  • (Set)
Set.new.freeze

Instance Attribute Summary collapse

Attributes included from HasValue

#on_value_change

Attributes included from HasContent

#content

Instance Method Summary collapse

Constructor Details

#initialize(items: [], value: nil) ⇒ CheckboxGroup

@param items — the items to present, one row each; also settable via #items=.

@param value — the initial selection. Seeds the backing ivar directly, so no listener fires and assignment order doesn't matter to a form helper.

Parameters:

  • items: (::Array[untyped]) (defaults to: [])
  • value: (::Enumerable[untyped], nil) (defaults to: nil)


69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/tuile/component/checkbox_group.rb', line 69

def initialize(items: [], value: nil)
  super()
  @item_label = :to_s.to_proc
  @value = coerce(value)
  @on_value_change = nil

  list = List.new
  # A List has no cursor at all by default (Cursor::None, position -1).
  list.cursor = List::Cursor.new
  list.renderer = method(:render_row)
  list.on_item_chosen = ->(_index, item) { toggle(item) }
  list.items = items.to_a
  self.content = list
end

Instance Attribute Details

#item_labelProc, Method

@return — item -> row label (a String, StyledString, or anything with #to_s); :to_s by default.

Returns:

  • (Proc, Method)


89
90
91
# File 'lib/tuile/component/checkbox_group.rb', line 89

def item_label
  @item_label
end

Instance Method Details

#clearvoid

This method returns an undefined value.

Resets #value to #empty_value.



5392
# File 'sig/tuile.rbs', line 5392

def clear: () -> void

#coerce(new_value) ⇒ ::Set[untyped]

@param new_value

@return — a frozen copy; nil becomes #empty_value.

Parameters:

  • new_value (::Enumerable[untyped], nil)

Returns:

  • (::Set[untyped])


177
178
179
180
181
182
# File 'lib/tuile/component/checkbox_group.rb', line 177

def coerce(new_value)
  return empty_value if new_value.nil?
  raise TypeError, "expected Enumerable, got #{new_value.inspect}" unless new_value.is_a?(Enumerable)

  Set.new(new_value).freeze
end

#empty?Boolean

@return — true iff #value equals #empty_value.

Returns:

  • (Boolean)


5389
# File 'sig/tuile.rbs', line 5389

def empty?: () -> bool

#empty_value::Set[untyped]

@return — the frozen empty set — HasValue#empty? means nothing is selected.

Returns:

  • (::Set[untyped])


108
# File 'lib/tuile/component/checkbox_group.rb', line 108

def empty_value = EMPTY_SELECTION

#focusable?Boolean

Input fields are focusable by default (overrides Tuile::Component#focusable?); a read-only display field could override back to false. Only focusable? lives here — tab_stop? diverges between leaf fields and composing wrappers, so it stays per-class (DECISIONS.md D-integer-field).

Returns:

  • (Boolean)


5399
# File 'sig/tuile.rbs', line 5399

def focusable?: () -> bool

#handle_key(key) ⇒ Boolean

Toggles the cursor row on Space. Nothing else is claimed: the composed List — being the focused component — has already had its chance at the key (its arrows, Home/End, PgUp/PgDn, ^U/^D and Enter), and whatever neither of us wants bubbles on to an ancestor.

@param key

Parameters:

  • key (String)

Returns:

  • (Boolean)


132
133
134
135
136
137
# File 'lib/tuile/component/checkbox_group.rb', line 132

def handle_key(key)
  return false unless key == " "

  toggle_at(content.cursor.position)
  true
end

#handle_mousevoid

This method returns an undefined value.

@param event

Parameters:



5402
# File 'sig/tuile.rbs', line 5402

def handle_mouse: (MouseEvent event) -> void

#items::Array[untyped]

@return — the presented items.

Returns:

  • (::Array[untyped])


85
# File 'lib/tuile/component/checkbox_group.rb', line 85

def items = content.items

#items=(new_items) ⇒ void

This method returns an undefined value.

Replaces the presented rows, leaving #value untouched.

@param new_items

Parameters:

  • new_items (::Array[untyped])


95
96
97
# File 'lib/tuile/component/checkbox_group.rb', line 95

def items=(new_items)
  content.items = new_items
end

#label_for(item) ⇒ StyledString, String

@param item

@return — whichever StyledString#+ accepts on the right — so a styled label keeps its spans and a plain one is parsed.

Parameters:

  • item (Object)

Returns:



187
188
189
190
# File 'lib/tuile/component/checkbox_group.rb', line 187

def label_for(item)
  label = @item_label.call(item)
  label.is_a?(StyledString) ? label : label.to_s
end

#layout(list) ⇒ void

This method returns an undefined value.

Places the composed list across the whole rect (HasContent hook).

@param list

Parameters:



144
# File 'lib/tuile/component/checkbox_group.rb', line 144

def layout(list) = (list.rect = rect)

#on_focusvoid

This method returns an undefined value.



5407
# File 'sig/tuile.rbs', line 5407

def on_focus: () -> void

#rect=void

This method returns an undefined value.

@param rect

Parameters:



5405
# File 'sig/tuile.rbs', line 5405

def rect=: (Rect rect) -> void

#render_row(item) ⇒ StyledString

@param item

@return — the item's row: its label behind a checkmark box. The List calls this at paint time, so the boxes track #value without re-rendering anything but the visible rows.

Parameters:

  • item (Object)

Returns:



170
171
172
# File 'lib/tuile/component/checkbox_group.rb', line 170

def render_row(item)
  StyledString.plain(value.include?(item) ? "[x] " : "[ ] ") + label_for(item)
end

#toggle(item) ⇒ void

This method returns an undefined value.

Flips item's membership of #value.

@param item

Parameters:

  • item (Object)


162
163
164
# File 'lib/tuile/component/checkbox_group.rb', line 162

def toggle(item)
  self.value = value.include?(item) ? value - [item] : value + [item]
end

#toggle_at(index) ⇒ void

This method returns an undefined value.

Flips membership of the item on row index; an index outside #items is ignored — List::Cursor::None's -1 would otherwise toggle the last item.

@param index

Parameters:

  • index (Integer)


153
154
155
156
157
# File 'lib/tuile/component/checkbox_group.rb', line 153

def toggle_at(index)
  return unless index.between?(0, items.size - 1)

  toggle(items[index])
end

#valueObject

@return — the current value; nil until first set.

Returns:

  • (Object)


5386
# File 'sig/tuile.rbs', line 5386

def value: () -> Object

#value=(new_value) ⇒ void

This method returns an undefined value.

Replaces the selection, firing HasValue#on_value_change when it really changed. Stores a frozen Set copy, so a set the caller goes on mutating can't reach in.

@param new_valuenil selects nothing.

Parameters:

  • new_value (::Enumerable[untyped], nil)


116
117
118
119
120
121
122
123
124
# File 'lib/tuile/component/checkbox_group.rb', line 116

def value=(new_value)
  selected = coerce(new_value)
  # HasValue#value= no-ops on an unchanged value; this guard is what also
  # skips the row rebuild.
  return if value == selected

  super(selected)
  content.refresh_rows
end