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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
71ebf3aa
Commit
71ebf3aa
authored
Jan 29, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8670 from tsigo/rs-fa-icon-helper
Add icon helper method
parents
fd713572
4e7a4cd9
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
42 additions
and
41 deletions
+42
-41
app/helpers/application_helper.rb
app/helpers/application_helper.rb
+0
-9
app/helpers/commits_helper.rb
app/helpers/commits_helper.rb
+2
-4
app/helpers/events_helper.rb
app/helpers/events_helper.rb
+5
-6
app/helpers/icons_helper.rb
app/helpers/icons_helper.rb
+23
-5
app/helpers/issues_helper.rb
app/helpers/issues_helper.rb
+1
-1
app/helpers/notes_helper.rb
app/helpers/notes_helper.rb
+3
-3
app/helpers/notifications_helper.rb
app/helpers/notifications_helper.rb
+4
-4
app/helpers/projects_helper.rb
app/helpers/projects_helper.rb
+2
-2
app/helpers/tree_helper.rb
app/helpers/tree_helper.rb
+2
-7
No files found.
app/helpers/application_helper.rb
View file @
71ebf3aa
...
@@ -247,15 +247,6 @@ module ApplicationHelper
...
@@ -247,15 +247,6 @@ module ApplicationHelper
Gitlab
::
MarkdownHelper
.
gitlab_markdown?
(
filename
)
Gitlab
::
MarkdownHelper
.
gitlab_markdown?
(
filename
)
end
end
def
spinner
(
text
=
nil
,
visible
=
false
)
css_class
=
'loading'
css_class
<<
' hide'
unless
visible
content_tag
:div
,
class:
css_class
do
content_tag
(
:i
,
nil
,
class:
'fa fa-spinner fa-spin'
)
+
text
end
end
def
link_to
(
name
=
nil
,
options
=
nil
,
html_options
=
nil
,
&
block
)
def
link_to
(
name
=
nil
,
options
=
nil
,
html_options
=
nil
,
&
block
)
begin
begin
uri
=
URI
(
options
)
uri
=
URI
(
options
)
...
...
app/helpers/commits_helper.rb
View file @
71ebf3aa
...
@@ -65,8 +65,7 @@ module CommitsHelper
...
@@ -65,8 +65,7 @@ module CommitsHelper
branches
.
sort
.
map
do
|
branch
|
branches
.
sort
.
map
do
|
branch
|
link_to
(
project_tree_path
(
project
,
branch
))
do
link_to
(
project_tree_path
(
project
,
branch
))
do
content_tag
:span
,
class:
'label label-gray'
do
content_tag
:span
,
class:
'label label-gray'
do
content_tag
(
:i
,
nil
,
class:
'fa fa-code-fork'
)
+
' '
+
icon
(
'code-fork'
)
+
' '
+
branch
branch
end
end
end
end
end
.
join
(
" "
).
html_safe
end
.
join
(
" "
).
html_safe
...
@@ -78,8 +77,7 @@ module CommitsHelper
...
@@ -78,8 +77,7 @@ module CommitsHelper
sorted
.
map
do
|
tag
|
sorted
.
map
do
|
tag
|
link_to
(
project_commits_path
(
project
,
project
.
repository
.
find_tag
(
tag
).
name
))
do
link_to
(
project_commits_path
(
project
,
project
.
repository
.
find_tag
(
tag
).
name
))
do
content_tag
:span
,
class:
'label label-gray'
do
content_tag
:span
,
class:
'label label-gray'
do
content_tag
(
:i
,
nil
,
class:
'fa fa-tag'
)
+
' '
+
icon
(
'tag'
)
+
' '
+
tag
tag
end
end
end
end
end
.
join
(
" "
).
html_safe
end
.
join
(
" "
).
html_safe
...
...
app/helpers/events_helper.rb
View file @
71ebf3aa
...
@@ -27,18 +27,17 @@ module EventsHelper
...
@@ -27,18 +27,17 @@ module EventsHelper
content_tag
:li
,
class:
"filter_icon
#{
active
}
"
do
content_tag
:li
,
class:
"filter_icon
#{
active
}
"
do
link_to
request
.
path
,
class:
'has_tooltip event_filter_link'
,
id:
"
#{
key
}
_event_filter"
,
'data-original-title'
=>
tooltip
do
link_to
request
.
path
,
class:
'has_tooltip event_filter_link'
,
id:
"
#{
key
}
_event_filter"
,
'data-original-title'
=>
tooltip
do
content_tag
(
:i
,
nil
,
class:
icon_for_event
[
key
])
+
icon
(
icon_for_event
[
key
])
+
content_tag
(
:span
,
' '
+
tooltip
)
content_tag
(
:span
,
' '
+
tooltip
)
end
end
end
end
end
end
def
icon_for_event
def
icon_for_event
{
{
EventFilter
.
push
=>
'
fa fa-
upload'
,
EventFilter
.
push
=>
'upload'
,
EventFilter
.
merged
=>
'
fa fa-
check-square-o'
,
EventFilter
.
merged
=>
'check-square-o'
,
EventFilter
.
comments
=>
'
fa fa-
comments'
,
EventFilter
.
comments
=>
'comments'
,
EventFilter
.
team
=>
'
fa fa-
user'
,
EventFilter
.
team
=>
'user'
,
}
}
end
end
...
...
app/helpers/icons_helper.rb
View file @
71ebf3aa
module
IconsHelper
module
IconsHelper
# Creates an icon tag given icon name(s) and possible icon modifiers.
#
# Right now this method simply delegates directly to `fa_icon` from the
# font-awesome-rails gem, but should we ever use a different icon pack in the
# future we won't have to change hundreds of method calls.
def
icon
(
names
,
options
=
{})
fa_icon
(
names
,
options
)
end
def
spinner
(
text
=
nil
,
visible
=
false
)
css_class
=
'loading'
css_class
<<
' hide'
unless
visible
content_tag
:div
,
class:
css_class
do
icon
(
'spinner spin'
)
+
text
end
end
def
boolean_to_icon
(
value
)
def
boolean_to_icon
(
value
)
if
value
.
to_s
==
"true"
if
value
.
to_s
==
"true"
content_tag
:i
,
nil
,
class:
'fa fa-circle cgreen'
icon
(
'circle'
,
class:
'cgreen'
)
else
else
content_tag
:i
,
nil
,
class:
'fa fa-power-off clgray'
icon
(
'power-off'
,
class:
'clgray'
)
end
end
end
end
def
public_icon
def
public_icon
content_tag
:i
,
nil
,
class:
'fa fa-globe'
icon
(
'globe'
)
end
end
def
internal_icon
def
internal_icon
content_tag
:i
,
nil
,
class:
'fa fa-shield'
icon
(
'shield'
)
end
end
def
private_icon
def
private_icon
content_tag
:i
,
nil
,
class:
'fa fa-lock'
icon
(
'lock'
)
end
end
end
end
app/helpers/issues_helper.rb
View file @
71ebf3aa
...
@@ -49,7 +49,7 @@ module IssuesHelper
...
@@ -49,7 +49,7 @@ module IssuesHelper
ts
<<
capture_haml
do
ts
<<
capture_haml
do
haml_tag
:span
do
haml_tag
:span
do
haml_concat
'·'
haml_concat
'·'
haml_concat
'<i class="fa fa-edit" title="edited"></i> '
haml_concat
icon
(
'edit'
,
title:
'edited'
)
haml_concat
time_ago_with_tooltip
(
issue
.
updated_at
,
'bottom'
,
'issue_edited_ago'
)
haml_concat
time_ago_with_tooltip
(
issue
.
updated_at
,
'bottom'
,
'issue_edited_ago'
)
end
end
end
end
...
...
app/helpers/notes_helper.rb
View file @
71ebf3aa
...
@@ -22,7 +22,7 @@ module NotesHelper
...
@@ -22,7 +22,7 @@ module NotesHelper
ts
<<
capture_haml
do
ts
<<
capture_haml
do
haml_tag
:span
do
haml_tag
:span
do
haml_concat
'·'
haml_concat
'·'
haml_concat
'<i class="fa fa-edit" title="edited"></i> '
haml_concat
icon
(
'edit'
,
title:
'edited'
)
haml_concat
time_ago_with_tooltip
(
note
.
updated_at
,
'bottom'
,
'note_edited_ago'
)
haml_concat
time_ago_with_tooltip
(
note
.
updated_at
,
'bottom'
,
'note_edited_ago'
)
end
end
end
end
...
@@ -57,7 +57,7 @@ module NotesHelper
...
@@ -57,7 +57,7 @@ module NotesHelper
button_tag
(
class:
'btn add-diff-note js-add-diff-note-button'
,
button_tag
(
class:
'btn add-diff-note js-add-diff-note-button'
,
data:
data
,
data:
data
,
title:
'Add a comment to this line'
)
do
title:
'Add a comment to this line'
)
do
content_tag
:i
,
nil
,
class:
'fa fa-comment-o'
icon
(
'comment-o'
)
end
end
end
end
...
@@ -74,7 +74,7 @@ module NotesHelper
...
@@ -74,7 +74,7 @@ module NotesHelper
button_tag
class:
'btn reply-btn js-discussion-reply-button'
,
button_tag
class:
'btn reply-btn js-discussion-reply-button'
,
data:
data
,
title:
'Add a reply'
do
data:
data
,
title:
'Add a reply'
do
link_text
=
content_tag
(
:i
,
nil
,
class:
'fa fa-
comment'
)
link_text
=
icon
(
'
comment'
)
link_text
<<
' Reply'
link_text
<<
' Reply'
end
end
end
end
...
...
app/helpers/notifications_helper.rb
View file @
71ebf3aa
module
NotificationsHelper
module
NotificationsHelper
def
notification_icon
(
notification
)
def
notification_icon
(
notification
)
if
notification
.
disabled?
if
notification
.
disabled?
content_tag
:i
,
nil
,
class:
'fa fa-volume-off ns-mute'
icon
(
'volume-off'
,
class:
'ns-mute'
)
elsif
notification
.
participating?
elsif
notification
.
participating?
content_tag
:i
,
nil
,
class:
'fa fa-volume-down ns-part'
icon
(
'volume-down'
,
class:
'ns-part'
)
elsif
notification
.
watch?
elsif
notification
.
watch?
content_tag
:i
,
nil
,
class:
'fa fa-volume-up ns-watch'
icon
(
'volume-up'
,
class:
'ns-watch'
)
else
else
content_tag
:i
,
nil
,
class:
'fa fa-circle-o ns-default'
icon
(
'circle-o'
,
class:
'ns-default'
)
end
end
end
end
end
end
app/helpers/projects_helper.rb
View file @
71ebf3aa
...
@@ -83,7 +83,7 @@ module ProjectsHelper
...
@@ -83,7 +83,7 @@ module ProjectsHelper
' Star'
' Star'
end
end
content_tag
(
'i'
,
' '
,
class:
'fa fa-
star'
)
+
toggle_text
icon
(
'
star'
)
+
toggle_text
end
end
count_html
=
content_tag
(
'span'
,
class:
'count'
)
do
count_html
=
content_tag
(
'span'
,
class:
'count'
)
do
...
@@ -107,7 +107,7 @@ module ProjectsHelper
...
@@ -107,7 +107,7 @@ module ProjectsHelper
end
end
def
link_to_toggle_fork
def
link_to_toggle_fork
out
=
content_tag
(
:i
,
''
,
class:
'fa fa-
code-fork'
)
out
=
icon
(
'
code-fork'
)
out
<<
' Fork'
out
<<
' Fork'
out
<<
content_tag
(
:span
,
class:
'count'
)
do
out
<<
content_tag
(
:span
,
class:
'count'
)
do
@project
.
forks_count
.
to_s
@project
.
forks_count
.
to_s
...
...
app/helpers/tree_helper.rb
View file @
71ebf3aa
...
@@ -38,13 +38,8 @@ module TreeHelper
...
@@ -38,13 +38,8 @@ module TreeHelper
#
#
# type - String type of the tree item; either 'folder' or 'file'
# type - String type of the tree item; either 'folder' or 'file'
def
tree_icon
(
type
)
def
tree_icon
(
type
)
icon_class
=
if
type
==
'folder'
icon_class
=
type
==
'folder'
?
'folder'
:
'file-o'
'fa fa-folder'
icon
(
icon_class
)
else
'fa fa-file-o'
end
content_tag
:i
,
nil
,
class:
icon_class
end
end
def
tree_hex_class
(
content
)
def
tree_hex_class
(
content
)
...
...
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