﻿/**
 * @author The Anh
 */
$(document).ready(function(){
	var friend_id;
	$('.getFriend').click(function(){
		friend_id = $(this).attr('id');
		$('span.loader').show();
		$.get(webroot+'members/ketban',{user_id:user_id,friend_id:friend_id},function(data){
			if(data == 1){				
				html = '<span>Ðã yêu gửi yêu cầu kết bạn.<br /> Đang chờ chấp nhận.</p></span>';
				$('span.message').fadeOut('slow',function(){
					$('span.message').html(html);
					$('span.message').fadeIn('slow');
				});
			}else{
				html = '<span>Ðã yêu gửi yêu cầu kết bạn.<br /> Đang chờ chấp nhận.</p></span>';
				$('span.message').fadeOut('slow',function(){
					$('span.message').html(html);
					$('span.message').fadeIn('slow');
				});
			}
		});
		return false;
	});
	
	var userfriend_id;
	$('.dongy').click(function(){
		userfriend_id = $(this).attr('id');
		userfriend_id = userfriend_id.split('_');
		userfriend_id = userfriend_id[1]; 
		status = 1;
		$('.friendrequest_'+userfriend_id).children().fadeOut('slow',function(){
		});	
		
		$.get(webroot+'members/processFriendRequest',{id:userfriend_id,status:status},function(data){
			$('.friendrequest_'+userfriend_id).html('<div class="after" style="display:none;">Đồng ý</div>');				
			$('.friendrequest_'+userfriend_id).children().fadeIn('slow');
		});
		return false;
	});
	
	$('.tuchoi').click(function(){
		userfriend_id = $(this).attr('id');
		userfriend_id = userfriend_id.split('_');
		userfriend_id = userfriend_id[1]; 
		status = 3;
		
		$(this).parent().children().fadeOut('slow',function(){
		});
		
		$.get(webroot+'members/processFriendRequest',{id:userfriend_id,status:status},function(data){
				$(this).parent().children().fadeOut('slow');
				$(this).parent().html('<p>Đồng ý</p>');
				$(this).parent().children().fadeIn('slow');
		});
		return false;
	});
});
