Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e141a1c6
Commit
e141a1c6
authored
May 27, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Notifications dropdown on project page now has descriptions
This is part of #12758
parent
3fd0b364
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
11 deletions
+43
-11
app/assets/stylesheets/framework/dropdowns.scss
app/assets/stylesheets/framework/dropdowns.scss
+21
-5
app/helpers/notifications_helper.rb
app/helpers/notifications_helper.rb
+19
-3
app/models/notification_setting.rb
app/models/notification_setting.rb
+1
-1
app/views/projects/buttons/_notifications.html.haml
app/views/projects/buttons/_notifications.html.haml
+2
-2
No files found.
app/assets/stylesheets/framework/dropdowns.scss
View file @
e141a1c6
...
...
@@ -122,10 +122,8 @@
a
{
display
:
block
;
position
:
relative
;
padding-left
:
10px
;
padding-right
:
10px
;
padding
:
5px
10px
;
color
:
$dropdown-link-color
;
line-height
:
34px
;
text-overflow
:
ellipsis
;
border-radius
:
2px
;
white-space
:
nowrap
;
...
...
@@ -162,6 +160,16 @@
}
}
.dropdown-menu-large
{
width
:
340px
;
}
.dropdown-menu-no-wrap
{
a
{
white-space
:
normal
;
}
}
.dropdown-menu-full-width
{
width
:
100%
;
}
...
...
@@ -236,8 +244,7 @@
&
:
:
before
{
position
:
absolute
;
left
:
5px
;
top
:
50%
;
margin-top
:
-7px
;
top
:
8px
;
font
:
normal
normal
normal
14px
/
1
FontAwesome
;
font-size
:
inherit
;
text-rendering
:
auto
;
...
...
@@ -532,3 +539,12 @@
background-color
:
$calendar-unselectable-bg
;
}
}
.dropdown-menu-inner-title
{
display
:
block
;
font-weight
:
600
;
}
.dropdown-menu-inner-content
{
display
:
block
;
}
app/helpers/notifications_helper.rb
View file @
e141a1c6
...
...
@@ -31,6 +31,21 @@ module NotificationsHelper
end
end
def
notification_description
(
level
)
case
level
.
to_sym
when
:participating
'You will only receive notifications from related resources'
when
:mention
'You will receive notifications only for comments in which you were @mentioned'
when
:watch
'You will receive notifications for any activity'
when
:disabled
'You will not get any notifications via email'
when
:global
'Use your global notification setting'
end
end
def
notification_list_item
(
level
,
setting
)
title
=
notification_title
(
level
)
...
...
@@ -39,9 +54,10 @@ module NotificationsHelper
notification_title:
title
}
content_tag
(
:li
,
class:
(
'active'
if
setting
.
level
==
level
))
do
link_to
'#'
,
class:
'update-notification'
,
data:
data
do
notification_icon
(
level
,
title
)
content_tag
(
:li
,
role:
"menuitem"
)
do
link_to
'#'
,
class:
"update-notification
#{
(
'is-active'
if
setting
.
level
==
level
)
}
"
,
data:
data
do
link_output
=
content_tag
(
:strong
,
title
,
class:
'dropdown-menu-inner-title'
)
link_output
<<
content_tag
(
:span
,
notification_description
(
level
),
class:
'dropdown-menu-inner-content'
)
end
end
end
...
...
app/models/notification_setting.rb
View file @
e141a1c6
class
NotificationSetting
<
ActiveRecord
::
Base
enum
level:
{
disabled:
0
,
participating:
1
,
watch:
2
,
global:
3
,
mention:
4
}
enum
level:
{
global:
3
,
watch:
2
,
mention:
4
,
participating:
1
,
disabled:
0
}
default_value_for
:level
,
NotificationSetting
.
levels
[
:global
]
...
...
app/views/projects/buttons/_notifications.html.haml
View file @
e141a1c6
...
...
@@ -2,10 +2,10 @@
=
form_for
@notification_setting
,
url:
namespace_project_notification_setting_path
(
@project
.
namespace
.
becomes
(
Namespace
),
@project
),
method: :patch
,
remote:
true
,
html:
{
class:
'inline'
,
id:
'notification-form'
}
do
|
f
|
=
f
.
hidden_field
:level
.dropdown
%
a
.dropdown-new.btn.notifications-btn
#notifications-button
{
href:
'#'
,
"data-toggle"
=>
"dropdown"
}
%
button
.btn.notifications-btn
#notifications-button
{
data:
{
toggle:
"dropdown"
},
aria:
{
haspopup:
"true"
,
expanded:
"false"
}
}
=
icon
(
'bell'
)
=
notification_title
(
@notification_setting
.
level
)
=
icon
(
'caret-down'
)
%ul
.dropdown-menu.dropdown-menu-
align-right.project-home-dropdown
%ul
.dropdown-menu.dropdown-menu-
no-wrap.dropdown-menu-align-right.dropdown-menu-selectable.dropdown-menu-large
{
role:
"menu"
}
-
NotificationSetting
.
levels
.
each
do
|
level
|
=
notification_list_item
(
level
.
first
,
@notification_setting
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment