2022-01-26 12:08:38 +05:30
|
|
|
<script>
|
|
|
|
import { GlIntersectionObserver, GlLoadingIcon, GlSkeletonLoader } from '@gitlab/ui';
|
|
|
|
import produce from 'immer';
|
|
|
|
import createFlash from '~/flash';
|
|
|
|
import { __ } from '~/locale';
|
|
|
|
import eventHub from '~/jobs/components/table/event_hub';
|
|
|
|
import JobsTable from '~/jobs/components/table/jobs_table.vue';
|
|
|
|
import { JOBS_TAB_FIELDS } from '~/jobs/components/table/constants';
|
|
|
|
import getPipelineJobs from '../../graphql/queries/get_pipeline_jobs.query.graphql';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
fields: JOBS_TAB_FIELDS,
|
|
|
|
components: {
|
|
|
|
GlIntersectionObserver,
|
|
|
|
GlLoadingIcon,
|
|
|
|
GlSkeletonLoader,
|
|
|
|
JobsTable,
|
|
|
|
},
|
|
|
|
inject: {
|
|
|
|
fullPath: {
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
pipelineIid: {
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
apollo: {
|
|
|
|
jobs: {
|
|
|
|
query: getPipelineJobs,
|
|
|
|
variables() {
|
|
|
|
return {
|
|
|
|
...this.queryVariables,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
update(data) {
|
|
|
|
return data.project?.pipeline?.jobs?.nodes || [];
|
|
|
|
},
|
|
|
|
result({ data }) {
|
2022-04-04 11:22:00 +05:30
|
|
|
if (!data) {
|
|
|
|
return;
|
|
|
|
}
|
2022-01-26 12:08:38 +05:30
|
|
|
this.jobsPageInfo = data.project?.pipeline?.jobs?.pageInfo || {};
|
|
|
|
},
|
|
|
|
error() {
|
2022-04-04 11:22:00 +05:30
|
|
|
createFlash({ message: __('An error occurred while fetching the pipelines jobs.') });
|
2022-01-26 12:08:38 +05:30
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
jobs: [],
|
|
|
|
jobsPageInfo: {},
|
|
|
|
firstLoad: true,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
queryVariables() {
|
|
|
|
return {
|
|
|
|
fullPath: this.fullPath,
|
|
|
|
iid: this.pipelineIid,
|
|
|
|
};
|
|
|
|
},
|
2022-05-07 20:08:51 +05:30
|
|
|
loading() {
|
|
|
|
return this.$apollo.queries.jobs.loading;
|
|
|
|
},
|
|
|
|
showSkeletonLoader() {
|
|
|
|
return this.firstLoad && this.loading;
|
|
|
|
},
|
|
|
|
showLoadingSpinner() {
|
|
|
|
return !this.firstLoad && this.loading;
|
|
|
|
},
|
2022-01-26 12:08:38 +05:30
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
eventHub.$on('jobActionPerformed', this.handleJobAction);
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
eventHub.$off('jobActionPerformed', this.handleJobAction);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
handleJobAction() {
|
2022-05-07 20:08:51 +05:30
|
|
|
this.firstLoad = false;
|
2022-01-26 12:08:38 +05:30
|
|
|
|
|
|
|
this.$apollo.queries.jobs.refetch();
|
|
|
|
},
|
|
|
|
fetchMoreJobs() {
|
|
|
|
this.firstLoad = false;
|
|
|
|
|
|
|
|
this.$apollo.queries.jobs.fetchMore({
|
|
|
|
variables: {
|
|
|
|
...this.queryVariables,
|
|
|
|
after: this.jobsPageInfo.endCursor,
|
|
|
|
},
|
|
|
|
updateQuery: (previousResult, { fetchMoreResult }) => {
|
|
|
|
const results = produce(fetchMoreResult, (draftData) => {
|
|
|
|
draftData.project.pipeline.jobs.nodes = [
|
|
|
|
...previousResult.project.pipeline.jobs.nodes,
|
|
|
|
...draftData.project.pipeline.jobs.nodes,
|
|
|
|
];
|
|
|
|
});
|
|
|
|
return results;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
2022-05-07 20:08:51 +05:30
|
|
|
<div v-if="showSkeletonLoader" class="gl-mt-5">
|
2022-01-26 12:08:38 +05:30
|
|
|
<gl-skeleton-loader :width="1248" :height="73">
|
|
|
|
<circle cx="748.031" cy="37.7193" r="15.0307" />
|
|
|
|
<circle cx="787.241" cy="37.7193" r="15.0307" />
|
|
|
|
<circle cx="827.759" cy="37.7193" r="15.0307" />
|
|
|
|
<circle cx="866.969" cy="37.7193" r="15.0307" />
|
|
|
|
<circle cx="380" cy="37" r="18" />
|
|
|
|
<rect x="432" y="19" width="126.587" height="15" />
|
|
|
|
<rect x="432" y="41" width="247" height="15" />
|
|
|
|
<rect x="158" y="19" width="86.1" height="15" />
|
|
|
|
<rect x="158" y="41" width="168" height="15" />
|
|
|
|
<rect x="22" y="19" width="96" height="36" />
|
|
|
|
<rect x="924" y="30" width="96" height="15" />
|
|
|
|
<rect x="1057" y="20" width="166" height="35" />
|
|
|
|
</gl-skeleton-loader>
|
|
|
|
</div>
|
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
<jobs-table v-else :jobs="jobs" :table-fields="$options.fields" data-testid="jobs-tab-table" />
|
2022-01-26 12:08:38 +05:30
|
|
|
|
|
|
|
<gl-intersection-observer v-if="jobsPageInfo.hasNextPage" @appear="fetchMoreJobs">
|
2022-07-23 23:45:48 +05:30
|
|
|
<gl-loading-icon v-if="showLoadingSpinner" size="lg" />
|
2022-01-26 12:08:38 +05:30
|
|
|
</gl-intersection-observer>
|
|
|
|
</div>
|
|
|
|
</template>
|