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

53 lines
982 B
Vue
Raw Normal View History

2017-09-10 17:25:29 +05:30
<script>
2018-03-27 19:54:05 +05:30
export default {
name: 'PipelineNavControls',
props: {
newPipelinePath: {
type: String,
required: false,
default: null,
},
resetCachePath: {
type: String,
required: false,
default: null,
},
ciLintPath: {
type: String,
required: false,
default: null,
},
2017-09-10 17:25:29 +05:30
},
2018-03-27 19:54:05 +05:30
};
2017-09-10 17:25:29 +05:30
</script>
<template>
<div class="nav-controls">
<a
2018-03-27 19:54:05 +05:30
v-if="newPipelinePath"
2017-09-10 17:25:29 +05:30
:href="newPipelinePath"
2018-03-27 19:54:05 +05:30
class="btn btn-create js-run-pipeline"
>
{{ s__('Pipelines|Run Pipeline') }}
2017-09-10 17:25:29 +05:30
</a>
2018-03-17 18:26:18 +05:30
<a
2018-03-27 19:54:05 +05:30
v-if="resetCachePath"
2018-03-17 18:26:18 +05:30
data-method="post"
:href="resetCachePath"
2018-03-27 19:54:05 +05:30
class="btn btn-default js-clear-cache"
>
{{ s__('Pipelines|Clear Runner Caches') }}
2018-03-17 18:26:18 +05:30
</a>
2017-09-10 17:25:29 +05:30
<a
2018-03-27 19:54:05 +05:30
v-if="ciLintPath"
2017-09-10 17:25:29 +05:30
:href="ciLintPath"
2018-03-27 19:54:05 +05:30
class="btn btn-default js-ci-lint"
>
{{ s__('Pipelines|CI Lint') }}
2017-09-10 17:25:29 +05:30
</a>
</div>
</template>