debian-mirror-gitlab/app/assets/javascripts/pipelines/components/pipelines_list/empty_state.vue

65 lines
1.6 KiB
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
2020-10-24 23:57:45 +05:30
import { GlButton } from '@gitlab/ui';
2019-02-15 15:39:39 +05:30
2018-11-08 19:23:39 +05:30
export default {
name: 'PipelinesEmptyState',
2019-02-15 15:39:39 +05:30
components: {
2020-10-24 23:57:45 +05:30
GlButton,
2019-02-15 15:39:39 +05:30
},
2018-11-08 19:23:39 +05:30
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">
2019-02-15 15:39:39 +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">
2019-02-15 15:39:39 +05:30
<h4 class="text-center">{{ s__('Pipelines|Build with confidence') }}</h4>
2018-03-27 19:54:05 +05:30
<p>
2019-02-15 15:39: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
2019-02-15 15:39:39 +05:30
code to your product environment.`)
}}
2018-03-27 19:54:05 +05:30
</p>
<div class="text-center">
2020-10-24 23:57:45 +05:30
<gl-button
2020-04-22 19:07:51 +05:30
:href="helpPagePath"
2020-10-24 23:57:45 +05:30
variant="info"
category="primary"
2020-04-22 19:07:51 +05:30
class="js-get-started-pipelines"
2021-01-03 14:25:43 +05:30
data-testid="get-started-pipelines"
2020-04-22 19:07:51 +05:30
>
2018-03-27 19:54:05 +05:30
{{ s__('Pipelines|Get started with Pipelines') }}
2020-10-24 23:57:45 +05:30
</gl-button>
2018-03-27 19:54:05 +05:30
</div>
</template>
2019-02-15 15:39:39 +05:30
<p v-else class="text-center">
2018-03-27 19:54:05 +05:30
{{ s__('Pipelines|This project is not currently set up to run pipelines.') }}
2017-08-17 22:00:37 +05:30
</p>
</div>
</div>
</div>
</template>