forked from github/plane
87abf3ccb1
* style: project settings navigation sidebar added * chore: emoji and image picker close on outside click added * style: project setting general page revamp * style: project setting member page revamp * style: project setting features page revamp * style: project setting state page revamp * style: project setting integrations page revamp * style: project setting estimates page revamp * style: project setting automation page revamp * style: project setting label page revamp * chore: member select improvement for member setting page * chore: toggle switch component improvement * style: project automation setting ui improvement * style: module icon added * style: toggle switch improvement * style: ui and spacing consistency * style: project label setting revamp * style: project state setting ui improvement * chore: integration setting repo select validation * chore: code refactor * fix: build fix
100 lines
2.5 KiB
TypeScript
100 lines
2.5 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWRInfinite from "swr/infinite";
|
|
|
|
// services
|
|
import projectService from "services/project.service";
|
|
// ui
|
|
import { CustomSearchSelect } from "components/ui";
|
|
// helpers
|
|
import { truncateText } from "helpers/string.helper";
|
|
// types
|
|
import { IWorkspaceIntegration, IGithubRepository } from "types";
|
|
|
|
type Props = {
|
|
integration: IWorkspaceIntegration;
|
|
value: any;
|
|
label: string | JSX.Element;
|
|
onChange: (repo: any) => void;
|
|
characterLimit?: number;
|
|
};
|
|
|
|
export const SelectRepository: React.FC<Props> = ({
|
|
integration,
|
|
value,
|
|
label,
|
|
onChange,
|
|
characterLimit = 25,
|
|
}) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const getKey = (pageIndex: number) => {
|
|
if (!workspaceSlug || !integration) return;
|
|
|
|
return `${
|
|
process.env.NEXT_PUBLIC_API_BASE_URL
|
|
}/api/workspaces/${workspaceSlug}/workspace-integrations/${
|
|
integration.id
|
|
}/github-repositories/?page=${++pageIndex}`;
|
|
};
|
|
|
|
const fetchGithubRepos = async (url: string) => {
|
|
const data = await projectService.getGithubRepositories(url);
|
|
|
|
return data;
|
|
};
|
|
|
|
const {
|
|
data: paginatedData,
|
|
size,
|
|
setSize,
|
|
isValidating,
|
|
} = useSWRInfinite(getKey, fetchGithubRepos);
|
|
|
|
let userRepositories = (paginatedData ?? []).map((data) => data.repositories).flat();
|
|
userRepositories = userRepositories.filter((data) => data?.id);
|
|
|
|
const totalCount = paginatedData && paginatedData.length > 0 ? paginatedData[0].total_count : 0;
|
|
|
|
const options =
|
|
userRepositories.map((repo) => ({
|
|
value: repo.id,
|
|
query: repo.full_name,
|
|
content: <p>{truncateText(repo.full_name, characterLimit)}</p>,
|
|
})) ?? [];
|
|
|
|
if (userRepositories.length < 1) return null;
|
|
|
|
return (
|
|
<CustomSearchSelect
|
|
value={value}
|
|
options={options}
|
|
onChange={(val: string) => {
|
|
const repo = userRepositories.find((repo) => repo.id === val);
|
|
|
|
onChange(repo);
|
|
}}
|
|
label={label}
|
|
footerOption={
|
|
<>
|
|
{userRepositories && options.length < totalCount && (
|
|
<button
|
|
type="button"
|
|
className="w-full p-1 text-center text-[0.6rem] text-custom-text-200 hover:bg-custom-background-80"
|
|
onClick={() => setSize(size + 1)}
|
|
disabled={isValidating}
|
|
>
|
|
{isValidating ? "Loading..." : "Click to load more..."}
|
|
</button>
|
|
)}
|
|
</>
|
|
}
|
|
position="right"
|
|
optionsClassName="w-full"
|
|
/>
|
|
);
|
|
};
|