Class: Redmine::MenuManager::MenuNode

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/redmine/menu_manager.rb

Direct Known Subclasses

MenuItem

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, content = nil) ⇒ MenuNode

Returns a new instance of MenuNode



330
331
332
333
334
# File 'lib/redmine/menu_manager.rb', line 330

def initialize(name, content = nil)
  @name = name
  @children = []
  @last_items_count = 0
end

Instance Attribute Details

#last_items_countObject (readonly)

Returns the value of attribute last_items_count



328
329
330
# File 'lib/redmine/menu_manager.rb', line 328

def last_items_count
  @last_items_count
end

#nameObject (readonly)

Returns the value of attribute name



328
329
330
# File 'lib/redmine/menu_manager.rb', line 328

def name
  @name
end

#parentObject

Returns the value of attribute parent



327
328
329
# File 'lib/redmine/menu_manager.rb', line 327

def parent
  @parent
end

Instance Method Details

#add(child) ⇒ Object Also known as: <<

Adds a child



376
377
378
379
# File 'lib/redmine/menu_manager.rb', line 376

def add(child)
  position = @children.size - @last_items_count
  add_at(child, position)
end

#add_at(child, position) ⇒ Object

Adds a child at given position



360
361
362
363
364
365
366
# File 'lib/redmine/menu_manager.rb', line 360

def add_at(child, position)
  raise "Child already added" if find {|node| node.name == child.name}

  @children = @children.insert(position, child)
  child.parent = self
  child
end

#add_last(child) ⇒ Object

Adds a child as last child



369
370
371
372
373
# File 'lib/redmine/menu_manager.rb', line 369

def add_last(child)
  add_at(child, -1)
  @last_items_count += 1
  child
end

#childrenObject



336
337
338
339
340
341
342
# File 'lib/redmine/menu_manager.rb', line 336

def children
  if block_given?
    @children.each {|child| yield child}
  else
    @children
  end
end

#each {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:



349
350
351
352
# File 'lib/redmine/menu_manager.rb', line 349

def each &block
  yield self
  children { |child| child.each(&block) }
end

#positionObject

Returns the position for this node in it's parent



391
392
393
# File 'lib/redmine/menu_manager.rb', line 391

def position
  self.parent.children.index(self)
end

#prepend(child) ⇒ Object

Adds a child at first position



355
356
357
# File 'lib/redmine/menu_manager.rb', line 355

def prepend(child)
  add_at(child, 0)
end

#remove!(child) ⇒ Object

Removes a child



383
384
385
386
387
388
# File 'lib/redmine/menu_manager.rb', line 383

def remove!(child)
  @children.delete(child)
  @last_items_count -= +1 if child && child.last
  child.parent = nil
  child
end

#rootObject

Returns the root for this node



396
397
398
399
400
# File 'lib/redmine/menu_manager.rb', line 396

def root
  root = self
  root = root.parent while root.parent
  root
end

#sizeObject

Returns the number of descendants + 1



345
346
347
# File 'lib/redmine/menu_manager.rb', line 345

def size
  @children.inject(1) {|sum, node| sum + node.size}
end