mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
9daa8f5d98
[web] rename all the JSX files to .jsx/.tsx GitOrigin-RevId: 82056ae47e017523722cf258dcc83c8a925a28f7
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
import useFetchMock from '../hooks/use-fetch-mock'
|
|
import PasswordSection from '../../js/features/settings/components/password-section'
|
|
import { setDefaultMeta, defaultSetupMocks } from './helpers/password'
|
|
|
|
export const Success = args => {
|
|
setDefaultMeta()
|
|
useFetchMock(defaultSetupMocks)
|
|
|
|
return <PasswordSection {...args} />
|
|
}
|
|
|
|
export const ManagedExternally = args => {
|
|
setDefaultMeta()
|
|
window.metaAttributesCache.set('ol-ExposedSettings', {
|
|
isOverleaf: false,
|
|
})
|
|
window.metaAttributesCache.set('ol-isExternalAuthenticationSystemUsed', true)
|
|
useFetchMock(defaultSetupMocks)
|
|
|
|
return <PasswordSection {...args} />
|
|
}
|
|
|
|
export const NoExistingPassword = args => {
|
|
setDefaultMeta()
|
|
window.metaAttributesCache.set('ol-hasPassword', false)
|
|
useFetchMock(defaultSetupMocks)
|
|
|
|
return <PasswordSection {...args} />
|
|
}
|
|
|
|
export const Error = args => {
|
|
setDefaultMeta()
|
|
useFetchMock(fetchMock =>
|
|
fetchMock.post(/\/user\/password\/update/, {
|
|
status: 400,
|
|
body: {
|
|
message: 'Your old password is wrong',
|
|
},
|
|
})
|
|
)
|
|
|
|
return <PasswordSection {...args} />
|
|
}
|
|
|
|
export default {
|
|
title: 'Account Settings / Password',
|
|
component: PasswordSection,
|
|
}
|