2017-08-17 22:00:37 +05:30
|
|
|
<script>
|
2018-11-08 19:23:39 +05:30
|
|
|
export default {
|
|
|
|
name: 'PipelinesEmptyState',
|
|
|
|
props: {
|
|
|
|
helpPagePath: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
2017-08-17 22:00:37 +05:30
|
|
|
},
|
2018-11-08 19:23:39 +05:30
|
|
|
emptyStateSvgPath: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
canSetCi: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2017-08-17 22:00:37 +05:30
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<div class="row empty-state js-empty-state">
|
2018-11-08 19:23:39 +05:30
|
|
|
<div class="col-12">
|
2018-03-17 18:26:18 +05:30
|
|
|
<div class="svg-content svg-250">
|
|
|
|
<img :src="emptyStateSvgPath" />
|
|
|
|
</div>
|
2017-08-17 22:00:37 +05:30
|
|
|
</div>
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
<div class="col-12">
|
2017-08-17 22:00:37 +05:30
|
|
|
<div class="text-content">
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
<template v-if="canSetCi">
|
|
|
|
<h4 class="text-center">
|
|
|
|
{{ s__('Pipelines|Build with confidence') }}
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
<p>
|
2018-11-08 19:23:39 +05:30
|
|
|
{{ s__(`Pipelines|Continuous Integration can help
|
2018-03-27 19:54:05 +05:30
|
|
|
catch bugs by running your tests automatically,
|
|
|
|
while Continuous Deployment can help you deliver
|
|
|
|
code to your product environment.`) }}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<div class="text-center">
|
|
|
|
<a
|
|
|
|
:href="helpPagePath"
|
|
|
|
class="btn btn-primary js-get-started-pipelines"
|
|
|
|
>
|
|
|
|
{{ s__('Pipelines|Get started with Pipelines') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<p
|
|
|
|
v-else
|
|
|
|
class="text-center"
|
|
|
|
>
|
|
|
|
{{ s__('Pipelines|This project is not currently set up to run pipelines.') }}
|
2017-08-17 22:00:37 +05:30
|
|
|
</p>
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|