All files / app/assets/javascripts/sidebar/stores sidebar_store.js

80% Statements 56/70
38.88% Branches 7/18
71.42% Functions 20/28
83.33% Lines 55/66

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159        44x 34x       44x       34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x       34x 34x 34x 34x 34x 34x 34x 34x 34x 34x   34x       2x 2x 2x         1x 1x           1x       2x 2x 2x 2x       1x       1x       5x 5x 5x         2x 2x                                         5x       7x       2x       2x 2x 2x                     1x 1x               1x               1x       1x       2x      
import { parseBoolean } from '~/lib/utils/common_utils';
 
export default class SidebarStore {
  constructor(options) {
    if (!SidebarStore.singleton) {
      this.initSingleton(options);
    }
 
    // eslint-disable-next-line no-constructor-return
    return SidebarStore.singleton;
  }
 
  initSingleton(options) {
    const { currentUser, rootPath, editable, timeTrackingLimitToHours } = options;
    this.currentUser = currentUser;
    this.rootPath = rootPath;
    this.editable = parseBoolean(editable);
    this.timeEstimate = 0;
    this.totalTimeSpent = 0;
    this.humanTimeEstimate = '';
    this.humanTimeSpent = '';
    this.timeTrackingLimitToHours = timeTrackingLimitToHours;
    this.assignees = [];
    this.reviewers = [];
    this.isFetching = {
      assignees: true,
      reviewers: true,
    };
    this.isLoading = {};
    this.autocompleteProjects = [];
    this.moveToProjectId = 0;
    this.isLockDialogOpen = false;
    this.participants = [];
    this.projectEmailsEnabled = true;
    this.subscribeDisabledDescription = '';
    this.subscribed = null;
    this.changing = false;
    this.issuableType = options.issuableType;
 
    SidebarStore.singleton = this;
  }
 
  setAssigneeData({ assignees }) {
    this.isFetching.assignees = false;
    Eif (assignees) {
      this.assignees = assignees;
    }
  }
 
  setReviewerData({ reviewers }) {
    this.isFetching.reviewers = false;
    Iif (reviewers) {
      this.reviewers = reviewers;
    }
  }
 
  resetChanging() {
    this.changing = false;
  }
 
  setTimeTrackingData(data) {
    this.timeEstimate = data.time_estimate;
    this.totalTimeSpent = data.total_time_spent;
    this.humanTimeEstimate = data.human_time_estimate;
    this.humanTotalTimeSpent = data.human_total_time_spent;
  }
 
  setFetchingState(key, value) {
    this.isFetching[key] = value;
  }
 
  setLoadingState(key, value) {
    this.isLoading[key] = value;
  }
 
  addAssignee(assignee) {
    Eif (!this.findAssignee(assignee)) {
      this.changing = true;
      this.assignees.push(assignee);
    }
  }
 
  addReviewer(reviewer) {
    Eif (!this.findReviewer(reviewer)) {
      this.reviewers.push(reviewer);
    }
  }
 
  updateAssignee(id, stateKey) {
    const assignee = this.findAssignee({ id });
 
    if (assignee) {
      assignee[stateKey] = !assignee[stateKey];
    }
  }
 
  updateReviewer(id, stateKey) {
    const reviewer = this.findReviewer({ id });
 
    if (reviewer) {
      reviewer[stateKey] = !reviewer[stateKey];
    }
  }
 
  overwrite(key, newData) {
    this[key] = newData;
  }
 
  findAssignee(findAssignee) {
    return this.assignees.find(({ id }) => id === findAssignee.id);
  }
 
  findReviewer(findReviewer) {
    return this.reviewers.find(({ id }) => id === findReviewer.id);
  }
 
  removeAssignee(assignee) {
    Eif (assignee) {
      this.changing = true;
      this.assignees = this.assignees.filter(({ id }) => id !== assignee.id);
    }
  }
 
  removeReviewer(reviewer) {
    if (reviewer) {
      this.reviewers = this.reviewers.filter(({ id }) => id !== reviewer.id);
    }
  }
 
  removeAllAssignees() {
    this.changing = true;
    this.assignees = [];
  }
 
  removeAllReviewers() {
    this.reviewers = [];
  }
 
  setAssigneesFromRealtime(data) {
    this.assignees = data;
  }
 
  setReviewersFromRealtime(data) {
    this.reviewers = data;
  }
 
  setAutocompleteProjects(projects) {
    this.autocompleteProjects = projects;
  }
 
  setSubscribedState(subscribed) {
    this.subscribed = subscribed;
  }
 
  setMoveToProjectId(moveToProjectId) {
    this.moveToProjectId = moveToProjectId;
  }
}