52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
| import * as actions from '../actions';
 | |
| import * as getters from '../getters';
 | |
| import mutations from '../mutations';
 | |
| import { ASC } from '../../constants';
 | |
| 
 | |
| export default () => ({
 | |
|   state: {
 | |
|     discussions: [],
 | |
|     discussionSortOrder: ASC,
 | |
|     convertedDisscussionIds: [],
 | |
|     targetNoteHash: null,
 | |
|     lastFetchedAt: null,
 | |
|     currentDiscussionId: null,
 | |
|     batchSuggestionsInfo: [],
 | |
|     /**
 | |
|      * selectedCommentPosition & selectedCommentPosition 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,
 | |
|     isToggleBlockedIssueWarning: false,
 | |
|     isNotesFetched: false,
 | |
|     isLoading: true,
 | |
|     isLoadingDescriptionVersion: 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',
 | |
|     },
 | |
|     commentsDisabled: false,
 | |
|     resolvableDiscussionsCount: 0,
 | |
|     unresolvedDiscussionsCount: 0,
 | |
|     descriptionVersions: {},
 | |
|   },
 | |
|   actions,
 | |
|   getters,
 | |
|   mutations,
 | |
| });
 |