Class: Twterm::Tab::ListTab

Inherits:
Object
  • Object
show all
Includes:
StatusesTab
Defined in:
lib/twterm/tab/list_tab.rb

Instance Attribute Summary collapse

Attributes included from Base

#title

Instance Method Summary collapse

Methods included from StatusesTab

#append, #delete_status, #favorite, #open_link, #prepend, #reply, #respond_to_key, #retweet, #show_conversation, #show_user, #update

Methods included from AutoReloadable

#auto_reload

Methods included from Scrollable

#count, #draw_scroll_bar, #index, #item_appended, #item_prepended, #last, #move_down, #move_to_bottom, #move_to_top, #move_up, #offset, #offset_from_bottom, #respond_to_key, #update_scrollbar_length

Methods included from Base

#close, #refresh, #respond_to_key

Constructor Details

#initialize(list) ⇒ ListTab

Returns a new instance of ListTab.



8
9
10
11
12
13
14
15
16
17
# File 'lib/twterm/tab/list_tab.rb', line 8

def initialize(list)
  fail ArgumentError, 'argument must be an instance of List class' unless list.is_a? List

  super()

  @list = list
  @title = @list.full_name
  fetch { move_to_top }
  auto_reload(300) { fetch }
end

Instance Attribute Details

#listObject (readonly)

Returns the value of attribute list.



6
7
8
# File 'lib/twterm/tab/list_tab.rb', line 6

def list
  @list
end

Instance Method Details

#==(other) ⇒ Object



28
29
30
# File 'lib/twterm/tab/list_tab.rb', line 28

def ==(other)
  other.is_a?(self.class) && list == other.list
end

#fetchObject



19
20
21
22
23
24
25
26
# File 'lib/twterm/tab/list_tab.rb', line 19

def fetch
  client = Client.current
  client.list(@list) do |statuses|
    statuses.reverse.each(&method(:prepend))
    sort
    yield if block_given?
  end
end