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

state.js « stores « notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e49cd861a1f36469315a69bd579c4ef152c9d34 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { ASC, MR_FILTER_OPTIONS } from '../constants';

const createState = () => ({
  discussions: [],
  discussionSortOrder: ASC,
  persistSortOrder: true,
  convertedDisscussionIds: [],
  targetNoteHash: null,
  lastFetchedAt: null,
  currentDiscussionId: null,
  batchSuggestionsInfo: [],
  currentlyFetchingDiscussions: false,
  doneFetchingBatchDiscussions: false,
  /**
   * selectedCommentPosition & selectedCommentPositionHover structures are the same as `position.line_range`:
   * {
   *  start: { line_code: string, new_line: number, old_line:number, type: string },
   *  end: { line_code: string, new_line: number, old_line:number, type: string },
   * }
   */
  selectedCommentPosition: null,
  selectedCommentPositionHover: null,

  // View layer
  isToggleStateButtonLoading: false,
  isNotesFetched: false,
  isLoading: true,
  isLoadingDescriptionVersion: false,
  isPromoteCommentToTimelineEventInProgress: false,

  // holds endpoints and permissions provided through haml
  notesData: {
    markdownDocsPath: '',
  },
  userData: {},
  noteableData: {
    discussion_locked: false,
    confidential: false, // TODO: Move data like this to Issue Store, should not be apart of notes.
    current_user: {},
    preview_note_path: 'path/to/preview',
  },
  isResolvingDiscussion: false,
  commentsDisabled: false,
  resolvableDiscussionsCount: 0,
  unresolvedDiscussionsCount: 0,
  descriptionVersions: {},
  isTimelineEnabled: false,
  isFetching: false,
  isPollingInitialized: false,
  mergeRequestFilters: MR_FILTER_OPTIONS.map((f) => f.value),
});

export default createState;