开发者

how to get statuses from current_user.friends + limit to 10 statuses

开发者 https://www.devze.com 2023-03-22 00:12 出处:网络
this is my code: @current_user_statuses = current_user.statuses.limit(10) @friends_statuses = current_user.friends.collect(&:statuses)

this is my code:

@current_user_statuses = current_user.statuses.limit(10)

@friends_statuses = current_user.friends.collect(&:statuses) 

if current_user.friends.collect(&:doweets)[0].any? 
  @friends_statuses = current_user.friends.collect(&:statuses)[0]
end

@statuses = (@current_user_statuses + @friends_statuses).sort_by{ |d| - d.created_at.to_i

i want to make it like this:

@current_user_statuses = current_user.statuses.limit(10)

@friends_statuses = current_user.friends.statuses.limit(10)    

@statuses = (@current_user_statuses + @friends_statuses).sort_by{ |d| - d.created_at.to_i

but when i do it i get an error...

how can i do it?

my models:

Friendships model:

    belongs_to :user
belongs_to :friend, :class_name => "User", :foreign_key => "friend_id"

def self.are_friends(user, friend)
  return false if user == friend
  return true unless find_by_user_id_and_friend_id(user, friend).nil?
  return true unless find_by_user_id_and_friend_id(friend, user).nil?
  return false
end

def self.request(user, friend)
  return false if are_friends(user, friend)
  return false if user == friend
  f1 = new(:user => user, :friend => friend, :status => "pending")
  f2 = new(:user => friend, :friend => user, :status => "requested")
  transaction do
    f1.save
    f2.save
  end
end

def self.accept(user, friend)
  f1 = find_by_user_id_and_friend_id(user, friend)
  f2 = find_by_user_id_and_friend_id(friend, user)
  if f1.nil? or f2.nil?
    return false
  else
    transaction do
      f1.update_attributes(:status => "accepted")
      f2.update_attributes(:status => "accepted")
    end
  end
  return true
end

def self.reject(user, 开发者_如何学运维friend)
  f1 = find_by_user_id_and_friend_id(user, friend)
  f2 = find_by_user_id_and_friend_id(friend, user)
  if f1.nil? or f2.nil?
    return false
  else
    transaction do
      f1.destroy
      f2.destroy
      return true
    end
  end
end

user model:

      has_many :doweets
  has_many :friendships
  has_many :friends, 
           :through => :friendships,
           :conditions => "status = 'accepted'"

  has_many :requested_friends, 
           :through => :friendships, 
           :source => :friend,
           :conditions => "status = 'requested'", 
           :order => :created_at

  has_many :pending_friends, 
           :through => :friendships, 
           :source => :friend,
           :conditions => "status = 'pending'", 
           :order => :created_at

thanks!!

edit:

my error: NoMethodError: undefined method `doweets' for #


ids = [current_user.id, *current_user.friends.map(&:id)]
@statuses = Status.where(:user_id => ids).limit(10).order("created_at DESC")

that's it

0

精彩评论

暂无评论...
验证码 换一张
取 消