mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[web] Fix Editor Stories (#26535)
* Fix storybook stories * Add `chat` to `ol-capabilities` in Storybook GitOrigin-RevId: 0816c82170ebc3bfe9ca2d7f02766364c693365a
This commit is contained in:
@@ -13,6 +13,12 @@ import en from '../../../services/web/locales/en.json'
|
||||
function resetMeta() {
|
||||
window.metaAttributesCache = new Map()
|
||||
window.metaAttributesCache.set('ol-i18n', { currentLangCode: 'en' })
|
||||
window.metaAttributesCache.set('ol-projectHistoryBlobsEnabled', true)
|
||||
window.metaAttributesCache.set('ol-capabilities', ['chat'])
|
||||
window.metaAttributesCache.set('ol-compileSettings', {
|
||||
reducedTimeoutWarning: 'default',
|
||||
compileTimeout: 20,
|
||||
})
|
||||
window.metaAttributesCache.set('ol-ExposedSettings', {
|
||||
adminEmail: 'placeholder@example.com',
|
||||
appName: 'Overleaf',
|
||||
|
||||
@@ -35,6 +35,7 @@ const setupFetchMock = fetchMock => {
|
||||
const fileData = {
|
||||
id: 'file-id',
|
||||
name: 'file.tex',
|
||||
hash: 'c0ffee',
|
||||
created: new Date().toISOString(),
|
||||
}
|
||||
|
||||
|
||||
@@ -100,7 +100,7 @@ export const mockClearCache = fetchMock =>
|
||||
})
|
||||
|
||||
export const mockBuildFile = fetchMock =>
|
||||
fetchMock.get('express:/build/:file', url => {
|
||||
fetchMock.get('express:/build/:file', ({ url }) => {
|
||||
const { pathname } = new URL(url, 'https://example.com')
|
||||
|
||||
switch (pathname) {
|
||||
|
||||
@@ -319,7 +319,7 @@ export const HybridToolbar = () => {
|
||||
|
||||
export const FileList = () => {
|
||||
const fileList = useMemo(() => {
|
||||
return buildFileList(cloneDeep(outputFiles))
|
||||
return buildFileList(cloneDeep(outputFiles), {})
|
||||
}, [])
|
||||
|
||||
return (
|
||||
|
||||
@@ -189,6 +189,9 @@ const mockDoc = (content: string, changes: Array<Record<string, any>> = []) => {
|
||||
detachFromCM6: () => {
|
||||
// Do nothing
|
||||
},
|
||||
getType: () => {
|
||||
return 'history-ot'
|
||||
},
|
||||
on: () => {
|
||||
// Do nothing
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user