+1








22339b9786
* chore: init tailwind v4 * chore: update all configs * chore: add source to parse monorepo packages * chore: combine all css files * feat: added extended colors * chore: update typography * chore: update extended color var names * refactor: remove initial spacing variable and update dark mode selector * chore: update css files * chore: update animations * chore: remove spacing tokens * fix: external css files * chore: update tailwind-merge version * chore: update font family * chore: added brief agents.md and story for new design system * chore: enhance design system documentation with rare exceptions for visual separation * chore: add fontsource package for typography * chore: material symbols font added * chore: update shadow default * chore: add stroke and outline theme vars * chore: update ring and fill colors * chore: overwrite tailwind typography tokens * chore: add high contrast mode tokens * chore: update scrollbar colors * chore: backward compatibility for buttons and placeholders * chore: add priority colors * chore: update urgent priority color * chore: update plan colors * chore: add missing utility class * chore: update height and padding classes * chore: update label colors * chore: add missing utlity * chore: add typography plugin to space app * chore: replace existing classNames with new design system tokens #8244 (#8278) * chore: update border colors * chore: update all borders * chore: update text colors * chore: update css variables * chore: update font sizes and weights * chore: update bg colors * chore: sync changes * fix: uncomment spacing-1200 variable in variables.css * chore: update primary colors * refactor: updated border to border-subtle * refactor: update various components and improve UI consistency across the application * updated classnames * updated classnames * refactor: update color-related class names to use new design system variables for consistency * chore: default automations * chore: update text sizes * chore: home and power k * chore: home and power k * chore: replace ui package button components * chore: update text sizes * chore: updated issue identifier (#8275) * refactor: top navigation and sidebar design token (#8276) * chore: update all button components (#8277) * chore: new button component * chore: update existing buttons * chore: overwrite tailwind typography tokens * fix: twMerge config + fixed cn instances * refactor: toast design token updated (#8279) * chore: update existing buttons * chore: tooltip design token updatged (#8280) * chore: moved cn utility to propel (#8281) * chore: update space app UI (#8285) * chore; update space app filters component * fix: button whitespace wrap * chore: space app votes * chore: update dropdown components * refactor: auth, onboarding, sidebar, and common component design token migration (#8291) * chore: checkbox component design token updated * chore: indicator and oauth component design token updated * chore: sidebar design token updated * chore: auth and onboarding design token updated * chore: update divider color * style: update background colors and hover effects across list components * fix: tailwind merge * refactor: toggle switch design token migration and header utility classname added (#8295) * chore: toggle component design token updated * chore: h-header utility class added * chore: updated color tokens for work item detail page (#8296) * chore: update react-day-picker UI * refactor: update button sizes and styles in filters components * refactor: breadcrumbs design token updated (#8297) * chore: update priority icon colors * refactor: updated layout variables * chore: update plan card primary CTA * Chore update editor design system (#8299) * refactor: update styles for callout, color selector, logo selector, and image uploader * refactor:fix image * chore: update settings UI * chore: updated notifications color and size tokens (#8302) * chore: update sm button border radius * fix: logo renderer * chore: icon button component * chore: remove deprecated classes * chore: remove deprecated classes * chore: update editor list spacing * fix: icon button size * chore: improvements (#8309) * chore: update cycles and modules pages * refactor: update background styles across various components to use new design system colors * fix: button type errors * chore: update modals design system (#8310) * refactor: callout bg * refactor: code bg * refactor: modal size and variant --------- Co-authored-by: Aaryan Khandelwal <[email protected]> * chore: update next-themes * design: update billing and plans component styles and remove unused utility functions (#8313) * refactor: empty state design token migration and improvements (#8315) * fix: profile page * refactor: tabs design token updated (#8316) * chore: updated buttons and tokens for work items (#8317) * fix: adjust trial button spacing in checkout modal * chore: update add button hover state * fix: type error (#8318) * fix: type error * chore: code refactor * refactor: update button sizes and background styles in rich filters components * refactor: update editor bg * refactor: enhance Gantt chart sidebar functionality and styling - Removed unused prop from . - Updated to include new props for better block management and scrolling behavior. - Improved auto-scroll functionality for Gantt chart items. - Adjusted styles in component for consistent design. * regression: gantt design * chore: new badge component * fix: favorite star * chore: update backgroung, typography and button sizes across workspace settings general and members pages * fix: header button sizes * fix: emoji icon logo (#8323) * more fixes * chore: update settings sidebar * refactor: avatar component * chore: updated work item detail sidebar (#8327) * refactor: update link preview * fix: work item property dropdowns * fix: dropdown buttons border radius * chore: update power k translation * chore: updated profile activity design (#8328) * chore: update settings pages * chore: update work item sidebar alignments (#8330) * refactor: admin design system * chore: update page header --------- Co-authored-by: Jayash Tripathy <[email protected]> Co-authored-by: VipinDevelops <[email protected]> Co-authored-by: Vamsi Krishna <[email protected]> Co-authored-by: Anmol Singh Bhatia <[email protected]> Co-authored-by: gakshita <[email protected]> Co-authored-by: Palanikannan M <[email protected]> Co-authored-by: Prateek Shourya <[email protected]> Co-authored-by: b-saikrishnakanth <[email protected]> Co-authored-by: M. Palanikannan <[email protected]> * fix: formatting * reexport types * fix: lint error --------- Co-authored-by: Jayash Tripathy <[email protected]> Co-authored-by: VipinDevelops <[email protected]> Co-authored-by: Vamsi Krishna <[email protected]> Co-authored-by: Anmol Singh Bhatia <[email protected]> Co-authored-by: gakshita <[email protected]> Co-authored-by: Palanikannan M <[email protected]> Co-authored-by: Prateek Shourya <[email protected]> Co-authored-by: b-saikrishnakanth <[email protected]> Co-authored-by: M. Palanikannan <[email protected]>
178 lines
6.8 KiB
TypeScript
178 lines
6.8 KiB
TypeScript
import { useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import Link from "next/link";
|
|
import { useParams, useSearchParams } from "next/navigation";
|
|
import useSWR, { mutate } from "swr";
|
|
// icons
|
|
import { RefreshCw } from "lucide-react";
|
|
// plane imports
|
|
import { IMPORTERS_LIST } from "@plane/constants";
|
|
import { useTranslation } from "@plane/i18n";
|
|
// types
|
|
import { Button } from "@plane/propel/button";
|
|
import type { IImporterService } from "@plane/types";
|
|
// assets
|
|
import GithubLogo from "@/app/assets/services/github.png?url";
|
|
import JiraLogo from "@/app/assets/services/jira.svg?url";
|
|
// components
|
|
import { DeleteImportModal, GithubImporterRoot, JiraImporterRoot, SingleImport } from "@/components/integration";
|
|
import { ImportExportSettingsLoader } from "@/components/ui/loader/settings/import-and-export";
|
|
// constants
|
|
import { IMPORTER_SERVICES_LIST } from "@/constants/fetch-keys";
|
|
// hooks
|
|
import { useUser } from "@/hooks/store/user";
|
|
// services
|
|
import { IntegrationService } from "@/services/integrations";
|
|
|
|
// services
|
|
const integrationService = new IntegrationService();
|
|
|
|
const getImporterLogo = (provider: string) => {
|
|
switch (provider) {
|
|
case "github":
|
|
return GithubLogo;
|
|
case "jira":
|
|
return JiraLogo;
|
|
default:
|
|
return "";
|
|
}
|
|
};
|
|
|
|
// FIXME: [Deprecated] Remove this component
|
|
const IntegrationGuide = observer(function IntegrationGuide() {
|
|
// states
|
|
const [refreshing, setRefreshing] = useState(false);
|
|
const [deleteImportModal, setDeleteImportModal] = useState(false);
|
|
const [importToDelete, setImportToDelete] = useState<IImporterService | null>(null);
|
|
// router
|
|
const { workspaceSlug } = useParams();
|
|
const searchParams = useSearchParams();
|
|
const provider = searchParams.get("provider");
|
|
// store hooks
|
|
const { data: currentUser } = useUser();
|
|
|
|
const { t } = useTranslation();
|
|
|
|
const { data: importerServices } = useSWR(
|
|
workspaceSlug ? IMPORTER_SERVICES_LIST(workspaceSlug) : null,
|
|
workspaceSlug ? () => integrationService.getImporterServicesList(workspaceSlug) : null
|
|
);
|
|
|
|
const handleDeleteImport = (importService: IImporterService) => {
|
|
setImportToDelete(importService);
|
|
setDeleteImportModal(true);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<DeleteImportModal
|
|
isOpen={deleteImportModal}
|
|
handleClose={() => setDeleteImportModal(false)}
|
|
data={importToDelete}
|
|
user={currentUser || null}
|
|
/>
|
|
<div className="h-full">
|
|
{(!provider || provider === "csv") && (
|
|
<>
|
|
{/* <div className="mb-5 flex items-center gap-2">
|
|
<div className="h-full w-full space-y-1">
|
|
<div className="text-16 font-medium">Relocation Guide</div>
|
|
<div className="text-13">
|
|
You can now transfer all the work items that you{"'"}ve created in other tracking
|
|
services. This tool will guide you to relocate the work item to Plane.
|
|
</div>
|
|
</div>
|
|
<a
|
|
href="https://docs.plane.so/importers/github"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<div className="flex flex-shrink-0 cursor-pointer items-center gap-2 whitespace-nowrap text-13 font-medium text-[#3F76FF] hover:text-opacity-80">
|
|
Read More
|
|
<ArrowRightIcon width={"18px"} color={"#3F76FF"} />
|
|
</div>
|
|
</a>
|
|
</div> */}
|
|
{IMPORTERS_LIST.map((service) => (
|
|
<div
|
|
key={service.provider}
|
|
className="flex items-center justify-between gap-2 border-b border-subtle bg-surface-1 px-4 py-6"
|
|
>
|
|
<div className="flex items-start gap-4">
|
|
<div className="relative h-10 w-10 flex-shrink-0">
|
|
<img
|
|
src={getImporterLogo(service?.provider)}
|
|
className="h-full w-full object-cover"
|
|
alt={`${t(service.i18n_title)} Logo`}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<h3 className="flex items-center gap-4 text-13 font-medium">{t(service.i18n_title)}</h3>
|
|
<p className="text-13 tracking-tight text-secondary">{t(service.i18n_description)}</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex-shrink-0">
|
|
<Link href={`/${workspaceSlug}/settings/imports?provider=${service.provider}`}>
|
|
<span>
|
|
<Button variant="primary">{service.type}</Button>
|
|
</span>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
))}
|
|
<div>
|
|
<div className="flex items-center border-b border-subtle pb-3.5 pt-7">
|
|
<h3 className="flex gap-2 text-18 font-medium">
|
|
Previous Imports
|
|
<button
|
|
type="button"
|
|
className="flex flex-shrink-0 items-center gap-1 rounded-sm bg-layer-1 px-1.5 py-1 text-11 outline-none"
|
|
onClick={() => {
|
|
setRefreshing(true);
|
|
mutate(IMPORTER_SERVICES_LIST(workspaceSlug)).then(() => setRefreshing(false));
|
|
}}
|
|
>
|
|
<RefreshCw className={`h-3 w-3 ${refreshing ? "animate-spin" : ""}`} />{" "}
|
|
{refreshing ? "Refreshing..." : "Refresh status"}
|
|
</button>
|
|
</h3>
|
|
</div>
|
|
<div className="flex flex-col">
|
|
{importerServices ? (
|
|
importerServices.length > 0 ? (
|
|
<div className="space-y-2">
|
|
<div className="divide-y divide-subtle-1">
|
|
{importerServices.map((service) => (
|
|
<SingleImport
|
|
key={service.id}
|
|
service={service}
|
|
refreshing={refreshing}
|
|
handleDelete={() => handleDeleteImport(service)}
|
|
/>
|
|
))}
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<div className="flex h-full w-full items-center justify-center">
|
|
{/* <EmptyState type={EmptyStateType.WORKSPACE_SETTINGS_IMPORT} size="sm" /> */}
|
|
</div>
|
|
)
|
|
) : (
|
|
<ImportExportSettingsLoader />
|
|
)}
|
|
</div>
|
|
</div>
|
|
</>
|
|
)}
|
|
|
|
{provider && provider === "github" && <GithubImporterRoot />}
|
|
{provider && provider === "jira" && <JiraImporterRoot />}
|
|
</div>
|
|
</>
|
|
);
|
|
});
|
|
|
|
export default IntegrationGuide;
|
|
|
|
export { IntegrationGuide };
|