skolplattformen-backup/apps/skolplattformen-sthlm/components/login.component.tsx

275 lines
7.4 KiB
TypeScript

import { useApi } from '@skolplattformen/hooks'
import {
Button,
ButtonGroup,
Card,
Divider,
Input,
List,
ListItem,
Modal,
StyleService,
Text,
useStyleSheet,
} from '@ui-kitten/components'
import Personnummer from 'personnummer'
import React, { useEffect, useState } from 'react'
import {
Image,
Linking,
Platform,
TouchableWithoutFeedback,
View,
} from 'react-native'
import { schema } from '../app.json'
import useSettingsStorage from '../hooks/useSettingsStorage'
import { useTranslation } from '../hooks/useTranslation'
import { Layout } from '../styles'
import {
CheckIcon,
CloseOutlineIcon,
PersonIcon,
SelectIcon,
} from './icon.component'
const BankId = () => (
<Image
style={themedStyles.icon}
source={require('../assets/bankid_low_rgb.png')}
accessibilityIgnoresInvertColors
/>
)
export const Login = () => {
const { api } = useApi()
const [cancelLoginRequest, setCancelLoginRequest] = useState<
(() => Promise<void>) | (() => null)
>(() => () => null)
const [visible, showModal] = useState(false)
const [showLoginMethod, setShowLoginMethod] = useState(false)
const [error, setError] = useState<string | null>(null)
const [personalIdNumber, setPersonalIdNumber] = useSettingsStorage(
'cachedPersonalIdentityNumber'
)
const [loginMethodIndex, setLoginMethodIndex] =
useSettingsStorage('loginMethodIndex')
const { t } = useTranslation()
const valid = Personnummer.valid(personalIdNumber)
const loginMethods = [
t('auth.bankid.OpenOnThisDevice'),
t('auth.bankid.OpenOnAnotherDevice'),
t('auth.loginAsTestUser'),
]
const loginHandler = async () => {
showModal(false)
}
useEffect(() => {
api.on('login', loginHandler)
return () => {
api.off('login', loginHandler)
}
}, [api])
/* Helpers */
const handleInput = (text: string) => {
setPersonalIdNumber(text)
}
const openBankId = (token: string) => {
try {
const redirect = loginMethodIndex === 0 ? encodeURIComponent(schema) : ''
const bankIdUrl =
Platform.OS === 'ios'
? `https://app.bankid.com/?autostarttoken=${token}&redirect=${redirect}`
: `bankid:///?autostarttoken=${token}&redirect=null`
Linking.openURL(bankIdUrl)
} catch (err) {
setError(t('auth.bankid.OpenManually'))
}
}
const startLogin = async (text: string) => {
if (loginMethodIndex < 2) {
showModal(true)
let ssn
if (loginMethodIndex === 1) {
ssn = Personnummer.parse(text).format(true)
setPersonalIdNumber(ssn)
}
const status = await api.login(ssn)
setCancelLoginRequest(() => () => status.cancel())
if (status.token !== 'fake' && loginMethodIndex === 0) {
openBankId(status.token)
}
status.on('PENDING', () => console.log('BankID app not yet opened'))
status.on('USER_SIGN', () => console.log('BankID app is open'))
status.on('CANCELLED', () => {
console.log('User pressed cancel in BankID')
showModal(false)
})
status.on('ERROR', () => {
setError(t('auth.loginFailed'))
showModal(false)
})
status.on('OK', () => console.log('BankID ok'))
} else {
await api.login('201212121212')
}
}
const styles = useStyleSheet(themedStyles)
return (
<>
<View style={styles.loginForm}>
{loginMethodIndex === 1 && (
<Input
accessible={true}
label={t('general.socialSecurityNumber')}
autoFocus
value={personalIdNumber}
style={styles.pnrInput}
accessoryLeft={PersonIcon}
accessoryRight={(props) => (
<TouchableWithoutFeedback
accessible={true}
onPress={() => handleInput('')}
accessibilityHint={t(
'login.a11y_clear_social_security_input_field',
{
defaultValue: 'Rensa fältet för personnummer',
}
)}
>
<CloseOutlineIcon {...props} />
</TouchableWithoutFeedback>
)}
keyboardType="numeric"
onSubmitEditing={(event) => startLogin(event.nativeEvent.text)}
caption={error || ''}
onChangeText={(text) => handleInput(text)}
placeholder={t('auth.placeholder_SocialSecurityNumber')}
/>
)}
<ButtonGroup style={styles.loginButtonGroup} status="primary">
<Button
accessible={true}
onPress={() => startLogin(personalIdNumber)}
style={styles.loginButton}
appearance="ghost"
disabled={loginMethodIndex === 1 && !valid}
status="primary"
accessoryLeft={BankId}
size="medium"
>
{loginMethods[loginMethodIndex]}
</Button>
<Button
accessible={true}
onPress={() => {
setShowLoginMethod(true)
}}
style={styles.loginMethodButton}
appearance="ghost"
status="primary"
accessoryLeft={SelectIcon}
size="medium"
accessibilityHint={t('login.a11y_select_login_method', {
defaultValue: 'Välj inloggningsmetod',
})}
/>
</ButtonGroup>
</View>
<Modal
visible={showLoginMethod}
style={styles.modal}
onBackdropPress={() => setShowLoginMethod(false)}
backdropStyle={styles.backdrop}
>
<Card>
<Text category="h5" style={styles.bankIdLoading}>
{t('auth.chooseLoginMethod')}
</Text>
<List
data={loginMethods}
ItemSeparatorComponent={Divider}
renderItem={({ item, index }) => (
<ListItem
title={item}
accessible={true}
accessoryRight={
loginMethodIndex === index ? CheckIcon : undefined
}
onPress={() => {
setLoginMethodIndex(index)
setShowLoginMethod(false)
}}
/>
)}
/>
<Button
status="basic"
style={styles.cancelButtonStyle}
onPress={() => {
setShowLoginMethod(false)
}}
>
{t('general.cancel')}
</Button>
</Card>
</Modal>
<Modal
visible={visible}
style={styles.modal}
onBackdropPress={() => showModal(false)}
backdropStyle={styles.backdrop}
>
<Card disabled>
<Text style={styles.bankIdLoading}>{t('auth.bankid.Waiting')}</Text>
<Button
status="primary"
accessible={true}
onPress={() => {
cancelLoginRequest()
showModal(false)
}}
>
{t('general.cancel')}
</Button>
</Card>
</Modal>
</>
)
}
const themedStyles = StyleService.create({
backdrop: {
backgroundColor: 'rgba(0, 0, 0, 0.5)',
},
loginForm: {
...Layout.mainAxis.flexStart,
},
pnrInput: { minHeight: 70 },
loginButtonGroup: {
minHeight: 45,
},
loginButton: { ...Layout.flex.full },
loginMethodButton: { width: 45 },
modal: {
width: '90%',
},
bankIdLoading: { margin: 10 },
cancelButtonStyle: { marginTop: 15 },
icon: {
width: 20,
height: 20,
},
})