Skip to content
Extraits de code Groupes Projets
Valider 4d65cfab rédigé par maxwell's avatar maxwell
Parcourir les fichiers

MS^2 Added the friends panel to application layout

parent a89e0d4a
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
class ApplicationController < ActionController::Base class ApplicationController < ActionController::Base
protect_from_forgery :except => :receive protect_from_forgery :except => :receive
layout 'application' layout 'application'
before_filter :set_friends
def set_friends
@friends = Friend.all
end
end end
%h1 your friends
%ul#stream
- for friend in @friends
= link_to friend.real_name, friend_path(friend)
%br
%br
%hr
= link_to "add a new friend", new_friend_path
\ No newline at end of file
...@@ -84,5 +84,8 @@ ...@@ -84,5 +84,8 @@
#content #content
= yield #main
= render "posts/debug" = yield
= render "posts/debug"
#friends_list
= render 'friends/sidebar'
\ No newline at end of file
...@@ -177,6 +177,18 @@ h3 { ...@@ -177,6 +177,18 @@ h3 {
width: 100%; width: 100%;
margin-bottom: 1em; } margin-bottom: 1em; }
#main {
width: 70%;
min-width: 400px;
max-width: 700px;
float: left; }
#friends_list {
float: right;
width: 20%;
min-width: 130px;
padding-left: 10%; }
form { form {
font-size: 130%; font-size: 130%;
margin: 1em; margin: 1em;
......
...@@ -214,7 +214,19 @@ h3 ...@@ -214,7 +214,19 @@ h3
:width 100% :width 100%
:margin :margin
:bottom 1em :bottom 1em
#main
:width 70%
:min-width 400px
:max-width 700px
:float left
#friends_list
:float right
:width 20%
:min-width 130px
:padding-left 10%
form form
:font :font
:size 130% :size 130%
......
...@@ -3,10 +3,19 @@ require File.dirname(__FILE__) + '/../spec_helper' ...@@ -3,10 +3,19 @@ require File.dirname(__FILE__) + '/../spec_helper'
describe DashboardController do describe DashboardController do
render_views render_views
it "index action should render index template" do before do
request.env['warden'] = mock_model(Warden, :authenticate? => @user, :authenticate! => @user) request.env['warden'] = mock_model(Warden, :authenticate? => @user, :authenticate! => @user)
end
it "index action should render index template" do
get :index get :index
response.should render_template(:index) response.should render_template(:index)
end end
it "on index sets a friends variable" do
Factory.create :friend
get :index
assigns[:friends].should == Friend.all
end
end end
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter