mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
aa480a2663
[web] migrate from window attributes to getMeta GitOrigin-RevId: 3dcf1ab6b01155e5e4abeb3e78d0fa9053e055bc
58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
import useFetchMock from '../hooks/use-fetch-mock'
|
|
import AccountInfoSection from '../../js/features/settings/components/account-info-section'
|
|
import { setDefaultMeta, defaultSetupMocks } from './helpers/account-info'
|
|
import { UserProvider } from '../../js/shared/context/user-context'
|
|
import getMeta from '@/utils/meta'
|
|
|
|
export const Success = args => {
|
|
setDefaultMeta()
|
|
useFetchMock(defaultSetupMocks)
|
|
|
|
return (
|
|
<UserProvider>
|
|
<AccountInfoSection {...args} />
|
|
</UserProvider>
|
|
)
|
|
}
|
|
|
|
export const ReadOnly = args => {
|
|
setDefaultMeta()
|
|
window.metaAttributesCache.set('ol-isExternalAuthenticationSystemUsed', true)
|
|
window.metaAttributesCache.set('ol-shouldAllowEditingDetails', false)
|
|
|
|
return (
|
|
<UserProvider>
|
|
<AccountInfoSection {...args} />
|
|
</UserProvider>
|
|
)
|
|
}
|
|
|
|
export const NoEmailInput = args => {
|
|
setDefaultMeta()
|
|
Object.assign(getMeta('ol-ExposedSettings'), {
|
|
hasAffiliationsFeature: true,
|
|
})
|
|
useFetchMock(defaultSetupMocks)
|
|
|
|
return (
|
|
<UserProvider>
|
|
<AccountInfoSection {...args} />
|
|
</UserProvider>
|
|
)
|
|
}
|
|
|
|
export const Error = args => {
|
|
setDefaultMeta()
|
|
useFetchMock(fetchMock => fetchMock.post(/\/user\/settings/, 500))
|
|
|
|
return (
|
|
<UserProvider>
|
|
<AccountInfoSection {...args} />
|
|
</UserProvider>
|
|
)
|
|
}
|
|
|
|
export default {
|
|
title: 'Account Settings / Account Info',
|
|
component: AccountInfoSection,
|
|
}
|