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
Léo-Paul Géneau
gitlab-ce
Commits
76ffde63
Commit
76ffde63
authored
May 23, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style improvements
fixed multiple requests causing state to be emptied at wrong time
parent
5e79276b
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
163 additions
and
57 deletions
+163
-57
app/assets/javascripts/ide/components/jobs/list.vue
app/assets/javascripts/ide/components/jobs/list.vue
+25
-0
app/assets/javascripts/ide/components/jobs/stage.vue
app/assets/javascripts/ide/components/jobs/stage.vue
+94
-0
app/assets/javascripts/ide/components/panes/right.vue
app/assets/javascripts/ide/components/panes/right.vue
+6
-5
app/assets/javascripts/ide/components/pipelines/jobs.vue
app/assets/javascripts/ide/components/pipelines/jobs.vue
+10
-41
app/assets/javascripts/ide/components/pipelines/list.vue
app/assets/javascripts/ide/components/pipelines/list.vue
+2
-2
app/assets/javascripts/ide/stores/modules/pipelines/actions.js
...ssets/javascripts/ide/stores/modules/pipelines/actions.js
+0
-1
app/assets/javascripts/ide/stores/modules/pipelines/getters.js
...ssets/javascripts/ide/stores/modules/pipelines/getters.js
+2
-0
app/assets/javascripts/ide/stores/modules/pipelines/mutations.js
...ets/javascripts/ide/stores/modules/pipelines/mutations.js
+10
-7
app/assets/javascripts/vue_shared/components/tabs/tabs.js
app/assets/javascripts/vue_shared/components/tabs/tabs.js
+3
-1
app/assets/stylesheets/framework/gitlab_theme.scss
app/assets/stylesheets/framework/gitlab_theme.scss
+4
-0
app/assets/stylesheets/pages/repo.scss
app/assets/stylesheets/pages/repo.scss
+7
-0
No files found.
app/assets/javascripts/ide/components/jobs/list.vue
0 → 100644
View file @
76ffde63
<
script
>
import
Stage
from
'
./stage.vue
'
;
export
default
{
components
:
{
Stage
,
},
props
:
{
stages
:
{
type
:
Array
,
required
:
true
,
},
},
};
</
script
>
<
template
>
<div
style=
"overflow: auto;"
>
<stage
v-for=
"stage in stages"
:key=
"stage.id"
:stage=
"stage"
/>
</div>
</
template
>
app/assets/javascripts/ide/components/jobs/stage.vue
0 → 100644
View file @
76ffde63
<
script
>
import
{
mapActions
}
from
'
vuex
'
;
import
Icon
from
'
../../../vue_shared/components/icon.vue
'
;
import
CiIcon
from
'
../../../vue_shared/components/ci_icon.vue
'
;
import
LoadingIcon
from
'
../../../vue_shared/components/loading_icon.vue
'
;
export
default
{
components
:
{
Icon
,
CiIcon
,
LoadingIcon
,
},
props
:
{
stage
:
{
type
:
Object
,
required
:
true
,
},
},
computed
:
{
collapseIcon
()
{
return
this
.
stage
.
isCollapsed
?
'
angle-left
'
:
'
angle-down
'
;
},
},
created
()
{
this
.
fetchJobs
(
this
.
stage
);
},
methods
:
{
...
mapActions
(
'
pipelines
'
,
[
'
fetchJobs
'
]),
},
};
</
script
>
<
template
>
<div
class=
"panel panel-default prepend-top-default"
>
<div
class=
"panel-heading"
@
click=
"() => stage.isCollapsed = !stage.isCollapsed"
>
<ci-icon
:status=
"stage.status"
/>
<span
class=
"prepend-left-8"
>
{{
stage
.
title
}}
</span>
<div>
<span
class=
"badge"
>
{{
stage
.
jobs
.
length
}}
</span>
</div>
<icon
:name=
"collapseIcon"
css-classes=
"pull-right"
/>
</div>
<div
class=
"panel-body"
v-show=
"!stage.isCollapsed"
>
<loading-icon
v-if=
"stage.isLoading && !stage.jobs.length"
/>
<template
v-else
>
<div
v-for=
"job in stage.jobs"
:key=
"job.id"
>
<ci-icon
:status=
"job.status"
/>
{{
job
.
name
}}
<a
:href=
"job.build_path"
target=
"_blank"
>
#
{{
job
.
id
}}
</a>
</div>
</
template
>
</div>
</div>
</template>
<
style
scoped
>
.panel-heading
{
display
:
flex
;
cursor
:
pointer
;
}
.panel-heading
.ci-status-icon
{
display
:
flex
;
align-items
:
center
;
}
.panel-heading
.pull-right
{
margin
:
auto
0
auto
auto
;
}
</
style
>
app/assets/javascripts/ide/components/panes/right.vue
View file @
76ffde63
...
...
@@ -31,19 +31,20 @@ export default {
class=
"multi-file-commit-panel-inner"
v-if=
"rightPane"
>
<keep-alive>
<component
:is=
"rightPane"
/>
</keep-alive>
<component
:is=
"rightPane"
/>
</div>
<nav
class=
"ide-activity-bar"
>
<ul
class=
"list-unstyled"
>
<li
v-once
>
<li>
<button
v-tooltip
data-container=
"body"
data-placement=
"left"
:title=
"__('Pipelines')"
class=
"ide-sidebar-link"
class=
"ide-sidebar-link is-right"
:class=
"
{
active: rightPane === $options.rightSidebarViews.pipelines
}"
type="button"
@click="setRightPane($options.rightSidebarViews.pipelines)"
>
...
...
app/assets/javascripts/ide/components/pipelines/jobs.vue
View file @
76ffde63
<
script
>
import
{
mapActions
,
mapGetters
,
mapState
}
from
'
vuex
'
;
import
Icon
from
'
../../../vue_shared/components/icon.vue
'
;
import
CiIcon
from
'
../../../vue_shared/components/ci_icon.vue
'
;
import
Tabs
from
'
../../../vue_shared/components/tabs/tabs
'
;
import
Tab
from
'
../../../vue_shared/components/tabs/tab.vue
'
;
import
JobsList
from
'
../jobs/list.vue
'
;
export
default
{
components
:
{
Tabs
,
Tab
,
Icon
,
CiIcon
,
JobsList
,
},
computed
:
{
...
mapGetters
(
'
pipelines
'
,
[
'
jobsCount
'
,
'
failedJobsCount
'
]),
...
mapGetters
(
'
pipelines
'
,
[
'
jobsCount
'
,
'
failedJobsCount
'
,
'
failedStages
'
]),
...
mapState
(
'
pipelines
'
,
[
'
stages
'
]),
},
moun
ted
()
{
crea
ted
()
{
this
.
fetchStages
();
},
methods
:
{
...
...
@@ -32,46 +30,17 @@ export default {
<template
slot=
"title"
>
Jobs
<span
class=
"badge"
>
{{
jobsCount
}}
</span>
</
template
>
<div
style=
"overflow: auto;"
>
<div
v-for=
"stage in stages"
:key=
"stage.id"
class=
"panel panel-default"
>
<div
class=
"panel-heading"
@
click=
"() => stage.isCollapsed = !stage.isCollapsed"
>
<ci-icon
:status=
"stage.status"
/>
{{ stage.title }}
<span
class=
"badge"
>
{{ stage.jobs.length }}
</span>
<icon
:name=
"stage.isCollapsed ? 'angle-left' : 'angle-down'"
css-classes=
"pull-right"
/>
</div>
<div
class=
"panel-body"
v-show=
"!stage.isCollapsed"
>
<div
v-for=
"job in stage.jobs"
:key=
"job.id"
>
<ci-icon
:status=
"job.status"
/>
{{ job.name }} #{{ job.id }}
</div>
</div>
</div>
</div>
<jobs-list
:stages=
"stages"
/>
</tab>
<tab>
<
template
slot=
"title"
>
Failed Jobs
<span
class=
"badge"
>
{{
failedJobsCount
}}
</span>
</
template
>
List all failed jobs here
<jobs-list
:stages=
"failedStages"
/>
</tab>
</tabs>
</div>
...
...
app/assets/javascripts/ide/components/pipelines/list.vue
View file @
76ffde63
...
...
@@ -20,7 +20,7 @@ export default {
};
},
},
moun
ted
()
{
crea
ted
()
{
this
.
fetchLatestPipeline
();
},
methods
:
{
...
...
@@ -32,7 +32,7 @@ export default {
<
template
>
<div>
<loading-icon
v-if=
"isLoadingPipeline"
v-if=
"isLoadingPipeline
&& !latestPipeline
"
class=
"prepend-top-default"
size=
"2"
/>
...
...
app/assets/javascripts/ide/stores/modules/pipelines/actions.js
View file @
76ffde63
...
...
@@ -35,7 +35,6 @@ export const fetchStages = ({ dispatch, state, rootState }) => {
Api
.
pipelineJobs
(
rootState
.
currentProjectId
,
state
.
latestPipeline
.
id
)
.
then
(({
data
})
=>
dispatch
(
'
receiveStagesSuccess
'
,
data
))
.
then
(()
=>
state
.
stages
.
forEach
(
stage
=>
dispatch
(
'
fetchJobs
'
,
stage
)))
.
catch
(()
=>
dispatch
(
'
receiveStagesError
'
));
};
...
...
app/assets/javascripts/ide/stores/modules/pipelines/getters.js
View file @
76ffde63
export
const
hasLatestPipeline
=
state
=>
!
state
.
isLoadingPipeline
&&
!!
state
.
latestPipeline
;
export
const
failedStages
=
state
=>
state
.
stages
.
filter
(
stage
=>
stage
.
status
.
label
===
'
failed
'
);
export
const
failedJobsCount
=
state
=>
state
.
stages
.
reduce
(
(
acc
,
stage
)
=>
acc
+
stage
.
jobs
.
filter
(
j
=>
j
.
status
.
label
===
'
failed
'
).
length
,
...
...
app/assets/javascripts/ide/stores/modules/pipelines/mutations.js
View file @
76ffde63
...
...
@@ -27,13 +27,16 @@ export default {
[
types
.
RECEIVE_STAGES_SUCCESS
](
state
,
stages
)
{
state
.
isLoadingJobs
=
false
;
state
.
stages
=
stages
.
map
((
stage
,
i
)
=>
({
...
stage
,
id
:
i
,
isCollapsed
:
false
,
isLoading
:
false
,
jobs
:
[],
}));
state
.
stages
=
stages
.
map
((
stage
,
i
)
=>
{
const
foundStage
=
state
.
stages
.
find
(
s
=>
s
.
id
===
i
);
return
{
...
stage
,
id
:
i
,
isCollapsed
:
foundStage
?
foundStage
.
isCollapsed
:
false
,
isLoading
:
foundStage
?
foundStage
.
isLoading
:
false
,
jobs
:
foundStage
?
foundStage
.
jobs
:
[],
};
});
},
[
types
.
REQUEST_JOBS
](
state
,
id
)
{
state
.
stages
=
state
.
stages
.
reduce
(
...
...
app/assets/javascripts/vue_shared/components/tabs/tabs.js
View file @
76ffde63
...
...
@@ -32,7 +32,9 @@ export default {
h
(
'
a
'
,
{
href
:
'
#
'
,
attrs
:
{
href
:
'
#
'
,
},
on
:
{
click
:
()
=>
this
.
setTab
(
i
),
},
...
...
app/assets/stylesheets/framework/gitlab_theme.scss
View file @
76ffde63
...
...
@@ -189,6 +189,10 @@
&
.active
{
color
:
$color-700
;
box-shadow
:
inset
3px
0
$color-700
;
&
.is-right
{
box-shadow
:
inset
-3px
0
$color-700
;
}
}
}
}
...
...
app/assets/stylesheets/pages/repo.scss
View file @
76ffde63
...
...
@@ -903,6 +903,13 @@
width
:
1px
;
background
:
$white-light
;
}
&
.is-right
{
&
:
:
after
{
right
:
auto
;
left
:
-1px
;
}
}
}
}
...
...
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