mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
e41315364d
[web] Fix remaining strict type checks GitOrigin-RevId: 69881c37938f88c7ea4a630f362712a804085bc8
62 lines
1.6 KiB
TypeScript
62 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 = () => {
|
|
window.metaAttributesCache = new Map()
|
|
window.metaAttributesCache.set('ol-institutionLinked', {
|
|
universityName: 'Overleaf University',
|
|
})
|
|
return <SSOAlert />
|
|
}
|
|
|
|
export const InfoWithEntitlement = () => {
|
|
window.metaAttributesCache = new Map()
|
|
window.metaAttributesCache.set('ol-institutionLinked', {
|
|
universityName: 'Overleaf University',
|
|
hasEntitlement: true,
|
|
})
|
|
return <SSOAlert />
|
|
}
|
|
|
|
export const NonCanonicalEmail = () => {
|
|
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 = () => {
|
|
window.metaAttributesCache = new Map()
|
|
window.metaAttributesCache.set('ol-samlError', {
|
|
translatedMessage: 'There was an Error',
|
|
})
|
|
return <SSOAlert />
|
|
}
|
|
|
|
export const ErrorTranslated = () => {
|
|
window.metaAttributesCache = new Map()
|
|
window.metaAttributesCache.set('ol-samlError', {
|
|
translatedMessage: 'Translated Error Message',
|
|
message: 'There was an Error',
|
|
})
|
|
return <SSOAlert />
|
|
}
|
|
|
|
export const ErrorWithTryAgain = () => {
|
|
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,
|
|
}
|