| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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,
- },
- }
- }
|