mirror of
https://github.com/casdoor/casdoor.git
synced 2025-09-04 01:53:37 +08:00
99 lines
3.1 KiB
JavaScript
99 lines
3.1 KiB
JavaScript
// Copyright 2025 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 from "react";
|
|
import * as AuthBackend from "./AuthBackend";
|
|
import i18next from "i18next";
|
|
import * as Util from "./Util";
|
|
import {QRCode} from "antd";
|
|
|
|
class WeChatLoginPanel extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
qrCode: null,
|
|
status: "loading",
|
|
ticket: null,
|
|
};
|
|
this.pollingTimer = null;
|
|
}
|
|
|
|
UNSAFE_componentWillMount() {
|
|
this.fetchQrCode();
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (this.props.loginMethod === "wechat" && prevProps.loginMethod !== "wechat") {
|
|
this.fetchQrCode();
|
|
}
|
|
if (prevProps.loginMethod === "wechat" && this.props.loginMethod !== "wechat") {
|
|
this.setState({qrCode: null, loading: false, ticket: null});
|
|
this.clearPolling();
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.clearPolling();
|
|
}
|
|
|
|
clearPolling() {
|
|
if (this.pollingTimer) {
|
|
clearInterval(this.pollingTimer);
|
|
this.pollingTimer = null;
|
|
}
|
|
}
|
|
|
|
fetchQrCode() {
|
|
const {application} = this.props;
|
|
const wechatProviderItem = application?.providers?.find(p => p.provider?.type === "WeChat");
|
|
if (wechatProviderItem) {
|
|
this.setState({status: "loading", qrCode: null, ticket: null});
|
|
AuthBackend.getWechatQRCode(`${wechatProviderItem.provider.owner}/${wechatProviderItem.provider.name}`).then(res => {
|
|
if (res.status === "ok" && res.data) {
|
|
this.setState({qrCode: res.data, status: "active", ticket: res.data2});
|
|
this.clearPolling();
|
|
this.pollingTimer = setInterval(() => {
|
|
Util.getEvent(application, wechatProviderItem.provider, res.data2, "signup");
|
|
}, 1000);
|
|
} else {
|
|
this.setState({qrCode: null, status: "expired", ticket: null});
|
|
this.clearPolling();
|
|
}
|
|
}).catch(() => {
|
|
this.setState({qrCode: null, status: "expired", ticket: null});
|
|
this.clearPolling();
|
|
});
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const {loginWidth = 320} = this.props;
|
|
const {status, qrCode} = this.state;
|
|
return (
|
|
<div style={{width: loginWidth, margin: "0 auto", textAlign: "center", marginTop: 16}}>
|
|
<div style={{marginTop: 2}}>
|
|
<QRCode style={{margin: "auto", marginTop: "20px", marginBottom: "20px"}} bordered={false} status={status} value={qrCode ?? " "} size={230} />
|
|
<div style={{marginTop: 8}}>
|
|
<a onClick={e => {e.preventDefault(); this.fetchQrCode();}}>
|
|
{i18next.t("login:Refresh")}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default WeChatLoginPanel;
|