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
544397b8
Commit
544397b8
authored
Feb 08, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
9fb3c7d5
5b23f2b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
2 deletions
+27
-2
app/views/projects/issues/_merge_requests_status.html.haml
app/views/projects/issues/_merge_requests_status.html.haml
+5
-2
spec/views/projects/issues/_merge_requests_status.html.haml_spec.rb
.../projects/issues/_merge_requests_status.html.haml_spec.rb
+22
-0
No files found.
app/views/projects/issues/_merge_requests_status.html.haml
View file @
544397b8
...
...
@@ -12,11 +12,14 @@
-
mr_status_class
=
'closed'
-
else
-
mr_status_date
=
merge_request
.
created_at
-
mr_status_title
=
_
(
'Opened
'
)
-
mr_status_title
=
mr_status_date
?
_
(
'Opened'
)
:
_
(
'Open
'
)
-
mr_status_icon
=
'issue-open-m'
-
mr_status_class
=
'open'
-
mr_status_tooltip
=
"<div><span class=
\"
bold
\"
>
#{
mr_status_title
}
</span>
#{
time_ago_in_words
(
mr_status_date
)
}
ago</div><span class=
\"
text-tertiary
\"
>
#{
l
(
mr_status_date
.
to_time
,
format:
time_format
)
}
</span>"
-
if
mr_status_date
-
mr_status_tooltip
=
"<div><span class=
\"
bold
\"
>
#{
mr_status_title
}
</span>
#{
time_ago_in_words
(
mr_status_date
)
}
ago</div><span class=
\"
text-tertiary
\"
>
#{
l
(
mr_status_date
.
to_time
,
format:
time_format
)
}
</span>"
-
else
-
mr_status_tooltip
=
"<div><span class=
\"
bold
\"
>
#{
mr_status_title
}
</span></div>"
%span
.mr-status-wrapper.suggestion-help-hover
{
class:
css_class
,
data:
{
toggle:
'tooltip'
,
placement:
'bottom'
,
html:
'true'
,
title:
mr_status_tooltip
}
}
=
sprite_icon
(
mr_status_icon
,
size:
16
,
css_class:
"merge-request-status
#{
mr_status_class
}
"
)
spec/views/projects/issues/_merge_requests_status.html.haml_spec.rb
0 → 100644
View file @
544397b8
# frozen_string_literal: true
require
'spec_helper'
describe
'projects/issues/_merge_requests_status.html.haml'
do
it
'shows date of status change in tooltip'
do
merge_request
=
create
(
:merge_request
,
created_at:
1
.
month
.
ago
)
render
partial:
'projects/issues/merge_requests_status'
,
locals:
{
merge_request:
merge_request
,
css_class:
''
}
expect
(
rendered
).
to
match
(
"Opened.*about 1 month ago"
)
end
it
'shows only status in tooltip if date is not set'
do
merge_request
=
create
(
:merge_request
,
state: :closed
)
render
partial:
'projects/issues/merge_requests_status'
,
locals:
{
merge_request:
merge_request
,
css_class:
''
}
expect
(
rendered
).
to
match
(
"Closed"
)
end
end
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