fix(client): allow sign up

This commit is contained in:
chenos 2022-04-06 10:58:21 +08:00
parent 1dc8a21cfe
commit f7735ccce3
2 changed files with 13 additions and 4 deletions

View File

@ -2,7 +2,7 @@ import { ISchema, useForm } from '@formily/react';
import { uid } from '@formily/shared';
import React from 'react';
import { useHistory } from 'react-router-dom';
import { SchemaComponent, useAPIClient, useCurrentDocumentTitle } from '..';
import { SchemaComponent, useAPIClient, useCurrentDocumentTitle, useSystemSettings } from '..';
const schema: ISchema = {
type: 'object',
@ -45,6 +45,7 @@ const schema: ISchema = {
link: {
type: 'void',
'x-component': 'div',
'x-visible': '{{allowSignUp}}',
properties: {
link: {
title: '{{t("Create an account")}}',
@ -78,9 +79,12 @@ const useSignin = () => {
export const SigninPage = () => {
useCurrentDocumentTitle('Signin');
const ctx = useSystemSettings();
const allowSignUp = ctx?.data?.data?.allowSignUp;
console.log('ctx.data.allowSignUp', ctx?.data?.data?.allowSignUp);
return (
<div>
<SchemaComponent scope={{ useSignin }} schema={schema} />
<SchemaComponent scope={{ useSignin, allowSignUp }} schema={schema} />
</div>
);
};

View File

@ -2,8 +2,8 @@ import { ISchema, useForm } from '@formily/react';
import { uid } from '@formily/shared';
import { message } from 'antd';
import React from 'react';
import { useHistory } from 'react-router-dom';
import { SchemaComponent, useAPIClient, useCurrentDocumentTitle } from '..';
import { Redirect, useHistory } from 'react-router-dom';
import { SchemaComponent, useAPIClient, useCurrentDocumentTitle, useSystemSettings } from '..';
const schema: ISchema = {
type: 'object',
@ -105,5 +105,10 @@ const useSignup = () => {
export const SignupPage = () => {
useCurrentDocumentTitle('Signup');
const ctx = useSystemSettings();
const allowSignUp = ctx?.data?.data?.allowSignUp;
if (!allowSignUp) {
return <Redirect to={'/signin'} />;
}
return <SchemaComponent schema={schema} scope={{ useSignup }} />;
};