summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issue_show/stores/index.js
blob: f2b822f3cbb5dffac42ecf4e868a876431c36ec9 (plain)
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
export default class Store {
  constructor(initialState) {
    this.state = initialState;
    this.formState = {
      title: '',
      confidential: false,
      description: '',
      lockedWarningVisible: false,
      move_to_project_id: 0,
      updateLoading: false,
    };
  }

  updateState(data) {
    this.state.titleHtml = data.title;
    this.state.titleText = data.title_text;
    this.state.descriptionHtml = data.description;
    this.state.descriptionText = data.description_text;
    this.state.taskStatus = data.task_status;
    this.state.updatedAt = data.updated_at;
    this.state.updatedByName = data.updated_by_name;
    this.state.updatedByPath = data.updated_by_path;
  }

  stateShouldUpdate(data) {
    return {
      title: this.state.titleText !== data.title_text,
      description: this.state.descriptionText !== data.description_text,
    };
  }

  setFormState(state) {
    this.formState = Object.assign(this.formState, state);
  }
}