mr_widget_store.js 5.9 KB
Newer Older
F
Fatih Acet 已提交
1 2
import Timeago from 'timeago.js';
import { getStateKey } from '../dependencies';
3
import { formatDate } from '../../lib/utils/datetime_utility';
F
Fatih Acet 已提交
4 5 6 7

export default class MergeRequestStore {

  constructor(data) {
8
    this.sha = data.diff_head_sha;
9
    this.gitlabLogo = data.gitlabLogo;
10

F
Fatih Acet 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    this.setData(data);
  }

  setData(data) {
    const currentUser = data.current_user;
    const pipelineStatus = data.pipeline ? data.pipeline.details.status : null;

    this.title = data.title;
    this.targetBranch = data.target_branch;
    this.sourceBranch = data.source_branch;
    this.mergeStatus = data.merge_status;
    this.commitMessage = data.merge_commit_message;
    this.commitMessageWithDescription = data.merge_commit_message_with_description;
    this.commitsCount = data.commits_count;
    this.divergedCommitsCount = data.diverged_commits_count;
    this.pipeline = data.pipeline || {};
    this.deployments = this.deployments || data.deployments || [];

    if (data.issues_links) {
      const links = data.issues_links;
      const { closing } = links;
      const mentioned = links.mentioned_but_not_closing;
      const assignToMe = links.assign_to_closing;

      if (closing || mentioned || assignToMe) {
        this.relatedLinks = { closing, mentioned, assignToMe };
      }
    }

    this.updatedAt = data.updated_at;
41 42
    this.mergedEvent = MergeRequestStore.getEventObject(data.merge_event);
    this.closedEvent = MergeRequestStore.getEventObject(data.closed_event);
F
Fatih Acet 已提交
43 44 45 46 47 48
    this.setToMWPSBy = MergeRequestStore.getAuthorObject({ author: data.merge_user || {} });
    this.mergeUserId = data.merge_user_id;
    this.currentUserId = gon.current_user_id;
    this.sourceBranchPath = data.source_branch_path;
    this.sourceBranchLink = data.source_branch_with_namespace_link;
    this.mergeError = data.merge_error;
49 50
    this.targetBranchPath = data.target_branch_commits_path;
    this.targetBranchTreePath = data.target_branch_tree_path;
F
Fatih Acet 已提交
51 52 53 54
    this.conflictResolutionPath = data.conflict_resolution_path;
    this.cancelAutoMergePath = data.cancel_merge_when_pipeline_succeeds_path;
    this.removeWIPPath = data.remove_wip_path;
    this.sourceBranchRemoved = !data.source_branch_exists;
55
    this.shouldRemoveSourceBranch = data.remove_source_branch || false;
F
Fatih Acet 已提交
56 57 58
    this.onlyAllowMergeIfPipelineSucceeds = data.only_allow_merge_if_pipeline_succeeds || false;
    this.mergeWhenPipelineSucceeds = data.merge_when_pipeline_succeeds || false;
    this.mergePath = data.merge_path;
59
    this.ffOnlyEnabled = data.ff_only_enabled;
60
    this.shouldBeRebased = !!data.should_be_rebased;
F
Fatih Acet 已提交
61 62 63
    this.statusPath = data.status_path;
    this.emailPatchesPath = data.email_patches_path;
    this.plainDiffPath = data.plain_diff_path;
64
    this.newBlobPath = data.new_blob_path;
F
Fatih Acet 已提交
65 66 67 68
    this.createIssueToResolveDiscussionsPath = data.create_issue_to_resolve_discussions_path;
    this.mergeCheckPath = data.merge_check_path;
    this.mergeActionsContentPath = data.commit_change_content_path;
    this.isRemovingSourceBranch = this.isRemovingSourceBranch || false;
69
    this.isOpen = data.state === 'opened';
F
Fatih Acet 已提交
70 71 72 73 74
    this.hasMergeableDiscussionsState = data.mergeable_discussions_state === false;
    this.canRemoveSourceBranch = currentUser.can_remove_source_branch || false;
    this.canMerge = !!data.merge_path;
    this.canCreateIssue = currentUser.can_create_issue || false;
    this.canCancelAutomaticMerge = !!data.cancel_merge_when_pipeline_succeeds_path;
75
    this.hasSHAChanged = this.sha !== data.diff_head_sha;
F
Fatih Acet 已提交
76
    this.canBeMerged = data.can_be_merged || false;
77
    this.isMergeAllowed = data.mergeable || false;
78
    this.mergeOngoing = data.merge_ongoing;
F
Fatih Acet 已提交
79 80 81 82 83 84 85 86 87 88 89

    // Cherry-pick and Revert actions related
    this.canCherryPickInCurrentMR = currentUser.can_cherry_pick_on_current_merge_request || false;
    this.canRevertInCurrentMR = currentUser.can_revert_on_current_merge_request || false;
    this.cherryPickInForkPath = currentUser.cherry_pick_in_fork_path;
    this.revertInForkPath = currentUser.revert_in_fork_path;

    // CI related
    this.ciEnvironmentsStatusPath = data.ci_environments_status_path;
    this.hasCI = data.has_ci;
    this.ciStatus = data.ci_status;
90 91 92
    this.isPipelineFailed = this.ciStatus === 'failed' || this.ciStatus === 'canceled';
    this.isPipelinePassing = this.ciStatus === 'success' || this.ciStatus === 'success_with_warnings';
    this.isPipelineSkipped = this.ciStatus === 'skipped';
F
Fatih Acet 已提交
93 94 95 96 97 98 99 100 101
    this.pipelineDetailedStatus = pipelineStatus;
    this.isPipelineActive = data.pipeline ? data.pipeline.active : false;
    this.isPipelineBlocked = pipelineStatus ? pipelineStatus.group === 'manual' : false;
    this.ciStatusFaviconPath = pipelineStatus ? pipelineStatus.favicon : null;

    this.setState(data);
  }

  setState(data) {
102 103 104 105 106
    if (this.mergeOngoing) {
      this.state = 'merging';
      return;
    }

F
Fatih Acet 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
    if (this.isOpen) {
      this.state = getStateKey.call(this, data);
    } else {
      switch (data.state) {
        case 'merged':
          this.state = 'merged';
          break;
        case 'closed':
          this.state = 'closed';
          break;
        default:
          this.state = null;
      }
    }
  }

123 124 125
  static getEventObject(event) {
    return {
      author: MergeRequestStore.getAuthorObject(event),
126
      updatedAt: formatDate(MergeRequestStore.getEventUpdatedAtDate(event)),
127 128 129 130
      formattedUpdatedAt: MergeRequestStore.getEventDate(event),
    };
  }

F
Fatih Acet 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143
  static getAuthorObject(event) {
    if (!event) {
      return {};
    }

    return {
      name: event.author.name || '',
      username: event.author.username || '',
      webUrl: event.author.web_url || '',
      avatarUrl: event.author.avatar_url || '',
    };
  }

144 145 146 147 148 149 150 151
  static getEventUpdatedAtDate(event) {
    if (!event) {
      return '';
    }

    return event.updated_at;
  }

F
Fatih Acet 已提交
152 153 154 155 156 157 158
  static getEventDate(event) {
    const timeagoInstance = new Timeago();

    if (!event) {
      return '';
    }

159
    return timeagoInstance.format(MergeRequestStore.getEventUpdatedAtDate(event));
F
Fatih Acet 已提交
160 161 162
  }

}