Module: NestedArray::Nested

Extended by:
ActiveSupport::Concern
Included in:
Array, Array
Defined in:
lib/nested_array/nested.rb

Defined Under Namespace

Classes: Error

Instance Method Summary collapse

Instance Method Details

#concat_nested(tree = nil, options = {}) ⇒ Object

“Скеивание” вложенных структур ноды склеиваются если путь к ним одинаков; путь определяется из сложения Текстов (конфигурируемо через :path_key);



368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
# File 'lib/nested_array/nested.rb', line 368

def concat_nested tree=nil, options={}
  options = NESTED_OPTIONS.merge options
  return self if tree.nil?
  children_cache = {}
  tree.each_nested options do |node, parents, level|
    parent_path_names = parents.compact.map{|e| e[options[:path_key]]}
    parent_path = parent_path_names.join(options[:path_separator])
    path = parent_path_names.push(node[options[:path_key]]).join(options[:path_separator])
    element = node
    if !children_cache.keys.include? path
      if parent_path == ''
        array = self
      else
        array = children_cache[parent_path]
      end
      element[options[:children]] = []
      array << element
      children_cache[parent_path] = array
      children_cache[path] = element[options[:children]]
    end
  end
  self
end

#each_nested(options = {}) ⇒ Object

Перебирает вложенную стуктуру.



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
# File 'lib/nested_array/nested.rb', line 169

def each_nested(options = {})
  options = NESTED_OPTIONS.merge options
  level = 0
  cache = []
  cache[level] = self.clone
  parents = []
  parents[level] = nil
  i = []
  i[level] = 0
  prev_level = nil
  while level >= 0
    node = cache[level][i[level]]
    i[level] += 1
    if node != nil
      clone_node = node.clone

      # Текущий узел является последним ребёнком своего родителя:
      clone_node.is_last_children = cache[level][i[level]].blank?
      # Текущий узел имеет детей:
      clone_node.is_has_children = !node[options[:children]].nil? && node[options[:children]].length > 0
      # Текущий узел последний в дереве:
      clone_node.is_last = clone_node.is_last_children && !clone_node.is_has_children && (0..(clone_node.level)).to_a.map{|l| cache[l][i[l]].blank?}.all?(true)

      next_level = if clone_node.is_has_children
        level + 1
      elsif clone_node.is_last_children
        nl = nil
        (0..clone_node.level).to_a.reverse.each do |l|
          if cache[l][i[l]].present?
            nl = l
            break
          end
        end
        nl
      else
        level
      end

      clone_node.parents = parents.clone

      # В текущем узле всегда есть li
      clone_node.before = options[:li].html_safe
      clone_node.li = clone_node.before
      # Следующий уровень тот же? — текущий закрываем просто.
      if next_level.present? && next_level == clone_node.level
        clone_node._ = options[:_li].html_safe
      end
      # Следующий уровень понизится? - текущий закрываем сложно.
      if next_level.present? && next_level < clone_node.level
        clone_node._ = options[:_li]
        (clone_node.level - next_level).times do |t|
          clone_node._ += options[:details] ? options[:_uld] + options[:_li] : options[:_ul] + options[:_li]
        end
        clone_node._ = clone_node._.html_safe
      end
      # Следующий уровень повысится? — открываем подуровень.
      if clone_node.is_has_children
        clone_node.ul = if options[:details]
          options[:uld].html_safe
        else
          options[:ul].html_safe
        end
      end
      # Последний в дереве? — последние закрывающие теги.
      if clone_node.is_last
        clone_node._ = options[:_li]
        clone_node.level.times do |t|
          clone_node._ += options[:details] ? options[:_uld] + options[:_li] : options[:_ul] + options[:_li]
        end
        clone_node._ = clone_node._.html_safe
      end

      clone_node.define_singleton_method(:after) do |*args|
        ret = ''
        # Следующий уровень тот же? — текущий закрываем просто.
        if next_level.present? && next_level == clone_node.level
          ret += options[:_li]
        end
        # Следующий уровень понизится? - текущий закрываем сложно.
        if next_level.present? && next_level < clone_node.level
          ret += options[:_li]
          (clone_node.level - next_level).times do |t|
            ret += options[:details] ? options[:_uld] + options[:_li] : options[:_ul] + options[:_li]
          end
        end
        # Следующий уровень повысится? — открываем подуровень.
        if self.is_has_children
          if options[:details]
            ret += args.present? && args[0]&.[](:open) == true ? options[:uldo] : options[:uld]
          else
            ret += options[:ul]
          end
        end
        # Последний в дереве? — последние закрывающие теги.
        if self.is_last
          ret += options[:_li]
          self.level.times do |t|
            ret += options[:details] ? options[:_uld] + options[:_li] : options[:_ul] + options[:_li]
          end
        end
        ret.html_safe
      end

      yield(clone_node, clone_node.origin)

      prev_level = node.level

      if !node[options[:children]].nil? && node[options[:children]].length > 0
        level += 1
        parents[level] = clone_node
        cache[level] = node[options[:children]]
        i[level] = 0
      end
    else
      parents[level] = nil
      level -= 1
    end
  end
  self
end

#nested_to_collection_select(options = {}) ⇒ Object

Преобразует вложенную структуру данных в плоскую, но добавляет в значение поля отвечающего за текстовое представление (:name) псевдографику древовидной структуры. Это позволяет вывести тэг select в сносном виде для использования с вложенными структурами.



347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'lib/nested_array/nested.rb', line 347

def nested_to_collection_select(options={})
  options = NESTED_OPTIONS.merge options
  ret = []
  last = []
  each_nested do |node, parents, level, is_last, origin|
    last[level+1] = is_last
    node_text = node[options[:option_text]]
    node_level = (1..level).map{|l| last[l] == true ? '&nbsp;' : ''}.join
    node_last = is_last ? '' : ''
    node_children = node[options[:children]].present? && node[options[:children]].length > 0 ? '' : ''
    option_text = "#{node_level}#{node_last}#{node_children}".html_safe + "#{node_text}"
    option_value = node[options[:option_value]]
    node[options[:option_text]] = option_text
    ret.push node
  end
  ret
end

#nested_to_options(origin_text, origin_value, options = {}) ⇒ Object

Возвращает массив для формирования опций html-тега <select> с псевдографикой, позволяющей вывести древовидную структуру. “‘

[‘option_text1’, ‘option_value1’],[‘option_text2’, ‘option_value2’],…

“‘



322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
# File 'lib/nested_array/nested.rb', line 322

def nested_to_options(origin_text, origin_value, options = {})
  options = NESTED_OPTIONS.merge options
  ret = []

  last = []
  downhorizontal, horizontal, left, rightvertical, rightup, space, vertical = options[:thin_pseudographic] ? options[:thin_pseudographics] : options[:pseudographics]

  each_nested do |node, origin|
    last[node.level + 1] = node.is_last_children
    node_text = origin.send(origin_text)
    node_level = (1..node.level).map{|l| last[l] == true ? space : vertical}.join
    node_last = node.is_last_children ? rightup : rightvertical
    node_children = node[options[:children]].present? && node[options[:children]].length > 0 ? downhorizontal : horizontal
    option_text = "#{node_level}#{node_last}#{node_children}#{left}".html_safe + "#{node_text}"
    option_value = origin.send(origin_value)
    ret.push [option_text, option_value]
  end
  ret
end

#to_flat(options = {}) ⇒ Object



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
# File 'lib/nested_array/nested.rb', line 290

def to_flat(options = {})
  ret = []
  options = NESTED_OPTIONS.merge options
  level = 0
  cache = []
  cache[level] = self.clone
  i = []
  i[level] = 0
  while level >= 0
    node = cache[level][i[level]]
    i[level] += 1
    if node != nil
      ret.push node.origin

      if !node[options[:children]].nil? && node[options[:children]].length > 0
        level += 1
        cache[level] = node[options[:children]]
        i[level] = 0
      end
    else
      level -= 1
    end
  end
  ret
end

#to_nested(options = {}) ⇒ Object



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
# File 'lib/nested_array/nested.rb', line 53

def to_nested(options = {})
  options = NESTED_OPTIONS.merge options
  # Зарезервированные поля узла.
  fields = {
    id: options[:id],
    parent_id: options[:parent_id],
    level: options[:level],
    children: options[:children],
  }
  cache = {}
  nested = options[:hashed] ? {} : []
  # Перебираем элементы в любом порядке!
  self.each do |origin|
    value = origin.is_a?(Hash) ? origin : origin.serializable_hash
    # 1. Если нет родителя текущего элемента, и текущий элемент не корневой, то:
    # 1.1 создадим родителя
    # 1.2 поместим в кэш
    if !(cache.key? value[options[:parent_id]]) && (value[options[:parent_id]] != options[:root_id])
      # 1.1
      temp = OpenStruct.new
      temp[options[:id]] = value[options[:parent_id]]
      temp[options[:parent_id]] = nil
      temp[options[:level]] = nil
      # 1.2
      cache[value[options[:parent_id]]] = temp
    end
    # 2. Если текущий элемент уже был создан, значит он был чьим-то родителем, тогда:
    # 2.1 обновим в нем информацию о parent_id и другие не зарезервированные поля.
    # 2.2 поместим в родителя
    if cache.key? value[options[:id]]
      # 2.1
      cache[value[options[:id]]][options[:parent_id]] = value[options[:parent_id]]
      cache[value[options[:id]]].origin = origin
      # 2.2
      # Если текущий элемент не корневой - поместим в родителя, беря его из кэш
      if value[options[:parent_id]] != options[:root_id]
        cache[value[options[:parent_id]]][options[:children]] ||= options[:hashed] ? {} : []
        if options[:hashed]
          cache[value[options[:parent_id]]][options[:children]][value[options[:id]]] = nested[value[options[:id]]]
        else
          cache[value[options[:parent_id]]][options[:children]] << cache[value[options[:id]]]
        end
      # иначе, текущий элемент корневой, поместим в nested
      else
        if options[:branch_id].nil? || options[:branch_id] == value[options[:id]]
          if options[:hashed]
            nested[value[options[:id]]] = cache[value[options[:id]]]
          else
            nested << cache[value[options[:id]]]
          end
        end
      end
    # 3. Иначе, текущий элемент не создан, тогда:
    # 3.1 создадим элемент
    # 3.2 поместим в кэш
    # 3.3 поместим в родителя
    else
      # 3.1
      temp = OpenStruct.new
      temp[options[:id]] = value[options[:id]]
      temp[options[:parent_id]] = value[options[:parent_id]]
      temp[options[:level]] = nil
      temp.origin = origin
      # 3.2
      cache[value[options[:id]]] = temp
      # 3.3
      # Если текущий элемент не корневой - поместим в родителя, беря его из кэш
      if value[options[:parent_id]] != options[:root_id]
        cache[value[options[:parent_id]]][options[:children]] ||= options[:hashed] ? {} : []
        if options[:hashed]
          cache[value[options[:parent_id]]][options[:children]][value[options[:id]]] = cache[value[options[:id]]]
        else
          cache[value[options[:parent_id]]][options[:children]] << cache[value[options[:id]]]
        end
      # иначе, текущий элемент корневой, поместим в nested
      else
        if options[:branch_id].nil? || options[:branch_id] == value[options[:id]]
          if options[:hashed]
            nested[value[options[:id]]] = cache[value[options[:id]]]
          else
            nested << cache[value[options[:id]]]
          end
        end
      end
    end
  end

  # Добавление level к узлу.
  level = 0
  cache = []
  cache[level] = nested
  i = []
  i[level] = 0
  while level >= 0
    node = cache[level][i[level]]
    i[level] += 1
    if node != nil

      node[options[:level]] = level

      if !node[options[:children]].nil? && node[options[:children]].length > 0
        level += 1
        cache[level] = node[options[:children]]
        i[level] = 0
      end
    else
      level -= 1
    end
  end

  nested
end