forked from FormidableLabs/react-native-app-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
127 lines (110 loc) · 3.62 KB
/
App.js
File metadata and controls
127 lines (110 loc) · 3.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import React, { useState, useCallback, useMemo } from 'react';
import { UIManager, LayoutAnimation, Alert } from 'react-native';
import { authorize, refresh, revoke } from 'react-native-app-auth';
import { Page, Button, ButtonContainer, Form, FormLabel, FormValue, Heading } from './components';
UIManager.setLayoutAnimationEnabledExperimental &&
UIManager.setLayoutAnimationEnabledExperimental(true);
type State = {
hasLoggedInOnce: boolean,
accessToken: ?string,
accessTokenExpirationDate: ?string,
refreshToken: ?string
};
const config = {
issuer: 'https://demo.identityserver.io',
clientId: 'native.code',
redirectUrl: 'io.identityserver.demo:/oauthredirect',
additionalParameters: {},
scopes: ['openid', 'profile', 'email', 'offline_access']
// serviceConfiguration: {
// authorizationEndpoint: 'https://demo.identityserver.io/connect/authorize',
// tokenEndpoint: 'https://demo.identityserver.io/connect/token',
// revocationEndpoint: 'https://demo.identityserver.io/connect/revoke'
// }
};
const defaultAuthState = {
hasLoggedInOnce: false,
accessToken: '',
accessTokenExpirationDate: '',
refreshToken: ''
};
export default () => {
const [authState, setAuthState] = useState(defaultAuthState);
const handleAuthorize = useCallback(async () => {
try {
const newAuthState = await authorize(config);
setAuthState({
hasLoggedInOnce: true,
...newAuthState
});
} catch (error) {
Alert.alert('Failed to log in', error.message);
}
}, [authState]);
const handleRefresh = useCallback(async () => {
try {
const newAuthState = await refresh(config, {
refreshToken: authState.refreshToken
});
setAuthState(current => ({
...current,
...newAuthState,
refreshToken: newAuthState.refreshToken || current.refreshToken
}))
} catch (error) {
Alert.alert('Failed to refresh token', error.message);
}
}, [authState]);
const handleRevoke = useCallback(async () => {
try {
await revoke(config, {
tokenToRevoke: authState.accessToken,
sendClientId: true
});
setAuthState({
accessToken: '',
accessTokenExpirationDate: '',
refreshToken: ''
});
} catch (error) {
Alert.alert('Failed to revoke token', error.message);
}
}, [authState]);
const showRevoke = useMemo(() => {
if (authState.accessToken) {
if (config.issuer || config.serviceConfiguration.revocationEndpoint) {
return true;
}
}
return false;
}, [authState]);
return (
<Page>
{!!authState.accessToken ? (
<Form>
<FormLabel>accessToken</FormLabel>
<FormValue>{authState.accessToken}</FormValue>
<FormLabel>accessTokenExpirationDate</FormLabel>
<FormValue>{authState.accessTokenExpirationDate}</FormValue>
<FormLabel>refreshToken</FormLabel>
<FormValue>{authState.refreshToken}</FormValue>
<FormLabel>scopes</FormLabel>
<FormValue>{authState.scopes.join(', ')}</FormValue>
</Form>
) : (
<Heading>{authState.hasLoggedInOnce ? 'Goodbye.' : 'Hello, stranger.'}</Heading>
)}
<ButtonContainer>
{!authState.accessToken ? (
<Button onPress={handleAuthorize} text="Authorize" color="#DA2536" />
) : null}
{!!authState.refreshToken ? (
<Button onPress={handleRefresh} text="Refresh" color="#24C2CB" />
) : null}
{showRevoke ? (
<Button onPress={handleRevoke} text="Revoke" color="#EF525B" />
) : null}
</ButtonContainer>
</Page>
);
}