first commit
This commit is contained in:
56
services/web/frontend/js/shared/context/mock/mock-ide.js
Normal file
56
services/web/frontend/js/shared/context/mock/mock-ide.js
Normal file
@@ -0,0 +1,56 @@
|
||||
import getMeta from '../../../utils/meta'
|
||||
|
||||
// When rendered without Angular, ide isn't defined. In that case we use
|
||||
// a mock object that only has the required properties to pass proptypes
|
||||
// checks and the values needed for the app. In the longer term, the mock
|
||||
// object will replace ide completely.
|
||||
export const getMockIde = () => {
|
||||
return {
|
||||
_id: getMeta('ol-project_id'),
|
||||
$scope: {
|
||||
$on: () => {},
|
||||
$watch: () => {},
|
||||
$applyAsync: () => {},
|
||||
user: {},
|
||||
project: {
|
||||
_id: getMeta('ol-project_id'),
|
||||
name: getMeta('ol-projectName'),
|
||||
rootDocId: '',
|
||||
members: [],
|
||||
invites: [],
|
||||
features: {
|
||||
collaborators: 0,
|
||||
compileGroup: 'standard',
|
||||
trackChangesVisible: false,
|
||||
references: false,
|
||||
mendeley: false,
|
||||
zotero: false,
|
||||
},
|
||||
publicAccessLevel: '',
|
||||
owner: {
|
||||
_id: '',
|
||||
email: '',
|
||||
},
|
||||
},
|
||||
permissionsLevel: 'readOnly',
|
||||
editor: {
|
||||
sharejs_doc: null,
|
||||
showSymbolPalette: false,
|
||||
toggleSymbolPalette: () => {},
|
||||
},
|
||||
ui: {
|
||||
view: 'pdf',
|
||||
chatOpen: false,
|
||||
reviewPanelOpen: false,
|
||||
leftMenuShown: false,
|
||||
pdfLayout: 'flat',
|
||||
},
|
||||
pdf: {
|
||||
uncompiled: true,
|
||||
logEntryAnnotations: {},
|
||||
},
|
||||
settings: { syntaxValidation: false, pdfViewer: 'pdfjs' },
|
||||
hasLintingError: false,
|
||||
},
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user