Merge pull request #12316 from overleaf/td-history-view-shell-and-split-test

Add empty shell for React history view, viewable based on split test

GitOrigin-RevId: 97241d56a052648c7a0d293d323dad4b00ad4159
This commit is contained in:
Tim Down 2023-03-22 11:21:58 +00:00 committed by Copybot
parent 5d9923ad1b
commit e76bcbec8d
9 changed files with 64 additions and 5 deletions

View file

@ -1054,6 +1054,21 @@ const ProjectController = {
}
)
},
historyViewAssignment(cb) {
SplitTestHandler.getAssignment(
req,
res,
'history-view',
(error, assignment) => {
// do not fail editor load if assignment fails
if (error) {
cb(null, { variant: 'default' })
} else {
cb(null, assignment)
}
}
)
},
accessCheckForOldCompileDomainAssigment(cb) {
SplitTestHandler.getAssignment(
req,
@ -1138,6 +1153,7 @@ const ProjectController = {
editorLeftMenuAssignment,
richTextAssignment,
onboardingVideoTourAssignment,
historyViewAssignment,
}
) => {
if (err != null) {
@ -1333,6 +1349,7 @@ const ProjectController = {
showCM6SwitchAwaySurvey: Settings.showCM6SwitchAwaySurvey,
richTextVariant: richTextAssignment.variant,
showOnboardingVideoTour,
historyViewReact: historyViewAssignment.variant === 'react',
})
timer.done()
}

View file

@ -0,0 +1,3 @@
aside.editor-sidebar.full-size#history-file-tree(
ng-show="history.isReact && ui.view == 'history'"
)

View file

@ -13,12 +13,13 @@ else
.ui-layout-center
include ./header-react
include ./history/toolbarV2.pug
if (!historyViewReact)
include ./history/toolbarV2.pug
main#ide-body(
ng-cloak,
role="main",
ng-class="{ 'ide-history-open' : (ui.view == 'history' && history.isV2) }",
ng-class="{ 'ide-history-open' : (ui.view == 'history' && history.isV2 && !history.isReact) }",
layout="main",
ng-hide="state.loading",
resize-on="layout:chat:resize,history:toggle,layout:flat-screen:toggle,south-pane-toggled",
@ -33,13 +34,19 @@ else
)
.ui-layout-west
include ./file-tree-react
include ./file-tree-history
include ./history/fileTreeV2
if (historyViewReact)
include ./file-tree-history-react
else
include ./file-tree-history
include ./history/fileTreeV2
.ui-layout-center
include ./editor
include ./history
if (historyViewReact)
history-root
else
include ./history
if !isRestrictedTokenMember
.ui-layout-east

View file

@ -0,0 +1,3 @@
export default function HistoryFileTree() {
return <div>History file tree</div>
}

View file

@ -0,0 +1,15 @@
import { createPortal } from 'react-dom'
import HistoryFileTree from './history-file-tree'
export default function HistoryRoot() {
const fileTreeContainer = document.getElementById('history-file-tree')
return (
<>
{fileTreeContainer
? createPortal(<HistoryFileTree />, fileTreeContainer)
: null}
History
</>
)
}

View file

@ -0,0 +1,6 @@
import App from '../../../base'
import { react2angular } from 'react2angular'
import HistoryRoot from '../components/history-root'
import { rootContext } from '../../../shared/context/root-context'
App.component('historyRoot', react2angular(rootContext.use(HistoryRoot)))

View file

@ -68,6 +68,7 @@ import './features/source-editor/controllers/cm6-switch-away-survey-controller'
import './features/source-editor/controllers/grammarly-warning-controller'
import './features/outline/controllers/documentation-button-controller'
import './features/onboarding/controllers/onboarding-video-tour-modal-controller'
import './features/history/controllers/history-controller'
import { cleanupServiceWorker } from './utils/service-worker-cleanup'
import { reportCM6Perf } from './infrastructure/cm6-performance'
import { reportAcePerf } from './ide/editor/ace-performance'

View file

@ -36,6 +36,7 @@ import './components/historyLabel'
import './components/historyFileTree'
import './components/historyFileEntity'
import { paywallPrompt } from '../../../../frontend/js/main/account-upgrade'
import getMeta from '../../utils/meta'
let HistoryManager
export default HistoryManager = (function () {
@ -124,6 +125,10 @@ export default HistoryManager = (function () {
)
}
isReact() {
return getMeta('ol-splitTestVariants')?.['history-view'] === 'react'
}
hardReset() {
this.$scope.history = {
isV2: true,
@ -153,6 +158,7 @@ export default HistoryManager = (function () {
showOnlyLabels: this._getShowOnlyLabelsUserPref(),
labels: null,
loadingFileTree: true,
isReact: this.isReact(),
}
const _deregisterFeatureWatcher = this.$scope.$watch(
'project.features.versioning',

View file

@ -42,6 +42,7 @@ export default describe('HistoryV2Manager', function () {
showOnlyLabels: false,
labels: null,
loadingFileTree: true,
isReact: false,
}
this.sampleUpdates = [