mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Initialize the data pipeline canvas. #9869 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
36 lines
768 B
TypeScript
36 lines
768 B
TypeScript
import { t } from 'i18next';
|
|
|
|
export type OutputType = {
|
|
title: string;
|
|
type?: string;
|
|
};
|
|
|
|
type OutputProps = {
|
|
list: Array<OutputType>;
|
|
};
|
|
|
|
export function transferOutputs(outputs: Record<string, any>) {
|
|
return Object.entries(outputs).map(([key, value]) => ({
|
|
title: key,
|
|
type: value?.type,
|
|
}));
|
|
}
|
|
|
|
export function Output({ list }: OutputProps) {
|
|
return (
|
|
<section className="space-y-2">
|
|
<div>{t('flow.output')}</div>
|
|
<ul>
|
|
{list.map((x, idx) => (
|
|
<li
|
|
key={idx}
|
|
className="bg-background-highlight text-accent-primary rounded-sm px-2 py-1"
|
|
>
|
|
{x.title}: <span className="text-text-secondary">{x.type}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</section>
|
|
);
|
|
}
|