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

317 lines
8.4 KiB
Vue
Raw Normal View History

2017-09-10 17:25:29 +05:30
<script>
2018-11-08 19:23:39 +05:30
import _ from 'underscore';
import { __, sprintf, s__ } from '../../locale';
import createFlash from '../../flash';
import PipelinesService from '../services/pipelines_service';
import pipelinesMixin from '../mixins/pipelines';
2019-09-04 21:01:54 +05:30
import TablePagination from '../../vue_shared/components/pagination/table_pagination.vue';
2018-11-08 19:23:39 +05:30
import NavigationTabs from '../../vue_shared/components/navigation_tabs.vue';
import NavigationControls from './nav_controls.vue';
import { getParameterByName } from '../../lib/utils/common_utils';
import CIPaginationMixin from '../../vue_shared/mixins/ci_pagination_api_mixin';
2017-09-10 17:25:29 +05:30
2018-11-08 19:23:39 +05:30
export default {
components: {
TablePagination,
NavigationTabs,
NavigationControls,
},
mixins: [pipelinesMixin, CIPaginationMixin],
props: {
store: {
type: Object,
required: true,
2017-09-10 17:25:29 +05:30
},
2018-11-08 19:23:39 +05:30
// Can be rendered in 3 different places, with some visual differences
// Accepts root | child
// `root` -> main view
// `child` -> rendered inside MR or Commit View
viewType: {
type: String,
required: false,
default: 'root',
2018-03-17 18:26:18 +05:30
},
2018-11-08 19:23:39 +05:30
endpoint: {
type: String,
required: true,
2017-09-10 17:25:29 +05:30
},
2018-11-08 19:23:39 +05:30
helpPagePath: {
type: String,
required: true,
},
emptyStateSvgPath: {
type: String,
required: true,
},
errorStateSvgPath: {
type: String,
required: true,
},
noPipelinesSvgPath: {
type: String,
required: true,
},
autoDevopsPath: {
type: String,
required: true,
},
hasGitlabCi: {
type: Boolean,
required: true,
2018-03-27 19:54:05 +05:30
},
2018-11-08 19:23:39 +05:30
canCreatePipeline: {
type: Boolean,
required: true,
2018-03-27 19:54:05 +05:30
},
2018-11-08 19:23:39 +05:30
ciLintPath: {
type: String,
required: false,
default: null,
},
resetCachePath: {
type: String,
required: false,
default: null,
},
newPipelinePath: {
type: String,
required: false,
default: null,
},
},
data() {
return {
// Start with loading state to avoid a glitch when the empty state will be rendered
isLoading: true,
state: this.store.state,
scope: getParameterByName('scope') || 'all',
page: getParameterByName('page') || '1',
requestData: {},
isResetCacheButtonLoading: false,
};
},
stateMap: {
// with tabs
loading: 'loading',
tableList: 'tableList',
error: 'error',
emptyTab: 'emptyTab',
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
// without tabs
emptyState: 'emptyState',
},
scopes: {
all: 'all',
pending: 'pending',
running: 'running',
finished: 'finished',
branches: 'branches',
tags: 'tags',
},
computed: {
/**
* `hasGitlabCi` handles both internal and external CI.
* The order on which the checks are made in this method is
* important to guarantee we handle all the corner cases.
*/
stateToRender() {
const { stateMap } = this.$options;
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
if (this.isLoading) {
return stateMap.loading;
}
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
if (this.hasError) {
return stateMap.error;
}
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
if (this.state.pipelines.length) {
return stateMap.tableList;
}
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
if ((this.scope !== 'all' && this.scope !== null) || this.hasGitlabCi) {
return stateMap.emptyTab;
}
return stateMap.emptyState;
},
/**
* Tabs are rendered in all states except empty state.
* They are not rendered before the first request to avoid a flicker on first load.
*/
shouldRenderTabs() {
const { stateMap } = this.$options;
return (
this.hasMadeRequest &&
[stateMap.loading, stateMap.tableList, stateMap.error, stateMap.emptyTab].includes(
this.stateToRender,
)
);
},
2017-09-10 17:25:29 +05:30
2018-11-08 19:23:39 +05:30
shouldRenderButtons() {
return (
(this.newPipelinePath || this.resetCachePath || this.ciLintPath) && this.shouldRenderTabs
);
},
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
emptyTabMessage() {
const { scopes } = this.$options;
const possibleScopes = [scopes.pending, scopes.running, scopes.finished];
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
if (possibleScopes.includes(this.scope)) {
return sprintf(s__('Pipelines|There are currently no %{scope} pipelines.'), {
scope: this.scope,
});
}
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
return s__('Pipelines|There are currently no pipelines.');
},
2018-03-17 18:26:18 +05:30
2018-11-08 19:23:39 +05:30
tabs() {
const { count } = this.state;
const { scopes } = this.$options;
2018-03-27 19:54:05 +05:30
2018-11-08 19:23:39 +05:30
return [
{
name: __('All'),
scope: scopes.all,
count: count.all,
isActive: this.scope === 'all',
},
{
name: __('Pending'),
scope: scopes.pending,
count: count.pending,
isActive: this.scope === 'pending',
},
{
name: __('Running'),
scope: scopes.running,
count: count.running,
isActive: this.scope === 'running',
},
{
name: __('Finished'),
scope: scopes.finished,
count: count.finished,
isActive: this.scope === 'finished',
},
{
name: __('Branches'),
scope: scopes.branches,
isActive: this.scope === 'branches',
},
{
name: __('Tags'),
scope: scopes.tags,
isActive: this.scope === 'tags',
},
];
2017-09-10 17:25:29 +05:30
},
2018-11-08 19:23:39 +05:30
},
created() {
this.service = new PipelinesService(this.endpoint);
this.requestData = { page: this.page, scope: this.scope };
},
methods: {
successCallback(resp) {
// Because we are polling & the user is interacting verify if the response received
// matches the last request made
if (_.isEqual(resp.config.params, this.requestData)) {
this.store.storeCount(resp.data.count);
this.store.storePagination(resp.headers);
this.setCommonData(resp.data.pipelines);
}
2017-09-10 17:25:29 +05:30
},
2018-11-08 19:23:39 +05:30
handleResetRunnersCache(endpoint) {
this.isResetCacheButtonLoading = true;
2018-05-09 12:01:36 +05:30
2018-11-08 19:23:39 +05:30
this.service
.postAction(endpoint)
.then(() => {
this.isResetCacheButtonLoading = false;
createFlash(s__('Pipelines|Project cache successfully reset.'), 'notice');
})
.catch(() => {
this.isResetCacheButtonLoading = false;
createFlash(s__('Pipelines|Something went wrong while cleaning runners cache.'));
});
2017-09-10 17:25:29 +05:30
},
2018-11-08 19:23:39 +05:30
},
};
2017-09-10 17:25:29 +05:30
</script>
<template>
2018-03-17 18:26:18 +05:30
<div class="pipelines-container">
2017-09-10 17:25:29 +05:30
<div
2018-03-27 19:54:05 +05:30
v-if="shouldRenderTabs || shouldRenderButtons"
2018-11-08 19:23:39 +05:30
class="top-area scrolling-tabs-container inner-page-scroll-tabs"
2018-03-17 18:26:18 +05:30
>
2019-02-15 15:39:39 +05:30
<div class="fade-left"><i class="fa fa-angle-left" aria-hidden="true"> </i></div>
<div class="fade-right"><i class="fa fa-angle-right" aria-hidden="true"> </i></div>
2018-03-17 18:26:18 +05:30
2017-09-10 17:25:29 +05:30
<navigation-tabs
2018-03-27 19:54:05 +05:30
v-if="shouldRenderTabs"
2018-03-17 18:26:18 +05:30
:tabs="tabs"
scope="pipelines"
2018-11-08 19:23:39 +05:30
@onChangeTab="onChangeTab"
2018-03-17 18:26:18 +05:30
/>
2017-09-10 17:25:29 +05:30
<navigation-controls
2018-03-27 19:54:05 +05:30
v-if="shouldRenderButtons"
2017-09-10 17:25:29 +05:30
:new-pipeline-path="newPipelinePath"
2018-03-17 18:26:18 +05:30
:reset-cache-path="resetCachePath"
:ci-lint-path="ciLintPath"
2018-05-09 12:01:36 +05:30
:is-reset-cache-button-loading="isResetCacheButtonLoading"
2018-11-08 19:23:39 +05:30
@resetRunnersCache="handleResetRunnersCache"
2018-03-17 18:26:18 +05:30
/>
2017-09-10 17:25:29 +05:30
</div>
<div class="content-list pipelines">
2018-12-05 23:21:45 +05:30
<gl-loading-icon
2018-03-27 19:54:05 +05:30
v-if="stateToRender === $options.stateMap.loading"
:label="s__('Pipelines|Loading Pipelines')"
2018-12-05 23:21:45 +05:30
:size="3"
2018-03-17 18:26:18 +05:30
class="prepend-top-20"
/>
2017-09-10 17:25:29 +05:30
<empty-state
2018-03-27 19:54:05 +05:30
v-else-if="stateToRender === $options.stateMap.emptyState"
2017-09-10 17:25:29 +05:30
:help-page-path="helpPagePath"
2018-03-17 18:26:18 +05:30
:empty-state-svg-path="emptyStateSvgPath"
2018-03-27 19:54:05 +05:30
:can-set-ci="canCreatePipeline"
2018-03-17 18:26:18 +05:30
/>
2017-09-10 17:25:29 +05:30
2018-03-27 19:54:05 +05:30
<svg-blank-state
v-else-if="stateToRender === $options.stateMap.error"
:svg-path="errorStateSvgPath"
2019-02-15 15:39:39 +05:30
:message="
s__(`Pipelines|There was an error fetching the pipelines.
Try again in a few moments or contact your support team.`)
"
2018-03-17 18:26:18 +05:30
/>
2017-09-10 17:25:29 +05:30
2018-03-27 19:54:05 +05:30
<svg-blank-state
v-else-if="stateToRender === $options.stateMap.emptyTab"
:svg-path="noPipelinesSvgPath"
:message="emptyTabMessage"
/>
2017-09-10 17:25:29 +05:30
2019-02-15 15:39:39 +05:30
<div v-else-if="stateToRender === $options.stateMap.tableList" class="table-holder">
2017-09-10 17:25:29 +05:30
<pipelines-table-component
:pipelines="state.pipelines"
:update-graph-dropdown="updateGraphDropdown"
2018-03-17 18:26:18 +05:30
:auto-devops-help-path="autoDevopsPath"
:view-type="viewType"
/>
2017-09-10 17:25:29 +05:30
</div>
<table-pagination
v-if="shouldRenderPagination"
2018-03-17 18:26:18 +05:30
:change="onChangePage"
:page-info="state.pageInfo"
/>
2017-09-10 17:25:29 +05:30
</div>
</div>
</template>