Class: Decidim::Forms::StepNavigationCell

Inherits:
ViewModel
  • Object
show all
Includes:
LayoutHelper
Defined in:
app/cells/decidim/forms/step_navigation_cell.rb

Overview

This cell renders the navigation of a questionnaire step.

Instance Method Summary collapse

Instance Method Details

#button_disabled?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'app/cells/decidim/forms/step_navigation_cell.rb', line 29

def button_disabled?
  options[:button_disabled]
end

#current_step_dom_idObject



41
42
43
# File 'app/cells/decidim/forms/step_navigation_cell.rb', line 41

def current_step_dom_id
  "step-#{current_step_index}"
end

#current_step_indexObject



9
10
11
# File 'app/cells/decidim/forms/step_navigation_cell.rb', line 9

def current_step_index
  model
end

#first_step?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'app/cells/decidim/forms/step_navigation_cell.rb', line 13

def first_step?
  current_step_index.zero?
end

#formObject



25
26
27
# File 'app/cells/decidim/forms/step_navigation_cell.rb', line 25

def form
  options[:form]
end

#last_step?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'app/cells/decidim/forms/step_navigation_cell.rb', line 17

def last_step?
  current_step_index + 1 == total_steps
end

#next_step_dom_idObject



37
38
39
# File 'app/cells/decidim/forms/step_navigation_cell.rb', line 37

def next_step_dom_id
  "step-#{current_step_index + 1}"
end

#previous_step_dom_idObject



33
34
35
# File 'app/cells/decidim/forms/step_navigation_cell.rb', line 33

def previous_step_dom_id
  "step-#{current_step_index - 1}"
end

#total_stepsObject



21
22
23
# File 'app/cells/decidim/forms/step_navigation_cell.rb', line 21

def total_steps
  options[:total_steps]
end