File size: 1,008 Bytes
56b6519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import React, { forwardRef } from 'react';

type ExportViewProps = {
  auditName: string;
  selectedDisplays: string[];
  displays: { id: string; name: string; component: React.ComponentType }[];
};

// eslint-disable-next-line react/display-name
const ExportView = forwardRef<HTMLDivElement, ExportViewProps>(
  ({ auditName, selectedDisplays, displays }, ref) => {
    return (
      <div className="bg-white text-black p-8" ref={ref}>
        <h1 className="text-4xl font-bold mb-8">{auditName}</h1>
        {selectedDisplays.map(displayId => {
          const display = displays.find(d => d.id === displayId);
          if (display) {
            const Component = display.component;
            return (
              <div className="mb-8" key={display.id}>
                <h2 className="text-2xl font-bold mb-4">{display.name}</h2>
                <Component />
              </div>
            );
          }
          return null;
        })}
      </div>
    );
  },
);

export default ExportView;