mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
63 lines
1.6 KiB
TypeScript
63 lines
1.6 KiB
TypeScript
|
import EmailsSection from '../../js/features/settings/components/emails-section'
|
||
|
import { SSOAlert } from '../../js/features/settings/components/emails/sso-alert'
|
||
|
|
||
|
export const Info = args => {
|
||
|
window.metaAttributesCache = new Map()
|
||
|
window.metaAttributesCache.set('ol-institutionLinked', {
|
||
|
universityName: 'Overleaf University',
|
||
|
})
|
||
|
return <SSOAlert />
|
||
|
}
|
||
|
|
||
|
export const InfoWithEntitlement = args => {
|
||
|
window.metaAttributesCache = new Map()
|
||
|
window.metaAttributesCache.set('ol-institutionLinked', {
|
||
|
universityName: 'Overleaf University',
|
||
|
hasEntitlement: true,
|
||
|
})
|
||
|
return <SSOAlert />
|
||
|
}
|
||
|
|
||
|
export const NonCanonicalEmail = args => {
|
||
|
window.metaAttributesCache = new Map()
|
||
|
window.metaAttributesCache.set('ol-institutionLinked', {
|
||
|
universityName: 'Overleaf University',
|
||
|
})
|
||
|
window.metaAttributesCache.set(
|
||
|
'ol-institutionEmailNonCanonical',
|
||
|
'user@example.com'
|
||
|
)
|
||
|
return <SSOAlert />
|
||
|
}
|
||
|
|
||
|
export const Error = args => {
|
||
|
window.metaAttributesCache = new Map()
|
||
|
window.metaAttributesCache.set('ol-samlError', {
|
||
|
translatedMessage: 'There was an Error',
|
||
|
})
|
||
|
return <SSOAlert />
|
||
|
}
|
||
|
|
||
|
export const ErrorTranslated = args => {
|
||
|
window.metaAttributesCache = new Map()
|
||
|
window.metaAttributesCache.set('ol-samlError', {
|
||
|
translatedMessage: 'Translated Error Message',
|
||
|
message: 'There was an Error',
|
||
|
})
|
||
|
return <SSOAlert />
|
||
|
}
|
||
|
|
||
|
export const ErrorWithTryAgain = args => {
|
||
|
window.metaAttributesCache = new Map()
|
||
|
window.metaAttributesCache.set('ol-samlError', {
|
||
|
message: 'There was an Error',
|
||
|
tryAgain: true,
|
||
|
})
|
||
|
return <SSOAlert />
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
title: 'Account Settings / SSO Alerts',
|
||
|
component: EmailsSection,
|
||
|
}
|