Skip to content

Commit 4963b69

Browse files
committedFeb 23, 2013
Small fixes from the code review
1 parent 4c15ac8 commit 4963b69

File tree

3 files changed

+22
-16
lines changed

3 files changed

+22
-16
lines changed
 

‎app/assets/images/profile.png

1.3 KB
Loading

‎app/assets/javascripts/admin/admin.js.coffee

+21-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
SUSPEND_ACTION = "suspend"
2+
SUSPEND_BTN_CSS = "btn-danger"
3+
ACTIVATE_ACTION = "activate"
4+
ACTIVATE_APPROVE_BTN_CSS = "btn-success"
5+
APPROVE_ACTION = "approve"
6+
17
$(document).ready ->
2-
$(document).on("click", ".waiting-for-approval-users .action.approve", {action : "approve" }, act_on_user)
3-
$(document).on("click", ".approved-users .action.suspend", {action : "suspend" }, act_on_user)
4-
$(document).on("click", ".approved-users .action.activate", {action : "activate" }, act_on_user)
8+
$(document).on("click", ".waiting-for-approval-users .action.approve", {action : APPROVE_ACTION }, act_on_user)
9+
$(document).on("click", ".approved-users .action.suspend", {action : SUSPEND_ACTION }, act_on_user)
10+
$(document).on("click", ".approved-users .action.activate", {action : ACTIVATE_ACTION }, act_on_user)
511
$(document).on("click", ".admin input[type='checkbox']", {}, toggelAdminOnUser)
612
return
713

@@ -19,21 +25,21 @@ act_on_user = (obj)->
1925
request.success (data) ->
2026
# We will set the new and old css actions depending on the action that was taken because this method
2127
# is used by 3 different buttons
22-
if action_taken == "suspend"
23-
old_btn_class = "suspend"
24-
old_css_class = "btn-danger"
25-
new_btn_class = "btn-success"
26-
new_css_class = "activate"
28+
if action_taken == SUSPEND_ACTION
29+
old_btn_class = SUSPEND_ACTION
30+
old_css_class = SUSPEND_BTN_CSS
31+
new_btn_class = ACTIVATE_APPROVE_BTN_CSS
32+
new_css_class = ACTIVATE_ACTION
2733
else
2834
# Approve and activate will be almost the same except for the original css class
29-
if action_taken == "activate"
30-
old_css_class = "activate"
35+
if action_taken == ACTIVATE_ACTION
36+
old_css_class = ACTIVATE_ACTION
3137
else
32-
old_css_class = "approve"
38+
old_css_class = APPROVE_ACTION
3339

34-
old_btn_class = "btn-success"
35-
new_btn_class = "btn-danger"
36-
new_css_class = "suspend"
40+
old_btn_class = ACTIVATE_APPROVE_BTN_CSS
41+
new_btn_class = SUSPEND_BTN_CSS
42+
new_css_class = SUSPEND_ACTION
3743

3844
btn_text = _.str.titleize(new_css_class)
3945

@@ -43,7 +49,7 @@ act_on_user = (obj)->
4349
$el.text(btn_text).removeClass("#{old_btn_class} #{old_css_class}").addClass("#{new_btn_class} #{new_css_class}")
4450

4551
# Check if the user was an approval. If so, move the user out of the waiting for approval table and add it to the approved table
46-
if action_taken == "approve"
52+
if action_taken == APPROVE_ACTION
4753
$row.remove()
4854
$(".approved-users table").show().append($row)
4955

‎app/views/layouts/application.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<a href="#" class="user_menu_link">
2323
<cite class="user_flag"></cite>
2424
<div class="user">
25-
<img src="http://gravatar.com/avatar/<%= current_user.gravatar_hash %>?s=25&d=http://cloudfuji.com/images/profile.png"/>
25+
<img src="http://gravatar.com/avatar/<%= current_user.gravatar_hash %>?s=25"/>
2626
<span><%= current_user.full_name_or_username %></span>
2727
</div>
2828
</a>

0 commit comments

Comments
 (0)
Please sign in to comment.