* feat: saml * feat: saml i18n fix * feat: saml extract getSaml * feat: saml signin extension * feat: saml remove $eq * feat: saml validate fix * feat: saml page extension fix * feat: saml remove canceltoken Co-authored-by: chenos <chenlinxh@gmail.com>
25 lines
612 B
TypeScript
25 lines
612 B
TypeScript
import React from 'react';
|
|
import { uid } from '@formily/shared';
|
|
import { SchemaComponent, useRecord } from '@nocobase/client';
|
|
import { Card } from 'antd';
|
|
import { samlSchema } from './schemas/saml';
|
|
import { RedirectURLInput } from './RedirectURLInput';
|
|
import { useSamlTranslation } from './locale';
|
|
|
|
const schema = {
|
|
type: 'object',
|
|
properties: {
|
|
[uid()]: samlSchema,
|
|
},
|
|
};
|
|
|
|
export const SAMLPanel = () => {
|
|
const { t } = useSamlTranslation();
|
|
|
|
return (
|
|
<Card bordered={false}>
|
|
<SchemaComponent components={{ RedirectURLInput }} schema={schema} scope={{ t }} />
|
|
</Card>
|
|
);
|
|
};
|