67 lines
1.3 KiB
Vue
67 lines
1.3 KiB
Vue
<script>
|
|
import { GlLink, GlButton } from '@gitlab/ui';
|
|
import LoadingButton from '../../vue_shared/components/loading_button.vue';
|
|
|
|
export default {
|
|
name: 'PipelineNavControls',
|
|
components: {
|
|
LoadingButton,
|
|
GlLink,
|
|
GlButton,
|
|
},
|
|
props: {
|
|
newPipelinePath: {
|
|
type: String,
|
|
required: false,
|
|
default: null,
|
|
},
|
|
|
|
resetCachePath: {
|
|
type: String,
|
|
required: false,
|
|
default: null,
|
|
},
|
|
|
|
ciLintPath: {
|
|
type: String,
|
|
required: false,
|
|
default: null,
|
|
},
|
|
|
|
isResetCacheButtonLoading: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: false,
|
|
},
|
|
},
|
|
methods: {
|
|
onClickResetCache() {
|
|
this.$emit('resetRunnersCache', this.resetCachePath);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<div class="nav-controls">
|
|
<gl-button
|
|
v-if="newPipelinePath"
|
|
:href="newPipelinePath"
|
|
variant="success"
|
|
class="js-run-pipeline"
|
|
>
|
|
{{ s__('Pipelines|Run Pipeline') }}
|
|
</gl-button>
|
|
|
|
<loading-button
|
|
v-if="resetCachePath"
|
|
:loading="isResetCacheButtonLoading"
|
|
:label="s__('Pipelines|Clear Runner Caches')"
|
|
class="js-clear-cache"
|
|
@click="onClickResetCache"
|
|
/>
|
|
|
|
<gl-button v-if="ciLintPath" :href="ciLintPath" class="js-ci-lint">
|
|
{{ s__('Pipelines|CI Lint') }}
|
|
</gl-button>
|
|
</div>
|
|
</template>
|