forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
// components
|
|
import { GithubAuth, TIntegrationSteps } from "components/integration";
|
|
// ui
|
|
import { PrimaryButton } from "components/ui";
|
|
// types
|
|
import { IAppIntegration, IWorkspaceIntegration } from "types";
|
|
|
|
type Props = {
|
|
provider: string | undefined;
|
|
handleStepChange: (value: TIntegrationSteps) => void;
|
|
appIntegrations: IAppIntegration[] | undefined;
|
|
workspaceIntegrations: IWorkspaceIntegration[] | undefined;
|
|
};
|
|
|
|
export const GithubImportConfigure: React.FC<Props> = ({
|
|
handleStepChange,
|
|
provider,
|
|
appIntegrations,
|
|
workspaceIntegrations,
|
|
}) => {
|
|
// current integration from all the integrations available
|
|
const integration =
|
|
appIntegrations &&
|
|
appIntegrations.length > 0 &&
|
|
appIntegrations.find((i) => i.provider === provider);
|
|
|
|
// current integration from workspace integrations
|
|
const workspaceIntegration =
|
|
integration &&
|
|
workspaceIntegrations &&
|
|
workspaceIntegrations.length > 0 &&
|
|
workspaceIntegrations.find((i: any) => i.integration_detail.id === integration.id);
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
<div className="flex items-center gap-2 py-5">
|
|
<div className="w-full">
|
|
<div className="font-medium">Configure</div>
|
|
<div className="text-sm text-custom-text-200">Set up your GitHub import.</div>
|
|
</div>
|
|
<div className="flex-shrink-0">
|
|
<GithubAuth workspaceIntegration={workspaceIntegration} provider={provider} />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-end">
|
|
<PrimaryButton
|
|
onClick={() => handleStepChange("import-data")}
|
|
disabled={workspaceIntegration && workspaceIntegration?.id ? false : true}
|
|
>
|
|
Next
|
|
</PrimaryButton>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|