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
Boxiang Sun
gitlab-ce
Commits
e13baff0
Commit
e13baff0
authored
Oct 04, 2018
by
Filipa Lacerda
Committed by
Phil Hughes
Oct 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renders empty states in the Vue app in Job page
parent
2090f2d0
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
274 additions
and
40 deletions
+274
-40
app/assets/javascripts/jobs/components/empty_state.vue
app/assets/javascripts/jobs/components/empty_state.vue
+2
-2
app/assets/javascripts/jobs/components/job_app.vue
app/assets/javascripts/jobs/components/job_app.vue
+15
-0
app/assets/javascripts/jobs/store/getters.js
app/assets/javascripts/jobs/store/getters.js
+12
-1
app/serializers/detailed_status_entity.rb
app/serializers/detailed_status_entity.rb
+7
-1
app/views/projects/jobs/_empty_state.html.haml
app/views/projects/jobs/_empty_state.html.haml
+0
-18
app/views/projects/jobs/_empty_states.html.haml
app/views/projects/jobs/_empty_states.html.haml
+0
-9
app/views/projects/jobs/show.html.haml
app/views/projects/jobs/show.html.haml
+0
-2
spec/features/projects/jobs_spec.rb
spec/features/projects/jobs_spec.rb
+6
-6
spec/javascripts/jobs/components/empty_state_spec.js
spec/javascripts/jobs/components/empty_state_spec.js
+1
-1
spec/javascripts/jobs/components/job_app_spec.js
spec/javascripts/jobs/components/job_app_spec.js
+139
-0
spec/javascripts/jobs/store/getters_spec.js
spec/javascripts/jobs/store/getters_spec.js
+92
-0
No files found.
app/assets/javascripts/jobs/components/empty_state.vue
View file @
e13baff0
...
...
@@ -27,7 +27,7 @@
value
===
null
||
(
Object
.
prototype
.
hasOwnProperty
.
call
(
value
,
'
path
'
)
&&
Object
.
prototype
.
hasOwnProperty
.
call
(
value
,
'
method
'
)
&&
Object
.
prototype
.
hasOwnProperty
.
call
(
value
,
'
title
'
))
Object
.
prototype
.
hasOwnProperty
.
call
(
value
,
'
button_
title
'
))
);
},
},
...
...
@@ -67,7 +67,7 @@
:data-method=
"action.method"
class=
"js-job-empty-state-action btn btn-primary"
>
{{
action
.
title
}}
{{
action
.
button_
title
}}
</a>
</div>
</div>
...
...
app/assets/javascripts/jobs/components/job_app.vue
View file @
e13baff0
...
...
@@ -2,6 +2,7 @@
import
{
mapGetters
,
mapState
}
from
'
vuex
'
;
import
CiHeader
from
'
~/vue_shared/components/header_ci_component.vue
'
;
import
Callout
from
'
~/vue_shared/components/callout.vue
'
;
import
EmptyState
from
'
./empty_state.vue
'
;
import
EnvironmentsBlock
from
'
./environments_block.vue
'
;
import
ErasedBlock
from
'
./erased_block.vue
'
;
import
StuckBlock
from
'
./stuck_block.vue
'
;
...
...
@@ -11,6 +12,7 @@
components
:
{
CiHeader
,
Callout
,
EmptyState
,
EnvironmentsBlock
,
ErasedBlock
,
StuckBlock
,
...
...
@@ -31,6 +33,8 @@
'
jobHasStarted
'
,
'
hasEnvironment
'
,
'
isJobStuck
'
,
'
hasTrace
'
,
'
emptyStateIllustration
'
,
]),
},
};
...
...
@@ -77,12 +81,14 @@
<environments-block
v-if=
"hasEnvironment"
class=
"js-job-environment"
:deployment-status=
"job.deployment_status"
:icon-status=
"job.status"
/>
<erased-block
v-if=
"job.erased"
class=
"js-job-erased"
:user=
"job.erased_by"
:erased-at=
"job.erased_at"
/>
...
...
@@ -91,6 +97,15 @@
<!-- EO job log -->
<!--empty state -->
<empty-state
v-if=
"!hasTrace"
class=
"js-job-empty-state"
:illustration-path=
"emptyStateIllustration.image"
:illustration-size-class=
"emptyStateIllustration.size"
:title=
"emptyStateIllustration.title"
:content=
"emptyStateIllustration.content"
:action=
"job.status.action"
/>
<!-- EO empty state -->
<!-- EO Body Section -->
...
...
app/assets/javascripts/jobs/store/getters.js
View file @
e13baff0
...
...
@@ -29,6 +29,16 @@ export const jobHasStarted = state => !(state.job.started === false);
export
const
hasEnvironment
=
state
=>
!
_
.
isEmpty
(
state
.
job
.
deployment_status
);
/**
* Checks if it the job has trace.
* Used to check if it should render the job log or the empty state
* @returns {Boolean}
*/
export
const
hasTrace
=
state
=>
state
.
job
.
has_trace
||
state
.
job
.
status
.
group
===
'
running
'
;
export
const
emptyStateIllustration
=
state
=>
(
state
.
job
&&
state
.
job
.
status
&&
state
.
job
.
status
.
illustration
)
||
{};
/**
* When the job is pending and there are no available runners
* we need to render the stuck block;
...
...
@@ -36,7 +46,8 @@ export const hasEnvironment = state => !_.isEmpty(state.job.deployment_status);
* @returns {Boolean}
*/
export
const
isJobStuck
=
state
=>
state
.
job
.
status
.
group
===
'
pending
'
&&
state
.
job
.
runners
&&
state
.
job
.
runners
.
available
===
false
;
state
.
job
.
status
.
group
===
'
pending
'
&&
(
!
_
.
isEmpty
(
state
.
job
.
runners
)
&&
state
.
job
.
runners
.
available
===
false
);
// prevent babel-plugin-rewire from generating an invalid default during karma tests
export
default
()
=>
{};
app/serializers/detailed_status_entity.rb
View file @
e13baff0
...
...
@@ -10,7 +10,12 @@ class DetailedStatusEntity < Grape::Entity
expose
:illustration
do
|
status
|
begin
status
.
illustration
illustration
=
{
image:
ActionController
::
Base
.
helpers
.
image_path
(
status
.
illustration
[
:image
])
}
illustration
=
status
.
illustration
.
merge
(
illustration
)
illustration
rescue
NotImplementedError
# ignored
end
...
...
@@ -25,5 +30,6 @@ class DetailedStatusEntity < Grape::Entity
expose
:action_title
,
as: :title
expose
:action_path
,
as: :path
expose
:action_method
,
as: :method
expose
:action_button_title
,
as: :button_title
end
end
app/views/projects/jobs/_empty_state.html.haml
deleted
100644 → 0
View file @
2090f2d0
-
illustration
=
local_assigns
.
fetch
(
:illustration
)
-
illustration_size
=
local_assigns
.
fetch
(
:illustration_size
)
-
title
=
local_assigns
.
fetch
(
:title
)
-
content
=
local_assigns
.
fetch
(
:content
,
nil
)
-
action
=
local_assigns
.
fetch
(
:action
,
nil
)
.row.empty-state
.col-12
.svg-content
{
class:
illustration_size
}
=
image_tag
illustration
.col-12
.text-content
%h4
.text-center
=
title
-
if
content
%p
=
content
-
if
action
.text-center
=
action
app/views/projects/jobs/_empty_states.html.haml
deleted
100644 → 0
View file @
2090f2d0
-
detailed_status
=
@build
.
detailed_status
(
current_user
)
-
illustration
=
detailed_status
.
illustration
=
render
'empty_state'
,
illustration:
illustration
[
:image
],
illustration_size:
illustration
[
:size
],
title:
illustration
[
:title
],
content:
illustration
[
:content
],
action:
detailed_status
.
has_action?
?
link_to
(
detailed_status
.
action_button_title
,
detailed_status
.
action_path
,
method:
detailed_status
.
action_method
,
class:
'btn btn-primary'
,
title:
detailed_status
.
action_button_title
)
:
nil
app/views/projects/jobs/show.html.haml
View file @
e13baff0
...
...
@@ -42,8 +42,6 @@
=
custom_icon
(
'scroll_down'
)
=
render
'shared/builds/build_output'
-
else
=
render
"empty_states"
#js-details-block-vue
{
data:
{
terminal_path:
can?
(
current_user
,
:create_build_terminal
,
@build
)
&&
@build
.
has_terminal?
?
terminal_project_job_path
(
@project
,
@build
)
:
nil
}
}
...
...
spec/features/projects/jobs_spec.rb
View file @
e13baff0
...
...
@@ -542,7 +542,7 @@ describe 'Jobs', :clean_gitlab_redis_shared_state do
visit
project_job_path
(
project
,
job
)
end
it
'shows manual action empty state'
do
it
'shows manual action empty state'
,
:js
do
expect
(
page
).
to
have_content
(
job
.
detailed_status
(
user
).
illustration
[
:title
])
expect
(
page
).
to
have_content
(
'This job requires a manual action'
)
expect
(
page
).
to
have_content
(
'This job depends on a user to trigger its process. Often they are used to deploy code to production environments'
)
...
...
@@ -566,14 +566,14 @@ describe 'Jobs', :clean_gitlab_redis_shared_state do
visit
project_job_path
(
project
,
job
)
end
it
'shows empty state'
do
it
'shows empty state'
,
:js
do
expect
(
page
).
to
have_content
(
job
.
detailed_status
(
user
).
illustration
[
:title
])
expect
(
page
).
to
have_content
(
'This job has not been triggered yet'
)
expect
(
page
).
to
have_content
(
'This job depends on upstream jobs that need to succeed in order for this job to be triggered'
)
end
end
context
'Pending job'
do
context
'Pending job'
,
:js
do
let
(
:job
)
{
create
(
:ci_build
,
:pending
,
pipeline:
pipeline
)
}
before
do
...
...
@@ -600,7 +600,7 @@ describe 'Jobs', :clean_gitlab_redis_shared_state do
end
end
context
'without log'
do
context
'without log'
,
:js
do
let
(
:job
)
{
create
(
:ci_build
,
:canceled
,
pipeline:
pipeline
)
}
before
do
...
...
@@ -615,7 +615,7 @@ describe 'Jobs', :clean_gitlab_redis_shared_state do
end
end
context
'Skipped job'
do
context
'Skipped job'
,
:js
do
let
(
:job
)
{
create
(
:ci_build
,
:skipped
,
pipeline:
pipeline
)
}
before
do
...
...
@@ -629,7 +629,7 @@ describe 'Jobs', :clean_gitlab_redis_shared_state do
end
end
context
'when job is failed but has no trace'
do
context
'when job is failed but has no trace'
,
:js
do
let
(
:job
)
{
create
(
:ci_build
,
:failed
,
pipeline:
pipeline
)
}
it
'renders empty state'
do
...
...
spec/javascripts/jobs/components/empty_state_spec.js
View file @
e13baff0
...
...
@@ -67,7 +67,7 @@ describe('Empty State', () => {
content
,
action
:
{
path
:
'
runner
'
,
title
:
'
Check runner
'
,
button_
title
:
'
Check runner
'
,
method
:
'
post
'
,
},
});
...
...
spec/javascripts/jobs/components/job_app_spec.js
View file @
e13baff0
...
...
@@ -37,6 +37,7 @@ describe('Job App ', () => {
available
:
false
,
},
tags
:
[
'
docker
'
],
has_trace
:
true
,
};
const
props
=
{
...
...
@@ -182,4 +183,142 @@ describe('Job App ', () => {
expect
(
vm
.
$el
.
querySelector
(
'
.js-job-stuck
'
)).
toBeNull
();
});
});
describe
(
'
environments block
'
,
()
=>
{
it
(
'
renders environment block when job has environment
'
,
()
=>
{
store
.
dispatch
(
'
receiveJobSuccess
'
,
Object
.
assign
({},
job
,
{
deployment_status
:
{
environment
:
{
environment_path
:
'
/path
'
,
name
:
'
foo
'
,
},
},
}),
);
vm
=
mountComponentWithStore
(
Component
,
{
props
,
store
,
});
expect
(
vm
.
$el
.
querySelector
(
'
.js-job-environment
'
)).
not
.
toBeNull
();
});
it
(
'
does not render environment block when job has environment
'
,
()
=>
{
store
.
dispatch
(
'
receiveJobSuccess
'
,
job
);
vm
=
mountComponentWithStore
(
Component
,
{
props
,
store
,
});
expect
(
vm
.
$el
.
querySelector
(
'
.js-job-environment
'
)).
toBeNull
();
});
});
describe
(
'
erased block
'
,
()
=>
{
it
(
'
renders erased block when `erased` is true
'
,
()
=>
{
store
.
dispatch
(
'
receiveJobSuccess
'
,
Object
.
assign
({},
job
,
{
erased
:
true
,
erased_by
:
{
username
:
'
root
'
,
web_url
:
'
gitlab.com/root
'
,
},
erased_at
:
'
2016-11-07T11:11:16.525Z
'
,
}),
);
vm
=
mountComponentWithStore
(
Component
,
{
props
,
store
,
});
expect
(
vm
.
$el
.
querySelector
(
'
.js-job-erased
'
)).
not
.
toBeNull
();
});
it
(
'
does not render erased block when `erased` is false
'
,
()
=>
{
store
.
dispatch
(
'
receiveJobSuccess
'
,
Object
.
assign
({},
job
,
{
erased
:
false
}));
vm
=
mountComponentWithStore
(
Component
,
{
props
,
store
,
});
expect
(
vm
.
$el
.
querySelector
(
'
.js-job-erased
'
)).
toBeNull
();
});
});
describe
(
'
empty states block
'
,
()
=>
{
it
(
'
renders empty state when job does not have trace and is not running
'
,
()
=>
{
store
.
dispatch
(
'
receiveJobSuccess
'
,
Object
.
assign
({},
job
,
{
has_trace
:
false
,
status
:
{
group
:
'
pending
'
,
icon
:
'
status_pending
'
,
label
:
'
pending
'
,
text
:
'
pending
'
,
details_path
:
'
path
'
,
illustration
:
{
image
:
'
path
'
,
size
:
'
340
'
,
title
:
'
Empty State
'
,
content
:
'
This is an empty state
'
,
},
action
:
{
button_title
:
'
Retry job
'
,
method
:
'
post
'
,
path
:
'
/path
'
,
},
},
}),
);
vm
=
mountComponentWithStore
(
Component
,
{
props
,
store
,
});
expect
(
vm
.
$el
.
querySelector
(
'
.js-job-empty-state
'
)).
not
.
toBeNull
();
});
it
(
'
does not render empty state when job does not have trace but it is running
'
,
()
=>
{
store
.
dispatch
(
'
receiveJobSuccess
'
,
Object
.
assign
({},
job
,
{
has_trace
:
false
,
status
:
{
group
:
'
running
'
,
icon
:
'
status_running
'
,
label
:
'
running
'
,
text
:
'
running
'
,
details_path
:
'
path
'
,
},
}),
);
vm
=
mountComponentWithStore
(
Component
,
{
props
,
store
,
});
expect
(
vm
.
$el
.
querySelector
(
'
.js-job-empty-state
'
)).
toBeNull
();
});
it
(
'
does not render empty state when job has trace but it is not running
'
,
()
=>
{
store
.
dispatch
(
'
receiveJobSuccess
'
,
Object
.
assign
({},
job
,
{
has_trace
:
true
}));
vm
=
mountComponentWithStore
(
Component
,
{
props
,
store
,
});
expect
(
vm
.
$el
.
querySelector
(
'
.js-job-empty-state
'
)).
toBeNull
();
});
});
});
spec/javascripts/jobs/store/getters_spec.js
View file @
e13baff0
...
...
@@ -99,12 +99,14 @@ describe('Job Store Getters', () => {
expect
(
getters
.
hasEnvironment
(
localState
)).
toEqual
(
false
);
});
});
describe
(
'
with an empty object for `deployment_status`
'
,
()
=>
{
it
(
'
returns false
'
,
()
=>
{
localState
.
job
.
deployment_status
=
{};
expect
(
getters
.
hasEnvironment
(
localState
)).
toEqual
(
false
);
});
});
describe
(
'
when `deployment_status` is defined and not empty
'
,
()
=>
{
it
(
'
returns true
'
,
()
=>
{
localState
.
job
.
deployment_status
=
{
...
...
@@ -118,4 +120,94 @@ describe('Job Store Getters', () => {
});
});
});
describe
(
'
hasTrace
'
,
()
=>
{
describe
(
'
when has_trace is true
'
,
()
=>
{
it
(
'
returns true
'
,
()
=>
{
localState
.
job
.
has_trace
=
true
;
localState
.
job
.
status
=
{};
expect
(
getters
.
hasTrace
(
localState
)).
toEqual
(
true
);
});
});
describe
(
'
when job is running
'
,
()
=>
{
it
(
'
returns true
'
,
()
=>
{
localState
.
job
.
has_trace
=
false
;
localState
.
job
.
status
=
{
group
:
'
running
'
};
expect
(
getters
.
hasTrace
(
localState
)).
toEqual
(
true
);
});
});
describe
(
'
when has_trace is false and job is not running
'
,
()
=>
{
it
(
'
returns false
'
,
()
=>
{
localState
.
job
.
has_trace
=
false
;
localState
.
job
.
status
=
{
group
:
'
pending
'
};
expect
(
getters
.
hasTrace
(
localState
)).
toEqual
(
false
);
});
});
});
describe
(
'
emptyStateIllustration
'
,
()
=>
{
describe
(
'
with defined illustration
'
,
()
=>
{
it
(
'
returns the state illustration object
'
,
()
=>
{
localState
.
job
.
status
=
{
illustration
:
{
path
:
'
foo
'
,
},
};
expect
(
getters
.
emptyStateIllustration
(
localState
)).
toEqual
({
path
:
'
foo
'
});
});
});
describe
(
'
when illustration is not defined
'
,
()
=>
{
it
(
'
returns an empty object
'
,
()
=>
{
expect
(
getters
.
emptyStateIllustration
(
localState
)).
toEqual
({});
});
});
});
describe
(
'
isJobStuck
'
,
()
=>
{
describe
(
'
when job is pending and runners are not available
'
,
()
=>
{
it
(
'
returns true
'
,
()
=>
{
localState
.
job
.
status
=
{
group
:
'
pending
'
,
};
localState
.
job
.
runners
=
{
available
:
false
,
};
expect
(
getters
.
isJobStuck
(
localState
)).
toEqual
(
true
);
});
});
describe
(
'
when job is not pending
'
,
()
=>
{
it
(
'
returns false
'
,
()
=>
{
localState
.
job
.
status
=
{
group
:
'
running
'
,
};
localState
.
job
.
runners
=
{
available
:
false
,
};
expect
(
getters
.
isJobStuck
(
localState
)).
toEqual
(
false
);
});
});
describe
(
'
when runners are available
'
,
()
=>
{
it
(
'
returns false
'
,
()
=>
{
localState
.
job
.
status
=
{
group
:
'
pending
'
,
};
localState
.
job
.
runners
=
{
available
:
true
,
};
expect
(
getters
.
isJobStuck
(
localState
)).
toEqual
(
false
);
});
});
});
});
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