// Copyright 2023 The Casdoor Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import React, {useEffect} from "react"; import {WebView} from "react-native-webview"; import {View} from "react-native"; import {Portal} from "react-native-paper"; import SDK from "casdoor-react-native-sdk"; import UserContext from "./UserContext"; import PropTypes from "prop-types"; import EnterCasdoorSdkConfig from "./EnterCasdoorSdkConfig"; import CasdoorServerContext from "./CasdoorServerContext"; // import {LogBox} from "react-native"; // LogBox.ignoreAllLogs(); let sdk = null; const CasdoorLoginPage = ({onWebviewClose}) => { CasdoorLoginPage.propTypes = { onWebviewClose: PropTypes.func.isRequired, }; const [casdoorLoginURL, setCasdoorLoginURL] = React.useState(""); const {setUserInfo} = React.useContext(UserContext); const [showConfigPage, setShowConfigPage] = React.useState(true); const {casdoorServer} = React.useContext(CasdoorServerContext); const handleHideConfigPage = () => { setShowConfigPage(false); }; const getCasdoorSignInUrl = async() => { const signinUrl = await sdk.getSigninUrl(); setCasdoorLoginURL(signinUrl); }; useEffect(() => { if (casdoorServer) { sdk = new SDK(casdoorServer); getCasdoorSignInUrl(); } }, [casdoorServer]); const onNavigationStateChange = async(navState) => { if (navState.url.startsWith(casdoorServer.redirectPath)) { onWebviewClose(); const token = await sdk.getAccessToken(navState.url); const userInfo = sdk.JwtDecode(token); setUserInfo(userInfo); } }; return ( {showConfigPage && } {!showConfigPage && casdoorLoginURL !== "" && ( )} ); }; export const CasdoorLogout = () => { sdk.clearState(); }; export default CasdoorLoginPage;