mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
TypeScript
import React from "react";
|
|
|
|
import guidGenerator from "~/utilities/randomId";
|
|
|
|
import Integration from "./Integration";
|
|
|
|
interface Props {
|
|
integrations: any
|
|
}
|
|
|
|
interface IntegrationType {
|
|
_id: string;
|
|
app?: string;
|
|
environment: string;
|
|
integration: string;
|
|
integrationAuth: string;
|
|
isActive: boolean;
|
|
context: string;
|
|
}
|
|
|
|
const ProjectIntegrationSection = ({
|
|
integrations
|
|
}: Props) => {
|
|
return integrations.length > 0 ? (
|
|
<div className="mb-12">
|
|
<div className="flex flex-col justify-between items-start mx-4 mb-4 mt-6 text-xl max-w-5xl px-2">
|
|
<h1 className="font-semibold text-3xl">Current Integrations</h1>
|
|
<p className="text-base text-gray-400">
|
|
Manage your integrations of Infisical with third-party services.
|
|
</p>
|
|
</div>
|
|
{integrations.map((integration: IntegrationType) => (
|
|
<Integration
|
|
key={guidGenerator()}
|
|
integration={integration}
|
|
/>
|
|
))}
|
|
</div>
|
|
) : <div></div>
|
|
}
|
|
|
|
export default ProjectIntegrationSection; |