mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1c529d5dcf
Fix bug in CM6 switch away survey where going back from Ace to CM6 will still show the survey GitOrigin-RevId: 5900fafb1a4a5fab7d949b1c70af31e19a764e6e
108 lines
3.3 KiB
TypeScript
108 lines
3.3 KiB
TypeScript
import { useCallback, useEffect, useRef, useState } from 'react'
|
|
import { Button } from 'react-bootstrap'
|
|
import customLocalStorage from '../../../infrastructure/local-storage'
|
|
import useScopeValue from '../../../shared/hooks/use-scope-value'
|
|
import getMeta from '../../../utils/meta'
|
|
|
|
type CM6SwitchAwaySurveyState = 'disabled' | 'enabled' | 'shown'
|
|
|
|
export default function CM6SwitchAwaySurvey() {
|
|
const [state, setState] = useState<CM6SwitchAwaySurveyState>('disabled')
|
|
const [newSourceEditor] = useScopeValue('editor.newSourceEditor')
|
|
const [richText] = useScopeValue('editor.showRichText')
|
|
const initialRichTextPreference = useRef<boolean>(richText)
|
|
|
|
useEffect(() => {
|
|
// if cm6 is not available, don't show the survey
|
|
if (!getMeta('ol-showNewSourceEditorOption')) {
|
|
return
|
|
}
|
|
|
|
// If the user has previously seen the survey, then don't show it again
|
|
const hasSeenCM6SwitchAwaySurvey = customLocalStorage.getItem(
|
|
'editor.has_seen_cm6_switch_away_survey'
|
|
)
|
|
if (hasSeenCM6SwitchAwaySurvey) return
|
|
|
|
if (initialRichTextPreference.current) {
|
|
if (!richText && newSourceEditor) {
|
|
// If user change from rich text to cm6, we remove the rich text preference
|
|
// so if user use rich text -> cm6 -> ace, we will show the survey
|
|
initialRichTextPreference.current = false
|
|
}
|
|
|
|
// If the user loaded rich text initially, then don't show the survey
|
|
// (we are assuming that they will not have used CM6 as much)
|
|
return
|
|
}
|
|
|
|
if (!newSourceEditor && !richText) {
|
|
setState('enabled')
|
|
} else {
|
|
setState('disabled')
|
|
}
|
|
}, [newSourceEditor, richText])
|
|
|
|
useEffect(() => {
|
|
const handleKeyDown = () => {
|
|
const TIME_FOR_SURVEY_TO_APPEAR = 3000
|
|
|
|
setTimeout(() => {
|
|
if (state === 'enabled') {
|
|
setState('shown')
|
|
customLocalStorage.setItem(
|
|
'editor.has_seen_cm6_switch_away_survey',
|
|
true
|
|
)
|
|
}
|
|
}, TIME_FOR_SURVEY_TO_APPEAR)
|
|
}
|
|
|
|
// can't access the ace editor directly, so add the keydown event
|
|
// to window
|
|
window?.addEventListener('keydown', handleKeyDown, { once: true })
|
|
|
|
return () => window?.removeEventListener('keydown', handleKeyDown)
|
|
}, [state])
|
|
|
|
const handleClose = useCallback(() => {
|
|
setState('disabled')
|
|
}, [])
|
|
|
|
if (state !== 'shown') {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<div className="alert alert-success cm6-switch-away-survey" role="alert">
|
|
<Button
|
|
className="close"
|
|
data-dismiss="alert"
|
|
aria-label="Close"
|
|
onClick={handleClose}
|
|
>
|
|
<span aria-hidden="true">×</span>
|
|
</Button>
|
|
<div className="warning-content">
|
|
<div>
|
|
<div className="warning-text">
|
|
We noticed that you're still using the{' '}
|
|
<strong>Source (legacy)</strong> editor.
|
|
</div>
|
|
<div className="warning-text">Could you let us know why?</div>
|
|
</div>
|
|
<div style={{ display: 'inline-flex' }}>
|
|
<a
|
|
href="https://forms.gle/aW5tMRASpQ7Snds6A"
|
|
className="btn btn-sm btn-info"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
onClick={handleClose}
|
|
>
|
|
Take survey
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|