Skip to content

Commit 989d673

Browse files
committed
Merge pull request #214 from fusion94/kandan-198
Adds badging to admins Fixes #198
2 parents fc93ad8 + 5a99802 commit 989d673

File tree

4 files changed

+114
-4
lines changed

4 files changed

+114
-4
lines changed

app/assets/javascripts/backbone/plugins/user_list.js.coffee

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ class Kandan.Plugins.UserList
55
@pluginNamespace: "Kandan.Plugins.UserList"
66

77
@template: _.template '''
8-
<div class="user clearfix">
8+
<div class="user clearfix">
99
<img class="avatar" src="<%= avatarUrl %>"/>
1010
<span class="name"><%= name %></span>
11+
<% if(admin){ %>
12+
&nbsp;<span class="badge badge-important">Admin</span>
13+
<% } %>
1114
</div>
1215
'''
1316

@@ -19,9 +22,11 @@ class Kandan.Plugins.UserList
1922
displayName = null
2023
displayName = user.username # Defaults to username
2124
displayName ||= user.email # Revert to user email address if that's all we have
25+
isAdmin = user.is_admin
2226

2327
$users.append @template({
2428
name: displayName,
29+
admin: isAdmin,
2530
avatarUrl: Kandan.Helpers.Avatars.urlFor(user, {size: 25})
2631
})
2732
$el.html($users)

app/assets/stylesheets/lib/font-awesome.css

+105
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,108 @@
1+
.label,
2+
.badge {
3+
display: inline-block;
4+
margin-top: 2.5px;
5+
margin-left: 5px;
6+
padding: 2px 4px;
7+
font-size: 12px;
8+
font-weight: bold;
9+
line-height: 12px;
10+
color: #ffffff;
11+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
12+
white-space: nowrap;
13+
vertical-align: baseline;
14+
background-color: #999999;
15+
}
16+
17+
.label {
18+
-webkit-border-radius: 3px;
19+
-moz-border-radius: 3px;
20+
border-radius: 3px;
21+
}
22+
23+
.badge {
24+
padding-right: 9px;
25+
padding-left: 9px;
26+
-webkit-border-radius: 9px;
27+
-moz-border-radius: 9px;
28+
border-radius: 9px;
29+
}
30+
31+
.label:empty,
32+
.badge:empty {
33+
display: none;
34+
}
35+
36+
a.label:hover,
37+
a.label:focus,
38+
a.badge:hover,
39+
a.badge:focus {
40+
color: #ffffff;
41+
text-decoration: none;
42+
cursor: pointer;
43+
}
44+
45+
.label-important,
46+
.badge-important {
47+
background-color: #b94a48;
48+
}
49+
50+
.label-important[href],
51+
.badge-important[href] {
52+
background-color: #953b39;
53+
}
54+
55+
.label-warning,
56+
.badge-warning {
57+
background-color: #f89406;
58+
}
59+
60+
.label-warning[href],
61+
.badge-warning[href] {
62+
background-color: #c67605;
63+
}
64+
65+
.label-success,
66+
.badge-success {
67+
background-color: #468847;
68+
}
69+
70+
.label-success[href],
71+
.badge-success[href] {
72+
background-color: #356635;
73+
}
74+
75+
.label-info,
76+
.badge-info {
77+
background-color: #3a87ad;
78+
}
79+
80+
.label-info[href],
81+
.badge-info[href] {
82+
background-color: #2d6987;
83+
}
84+
85+
.label-inverse,
86+
.badge-inverse {
87+
background-color: #333333;
88+
}
89+
90+
.label-inverse[href],
91+
.badge-inverse[href] {
92+
background-color: #1a1a1a;
93+
}
94+
95+
.btn .label,
96+
.btn .badge {
97+
position: relative;
98+
top: -1px;
99+
}
100+
101+
.btn-mini .label,
102+
.btn-mini .badge {
103+
top: 0;
104+
}
105+
1106
/*!
2107
* Font Awesome 3.0.2
3108
* the iconic font designed for use with Twitter Bootstrap

app/models/activity_observer.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def after_save(activity)
1111
def message_broadcast_data(activity)
1212
faye_channel = "/channels/#{activity.channel.to_param}"
1313
broadcast_data = activity.attributes.merge({
14-
:user => activity.user.as_json(:only => [:id, :email, :first_name, :last_name, :gravatar_hash, :active, :locale, :username]),
14+
:user => activity.user.as_json(:only => [:id, :email, :first_name, :last_name, :gravatar_hash, :active, :locale, :username, :is_admin]),
1515
:channel => activity.channel.attributes
1616
})
1717
[faye_channel, broadcast_data]
@@ -22,7 +22,7 @@ def upload_broadcast_data(activity)
2222
broadcast_data = {
2323
:event => "attachment#upload",
2424
:entity => activity.attributes.merge({
25-
:user => activity.user.as_json(:only => [:id, :email, :first_name, :last_name, :gravatar_hash, :active, :locale, :username]),
25+
:user => activity.user.as_json(:only => [:id, :email, :first_name, :last_name, :gravatar_hash, :active, :locale, :username, :is_admin]),
2626
:channel => activity.channel.attributes
2727
}),
2828
:extra => {

db/schema.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@
8383
add_index "users", ["authentication_token"], :name => "index_users_on_authentication_token", :unique => true
8484
add_index "users", ["email"], :name => "index_users_on_email", :unique => true
8585

86-
end
86+
end

0 commit comments

Comments
 (0)