Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/pipelines/pipeline_details_mediator.js')
-rw-r--r--app/assets/javascripts/pipelines/pipeline_details_mediator.js81
1 files changed, 0 insertions, 81 deletions
diff --git a/app/assets/javascripts/pipelines/pipeline_details_mediator.js b/app/assets/javascripts/pipelines/pipeline_details_mediator.js
deleted file mode 100644
index 72c4fedc64c..00000000000
--- a/app/assets/javascripts/pipelines/pipeline_details_mediator.js
+++ /dev/null
@@ -1,81 +0,0 @@
-import Visibility from 'visibilityjs';
-import createFlash from '~/flash';
-import Poll from '../lib/utils/poll';
-import { __ } from '../locale';
-import PipelineService from './services/pipeline_service';
-import PipelineStore from './stores/pipeline_store';
-
-export default class pipelinesMediator {
- constructor(options = {}) {
- this.options = options;
- this.store = new PipelineStore();
- this.service = new PipelineService(options.endpoint);
-
- this.state = {};
- this.state.isLoading = false;
- }
-
- fetchPipeline() {
- this.poll = new Poll({
- resource: this.service,
- method: 'getPipeline',
- data: this.store.state.expandedPipelines ? this.getExpandedParameters() : undefined,
- successCallback: this.successCallback.bind(this),
- errorCallback: this.errorCallback.bind(this),
- });
-
- if (!Visibility.hidden()) {
- this.state.isLoading = true;
- this.poll.makeRequest();
- } else {
- this.refreshPipeline();
- }
-
- Visibility.change(() => {
- if (!Visibility.hidden()) {
- this.poll.restart();
- } else {
- this.stopPipelinePoll();
- }
- });
- }
-
- successCallback(response) {
- this.state.isLoading = false;
- this.store.storePipeline(response.data);
- }
-
- errorCallback() {
- this.state.isLoading = false;
- createFlash({
- message: __('An error occurred while fetching the pipeline.'),
- });
- }
-
- refreshPipeline() {
- this.stopPipelinePoll();
-
- return this.service
- .getPipeline()
- .then((response) => this.successCallback(response))
- .catch(() => this.errorCallback())
- .finally(() =>
- this.poll.restart(
- this.store.state.expandedPipelines ? this.getExpandedParameters() : undefined,
- ),
- );
- }
-
- stopPipelinePoll() {
- this.poll.stop();
- }
-
- /**
- * Backend expects paramets in the following format: `expanded[]=id&expanded[]=id`
- */
- getExpandedParameters() {
- return {
- expanded: this.store.state.expandedPipelines,
- };
- }
-}