Class: LogicWindow

Inherits:
Object
  • Object
show all
Includes:
Glimmer
Defined in:
lib/source/gui/logic_window.rb

Constant Summary collapse

STUDENTS_PER_PAGE =
10

Instance Method Summary collapse

Constructor Details

#initializeLogicWindow

Returns a new instance of LogicWindow.



10
11
12
13
14
# File 'lib/source/gui/logic_window.rb', line 10

def initialize
  @controller = StudentListController.new(self)
  @current_page = 1
  @total_count = 0
end

Instance Method Details

#createObject



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
# File 'lib/source/gui/logic_window.rb', line 35

def create
  root_container = horizontal_box {

      # 1 область
      vertical_box {
        form {
          stretchy false

          @filter_last_name_initials = entry {
            stretchy false
            label 'Фамилия И. О.'
          }

          @filters = {}
          fields = [[:git, 'Гит'], [:email, 'Почта'], [:phone, 'Телефон'], [:telegram, 'Телеграм']]

          fields.each do |field|
            @filters[field[0]] = {}

            @filters[field[0]][:combobox] = combobox {
              stretchy false
              label "#{field[1]} имеется?"
              items ['Не важно', 'Да', 'Нет']
              selected 0

              on_selected do
                if @filters[field[0]][:combobox].selected == 1
                  @filters[field[0]][:entry].read_only = false
                else
                  @filters[field[0]][:entry].text = ''
                  @filters[field[0]][:entry].read_only = true
                end
              end
            }

            @filters[field[0]][:entry] = entry {
              stretchy false
              label field[1]
              read_only true
            }
          end
        }
      }

      #2 область
      vertical_box {
        stretchy false
        @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,
            'Фамилия И. О' => :text,
            'Гит' => :text,
            'Контакт' => :text
          },
        )

        @pages = horizontal_box {
          stretchy false

          button("<") {
            stretchy true

            on_clicked do
              @current_page = [@current_page - 1, 1].max
              @controller.refresh_data(@current_page, STUDENTS_PER_PAGE)
            end

          }
          @page_label = label("...") { stretchy false }
          button(">") {
            stretchy true

            on_clicked do
              @current_page = [@current_page + 1, (@total_count / STUDENTS_PER_PAGE.to_f).ceil].min
              @controller.refresh_data(@current_page, STUDENTS_PER_PAGE)
            end
          }
        }
      }

      #3 область
      vertical_box {
        stretchy false

        button('Добавить') {
          stretchy false

          on_clicked {
             @controller.show_add_student

          }

        }
        button('Изменить ФИО') {
          stretchy false

          on_clicked {
            @controller.show_edit_student(@current_page, STUDENTS_PER_PAGE, @table.selection) unless @table.selection.nil?
          } }
        button('Изменить git') { stretchy false
        on_clicked{
          @controller.show_git_student(@current_page, STUDENTS_PER_PAGE, @table.selection) unless @table.selection.nil?
        }
        }
        button('Изменить контакт') { stretchy false
        on_clicked{
          @controller.show_contact_student(@current_page, STUDENTS_PER_PAGE, @table.selection) unless @table.selection.nil?
        }
        }
        button('Удалить') {
          stretchy false

          on_clicked {
            @controller.delete_selected(@current_page, STUDENTS_PER_PAGE, @table.selection) unless @table.selection.nil?
            @controller.refresh_data(@current_page, STUDENTS_PER_PAGE)
          }
        }
        button('Обновить') {
          stretchy false

          on_clicked {
            @controller.refresh_data(@current_page, STUDENTS_PER_PAGE)
          }
        }
      }
  }
  on_create
  root_container
end

#on_createObject



16
17
18
19
# File 'lib/source/gui/logic_window.rb', line 16

def on_create
  @controller.on_view_created
  @controller.refresh_data(@current_page, STUDENTS_PER_PAGE)
end

#on_datalist_changed(new_table) ⇒ Object

Метод наблюдателя datalist



22
23
24
25
26
27
28
# File 'lib/source/gui/logic_window.rb', line 22

def on_datalist_changed(new_table)
  arr = new_table.to_my_array
  arr.map do |row|
    row[3] = row[3][:value] unless row[3].nil?
  end
  @table.model_array = arr
end

#refresh_current_pageObject



169
170
171
# File 'lib/source/gui/logic_window.rb', line 169

def refresh_current_page
  @controller.refresh_data(@current_page, STUDENTS_PER_PAGE)
end

#update_student_count(new_cnt) ⇒ Object



30
31
32
33
# File 'lib/source/gui/logic_window.rb', line 30

def update_student_count(new_cnt)
  @total_count = new_cnt
  @page_label.text = "#{@current_page} / #{(@total_count / STUDENTS_PER_PAGE.to_f).ceil}"
end