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
9955dc29
Commit
9955dc29
authored
Jul 12, 2016
by
Annabel Dunstone
Committed by
Alfredo Sumaran
Aug 04, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update timeago to shorter representation
parent
6df51b35
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
64 additions
and
8 deletions
+64
-8
CHANGELOG
CHANGELOG
+1
-0
app/assets/javascripts/application.js
app/assets/javascripts/application.js
+4
-2
app/assets/javascripts/lib/utils/datetime_utility.js
app/assets/javascripts/lib/utils/datetime_utility.js
+37
-1
app/helpers/application_helper.rb
app/helpers/application_helper.rb
+6
-2
app/views/projects/ci/pipelines/_pipeline.html.haml
app/views/projects/ci/pipelines/_pipeline.html.haml
+1
-1
spec/helpers/application_helper_spec.rb
spec/helpers/application_helper_spec.rb
+15
-2
No files found.
CHANGELOG
View file @
9955dc29
...
@@ -19,6 +19,7 @@ v 8.11.0 (unreleased)
...
@@ -19,6 +19,7 @@ v 8.11.0 (unreleased)
- Add "No one can push" as an option for protected branches. !5081
- Add "No one can push" as an option for protected branches. !5081
- Improve performance of AutolinkFilter#text_parse by using XPath
- Improve performance of AutolinkFilter#text_parse by using XPath
- Environments have an url to link to
- Environments have an url to link to
- Update `timeago` plugin to use multiple string/locale settings
- Remove unused images (ClemMakesApps)
- Remove unused images (ClemMakesApps)
- Limit git rev-list output count to one in forced push check
- Limit git rev-list output count to one in forced push check
- Clean up unused routes (Josef Strzibny)
- Clean up unused routes (Josef Strzibny)
...
...
app/assets/javascripts/application.js
View file @
9955dc29
...
@@ -287,7 +287,7 @@
...
@@ -287,7 +287,7 @@
$
(
'
.page-with-sidebar
'
).
toggleClass
(
'
page-sidebar-collapsed page-sidebar-expanded
'
).
removeClass
(
'
page-sidebar-pinned
'
);
$
(
'
.page-with-sidebar
'
).
toggleClass
(
'
page-sidebar-collapsed page-sidebar-expanded
'
).
removeClass
(
'
page-sidebar-pinned
'
);
$
(
'
.navbar-fixed-top
'
).
removeClass
(
'
header-pinned-nav
'
);
$
(
'
.navbar-fixed-top
'
).
removeClass
(
'
header-pinned-nav
'
);
}
}
return
$document
.
off
(
'
click
'
,
'
.js-nav-pin
'
).
on
(
'
click
'
,
'
.js-nav-pin
'
,
function
(
e
)
{
$document
.
off
(
'
click
'
,
'
.js-nav-pin
'
).
on
(
'
click
'
,
'
.js-nav-pin
'
,
function
(
e
)
{
var
$page
,
$pinBtn
,
$tooltip
,
$topNav
,
doPinNav
,
tooltipText
;
var
$page
,
$pinBtn
,
$tooltip
,
$topNav
,
doPinNav
,
tooltipText
;
e
.
preventDefault
();
e
.
preventDefault
();
$pinBtn
=
$
(
e
.
currentTarget
);
$pinBtn
=
$
(
e
.
currentTarget
);
...
@@ -315,6 +315,8 @@
...
@@ -315,6 +315,8 @@
$tooltip
.
find
(
'
.tooltip-inner
'
).
text
(
tooltipText
);
$tooltip
.
find
(
'
.tooltip-inner
'
).
text
(
tooltipText
);
return
$pinBtn
.
attr
(
'
title
'
,
tooltipText
).
tooltip
(
'
fixTitle
'
);
return
$pinBtn
.
attr
(
'
title
'
,
tooltipText
).
tooltip
(
'
fixTitle
'
);
});
});
});
// Custom time ago
gl
.
utils
.
shortTimeAgo
(
$
(
'
.js-short-timeago
'
));
});
}).
call
(
this
);
}).
call
(
this
);
app/assets/javascripts/lib/utils/datetime_utility.js
View file @
9955dc29
...
@@ -8,13 +8,16 @@
...
@@ -8,13 +8,16 @@
base
.
utils
=
{};
base
.
utils
=
{};
}
}
w
.
gl
.
utils
.
days
=
[
'
Sunday
'
,
'
Monday
'
,
'
Tuesday
'
,
'
Wednesday
'
,
'
Thursday
'
,
'
Friday
'
,
'
Saturday
'
];
w
.
gl
.
utils
.
days
=
[
'
Sunday
'
,
'
Monday
'
,
'
Tuesday
'
,
'
Wednesday
'
,
'
Thursday
'
,
'
Friday
'
,
'
Saturday
'
];
w
.
gl
.
utils
.
formatDate
=
function
(
datetime
)
{
w
.
gl
.
utils
.
formatDate
=
function
(
datetime
)
{
return
dateFormat
(
datetime
,
'
mmm d, yyyy h:MMtt Z
'
);
return
dateFormat
(
datetime
,
'
mmm d, yyyy h:MMtt Z
'
);
};
};
w
.
gl
.
utils
.
getDayName
=
function
(
date
)
{
w
.
gl
.
utils
.
getDayName
=
function
(
date
)
{
return
this
.
days
[
date
.
getDay
()];
return
this
.
days
[
date
.
getDay
()];
};
};
return
w
.
gl
.
utils
.
localTimeAgo
=
function
(
$timeagoEls
,
setTimeago
)
{
w
.
gl
.
utils
.
localTimeAgo
=
function
(
$timeagoEls
,
setTimeago
)
{
if
(
setTimeago
==
null
)
{
if
(
setTimeago
==
null
)
{
setTimeago
=
true
;
setTimeago
=
true
;
}
}
...
@@ -31,6 +34,39 @@
...
@@ -31,6 +34,39 @@
});
});
}
}
};
};
w
.
gl
.
utils
.
shortTimeAgo
=
function
(
$el
)
{
var
shortLocale
,
tmpLocale
;
shortLocale
=
{
prefixAgo
:
null
,
prefixFromNow
:
null
,
suffixAgo
:
'
ago
'
,
suffixFromNow
:
'
from now
'
,
seconds
:
'
1 min
'
,
minute
:
'
1 min
'
,
minutes
:
'
%d mins
'
,
hour
:
'
1 hr
'
,
hours
:
'
%d hrs
'
,
day
:
'
1 day
'
,
days
:
'
%d days
'
,
month
:
'
1 month
'
,
months
:
'
%d months
'
,
year
:
'
1 year
'
,
years
:
'
%d years
'
,
wordSeparator
:
'
'
,
numbers
:
[]
};
tmpLocale
=
$
.
timeago
.
settings
.
strings
;
$el
.
each
(
function
(
el
)
{
var
$el1
;
$el1
=
$
(
this
);
return
$el1
.
attr
(
'
title
'
,
gl
.
utils
.
formatDate
(
$el
.
attr
(
'
datetime
'
)));
});
$
.
timeago
.
settings
.
strings
=
shortLocale
;
$el
.
timeago
();
$
.
timeago
.
settings
.
strings
=
tmpLocale
;
};
})(
window
);
})(
window
);
}).
call
(
this
);
}).
call
(
this
);
app/helpers/application_helper.rb
View file @
9955dc29
...
@@ -163,9 +163,13 @@ module ApplicationHelper
...
@@ -163,9 +163,13 @@ module ApplicationHelper
# `html_class` argument is provided.
# `html_class` argument is provided.
#
#
# Returns an HTML-safe String
# Returns an HTML-safe String
def
time_ago_with_tooltip
(
time
,
placement:
'top'
,
html_class:
'time_ago'
,
skip_js:
false
)
def
time_ago_with_tooltip
(
time
,
placement:
'top'
,
html_class:
''
,
skip_js:
false
,
short_format:
false
)
css_classes
=
short_format
?
'js-short-timeago'
:
'js-timeago'
css_classes
<<
"
#{
html_class
}
"
unless
html_class
.
blank?
css_classes
<<
' js-timeago-pending'
unless
skip_js
element
=
content_tag
:time
,
time
.
to_s
,
element
=
content_tag
:time
,
time
.
to_s
,
class:
"
#{
html_class
}
js-timeago
#{
"js-timeago-pending"
unless
skip_js
}
"
,
class:
css_classes
,
datetime:
time
.
to_time
.
getutc
.
iso8601
,
datetime:
time
.
to_time
.
getutc
.
iso8601
,
title:
time
.
to_time
.
in_time_zone
.
to_s
(
:medium
),
title:
time
.
to_time
.
in_time_zone
.
to_s
(
:medium
),
data:
{
toggle:
'tooltip'
,
placement:
placement
,
container:
'body'
}
data:
{
toggle:
'tooltip'
,
placement:
placement
,
container:
'body'
}
...
...
app/views/projects/ci/pipelines/_pipeline.html.haml
View file @
9955dc29
...
@@ -53,7 +53,7 @@
...
@@ -53,7 +53,7 @@
-
if
pipeline
.
finished_at
-
if
pipeline
.
finished_at
%p
.finished-at
%p
.finished-at
=
icon
(
"calendar"
)
=
icon
(
"calendar"
)
#{
time_ago_with_tooltip
(
pipeline
.
finished_at
)
}
#{
time_ago_with_tooltip
(
pipeline
.
finished_at
,
short_format:
true
,
skip_js:
true
)
}
%td
.pipeline-actions
%td
.pipeline-actions
.controls.hidden-xs.pull-right
.controls.hidden-xs.pull-right
...
...
spec/helpers/application_helper_spec.rb
View file @
9955dc29
...
@@ -218,12 +218,12 @@ describe ApplicationHelper do
...
@@ -218,12 +218,12 @@ describe ApplicationHelper do
end
end
it
'includes a default js-timeago class'
do
it
'includes a default js-timeago class'
do
expect
(
element
.
attr
(
'class'
)).
to
eq
'
time_ago
js-timeago js-timeago-pending'
expect
(
element
.
attr
(
'class'
)).
to
eq
'js-timeago js-timeago-pending'
end
end
it
'accepts a custom html_class'
do
it
'accepts a custom html_class'
do
expect
(
element
(
html_class:
'custom_class'
).
attr
(
'class'
)).
expect
(
element
(
html_class:
'custom_class'
).
attr
(
'class'
)).
to
eq
'
custom_class js-timeago
js-timeago-pending'
to
eq
'
js-timeago custom_class
js-timeago-pending'
end
end
it
'accepts a custom tooltip placement'
do
it
'accepts a custom tooltip placement'
do
...
@@ -244,6 +244,19 @@ describe ApplicationHelper do
...
@@ -244,6 +244,19 @@ describe ApplicationHelper do
it
'converts to Time'
do
it
'converts to Time'
do
expect
{
helper
.
time_ago_with_tooltip
(
Date
.
today
)
}.
not_to
raise_error
expect
{
helper
.
time_ago_with_tooltip
(
Date
.
today
)
}.
not_to
raise_error
end
end
it
'add class for the short format and includes inline script'
do
timeago_element
=
element
(
short_format:
'short'
)
expect
(
timeago_element
.
attr
(
'class'
)).
to
eq
'js-short-timeago js-timeago-pending'
script_element
=
timeago_element
.
next_element
expect
(
script_element
.
name
).
to
eq
'script'
end
it
'add class for the short format and does not include inline script'
do
timeago_element
=
element
(
short_format:
'short'
,
skip_js:
true
)
expect
(
timeago_element
.
attr
(
'class'
)).
to
eq
'js-short-timeago'
expect
(
timeago_element
.
next_element
).
to
eq
nil
end
end
end
describe
'render_markup'
do
describe
'render_markup'
do
...
...
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