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
5bfca3b1
Commit
5bfca3b1
authored
Aug 03, 2016
by
Annabel Dunstone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add data attributes to builds
parent
4d32a8b7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
39 deletions
+29
-39
app/assets/javascripts/build.js
app/assets/javascripts/build.js
+6
-16
app/assets/stylesheets/pages/builds.scss
app/assets/stylesheets/pages/builds.scss
+1
-8
app/views/projects/builds/show.html.haml
app/views/projects/builds/show.html.haml
+22
-15
No files found.
app/assets/javascripts/build.js
View file @
5bfca3b1
...
...
@@ -16,11 +16,11 @@
clearInterval
(
Build
.
interval
);
this
.
bp
=
Breakpoints
.
get
();
this
.
hideSidebar
();
this
.
displayTestStatuses
();
$
(
'
.js-build-sidebar
'
).
niceScroll
();
$
(
document
).
off
(
'
click
'
,
'
.js-sidebar-build-toggle
'
).
on
(
'
click
'
,
'
.js-sidebar-build-toggle
'
,
this
.
toggleSidebar
);
$
(
window
).
off
(
'
resize.build
'
).
on
(
'
resize.build
'
,
this
.
hideSidebar
);
this
.
updateArtifactRemoveDate
();
this
.
displayTestStatuses
();
if
(
$
(
'
#build-trace
'
).
length
)
{
this
.
getInitialBuildTrace
();
this
.
initScrollButtonAffix
();
...
...
@@ -134,21 +134,11 @@
};
Build
.
prototype
.
displayTestStatuses
=
function
()
{
$jobTopPosition
=
$
(
'
.build-job
'
).
first
().
offset
().
top
;
$dropdownCounter
=
[];
$
(
'
.build-job a
'
).
each
(
function
()
{
if
(
$
(
this
).
offset
().
top
>
$jobTopPosition
)
{
$dropdownCounter
.
push
(
$
(
this
));
$
(
'
.overflow-jobs > li
'
).
append
(
$
(
this
));
}
})
$
(
'
.more-tests
'
).
text
(
'
More (
'
+
$dropdownCounter
.
length
+
'
)
'
);
if
(
$
(
'
.overflow-jobs > li > a
'
).
length
==
0
)
{
$
(
'
.overflow-jobs-dropdown
'
).
hide
();
}
$jobs
=
$
(
'
.build-job
'
);
jobjects
=
$jobs
.
map
(
function
()
{
return
$
(
this
).
data
();
});
console
.
log
(
jobjects
);
};
return
Build
;
...
...
app/assets/stylesheets/pages/builds.scss
View file @
5bfca3b1
...
...
@@ -74,14 +74,7 @@
}
}
.overflow-jobs-dropdown
{
float
:
right
;
padding
:
7px
0
7px
5px
;
.dropdown-menu-toggle
{
width
:
auto
;
border
:
none
;
}
.jobs-dropdown
{
svg
{
position
:
relative
;
...
...
app/views/projects/builds/show.html.haml
View file @
5bfca3b1
...
...
@@ -7,17 +7,24 @@
-
builds
=
@build
.
pipeline
.
builds
.
latest
.
to_a
-
if
builds
.
size
>
1
.dropdown.
overflow-jobs-dropdown
.dropdown.
stage
%button
.dropdown-menu-toggle
{
type:
'button'
,
'data-toggle'
=>
'dropdown'
}
%span
.more-tests
More
=
icon
(
'caret-down'
)
%ul
.dropdown-menu.dropdown-menu-align-right.overflow-jobs
%ul
.dropdown-menu.overflow-jobs
-
builds
.
each
do
|
build
|
%li
%ul
.nav-links.no-top.no-bottom
%a
=
build
.
stage
-
statuses
=
[
"failed"
,
"pending"
,
"running"
,
"canceled"
,
"skipped"
,
"success"
]
.dropdown.jobs-dropdown
%button
.dropdown-menu-toggle
{
type:
'button'
,
'data-toggle'
=>
'dropdown'
}
%span
.more-tests
More
=
icon
(
'caret-down'
)
%ul
.dropdown-menu.overflow-jobs
-
statuses
.
each
do
|
build_status
|
-
builds
.
select
{
|
build
|
build
.
status
==
build_status
}.
each
do
|
build
|
%li
.build-job
{
class:
(
'active'
if
build
==
@build
)
}
%li
.build-job
{
class:
(
'active'
if
build
==
@build
),
data:
{
id:
build
.
id
,
name:
build
.
name
,
status:
build
.
status
}
}
=
link_to
namespace_project_build_path
(
@project
.
namespace
,
@project
,
build
)
do
=
ci_icon_for_status
(
build
.
status
)
%span
...
...
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