Class: ManagerListView
- Inherits:
-
Object
- Object
- ManagerListView
- Includes:
- Glimmer
- Defined in:
- lib/manager/ui/manager_list_view.rb
Constant Summary collapse
- PAGE_SIZE =
20
Instance Method Summary collapse
- #create ⇒ Object
-
#initialize ⇒ ManagerListView
constructor
A new instance of ManagerListView.
- #on_create ⇒ Object
-
#update(managers) ⇒ Object
Метод наблюдателя datalist def on_datalist_changed(new_table) arr = new_table.to_2d_array arr.map do |row| row = [row[:value], contact_color(row[:type])] unless row.nil? end @table.model_array = arr end.
- #update_student_count(new_cnt) ⇒ Object
Constructor Details
#initialize ⇒ ManagerListView
Returns a new instance of ManagerListView.
12 13 14 15 16 |
# File 'lib/manager/ui/manager_list_view.rb', line 12 def initialize @controller = ManagerListController.new(self) @current_page = 1 @total_count = 0 end |
Instance Method Details
#create ⇒ Object
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 |
# File 'lib/manager/ui/manager_list_view.rb', line 51 def create root_container = horizontal_box { # Секция 1 vertical_box { stretchy false vertical_box { stretchy false label { text 'Почта' } combobox { |c| items ['Не важно','Есть','Нет'] selected 0 on_selected do @controller.filter_email(@current_page, PAGE_SIZE, c.selected) end } label { text 'Сортировка' } combobox { |c| items ['ID','Название','Почта','Телефон'] selected 0 on_selected do @controller.sort(@current_page, PAGE_SIZE, c.selected) end } } } # Секция 2 vertical_box { @table = refined_table( table_editable: false, filter: lambda do |row_hash, query| utf8_query = query.force_encoding("utf-8") row_hash['Имя пользователя'].include?(utf8_query) end, table_columns: { '№' => :text, 'ID' => :text, 'Имя' => :text, 'Почта' => :text, 'Телефон' => :text, }, per_page: PAGE_SIZE, ) @pages = horizontal_box { stretchy false ("<") { stretchy true on_clicked do @current_page = [@current_page - 1, 1].max @controller.refresh_data(@current_page, PAGE_SIZE) end } @page_label = label("...") { stretchy false } (">") { stretchy true on_clicked do @current_page = [@current_page + 1, (@total_count / PAGE_SIZE.to_f).ceil].min @controller.refresh_data(@current_page, PAGE_SIZE) end } } } # Секция 3 vertical_box { stretchy false ('Добавить') { stretchy false on_clicked { @controller.show_modal_add } } ('Изменить') { stretchy false on_clicked { @controller.show_modal_edit(@current_page, PAGE_SIZE, @table.selection) unless @table.selection.nil? } } ('Удалить') { stretchy false on_clicked { @controller.delete_selected(@current_page, PAGE_SIZE, @table.selection) unless @table.selection.nil? @controller.refresh_data(@current_page, PAGE_SIZE) } } ('Обновить') { stretchy false on_clicked { @controller.refresh_data(@current_page, PAGE_SIZE) } } } } on_create root_container end |
#on_create ⇒ Object
18 19 20 21 |
# File 'lib/manager/ui/manager_list_view.rb', line 18 def on_create @controller.on_view_created @controller.refresh_data(@current_page, PAGE_SIZE) end |
#update(managers) ⇒ Object
Метод наблюдателя datalist def on_datalist_changed(new_table)
arr = new_table.to_2d_array
arr.map do |row|
row[3] = [row[3][:value], contact_color(row[3][:type])] unless row[3].nil?
end
@table.model_array = arr
end
32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/manager/ui/manager_list_view.rb', line 32 def update(managers) @items = [] i = 0 item_num = 0 managers.each do |manager| i += 1 item_num = ((@current_page - 1) * PAGE_SIZE) + i @items << Struct.new(: |
#update_student_count(new_cnt) ⇒ Object
46 47 48 49 |
# File 'lib/manager/ui/manager_list_view.rb', line 46 def update_student_count(new_cnt) @total_count = new_cnt @page_label.text = "#{@current_page} / #{(@total_count / PAGE_SIZE.to_f).ceil}" end |