mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 06:09:20 +00:00
Merge pull request #12783 from overleaf/ae-dev-tools-localstorage
[cm6] Use customLocalStorage in CM6 dev tools GitOrigin-RevId: df4c40868b5a7b24b30483d55d1fbe75b5703776
This commit is contained in:
parent
10f879eab8
commit
70072481f4
1 changed files with 5 additions and 4 deletions
|
@ -16,10 +16,11 @@ import {
|
|||
import { syntaxTree } from '@codemirror/language'
|
||||
import { toggleVisualEffect } from '../../extensions/visual/visual'
|
||||
import { hasLanguageLoadedEffect } from '../../extensions/language'
|
||||
import customLocalStorage from '../../../../infrastructure/local-storage'
|
||||
|
||||
// to enable: window.localStorage.setItem('cm6-dev-tools', 'on')
|
||||
// to enable: window.localStorage.setItem('cm6-dev-tools', '"on"')
|
||||
// to disable: window.localStorage.removeItem('cm6-dev-tools')
|
||||
const enabled = window.localStorage.getItem('cm6-dev-tools') === 'on'
|
||||
const enabled = customLocalStorage.getItem('cm6-dev-tools') === 'on'
|
||||
|
||||
const devToolsConf = new Compartment()
|
||||
|
||||
|
@ -71,10 +72,10 @@ const devToolsButton = ViewPlugin.define(view => {
|
|||
})
|
||||
|
||||
const isActive = () =>
|
||||
window.localStorage.getItem('cm6-dev-tools-active') === 'on'
|
||||
customLocalStorage.getItem('cm6-dev-tools-active') === 'on'
|
||||
|
||||
const toggleDevTools = () => {
|
||||
window.localStorage.setItem('cm6-dev-tools-active', isActive() ? 'off' : 'on')
|
||||
customLocalStorage.setItem('cm6-dev-tools-active', isActive() ? 'off' : 'on')
|
||||
|
||||
return {
|
||||
effects: devToolsConf.reconfigure(createExtension()),
|
||||
|
|
Loading…
Reference in a new issue