next-ory/authentication/src/ory/ui/NodeText.tsx
2024-05-03 05:50:03 +02:00

42 lines
1.2 KiB
TypeScript

import { UiNode, UiNodeTextAttributes, UiText } from '@ory/client';
interface Props {
node: UiNode;
attributes: UiNodeTextAttributes;
}
const Content = ({ node, attributes }: Props) => {
switch (attributes.text.id) {
case 1050015:
// This text node contains lookup secrets. Let's make them a bit more beautiful!
const secrets = (attributes.text.context as any).secrets.map(
(text: UiText, k: number) => (
<div key={k} className="text-sm">
<code>{text.id === 1050014 ? 'Used' : text.text}</code>
</div>
),
);
return (
<div className="container-fluid">
<div className="row">{secrets}</div>
</div>
);
}
return (
<div className="w-full p-4 rounded-md border flex-wrap text-sm">
{attributes.text.text}
</div>
);
};
export const NodeText = ({ node, attributes }: Props) => {
return (
<>
<p className="text-lg">
{node.meta?.label?.text}
</p>
<Content node={node} attributes={attributes}/>
</>
);
};