mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
01439641ca
React IDE page: working editor GitOrigin-RevId: 3ba8cb787a6f7f8435686d8962adb7444d09acb5
18 lines
669 B
TypeScript
18 lines
669 B
TypeScript
import { ReactScopeValueStore } from '../scope-value-store/react-scope-value-store'
|
|
import getMeta from '@/utils/meta'
|
|
|
|
const reviewPanelStorageKey = `ui.reviewPanelOpen.${getMeta('ol-project_id')}`
|
|
|
|
export default function populateLayoutScope(store: ReactScopeValueStore) {
|
|
store.set('ui.view', 'editor')
|
|
|
|
// TODO: Find out what this needs to do and make it do it
|
|
store.set('toggleHistory', () => {})
|
|
|
|
store.set('openFile', null)
|
|
store.set('ui.chatOpen', false)
|
|
store.persisted('ui.reviewPanelOpen', false, reviewPanelStorageKey)
|
|
store.set('ui.leftMenuShown', false)
|
|
store.set('ui.pdfLayout', 'sideBySide')
|
|
store.set('ui.loadingStyleSheet', false)
|
|
}
|