Class: Twterm::Tab::UserTab

Inherits:
Object
  • Object
show all
Includes:
StatusesTab
Defined in:
lib/twterm/tab/user_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(user) ⇒ UserTab

Returns a new instance of UserTab.



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

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

  super()

  @user = user
  @title = "@#{user.screen_name}"

  fetch { move_to_top }
  auto_reload(120) { fetch }
end

Instance Attribute Details

#userObject (readonly)

Returns the value of attribute user.



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

def user
  @user
end

Instance Method Details

#fetchObject



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

def fetch
  Client.current.user_timeline(@user.id) do |statuses|
    statuses.reverse.each(&method(:prepend))
    sort
    yield if block_given?
  end
end