mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
4a8b79080b
* [storybook] Update Storybook to version 8.3.5 * [storybook] Run storybook with `--no-open`. Fixes xdg-utils issue * [storybook] Create decorator for BS3/BS5 * [storybook] Add `bsVersionDecorator` to stories * [storybook] Fix bugs in stories * [storybook] Fixup `useMeta` type. Use `DeepPartial` * [storybook] Fix types GitOrigin-RevId: 48c0f0fefb1ab2d4863ab59051b900b1908a613c
60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import EmailsSection from '../../js/features/settings/components/emails-section'
|
|
import { SSOAlert } from '../../js/features/settings/components/emails/sso-alert'
|
|
import { bsVersionDecorator } from '../../../.storybook/utils/with-bootstrap-switcher'
|
|
|
|
export const Info = () => {
|
|
window.metaAttributesCache.set('ol-institutionLinked', {
|
|
universityName: 'Overleaf University',
|
|
})
|
|
return <SSOAlert />
|
|
}
|
|
|
|
export const InfoWithEntitlement = () => {
|
|
window.metaAttributesCache.set('ol-institutionLinked', {
|
|
universityName: 'Overleaf University',
|
|
hasEntitlement: true,
|
|
})
|
|
return <SSOAlert />
|
|
}
|
|
|
|
export const NonCanonicalEmail = () => {
|
|
window.metaAttributesCache.set('ol-institutionLinked', {
|
|
universityName: 'Overleaf University',
|
|
})
|
|
window.metaAttributesCache.set(
|
|
'ol-institutionEmailNonCanonical',
|
|
'user@example.com'
|
|
)
|
|
return <SSOAlert />
|
|
}
|
|
|
|
export const Error = () => {
|
|
window.metaAttributesCache.set('ol-samlError', {
|
|
translatedMessage: 'There was an Error',
|
|
})
|
|
return <SSOAlert />
|
|
}
|
|
|
|
export const ErrorTranslated = () => {
|
|
window.metaAttributesCache.set('ol-samlError', {
|
|
translatedMessage: 'Translated Error Message',
|
|
message: 'There was an Error',
|
|
})
|
|
return <SSOAlert />
|
|
}
|
|
|
|
export const ErrorWithTryAgain = () => {
|
|
window.metaAttributesCache.set('ol-samlError', {
|
|
message: 'There was an Error',
|
|
tryAgain: true,
|
|
})
|
|
return <SSOAlert />
|
|
}
|
|
|
|
export default {
|
|
title: 'Account Settings / SSO Alerts',
|
|
component: EmailsSection,
|
|
argTypes: {
|
|
...bsVersionDecorator.argTypes,
|
|
},
|
|
}
|